feffery_utils_components 0.2.0-rc19 → 0.2.0-rc20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DESCRIPTION +1 -1
- package/NAMESPACE +3 -0
- package/Project.toml +2 -2
- package/README.md +1 -1
- package/feffery_utils_components/FefferyEventListener.py +65 -0
- package/feffery_utils_components/FefferyListenElementSize.py +59 -0
- package/feffery_utils_components/FefferyListenHover.py +56 -0
- package/feffery_utils_components/FefferyListenScroll.py +40 -5
- package/feffery_utils_components/_imports_.py +6 -0
- package/feffery_utils_components/alias.py +20 -8
- package/feffery_utils_components/async-feffery_animated_3d_background_p5.js +1 -1
- package/feffery_utils_components/async-feffery_animated_3d_background_three.js +1 -1
- package/feffery_utils_components/async-feffery_animated_image.js +1 -1
- package/feffery_utils_components/async-feffery_aplayer.js +1 -1
- package/feffery_utils_components/async-feffery_auto_animate.js +1 -1
- package/feffery_utils_components/async-feffery_auto_fit.js +2 -2
- package/feffery_utils_components/async-feffery_burger.js +1 -1
- package/feffery_utils_components/async-feffery_captcha.js +1 -1
- package/feffery_utils_components/async-feffery_color_pickers.js +1 -1
- package/feffery_utils_components/async-feffery_dom2image.js +1 -1
- package/feffery_utils_components/async-feffery_dplayer.js +1 -1
- package/feffery_utils_components/async-feffery_emoji_picker.js +1 -1
- package/feffery_utils_components/async-feffery_excel_preview.js +1 -1
- package/feffery_utils_components/async-feffery_extra_spinner.js +1 -1
- package/feffery_utils_components/async-feffery_fancy_button.js +1 -1
- package/feffery_utils_components/async-feffery_grid.js +1 -1
- package/feffery_utils_components/async-feffery_http_requests.js +1 -1
- package/feffery_utils_components/async-feffery_image_cropper.js +1 -1
- package/feffery_utils_components/async-feffery_json_viewer.js +1 -1
- package/feffery_utils_components/async-feffery_local_large_storage.js +1 -1
- package/feffery_utils_components/async-feffery_markdown_editor.js +2 -2
- package/feffery_utils_components/async-feffery_motion.js +1 -1
- package/feffery_utils_components/async-feffery_music_player.js +1 -1
- package/feffery_utils_components/async-feffery_photo_sphere_viewer.js +1 -1
- package/feffery_utils_components/async-feffery_resizable.js +1 -1
- package/feffery_utils_components/async-feffery_rich_text_editor.js +2 -2
- package/feffery_utils_components/async-feffery_rnd.js +1 -1
- package/feffery_utils_components/async-feffery_seamless_scroll.js +1 -1
- package/feffery_utils_components/async-feffery_shortcut_panel.js +1 -1
- package/feffery_utils_components/async-feffery_slider_captcha.js +1 -1
- package/feffery_utils_components/async-feffery_sortable.js +1 -1
- package/feffery_utils_components/async-feffery_vditor.js +1 -1
- package/feffery_utils_components/async-feffery_word_preview.js +1 -1
- package/feffery_utils_components/async-fuc-shared.js +3 -3
- package/feffery_utils_components/feffery_utils_components.min.js +7 -7
- package/feffery_utils_components/metadata.json +302 -1
- package/feffery_utils_components/package-info.json +1 -1
- package/package.json +1 -1
- package/src/lib/components/FefferyEventSource.react.js +2 -0
- package/src/lib/components/listeners/FefferyEventListener.react.js +97 -0
- package/src/lib/components/listeners/FefferyListenElementSize.react.js +86 -0
- package/src/lib/components/listeners/FefferyListenHover.js +75 -0
- package/src/lib/components/listeners/FefferyListenScroll.react.js +91 -10
- package/src/lib/index.js +7 -1
- package/usage.py +17 -29
package/DESCRIPTION
CHANGED
package/NAMESPACE
CHANGED
|
@@ -79,10 +79,13 @@ export(''FefferyImageCropper)
|
|
|
79
79
|
export(''FefferyImageGallery)
|
|
80
80
|
export(''FefferyDeviceDetect)
|
|
81
81
|
export(''FefferyDocumentVisibility)
|
|
82
|
+
export(''FefferyEventListener)
|
|
82
83
|
export(''FefferyGeolocation)
|
|
83
84
|
export(''FefferyIdle)
|
|
84
85
|
export(''FefferyInViewport)
|
|
85
86
|
export(''FefferyKeyPress)
|
|
87
|
+
export(''FefferyListenElementSize)
|
|
88
|
+
export(''FefferyListenHover)
|
|
86
89
|
export(''FefferyListenPaste)
|
|
87
90
|
export(''FefferyListenScroll)
|
|
88
91
|
export(''FefferyListenUnload)
|
package/Project.toml
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
name = "FefferyUtilsComponents"
|
|
3
|
-
uuid = "1b08a953-4be3-4667-9a23-
|
|
3
|
+
uuid = "1b08a953-4be3-4667-9a23-209fcf3199fa"
|
|
4
4
|
authors = ["CNFeffery <fefferypzy@gmail.com>"]
|
|
5
|
-
version = "0.2.0-
|
|
5
|
+
version = "0.2.0-rc20"
|
|
6
6
|
|
|
7
7
|
[deps]
|
|
8
8
|
Dash = "1b08a953-4be3-4667-9a23-3db579824955"
|
package/README.md
CHANGED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class FefferyEventListener(Component):
|
|
7
|
+
"""A FefferyEventListener component.
|
|
8
|
+
通用事件监听组件FefferyEventListener
|
|
9
|
+
|
|
10
|
+
Keyword arguments:
|
|
11
|
+
|
|
12
|
+
- id (string; optional):
|
|
13
|
+
组件id.
|
|
14
|
+
|
|
15
|
+
- enable (boolean; default True):
|
|
16
|
+
控制是否开启监听 默认值:`True`.
|
|
17
|
+
|
|
18
|
+
- eventName (string; required):
|
|
19
|
+
必填,目标事件名称.
|
|
20
|
+
|
|
21
|
+
- handler (string; optional):
|
|
22
|
+
必填,自定义事件处理js函数字符串,唯一入参为事件对象,返回值将用于更新`result`属性.
|
|
23
|
+
|
|
24
|
+
- key (string; optional):
|
|
25
|
+
强制刷新用key值.
|
|
26
|
+
|
|
27
|
+
- loading_state (dict; optional)
|
|
28
|
+
|
|
29
|
+
`loading_state` is a dict with keys:
|
|
30
|
+
|
|
31
|
+
- component_name (string; optional):
|
|
32
|
+
Holds the name of the component that is loading.
|
|
33
|
+
|
|
34
|
+
- is_loading (boolean; optional):
|
|
35
|
+
Determines if the component is loading or not.
|
|
36
|
+
|
|
37
|
+
- prop_name (string; optional):
|
|
38
|
+
Holds which property is loading.
|
|
39
|
+
|
|
40
|
+
- result (boolean | number | string | dict | list; optional):
|
|
41
|
+
监听`handler`对应函数的返回值,作为事件监听的结果.
|
|
42
|
+
|
|
43
|
+
- targetSelector (string; optional):
|
|
44
|
+
事件监听目标对应的选择器字符串,默认监听目标为整个页面."""
|
|
45
|
+
_children_props = []
|
|
46
|
+
_base_nodes = ['children']
|
|
47
|
+
_namespace = 'feffery_utils_components'
|
|
48
|
+
_type = 'FefferyEventListener'
|
|
49
|
+
@_explicitize_args
|
|
50
|
+
def __init__(self, id=Component.UNDEFINED, key=Component.UNDEFINED, eventName=Component.REQUIRED, handler=Component.UNDEFINED, targetSelector=Component.UNDEFINED, enable=Component.UNDEFINED, result=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
51
|
+
self._prop_names = ['id', 'enable', 'eventName', 'handler', 'key', 'loading_state', 'result', 'targetSelector']
|
|
52
|
+
self._valid_wildcard_attributes = []
|
|
53
|
+
self.available_properties = ['id', 'enable', 'eventName', 'handler', 'key', 'loading_state', 'result', 'targetSelector']
|
|
54
|
+
self.available_wildcard_properties = []
|
|
55
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
56
|
+
_locals = locals()
|
|
57
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
58
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
59
|
+
|
|
60
|
+
for k in ['eventName']:
|
|
61
|
+
if k not in args:
|
|
62
|
+
raise TypeError(
|
|
63
|
+
'Required argument `' + k + '` was not specified.')
|
|
64
|
+
|
|
65
|
+
super(FefferyEventListener, self).__init__(**args)
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class FefferyListenElementSize(Component):
|
|
7
|
+
"""A FefferyListenElementSize component.
|
|
8
|
+
元素尺寸监听组件FefferyListenElementSize
|
|
9
|
+
|
|
10
|
+
Keyword arguments:
|
|
11
|
+
|
|
12
|
+
- id (string; optional):
|
|
13
|
+
组件id.
|
|
14
|
+
|
|
15
|
+
- height (number; optional):
|
|
16
|
+
监听目标元素像素高度.
|
|
17
|
+
|
|
18
|
+
- key (string; optional):
|
|
19
|
+
强制刷新用key值.
|
|
20
|
+
|
|
21
|
+
- loading_state (dict; optional)
|
|
22
|
+
|
|
23
|
+
`loading_state` is a dict with keys:
|
|
24
|
+
|
|
25
|
+
- component_name (string; optional):
|
|
26
|
+
Holds the name of the component that is loading.
|
|
27
|
+
|
|
28
|
+
- is_loading (boolean; optional):
|
|
29
|
+
Determines if the component is loading or not.
|
|
30
|
+
|
|
31
|
+
- prop_name (string; optional):
|
|
32
|
+
Holds which property is loading.
|
|
33
|
+
|
|
34
|
+
- target (string; required):
|
|
35
|
+
必填,设置尺寸监听目标元素id.
|
|
36
|
+
|
|
37
|
+
- width (number; optional):
|
|
38
|
+
监听目标元素像素宽度."""
|
|
39
|
+
_children_props = []
|
|
40
|
+
_base_nodes = ['children']
|
|
41
|
+
_namespace = 'feffery_utils_components'
|
|
42
|
+
_type = 'FefferyListenElementSize'
|
|
43
|
+
@_explicitize_args
|
|
44
|
+
def __init__(self, id=Component.UNDEFINED, key=Component.UNDEFINED, target=Component.REQUIRED, width=Component.UNDEFINED, height=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
45
|
+
self._prop_names = ['id', 'height', 'key', 'loading_state', 'target', 'width']
|
|
46
|
+
self._valid_wildcard_attributes = []
|
|
47
|
+
self.available_properties = ['id', 'height', 'key', 'loading_state', 'target', 'width']
|
|
48
|
+
self.available_wildcard_properties = []
|
|
49
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
50
|
+
_locals = locals()
|
|
51
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
52
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
53
|
+
|
|
54
|
+
for k in ['target']:
|
|
55
|
+
if k not in args:
|
|
56
|
+
raise TypeError(
|
|
57
|
+
'Required argument `' + k + '` was not specified.')
|
|
58
|
+
|
|
59
|
+
super(FefferyListenElementSize, self).__init__(**args)
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# AUTO GENERATED FILE - DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
from dash.development.base_component import Component, _explicitize_args
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class FefferyListenHover(Component):
|
|
7
|
+
"""A FefferyListenHover component.
|
|
8
|
+
鼠标悬停监听组件FefferyListenHover
|
|
9
|
+
|
|
10
|
+
Keyword arguments:
|
|
11
|
+
|
|
12
|
+
- id (string; optional):
|
|
13
|
+
组件id.
|
|
14
|
+
|
|
15
|
+
- isHovering (boolean; optional):
|
|
16
|
+
监听目标元素是否处于鼠标悬停状态.
|
|
17
|
+
|
|
18
|
+
- key (string; optional):
|
|
19
|
+
强制刷新用key值.
|
|
20
|
+
|
|
21
|
+
- loading_state (dict; optional)
|
|
22
|
+
|
|
23
|
+
`loading_state` is a dict with keys:
|
|
24
|
+
|
|
25
|
+
- component_name (string; optional):
|
|
26
|
+
Holds the name of the component that is loading.
|
|
27
|
+
|
|
28
|
+
- is_loading (boolean; optional):
|
|
29
|
+
Determines if the component is loading or not.
|
|
30
|
+
|
|
31
|
+
- prop_name (string; optional):
|
|
32
|
+
Holds which property is loading.
|
|
33
|
+
|
|
34
|
+
- targetSelector (string; required):
|
|
35
|
+
必填,监听目标选择器字符串."""
|
|
36
|
+
_children_props = []
|
|
37
|
+
_base_nodes = ['children']
|
|
38
|
+
_namespace = 'feffery_utils_components'
|
|
39
|
+
_type = 'FefferyListenHover'
|
|
40
|
+
@_explicitize_args
|
|
41
|
+
def __init__(self, id=Component.UNDEFINED, key=Component.UNDEFINED, targetSelector=Component.REQUIRED, isHovering=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
42
|
+
self._prop_names = ['id', 'isHovering', 'key', 'loading_state', 'targetSelector']
|
|
43
|
+
self._valid_wildcard_attributes = []
|
|
44
|
+
self.available_properties = ['id', 'isHovering', 'key', 'loading_state', 'targetSelector']
|
|
45
|
+
self.available_wildcard_properties = []
|
|
46
|
+
_explicit_args = kwargs.pop('_explicit_args')
|
|
47
|
+
_locals = locals()
|
|
48
|
+
_locals.update(kwargs) # For wildcard attrs and excess named props
|
|
49
|
+
args = {k: _locals[k] for k in _explicit_args}
|
|
50
|
+
|
|
51
|
+
for k in ['targetSelector']:
|
|
52
|
+
if k not in args:
|
|
53
|
+
raise TypeError(
|
|
54
|
+
'Required argument `' + k + '` was not specified.')
|
|
55
|
+
|
|
56
|
+
super(FefferyListenHover, self).__init__(**args)
|
|
@@ -5,13 +5,28 @@ from dash.development.base_component import Component, _explicitize_args
|
|
|
5
5
|
|
|
6
6
|
class FefferyListenScroll(Component):
|
|
7
7
|
"""A FefferyListenScroll component.
|
|
8
|
-
|
|
8
|
+
滚动条监听组件FefferyListenScroll
|
|
9
9
|
|
|
10
10
|
Keyword arguments:
|
|
11
11
|
|
|
12
12
|
- id (string; optional):
|
|
13
13
|
组件id.
|
|
14
14
|
|
|
15
|
+
- arrivedState (dict; optional):
|
|
16
|
+
监听目标滚动条的到达边界状态.
|
|
17
|
+
|
|
18
|
+
- directions (dict; optional):
|
|
19
|
+
监听目标滚动条的滚动方向.
|
|
20
|
+
|
|
21
|
+
- idle (number; optional):
|
|
22
|
+
滚动结束行为的检查时长,单位:毫秒,当`throttle>0`时,检查时长将为`throttle+idle` 默认:`0`.
|
|
23
|
+
|
|
24
|
+
- isScrolling (boolean; optional):
|
|
25
|
+
监听目标滚动条是否正在滚动中.
|
|
26
|
+
|
|
27
|
+
- key (string; optional):
|
|
28
|
+
强制刷新用key值.
|
|
29
|
+
|
|
15
30
|
- loading_state (dict; optional)
|
|
16
31
|
|
|
17
32
|
`loading_state` is a dict with keys:
|
|
@@ -25,20 +40,40 @@ Keyword arguments:
|
|
|
25
40
|
- prop_name (string; optional):
|
|
26
41
|
Holds which property is loading.
|
|
27
42
|
|
|
43
|
+
- offset (dict; optional):
|
|
44
|
+
针对各个方向的到达边界状态,设置像素阈值.
|
|
45
|
+
|
|
46
|
+
`offset` is a dict with keys:
|
|
47
|
+
|
|
48
|
+
- bottom (number; optional):
|
|
49
|
+
下底部到达边界像素阈值.
|
|
50
|
+
|
|
51
|
+
- left (number; optional):
|
|
52
|
+
左侧到达边界像素阈值.
|
|
53
|
+
|
|
54
|
+
- right (number; optional):
|
|
55
|
+
右侧到达边界像素阈值.
|
|
56
|
+
|
|
57
|
+
- top (number; optional):
|
|
58
|
+
上顶端到达边界像素阈值.
|
|
59
|
+
|
|
28
60
|
- position (dict; optional):
|
|
29
61
|
监听目标滚动条的水平及竖直方向上的像素偏移量.
|
|
30
62
|
|
|
31
63
|
- target (string; optional):
|
|
32
|
-
设置滚动条监听目标元素id,默认为整个页面.
|
|
64
|
+
设置滚动条监听目标元素id,默认为整个页面.
|
|
65
|
+
|
|
66
|
+
- throttle (number; optional):
|
|
67
|
+
滚动事件监听节流时长,单位:毫秒 默认:`0`."""
|
|
33
68
|
_children_props = []
|
|
34
69
|
_base_nodes = ['children']
|
|
35
70
|
_namespace = 'feffery_utils_components'
|
|
36
71
|
_type = 'FefferyListenScroll'
|
|
37
72
|
@_explicitize_args
|
|
38
|
-
def __init__(self, id=Component.UNDEFINED, target=Component.UNDEFINED, position=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
39
|
-
self._prop_names = ['id', 'loading_state', 'position', 'target']
|
|
73
|
+
def __init__(self, id=Component.UNDEFINED, key=Component.UNDEFINED, target=Component.UNDEFINED, position=Component.UNDEFINED, isScrolling=Component.UNDEFINED, arrivedState=Component.UNDEFINED, directions=Component.UNDEFINED, throttle=Component.UNDEFINED, idle=Component.UNDEFINED, offset=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
74
|
+
self._prop_names = ['id', 'arrivedState', 'directions', 'idle', 'isScrolling', 'key', 'loading_state', 'offset', 'position', 'target', 'throttle']
|
|
40
75
|
self._valid_wildcard_attributes = []
|
|
41
|
-
self.available_properties = ['id', 'loading_state', 'position', 'target']
|
|
76
|
+
self.available_properties = ['id', 'arrivedState', 'directions', 'idle', 'isScrolling', 'key', 'loading_state', 'offset', 'position', 'target', 'throttle']
|
|
42
77
|
self.available_wildcard_properties = []
|
|
43
78
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
44
79
|
_locals = locals()
|
|
@@ -77,10 +77,13 @@ from .FefferyImageCropper import FefferyImageCropper
|
|
|
77
77
|
from .FefferyImageGallery import FefferyImageGallery
|
|
78
78
|
from .FefferyDeviceDetect import FefferyDeviceDetect
|
|
79
79
|
from .FefferyDocumentVisibility import FefferyDocumentVisibility
|
|
80
|
+
from .FefferyEventListener import FefferyEventListener
|
|
80
81
|
from .FefferyGeolocation import FefferyGeolocation
|
|
81
82
|
from .FefferyIdle import FefferyIdle
|
|
82
83
|
from .FefferyInViewport import FefferyInViewport
|
|
83
84
|
from .FefferyKeyPress import FefferyKeyPress
|
|
85
|
+
from .FefferyListenElementSize import FefferyListenElementSize
|
|
86
|
+
from .FefferyListenHover import FefferyListenHover
|
|
84
87
|
from .FefferyListenPaste import FefferyListenPaste
|
|
85
88
|
from .FefferyListenScroll import FefferyListenScroll
|
|
86
89
|
from .FefferyListenUnload import FefferyListenUnload
|
|
@@ -190,10 +193,13 @@ __all__ = [
|
|
|
190
193
|
"FefferyImageGallery",
|
|
191
194
|
"FefferyDeviceDetect",
|
|
192
195
|
"FefferyDocumentVisibility",
|
|
196
|
+
"FefferyEventListener",
|
|
193
197
|
"FefferyGeolocation",
|
|
194
198
|
"FefferyIdle",
|
|
195
199
|
"FefferyInViewport",
|
|
196
200
|
"FefferyKeyPress",
|
|
201
|
+
"FefferyListenElementSize",
|
|
202
|
+
"FefferyListenHover",
|
|
197
203
|
"FefferyListenPaste",
|
|
198
204
|
"FefferyListenScroll",
|
|
199
205
|
"FefferyListenUnload",
|
|
@@ -26,6 +26,9 @@ from .FefferyDraggable import FefferyDraggable as Draggable
|
|
|
26
26
|
from .FefferyGrid import FefferyGrid as Grid
|
|
27
27
|
from .FefferyGridItem import FefferyGridItem as GridItem
|
|
28
28
|
from .FefferyRND import FefferyRND as RND
|
|
29
|
+
from .FefferyMarkdownEditor import FefferyMarkdownEditor as MarkdownEditor
|
|
30
|
+
from .FefferyRichTextEditor import FefferyRichTextEditor as RichTextEditor
|
|
31
|
+
from .FefferyVditor import FefferyVditor as Vditor
|
|
29
32
|
from .FefferyAnimatedImage import FefferyAnimatedImage as AnimatedImage
|
|
30
33
|
from .FefferyBurger import FefferyBurger as Burger
|
|
31
34
|
from .FefferyCaptcha import FefferyCaptcha as Captcha
|
|
@@ -36,6 +39,7 @@ from .FefferyCssVar import FefferyCssVar as CssVar
|
|
|
36
39
|
from .FefferyDiv import FefferyDiv as Div
|
|
37
40
|
from .FefferyDom2Image import FefferyDom2Image as Dom2Image
|
|
38
41
|
from .FefferyEmojiPicker import FefferyEmojiPicker as EmojiPicker
|
|
42
|
+
from .FefferyEventSource import FefferyEventSource as EventSource
|
|
39
43
|
from .FefferyExecuteJs import FefferyExecuteJs as ExecuteJs
|
|
40
44
|
from .FefferyExternalCss import FefferyExternalCss as ExternalCss
|
|
41
45
|
from .FefferyExternalJs import FefferyExternalJs as ExternalJs
|
|
@@ -50,19 +54,19 @@ from .FefferyHttpRequests import FefferyHttpRequests as HttpRequests
|
|
|
50
54
|
from .FefferyImagePaste import FefferyImagePaste as ImagePaste
|
|
51
55
|
from .FefferyJsonViewer import FefferyJsonViewer as JsonViewer
|
|
52
56
|
from .FefferyLazyLoad import FefferyLazyLoad as LazyLoad
|
|
53
|
-
from .FefferyMarkdownEditor import FefferyMarkdownEditor as MarkdownEditor
|
|
54
57
|
from .FefferyPhotoSphereViewer import FefferyPhotoSphereViewer as PhotoSphereViewer
|
|
55
58
|
from .FefferyPortal import FefferyPortal as Portal
|
|
56
59
|
from .FefferyQRCode import FefferyQRCode as QRCode
|
|
57
60
|
from .FefferyRawHTML import FefferyRawHTML as RawHTML
|
|
58
61
|
from .FefferyReload import FefferyReload as Reload
|
|
59
|
-
from .FefferyRichTextEditor import FefferyRichTextEditor as RichTextEditor
|
|
60
62
|
from .FefferyScroll import FefferyScroll as Scroll
|
|
61
63
|
from .FefferyScrollbars import FefferyScrollbars as Scrollbars
|
|
62
64
|
from .FefferySeamlessScroll import FefferySeamlessScroll as SeamlessScroll
|
|
65
|
+
from .FefferySetFavicon import FefferySetFavicon as SetFavicon
|
|
63
66
|
from .FefferySetTitle import FefferySetTitle as SetTitle
|
|
64
67
|
from .FefferyShadowDom import FefferyShadowDom as ShadowDom
|
|
65
68
|
from .FefferyShortcutPanel import FefferyShortcutPanel as ShortcutPanel
|
|
69
|
+
from .FefferySliderCaptcha import FefferySliderCaptcha as SliderCaptcha
|
|
66
70
|
from .FefferySticky import FefferySticky as Sticky
|
|
67
71
|
from .FefferyStyle import FefferyStyle as Style
|
|
68
72
|
from .FefferyTimeout import FefferyTimeout as Timeout
|
|
@@ -73,10 +77,13 @@ from .FefferyImageCropper import FefferyImageCropper as ImageCropper
|
|
|
73
77
|
from .FefferyImageGallery import FefferyImageGallery as ImageGallery
|
|
74
78
|
from .FefferyDeviceDetect import FefferyDeviceDetect as DeviceDetect
|
|
75
79
|
from .FefferyDocumentVisibility import FefferyDocumentVisibility as DocumentVisibility
|
|
80
|
+
from .FefferyEventListener import FefferyEventListener as EventListener
|
|
76
81
|
from .FefferyGeolocation import FefferyGeolocation as Geolocation
|
|
77
82
|
from .FefferyIdle import FefferyIdle as Idle
|
|
78
83
|
from .FefferyInViewport import FefferyInViewport as InViewport
|
|
79
84
|
from .FefferyKeyPress import FefferyKeyPress as KeyPress
|
|
85
|
+
from .FefferyListenElementSize import FefferyListenElementSize as ListenElementSize
|
|
86
|
+
from .FefferyListenHover import FefferyListenHover as ListenHover
|
|
80
87
|
from .FefferyListenPaste import FefferyListenPaste as ListenPaste
|
|
81
88
|
from .FefferyListenScroll import FefferyListenScroll as ListenScroll
|
|
82
89
|
from .FefferyListenUnload import FefferyListenUnload as ListenUnload
|
|
@@ -105,7 +112,6 @@ from .FefferyLocalLargeStorage import FefferyLocalLargeStorage as LocalLargeStor
|
|
|
105
112
|
from .FefferyLocalStorage import FefferyLocalStorage as LocalStorage
|
|
106
113
|
from .FefferySessionStorage import FefferySessionStorage as SessionStorage
|
|
107
114
|
from .FefferyThrottleProp import FefferyThrottleProp as ThrottleProp
|
|
108
|
-
from .FefferyVditor import FefferyVditor as Vditor
|
|
109
115
|
|
|
110
116
|
__all__ = [
|
|
111
117
|
"AutoAnimate",
|
|
@@ -136,6 +142,9 @@ __all__ = [
|
|
|
136
142
|
"Grid",
|
|
137
143
|
"GridItem",
|
|
138
144
|
"RND",
|
|
145
|
+
"MarkdownEditor",
|
|
146
|
+
"RichTextEditor",
|
|
147
|
+
"Vditor",
|
|
139
148
|
"AnimatedImage",
|
|
140
149
|
"Burger",
|
|
141
150
|
"Captcha",
|
|
@@ -146,6 +155,7 @@ __all__ = [
|
|
|
146
155
|
"Div",
|
|
147
156
|
"Dom2Image",
|
|
148
157
|
"EmojiPicker",
|
|
158
|
+
"EventSource",
|
|
149
159
|
"ExecuteJs",
|
|
150
160
|
"ExternalCss",
|
|
151
161
|
"ExternalJs",
|
|
@@ -160,19 +170,19 @@ __all__ = [
|
|
|
160
170
|
"ImagePaste",
|
|
161
171
|
"JsonViewer",
|
|
162
172
|
"LazyLoad",
|
|
163
|
-
"MarkdownEditor",
|
|
164
173
|
"PhotoSphereViewer",
|
|
165
174
|
"Portal",
|
|
166
175
|
"QRCode",
|
|
167
176
|
"RawHTML",
|
|
168
177
|
"Reload",
|
|
169
|
-
"RichTextEditor",
|
|
170
178
|
"Scroll",
|
|
171
179
|
"Scrollbars",
|
|
172
180
|
"SeamlessScroll",
|
|
181
|
+
"SetFavicon",
|
|
173
182
|
"SetTitle",
|
|
174
183
|
"ShadowDom",
|
|
175
184
|
"ShortcutPanel",
|
|
185
|
+
"SliderCaptcha",
|
|
176
186
|
"Sticky",
|
|
177
187
|
"Style",
|
|
178
188
|
"Timeout",
|
|
@@ -183,10 +193,13 @@ __all__ = [
|
|
|
183
193
|
"ImageGallery",
|
|
184
194
|
"DeviceDetect",
|
|
185
195
|
"DocumentVisibility",
|
|
196
|
+
"EventListener",
|
|
186
197
|
"Geolocation",
|
|
187
198
|
"Idle",
|
|
188
199
|
"InViewport",
|
|
189
200
|
"KeyPress",
|
|
201
|
+
"ListenElementSize",
|
|
202
|
+
"ListenHover",
|
|
190
203
|
"ListenPaste",
|
|
191
204
|
"ListenScroll",
|
|
192
205
|
"ListenUnload",
|
|
@@ -214,6 +227,5 @@ __all__ = [
|
|
|
214
227
|
"LocalLargeStorage",
|
|
215
228
|
"LocalStorage",
|
|
216
229
|
"SessionStorage",
|
|
217
|
-
"ThrottleProp"
|
|
218
|
-
|
|
219
|
-
]
|
|
230
|
+
"ThrottleProp"
|
|
231
|
+
]
|