feffery_utils_components 0.0.7 → 0.0.10
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 +6 -3
- package/Project.toml +2 -2
- package/feffery_utils_components/FefferyCircleColorPicker.py +45 -0
- package/feffery_utils_components/FefferyColorPicker.py +37 -0
- package/{build/lib/feffery_utils_components/FefferyCaptcha.py → feffery_utils_components/FefferyDashboard.py} +8 -20
- package/feffery_utils_components/FefferyExecuteJs.py +33 -0
- package/feffery_utils_components/FefferyGuide.py +69 -0
- package/feffery_utils_components/FefferyResizable.py +39 -0
- package/feffery_utils_components/FefferyScroll.py +55 -0
- package/feffery_utils_components/FefferyShortcutPanel.py +4 -6
- package/feffery_utils_components/FefferySplit.py +59 -0
- package/{build/lib/feffery_utils_components/FefferyWaterMark.py → feffery_utils_components/FefferySplitPane.py} +9 -25
- package/feffery_utils_components/_imports_.py +12 -4
- package/feffery_utils_components/feffery_utils_components.min.js +26 -26
- package/feffery_utils_components/metadata.json +446 -77
- package/feffery_utils_components/package-info.json +8 -3
- package/package.json +8 -3
- package/src/FefferyUtilsComponents.jl +9 -5
- package/src/jl/''_fefferycirclecolorpicker.jl +26 -0
- package/src/jl/''_fefferycolorpicker.jl +22 -0
- package/src/jl/''_fefferydashboard.jl +23 -0
- package/src/jl/''_fefferyexecutejs.jl +20 -0
- package/src/jl/''_fefferyguide.jl +38 -0
- package/src/jl/''_fefferyresizable.jl +23 -0
- package/src/jl/''_fefferyscroll.jl +31 -0
- package/src/jl/''_fefferyshortcutpanel.jl +1 -2
- package/src/jl/''_fefferysplit.jl +39 -0
- package/src/jl/''_fefferysplitpane.jl +32 -0
- package/src/lib/components/FefferyCaptcha.react.js +6 -2
- package/src/lib/components/FefferyExecuteJs.react.js +47 -0
- package/src/lib/components/FefferyGuide.react.js +181 -0
- package/src/lib/components/FefferyScroll.react.js +170 -0
- package/src/lib/components/FefferyShortcutPanel.react.js +10 -10
- package/src/lib/components/FefferySyntaxHighlighter.react.js +6 -2
- package/src/lib/components/FefferyTopProgress.react.js +3 -3
- package/src/lib/components/colorPickers/FefferyCircleColorPicker.react.js +88 -0
- package/src/lib/components/nprogress.css +84 -0
- package/src/lib/components/split/FefferySplit.react.js +199 -0
- package/src/lib/components/split/FefferySplitPane.react.js +75 -0
- package/src/lib/components/styles.css +27 -1
- package/src/lib/index.js +13 -5
- package/usage.py +135 -33
- package/webpack.config.js +2 -0
- package/build/lib/feffery_utils_components/FefferyPasteImage.py +0 -56
- package/build/lib/feffery_utils_components/FefferySyntaxHighlighter.py +0 -52
- package/build/lib/feffery_utils_components/FefferyTopProgress.py +0 -68
- package/build/lib/feffery_utils_components/FefferyUtilsComponents.py +0 -40
- package/build/lib/feffery_utils_components/__init__.py +0 -89
- package/build/lib/feffery_utils_components/_imports_.py +0 -13
- package/build/lib/feffery_utils_components/feffery_utils_components.min.js +0 -4
- package/build/lib/feffery_utils_components/metadata.json +0 -578
- package/build/lib/feffery_utils_components/package-info.json +0 -79
- package/feffery_utils_components/feffery_utils_components.min.js.LICENSE.txt +0 -102
- package/src/lib/components/FefferyPasteImage.react.js +0 -168
- package/src/lib/components/FefferyWaterMark.react.js +0 -112
|
@@ -1,4 +1,83 @@
|
|
|
1
1
|
{
|
|
2
|
+
"src/lib/components/colorPickers/FefferyCircleColorPicker.react.js": {
|
|
3
|
+
"description": "",
|
|
4
|
+
"displayName": "FefferyCircleColorPicker",
|
|
5
|
+
"methods": [],
|
|
6
|
+
"props": {
|
|
7
|
+
"id": {
|
|
8
|
+
"type": {
|
|
9
|
+
"name": "custom",
|
|
10
|
+
"raw": "PropTypes.string"
|
|
11
|
+
},
|
|
12
|
+
"required": false,
|
|
13
|
+
"description": ""
|
|
14
|
+
},
|
|
15
|
+
"className": {
|
|
16
|
+
"type": {
|
|
17
|
+
"name": "custom",
|
|
18
|
+
"raw": "PropTypes.string"
|
|
19
|
+
},
|
|
20
|
+
"required": false,
|
|
21
|
+
"description": ""
|
|
22
|
+
},
|
|
23
|
+
"style": {
|
|
24
|
+
"type": {
|
|
25
|
+
"name": "custom",
|
|
26
|
+
"raw": "PropTypes.object"
|
|
27
|
+
},
|
|
28
|
+
"required": false,
|
|
29
|
+
"description": ""
|
|
30
|
+
},
|
|
31
|
+
"width": {
|
|
32
|
+
"type": {
|
|
33
|
+
"name": "custom",
|
|
34
|
+
"raw": "PropTypes.string"
|
|
35
|
+
},
|
|
36
|
+
"required": false,
|
|
37
|
+
"description": ""
|
|
38
|
+
},
|
|
39
|
+
"colors": {
|
|
40
|
+
"type": {
|
|
41
|
+
"name": "custom",
|
|
42
|
+
"raw": "PropTypes.arrayOf(PropTypes.string)"
|
|
43
|
+
},
|
|
44
|
+
"required": false,
|
|
45
|
+
"description": ""
|
|
46
|
+
},
|
|
47
|
+
"circleSize": {
|
|
48
|
+
"type": {
|
|
49
|
+
"name": "custom",
|
|
50
|
+
"raw": "PropTypes.number"
|
|
51
|
+
},
|
|
52
|
+
"required": false,
|
|
53
|
+
"description": ""
|
|
54
|
+
},
|
|
55
|
+
"circleSpacing": {
|
|
56
|
+
"type": {
|
|
57
|
+
"name": "custom",
|
|
58
|
+
"raw": "PropTypes.number"
|
|
59
|
+
},
|
|
60
|
+
"required": false,
|
|
61
|
+
"description": ""
|
|
62
|
+
},
|
|
63
|
+
"color": {
|
|
64
|
+
"type": {
|
|
65
|
+
"name": "custom",
|
|
66
|
+
"raw": "PropTypes.string"
|
|
67
|
+
},
|
|
68
|
+
"required": false,
|
|
69
|
+
"description": ""
|
|
70
|
+
},
|
|
71
|
+
"loading_state": {
|
|
72
|
+
"type": {
|
|
73
|
+
"name": "custom",
|
|
74
|
+
"raw": "PropTypes.shape({\r\n /**\r\n * Determines if the component is loading or not\r\n */\r\n is_loading: PropTypes.bool,\r\n /**\r\n * Holds which property is loading\r\n */\r\n prop_name: PropTypes.string,\r\n /**\r\n * Holds the name of the component that is loading\r\n */\r\n component_name: PropTypes.string\r\n})"
|
|
75
|
+
},
|
|
76
|
+
"required": false,
|
|
77
|
+
"description": ""
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
2
81
|
"src/lib/components/FefferyCaptcha.react.js": {
|
|
3
82
|
"description": "",
|
|
4
83
|
"displayName": "FefferyCaptcha",
|
|
@@ -98,109 +177,325 @@
|
|
|
98
177
|
}
|
|
99
178
|
}
|
|
100
179
|
},
|
|
101
|
-
"src/lib/components/
|
|
180
|
+
"src/lib/components/FefferyExecuteJs.react.js": {
|
|
102
181
|
"description": "",
|
|
103
|
-
"displayName": "
|
|
182
|
+
"displayName": "FefferyExecuteJs",
|
|
104
183
|
"methods": [],
|
|
105
184
|
"props": {
|
|
106
185
|
"id": {
|
|
107
186
|
"type": {
|
|
108
|
-
"name": "
|
|
187
|
+
"name": "custom",
|
|
188
|
+
"raw": "PropTypes.string"
|
|
109
189
|
},
|
|
110
|
-
"required":
|
|
190
|
+
"required": false,
|
|
111
191
|
"description": ""
|
|
112
192
|
},
|
|
113
|
-
"
|
|
193
|
+
"jsString": {
|
|
114
194
|
"type": {
|
|
115
|
-
"name": "
|
|
195
|
+
"name": "custom",
|
|
196
|
+
"raw": "PropTypes.string"
|
|
116
197
|
},
|
|
117
198
|
"required": false,
|
|
118
|
-
"description": "
|
|
199
|
+
"description": ""
|
|
200
|
+
},
|
|
201
|
+
"loading_state": {
|
|
202
|
+
"type": {
|
|
203
|
+
"name": "custom",
|
|
204
|
+
"raw": "PropTypes.shape({\r\n /**\r\n * Determines if the component is loading or not\r\n */\r\n is_loading: PropTypes.bool,\r\n /**\r\n * Holds which property is loading\r\n */\r\n prop_name: PropTypes.string,\r\n /**\r\n * Holds the name of the component that is loading\r\n */\r\n component_name: PropTypes.string\r\n})"
|
|
205
|
+
},
|
|
206
|
+
"required": false,
|
|
207
|
+
"description": ""
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"src/lib/components/FefferyGuide.react.js": {
|
|
212
|
+
"description": "",
|
|
213
|
+
"displayName": "FefferyGuide",
|
|
214
|
+
"methods": [],
|
|
215
|
+
"props": {
|
|
216
|
+
"id": {
|
|
217
|
+
"type": {
|
|
218
|
+
"name": "custom",
|
|
219
|
+
"raw": "PropTypes.string"
|
|
220
|
+
},
|
|
221
|
+
"required": false,
|
|
222
|
+
"description": ""
|
|
119
223
|
},
|
|
120
224
|
"className": {
|
|
121
225
|
"type": {
|
|
122
|
-
"name": "
|
|
226
|
+
"name": "custom",
|
|
227
|
+
"raw": "PropTypes.string"
|
|
228
|
+
},
|
|
229
|
+
"required": false,
|
|
230
|
+
"description": ""
|
|
231
|
+
},
|
|
232
|
+
"style": {
|
|
233
|
+
"type": {
|
|
234
|
+
"name": "custom",
|
|
235
|
+
"raw": "PropTypes.object"
|
|
236
|
+
},
|
|
237
|
+
"required": false,
|
|
238
|
+
"description": ""
|
|
239
|
+
},
|
|
240
|
+
"locale": {
|
|
241
|
+
"type": {
|
|
242
|
+
"name": "custom",
|
|
243
|
+
"raw": "PropTypes.oneOf(['zh', 'en'])"
|
|
123
244
|
},
|
|
124
245
|
"required": false,
|
|
125
246
|
"description": "",
|
|
126
247
|
"defaultValue": {
|
|
127
|
-
"value": "'
|
|
248
|
+
"value": "'zh'",
|
|
128
249
|
"computed": false
|
|
129
250
|
}
|
|
130
251
|
},
|
|
131
|
-
"
|
|
252
|
+
"steps": {
|
|
132
253
|
"type": {
|
|
133
|
-
"name": "
|
|
254
|
+
"name": "custom",
|
|
255
|
+
"raw": "PropTypes.arrayOf(\r\n PropTypes.exact({\r\n // \u5bf9\u5e94\u5f53\u524d\u6b65\u9aa4\u951a\u5b9a\u7684\u5143\u7d20\u5bf9\u5e94\u7684css\u9009\u62e9\u5668\r\n selector: PropTypes.string,\r\n\r\n // \u5f53selector\u53c2\u6570\u7f3a\u7701\u65f6\uff0c\u53ef\u7528targetPos\u53c2\u6570\u57fa\u4e8e\u7edd\u5bf9\u4f4d\u7f6e\u8fdb\u884c\u6b65\u9aa4\u951a\u5b9a\r\n targetPos: PropTypes.exact({\r\n // \u8bbe\u7f6e\u8ddd\u79bb\u9876\u90e8\u7684\u50cf\u7d20\u8ddd\u79bb\r\n top: PropTypes.number,\r\n // \u8bbe\u7f6e\u8ddd\u79bb\u5de6\u7aef\u7684\u50cf\u7d20\u8ddd\u79bb\r\n left: PropTypes.number,\r\n // \u8bbe\u7f6e\u951a\u5b9a\u8303\u56f4\u50cf\u7d20\u5bbd\u5ea6\r\n width: PropTypes.number,\r\n // \u8bbe\u7f6e\u951a\u5b9a\u8303\u56f4\u50cf\u7d20\u9ad8\u5ea6\r\n height: PropTypes.number\r\n }),\r\n\r\n // \u8bbe\u7f6e\u5c55\u793a\u9762\u677f\u7684\u6807\u9898\u5185\u5bb9\r\n title: PropTypes.string,\r\n\r\n // \u8bbe\u7f6e\u5c55\u793a\u9762\u677f\u7684\u63cf\u8ff0\u5185\u5bb9\r\n content: PropTypes.string,\r\n\r\n // \u8bbe\u7f6e\u5c55\u793a\u9762\u677f\u76f8\u5bf9\u951a\u70b9\u7684\u65b9\u4f4d\uff0c\u53ef\u9009\u7684\u6709'top', 'bottom', 'left', 'right', 'top-left', 'top-right', 'bottom-left', 'bottom-right', 'left-top', 'left-bottom',\r\n // 'right-top', 'right-bottom'\uff0c\u9ed8\u8ba4\u4e3a'bottom'\r\n placement: PropTypes.oneOf([\r\n 'top', 'bottom', 'left', 'right', 'top-left', 'top-right',\r\n 'bottom-left', 'bottom-right', 'left-top', 'left-bottom',\r\n 'right-top', 'right-bottom'\r\n ]),\r\n\r\n // \u8bbe\u7f6e\u5c55\u793a\u9762\u677f\u7684\u50cf\u7d20\u504f\u79fb\u91cf\r\n offset: PropTypes.exact({\r\n // \u6c34\u5e73\u65b9\u5411\u504f\u79fb\u50cf\u7d20\u8ddd\u79bb\r\n x: PropTypes.number,\r\n // \u7ad6\u76f4\u65b9\u5411\u504f\u79fb\u50cf\u7d20\u8ddd\u79bb\r\n y: PropTypes.number\r\n })\r\n })\r\n).isRequired"
|
|
134
256
|
},
|
|
135
257
|
"required": false,
|
|
136
258
|
"description": ""
|
|
137
259
|
},
|
|
138
|
-
"
|
|
260
|
+
"localKey": {
|
|
139
261
|
"type": {
|
|
140
|
-
"name": "
|
|
141
|
-
"
|
|
142
|
-
|
|
143
|
-
|
|
262
|
+
"name": "custom",
|
|
263
|
+
"raw": "PropTypes.string.isRequired"
|
|
264
|
+
},
|
|
265
|
+
"required": false,
|
|
266
|
+
"description": ""
|
|
267
|
+
},
|
|
268
|
+
"closable": {
|
|
269
|
+
"type": {
|
|
270
|
+
"name": "custom",
|
|
271
|
+
"raw": "PropTypes.bool"
|
|
272
|
+
},
|
|
273
|
+
"required": false,
|
|
274
|
+
"description": ""
|
|
275
|
+
},
|
|
276
|
+
"modalClassName": {
|
|
277
|
+
"type": {
|
|
278
|
+
"name": "custom",
|
|
279
|
+
"raw": "PropTypes.string"
|
|
280
|
+
},
|
|
281
|
+
"required": false,
|
|
282
|
+
"description": ""
|
|
283
|
+
},
|
|
284
|
+
"maskClassName": {
|
|
285
|
+
"type": {
|
|
286
|
+
"name": "custom",
|
|
287
|
+
"raw": "PropTypes.string"
|
|
288
|
+
},
|
|
289
|
+
"required": false,
|
|
290
|
+
"description": ""
|
|
291
|
+
},
|
|
292
|
+
"mask": {
|
|
293
|
+
"type": {
|
|
294
|
+
"name": "custom",
|
|
295
|
+
"raw": "PropTypes.bool"
|
|
296
|
+
},
|
|
297
|
+
"required": false,
|
|
298
|
+
"description": ""
|
|
299
|
+
},
|
|
300
|
+
"arrow": {
|
|
301
|
+
"type": {
|
|
302
|
+
"name": "custom",
|
|
303
|
+
"raw": "PropTypes.bool"
|
|
304
|
+
},
|
|
305
|
+
"required": false,
|
|
306
|
+
"description": ""
|
|
307
|
+
},
|
|
308
|
+
"hotspot": {
|
|
309
|
+
"type": {
|
|
310
|
+
"name": "custom",
|
|
311
|
+
"raw": "PropTypes.bool"
|
|
312
|
+
},
|
|
313
|
+
"required": false,
|
|
314
|
+
"description": ""
|
|
315
|
+
},
|
|
316
|
+
"stepText": {
|
|
317
|
+
"type": {
|
|
318
|
+
"name": "custom",
|
|
319
|
+
"raw": "PropTypes.string"
|
|
320
|
+
},
|
|
321
|
+
"required": false,
|
|
322
|
+
"description": ""
|
|
323
|
+
},
|
|
324
|
+
"nextText": {
|
|
325
|
+
"type": {
|
|
326
|
+
"name": "custom",
|
|
327
|
+
"raw": "PropTypes.string"
|
|
328
|
+
},
|
|
329
|
+
"required": false,
|
|
330
|
+
"description": ""
|
|
331
|
+
},
|
|
332
|
+
"prevText": {
|
|
333
|
+
"type": {
|
|
334
|
+
"name": "custom",
|
|
335
|
+
"raw": "PropTypes.string"
|
|
336
|
+
},
|
|
337
|
+
"required": false,
|
|
338
|
+
"description": ""
|
|
339
|
+
},
|
|
340
|
+
"showPreviousBtn": {
|
|
341
|
+
"type": {
|
|
342
|
+
"name": "custom",
|
|
343
|
+
"raw": "PropTypes.bool"
|
|
144
344
|
},
|
|
145
345
|
"required": false,
|
|
146
346
|
"description": "",
|
|
147
347
|
"defaultValue": {
|
|
148
|
-
"value": "
|
|
348
|
+
"value": "true",
|
|
149
349
|
"computed": false
|
|
150
350
|
}
|
|
151
351
|
},
|
|
152
|
-
"
|
|
352
|
+
"okText": {
|
|
153
353
|
"type": {
|
|
154
|
-
"name": "
|
|
155
|
-
"
|
|
156
|
-
|
|
157
|
-
|
|
354
|
+
"name": "custom",
|
|
355
|
+
"raw": "PropTypes.string"
|
|
356
|
+
},
|
|
357
|
+
"required": false,
|
|
358
|
+
"description": ""
|
|
359
|
+
},
|
|
360
|
+
"step": {
|
|
361
|
+
"type": {
|
|
362
|
+
"name": "custom",
|
|
363
|
+
"raw": "PropTypes.number"
|
|
364
|
+
},
|
|
365
|
+
"required": false,
|
|
366
|
+
"description": ""
|
|
367
|
+
},
|
|
368
|
+
"loading_state": {
|
|
369
|
+
"type": {
|
|
370
|
+
"name": "custom",
|
|
371
|
+
"raw": "PropTypes.shape({\r\n /**\r\n * Determines if the component is loading or not\r\n */\r\n is_loading: PropTypes.bool,\r\n /**\r\n * Holds which property is loading\r\n */\r\n prop_name: PropTypes.string,\r\n /**\r\n * Holds the name of the component that is loading\r\n */\r\n component_name: PropTypes.string\r\n})"
|
|
372
|
+
},
|
|
373
|
+
"required": false,
|
|
374
|
+
"description": ""
|
|
375
|
+
},
|
|
376
|
+
"setProps": {
|
|
377
|
+
"type": {
|
|
378
|
+
"name": "custom",
|
|
379
|
+
"raw": "PropTypes.func"
|
|
380
|
+
},
|
|
381
|
+
"required": false,
|
|
382
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
"src/lib/components/FefferyScroll.react.js": {
|
|
387
|
+
"description": "",
|
|
388
|
+
"displayName": "FefferyScroll",
|
|
389
|
+
"methods": [],
|
|
390
|
+
"props": {
|
|
391
|
+
"id": {
|
|
392
|
+
"type": {
|
|
393
|
+
"name": "custom",
|
|
394
|
+
"raw": "PropTypes.string"
|
|
395
|
+
},
|
|
396
|
+
"required": false,
|
|
397
|
+
"description": ""
|
|
398
|
+
},
|
|
399
|
+
"scrollMode": {
|
|
400
|
+
"type": {
|
|
401
|
+
"name": "custom",
|
|
402
|
+
"raw": "PropTypes.oneOf([\r\n 'to-top', 'to-bottom', 'top-offset', 'relative-offset', 'target'\r\n])"
|
|
158
403
|
},
|
|
159
404
|
"required": false,
|
|
160
405
|
"description": "",
|
|
161
406
|
"defaultValue": {
|
|
162
|
-
"value": "
|
|
407
|
+
"value": "'to-top'",
|
|
163
408
|
"computed": false
|
|
164
409
|
}
|
|
165
410
|
},
|
|
166
|
-
"
|
|
411
|
+
"executeScroll": {
|
|
167
412
|
"type": {
|
|
168
|
-
"name": "
|
|
413
|
+
"name": "custom",
|
|
414
|
+
"raw": "PropTypes.bool"
|
|
169
415
|
},
|
|
170
416
|
"required": false,
|
|
171
417
|
"description": "",
|
|
172
418
|
"defaultValue": {
|
|
173
|
-
"value": "
|
|
419
|
+
"value": "false",
|
|
174
420
|
"computed": false
|
|
175
421
|
}
|
|
176
422
|
},
|
|
423
|
+
"scrollTopOffset": {
|
|
424
|
+
"type": {
|
|
425
|
+
"name": "custom",
|
|
426
|
+
"raw": "PropTypes.number"
|
|
427
|
+
},
|
|
428
|
+
"required": false,
|
|
429
|
+
"description": ""
|
|
430
|
+
},
|
|
431
|
+
"scrollRelativeOffset": {
|
|
432
|
+
"type": {
|
|
433
|
+
"name": "custom",
|
|
434
|
+
"raw": "PropTypes.number"
|
|
435
|
+
},
|
|
436
|
+
"required": false,
|
|
437
|
+
"description": ""
|
|
438
|
+
},
|
|
439
|
+
"scrollTargetId": {
|
|
440
|
+
"type": {
|
|
441
|
+
"name": "custom",
|
|
442
|
+
"raw": "PropTypes.string"
|
|
443
|
+
},
|
|
444
|
+
"required": false,
|
|
445
|
+
"description": ""
|
|
446
|
+
},
|
|
447
|
+
"duration": {
|
|
448
|
+
"type": {
|
|
449
|
+
"name": "custom",
|
|
450
|
+
"raw": "PropTypes.number"
|
|
451
|
+
},
|
|
452
|
+
"required": false,
|
|
453
|
+
"description": ""
|
|
454
|
+
},
|
|
455
|
+
"smooth": {
|
|
456
|
+
"type": {
|
|
457
|
+
"name": "custom",
|
|
458
|
+
"raw": "PropTypes.oneOf([\r\n 'linear',\r\n 'easeInQuad',\r\n 'easeOutQuad',\r\n 'easeInOutQuad',\r\n 'easeInCubic',\r\n 'easeOutCubic',\r\n 'easeInOutCubic',\r\n 'easeInQuart',\r\n 'easeOutQuart',\r\n 'easeInOutQuart',\r\n 'easeInQuint',\r\n 'easeOutQuint',\r\n 'easeInOutQuint'\r\n])"
|
|
459
|
+
},
|
|
460
|
+
"required": false,
|
|
461
|
+
"description": ""
|
|
462
|
+
},
|
|
463
|
+
"delay": {
|
|
464
|
+
"type": {
|
|
465
|
+
"name": "custom",
|
|
466
|
+
"raw": "PropTypes.number"
|
|
467
|
+
},
|
|
468
|
+
"required": false,
|
|
469
|
+
"description": ""
|
|
470
|
+
},
|
|
471
|
+
"containerId": {
|
|
472
|
+
"type": {
|
|
473
|
+
"name": "custom",
|
|
474
|
+
"raw": "PropTypes.string"
|
|
475
|
+
},
|
|
476
|
+
"required": false,
|
|
477
|
+
"description": ""
|
|
478
|
+
},
|
|
479
|
+
"offset": {
|
|
480
|
+
"type": {
|
|
481
|
+
"name": "custom",
|
|
482
|
+
"raw": "PropTypes.number"
|
|
483
|
+
},
|
|
484
|
+
"required": false,
|
|
485
|
+
"description": ""
|
|
486
|
+
},
|
|
177
487
|
"loading_state": {
|
|
178
488
|
"type": {
|
|
179
|
-
"name": "
|
|
180
|
-
"
|
|
181
|
-
"is_loading": {
|
|
182
|
-
"name": "bool",
|
|
183
|
-
"description": "Determines if the component is loading or not",
|
|
184
|
-
"required": false
|
|
185
|
-
},
|
|
186
|
-
"prop_name": {
|
|
187
|
-
"name": "string",
|
|
188
|
-
"description": "Holds which property is loading",
|
|
189
|
-
"required": false
|
|
190
|
-
},
|
|
191
|
-
"component_name": {
|
|
192
|
-
"name": "string",
|
|
193
|
-
"description": "Holds the name of the component that is loading",
|
|
194
|
-
"required": false
|
|
195
|
-
}
|
|
196
|
-
}
|
|
489
|
+
"name": "custom",
|
|
490
|
+
"raw": "PropTypes.shape({\r\n /**\r\n * Determines if the component is loading or not\r\n */\r\n is_loading: PropTypes.bool,\r\n /**\r\n * Holds which property is loading\r\n */\r\n prop_name: PropTypes.string,\r\n /**\r\n * Holds the name of the component that is loading\r\n */\r\n component_name: PropTypes.string\r\n})"
|
|
197
491
|
},
|
|
198
492
|
"required": false,
|
|
199
493
|
"description": ""
|
|
200
494
|
},
|
|
201
495
|
"setProps": {
|
|
202
496
|
"type": {
|
|
203
|
-
"name": "
|
|
497
|
+
"name": "custom",
|
|
498
|
+
"raw": "PropTypes.func"
|
|
204
499
|
},
|
|
205
500
|
"required": false,
|
|
206
501
|
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
@@ -220,14 +515,6 @@
|
|
|
220
515
|
"required": false,
|
|
221
516
|
"description": ""
|
|
222
517
|
},
|
|
223
|
-
"className": {
|
|
224
|
-
"type": {
|
|
225
|
-
"name": "custom",
|
|
226
|
-
"raw": "PropTypes.string"
|
|
227
|
-
},
|
|
228
|
-
"required": false,
|
|
229
|
-
"description": ""
|
|
230
|
-
},
|
|
231
518
|
"style": {
|
|
232
519
|
"type": {
|
|
233
520
|
"name": "custom",
|
|
@@ -239,12 +526,12 @@
|
|
|
239
526
|
"locale": {
|
|
240
527
|
"type": {
|
|
241
528
|
"name": "custom",
|
|
242
|
-
"raw": "PropTypes.oneOf(['en', '
|
|
529
|
+
"raw": "PropTypes.oneOf(['en', 'zh'])"
|
|
243
530
|
},
|
|
244
531
|
"required": false,
|
|
245
532
|
"description": "",
|
|
246
533
|
"defaultValue": {
|
|
247
|
-
"value": "'
|
|
534
|
+
"value": "'zh'",
|
|
248
535
|
"computed": false
|
|
249
536
|
}
|
|
250
537
|
},
|
|
@@ -571,84 +858,166 @@
|
|
|
571
858
|
}
|
|
572
859
|
}
|
|
573
860
|
},
|
|
574
|
-
"src/lib/components/
|
|
861
|
+
"src/lib/components/split/FefferySplit.react.js": {
|
|
575
862
|
"description": "",
|
|
576
|
-
"displayName": "
|
|
863
|
+
"displayName": "FefferySplit",
|
|
577
864
|
"methods": [],
|
|
578
865
|
"props": {
|
|
579
|
-
"
|
|
866
|
+
"children": {
|
|
580
867
|
"type": {
|
|
581
|
-
"name": "
|
|
868
|
+
"name": "custom",
|
|
869
|
+
"raw": "PropTypes.node"
|
|
582
870
|
},
|
|
583
871
|
"required": false,
|
|
584
872
|
"description": ""
|
|
585
873
|
},
|
|
586
|
-
"
|
|
874
|
+
"id": {
|
|
587
875
|
"type": {
|
|
588
|
-
"name": "
|
|
876
|
+
"name": "custom",
|
|
877
|
+
"raw": "PropTypes.string"
|
|
589
878
|
},
|
|
590
879
|
"required": false,
|
|
591
|
-
"description": "
|
|
880
|
+
"description": ""
|
|
592
881
|
},
|
|
593
882
|
"className": {
|
|
594
883
|
"type": {
|
|
595
|
-
"name": "
|
|
884
|
+
"name": "custom",
|
|
885
|
+
"raw": "PropTypes.string"
|
|
596
886
|
},
|
|
597
887
|
"required": false,
|
|
598
888
|
"description": ""
|
|
599
889
|
},
|
|
600
890
|
"style": {
|
|
601
891
|
"type": {
|
|
602
|
-
"name": "
|
|
892
|
+
"name": "custom",
|
|
893
|
+
"raw": "PropTypes.object"
|
|
603
894
|
},
|
|
604
895
|
"required": false,
|
|
605
896
|
"description": ""
|
|
606
897
|
},
|
|
607
|
-
"
|
|
898
|
+
"defaultSizes": {
|
|
608
899
|
"type": {
|
|
609
|
-
"name": "
|
|
900
|
+
"name": "custom",
|
|
901
|
+
"raw": "PropTypes.arrayOf(PropTypes.number)"
|
|
610
902
|
},
|
|
611
903
|
"required": false,
|
|
612
904
|
"description": ""
|
|
613
905
|
},
|
|
614
|
-
"
|
|
906
|
+
"sizes": {
|
|
615
907
|
"type": {
|
|
616
|
-
"name": "
|
|
908
|
+
"name": "custom",
|
|
909
|
+
"raw": "PropTypes.arrayOf(PropTypes.number)"
|
|
617
910
|
},
|
|
618
911
|
"required": false,
|
|
619
912
|
"description": ""
|
|
620
913
|
},
|
|
621
|
-
"
|
|
914
|
+
"minSize": {
|
|
622
915
|
"type": {
|
|
623
|
-
"name": "
|
|
916
|
+
"name": "custom",
|
|
917
|
+
"raw": "PropTypes.oneOfType([\r\n // \u7edf\u4e00\u8bbe\u7f6e\u6700\u5c0f\u5c3a\u5bf8\r\n PropTypes.number,\r\n // \u9010\u4e00\u8bbe\u7f6e\u6700\u5c0f\u5c3a\u5bf8\r\n PropTypes.arrayOf(PropTypes.number)\r\n])"
|
|
918
|
+
},
|
|
919
|
+
"required": false,
|
|
920
|
+
"description": ""
|
|
921
|
+
},
|
|
922
|
+
"maxSize": {
|
|
923
|
+
"type": {
|
|
924
|
+
"name": "custom",
|
|
925
|
+
"raw": "PropTypes.oneOfType([\r\n // \u7edf\u4e00\u8bbe\u7f6e\u6700\u5927\u5c3a\u5bf8\r\n PropTypes.number,\r\n // \u9010\u4e00\u8bbe\u7f6e\u6700\u5927\u5c3a\u5bf8\r\n PropTypes.arrayOf(PropTypes.number)\r\n])"
|
|
624
926
|
},
|
|
625
927
|
"required": false,
|
|
626
928
|
"description": ""
|
|
627
929
|
},
|
|
628
|
-
"
|
|
930
|
+
"expandToMin": {
|
|
931
|
+
"type": {
|
|
932
|
+
"name": "custom",
|
|
933
|
+
"raw": "PropTypes.bool"
|
|
934
|
+
},
|
|
935
|
+
"required": false,
|
|
936
|
+
"description": ""
|
|
937
|
+
},
|
|
938
|
+
"gutterSize": {
|
|
939
|
+
"type": {
|
|
940
|
+
"name": "custom",
|
|
941
|
+
"raw": "PropTypes.number"
|
|
942
|
+
},
|
|
943
|
+
"required": false,
|
|
944
|
+
"description": ""
|
|
945
|
+
},
|
|
946
|
+
"dragInterval": {
|
|
947
|
+
"type": {
|
|
948
|
+
"name": "custom",
|
|
949
|
+
"raw": "PropTypes.number"
|
|
950
|
+
},
|
|
951
|
+
"required": false,
|
|
952
|
+
"description": ""
|
|
953
|
+
},
|
|
954
|
+
"direction": {
|
|
955
|
+
"type": {
|
|
956
|
+
"name": "custom",
|
|
957
|
+
"raw": "PropTypes.oneOf(['horizontal', 'vertical'])"
|
|
958
|
+
},
|
|
959
|
+
"required": false,
|
|
960
|
+
"description": "",
|
|
961
|
+
"defaultValue": {
|
|
962
|
+
"value": "'horizontal'",
|
|
963
|
+
"computed": false
|
|
964
|
+
}
|
|
965
|
+
},
|
|
966
|
+
"cursor": {
|
|
967
|
+
"type": {
|
|
968
|
+
"name": "custom",
|
|
969
|
+
"raw": "PropTypes.string"
|
|
970
|
+
},
|
|
971
|
+
"required": false,
|
|
972
|
+
"description": ""
|
|
973
|
+
},
|
|
974
|
+
"loading_state": {
|
|
975
|
+
"type": {
|
|
976
|
+
"name": "custom",
|
|
977
|
+
"raw": "PropTypes.shape({\r\n /**\r\n * Determines if the component is loading or not\r\n */\r\n is_loading: PropTypes.bool,\r\n /**\r\n * Holds which property is loading\r\n */\r\n prop_name: PropTypes.string,\r\n /**\r\n * Holds the name of the component that is loading\r\n */\r\n component_name: PropTypes.string\r\n})"
|
|
978
|
+
},
|
|
979
|
+
"required": false,
|
|
980
|
+
"description": ""
|
|
981
|
+
},
|
|
982
|
+
"setProps": {
|
|
983
|
+
"type": {
|
|
984
|
+
"name": "custom",
|
|
985
|
+
"raw": "PropTypes.func"
|
|
986
|
+
},
|
|
987
|
+
"required": false,
|
|
988
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
989
|
+
}
|
|
990
|
+
}
|
|
991
|
+
},
|
|
992
|
+
"src/lib/components/split/FefferySplitPane.react.js": {
|
|
993
|
+
"description": "",
|
|
994
|
+
"displayName": "FefferySplitPane",
|
|
995
|
+
"methods": [],
|
|
996
|
+
"props": {
|
|
997
|
+
"id": {
|
|
629
998
|
"type": {
|
|
630
999
|
"name": "string"
|
|
631
1000
|
},
|
|
632
1001
|
"required": false,
|
|
633
1002
|
"description": ""
|
|
634
1003
|
},
|
|
635
|
-
"
|
|
1004
|
+
"children": {
|
|
636
1005
|
"type": {
|
|
637
|
-
"name": "
|
|
1006
|
+
"name": "node"
|
|
638
1007
|
},
|
|
639
1008
|
"required": false,
|
|
640
1009
|
"description": ""
|
|
641
1010
|
},
|
|
642
|
-
"
|
|
1011
|
+
"className": {
|
|
643
1012
|
"type": {
|
|
644
|
-
"name": "
|
|
1013
|
+
"name": "string"
|
|
645
1014
|
},
|
|
646
1015
|
"required": false,
|
|
647
1016
|
"description": ""
|
|
648
1017
|
},
|
|
649
|
-
"
|
|
1018
|
+
"style": {
|
|
650
1019
|
"type": {
|
|
651
|
-
"name": "
|
|
1020
|
+
"name": "object"
|
|
652
1021
|
},
|
|
653
1022
|
"required": false,
|
|
654
1023
|
"description": ""
|