@hybr1d-tech/charizard 0.7.49 → 0.7.51

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/index.d.ts CHANGED
@@ -384,6 +384,7 @@ 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.
387
388
  * - `errorMsg` (string, optional): An error message to display below the select component for validation purposes.
388
389
  * - `onChange` (function): A callback function that is triggered when the selected value(s) change. It receives the selected value(s) and action meta information.
389
390
  * - `customStyles` (StylesConfig<any>): custom styles for react select. it will override default styles
@@ -2330,6 +2331,7 @@ export declare type SelectSingleValue = SingleValue<Option_2>;
2330
2331
  * - `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.
2331
2332
  * - `mainContainerClassName` (string, optional): A custom CSS class name to apply to the main container for additional styling.
2332
2333
  * - `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.
2333
2335
  * - `errorMsg` (string, optional): An error message to display below the select component for validation purposes.
2334
2336
  * - `onChange` (function): A callback function that is triggered when the selected value(s) change. It receives the selected value(s) and action meta information.
2335
2337
  * - `customStyles` (StylesConfig<any>): custom styles for react select. it will override default styles
@@ -2342,6 +2344,7 @@ export declare interface SelectV2Props extends Props<any, boolean> {
2342
2344
  onChange: (value: string | string[], actionMeta: SelectActionMeta) => void;
2343
2345
  mainContainerClassName?: string;
2344
2346
  variant?: SELECT_VARIANT;
2347
+ showDivider?: boolean;
2345
2348
  errorMsg?: string;
2346
2349
  customStyles?: StylesConfig<any>;
2347
2350
  }