feffery_utils_components 0.0.22 → 0.0.23

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.
@@ -884,6 +884,76 @@
884
884
  }
885
885
  }
886
886
  },
887
+ "src/lib/components/FefferyCountDown.react.js": {
888
+ "description": "",
889
+ "displayName": "FefferyCountDown",
890
+ "methods": [],
891
+ "props": {
892
+ "id": {
893
+ "type": {
894
+ "name": "string"
895
+ },
896
+ "required": false,
897
+ "description": ""
898
+ },
899
+ "delay": {
900
+ "type": {
901
+ "name": "number"
902
+ },
903
+ "required": false,
904
+ "description": ""
905
+ },
906
+ "interval": {
907
+ "type": {
908
+ "name": "number"
909
+ },
910
+ "required": false,
911
+ "description": "",
912
+ "defaultValue": {
913
+ "value": "1",
914
+ "computed": false
915
+ }
916
+ },
917
+ "countdown": {
918
+ "type": {
919
+ "name": "number"
920
+ },
921
+ "required": false,
922
+ "description": ""
923
+ },
924
+ "setProps": {
925
+ "type": {
926
+ "name": "func"
927
+ },
928
+ "required": false,
929
+ "description": "Dash-assigned callback that should be called to report property changes\r\nto Dash, to make them available for callbacks."
930
+ },
931
+ "loading_state": {
932
+ "type": {
933
+ "name": "shape",
934
+ "value": {
935
+ "is_loading": {
936
+ "name": "bool",
937
+ "description": "Determines if the component is loading or not",
938
+ "required": false
939
+ },
940
+ "prop_name": {
941
+ "name": "string",
942
+ "description": "Holds which property is loading",
943
+ "required": false
944
+ },
945
+ "component_name": {
946
+ "name": "string",
947
+ "description": "Holds the name of the component that is loading",
948
+ "required": false
949
+ }
950
+ }
951
+ },
952
+ "required": false,
953
+ "description": ""
954
+ }
955
+ }
956
+ },
887
957
  "src/lib/components/FefferyExecuteJs.react.js": {
888
958
  "description": "",
889
959
  "displayName": "FefferyExecuteJs",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "feffery_utils_components",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "description": "Build more utility components for Plotly Dash.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,7 +17,7 @@ Keyword arguments:
17
17
 
18
18
  - _width (number; optional)
19
19
 
20
- - className (string; optional)
20
+ - className (string | dict; optional)
21
21
 
22
22
  - clickAwayCount (number; default 0)
23
23