Skip to content

Commit

Permalink
0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
elimintz committed Oct 14, 2020
1 parent fb793ce commit f878a28
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion justpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .justpy import *
__version__ = "0.1.4"
__version__ = "0.1.5"
1 change: 0 additions & 1 deletion justpy/justpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,6 @@ def convert_dict_to_object(d):
return obj



def redirect(url):
wp = WebPage()
wp.add(Div())
Expand Down
7 changes: 4 additions & 3 deletions justpy/quasarcomponents.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ def __init__(self, **kwargs):
self.prop_list = ['ripple', 'type', 'to', 'replace', 'label', 'icon', 'icon-right', 'round', 'outline', 'flat',
'unelevated', 'rounded', 'push', 'glossy', 'size', 'fab', 'fab-mini', 'color', 'text-color',
'no-caps', 'no-wrap', 'dense', 'tabindex', 'align', 'stack', 'stretch', 'loading', 'disable',
'percentage', 'dark-percentage', 'href', 'target']
'percentage', 'dark-percentage', 'href', 'target', 'download']


QButton = QBtn
Expand Down Expand Up @@ -1789,7 +1789,7 @@ def __init__(self, **kwargs):
super().__init__(**kwargs)
# direction on of up | right | down | left , type one of a | submit | button | reset
self.prop_list = ['direction', 'persistent', 'icon', 'active-icon', 'type', 'value', 'disable',
'outline', 'push', 'flat', 'color', 'text-color', 'glossy']
'outline', 'push', 'flat', 'color', 'text-color', 'glossy', 'label', 'external-label', 'label-position']
self.allowed_events = ['input', 'show', 'before-show', 'hide', 'before-hide', 'click', 'mouseover', 'mouseout']
self.set_keyword_events(**kwargs)

Expand All @@ -1807,7 +1807,8 @@ class QFabAction(QDiv):
def __init__(self, **kwargs):
super().__init__(**kwargs)
# position one of top-right | top-left | bottom-right | bottom-left | top | right | bottom | left
self.prop_list = ['icon', 'type', 'to', 'replace', 'disable', 'outline', 'push', 'flat', 'color', 'text-color', 'glossy']
self.prop_list = ['icon', 'type', 'to', 'replace', 'disable', 'outline', 'push', 'flat', 'color', 'text-color',
'glossy', 'label', 'external-label', 'label-position']

@parse_dict
class QSkeleton(QDiv):
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def get_long_description():
setuptools.setup(
name="justpy",
python_requires=">=3.6",
version="0.1.4",
version="0.1.5",
license="Apache",
author="Eliezer Mintz",
author_email="[email protected]",
Expand All @@ -19,7 +19,7 @@ def get_long_description():
include_package_data=True,
zip_safe=False,
install_requires=[
'starlette>=0.12.0', 'uvicorn>=0.7.1', 'itsdangerous>=1.1.0',
'starlette>=0.12.0', 'uvicorn>=0.7.1', 'itsdangerous>=1.1.0', 'websockets',
'addict>=2.2.1', 'jinja2>=2.10.1', 'demjson>=2.2.4', 'httpx>=0.11.0', 'aiofiles'
],
classifiers=[
Expand Down

0 comments on commit f878a28

Please sign in to comment.