@elliemae/ds-form 2.3.0-alpha.8 → 2.3.0-alpha.9
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/cjs/ComboBox/v3/parts/menu-list/useItemRenderer.js +4 -4
- package/dist/cjs/ComboBox/v3/parts/menu-list/useItemRenderer.js.map +2 -2
- package/dist/esm/ComboBox/v3/parts/menu-list/useItemRenderer.js +1 -1
- package/dist/esm/ComboBox/v3/parts/menu-list/useItemRenderer.js.map +1 -1
- package/dist/types/Checkbox/DSCheckbox.d.ts +102 -0
- package/dist/types/Checkbox/defaultProps.d.ts +11 -0
- package/dist/types/Checkbox/elements/CheckMark.d.ts +2 -0
- package/dist/types/Checkbox/index.d.ts +1 -0
- package/dist/types/Checkbox/props.d.ts +60 -0
- package/dist/types/Checkbox/tests/DSCheckbox.events.test.d.ts +1 -0
- package/dist/types/CheckboxGroup/DSCheckboxGroup.d.ts +72 -0
- package/dist/types/CheckboxGroup/defaultProps.d.ts +14 -0
- package/dist/types/CheckboxGroup/index.d.ts +1 -0
- package/dist/types/CheckboxGroup/props.d.ts +57 -0
- package/dist/types/CheckboxGroup/tests/DSCheckboxGroup.events.test.d.ts +1 -0
- package/dist/types/ComboBox/DSComboBox.d.ts +3 -0
- package/dist/types/ComboBox/index.d.ts +2 -0
- package/dist/types/ComboBox/v1/DSComboBox.d.ts +67 -0
- package/dist/types/ComboBox/v1/components/AllOption.d.ts +6 -0
- package/dist/types/ComboBox/v1/components/ClearIndicator.d.ts +4 -0
- package/dist/types/ComboBox/v1/components/Control.d.ts +4 -0
- package/dist/types/ComboBox/v1/components/CustomOption.d.ts +9 -0
- package/dist/types/ComboBox/v1/components/CustomOptionMulti.d.ts +9 -0
- package/dist/types/ComboBox/v1/components/DropdownIndicator.d.ts +21 -0
- package/dist/types/ComboBox/v1/components/MenuList.d.ts +4 -0
- package/dist/types/ComboBox/v1/components/MultiSelectHeader.d.ts +4 -0
- package/dist/types/ComboBox/v1/components/MultiValueLabel.d.ts +6 -0
- package/dist/types/ComboBox/v1/components/MultiValueRemove.d.ts +4 -0
- package/dist/types/ComboBox/v1/components/SelectMenu.d.ts +4 -0
- package/dist/types/ComboBox/v1/components/SingleValueLabel.d.ts +12 -0
- package/dist/types/ComboBox/v1/components/ValueContainer.d.ts +6 -0
- package/dist/types/ComboBox/v1/components/calculateWidth.d.ts +1 -0
- package/dist/types/ComboBox/v1/components/getoptions.d.ts +6 -0
- package/dist/types/ComboBox/v1/index.d.ts +2 -0
- package/dist/types/ComboBox/v1/withSelectStringValueConverter.d.ts +64 -0
- package/dist/types/ComboBox/v2/Combobox.d.ts +70 -0
- package/dist/types/ComboBox/v2/components/AllOption.d.ts +6 -0
- package/dist/types/ComboBox/v2/components/ClearIndicator.d.ts +4 -0
- package/dist/types/ComboBox/v2/components/Content.d.ts +15 -0
- package/dist/types/ComboBox/v2/components/Control.d.ts +4 -0
- package/dist/types/ComboBox/v2/components/CustomOption.d.ts +9 -0
- package/dist/types/ComboBox/v2/components/CustomOptionMulti.d.ts +9 -0
- package/dist/types/ComboBox/v2/components/DropdownIndicator.d.ts +24 -0
- package/dist/types/ComboBox/v2/components/GroupHeading.d.ts +4 -0
- package/dist/types/ComboBox/v2/components/IndicatorSeparator.d.ts +5 -0
- package/dist/types/ComboBox/v2/components/LoadingIndicator.d.ts +4 -0
- package/dist/types/ComboBox/v2/components/MenuList.d.ts +4 -0
- package/dist/types/ComboBox/v2/components/MultiSelectHeader.d.ts +10 -0
- package/dist/types/ComboBox/v2/components/MultiValueLabel.d.ts +6 -0
- package/dist/types/ComboBox/v2/components/MultiValueRemove.d.ts +7 -0
- package/dist/types/ComboBox/v2/components/SelectMenu.d.ts +4 -0
- package/dist/types/ComboBox/v2/components/SingleValueLabel.d.ts +12 -0
- package/dist/types/ComboBox/v2/components/ValueContainer.d.ts +6 -0
- package/dist/types/ComboBox/v2/components/calculateWidth.d.ts +1 -0
- package/dist/types/ComboBox/v2/components/getoptions.d.ts +6 -0
- package/dist/types/ComboBox/v2/components/tests/ClearIndicator.test.d.ts +1 -0
- package/dist/types/ComboBox/v2/components/useMenuListHeight.d.ts +1 -0
- package/dist/types/ComboBox/v2/components/utils.d.ts +1 -0
- package/dist/types/ComboBox/v2/context.d.ts +2 -0
- package/dist/types/ComboBox/v2/index.d.ts +2 -0
- package/dist/types/ComboBox/v2/mockOptions.d.ts +5 -0
- package/dist/types/ComboBox/v2/tests/Combobox.test.d.ts +1 -0
- package/dist/types/ComboBox/v3/ComboBox.d.ts +62 -0
- package/dist/types/ComboBox/v3/ComboBoxCTX.d.ts +6 -0
- package/dist/types/ComboBox/v3/ComboboxDataTestids.d.ts +11 -0
- package/dist/types/ComboBox/v3/config/constants.d.ts +8 -0
- package/dist/types/ComboBox/v3/config/useComboBox.d.ts +2 -0
- package/dist/types/ComboBox/v3/config/useGetPropsWithDefault.d.ts +2 -0
- package/dist/types/ComboBox/v3/index.d.ts +1 -0
- package/dist/types/ComboBox/v3/parts/a11y-messages/MultiAllyMessages.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/a11y-messages/SingleAllyMessages.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/a11y-messages/index.d.ts +2 -0
- package/dist/types/ComboBox/v3/parts/a11y-messages/styled.d.ts +1 -0
- package/dist/types/ComboBox/v3/parts/container/Container.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/container/index.d.ts +1 -0
- package/dist/types/ComboBox/v3/parts/container/styled.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/controls/Controls.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/controls/index.d.ts +1 -0
- package/dist/types/ComboBox/v3/parts/controls/styled.d.ts +7 -0
- package/dist/types/ComboBox/v3/parts/controls-input/ControlsInput.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/controls-input/styled.d.ts +4 -0
- package/dist/types/ComboBox/v3/parts/controls-input/useControlsInput.d.ts +12 -0
- package/dist/types/ComboBox/v3/parts/dropdown-indicator/DropdownIndicator.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/dropdown-indicator/index.d.ts +0 -0
- package/dist/types/ComboBox/v3/parts/dropdown-indicator/styled.d.ts +1 -0
- package/dist/types/ComboBox/v3/parts/empty-state/index.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/empty-state/styled.d.ts +2 -0
- package/dist/types/ComboBox/v3/parts/header-list/HeaderList.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/header-list/index.d.ts +1 -0
- package/dist/types/ComboBox/v3/parts/header-list/styled.d.ts +7 -0
- package/dist/types/ComboBox/v3/parts/header-list/useHeaderListHandlers.d.ts +12 -0
- package/dist/types/ComboBox/v3/parts/menu-list/MenuList.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/menu-list/index.d.ts +1 -0
- package/dist/types/ComboBox/v3/parts/menu-list/styled.d.ts +10 -0
- package/dist/types/ComboBox/v3/parts/menu-list/useItemRenderer.d.ts +2 -0
- package/dist/types/ComboBox/v3/parts/menu-list/useMenuList.d.ts +2 -0
- package/dist/types/ComboBox/v3/parts/multi-selected-values-container/MultiSelectedValuesContainer.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/multi-selected-values-container/index.d.ts +1 -0
- package/dist/types/ComboBox/v3/parts/multi-selected-values-container/styled.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/multi-selected-values-container/useGroupPills.d.ts +2 -0
- package/dist/types/ComboBox/v3/parts/single-selected-value-container/SingleSelectedValueContainer.d.ts +3 -0
- package/dist/types/ComboBox/v3/parts/single-selected-value-container/index.d.ts +1 -0
- package/dist/types/ComboBox/v3/parts/single-selected-value-container/styled.d.ts +1 -0
- package/dist/types/ComboBox/v3/propTypes.d.ts +51 -0
- package/dist/types/ComboBox/v3/tests/combobox-general.test.d.ts +1 -0
- package/dist/types/ComboBox/v3/tests/combobox-multi-select.test.d.ts +1 -0
- package/dist/types/ComboBox/v3/tests/combobox-single-select.test.d.ts +1 -0
- package/dist/types/ComboBox/v3/tests/combobox-special-keys.test.d.ts +1 -0
- package/dist/types/ComboBox/v3/tests/utils.d.ts +22 -0
- package/dist/types/ComboBox/v3/utils/hooks/useKeyboardNavigation.d.ts +4 -0
- package/dist/types/ComboBox/v3/utils/hooks/useOnElementResize.d.ts +3 -0
- package/dist/types/ComboBox/v3/utils/listHelper.d.ts +7 -0
- package/dist/types/ComboBoxFreeSolo/ComboBoxFreeSolo.d.ts +78 -0
- package/dist/types/ComboBoxFreeSolo/components/MultiValueLabel.d.ts +6 -0
- package/dist/types/ComboBoxFreeSolo/components/MultiValueRemove.d.ts +6 -0
- package/dist/types/ComboBoxFreeSolo/components/SingleValue.d.ts +3 -0
- package/dist/types/ComboBoxFreeSolo/components/SingleValueRemove.d.ts +6 -0
- package/dist/types/ComboBoxFreeSolo/index.d.ts +1 -0
- package/dist/types/DateInput/DSDateInput.d.ts +143 -0
- package/dist/types/DateInput/components/DateInputImpl.d.ts +41 -0
- package/dist/types/DateInput/components/DateInputs.d.ts +41 -0
- package/dist/types/DateInput/components/utils.d.ts +40 -0
- package/dist/types/DateInput/defaultProps.d.ts +18 -0
- package/dist/types/DateInput/index.d.ts +1 -0
- package/dist/types/DateInput/props.d.ts +173 -0
- package/dist/types/DateInput/tests/DSDateInput.events.test.d.ts +1 -0
- package/dist/types/DateInputV2/components/DSDateInput.d.ts +97 -0
- package/dist/types/DateInputV2/components/DateInputs.d.ts +33 -0
- package/dist/types/DateInputV2/components/helpers.d.ts +1 -0
- package/dist/types/DateInputV2/components/props.d.ts +104 -0
- package/dist/types/DateInputV2/components/propsTypes.d.ts +21 -0
- package/dist/types/DateInputV2/components/styled.d.ts +5 -0
- package/dist/types/DateInputV2/components/utils.d.ts +42 -0
- package/dist/types/DateInputV2/index.d.ts +2 -0
- package/dist/types/DateInputV2/tests/DateInput.test.d.ts +1 -0
- package/dist/types/ExpandableInput/DSExpandableInput.d.ts +16 -0
- package/dist/types/ExpandableInput/ExpandableInputImpl.d.ts +7 -0
- package/dist/types/ExpandableInput/index.d.ts +1 -0
- package/dist/types/FloatingLabelInput/DSFloatingLabelInput.d.ts +193 -0
- package/dist/types/FloatingLabelInput/FloatingLabelInputImpl.d.ts +27 -0
- package/dist/types/FloatingLabelInput/getSvgPath.d.ts +10 -0
- package/dist/types/FloatingLabelInput/index.d.ts +1 -0
- package/dist/types/FormItem/DSFormItemLayout.d.ts +479 -0
- package/dist/types/FormItem/Error/DSError.d.ts +31 -0
- package/dist/types/FormItem/Feedback.d.ts +7 -0
- package/dist/types/FormItem/Label/DSLabel.d.ts +24 -0
- package/dist/types/FormItem/Suffix/Suffix.d.ts +4 -0
- package/dist/types/FormItem/ValidationFieldWrapper.d.ts +19 -0
- package/dist/types/FormItem/defaultProps.d.ts +197 -0
- package/dist/types/FormItem/index.d.ts +2 -0
- package/dist/types/FormItem/props.d.ts +270 -0
- package/dist/types/FormItem/tests/DSFormItem.events.test.d.ts +1 -0
- package/dist/types/FormItem/variants.d.ts +8 -0
- package/dist/types/Input/DSInput.d.ts +32 -0
- package/dist/types/Input/InputAddonWrapper.d.ts +15 -0
- package/dist/types/Input/InputImpl.d.ts +74 -0
- package/dist/types/Input/index.d.ts +1 -0
- package/dist/types/Input/tests/Input.test.d.ts +1 -0
- package/dist/types/InputGroup/AddonWrapper.d.ts +8 -0
- package/dist/types/InputGroup/DSInputGroup.d.ts +72 -0
- package/dist/types/InputGroup/defaultProps.d.ts +8 -0
- package/dist/types/InputGroup/index.d.ts +1 -0
- package/dist/types/InputGroup/props.d.ts +60 -0
- package/dist/types/InputGroup/tests/DSInputGroup.events.test.d.ts +1 -0
- package/dist/types/InputMask/DSInputMask.d.ts +218 -0
- package/dist/types/InputMask/DSInputMaskDeprecated.d.ts +18 -0
- package/dist/types/InputMask/InputMaskContext.d.ts +18 -0
- package/dist/types/InputMask/MaskPipes.d.ts +18 -0
- package/dist/types/InputMask/MaskTypes.d.ts +15 -0
- package/dist/types/InputMask/addons/AutoCorrectedDatePipe.d.ts +8 -0
- package/dist/types/InputMask/defaultProps.d.ts +28 -0
- package/dist/types/InputMask/index.d.ts +1 -0
- package/dist/types/InputMask/mask_types/DateInputMask.d.ts +75 -0
- package/dist/types/InputMask/mask_types/DateTimeInputMask.d.ts +75 -0
- package/dist/types/InputMask/mask_types/DictionaryInputMask.d.ts +81 -0
- package/dist/types/InputMask/mask_types/NumberInputMask.d.ts +99 -0
- package/dist/types/InputMask/mask_types/PhoneInputMask.d.ts +75 -0
- package/dist/types/InputMask/mask_types/PhoneInternationalInputMask.d.ts +75 -0
- package/dist/types/InputMask/mask_types/SsnInputMask.d.ts +75 -0
- package/dist/types/InputMask/mask_types/UsZipCodeInputMask.d.ts +75 -0
- package/dist/types/InputMask/mask_types/ZipCodeSearchInputMask.d.ts +75 -0
- package/dist/types/InputMask/mask_types/index.d.ts +42 -0
- package/dist/types/InputMask/props.d.ts +254 -0
- package/dist/types/InputMask/tests/DSInputMask.test.d.ts +1 -0
- package/dist/types/InputMask/tests/NumberInputMask.test.d.ts +1 -0
- package/dist/types/InputMask/tests/events/DateInputMask.events.test.d.ts +1 -0
- package/dist/types/InputMask/tests/events/DateTimeInputMask.events.test.d.ts +1 -0
- package/dist/types/InputMask/tests/events/NumberInputMask.events.test.d.ts +1 -0
- package/dist/types/InputMask/tests/events/PercentInputMask.events.test.d.ts +1 -0
- package/dist/types/InputMask/tests/events/PhoneInputMask.events.test.d.ts +1 -0
- package/dist/types/InputMask/tests/events/PhoneInternationalInputMask.events.test.d.ts +1 -0
- package/dist/types/InputMask/tests/events/SsnInputMask.events.test.d.ts +1 -0
- package/dist/types/InputMask/tests/events/UsZipCodeInputMask.events.test.d.ts +1 -0
- package/dist/types/InputMask/tests/events/ZipCodeSearchInputMask.events.test.d.ts +1 -0
- package/dist/types/InputMask/types/index.d.ts +5 -0
- package/dist/types/InputMask/utils/setCaretPosition.d.ts +3 -0
- package/dist/types/InputProtected/DSInputProtected.d.ts +70 -0
- package/dist/types/InputProtected/defaultProps.d.ts +4 -0
- package/dist/types/InputProtected/index.d.ts +2 -0
- package/dist/types/InputProtected/options.d.ts +8 -0
- package/dist/types/InputProtected/props.d.ts +49 -0
- package/dist/types/InputProtected/tests/DSInputProtected.events.test.d.ts +1 -0
- package/dist/types/InputProtected/tests/DSInputProtected.test.d.ts +1 -0
- package/dist/types/LargeInputText/DSLargeInputText.d.ts +233 -0
- package/dist/types/LargeInputText/defaultProps.d.ts +31 -0
- package/dist/types/LargeInputText/index.d.ts +1 -0
- package/dist/types/LargeInputText/props.d.ts +231 -0
- package/dist/types/LargeInputText/tests/DSLargeInputText.events.test.d.ts +1 -0
- package/dist/types/LargeInputText/tests/DSLargeInputText.test.d.ts +1 -0
- package/dist/types/MenuItem/components/MenuItem/index.d.ts +20 -0
- package/dist/types/MenuItem/components/MenuItem/styled.d.ts +1 -0
- package/dist/types/MenuItem/components/MultiMenuItem/MultiMenuItem.d.ts +21 -0
- package/dist/types/MenuItem/components/MultiMenuItem/styled.d.ts +1 -0
- package/dist/types/MenuItem/components/Section/index.d.ts +12 -0
- package/dist/types/MenuItem/components/Section/props.d.ts +14 -0
- package/dist/types/MenuItem/components/Section/styled.d.ts +2 -0
- package/dist/types/MenuItem/components/Separator/index.d.ts +8 -0
- package/dist/types/MenuItem/components/Separator/styled.d.ts +2 -0
- package/dist/types/MenuItem/components/SingleMenuItem/SingleMenuItem.d.ts +16 -0
- package/dist/types/MenuItem/components/SubmenuItem/index.d.ts +20 -0
- package/dist/types/MenuItem/components/index.d.ts +6 -0
- package/dist/types/MenuItem/index.d.ts +1 -0
- package/dist/types/MenuItem/props.d.ts +38 -0
- package/dist/types/Radio/Circle.d.ts +8 -0
- package/dist/types/Radio/DSRadio.d.ts +157 -0
- package/dist/types/Radio/index.d.ts +1 -0
- package/dist/types/RadioGroup/DSRadioGroup.d.ts +72 -0
- package/dist/types/RadioGroup/defaultProps.d.ts +12 -0
- package/dist/types/RadioGroup/index.d.ts +1 -0
- package/dist/types/RadioGroup/props.d.ts +56 -0
- package/dist/types/RadioGroup/tests/DSRadioGroup.events.test.d.ts +1 -0
- package/dist/types/RequiredMark/RequiredMark.d.ts +7 -0
- package/dist/types/RequiredMark/index.d.ts +1 -0
- package/dist/types/SearchBox/DSSearchBox.d.ts +176 -0
- package/dist/types/SearchBox/NavSearchBox.d.ts +53 -0
- package/dist/types/SearchBox/SButton.d.ts +30 -0
- package/dist/types/SearchBox/SearchBoxToggle.d.ts +13 -0
- package/dist/types/SearchBox/defaultProps.d.ts +26 -0
- package/dist/types/SearchBox/index.d.ts +3 -0
- package/dist/types/SearchBox/props.d.ts +173 -0
- package/dist/types/SearchBox/styled.d.ts +1 -0
- package/dist/types/SearchBox/tests/DSNavSearchBox.events.test.d.ts +1 -0
- package/dist/types/SearchBox/tests/DSSearchBox.events.test.d.ts +1 -0
- package/dist/types/SearchBox/tests/DSSearchBox.test.d.ts +1 -0
- package/dist/types/SearchBox/useSearch.d.ts +9 -0
- package/dist/types/TextBox/DSTextBox.d.ts +207 -0
- package/dist/types/TextBox/index.d.ts +1 -0
- package/dist/types/TextBox/tests/DSTextBox.test.d.ts +1 -0
- package/dist/types/TimeInput/DSTimeInput.d.ts +122 -0
- package/dist/types/TimeInput/TimeInputImpl.d.ts +56 -0
- package/dist/types/TimeInput/TimeInputs.d.ts +18 -0
- package/dist/types/TimeInput/index.d.ts +1 -0
- package/dist/types/TimeInput/utils.d.ts +39 -0
- package/dist/types/Toggle/DSToggle.d.ts +134 -0
- package/dist/types/Toggle/DSToggleImpl.d.ts +57 -0
- package/dist/types/Toggle/DSToggleRender.d.ts +33 -0
- package/dist/types/Toggle/index.d.ts +1 -0
- package/dist/types/Toggle/props.d.ts +47 -0
- package/dist/types/Toggle/toggleHelper.d.ts +24 -0
- package/dist/types/index.d.ts +22 -0
- package/package.json +23 -23
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
declare const DSRadioGroup: {
|
|
4
|
+
({ containerProps, onChange, activeValue, children, orientation, disabled, truncateText, labelProps, }: {
|
|
5
|
+
containerProps: any;
|
|
6
|
+
onChange: any;
|
|
7
|
+
activeValue: any;
|
|
8
|
+
children: any;
|
|
9
|
+
orientation: any;
|
|
10
|
+
disabled: any;
|
|
11
|
+
truncateText: any;
|
|
12
|
+
labelProps: any;
|
|
13
|
+
}): JSX.Element;
|
|
14
|
+
propTypes: {
|
|
15
|
+
containerProps: {
|
|
16
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
17
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
18
|
+
};
|
|
19
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
20
|
+
};
|
|
21
|
+
onChange: {
|
|
22
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
23
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
24
|
+
};
|
|
25
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
26
|
+
};
|
|
27
|
+
activeValue: {
|
|
28
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
29
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
30
|
+
};
|
|
31
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
32
|
+
};
|
|
33
|
+
children: any;
|
|
34
|
+
orientation: {
|
|
35
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
36
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
37
|
+
};
|
|
38
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
39
|
+
};
|
|
40
|
+
disabled: {
|
|
41
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
42
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
43
|
+
};
|
|
44
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
45
|
+
};
|
|
46
|
+
labelProps: {
|
|
47
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
48
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
49
|
+
};
|
|
50
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
defaultProps: {
|
|
54
|
+
containerProps: {};
|
|
55
|
+
onChange: () => null;
|
|
56
|
+
orientation: string;
|
|
57
|
+
disabled: boolean;
|
|
58
|
+
truncateText: boolean;
|
|
59
|
+
labelProps: {
|
|
60
|
+
feedbackMessage: string;
|
|
61
|
+
labelText: string;
|
|
62
|
+
required: boolean;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
declare const DSRadioGroupWithSchema: {
|
|
67
|
+
(props?: unknown): JSX.Element;
|
|
68
|
+
propTypes: unknown;
|
|
69
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
70
|
+
};
|
|
71
|
+
export { DSRadioGroup, DSRadioGroupWithSchema };
|
|
72
|
+
export default DSRadioGroup;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './DSRadioGroup';
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
+
export declare const props: {
|
|
3
|
+
/** Inject props to component wrapper */
|
|
4
|
+
containerProps: {
|
|
5
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
6
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
7
|
+
};
|
|
8
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Allows a function that is triggered once the radio group changes
|
|
12
|
+
*/
|
|
13
|
+
onChange: {
|
|
14
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
15
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
16
|
+
};
|
|
17
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Selected default active value
|
|
21
|
+
*/
|
|
22
|
+
activeValue: {
|
|
23
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
24
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
25
|
+
};
|
|
26
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Radio group items to show of type DSRadio
|
|
30
|
+
*/
|
|
31
|
+
children: any;
|
|
32
|
+
/**
|
|
33
|
+
* ['horizontal', 'vertical']
|
|
34
|
+
*/
|
|
35
|
+
orientation: {
|
|
36
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
37
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
38
|
+
};
|
|
39
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Whether the radio group is disabled or not
|
|
43
|
+
*/
|
|
44
|
+
disabled: {
|
|
45
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
46
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
47
|
+
};
|
|
48
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
49
|
+
};
|
|
50
|
+
labelProps: {
|
|
51
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
52
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
53
|
+
};
|
|
54
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const RequiredMark: ({ required, optional }: {
|
|
3
|
+
required?: boolean | undefined;
|
|
4
|
+
optional?: boolean | undefined;
|
|
5
|
+
}) => JSX.Element | null;
|
|
6
|
+
export { RequiredMark, RequiredMark as DSRequiredMark };
|
|
7
|
+
export default RequiredMark;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './RequiredMark';
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
declare const DSSearchBox: {
|
|
4
|
+
({ className, clearable, containerProps, disableButton, disabled, innerRef, onBlur, onChange, onKeyUp, onSearch, onClearButtonClick, placeholder, property, readOnly, searchOnEnter, onSearchButtonClick, showIcon, style, value, }: {
|
|
5
|
+
className: any;
|
|
6
|
+
clearable: any;
|
|
7
|
+
containerProps: any;
|
|
8
|
+
disableButton: any;
|
|
9
|
+
disabled: any;
|
|
10
|
+
innerRef: any;
|
|
11
|
+
onBlur: any;
|
|
12
|
+
onChange: any;
|
|
13
|
+
onKeyUp: any;
|
|
14
|
+
onSearch: any;
|
|
15
|
+
onClearButtonClick: any;
|
|
16
|
+
placeholder: any;
|
|
17
|
+
property: any;
|
|
18
|
+
readOnly: any;
|
|
19
|
+
searchOnEnter: any;
|
|
20
|
+
onSearchButtonClick: any;
|
|
21
|
+
showIcon: any;
|
|
22
|
+
style: any;
|
|
23
|
+
value: any;
|
|
24
|
+
}): JSX.Element;
|
|
25
|
+
propTypes: {
|
|
26
|
+
containerProps: {
|
|
27
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
28
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
29
|
+
};
|
|
30
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
31
|
+
};
|
|
32
|
+
className: {
|
|
33
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
34
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
35
|
+
};
|
|
36
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
37
|
+
};
|
|
38
|
+
innerRef: {
|
|
39
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
40
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
41
|
+
};
|
|
42
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
43
|
+
};
|
|
44
|
+
style: {
|
|
45
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
46
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
47
|
+
};
|
|
48
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
49
|
+
};
|
|
50
|
+
property: {
|
|
51
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
52
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
53
|
+
};
|
|
54
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
55
|
+
};
|
|
56
|
+
placeholder: {
|
|
57
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
58
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
59
|
+
};
|
|
60
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
61
|
+
};
|
|
62
|
+
searchOnEnter: {
|
|
63
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
64
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
65
|
+
};
|
|
66
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
67
|
+
};
|
|
68
|
+
clearOnSearch: {
|
|
69
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
70
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
71
|
+
};
|
|
72
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
73
|
+
};
|
|
74
|
+
onClearButtonClick: {
|
|
75
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
76
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
77
|
+
};
|
|
78
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
79
|
+
};
|
|
80
|
+
onKeyUp: {
|
|
81
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
82
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
83
|
+
};
|
|
84
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
85
|
+
};
|
|
86
|
+
onSearch: {
|
|
87
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
88
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
89
|
+
};
|
|
90
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
91
|
+
};
|
|
92
|
+
onSearchButtonClick: {
|
|
93
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
94
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
95
|
+
};
|
|
96
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
97
|
+
};
|
|
98
|
+
onChange: {
|
|
99
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
100
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
101
|
+
};
|
|
102
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
103
|
+
};
|
|
104
|
+
onBlur: {
|
|
105
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
106
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
107
|
+
};
|
|
108
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
109
|
+
};
|
|
110
|
+
value: {
|
|
111
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
112
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
113
|
+
};
|
|
114
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
115
|
+
};
|
|
116
|
+
showIcon: {
|
|
117
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
118
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
119
|
+
};
|
|
120
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
121
|
+
};
|
|
122
|
+
disabled: {
|
|
123
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
124
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
125
|
+
};
|
|
126
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
127
|
+
};
|
|
128
|
+
disableButton: {
|
|
129
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
130
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
131
|
+
};
|
|
132
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
133
|
+
};
|
|
134
|
+
readOnly: {
|
|
135
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
136
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
137
|
+
};
|
|
138
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
139
|
+
};
|
|
140
|
+
clearable: {
|
|
141
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
142
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
143
|
+
};
|
|
144
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
defaultProps: {
|
|
148
|
+
className: string;
|
|
149
|
+
clearable: boolean;
|
|
150
|
+
clearOnSearch: boolean;
|
|
151
|
+
containerProps: {};
|
|
152
|
+
disableButton: boolean;
|
|
153
|
+
disabled: boolean;
|
|
154
|
+
innerRef: undefined;
|
|
155
|
+
onBlur: () => null;
|
|
156
|
+
onChange: () => null;
|
|
157
|
+
onKeyUp: () => null;
|
|
158
|
+
onSearch: () => null;
|
|
159
|
+
onSearchButtonClick: () => null;
|
|
160
|
+
onClearButtonClick: () => null;
|
|
161
|
+
placeholder: string;
|
|
162
|
+
property: string;
|
|
163
|
+
readOnly: boolean;
|
|
164
|
+
searchOnEnter: boolean;
|
|
165
|
+
showIcon: boolean;
|
|
166
|
+
style: {};
|
|
167
|
+
value: undefined;
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
declare const SearchBoxWithSchema: {
|
|
171
|
+
(props?: unknown): JSX.Element;
|
|
172
|
+
propTypes: unknown;
|
|
173
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
174
|
+
};
|
|
175
|
+
export { SearchBoxWithSchema, DSSearchBox, DSSearchBox as SearchBox };
|
|
176
|
+
export default DSSearchBox;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
+
import React from 'react';
|
|
3
|
+
interface PropsT {
|
|
4
|
+
value: string;
|
|
5
|
+
onChange: (val: string) => void;
|
|
6
|
+
onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
|
|
7
|
+
onNext: () => void;
|
|
8
|
+
onPrevious: () => void;
|
|
9
|
+
onClear: () => void;
|
|
10
|
+
currentResultIndex: number;
|
|
11
|
+
totalResults: number;
|
|
12
|
+
placeholder: {
|
|
13
|
+
defaultValue(arg: import('react-desc').ReactDescPossibleDefaultValues): {
|
|
14
|
+
deprecated: import('react-desc').PropTypesDescValidator;
|
|
15
|
+
};
|
|
16
|
+
isRequired: import('react-desc').PropTypesDescValue;
|
|
17
|
+
};
|
|
18
|
+
autoFocus: boolean;
|
|
19
|
+
}
|
|
20
|
+
declare const NavSearchBox: {
|
|
21
|
+
(props: PropsT): JSX.Element;
|
|
22
|
+
propTypes: {
|
|
23
|
+
value: any;
|
|
24
|
+
onChange: any;
|
|
25
|
+
onBlur: {
|
|
26
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
27
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
28
|
+
};
|
|
29
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
30
|
+
};
|
|
31
|
+
onNext: any;
|
|
32
|
+
onPrevious: any;
|
|
33
|
+
onClear: any;
|
|
34
|
+
currentResultIndex: any;
|
|
35
|
+
totalResults: any;
|
|
36
|
+
placeholder: {
|
|
37
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
38
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
39
|
+
};
|
|
40
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
defaultProps: {
|
|
44
|
+
placeholder: string;
|
|
45
|
+
currentResultIndex: number;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
declare const DSNavSearchBoxWithSchema: {
|
|
49
|
+
(props?: unknown): JSX.Element;
|
|
50
|
+
propTypes: unknown;
|
|
51
|
+
toTypescript: () => import("react-desc").TypescriptSchema;
|
|
52
|
+
};
|
|
53
|
+
export { NavSearchBox, DSNavSearchBoxWithSchema };
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
+
/// <reference types="react" />
|
|
3
|
+
declare const SButton: {
|
|
4
|
+
({ icon, disabled, onClick, dataTestid }: {
|
|
5
|
+
icon: any;
|
|
6
|
+
disabled: any;
|
|
7
|
+
onClick: any;
|
|
8
|
+
dataTestid?: string | undefined;
|
|
9
|
+
}): JSX.Element;
|
|
10
|
+
propTypes: {
|
|
11
|
+
/** click handler for button */
|
|
12
|
+
onClick: any;
|
|
13
|
+
/** ds icon to render inside button */
|
|
14
|
+
icon: any;
|
|
15
|
+
/** disable button */
|
|
16
|
+
disabled: {
|
|
17
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
18
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
19
|
+
};
|
|
20
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
21
|
+
};
|
|
22
|
+
dataTestid: {
|
|
23
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
24
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
25
|
+
};
|
|
26
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
export { SButton };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const SearchBoxToggle: {
|
|
3
|
+
({ onSearchButtonClick, width, ...rest }: {
|
|
4
|
+
[x: string]: any;
|
|
5
|
+
onSearchButtonClick: any;
|
|
6
|
+
width: any;
|
|
7
|
+
}): JSX.Element;
|
|
8
|
+
defaultProps: {
|
|
9
|
+
onSearchButtonClick: () => null;
|
|
10
|
+
width: number;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export default SearchBoxToggle;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export declare const defaultProps: {
|
|
2
|
+
className: string;
|
|
3
|
+
clearable: boolean;
|
|
4
|
+
clearOnSearch: boolean;
|
|
5
|
+
containerProps: {};
|
|
6
|
+
disableButton: boolean;
|
|
7
|
+
disabled: boolean;
|
|
8
|
+
innerRef: undefined;
|
|
9
|
+
onBlur: () => null;
|
|
10
|
+
onChange: () => null;
|
|
11
|
+
onKeyUp: () => null;
|
|
12
|
+
onSearch: () => null;
|
|
13
|
+
onSearchButtonClick: () => null;
|
|
14
|
+
onClearButtonClick: () => null;
|
|
15
|
+
placeholder: string;
|
|
16
|
+
property: string;
|
|
17
|
+
readOnly: boolean;
|
|
18
|
+
searchOnEnter: boolean;
|
|
19
|
+
showIcon: boolean;
|
|
20
|
+
style: {};
|
|
21
|
+
value: undefined;
|
|
22
|
+
};
|
|
23
|
+
export declare const navSearchBoxDefaultProps: {
|
|
24
|
+
placeholder: string;
|
|
25
|
+
currentResultIndex: number;
|
|
26
|
+
};
|
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
/// <reference path="../../../../../shared/typings/react-desc.d.ts" />
|
|
2
|
+
export declare const searchBoxProps: {
|
|
3
|
+
/** Set of Properties attached to the main container */
|
|
4
|
+
containerProps: {
|
|
5
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
6
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
7
|
+
};
|
|
8
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
9
|
+
};
|
|
10
|
+
/** html class attribute */
|
|
11
|
+
className: {
|
|
12
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
13
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
14
|
+
};
|
|
15
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
16
|
+
};
|
|
17
|
+
/** ref to the components container */
|
|
18
|
+
innerRef: {
|
|
19
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
20
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
21
|
+
};
|
|
22
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
23
|
+
};
|
|
24
|
+
/** Set style to the search box */
|
|
25
|
+
style: {
|
|
26
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
27
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
28
|
+
};
|
|
29
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
30
|
+
};
|
|
31
|
+
/** search property */
|
|
32
|
+
property: {
|
|
33
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
34
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
35
|
+
};
|
|
36
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
37
|
+
};
|
|
38
|
+
/** Placeholder for the search box */
|
|
39
|
+
placeholder: {
|
|
40
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
41
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
42
|
+
};
|
|
43
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
44
|
+
};
|
|
45
|
+
/** Whether to trigger the search once the enter is pressed */
|
|
46
|
+
searchOnEnter: {
|
|
47
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
48
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
49
|
+
};
|
|
50
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
51
|
+
};
|
|
52
|
+
/** Whether to clear the input on search */
|
|
53
|
+
clearOnSearch: {
|
|
54
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
55
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
56
|
+
};
|
|
57
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
58
|
+
};
|
|
59
|
+
/** function triggered once in the clear button is clicked */
|
|
60
|
+
onClearButtonClick: {
|
|
61
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
62
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
63
|
+
};
|
|
64
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
65
|
+
};
|
|
66
|
+
/** function triggered once in the search box a keyboard key is released */
|
|
67
|
+
onKeyUp: {
|
|
68
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
69
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
70
|
+
};
|
|
71
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
72
|
+
};
|
|
73
|
+
/** function triggered once the search action begins (search icon click/ enter keypress) */
|
|
74
|
+
onSearch: {
|
|
75
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
76
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
77
|
+
};
|
|
78
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
79
|
+
};
|
|
80
|
+
/** function triggered once the search icon is clicked */
|
|
81
|
+
onSearchButtonClick: {
|
|
82
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
83
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
84
|
+
};
|
|
85
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
86
|
+
};
|
|
87
|
+
/** function that is triggered on change */
|
|
88
|
+
onChange: {
|
|
89
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
90
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
91
|
+
};
|
|
92
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
93
|
+
};
|
|
94
|
+
/** Function that is triggered on blur */
|
|
95
|
+
onBlur: {
|
|
96
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
97
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
98
|
+
};
|
|
99
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
100
|
+
};
|
|
101
|
+
/** searchbox input value */
|
|
102
|
+
value: {
|
|
103
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
104
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
105
|
+
};
|
|
106
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
107
|
+
};
|
|
108
|
+
/** Whether to show an icon or not */
|
|
109
|
+
showIcon: {
|
|
110
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
111
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
112
|
+
};
|
|
113
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
114
|
+
};
|
|
115
|
+
/** Disables the search input and button */
|
|
116
|
+
disabled: {
|
|
117
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
118
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
119
|
+
};
|
|
120
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
121
|
+
};
|
|
122
|
+
/** Disables the search button */
|
|
123
|
+
disableButton: {
|
|
124
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
125
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
126
|
+
};
|
|
127
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
128
|
+
};
|
|
129
|
+
/** whether the input is read only or not */
|
|
130
|
+
readOnly: {
|
|
131
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
132
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
133
|
+
};
|
|
134
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
135
|
+
};
|
|
136
|
+
/** Show clearable button */
|
|
137
|
+
clearable: {
|
|
138
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
139
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
140
|
+
};
|
|
141
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
export declare const navSearchBoxProps: {
|
|
145
|
+
/** searchbox input value */
|
|
146
|
+
value: any;
|
|
147
|
+
/** function that is triggered on change */
|
|
148
|
+
onChange: any;
|
|
149
|
+
/** Function that is triggered on blur */
|
|
150
|
+
onBlur: {
|
|
151
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
152
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
153
|
+
};
|
|
154
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
155
|
+
};
|
|
156
|
+
/** triggered on next chevron click */
|
|
157
|
+
onNext: any;
|
|
158
|
+
/** triggered on prev chevron click */
|
|
159
|
+
onPrevious: any;
|
|
160
|
+
/** function that is triggered on clear button press */
|
|
161
|
+
onClear: any;
|
|
162
|
+
/** zero based index to show on search box, -1 hides navigation */
|
|
163
|
+
currentResultIndex: any;
|
|
164
|
+
/** total items to navigate */
|
|
165
|
+
totalResults: any;
|
|
166
|
+
/** Placeholder for the search box */
|
|
167
|
+
placeholder: {
|
|
168
|
+
defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
|
|
169
|
+
deprecated: import("react-desc").PropTypesDescValidator;
|
|
170
|
+
};
|
|
171
|
+
isRequired: import("react-desc").PropTypesDescValue;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SearchBoxTextBox: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, any, any>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|