@hybr1d-tech/charizard 0.6.15 → 0.6.16
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/checkbox/Checkbox.d.ts +0 -1
- package/dist/components/modal/ModalBody.d.ts +0 -1
- package/dist/components/modal/ModalHeader.d.ts +0 -1
- package/dist/components/popover/PopoverCloseButton.d.ts +0 -1
- package/dist/components/popover/PopoverDescription.d.ts +0 -1
- package/dist/components/popover/PopoverTitle.d.ts +0 -1
- package/dist/components/popover/PopoverTrigger.d.ts +0 -1
- package/dist/components/select/Select.d.ts +2 -4
- package/dist/components/svg/SVG.d.ts +0 -1
- package/dist/components/switch/Switch.d.ts +0 -1
- package/dist/components/tag/Tag.d.ts +0 -1
- package/dist/components/tooltip/TooltipContent.d.ts +0 -1
- package/dist/components/tooltip/TooltipTrigger.d.ts +0 -1
- package/dist/hybr1d-ui.js +290 -289
- package/dist/hybr1d-ui.umd.cjs +8 -8
- package/package.json +3 -3
|
@@ -63,9 +63,7 @@ interface SelectProps {
|
|
|
63
63
|
* The custom styles of the select container
|
|
64
64
|
*/
|
|
65
65
|
customContainerStyles?: React.CSSProperties;
|
|
66
|
-
|
|
67
|
-
* Whether the select is disabled
|
|
68
|
-
*/
|
|
66
|
+
customErrorStyles?: React.CSSProperties;
|
|
69
67
|
isDisabled?: boolean;
|
|
70
68
|
/**
|
|
71
69
|
* Default placement of the menu in relation to the control. 'auto' will flip when there isn't enough space below the control.
|
|
@@ -85,5 +83,5 @@ interface SelectProps {
|
|
|
85
83
|
CustomDropdownIndicator?: React.ReactNode;
|
|
86
84
|
customValue?: any;
|
|
87
85
|
}
|
|
88
|
-
export declare function Select({ options, onChange, name, id, className, placeholder, selectStyles, defaultValue, formatGroupLabel, customContainerStyles, menuPlacement, errorMsg, extraprops, isDisabled, isSearchable, isMulti, isClearable, customValue, CustomDropdownIndicator, }: SelectProps): import("react/jsx-runtime").JSX.Element;
|
|
86
|
+
export declare function Select({ options, onChange, name, id, className, placeholder, selectStyles, defaultValue, formatGroupLabel, customContainerStyles, customErrorStyles, menuPlacement, errorMsg, extraprops, isDisabled, isSearchable, isMulti, isClearable, customValue, CustomDropdownIndicator, }: SelectProps): import("react/jsx-runtime").JSX.Element;
|
|
89
87
|
export {};
|