globalfy-design-system 1.12.0 → 1.13.0

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.
@@ -1,3 +1,3 @@
1
1
  import { DropdownListProps } from './DropdownList.types';
2
2
 
3
- export declare const DropdownList: ({ label, value, defaultValue, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, options, isSearchable, customOption, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, ...props }: DropdownListProps) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const DropdownList: ({ label, value, defaultValue, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, options, isSearchable, customOption, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, customClassNames, ...props }: DropdownListProps) => import("react/jsx-runtime").JSX.Element;
@@ -2,7 +2,7 @@ import { StoryObj } from '@storybook/react';
2
2
 
3
3
  declare const meta: {
4
4
  title: string;
5
- component: ({ label, value, defaultValue, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, options, isSearchable, customOption, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, ...props }: import('./DropdownList.types').DropdownListProps) => import("react/jsx-runtime").JSX.Element;
5
+ component: ({ label, value, defaultValue, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, options, isSearchable, customOption, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, customClassNames, ...props }: import('./DropdownList.types').DropdownListProps) => import("react/jsx-runtime").JSX.Element;
6
6
  tags: string[];
7
7
  parameters: {
8
8
  layout: string;
@@ -27,6 +27,9 @@ export type DropdownListProps = {
27
27
  customValueContainer?: ComponentType<ValueContainerProps>;
28
28
  onCreateOption?: (inputValue: string) => void;
29
29
  isLoading?: boolean;
30
+ customClassNames?: {
31
+ menuList?: string;
32
+ };
30
33
  };
31
34
  export type DropdownCreditCardOption = {
32
35
  label: string;
@@ -1,3 +1,3 @@
1
1
  import { DropdownListProps } from '.';
2
2
 
3
- export declare const DropdownPaymentMethod: (props: DropdownListProps) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const DropdownPaymentMethod: ({ ...props }: DropdownListProps) => import("react/jsx-runtime").JSX.Element;