@itcase/ui 1.0.66 → 1.0.70
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/dist/components/Accordion.js +349 -0
- package/dist/components/Avatar.js +100 -0
- package/dist/components/Background.js +172 -0
- package/dist/components/Badge.js +109 -32
- package/dist/components/Breadcrumbs.js +414 -0
- package/dist/components/Button.js +364 -59
- package/dist/components/Caption.js +129 -0
- package/dist/components/Card.js +171 -0
- package/dist/components/Cell.js +190 -0
- package/dist/components/Checkbox.js +14 -0
- package/dist/components/Chips.js +247 -0
- package/dist/components/Choice.js +60 -0
- package/dist/components/Code.js +119 -0
- package/dist/components/ContextMenu.js +83 -0
- package/dist/components/CookiesWarning.js +55 -6
- package/dist/components/DadataHintField.js +49 -0
- package/dist/components/DatePicker.js +71 -8
- package/dist/components/Divider.js +165 -0
- package/dist/components/Dot.js +157 -0
- package/dist/components/Drawer.js +77 -0
- package/dist/components/Dropdown.js +421 -0
- package/dist/components/Empty.js +124 -3
- package/dist/components/Fader.js +128 -0
- package/dist/components/Flex.js +898 -0
- package/dist/components/FormField.js +306 -2
- package/dist/components/Grid.js +1299 -0
- package/dist/components/Group.js +377 -0
- package/dist/components/Icon.js +342 -0
- package/dist/components/Image.js +326 -0
- package/dist/components/Input.js +88 -0
- package/dist/components/InputPassword.js +88 -0
- package/dist/components/Label.js +255 -1
- package/dist/components/LanguageSelector.js +35 -0
- package/dist/components/Link.js +324 -0
- package/dist/components/List.js +349 -0
- package/dist/components/Loader.js +49 -0
- package/dist/components/Logo.js +49 -0
- package/dist/components/Menu.js +98 -0
- package/dist/components/MenuItem.js +386 -0
- package/dist/components/Modal.js +147 -0
- package/dist/components/Notification.js +133 -0
- package/dist/components/Page.js +308 -0
- package/dist/components/Pagination.js +30 -2
- package/dist/components/RadioButton.js +28 -0
- package/dist/components/RangeSlider.js +171 -0
- package/dist/components/Scrollbar.js +14 -0
- package/dist/components/Search.js +299 -0
- package/dist/components/Segmented.js +60 -0
- package/dist/components/Select.js +524 -1
- package/dist/components/SiteMenu.js +70 -0
- package/dist/components/Swiper.js +361 -0
- package/dist/components/Switch.js +49 -0
- package/dist/components/Tab.js +750 -3
- package/dist/components/Text.js +218 -2
- package/dist/components/Textarea.js +78 -2
- package/dist/components/Tile.js +366 -2
- package/dist/components/Title.js +235 -0
- package/dist/components/Tooltip.js +195 -0
- package/dist/components/Video.js +98 -0
- package/dist/components/Wrapper.js +316 -0
- package/dist/constants/componentProps/iconSize.js +1 -1
- package/dist/constants/componentProps/itemColor.js +5 -0
- package/dist/constants/componentProps/size.js +1 -1
- package/dist/constants/componentProps/textSize.js +5 -0
- package/dist/constants/componentProps/textWrap.js +5 -0
- package/dist/constants.js +8 -2
- package/dist/context/Notifications.js +14 -0
- package/dist/css/components/Badge/Badge.css +1 -1
- package/dist/css/components/Button/Button.css +1 -1
- package/dist/css/components/DatePicker/DatePicker.css +6 -1
- package/dist/css/components/RadioButton/RadioButton.css +19 -19
- package/dist/css/components/Segmented/Segmented.css +6 -8
- package/dist/css/styles/constraints/constraints.css +42 -29
- package/dist/css/styles/width/width.css +3 -1
- package/package.json +2 -1
|
@@ -83,6 +83,34 @@ SelectClearIndicator.propTypes = {
|
|
|
83
83
|
clearIconStroke: PropTypes__default.default.string
|
|
84
84
|
})
|
|
85
85
|
};
|
|
86
|
+
SelectClearIndicator.__docgenInfo = {
|
|
87
|
+
"description": "",
|
|
88
|
+
"methods": [],
|
|
89
|
+
"displayName": "SelectClearIndicator",
|
|
90
|
+
"props": {
|
|
91
|
+
"selectProps": {
|
|
92
|
+
"description": "",
|
|
93
|
+
"type": {
|
|
94
|
+
"name": "shape",
|
|
95
|
+
"value": {
|
|
96
|
+
"clearIcon": {
|
|
97
|
+
"name": "string",
|
|
98
|
+
"required": false
|
|
99
|
+
},
|
|
100
|
+
"clearIconFill": {
|
|
101
|
+
"name": "string",
|
|
102
|
+
"required": false
|
|
103
|
+
},
|
|
104
|
+
"clearIconStroke": {
|
|
105
|
+
"name": "string",
|
|
106
|
+
"required": false
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"required": false
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
};
|
|
86
114
|
|
|
87
115
|
function _extends() {
|
|
88
116
|
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
|
@@ -7537,6 +7565,34 @@ SelectControl.propTypes = {
|
|
|
7537
7565
|
set: PropTypes__default.default.string
|
|
7538
7566
|
})
|
|
7539
7567
|
};
|
|
7568
|
+
SelectControl.__docgenInfo = {
|
|
7569
|
+
"description": "",
|
|
7570
|
+
"methods": [],
|
|
7571
|
+
"displayName": "SelectControl",
|
|
7572
|
+
"props": {
|
|
7573
|
+
"selectProps": {
|
|
7574
|
+
"description": "",
|
|
7575
|
+
"type": {
|
|
7576
|
+
"name": "shape",
|
|
7577
|
+
"value": {
|
|
7578
|
+
"inputFill": {
|
|
7579
|
+
"name": "string",
|
|
7580
|
+
"required": false
|
|
7581
|
+
},
|
|
7582
|
+
"inputShape": {
|
|
7583
|
+
"name": "string",
|
|
7584
|
+
"required": false
|
|
7585
|
+
},
|
|
7586
|
+
"set": {
|
|
7587
|
+
"name": "string",
|
|
7588
|
+
"required": false
|
|
7589
|
+
}
|
|
7590
|
+
}
|
|
7591
|
+
},
|
|
7592
|
+
"required": false
|
|
7593
|
+
}
|
|
7594
|
+
}
|
|
7595
|
+
};
|
|
7540
7596
|
|
|
7541
7597
|
const SelectDropdownIndicator = props => {
|
|
7542
7598
|
const {
|
|
@@ -7557,6 +7613,34 @@ SelectDropdownIndicator.propTypes = {
|
|
|
7557
7613
|
dropdownIconStroke: PropTypes__default.default.string
|
|
7558
7614
|
})
|
|
7559
7615
|
};
|
|
7616
|
+
SelectDropdownIndicator.__docgenInfo = {
|
|
7617
|
+
"description": "",
|
|
7618
|
+
"methods": [],
|
|
7619
|
+
"displayName": "SelectDropdownIndicator",
|
|
7620
|
+
"props": {
|
|
7621
|
+
"selectProps": {
|
|
7622
|
+
"description": "",
|
|
7623
|
+
"type": {
|
|
7624
|
+
"name": "shape",
|
|
7625
|
+
"value": {
|
|
7626
|
+
"dropdownIcon": {
|
|
7627
|
+
"name": "string",
|
|
7628
|
+
"required": false
|
|
7629
|
+
},
|
|
7630
|
+
"dropdownIconFill": {
|
|
7631
|
+
"name": "string",
|
|
7632
|
+
"required": false
|
|
7633
|
+
},
|
|
7634
|
+
"dropdownIconStroke": {
|
|
7635
|
+
"name": "string",
|
|
7636
|
+
"required": false
|
|
7637
|
+
}
|
|
7638
|
+
}
|
|
7639
|
+
},
|
|
7640
|
+
"required": false
|
|
7641
|
+
}
|
|
7642
|
+
}
|
|
7643
|
+
};
|
|
7560
7644
|
|
|
7561
7645
|
const SelectGroupHeading = props => {
|
|
7562
7646
|
const {
|
|
@@ -7577,6 +7661,21 @@ const SelectGroupHeading = props => {
|
|
|
7577
7661
|
SelectGroupHeading.propTypes = {
|
|
7578
7662
|
selectProps: PropTypes__default.default.shape({})
|
|
7579
7663
|
};
|
|
7664
|
+
SelectGroupHeading.__docgenInfo = {
|
|
7665
|
+
"description": "",
|
|
7666
|
+
"methods": [],
|
|
7667
|
+
"displayName": "SelectGroupHeading",
|
|
7668
|
+
"props": {
|
|
7669
|
+
"selectProps": {
|
|
7670
|
+
"description": "",
|
|
7671
|
+
"type": {
|
|
7672
|
+
"name": "shape",
|
|
7673
|
+
"value": {}
|
|
7674
|
+
},
|
|
7675
|
+
"required": false
|
|
7676
|
+
}
|
|
7677
|
+
}
|
|
7678
|
+
};
|
|
7580
7679
|
|
|
7581
7680
|
const SelectInput = props => {
|
|
7582
7681
|
const {
|
|
@@ -7596,6 +7695,41 @@ SelectInput.propTypes = {
|
|
|
7596
7695
|
}),
|
|
7597
7696
|
children: PropTypes__default.default.any
|
|
7598
7697
|
};
|
|
7698
|
+
SelectInput.__docgenInfo = {
|
|
7699
|
+
"description": "",
|
|
7700
|
+
"methods": [],
|
|
7701
|
+
"displayName": "SelectInput",
|
|
7702
|
+
"props": {
|
|
7703
|
+
"selectProps": {
|
|
7704
|
+
"description": "",
|
|
7705
|
+
"type": {
|
|
7706
|
+
"name": "shape",
|
|
7707
|
+
"value": {
|
|
7708
|
+
"inputTextSize": {
|
|
7709
|
+
"name": "string",
|
|
7710
|
+
"required": false
|
|
7711
|
+
},
|
|
7712
|
+
"inputTextColor": {
|
|
7713
|
+
"name": "string",
|
|
7714
|
+
"required": false
|
|
7715
|
+
},
|
|
7716
|
+
"inputCaretColor": {
|
|
7717
|
+
"name": "string",
|
|
7718
|
+
"required": false
|
|
7719
|
+
}
|
|
7720
|
+
}
|
|
7721
|
+
},
|
|
7722
|
+
"required": false
|
|
7723
|
+
},
|
|
7724
|
+
"children": {
|
|
7725
|
+
"description": "",
|
|
7726
|
+
"type": {
|
|
7727
|
+
"name": "any"
|
|
7728
|
+
},
|
|
7729
|
+
"required": false
|
|
7730
|
+
}
|
|
7731
|
+
}
|
|
7732
|
+
};
|
|
7599
7733
|
|
|
7600
7734
|
const SelectMenu = props => {
|
|
7601
7735
|
const {
|
|
@@ -7614,6 +7748,37 @@ SelectMenu.propTypes = {
|
|
|
7614
7748
|
}),
|
|
7615
7749
|
children: PropTypes__default.default.any
|
|
7616
7750
|
};
|
|
7751
|
+
SelectMenu.__docgenInfo = {
|
|
7752
|
+
"description": "",
|
|
7753
|
+
"methods": [],
|
|
7754
|
+
"displayName": "SelectMenu",
|
|
7755
|
+
"props": {
|
|
7756
|
+
"selectProps": {
|
|
7757
|
+
"description": "",
|
|
7758
|
+
"type": {
|
|
7759
|
+
"name": "shape",
|
|
7760
|
+
"value": {
|
|
7761
|
+
"fetchingData": {
|
|
7762
|
+
"name": "any",
|
|
7763
|
+
"required": false
|
|
7764
|
+
},
|
|
7765
|
+
"set": {
|
|
7766
|
+
"name": "string",
|
|
7767
|
+
"required": false
|
|
7768
|
+
}
|
|
7769
|
+
}
|
|
7770
|
+
},
|
|
7771
|
+
"required": false
|
|
7772
|
+
},
|
|
7773
|
+
"children": {
|
|
7774
|
+
"description": "",
|
|
7775
|
+
"type": {
|
|
7776
|
+
"name": "any"
|
|
7777
|
+
},
|
|
7778
|
+
"required": false
|
|
7779
|
+
}
|
|
7780
|
+
}
|
|
7781
|
+
};
|
|
7617
7782
|
|
|
7618
7783
|
const SelectMultiValueContainer = props => {
|
|
7619
7784
|
const {
|
|
@@ -7629,6 +7794,11 @@ const SelectMultiValueContainer = props => {
|
|
|
7629
7794
|
fillHover: multipleItemFillHover
|
|
7630
7795
|
}, props.children));
|
|
7631
7796
|
};
|
|
7797
|
+
SelectMultiValueContainer.__docgenInfo = {
|
|
7798
|
+
"description": "",
|
|
7799
|
+
"methods": [],
|
|
7800
|
+
"displayName": "SelectMultiValueContainer"
|
|
7801
|
+
};
|
|
7632
7802
|
|
|
7633
7803
|
const SelectMultiValueLabel = props => {
|
|
7634
7804
|
const {
|
|
@@ -7641,6 +7811,11 @@ const SelectMultiValueLabel = props => {
|
|
|
7641
7811
|
}, props.data.label));
|
|
7642
7812
|
};
|
|
7643
7813
|
SelectMultiValueLabel.propTypes = {};
|
|
7814
|
+
SelectMultiValueLabel.__docgenInfo = {
|
|
7815
|
+
"description": "",
|
|
7816
|
+
"methods": [],
|
|
7817
|
+
"displayName": "SelectMultiValueLabel"
|
|
7818
|
+
};
|
|
7644
7819
|
|
|
7645
7820
|
const SelectMultiValueRemove = props => {
|
|
7646
7821
|
const {
|
|
@@ -7653,6 +7828,11 @@ const SelectMultiValueRemove = props => {
|
|
|
7653
7828
|
}));
|
|
7654
7829
|
};
|
|
7655
7830
|
SelectMultiValueRemove.propTypes = {};
|
|
7831
|
+
SelectMultiValueRemove.__docgenInfo = {
|
|
7832
|
+
"description": "",
|
|
7833
|
+
"methods": [],
|
|
7834
|
+
"displayName": "SelectMultiValueRemove"
|
|
7835
|
+
};
|
|
7656
7836
|
|
|
7657
7837
|
const SelectNoOptions = props => {
|
|
7658
7838
|
const {
|
|
@@ -7678,6 +7858,41 @@ SelectNoOptions.propTypes = {
|
|
|
7678
7858
|
}),
|
|
7679
7859
|
children: PropTypes__default.default.any
|
|
7680
7860
|
};
|
|
7861
|
+
SelectNoOptions.__docgenInfo = {
|
|
7862
|
+
"description": "",
|
|
7863
|
+
"methods": [],
|
|
7864
|
+
"displayName": "SelectNoOptions",
|
|
7865
|
+
"props": {
|
|
7866
|
+
"selectProps": {
|
|
7867
|
+
"description": "",
|
|
7868
|
+
"type": {
|
|
7869
|
+
"name": "shape",
|
|
7870
|
+
"value": {
|
|
7871
|
+
"noOptionsTextSize": {
|
|
7872
|
+
"name": "string",
|
|
7873
|
+
"required": false
|
|
7874
|
+
},
|
|
7875
|
+
"noOptionsTextColor": {
|
|
7876
|
+
"name": "string",
|
|
7877
|
+
"required": false
|
|
7878
|
+
},
|
|
7879
|
+
"noOptionsText": {
|
|
7880
|
+
"name": "string",
|
|
7881
|
+
"required": false
|
|
7882
|
+
}
|
|
7883
|
+
}
|
|
7884
|
+
},
|
|
7885
|
+
"required": false
|
|
7886
|
+
},
|
|
7887
|
+
"children": {
|
|
7888
|
+
"description": "",
|
|
7889
|
+
"type": {
|
|
7890
|
+
"name": "any"
|
|
7891
|
+
},
|
|
7892
|
+
"required": false
|
|
7893
|
+
}
|
|
7894
|
+
}
|
|
7895
|
+
};
|
|
7681
7896
|
|
|
7682
7897
|
const SelectOption = props => {
|
|
7683
7898
|
const {
|
|
@@ -7719,6 +7934,60 @@ SelectOption.propTypes = {
|
|
|
7719
7934
|
label: PropTypes__default.default.string,
|
|
7720
7935
|
isSelected: PropTypes__default.default.any
|
|
7721
7936
|
};
|
|
7937
|
+
SelectOption.__docgenInfo = {
|
|
7938
|
+
"description": "",
|
|
7939
|
+
"methods": [],
|
|
7940
|
+
"displayName": "SelectOption",
|
|
7941
|
+
"props": {
|
|
7942
|
+
"selectProps": {
|
|
7943
|
+
"description": "",
|
|
7944
|
+
"type": {
|
|
7945
|
+
"name": "shape",
|
|
7946
|
+
"value": {
|
|
7947
|
+
"optionFill": {
|
|
7948
|
+
"name": "string",
|
|
7949
|
+
"required": false
|
|
7950
|
+
},
|
|
7951
|
+
"optionTextSize": {
|
|
7952
|
+
"name": "string",
|
|
7953
|
+
"required": false
|
|
7954
|
+
},
|
|
7955
|
+
"optionTextColor": {
|
|
7956
|
+
"name": "string",
|
|
7957
|
+
"required": false
|
|
7958
|
+
},
|
|
7959
|
+
"optionShape": {
|
|
7960
|
+
"name": "string",
|
|
7961
|
+
"required": false
|
|
7962
|
+
},
|
|
7963
|
+
"optionBefore": {
|
|
7964
|
+
"name": "any",
|
|
7965
|
+
"required": false
|
|
7966
|
+
},
|
|
7967
|
+
"optionAfter": {
|
|
7968
|
+
"name": "any",
|
|
7969
|
+
"required": false
|
|
7970
|
+
}
|
|
7971
|
+
}
|
|
7972
|
+
},
|
|
7973
|
+
"required": false
|
|
7974
|
+
},
|
|
7975
|
+
"label": {
|
|
7976
|
+
"description": "",
|
|
7977
|
+
"type": {
|
|
7978
|
+
"name": "string"
|
|
7979
|
+
},
|
|
7980
|
+
"required": false
|
|
7981
|
+
},
|
|
7982
|
+
"isSelected": {
|
|
7983
|
+
"description": "",
|
|
7984
|
+
"type": {
|
|
7985
|
+
"name": "any"
|
|
7986
|
+
},
|
|
7987
|
+
"required": false
|
|
7988
|
+
}
|
|
7989
|
+
}
|
|
7990
|
+
};
|
|
7722
7991
|
|
|
7723
7992
|
const SelectPlaceholder = props => {
|
|
7724
7993
|
const {
|
|
@@ -7737,6 +8006,37 @@ SelectPlaceholder.propTypes = {
|
|
|
7737
8006
|
}),
|
|
7738
8007
|
children: PropTypes__default.default.any
|
|
7739
8008
|
};
|
|
8009
|
+
SelectPlaceholder.__docgenInfo = {
|
|
8010
|
+
"description": "",
|
|
8011
|
+
"methods": [],
|
|
8012
|
+
"displayName": "SelectPlaceholder",
|
|
8013
|
+
"props": {
|
|
8014
|
+
"selectProps": {
|
|
8015
|
+
"description": "",
|
|
8016
|
+
"type": {
|
|
8017
|
+
"name": "shape",
|
|
8018
|
+
"value": {
|
|
8019
|
+
"placeholderTextSize": {
|
|
8020
|
+
"name": "string",
|
|
8021
|
+
"required": false
|
|
8022
|
+
},
|
|
8023
|
+
"placeholderTextColor": {
|
|
8024
|
+
"name": "string",
|
|
8025
|
+
"required": false
|
|
8026
|
+
}
|
|
8027
|
+
}
|
|
8028
|
+
},
|
|
8029
|
+
"required": false
|
|
8030
|
+
},
|
|
8031
|
+
"children": {
|
|
8032
|
+
"description": "",
|
|
8033
|
+
"type": {
|
|
8034
|
+
"name": "any"
|
|
8035
|
+
},
|
|
8036
|
+
"required": false
|
|
8037
|
+
}
|
|
8038
|
+
}
|
|
8039
|
+
};
|
|
7740
8040
|
|
|
7741
8041
|
const SelectSingleValue = props => {
|
|
7742
8042
|
const {
|
|
@@ -7759,6 +8059,44 @@ SelectSingleValue.propTypes = {
|
|
|
7759
8059
|
children: PropTypes__default.default.any,
|
|
7760
8060
|
data: PropTypes__default.default.object
|
|
7761
8061
|
};
|
|
8062
|
+
SelectSingleValue.__docgenInfo = {
|
|
8063
|
+
"description": "",
|
|
8064
|
+
"methods": [],
|
|
8065
|
+
"displayName": "SelectSingleValue",
|
|
8066
|
+
"props": {
|
|
8067
|
+
"selectProps": {
|
|
8068
|
+
"description": "",
|
|
8069
|
+
"type": {
|
|
8070
|
+
"name": "shape",
|
|
8071
|
+
"value": {
|
|
8072
|
+
"inputTextSize": {
|
|
8073
|
+
"name": "string",
|
|
8074
|
+
"required": false
|
|
8075
|
+
},
|
|
8076
|
+
"inputTextColor": {
|
|
8077
|
+
"name": "string",
|
|
8078
|
+
"required": false
|
|
8079
|
+
}
|
|
8080
|
+
}
|
|
8081
|
+
},
|
|
8082
|
+
"required": false
|
|
8083
|
+
},
|
|
8084
|
+
"children": {
|
|
8085
|
+
"description": "",
|
|
8086
|
+
"type": {
|
|
8087
|
+
"name": "any"
|
|
8088
|
+
},
|
|
8089
|
+
"required": false
|
|
8090
|
+
},
|
|
8091
|
+
"data": {
|
|
8092
|
+
"description": "",
|
|
8093
|
+
"type": {
|
|
8094
|
+
"name": "object"
|
|
8095
|
+
},
|
|
8096
|
+
"required": false
|
|
8097
|
+
}
|
|
8098
|
+
}
|
|
8099
|
+
};
|
|
7762
8100
|
|
|
7763
8101
|
const SelectValueContainer = props => {
|
|
7764
8102
|
const {
|
|
@@ -7775,6 +8113,34 @@ SelectValueContainer.propTypes = {
|
|
|
7775
8113
|
inputAfter: PropTypes__default.default.any
|
|
7776
8114
|
})
|
|
7777
8115
|
};
|
|
8116
|
+
SelectValueContainer.__docgenInfo = {
|
|
8117
|
+
"description": "",
|
|
8118
|
+
"methods": [],
|
|
8119
|
+
"displayName": "SelectValueContainer",
|
|
8120
|
+
"props": {
|
|
8121
|
+
"selectProps": {
|
|
8122
|
+
"description": "",
|
|
8123
|
+
"type": {
|
|
8124
|
+
"name": "shape",
|
|
8125
|
+
"value": {
|
|
8126
|
+
"children": {
|
|
8127
|
+
"name": "any",
|
|
8128
|
+
"required": false
|
|
8129
|
+
},
|
|
8130
|
+
"inputBefore": {
|
|
8131
|
+
"name": "any",
|
|
8132
|
+
"required": false
|
|
8133
|
+
},
|
|
8134
|
+
"inputAfter": {
|
|
8135
|
+
"name": "any",
|
|
8136
|
+
"required": false
|
|
8137
|
+
}
|
|
8138
|
+
}
|
|
8139
|
+
},
|
|
8140
|
+
"required": false
|
|
8141
|
+
}
|
|
8142
|
+
}
|
|
8143
|
+
};
|
|
7778
8144
|
|
|
7779
8145
|
const SelectContainer = /*#__PURE__*/React__namespace.default.forwardRef(function SelectContainer(props, ref) {
|
|
7780
8146
|
const clearStyle = React.useMemo(() => new Proxy({}, {
|
|
@@ -7824,7 +8190,7 @@ const SelectContainer = /*#__PURE__*/React__namespace.default.forwardRef(functio
|
|
|
7824
8190
|
});
|
|
7825
8191
|
const fillHoverClass = useDeviceTargetClass.useDeviceTargetClass(props, {
|
|
7826
8192
|
prefix: 'fill_hover_',
|
|
7827
|
-
propsKey: '
|
|
8193
|
+
propsKey: 'fillHover'
|
|
7828
8194
|
});
|
|
7829
8195
|
const shapeClass = useDeviceTargetClass.useDeviceTargetClass(props, {
|
|
7830
8196
|
prefix: 'select_shape_',
|
|
@@ -8025,6 +8391,163 @@ SelectContainer.defaultProps = {
|
|
|
8025
8391
|
animationOpen: 'select_animation_open',
|
|
8026
8392
|
animationClose: 'select_animation_close'
|
|
8027
8393
|
};
|
|
8394
|
+
SelectContainer.__docgenInfo = {
|
|
8395
|
+
"description": "",
|
|
8396
|
+
"methods": [],
|
|
8397
|
+
"displayName": "SelectContainer",
|
|
8398
|
+
"props": {
|
|
8399
|
+
"animationOpen": {
|
|
8400
|
+
"defaultValue": {
|
|
8401
|
+
"value": "'select_animation_open'",
|
|
8402
|
+
"computed": false
|
|
8403
|
+
},
|
|
8404
|
+
"required": false
|
|
8405
|
+
},
|
|
8406
|
+
"animationClose": {
|
|
8407
|
+
"defaultValue": {
|
|
8408
|
+
"value": "'select_animation_close'",
|
|
8409
|
+
"computed": false
|
|
8410
|
+
},
|
|
8411
|
+
"required": false
|
|
8412
|
+
},
|
|
8413
|
+
"isSearchable": {
|
|
8414
|
+
"description": "",
|
|
8415
|
+
"type": {
|
|
8416
|
+
"name": "bool"
|
|
8417
|
+
},
|
|
8418
|
+
"required": false
|
|
8419
|
+
},
|
|
8420
|
+
"isClearable": {
|
|
8421
|
+
"description": "",
|
|
8422
|
+
"type": {
|
|
8423
|
+
"name": "bool"
|
|
8424
|
+
},
|
|
8425
|
+
"required": false
|
|
8426
|
+
},
|
|
8427
|
+
"clearIcon": {
|
|
8428
|
+
"description": "",
|
|
8429
|
+
"type": {
|
|
8430
|
+
"name": "string"
|
|
8431
|
+
},
|
|
8432
|
+
"required": false
|
|
8433
|
+
},
|
|
8434
|
+
"clearIconFill": {
|
|
8435
|
+
"description": "",
|
|
8436
|
+
"type": {
|
|
8437
|
+
"name": "string"
|
|
8438
|
+
},
|
|
8439
|
+
"required": false
|
|
8440
|
+
},
|
|
8441
|
+
"clearIconStroke": {
|
|
8442
|
+
"description": "",
|
|
8443
|
+
"type": {
|
|
8444
|
+
"name": "string"
|
|
8445
|
+
},
|
|
8446
|
+
"required": false
|
|
8447
|
+
},
|
|
8448
|
+
"className": {
|
|
8449
|
+
"description": "",
|
|
8450
|
+
"type": {
|
|
8451
|
+
"name": "string"
|
|
8452
|
+
},
|
|
8453
|
+
"required": false
|
|
8454
|
+
},
|
|
8455
|
+
"closeMenuOnSelect": {
|
|
8456
|
+
"description": "",
|
|
8457
|
+
"type": {
|
|
8458
|
+
"name": "bool"
|
|
8459
|
+
},
|
|
8460
|
+
"required": false
|
|
8461
|
+
},
|
|
8462
|
+
"dropdownIcon": {
|
|
8463
|
+
"description": "",
|
|
8464
|
+
"type": {
|
|
8465
|
+
"name": "string"
|
|
8466
|
+
},
|
|
8467
|
+
"required": false
|
|
8468
|
+
},
|
|
8469
|
+
"dropdownIconFill": {
|
|
8470
|
+
"description": "",
|
|
8471
|
+
"type": {
|
|
8472
|
+
"name": "string"
|
|
8473
|
+
},
|
|
8474
|
+
"required": false
|
|
8475
|
+
},
|
|
8476
|
+
"dropdownIconStroke": {
|
|
8477
|
+
"description": "",
|
|
8478
|
+
"type": {
|
|
8479
|
+
"name": "string"
|
|
8480
|
+
},
|
|
8481
|
+
"required": false
|
|
8482
|
+
},
|
|
8483
|
+
"filterOption": {
|
|
8484
|
+
"description": "",
|
|
8485
|
+
"type": {
|
|
8486
|
+
"name": "func"
|
|
8487
|
+
},
|
|
8488
|
+
"required": false
|
|
8489
|
+
},
|
|
8490
|
+
"initialValue": {
|
|
8491
|
+
"description": "",
|
|
8492
|
+
"type": {
|
|
8493
|
+
"name": "any"
|
|
8494
|
+
},
|
|
8495
|
+
"required": false
|
|
8496
|
+
},
|
|
8497
|
+
"set": {
|
|
8498
|
+
"description": "",
|
|
8499
|
+
"type": {
|
|
8500
|
+
"name": "string"
|
|
8501
|
+
},
|
|
8502
|
+
"required": false
|
|
8503
|
+
},
|
|
8504
|
+
"onChange": {
|
|
8505
|
+
"description": "",
|
|
8506
|
+
"type": {
|
|
8507
|
+
"name": "func"
|
|
8508
|
+
},
|
|
8509
|
+
"required": false
|
|
8510
|
+
},
|
|
8511
|
+
"openMenuOnClick": {
|
|
8512
|
+
"description": "",
|
|
8513
|
+
"type": {
|
|
8514
|
+
"name": "func"
|
|
8515
|
+
},
|
|
8516
|
+
"required": false
|
|
8517
|
+
},
|
|
8518
|
+
"options": {
|
|
8519
|
+
"description": "",
|
|
8520
|
+
"type": {
|
|
8521
|
+
"name": "arrayOf",
|
|
8522
|
+
"value": {
|
|
8523
|
+
"name": "object"
|
|
8524
|
+
}
|
|
8525
|
+
},
|
|
8526
|
+
"required": false
|
|
8527
|
+
},
|
|
8528
|
+
"inputBefore": {
|
|
8529
|
+
"description": "",
|
|
8530
|
+
"type": {
|
|
8531
|
+
"name": "any"
|
|
8532
|
+
},
|
|
8533
|
+
"required": false
|
|
8534
|
+
},
|
|
8535
|
+
"inputAfter": {
|
|
8536
|
+
"description": "",
|
|
8537
|
+
"type": {
|
|
8538
|
+
"name": "any"
|
|
8539
|
+
},
|
|
8540
|
+
"required": false
|
|
8541
|
+
},
|
|
8542
|
+
"noOptionsText": {
|
|
8543
|
+
"description": "",
|
|
8544
|
+
"type": {
|
|
8545
|
+
"name": "string"
|
|
8546
|
+
},
|
|
8547
|
+
"required": false
|
|
8548
|
+
}
|
|
8549
|
+
}
|
|
8550
|
+
};
|
|
8028
8551
|
|
|
8029
8552
|
exports.Select = SelectContainer;
|
|
8030
8553
|
exports.SelectClearIndicator = SelectClearIndicator;
|
|
@@ -112,6 +112,41 @@ SiteMenu.propTypes = {
|
|
|
112
112
|
isOpen: PropTypes__default.default.bool,
|
|
113
113
|
onClose: PropTypes__default.default.func
|
|
114
114
|
};
|
|
115
|
+
SiteMenu.__docgenInfo = {
|
|
116
|
+
"description": "",
|
|
117
|
+
"methods": [],
|
|
118
|
+
"displayName": "SiteMenu",
|
|
119
|
+
"props": {
|
|
120
|
+
"children": {
|
|
121
|
+
"description": "",
|
|
122
|
+
"type": {
|
|
123
|
+
"name": "any"
|
|
124
|
+
},
|
|
125
|
+
"required": false
|
|
126
|
+
},
|
|
127
|
+
"close": {
|
|
128
|
+
"description": "",
|
|
129
|
+
"type": {
|
|
130
|
+
"name": "any"
|
|
131
|
+
},
|
|
132
|
+
"required": false
|
|
133
|
+
},
|
|
134
|
+
"isOpen": {
|
|
135
|
+
"description": "",
|
|
136
|
+
"type": {
|
|
137
|
+
"name": "bool"
|
|
138
|
+
},
|
|
139
|
+
"required": false
|
|
140
|
+
},
|
|
141
|
+
"onClose": {
|
|
142
|
+
"description": "",
|
|
143
|
+
"type": {
|
|
144
|
+
"name": "func"
|
|
145
|
+
},
|
|
146
|
+
"required": false
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
};
|
|
115
150
|
|
|
116
151
|
function SiteMenuButton(props) {
|
|
117
152
|
const {
|
|
@@ -138,6 +173,41 @@ SiteMenuButton.propTypes = {
|
|
|
138
173
|
text: PropTypes__default.default.string,
|
|
139
174
|
onClick: PropTypes__default.default.func
|
|
140
175
|
};
|
|
176
|
+
SiteMenuButton.__docgenInfo = {
|
|
177
|
+
"description": "",
|
|
178
|
+
"methods": [],
|
|
179
|
+
"displayName": "SiteMenuButton",
|
|
180
|
+
"props": {
|
|
181
|
+
"children": {
|
|
182
|
+
"description": "",
|
|
183
|
+
"type": {
|
|
184
|
+
"name": "any"
|
|
185
|
+
},
|
|
186
|
+
"required": false
|
|
187
|
+
},
|
|
188
|
+
"className": {
|
|
189
|
+
"description": "",
|
|
190
|
+
"type": {
|
|
191
|
+
"name": "string"
|
|
192
|
+
},
|
|
193
|
+
"required": false
|
|
194
|
+
},
|
|
195
|
+
"text": {
|
|
196
|
+
"description": "",
|
|
197
|
+
"type": {
|
|
198
|
+
"name": "string"
|
|
199
|
+
},
|
|
200
|
+
"required": false
|
|
201
|
+
},
|
|
202
|
+
"onClick": {
|
|
203
|
+
"description": "",
|
|
204
|
+
"type": {
|
|
205
|
+
"name": "func"
|
|
206
|
+
},
|
|
207
|
+
"required": false
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
};
|
|
141
211
|
|
|
142
212
|
exports.SiteMenu = SiteMenu;
|
|
143
213
|
exports.SiteMenuButton = SiteMenuButton;
|