@hybr1d-tech/charizard 0.7.51 → 0.7.52
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/hybr1d-ui.js +1934 -1934
- package/dist/hybr1d-ui.umd.cjs +13 -13
- package/dist/index.d.ts +0 -3
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -384,7 +384,6 @@ declare interface CreatableSelectProps {
|
|
|
384
384
|
* - `options` (Array<Option>): An array of options to be displayed in the dropdown. Each option can include a label, value, and optional profile image or icon.
|
|
385
385
|
* - `mainContainerClassName` (string, optional): A custom CSS class name to apply to the main container for additional styling.
|
|
386
386
|
* - `variant` (SELECT_VARIANT, optional): Defines the variant of the select component (e.g., 'default', 'users', 'checkbox', 'tags') to control the styling and behavior.
|
|
387
|
-
* - `showDivider` (boolean, optional): Defines whether to add divider between option list.
|
|
388
387
|
* - `errorMsg` (string, optional): An error message to display below the select component for validation purposes.
|
|
389
388
|
* - `onChange` (function): A callback function that is triggered when the selected value(s) change. It receives the selected value(s) and action meta information.
|
|
390
389
|
* - `customStyles` (StylesConfig<any>): custom styles for react select. it will override default styles
|
|
@@ -2331,7 +2330,6 @@ export declare type SelectSingleValue = SingleValue<Option_2>;
|
|
|
2331
2330
|
* - `options` (Array<Option>): An array of options to be displayed in the dropdown. Each option can include a label, value, and optional profile image or icon.
|
|
2332
2331
|
* - `mainContainerClassName` (string, optional): A custom CSS class name to apply to the main container for additional styling.
|
|
2333
2332
|
* - `variant` (SELECT_VARIANT, optional): Defines the variant of the select component (e.g., 'default', 'users', 'checkbox', 'tags') to control the styling and behavior.
|
|
2334
|
-
* - `showDivider` (boolean, optional): Defines whether to add divider between option list.
|
|
2335
2333
|
* - `errorMsg` (string, optional): An error message to display below the select component for validation purposes.
|
|
2336
2334
|
* - `onChange` (function): A callback function that is triggered when the selected value(s) change. It receives the selected value(s) and action meta information.
|
|
2337
2335
|
* - `customStyles` (StylesConfig<any>): custom styles for react select. it will override default styles
|
|
@@ -2344,7 +2342,6 @@ export declare interface SelectV2Props extends Props<any, boolean> {
|
|
|
2344
2342
|
onChange: (value: string | string[], actionMeta: SelectActionMeta) => void;
|
|
2345
2343
|
mainContainerClassName?: string;
|
|
2346
2344
|
variant?: SELECT_VARIANT;
|
|
2347
|
-
showDivider?: boolean;
|
|
2348
2345
|
errorMsg?: string;
|
|
2349
2346
|
customStyles?: StylesConfig<any>;
|
|
2350
2347
|
}
|