globalfy-design-system 1.43.0 → 1.44.1

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.
@@ -43,7 +43,7 @@ export declare const controlVariants: import('tailwind-variants').TVReturnType<{
43
43
  isTransparent: {
44
44
  true: string;
45
45
  };
46
- }, undefined, "block h-12 w-full rounded-lg border border-primary-grey-700 bg-white px-4", import('tailwind-variants/dist/config.js').TVConfig<{
46
+ }, undefined, "block min-h-12 w-full rounded-lg border border-primary-grey-700 bg-white px-4 py-3", import('tailwind-variants/dist/config.js').TVConfig<{
47
47
  disabled: {
48
48
  true: string;
49
49
  };
@@ -107,7 +107,7 @@ export declare const controlVariants: import('tailwind-variants').TVReturnType<{
107
107
  isTransparent: {
108
108
  true: string;
109
109
  };
110
- }, undefined, "block h-12 w-full rounded-lg border border-primary-grey-700 bg-white px-4", import('tailwind-variants/dist/config.js').TVConfig<{
110
+ }, undefined, "block min-h-12 w-full rounded-lg border border-primary-grey-700 bg-white px-4 py-3", import('tailwind-variants/dist/config.js').TVConfig<{
111
111
  disabled: {
112
112
  true: string;
113
113
  };
@@ -272,3 +272,32 @@ export declare const labelVariants: import('tailwind-variants').TVReturnType<{
272
272
  };
273
273
  }>, unknown, unknown, undefined>>;
274
274
  export declare const errorMessageVariants: import('tailwind-variants').TVReturnType<{} | {} | {}, undefined, "mt-[5px] pl-3 font-satoshi text-xs font-normal leading-normal text-complementary-red-500", import('tailwind-variants/dist/config.js').TVConfig<unknown, {} | {}>, {} | {}, undefined, import('tailwind-variants').TVReturnType<unknown, undefined, "mt-[5px] pl-3 font-satoshi text-xs font-normal leading-normal text-complementary-red-500", import('tailwind-variants/dist/config.js').TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
275
+ export declare const MultiValueContainerVariants: import('tailwind-variants').TVReturnType<{
276
+ isDisabled: {
277
+ true: string;
278
+ };
279
+ }, undefined, "flex h-7 w-[6.125rem] w-full items-center justify-center gap-2 rounded-[3rem] border border-primary-green-500 px-4 py-1", import('tailwind-variants/dist/config.js').TVConfig<{
280
+ isDisabled: {
281
+ true: string;
282
+ };
283
+ }, {
284
+ isDisabled: {
285
+ true: string;
286
+ };
287
+ }>, {
288
+ isDisabled: {
289
+ true: string;
290
+ };
291
+ }, undefined, import('tailwind-variants').TVReturnType<{
292
+ isDisabled: {
293
+ true: string;
294
+ };
295
+ }, undefined, "flex h-7 w-[6.125rem] w-full items-center justify-center gap-2 rounded-[3rem] border border-primary-green-500 px-4 py-1", import('tailwind-variants/dist/config.js').TVConfig<{
296
+ isDisabled: {
297
+ true: string;
298
+ };
299
+ }, {
300
+ isDisabled: {
301
+ true: string;
302
+ };
303
+ }>, unknown, unknown, undefined>>;
@@ -1,3 +1,3 @@
1
1
  import { DropdownListProps } from './DropdownProps';
2
2
 
3
- export declare const DropdownAsyncList: ({ label, value, defaultValue, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, isSearchable, onInputChange, customOption, inputValue, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, isClearable, onClear, customClassNames, cacheOptions, defaultOptions, loadOptions, ...props }: DropdownListProps) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const DropdownAsyncList: ({ label, value, defaultValue, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, isSearchable, onInputChange, customOption, inputValue, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, isClearable, onClear, customClassNames, cacheOptions, defaultOptions, loadOptions, isMulti, ...props }: DropdownListProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import { DropdownListProps } from './DropdownProps';
2
2
 
3
- export declare const DropdownAsyncListCreatable: ({ label, value, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, isSearchable, cacheOptions, defaultOptions, customOption, isClearable, loadOptions, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, onCreateOption, customClassNames, onInputChange, onClear, ...props }: DropdownListProps) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const DropdownAsyncListCreatable: ({ label, value, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, isSearchable, cacheOptions, defaultOptions, customOption, isClearable, loadOptions, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, onCreateOption, customClassNames, onInputChange, isMulti, onClear, ...props }: DropdownListProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
- import { ClearIndicatorProps, ControlProps, DropdownIndicatorProps, InputProps, OptionProps, PlaceholderProps } from 'react-select';
2
+ import { ClearIndicatorProps, ControlProps, DropdownIndicatorProps, InputProps, MultiValueProps, MultiValueRemoveProps, OptionProps, PlaceholderProps, ValueContainerProps } from 'react-select';
3
3
  import { OptionType } from './DropdownProps';
4
4
 
5
5
  export declare const DropDownIndicator: (props: DropdownIndicatorProps) => import("react/jsx-runtime").JSX.Element;
@@ -20,4 +20,8 @@ interface ClearIndicatorComponentProps extends ClearIndicatorProps {
20
20
  export declare const ClearIndicator: ({ onClear, innerProps }: ClearIndicatorComponentProps) => import("react/jsx-runtime").JSX.Element;
21
21
  export declare const LoadingIndicator: () => import("react/jsx-runtime").JSX.Element;
22
22
  export declare const Input: ({ children, ...inputProps }: InputProps) => import("react/jsx-runtime").JSX.Element;
23
+ export declare const MultiValueContainer: ({ children, isDisabled, ...props }: MultiValueProps) => import("react/jsx-runtime").JSX.Element;
24
+ export declare const MultiValue: ({ children, ...props }: MultiValueProps) => import("react/jsx-runtime").JSX.Element;
25
+ export declare const ValueContainer: ({ children, ...props }: ValueContainerProps) => import("react/jsx-runtime").JSX.Element;
26
+ export declare const MultiValueRemove: ({ ...props }: MultiValueRemoveProps) => import("react/jsx-runtime").JSX.Element;
23
27
  export {};
@@ -1,3 +1,3 @@
1
1
  import { DropdownListProps } from './DropdownProps';
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, isClearable, onClear, customClassNames, ...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, isClearable, onClear, customClassNames, isMulti, ...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, isClearable, onClear, customClassNames, ...props }: import('./DropdownProps').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, isClearable, onClear, customClassNames, isMulti, ...props }: import('./DropdownProps').DropdownListProps) => import("react/jsx-runtime").JSX.Element;
6
6
  tags: string[];
7
7
  parameters: {
8
8
  layout: string;
@@ -1,3 +1,3 @@
1
1
  import { DropdownListProps } from './DropdownProps';
2
2
 
3
- export declare const DropdownListCreatable: ({ label, value, defaultValue, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, options, isSearchable, customOption, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, onCreateOption, isLoading, customClassNames, isClearable, onClear, ...props }: DropdownListProps) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const DropdownListCreatable: ({ label, value, defaultValue, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, options, isSearchable, customOption, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, onCreateOption, isLoading, customClassNames, isClearable, onClear, isMulti, ...props }: DropdownListProps) => import("react/jsx-runtime").JSX.Element;
@@ -37,6 +37,7 @@ export type DropdownListProps = {
37
37
  loadOptions?: (inputValue: string, callback: (options: OptionsType) => void) => Promise<OptionsType> | void;
38
38
  cacheOptions?: boolean;
39
39
  defaultOptions?: boolean;
40
+ isMulti?: boolean;
40
41
  };
41
42
  export type DropdownCreditCardOption = {
42
43
  label?: string;