feffery_utils_components 0.0.20 → 0.0.22
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 +1 -1
- package/build/lib/feffery_utils_components/FefferyCaptcha.py +5 -3
- package/build/lib/feffery_utils_components/FefferyDiv.py +9 -5
- package/build/lib/feffery_utils_components/FefferyDocumentVisibility.py +46 -0
- package/{feffery_utils_components/FefferySliderColorPicker.py → build/lib/feffery_utils_components/FefferyExternalCss.py} +9 -11
- package/build/lib/feffery_utils_components/FefferyGeolocation.py +46 -0
- package/build/lib/feffery_utils_components/FefferyIdle.py +48 -0
- package/build/lib/feffery_utils_components/FefferyKeyPress.py +48 -0
- package/build/lib/feffery_utils_components/FefferyResponsive.py +46 -0
- package/build/lib/feffery_utils_components/FefferySetTitle.py +46 -0
- package/build/lib/feffery_utils_components/FefferyTimeout.py +48 -0
- package/build/lib/feffery_utils_components/FefferyWindowSize.py +48 -0
- package/build/lib/feffery_utils_components/_imports_.py +18 -0
- package/build/lib/feffery_utils_components/feffery_utils_components.min.js +1 -1
- package/build/lib/feffery_utils_components/metadata.json +582 -10
- package/build/lib/feffery_utils_components/package-info.json +2 -1
- package/feffery_utils_components/FefferyCaptcha.py +5 -3
- package/feffery_utils_components/FefferyCountDown.py +50 -0
- package/feffery_utils_components/FefferyDiv.py +7 -5
- package/feffery_utils_components/FefferyKeyPress.py +48 -0
- package/feffery_utils_components/FefferyTimeout.py +48 -0
- package/feffery_utils_components/_imports_.py +6 -0
- package/feffery_utils_components/feffery_utils_components.min.js +1 -1
- package/feffery_utils_components/metadata.json +216 -2
- package/feffery_utils_components/package-info.json +1 -1
- package/package.json +1 -1
- package/src/FefferyUtilsComponents.jl +6 -3
- package/src/jl/''_fefferycaptcha.jl +2 -1
- package/src/jl/''_fefferycountdown.jl +26 -0
- package/src/jl/''_fefferydiv.jl +4 -3
- package/src/jl/''_fefferykeypress.jl +25 -0
- package/src/jl/''_fefferytimeout.jl +25 -0
- package/src/lib/components/FefferyCaptcha.react.js +14 -2
- package/src/lib/components/FefferyCountDown.react.js +92 -0
- package/src/lib/components/FefferyTimeout.react.js +68 -0
- package/src/lib/components/listeners/FefferyDiv.react.js +20 -11
- package/src/lib/components/listeners/FefferyKeyPress.react.js +69 -0
- package/src/lib/index.js +7 -1
- package/tests/FefferyCaptchaRefreshRef/app.py +49 -0
- package/tests/FefferyClickAwayTest/app.py +41 -0
- package/tests/FefferyCountDownTest/app.py +53 -0
- package/tests/FefferyKeyPressTest/app.py +43 -0
- package/tests/FefferyTimeoutTest/app.py +63 -0
|
@@ -639,6 +639,139 @@
|
|
|
639
639
|
}
|
|
640
640
|
}
|
|
641
641
|
},
|
|
642
|
+
"src/lib/components/dom/FefferyExternalCss.react.js": {
|
|
643
|
+
"description": "",
|
|
644
|
+
"displayName": "FefferyExternalCss",
|
|
645
|
+
"methods": [],
|
|
646
|
+
"props": {
|
|
647
|
+
"id": {
|
|
648
|
+
"type": {
|
|
649
|
+
"name": "string"
|
|
650
|
+
},
|
|
651
|
+
"required": false,
|
|
652
|
+
"description": ""
|
|
653
|
+
},
|
|
654
|
+
"cssUrl": {
|
|
655
|
+
"type": {
|
|
656
|
+
"name": "string"
|
|
657
|
+
},
|
|
658
|
+
"required": false,
|
|
659
|
+
"description": "",
|
|
660
|
+
"defaultValue": {
|
|
661
|
+
"value": "''",
|
|
662
|
+
"computed": false
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"recentlyStatus": {
|
|
666
|
+
"type": {
|
|
667
|
+
"name": "enum",
|
|
668
|
+
"value": [
|
|
669
|
+
{
|
|
670
|
+
"value": "'unset'",
|
|
671
|
+
"computed": false
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"value": "'loading'",
|
|
675
|
+
"computed": false
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"value": "'ready'",
|
|
679
|
+
"computed": false
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"value": "'error'",
|
|
683
|
+
"computed": false
|
|
684
|
+
}
|
|
685
|
+
]
|
|
686
|
+
},
|
|
687
|
+
"required": false,
|
|
688
|
+
"description": ""
|
|
689
|
+
},
|
|
690
|
+
"setProps": {
|
|
691
|
+
"type": {
|
|
692
|
+
"name": "func"
|
|
693
|
+
},
|
|
694
|
+
"required": false,
|
|
695
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
696
|
+
},
|
|
697
|
+
"loading_state": {
|
|
698
|
+
"type": {
|
|
699
|
+
"name": "shape",
|
|
700
|
+
"value": {
|
|
701
|
+
"is_loading": {
|
|
702
|
+
"name": "bool",
|
|
703
|
+
"description": "Determines if the component is loading or not",
|
|
704
|
+
"required": false
|
|
705
|
+
},
|
|
706
|
+
"prop_name": {
|
|
707
|
+
"name": "string",
|
|
708
|
+
"description": "Holds which property is loading",
|
|
709
|
+
"required": false
|
|
710
|
+
},
|
|
711
|
+
"component_name": {
|
|
712
|
+
"name": "string",
|
|
713
|
+
"description": "Holds the name of the component that is loading",
|
|
714
|
+
"required": false
|
|
715
|
+
}
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
"required": false,
|
|
719
|
+
"description": ""
|
|
720
|
+
}
|
|
721
|
+
}
|
|
722
|
+
},
|
|
723
|
+
"src/lib/components/dom/FefferySetTitle.react.js": {
|
|
724
|
+
"description": "",
|
|
725
|
+
"displayName": "FefferySetTitle",
|
|
726
|
+
"methods": [],
|
|
727
|
+
"props": {
|
|
728
|
+
"id": {
|
|
729
|
+
"type": {
|
|
730
|
+
"name": "string"
|
|
731
|
+
},
|
|
732
|
+
"required": false,
|
|
733
|
+
"description": ""
|
|
734
|
+
},
|
|
735
|
+
"title": {
|
|
736
|
+
"type": {
|
|
737
|
+
"name": "string"
|
|
738
|
+
},
|
|
739
|
+
"required": false,
|
|
740
|
+
"description": ""
|
|
741
|
+
},
|
|
742
|
+
"setProps": {
|
|
743
|
+
"type": {
|
|
744
|
+
"name": "func"
|
|
745
|
+
},
|
|
746
|
+
"required": false,
|
|
747
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
748
|
+
},
|
|
749
|
+
"loading_state": {
|
|
750
|
+
"type": {
|
|
751
|
+
"name": "shape",
|
|
752
|
+
"value": {
|
|
753
|
+
"is_loading": {
|
|
754
|
+
"name": "bool",
|
|
755
|
+
"description": "Determines if the component is loading or not",
|
|
756
|
+
"required": false
|
|
757
|
+
},
|
|
758
|
+
"prop_name": {
|
|
759
|
+
"name": "string",
|
|
760
|
+
"description": "Holds which property is loading",
|
|
761
|
+
"required": false
|
|
762
|
+
},
|
|
763
|
+
"component_name": {
|
|
764
|
+
"name": "string",
|
|
765
|
+
"description": "Holds the name of the component that is loading",
|
|
766
|
+
"required": false
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
"required": false,
|
|
771
|
+
"description": ""
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
},
|
|
642
775
|
"src/lib/components/FefferyCaptcha.react.js": {
|
|
643
776
|
"description": "",
|
|
644
777
|
"displayName": "FefferyCaptcha",
|
|
@@ -711,6 +844,13 @@
|
|
|
711
844
|
"required": false,
|
|
712
845
|
"description": ""
|
|
713
846
|
},
|
|
847
|
+
"refresh": {
|
|
848
|
+
"type": {
|
|
849
|
+
"name": "bool"
|
|
850
|
+
},
|
|
851
|
+
"required": false,
|
|
852
|
+
"description": ""
|
|
853
|
+
},
|
|
714
854
|
"loading_state": {
|
|
715
855
|
"type": {
|
|
716
856
|
"name": "shape",
|
|
@@ -2406,6 +2546,69 @@
|
|
|
2406
2546
|
}
|
|
2407
2547
|
}
|
|
2408
2548
|
},
|
|
2549
|
+
"src/lib/components/FefferyTimeout.react.js": {
|
|
2550
|
+
"description": "",
|
|
2551
|
+
"displayName": "FefferyTimeout",
|
|
2552
|
+
"methods": [],
|
|
2553
|
+
"props": {
|
|
2554
|
+
"id": {
|
|
2555
|
+
"type": {
|
|
2556
|
+
"name": "string"
|
|
2557
|
+
},
|
|
2558
|
+
"required": false,
|
|
2559
|
+
"description": ""
|
|
2560
|
+
},
|
|
2561
|
+
"timeoutCount": {
|
|
2562
|
+
"type": {
|
|
2563
|
+
"name": "number"
|
|
2564
|
+
},
|
|
2565
|
+
"required": false,
|
|
2566
|
+
"description": "",
|
|
2567
|
+
"defaultValue": {
|
|
2568
|
+
"value": "0",
|
|
2569
|
+
"computed": false
|
|
2570
|
+
}
|
|
2571
|
+
},
|
|
2572
|
+
"delay": {
|
|
2573
|
+
"type": {
|
|
2574
|
+
"name": "number"
|
|
2575
|
+
},
|
|
2576
|
+
"required": false,
|
|
2577
|
+
"description": ""
|
|
2578
|
+
},
|
|
2579
|
+
"setProps": {
|
|
2580
|
+
"type": {
|
|
2581
|
+
"name": "func"
|
|
2582
|
+
},
|
|
2583
|
+
"required": false,
|
|
2584
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
2585
|
+
},
|
|
2586
|
+
"loading_state": {
|
|
2587
|
+
"type": {
|
|
2588
|
+
"name": "shape",
|
|
2589
|
+
"value": {
|
|
2590
|
+
"is_loading": {
|
|
2591
|
+
"name": "bool",
|
|
2592
|
+
"description": "Determines if the component is loading or not",
|
|
2593
|
+
"required": false
|
|
2594
|
+
},
|
|
2595
|
+
"prop_name": {
|
|
2596
|
+
"name": "string",
|
|
2597
|
+
"description": "Holds which property is loading",
|
|
2598
|
+
"required": false
|
|
2599
|
+
},
|
|
2600
|
+
"component_name": {
|
|
2601
|
+
"name": "string",
|
|
2602
|
+
"description": "Holds the name of the component that is loading",
|
|
2603
|
+
"required": false
|
|
2604
|
+
}
|
|
2605
|
+
}
|
|
2606
|
+
},
|
|
2607
|
+
"required": false,
|
|
2608
|
+
"description": ""
|
|
2609
|
+
}
|
|
2610
|
+
}
|
|
2611
|
+
},
|
|
2409
2612
|
"src/lib/components/FefferyTopProgress.react.js": {
|
|
2410
2613
|
"description": "",
|
|
2411
2614
|
"displayName": "FefferyTopProgress",
|
|
@@ -2713,7 +2916,7 @@
|
|
|
2713
2916
|
"computed": false
|
|
2714
2917
|
}
|
|
2715
2918
|
},
|
|
2716
|
-
"
|
|
2919
|
+
"mouseEnterCount": {
|
|
2717
2920
|
"type": {
|
|
2718
2921
|
"name": "number"
|
|
2719
2922
|
},
|
|
@@ -2724,7 +2927,7 @@
|
|
|
2724
2927
|
"computed": false
|
|
2725
2928
|
}
|
|
2726
2929
|
},
|
|
2727
|
-
"
|
|
2930
|
+
"mouseLeaveCount": {
|
|
2728
2931
|
"type": {
|
|
2729
2932
|
"name": "number"
|
|
2730
2933
|
},
|
|
@@ -2789,6 +2992,24 @@
|
|
|
2789
2992
|
"required": false,
|
|
2790
2993
|
"description": ""
|
|
2791
2994
|
},
|
|
2995
|
+
"isHovering": {
|
|
2996
|
+
"type": {
|
|
2997
|
+
"name": "bool"
|
|
2998
|
+
},
|
|
2999
|
+
"required": false,
|
|
3000
|
+
"description": ""
|
|
3001
|
+
},
|
|
3002
|
+
"clickAwayCount": {
|
|
3003
|
+
"type": {
|
|
3004
|
+
"name": "number"
|
|
3005
|
+
},
|
|
3006
|
+
"required": false,
|
|
3007
|
+
"description": "",
|
|
3008
|
+
"defaultValue": {
|
|
3009
|
+
"value": "0",
|
|
3010
|
+
"computed": false
|
|
3011
|
+
}
|
|
3012
|
+
},
|
|
2792
3013
|
"setProps": {
|
|
2793
3014
|
"type": {
|
|
2794
3015
|
"name": "func"
|
|
@@ -2822,9 +3043,9 @@
|
|
|
2822
3043
|
}
|
|
2823
3044
|
}
|
|
2824
3045
|
},
|
|
2825
|
-
"src/lib/components/listeners/
|
|
3046
|
+
"src/lib/components/listeners/FefferyDocumentVisibility.react.js": {
|
|
2826
3047
|
"description": "",
|
|
2827
|
-
"displayName": "
|
|
3048
|
+
"displayName": "FefferyDocumentVisibility",
|
|
2828
3049
|
"methods": [],
|
|
2829
3050
|
"props": {
|
|
2830
3051
|
"id": {
|
|
@@ -2834,21 +3055,372 @@
|
|
|
2834
3055
|
"required": false,
|
|
2835
3056
|
"description": ""
|
|
2836
3057
|
},
|
|
2837
|
-
"
|
|
3058
|
+
"setProps": {
|
|
2838
3059
|
"type": {
|
|
2839
|
-
"name": "
|
|
3060
|
+
"name": "func"
|
|
2840
3061
|
},
|
|
2841
3062
|
"required": false,
|
|
2842
|
-
"description": ""
|
|
3063
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
2843
3064
|
},
|
|
2844
|
-
"
|
|
3065
|
+
"documentVisibility": {
|
|
2845
3066
|
"type": {
|
|
2846
|
-
"name": "
|
|
3067
|
+
"name": "enum",
|
|
3068
|
+
"value": [
|
|
3069
|
+
{
|
|
3070
|
+
"value": "'visible'",
|
|
3071
|
+
"computed": false
|
|
3072
|
+
},
|
|
3073
|
+
{
|
|
3074
|
+
"value": "'hidden'",
|
|
3075
|
+
"computed": false
|
|
3076
|
+
}
|
|
3077
|
+
]
|
|
2847
3078
|
},
|
|
2848
3079
|
"required": false,
|
|
2849
3080
|
"description": ""
|
|
2850
3081
|
},
|
|
2851
|
-
"
|
|
3082
|
+
"loading_state": {
|
|
3083
|
+
"type": {
|
|
3084
|
+
"name": "shape",
|
|
3085
|
+
"value": {
|
|
3086
|
+
"is_loading": {
|
|
3087
|
+
"name": "bool",
|
|
3088
|
+
"description": "Determines if the component is loading or not",
|
|
3089
|
+
"required": false
|
|
3090
|
+
},
|
|
3091
|
+
"prop_name": {
|
|
3092
|
+
"name": "string",
|
|
3093
|
+
"description": "Holds which property is loading",
|
|
3094
|
+
"required": false
|
|
3095
|
+
},
|
|
3096
|
+
"component_name": {
|
|
3097
|
+
"name": "string",
|
|
3098
|
+
"description": "Holds the name of the component that is loading",
|
|
3099
|
+
"required": false
|
|
3100
|
+
}
|
|
3101
|
+
}
|
|
3102
|
+
},
|
|
3103
|
+
"required": false,
|
|
3104
|
+
"description": ""
|
|
3105
|
+
}
|
|
3106
|
+
}
|
|
3107
|
+
},
|
|
3108
|
+
"src/lib/components/listeners/FefferyGeolocation.react.js": {
|
|
3109
|
+
"description": "",
|
|
3110
|
+
"displayName": "FefferyGeolocation",
|
|
3111
|
+
"methods": [],
|
|
3112
|
+
"props": {
|
|
3113
|
+
"id": {
|
|
3114
|
+
"type": {
|
|
3115
|
+
"name": "string"
|
|
3116
|
+
},
|
|
3117
|
+
"required": false,
|
|
3118
|
+
"description": ""
|
|
3119
|
+
},
|
|
3120
|
+
"geoLocationInfo": {
|
|
3121
|
+
"type": {
|
|
3122
|
+
"name": "object"
|
|
3123
|
+
},
|
|
3124
|
+
"required": false,
|
|
3125
|
+
"description": ""
|
|
3126
|
+
},
|
|
3127
|
+
"setProps": {
|
|
3128
|
+
"type": {
|
|
3129
|
+
"name": "func"
|
|
3130
|
+
},
|
|
3131
|
+
"required": false,
|
|
3132
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
3133
|
+
},
|
|
3134
|
+
"loading_state": {
|
|
3135
|
+
"type": {
|
|
3136
|
+
"name": "shape",
|
|
3137
|
+
"value": {
|
|
3138
|
+
"is_loading": {
|
|
3139
|
+
"name": "bool",
|
|
3140
|
+
"description": "Determines if the component is loading or not",
|
|
3141
|
+
"required": false
|
|
3142
|
+
},
|
|
3143
|
+
"prop_name": {
|
|
3144
|
+
"name": "string",
|
|
3145
|
+
"description": "Holds which property is loading",
|
|
3146
|
+
"required": false
|
|
3147
|
+
},
|
|
3148
|
+
"component_name": {
|
|
3149
|
+
"name": "string",
|
|
3150
|
+
"description": "Holds the name of the component that is loading",
|
|
3151
|
+
"required": false
|
|
3152
|
+
}
|
|
3153
|
+
}
|
|
3154
|
+
},
|
|
3155
|
+
"required": false,
|
|
3156
|
+
"description": ""
|
|
3157
|
+
}
|
|
3158
|
+
}
|
|
3159
|
+
},
|
|
3160
|
+
"src/lib/components/listeners/FefferyIdle.react.js": {
|
|
3161
|
+
"description": "",
|
|
3162
|
+
"displayName": "FefferyIdle",
|
|
3163
|
+
"methods": [],
|
|
3164
|
+
"props": {
|
|
3165
|
+
"id": {
|
|
3166
|
+
"type": {
|
|
3167
|
+
"name": "string"
|
|
3168
|
+
},
|
|
3169
|
+
"required": false,
|
|
3170
|
+
"description": ""
|
|
3171
|
+
},
|
|
3172
|
+
"isIdle": {
|
|
3173
|
+
"type": {
|
|
3174
|
+
"name": "bool"
|
|
3175
|
+
},
|
|
3176
|
+
"required": false,
|
|
3177
|
+
"description": ""
|
|
3178
|
+
},
|
|
3179
|
+
"waitDuration": {
|
|
3180
|
+
"type": {
|
|
3181
|
+
"name": "number"
|
|
3182
|
+
},
|
|
3183
|
+
"required": false,
|
|
3184
|
+
"description": "",
|
|
3185
|
+
"defaultValue": {
|
|
3186
|
+
"value": "3000",
|
|
3187
|
+
"computed": false
|
|
3188
|
+
}
|
|
3189
|
+
},
|
|
3190
|
+
"setProps": {
|
|
3191
|
+
"type": {
|
|
3192
|
+
"name": "func"
|
|
3193
|
+
},
|
|
3194
|
+
"required": false,
|
|
3195
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
3196
|
+
},
|
|
3197
|
+
"loading_state": {
|
|
3198
|
+
"type": {
|
|
3199
|
+
"name": "shape",
|
|
3200
|
+
"value": {
|
|
3201
|
+
"is_loading": {
|
|
3202
|
+
"name": "bool",
|
|
3203
|
+
"description": "Determines if the component is loading or not",
|
|
3204
|
+
"required": false
|
|
3205
|
+
},
|
|
3206
|
+
"prop_name": {
|
|
3207
|
+
"name": "string",
|
|
3208
|
+
"description": "Holds which property is loading",
|
|
3209
|
+
"required": false
|
|
3210
|
+
},
|
|
3211
|
+
"component_name": {
|
|
3212
|
+
"name": "string",
|
|
3213
|
+
"description": "Holds the name of the component that is loading",
|
|
3214
|
+
"required": false
|
|
3215
|
+
}
|
|
3216
|
+
}
|
|
3217
|
+
},
|
|
3218
|
+
"required": false,
|
|
3219
|
+
"description": ""
|
|
3220
|
+
}
|
|
3221
|
+
}
|
|
3222
|
+
},
|
|
3223
|
+
"src/lib/components/listeners/FefferyInViewport.react.js": {
|
|
3224
|
+
"description": "",
|
|
3225
|
+
"displayName": "FefferyInViewport",
|
|
3226
|
+
"methods": [],
|
|
3227
|
+
"props": {
|
|
3228
|
+
"id": {
|
|
3229
|
+
"type": {
|
|
3230
|
+
"name": "string"
|
|
3231
|
+
},
|
|
3232
|
+
"required": false,
|
|
3233
|
+
"description": ""
|
|
3234
|
+
},
|
|
3235
|
+
"children": {
|
|
3236
|
+
"type": {
|
|
3237
|
+
"name": "node"
|
|
3238
|
+
},
|
|
3239
|
+
"required": false,
|
|
3240
|
+
"description": ""
|
|
3241
|
+
},
|
|
3242
|
+
"inViewport": {
|
|
3243
|
+
"type": {
|
|
3244
|
+
"name": "bool"
|
|
3245
|
+
},
|
|
3246
|
+
"required": false,
|
|
3247
|
+
"description": ""
|
|
3248
|
+
},
|
|
3249
|
+
"threshold": {
|
|
3250
|
+
"type": {
|
|
3251
|
+
"name": "number"
|
|
3252
|
+
},
|
|
3253
|
+
"required": false,
|
|
3254
|
+
"description": ""
|
|
3255
|
+
},
|
|
3256
|
+
"setProps": {
|
|
3257
|
+
"type": {
|
|
3258
|
+
"name": "func"
|
|
3259
|
+
},
|
|
3260
|
+
"required": false,
|
|
3261
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
3262
|
+
},
|
|
3263
|
+
"loading_state": {
|
|
3264
|
+
"type": {
|
|
3265
|
+
"name": "shape",
|
|
3266
|
+
"value": {
|
|
3267
|
+
"is_loading": {
|
|
3268
|
+
"name": "bool",
|
|
3269
|
+
"description": "Determines if the component is loading or not",
|
|
3270
|
+
"required": false
|
|
3271
|
+
},
|
|
3272
|
+
"prop_name": {
|
|
3273
|
+
"name": "string",
|
|
3274
|
+
"description": "Holds which property is loading",
|
|
3275
|
+
"required": false
|
|
3276
|
+
},
|
|
3277
|
+
"component_name": {
|
|
3278
|
+
"name": "string",
|
|
3279
|
+
"description": "Holds the name of the component that is loading",
|
|
3280
|
+
"required": false
|
|
3281
|
+
}
|
|
3282
|
+
}
|
|
3283
|
+
},
|
|
3284
|
+
"required": false,
|
|
3285
|
+
"description": ""
|
|
3286
|
+
}
|
|
3287
|
+
}
|
|
3288
|
+
},
|
|
3289
|
+
"src/lib/components/listeners/FefferyKeyPress.react.js": {
|
|
3290
|
+
"description": "",
|
|
3291
|
+
"displayName": "FefferyKeyPress",
|
|
3292
|
+
"methods": [],
|
|
3293
|
+
"props": {
|
|
3294
|
+
"id": {
|
|
3295
|
+
"type": {
|
|
3296
|
+
"name": "string"
|
|
3297
|
+
},
|
|
3298
|
+
"required": false,
|
|
3299
|
+
"description": ""
|
|
3300
|
+
},
|
|
3301
|
+
"keys": {
|
|
3302
|
+
"type": {
|
|
3303
|
+
"name": "string"
|
|
3304
|
+
},
|
|
3305
|
+
"required": true,
|
|
3306
|
+
"description": ""
|
|
3307
|
+
},
|
|
3308
|
+
"pressedTimes": {
|
|
3309
|
+
"type": {
|
|
3310
|
+
"name": "number"
|
|
3311
|
+
},
|
|
3312
|
+
"required": false,
|
|
3313
|
+
"description": "",
|
|
3314
|
+
"defaultValue": {
|
|
3315
|
+
"value": "0",
|
|
3316
|
+
"computed": false
|
|
3317
|
+
}
|
|
3318
|
+
},
|
|
3319
|
+
"setProps": {
|
|
3320
|
+
"type": {
|
|
3321
|
+
"name": "func"
|
|
3322
|
+
},
|
|
3323
|
+
"required": false,
|
|
3324
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
3325
|
+
},
|
|
3326
|
+
"loading_state": {
|
|
3327
|
+
"type": {
|
|
3328
|
+
"name": "shape",
|
|
3329
|
+
"value": {
|
|
3330
|
+
"is_loading": {
|
|
3331
|
+
"name": "bool",
|
|
3332
|
+
"description": "Determines if the component is loading or not",
|
|
3333
|
+
"required": false
|
|
3334
|
+
},
|
|
3335
|
+
"prop_name": {
|
|
3336
|
+
"name": "string",
|
|
3337
|
+
"description": "Holds which property is loading",
|
|
3338
|
+
"required": false
|
|
3339
|
+
},
|
|
3340
|
+
"component_name": {
|
|
3341
|
+
"name": "string",
|
|
3342
|
+
"description": "Holds the name of the component that is loading",
|
|
3343
|
+
"required": false
|
|
3344
|
+
}
|
|
3345
|
+
}
|
|
3346
|
+
},
|
|
3347
|
+
"required": false,
|
|
3348
|
+
"description": ""
|
|
3349
|
+
}
|
|
3350
|
+
}
|
|
3351
|
+
},
|
|
3352
|
+
"src/lib/components/listeners/FefferyResponsive.react.js": {
|
|
3353
|
+
"description": "",
|
|
3354
|
+
"displayName": "FefferyResponsive",
|
|
3355
|
+
"methods": [],
|
|
3356
|
+
"props": {
|
|
3357
|
+
"id": {
|
|
3358
|
+
"type": {
|
|
3359
|
+
"name": "string"
|
|
3360
|
+
},
|
|
3361
|
+
"required": false,
|
|
3362
|
+
"description": ""
|
|
3363
|
+
},
|
|
3364
|
+
"responsive": {
|
|
3365
|
+
"type": {
|
|
3366
|
+
"name": "object"
|
|
3367
|
+
},
|
|
3368
|
+
"required": false,
|
|
3369
|
+
"description": ""
|
|
3370
|
+
},
|
|
3371
|
+
"setProps": {
|
|
3372
|
+
"type": {
|
|
3373
|
+
"name": "func"
|
|
3374
|
+
},
|
|
3375
|
+
"required": false,
|
|
3376
|
+
"description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
|
|
3377
|
+
},
|
|
3378
|
+
"loading_state": {
|
|
3379
|
+
"type": {
|
|
3380
|
+
"name": "shape",
|
|
3381
|
+
"value": {
|
|
3382
|
+
"is_loading": {
|
|
3383
|
+
"name": "bool",
|
|
3384
|
+
"description": "Determines if the component is loading or not",
|
|
3385
|
+
"required": false
|
|
3386
|
+
},
|
|
3387
|
+
"prop_name": {
|
|
3388
|
+
"name": "string",
|
|
3389
|
+
"description": "Holds which property is loading",
|
|
3390
|
+
"required": false
|
|
3391
|
+
},
|
|
3392
|
+
"component_name": {
|
|
3393
|
+
"name": "string",
|
|
3394
|
+
"description": "Holds the name of the component that is loading",
|
|
3395
|
+
"required": false
|
|
3396
|
+
}
|
|
3397
|
+
}
|
|
3398
|
+
},
|
|
3399
|
+
"required": false,
|
|
3400
|
+
"description": ""
|
|
3401
|
+
}
|
|
3402
|
+
}
|
|
3403
|
+
},
|
|
3404
|
+
"src/lib/components/listeners/FefferyWindowSize.react.js": {
|
|
3405
|
+
"description": "",
|
|
3406
|
+
"displayName": "FefferyWindowSize",
|
|
3407
|
+
"methods": [],
|
|
3408
|
+
"props": {
|
|
3409
|
+
"id": {
|
|
3410
|
+
"type": {
|
|
3411
|
+
"name": "string"
|
|
3412
|
+
},
|
|
3413
|
+
"required": false,
|
|
3414
|
+
"description": ""
|
|
3415
|
+
},
|
|
3416
|
+
"_width": {
|
|
3417
|
+
"type": {
|
|
3418
|
+
"name": "number"
|
|
3419
|
+
},
|
|
3420
|
+
"required": false,
|
|
3421
|
+
"description": ""
|
|
3422
|
+
},
|
|
3423
|
+
"_height": {
|
|
2852
3424
|
"type": {
|
|
2853
3425
|
"name": "number"
|
|
2854
3426
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "feffery_utils_components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"description": "Build more utility components for Plotly Dash.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"react-spinners-kit": "^1.9.1",
|
|
43
43
|
"react-split": "^2.0.14",
|
|
44
44
|
"react-syntax-highlighter": "^15.4.4",
|
|
45
|
+
"react-use": "^17.4.0",
|
|
45
46
|
"simplebar-react": "^2.3.7"
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|
|
@@ -36,6 +36,8 @@ Keyword arguments:
|
|
|
36
36
|
- prop_name (string; optional):
|
|
37
37
|
Holds which property is loading.
|
|
38
38
|
|
|
39
|
+
- refresh (boolean; optional)
|
|
40
|
+
|
|
39
41
|
- style (dict; optional)
|
|
40
42
|
|
|
41
43
|
- width (number; optional)"""
|
|
@@ -44,10 +46,10 @@ Keyword arguments:
|
|
|
44
46
|
_namespace = 'feffery_utils_components'
|
|
45
47
|
_type = 'FefferyCaptcha'
|
|
46
48
|
@_explicitize_args
|
|
47
|
-
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, captcha=Component.UNDEFINED, charNum=Component.UNDEFINED, height=Component.UNDEFINED, width=Component.UNDEFINED, bgColor=Component.UNDEFINED, fontSize=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
48
|
-
self._prop_names = ['id', 'bgColor', 'captcha', 'charNum', 'className', 'fontSize', 'height', 'loading_state', 'style', 'width']
|
|
49
|
+
def __init__(self, id=Component.UNDEFINED, className=Component.UNDEFINED, style=Component.UNDEFINED, captcha=Component.UNDEFINED, charNum=Component.UNDEFINED, height=Component.UNDEFINED, width=Component.UNDEFINED, bgColor=Component.UNDEFINED, fontSize=Component.UNDEFINED, refresh=Component.UNDEFINED, loading_state=Component.UNDEFINED, **kwargs):
|
|
50
|
+
self._prop_names = ['id', 'bgColor', 'captcha', 'charNum', 'className', 'fontSize', 'height', 'loading_state', 'refresh', 'style', 'width']
|
|
49
51
|
self._valid_wildcard_attributes = []
|
|
50
|
-
self.available_properties = ['id', 'bgColor', 'captcha', 'charNum', 'className', 'fontSize', 'height', 'loading_state', 'style', 'width']
|
|
52
|
+
self.available_properties = ['id', 'bgColor', 'captcha', 'charNum', 'className', 'fontSize', 'height', 'loading_state', 'refresh', 'style', 'width']
|
|
51
53
|
self.available_wildcard_properties = []
|
|
52
54
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
53
55
|
_locals = locals()
|