@producteca/producteca-ui-kit 1.20.0 → 1.21.1-beta.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.
- package/dist/components/alert/alert.js +37 -0
- package/dist/components/breadcrumb/breadcrumb.js +33 -0
- package/dist/components/breadcrumb/index.js +2 -0
- package/dist/components/button/button.js +34 -0
- package/dist/components/chip/chip.js +27 -0
- package/dist/components/chip/index.js +1 -0
- package/dist/components/icons/customIcon/customIcon.js +41 -0
- package/dist/components/icons/fileIcon/fileIcon.js +14 -0
- package/dist/components/icons/{index.d.ts → index.js} +1 -1
- package/dist/components/icons/mailIcon/mailIcon.js +14 -0
- package/dist/components/icons/parameters.js +26 -0
- package/dist/components/icons/priceCloseIcon/priceCloseIcon.js +14 -0
- package/dist/components/icons/priceDownIcon/priceDownIcon.js +14 -0
- package/dist/components/icons/searchPublication/searchPublication.js +14 -0
- package/dist/components/image/image.js +26 -0
- package/dist/components/image/index.js +1 -0
- package/dist/components/{index.d.ts → index.js} +1 -0
- package/dist/components/inputs/checkboxInput/checkboxInput.js +35 -0
- package/dist/components/inputs/checkboxInput/checkboxInputGroup.js +58 -0
- package/dist/components/inputs/checkboxInput/{index.d.ts → index.js} +1 -2
- package/dist/components/inputs/datePicker/datePicker.js +143 -0
- package/dist/components/inputs/datePicker/datePickerCustomStyles.js +145 -0
- package/dist/components/inputs/datePicker/datePickerTypes.js +1 -0
- package/dist/components/inputs/datePicker/datePickerUtils.js +109 -0
- package/dist/components/inputs/datePicker/index.js +2 -0
- package/dist/components/inputs/dateRangePicker/dateFormater.js +28 -0
- package/dist/components/inputs/dateRangePicker/dateRangePicker.js +118 -0
- package/dist/components/inputs/dateRangePicker/dateRangePickerTypes.js +1 -0
- package/dist/components/inputs/dateRangePicker/dateRangePickerUtils.js +67 -0
- package/dist/components/inputs/dateRangePicker/index.js +2 -0
- package/dist/components/inputs/formField/formField.js +35 -0
- package/dist/components/inputs/formField/passwordInput.js +22 -0
- package/dist/components/inputs/formField/textInput.js +79 -0
- package/dist/components/inputs/{index.d.ts → index.js} +1 -1
- package/dist/components/inputs/searcher/searcher.js +112 -0
- package/dist/components/inputs/selectField/selectField.js +183 -0
- package/dist/components/inputs/switchInput/index.js +2 -0
- package/dist/components/inputs/switchInput/switchInput.js +77 -0
- package/dist/components/loaders/index.js +2 -0
- package/dist/components/loaders/progressbar/progressbar.js +37 -0
- package/dist/components/loaders/spinner/spinner.js +15 -0
- package/dist/components/menuAction/index.js +1 -0
- package/dist/components/menuAction/menuAction.js +67 -0
- package/dist/components/menuAction/menuActionCustomStyles.js +13 -0
- package/dist/components/modals/index.js +1 -0
- package/dist/components/modals/warningModal/index.js +1 -0
- package/dist/components/modals/warningModal/warningModal.js +41 -0
- package/dist/components/patterns/actionBar/actionBar.js +38 -0
- package/dist/components/patterns/copyButton/copyButton.js +69 -0
- package/dist/components/patterns/copyButton/index.js +1 -0
- package/dist/components/patterns/emptyState/emptyState.js +17 -0
- package/dist/components/patterns/headerSection/headerSection.js +17 -0
- package/dist/components/patterns/headerSection/index.js +1 -0
- package/dist/components/patterns/iconWithIdentifier/iconWithIdentifier.js +12 -0
- package/dist/components/patterns/iconWithIdentifier/index.js +1 -0
- package/dist/components/patterns/{index.d.ts → index.js} +1 -1
- package/dist/components/patterns/linkWithIcon/index.js +1 -0
- package/dist/components/patterns/linkWithIcon/linkWithIcon.js +26 -0
- package/dist/components/tabs/index.js +1 -0
- package/dist/components/tabs/tabs.js +70 -0
- package/dist/components/tooltip/index.js +2 -0
- package/dist/components/tooltip/overflowChecker.js +27 -0
- package/dist/components/tooltip/tooltip.js +97 -0
- package/dist/hooks/useReduxFormField.js +34 -0
- package/dist/{index.d.ts → index.js} +1 -1
- package/dist/locales/description.js +15 -0
- package/dist/locales/es.js +227 -0
- package/dist/locales/index.js +2 -0
- package/dist/locales/translator.js +20 -0
- package/dist/producteca-ui-kit.cjs.js +3 -0
- package/dist/producteca-ui-kit.es.js +3 -53447
- package/dist/producteca-ui-kit.umd.js +9 -604
- package/dist/styles/colors.js +67 -0
- package/dist/styles/styles/colors.tsx +88 -0
- package/dist/styles/styles/global.module.scss +85 -0
- package/dist/styles/styles/theme.tsx +24 -0
- package/dist/styles/styles/variables.module.scss +74 -0
- package/dist/styles/theme.js +22 -0
- package/dist/validators/errorMessage.js +15 -0
- package/dist/validators/index.js +2 -0
- package/dist/validators/validation.js +25 -0
- package/package.json +42 -4
- package/dist/components/alert/alert.d.ts +0 -17
- package/dist/components/breadcrumb/breadcrumb.d.ts +0 -15
- package/dist/components/breadcrumb/index.d.ts +0 -2
- package/dist/components/button/button.d.ts +0 -17
- package/dist/components/chip/chip.d.ts +0 -13
- package/dist/components/chip/index.d.ts +0 -2
- package/dist/components/icons/customIcon/customIcon.d.ts +0 -16
- package/dist/components/icons/fileIcon/fileIcon.d.ts +0 -5
- package/dist/components/icons/mailIcon/mailIcon.d.ts +0 -5
- package/dist/components/icons/parameters.d.ts +0 -51
- package/dist/components/icons/priceCloseIcon/priceCloseIcon.d.ts +0 -5
- package/dist/components/icons/priceDownIcon/priceDownIcon.d.ts +0 -5
- package/dist/components/icons/searchPublication/searchPublication.d.ts +0 -5
- package/dist/components/image/image.d.ts +0 -11
- package/dist/components/image/index.d.ts +0 -1
- package/dist/components/inputs/checkboxInput/checkboxInput.d.ts +0 -9
- package/dist/components/inputs/checkboxInput/checkboxInputGroup.d.ts +0 -22
- package/dist/components/inputs/datePicker/datePicker.d.ts +0 -5
- package/dist/components/inputs/datePicker/datePickerCustomStyles.d.ts +0 -8
- package/dist/components/inputs/datePicker/datePickerTypes.d.ts +0 -14
- package/dist/components/inputs/datePicker/datePickerUtils.d.ts +0 -68
- package/dist/components/inputs/datePicker/index.d.ts +0 -3
- package/dist/components/inputs/dateRangePicker/dateFormater.d.ts +0 -7
- package/dist/components/inputs/dateRangePicker/dateRangePicker.d.ts +0 -5
- package/dist/components/inputs/dateRangePicker/dateRangePickerTypes.d.ts +0 -14
- package/dist/components/inputs/dateRangePicker/dateRangePickerUtils.d.ts +0 -9
- package/dist/components/inputs/dateRangePicker/index.d.ts +0 -4
- package/dist/components/inputs/formField/formField.d.ts +0 -10
- package/dist/components/inputs/formField/passwordInput.d.ts +0 -4
- package/dist/components/inputs/formField/textInput.d.ts +0 -25
- package/dist/components/inputs/searcher/searcher.d.ts +0 -28
- package/dist/components/inputs/selectField/selectField.d.ts +0 -42
- package/dist/components/inputs/switchInput/index.d.ts +0 -4
- package/dist/components/inputs/switchInput/switchInput.d.ts +0 -31
- package/dist/components/loaders/index.d.ts +0 -2
- package/dist/components/loaders/progressbar/progressbar.d.ts +0 -8
- package/dist/components/loaders/spinner/spinner.d.ts +0 -6
- package/dist/components/menuAction/index.d.ts +0 -1
- package/dist/components/menuAction/menuAction.d.ts +0 -18
- package/dist/components/menuAction/menuActionCustomStyles.d.ts +0 -4
- package/dist/components/modals/index.d.ts +0 -1
- package/dist/components/modals/warningModal/index.d.ts +0 -1
- package/dist/components/modals/warningModal/warningModal.d.ts +0 -17
- package/dist/components/patterns/actionBar/actionBar.d.ts +0 -26
- package/dist/components/patterns/copyButton/copyButton.d.ts +0 -11
- package/dist/components/patterns/copyButton/index.d.ts +0 -1
- package/dist/components/patterns/emptyState/emptyState.d.ts +0 -11
- package/dist/components/patterns/headerSection/headerSection.d.ts +0 -14
- package/dist/components/patterns/headerSection/index.d.ts +0 -1
- package/dist/components/patterns/iconWithIdentifier/iconWithIdentifier.d.ts +0 -11
- package/dist/components/patterns/iconWithIdentifier/index.d.ts +0 -1
- package/dist/components/patterns/linkWithIcon/index.d.ts +0 -1
- package/dist/components/patterns/linkWithIcon/linkWithIcon.d.ts +0 -14
- package/dist/components/tooltip/index.d.ts +0 -3
- package/dist/components/tooltip/overflowChecker.d.ts +0 -5
- package/dist/components/tooltip/tooltip.d.ts +0 -20
- package/dist/favicon.svg +0 -43
- package/dist/hooks/useReduxFormField.d.ts +0 -26
- package/dist/locales/description.d.ts +0 -15
- package/dist/locales/es.d.ts +0 -222
- package/dist/locales/index.d.ts +0 -2
- package/dist/locales/translator.d.ts +0 -3
- package/dist/style.css +0 -1
- package/dist/styles/colors.d.ts +0 -25
- package/dist/styles/theme.d.ts +0 -2
- package/dist/validators/errorMessage.d.ts +0 -5
- package/dist/validators/index.d.ts +0 -2
- package/dist/validators/validation.d.ts +0 -21
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { ChangeEvent } from 'react';
|
|
2
|
-
|
|
3
|
-
export type ReduxFormInput = {
|
|
4
|
-
value: any;
|
|
5
|
-
onChange: (value: any) => void;
|
|
6
|
-
onBlur: () => void;
|
|
7
|
-
name: string;
|
|
8
|
-
};
|
|
9
|
-
interface UseReduxFormFieldParams<T, E = ChangeEvent<any>> {
|
|
10
|
-
input?: ReduxFormInput;
|
|
11
|
-
onChange?: (event: E) => void;
|
|
12
|
-
onBlur?: () => void;
|
|
13
|
-
transformValue?: (value: any, event: E) => T;
|
|
14
|
-
}
|
|
15
|
-
interface UseReduxFormFieldResult<E> {
|
|
16
|
-
handleChange: (event: E) => void;
|
|
17
|
-
handleBlur: () => void;
|
|
18
|
-
}
|
|
19
|
-
/**
|
|
20
|
-
* Hook to unify Redux Form and regular form field handling
|
|
21
|
-
*
|
|
22
|
-
* @param params Configuration object containing input, onChange, and transformValue
|
|
23
|
-
* @returns Object with handleChange and handleBlur functions
|
|
24
|
-
*/
|
|
25
|
-
export declare function useReduxFormField<T, E = ChangeEvent<any>>({ input, onChange, onBlur, transformValue, }: UseReduxFormFieldParams<T, E>): UseReduxFormFieldResult<E>;
|
|
26
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export declare const onChangeSelectField = "\n Callback que se dispara cuando cambia el valor del input.\n \n #### Par\u00E1metros\n event: `React.ChangeEvent<HTMLInputElement>`\n - `event.target.name`: El nombre del input.\n - `event.target.value`: El valor actual del input, que debe cumplir con la siguiente interfaz:\n \n ```typescript\n interface SelectOption {\n label: string;\n value: string | number;\n [key: string]: any;\n }\n ```\n";
|
|
2
|
-
export declare const onInputChange = "\n Callback que se ejecuta cuando escribimos algo en el buscador.\n \n #### Par\u00E1metros\n event: `React.ChangeEvent<HTMLInputElement>`\n - `event.target.name`: El nombre del input.\n - `event.target.value`: El valor actual del input\n";
|
|
3
|
-
export declare const onChangeSearcher = "\n Callback que se ejecuta cuando seleccionamos una opcion del buscador.\n \n #### Par\u00E1metros\n event: `React.ChangeEvent<HTMLInputElement>`\n - `event.target.name`: El nombre del input.\n - `event.target.value`: El valor actual del input, que debe cumplir con la siguiente interfaz:\n \n ``` typescript\n interface SelectOption {\n label: string;\n value: string | number;\n [key: string]: any;\n }\n ```\n";
|
|
4
|
-
export declare const onChangeCheckboxInput = "\n Callback que se dispara cuando cambia el valor del input.\n \n #### Par\u00E1metros\n event: `React.ChangeEvent<HTMLInputElement>`\n - `event.target.name`: El nombre del input.\n - `event.target.value`: Siempre es \"on\"\n";
|
|
5
|
-
export declare const onChangeInput = "\n Callback que se dispara cuando cambia el valor del input.\n \n #### Par\u00E1metros\n event: `React.ChangeEvent<HTMLInputElement>`\n - `event.target.name`: El nombre del input.\n - `event.target.value`: El valor actual del input, que debe cumplir con la siguiente interfaz:\n \n ``` typescript\n value: string | number; \n ```\n";
|
|
6
|
-
export declare const isOptionDisabled = " \n Funcion que recibe un valor de tipo SelectOption y deberia devolver un valor booleano\n Si la opci\u00F3n tiene definida un tooltipMessage se va a mostrar al hacer hover.\n \n#### Ejemplo\n ``` typescript\n const isOptionDisabled = (option: SelectOption) => option.value === 2;\n ```\n \n #### Interfaz\n ```typescript\n interface SelectOption {\n label: string;\n value: string | number;\n tooltipMessage?: string;\n [key: string]: any;\n }\n ```\n";
|
|
7
|
-
export declare const selectFieldDescription = "\n #### Ejemplo de uso \n ```typescript\n <SelectField\n name=\"productId\"\n options={[{ label: \"1\", value: 1 }, { label: \"2\", value: 2, tooltipMessage: \"Este valor no es representativo\" }]}\n onChange={(event) => handleChange(event.target.name, event.target.value)}\n isMultiple\n isClearable={false}\n label={localize('product')}\n isOptionDisabled={(option) => option.value == 2}\n rightModifier={shouldShowLoader && <Spinner />}\n />\n ```\n";
|
|
8
|
-
export declare const formFieldExample = "\n #### Ejemplo de uso\n \n ``` typescript\n <FormField\n label=\"T\u00EDtulo\"\n name=\"textInput\"\n onChange={(event) => handleChange(event.target.name, event.target.value)}\n placeholder=\"Placeholder\"\n size=\"md\"\n type=\"text\"\n isValid={(inputValue) => _.isNumber(inputValue)}\n />\n ```\n";
|
|
9
|
-
export declare const isValidInput = "\n Funcion que recibe un valor de tipo inputValue y deberia devolver un valor booleano.\n \n #### Por ejemplo: (inputValue) => _.isNumber(inputValue)\n \n ``` typescript\n type inputValue = string | number; \n ```\n";
|
|
10
|
-
export declare const checkboxInputGroupExample = "\n #### Ejemplo de uso\n \n ``` typescript\n <CheckboxInput\n items={[\n {\n id: '1',\n label: 'Opci\u00F3n 1'\n },\n {\n id: '2',\n label: 'Opci\u00F3n 2'\n },\n {\n disabled: true,\n id: '3',\n label: 'Opci\u00F3n 3'\n }\n ]}\n name=\"CheckboxList\"\n onChange={(event) => handleChange(event.target.name, event.target.value)}\n size=\"lg\"\n title=\"Selecciona una opci\u00F3n\"\n type=\"checkbox\"\n />\n ```\n";
|
|
11
|
-
export declare const checkboxInputExample = " \n Versi\u00F3n con una sola opci\u00F3n tipo checkbox y un label personalizado:\n \n ```typescript\n const [checked, setChecked] = React.useState(false)\n <CheckboxInput\n name=\"Toggle\"\n checked={checked}\n onChange={setChecked}\n label={\"Amazon\"}\n title={locale('syncStockFromChannel')}\n />\n ```\n";
|
|
12
|
-
export declare const searcherExample = " \n Note la diferencia entre onChange y onInputChange (oficia de onSearch):\n \n ```typescript\n <Searcher\n label=\"Search label\"\n name=\"Searcher\"\n onChange={(event) => onSelectOption(event.target.value)}\n onInputChange={(event) => handleSearch(event.target.value)}\n options={[{ label: 'text', value: 1 }]}\n />\n ```\n";
|
|
13
|
-
export declare const saveBarExample = "\n #### Uso b\u00E1sico\n ```typescript\n <SaveBar\n saveProps={{\n onSave: () => handleSave(),\n label: 'Save'\n }}\n cancelProps={{\n onCancel: () => handleCancel(),\n label: 'Cancel'\n }}\n />\n ```\n #### Con bot\u00F3n de navegaci\u00F3n\n ```typescript\n <SaveBar\n saveProps={{\n onSave: () => handleSave(),\n label: 'Save',\n variant: 'primary'\n }}\n cancelProps={{\n onCancel: () => handleCancel(),\n label: 'Cancel'\n }}\n previousProps={{\n onPrevious: () => handlePrevious(),\n label: 'Previous'\n }}\n />\n ```\n #### Ejemplo completo\n ```typescript\n <SaveBar\n saveProps={{\n onSave: () => handleSave(),\n label: 'Guardar cambios',\n variant: 'success',\n disabled: false,\n onClick: () => {},\n }}\n cancelProps={{\n onCancel: () => handleCancel(),\n label: 'Descartar',\n }}\n previousProps={{\n onPrevious: () => handlePrevious(),\n label: 'Anterior',\n variant: 'primary',\n outline: true,\n disabled: false,\n onClick: () => console.log('Previous clicked'),\n }}\n />\n ```\n";
|
|
14
|
-
export declare const checkboxInputReduxFormExample = "\n #### Ejemplo de uso con Redux Form - CheckboxInput\n \n ```typescript\n <Field\n name=\"salesSync\"\n component={CheckboxInput}\n classComponent={'decrease-stock'}\n props={{\n name: 'cancelSales',\n value: this.salesSync().cancelSales,\n checked: this.salesSync().cancelSales,\n label: this.context.localize('settings.cancelSales')\n }}\n />\n ```\n";
|
|
15
|
-
export declare const breadcrumbItemFormat = "\n ## Formato de BreadcrumbItem\n\n El componente Breadcrumb acepta un array de objetos `BreadcrumbItem` con las siguientes propiedades:\n\n ### Propiedades disponibles:\n\n - **`text`** (string, requerido): El texto que se muestra para el item del breadcrumb\n - **`onClick`** (function, opcional): Funci\u00F3n que se ejecuta al hacer click en el item\n - **`isActive`** (boolean, opcional): Indica si el item est\u00E1 activo. Por defecto, el \u00FAltimo item se considera activo\n - **`href`** (string, opcional): URL del enlace (actualmente no implementado en el renderizado)\n\n ### Comportamiento:\n\n - Los items con `onClick` se renderizan como botones clickeables\n - Los items sin `onClick` se renderizan como texto est\u00E1tico\n - El \u00FAltimo item siempre se considera activo (a menos que se especifique `isActive: true` en otro item)\n - Cada item se separa autom\u00E1ticamente con el s\u00EDmbolo \">\"\n\n ### Ejemplo de uso:\n\n ```tsx\n const breadcrumbItems = [\n { text: 'Dashboard' },\n { text: 'Productos', onClick: () => navigate('/products') },\n { text: 'Detalles', isActive: true }\n ]\n\n <Breadcrumb items={breadcrumbItems} />\n ```\n";
|
package/dist/locales/es.d.ts
DELETED
|
@@ -1,222 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
noResultsFound: string;
|
|
3
|
-
reloadPage: string;
|
|
4
|
-
selectPlaceholder: string;
|
|
5
|
-
selectOption: string;
|
|
6
|
-
noOptionsMessage: string;
|
|
7
|
-
noFoundOptions: string;
|
|
8
|
-
selectedPlural: string;
|
|
9
|
-
selected: string;
|
|
10
|
-
title: string;
|
|
11
|
-
password: string;
|
|
12
|
-
selectRequiredText: string;
|
|
13
|
-
exportedIcon: string;
|
|
14
|
-
syncStockFromChannel: string;
|
|
15
|
-
add: string;
|
|
16
|
-
previous: string;
|
|
17
|
-
continue: string;
|
|
18
|
-
cancel: string;
|
|
19
|
-
save: string;
|
|
20
|
-
guide: string;
|
|
21
|
-
hideSelectedOptionsExplainText: string;
|
|
22
|
-
switchInput: {
|
|
23
|
-
options: string;
|
|
24
|
-
option: string;
|
|
25
|
-
large: string;
|
|
26
|
-
medium: string;
|
|
27
|
-
small: string;
|
|
28
|
-
};
|
|
29
|
-
tooltip: {
|
|
30
|
-
hoverToSee: string;
|
|
31
|
-
basicContent: string;
|
|
32
|
-
showTooltipWhenHoverButton: string;
|
|
33
|
-
showTooltipWhenDisabled: string;
|
|
34
|
-
showTooltipWhenDisabledDescription: string;
|
|
35
|
-
basicDescription: string;
|
|
36
|
-
overflowDescription: string;
|
|
37
|
-
componentDescription: string;
|
|
38
|
-
maxWidthDescription: string;
|
|
39
|
-
clickToSee: string;
|
|
40
|
-
clickableTitle: string;
|
|
41
|
-
clickableDescription: string;
|
|
42
|
-
bulletPoint: string;
|
|
43
|
-
linkText: string;
|
|
44
|
-
};
|
|
45
|
-
description: {
|
|
46
|
-
checkboxInputReduxFormExample: string;
|
|
47
|
-
onChangeSelectField: string;
|
|
48
|
-
onInputChange: string;
|
|
49
|
-
onChangeSearcher: string;
|
|
50
|
-
onChangeCheckboxInput: string;
|
|
51
|
-
onChangeInput: string;
|
|
52
|
-
isOptionDisabled: string;
|
|
53
|
-
reduxForm: {
|
|
54
|
-
input: string;
|
|
55
|
-
};
|
|
56
|
-
selectField: {
|
|
57
|
-
example: string;
|
|
58
|
-
defaultValue: string;
|
|
59
|
-
disabled: string;
|
|
60
|
-
disabledOptions: string;
|
|
61
|
-
noOptions: string;
|
|
62
|
-
withIcon: string;
|
|
63
|
-
};
|
|
64
|
-
actionBar: {
|
|
65
|
-
example: string;
|
|
66
|
-
saveButton: string;
|
|
67
|
-
cancelButton: string;
|
|
68
|
-
previousButton: string;
|
|
69
|
-
saveButtonProps: string;
|
|
70
|
-
cancelButtonProps: string;
|
|
71
|
-
previousButtonProps: string;
|
|
72
|
-
withoutBorder: string;
|
|
73
|
-
saveChanges: string;
|
|
74
|
-
discard: string;
|
|
75
|
-
confirm: string;
|
|
76
|
-
verifySaveButtonOnly: string;
|
|
77
|
-
verifyInitialRendering: string;
|
|
78
|
-
clickSaveButton: string;
|
|
79
|
-
clickCancelButton: string;
|
|
80
|
-
clickPreviousButton: string;
|
|
81
|
-
clickSaveButtonOnly: string;
|
|
82
|
-
};
|
|
83
|
-
formField: {
|
|
84
|
-
example: string;
|
|
85
|
-
isValid: string;
|
|
86
|
-
};
|
|
87
|
-
checkboxInput: {
|
|
88
|
-
example: string;
|
|
89
|
-
checkboxInputExample: string;
|
|
90
|
-
checkboxInputGroupExample: string;
|
|
91
|
-
};
|
|
92
|
-
switchInput: {
|
|
93
|
-
example: string;
|
|
94
|
-
};
|
|
95
|
-
icons: {
|
|
96
|
-
size: string;
|
|
97
|
-
};
|
|
98
|
-
searcher: {
|
|
99
|
-
example: string;
|
|
100
|
-
exampleOption: string;
|
|
101
|
-
searchPlaceholder: string;
|
|
102
|
-
searchLabel: string;
|
|
103
|
-
noResults: string;
|
|
104
|
-
writeToSearch: string;
|
|
105
|
-
clearOnSelectDescription: string;
|
|
106
|
-
clearOnSelectStoryDescription: string;
|
|
107
|
-
};
|
|
108
|
-
breadcrumb: {
|
|
109
|
-
itemFormat: string;
|
|
110
|
-
};
|
|
111
|
-
alert: {
|
|
112
|
-
message: string;
|
|
113
|
-
infoMessage: string;
|
|
114
|
-
dontShowAgain: string;
|
|
115
|
-
customAlert: string;
|
|
116
|
-
};
|
|
117
|
-
};
|
|
118
|
-
headerSection: {
|
|
119
|
-
edit: string;
|
|
120
|
-
duplicate: string;
|
|
121
|
-
delete: string;
|
|
122
|
-
};
|
|
123
|
-
error: {
|
|
124
|
-
required: string;
|
|
125
|
-
notValid: string;
|
|
126
|
-
};
|
|
127
|
-
copyButton: {
|
|
128
|
-
copy: string;
|
|
129
|
-
copied: string;
|
|
130
|
-
textToCopy: string;
|
|
131
|
-
textCopied: string;
|
|
132
|
-
copyKey: string;
|
|
133
|
-
copiedKey: string;
|
|
134
|
-
custom: string;
|
|
135
|
-
running: string;
|
|
136
|
-
alert: string;
|
|
137
|
-
};
|
|
138
|
-
linkWithIcon: {
|
|
139
|
-
historyChange: string;
|
|
140
|
-
edit: string;
|
|
141
|
-
customAction: string;
|
|
142
|
-
};
|
|
143
|
-
breadcrumb: {
|
|
144
|
-
historyChanges: string;
|
|
145
|
-
products: string;
|
|
146
|
-
dashboard: string;
|
|
147
|
-
categories: string;
|
|
148
|
-
electronics: string;
|
|
149
|
-
details: string;
|
|
150
|
-
page1: string;
|
|
151
|
-
page2: string;
|
|
152
|
-
page3: string;
|
|
153
|
-
home: string;
|
|
154
|
-
};
|
|
155
|
-
datePicker: {
|
|
156
|
-
name: string;
|
|
157
|
-
value: string;
|
|
158
|
-
size: string;
|
|
159
|
-
disabled: string;
|
|
160
|
-
required: string;
|
|
161
|
-
noErrors: string;
|
|
162
|
-
placeholder: string;
|
|
163
|
-
label: string;
|
|
164
|
-
format: string;
|
|
165
|
-
minDate: string;
|
|
166
|
-
maxDate: string;
|
|
167
|
-
rightAdornment: string;
|
|
168
|
-
meta: string;
|
|
169
|
-
isValid: string;
|
|
170
|
-
input: string;
|
|
171
|
-
onChange: string;
|
|
172
|
-
selectDate: string;
|
|
173
|
-
dateLabel: string;
|
|
174
|
-
selectADate: string;
|
|
175
|
-
requiredDate: string;
|
|
176
|
-
requiredField: string;
|
|
177
|
-
dateAndTime: string;
|
|
178
|
-
dateWithLimits: string;
|
|
179
|
-
onlyFutureDates: string;
|
|
180
|
-
customFormat: string;
|
|
181
|
-
yearSelector: string;
|
|
182
|
-
timeSelector: string;
|
|
183
|
-
timeSelectorWithSeconds: string;
|
|
184
|
-
dateTimeSelector: string;
|
|
185
|
-
selectYear: string;
|
|
186
|
-
selectTime: string;
|
|
187
|
-
selectDateTime: string;
|
|
188
|
-
};
|
|
189
|
-
dateRangePicker: {
|
|
190
|
-
size: string;
|
|
191
|
-
disabled: string;
|
|
192
|
-
required: string;
|
|
193
|
-
noErrors: string;
|
|
194
|
-
placeholder: string;
|
|
195
|
-
label: string;
|
|
196
|
-
format: string;
|
|
197
|
-
minDate: string;
|
|
198
|
-
maxDate: string;
|
|
199
|
-
onChange: string;
|
|
200
|
-
selectDateRange: string;
|
|
201
|
-
dateRangeLabel: string;
|
|
202
|
-
disabledRange: string;
|
|
203
|
-
disabledComponent: string;
|
|
204
|
-
rangeWithMinMax: string;
|
|
205
|
-
restrictedRange: string;
|
|
206
|
-
disabledWithRestrictions: string;
|
|
207
|
-
completelyDisabled: string;
|
|
208
|
-
};
|
|
209
|
-
chip: {
|
|
210
|
-
text: string;
|
|
211
|
-
title: string;
|
|
212
|
-
onRemove: string;
|
|
213
|
-
disabled: string;
|
|
214
|
-
variant: string;
|
|
215
|
-
size: string;
|
|
216
|
-
};
|
|
217
|
-
warningModal: {
|
|
218
|
-
warning: string;
|
|
219
|
-
dontShowAgain: string;
|
|
220
|
-
};
|
|
221
|
-
};
|
|
222
|
-
export default _default;
|
package/dist/locales/index.d.ts
DELETED
package/dist/style.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.button-module_btn_XFZLT{display:flex;align-items:center;justify-content:center;gap:4px;cursor:pointer;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;font-size:14px;border-radius:4px}.button-module_btn_XFZLT:disabled,.button-module_btn_XFZLT.button-module_disabled_tB8LZ{opacity:.5;pointer-events:none;cursor:default}.button-module_btn_XFZLT.button-module_lg_Hkfw0{height:44px;padding:12px 16px}.button-module_btn_XFZLT.button-module_md_REpcP{height:40px;padding:10px 16px}.button-module_btn_XFZLT.button-module_sm_QYj0l{height:32px;padding:10px 16px;font-size:12px}.button-module_btn_XFZLT.button-module_sm_QYj0l.button-module_with-adornment_biWLE{padding:10px 12px}.button-module_btn_XFZLT .button-module_left-adornment_ifsGV,.button-module_btn_XFZLT .button-module_right-adornment_8B4BV{display:flex}.button-module_primary_ppbyq,.button-module_success_PUJLB,.button-module_secondary_esy5L,.button-module_error_eUPLx{color:#fff}.button-module_primary_ppbyq svg,.button-module_success_PUJLB svg,.button-module_secondary_esy5L svg,.button-module_error_eUPLx svg{color:#fff;width:16px}.button-module_primary_ppbyq.button-module_outline_qVYGR,.button-module_success_PUJLB.button-module_outline_qVYGR,.button-module_secondary_esy5L.button-module_outline_qVYGR,.button-module_error_eUPLx.button-module_outline_qVYGR{background-color:#fff}.button-module_primary_ppbyq.button-module_outline_qVYGR:hover,.button-module_success_PUJLB.button-module_outline_qVYGR:hover,.button-module_secondary_esy5L.button-module_outline_qVYGR:hover,.button-module_error_eUPLx.button-module_outline_qVYGR:hover{background-color:#f5f5f5}.button-module_link_imZgM,.button-module_tooltip-link_BqvZl{color:#06f;cursor:pointer;background:none;border:none}.button-module_link_imZgM.button-module_lg_Hkfw0,.button-module_tooltip-link_BqvZl.button-module_lg_Hkfw0{font-size:16px;padding:0;height:24px}.button-module_link_imZgM.button-module_md_REpcP,.button-module_tooltip-link_BqvZl.button-module_md_REpcP{font-size:14px;padding:0;height:20px}.button-module_link_imZgM.button-module_sm_QYj0l,.button-module_tooltip-link_BqvZl.button-module_sm_QYj0l{font-size:12px;padding:0;height:16px}.button-module_link_imZgM.button-module_sm_QYj0l.button-module_with-adornment_biWLE,.button-module_tooltip-link_BqvZl.button-module_sm_QYj0l.button-module_with-adornment_biWLE{padding:0}.button-module_link_imZgM:hover,.button-module_tooltip-link_BqvZl:hover{text-decoration:underline}.button-module_tooltip-link_BqvZl{color:#76adff}.button-module_primary_ppbyq{background-color:#06f;border:1px solid #0066FF}.button-module_primary_ppbyq:hover{background-color:#0058db}.button-module_primary_ppbyq:focus{border:2px solid #0045AD}.button-module_primary_ppbyq.button-module_outline_qVYGR{color:#06f;border:1px solid #0066FF}.button-module_primary_ppbyq.button-module_outline_qVYGR svg{color:#06f}.button-module_success_PUJLB{background-color:#1fb62a;border:1px solid #1FB62A}.button-module_success_PUJLB:hover{background-color:#21962a}.button-module_success_PUJLB:focus{border:2px solid #136A19}.button-module_success_PUJLB.button-module_outline_qVYGR{color:#1fb62a;border:1px solid #1FB62A}.button-module_success_PUJLB.button-module_outline_qVYGR svg{color:#1fb62a}.button-module_secondary_esy5L{background-color:#f90;border:1px solid #FF9900}.button-module_secondary_esy5L:hover{background-color:#dc8400}.button-module_secondary_esy5L:focus{border:2px solid #A86501}.button-module_secondary_esy5L.button-module_outline_qVYGR{color:#f90;border:1px solid #FF9900}.button-module_secondary_esy5L.button-module_outline_qVYGR svg{color:#f90}.button-module_error_eUPLx{background-color:#d90c0c;border:1px solid #D90C0C}.button-module_error_eUPLx:hover{background-color:#9a1414}.button-module_error_eUPLx:focus{border:2px solid #9A1414}.button-module_error_eUPLx.button-module_outline_qVYGR{color:#d90c0c;border:1px solid #D90C0C}.button-module_error_eUPLx.button-module_outline_qVYGR svg{color:#d90c0c}.chip-module_chip_U3kfP{border-radius:4px;display:flex;gap:8px;align-items:center;font-size:12px;cursor:default;transition:background-color .3s ease,border-color .3s ease,transform .2s ease}.chip-module_chip_U3kfP .chip-module_title_DARz9{font-weight:400}.chip-module_chip_U3kfP .chip-module_text_4xvju{font-weight:600}.chip-module_chip_U3kfP.chip-module_sm_lA7fZ{padding:3px 8px}.chip-module_chip_U3kfP.chip-module_lg_i8n4n{padding:7px 8px}.chip-module_chip_U3kfP.chip-module_grey_M9U8T{background-color:#ededed;border:1px solid #D7D7D7;color:#252525}.chip-module_chip_U3kfP.chip-module_grey_M9U8T.chip-module_active_uJfiq:not(.chip-module_disabled_21ZO5){background-color:#d7d7d7;border-color:#d7d7d7}.chip-module_chip_U3kfP.chip-module_success_BJKfz{background-color:#cef3d1;border:1px solid #85EA8D;color:#136a19}.chip-module_chip_U3kfP.chip-module_success_BJKfz.chip-module_active_uJfiq:not(.chip-module_disabled_21ZO5){background-color:#85ea8d;border-color:#43dc4e}.chip-module_chip_U3kfP.chip-module_error_an-gm{background-color:#fceceb;border:1px solid #FFC8C8;color:#9a1414}.chip-module_chip_U3kfP.chip-module_error_an-gm.chip-module_active_uJfiq:not(.chip-module_disabled_21ZO5){background-color:#ffc8c8;border-color:#ff8383}.chip-module_chip_U3kfP.chip-module_secondary_3aQ1S{background-color:#fff3d1;border:1px solid #FFE1B4;color:#a86501}.chip-module_chip_U3kfP.chip-module_secondary_3aQ1S.chip-module_active_uJfiq:not(.chip-module_disabled_21ZO5){background-color:#ffe1b4;border-color:#ffc56f}.chip-module_chip_U3kfP.chip-module_primary_maGV7{background-color:#e6f1ff;border:1px solid #A7CAFF;color:#0045ad}.chip-module_chip_U3kfP.chip-module_primary_maGV7.chip-module_active_uJfiq:not(.chip-module_disabled_21ZO5){background-color:#a7caff;border-color:#76adff}.chip-module_chip_U3kfP.chip-module_disabled_21ZO5{background-color:#ededed;border:1px solid #D7D7D7;color:#252525;cursor:default;opacity:.5!important}.chip-module_chip_U3kfP.chip-module_disabled_21ZO5 .chip-module_action_ByEO0{cursor:default}.chip-module_chip_U3kfP .chip-module_action_ByEO0{cursor:pointer}.selectField-module_producteca-select-field-container_wnPdM{display:flex;flex-direction:column;gap:8px}.selectField-module_producteca-select-field-container_wnPdM label{font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;color:#252525;font-size:12px;font-weight:400;text-align:left;line-height:18px;margin:0}.selectField-module_producteca-select-field-container_wnPdM input{width:267px;height:40px;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;color:#252525;font-size:14px;font-weight:400;padding:9.5px 16px}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_producteca-select-field--is-required_0f07A{font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;color:#d90c0c;font-size:12px;font-weight:400}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_producteca-select-field--with-modifier_GN3AL{align-items:center;gap:16px}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_producteca-select-field-body_-gy8S{display:flex}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_lg_adYzi .selectField-module_body_KiYeH .producteca-select-field__control,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_lg_adYzi .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control{width:312px}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_md_sCCe1 .selectField-module_body_KiYeH .producteca-select-field__control,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_md_sCCe1 .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control{width:272px}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2{display:flex}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .selectField-module_producteca-select-field__is-clearable_FzZz2,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .selectField-module_producteca-select-field__is-clearable_FzZz2{position:relative;top:0;right:65px;cursor:pointer;width:0;display:flex;align-items:center}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .selectField-module_producteca-select-field__search-icon_rGbiw,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .selectField-module_producteca-select-field__search-icon_rGbiw{position:relative;left:14px;top:9px;z-index:1;width:0}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .selectField-module_producteca-select-field__is-multiple_G71xD,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .selectField-module_producteca-select-field__is-multiple_G71xD{position:relative;white-space:nowrap;width:0;left:16px;height:40px;display:flex;align-items:center;z-index:1}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .selectField-module_producteca-select-field__is-multiple_G71xD span,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .selectField-module_producteca-select-field__is-multiple_G71xD span{font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;color:#252525;font-size:14px;font-weight:400}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field--is-disabled,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field--is-disabled{opacity:.5}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field--is-disabled .producteca-select-field__control--is-disabled,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field--is-disabled .producteca-select-field__control--is-disabled{background-color:#f5f5f5}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field--is-disabled .producteca-select-field__control--is-disabled .producteca-select-field__value-container>.producteca-select-field__placeholder,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field--is-disabled .producteca-select-field__control--is-disabled .producteca-select-field__value-container>.producteca-select-field__placeholder{color:#404040}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__indicators,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__indicators{width:40px;height:40px;display:flex;justify-content:flex-end}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__clear-indicator,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__clear-indicator{display:none}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__dropdown-indicator,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__dropdown-indicator{padding:17.5px;background:url(https://d17riqmt8yes2m.cloudfront.net/assets/icons/arrow_down.svg) 50%/51% 15px no-repeat!important}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__dropdown-indicator svg,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__dropdown-indicator svg{display:none}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__control,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control{width:267px;height:40px;font-size:14px;border:1px solid #D7D7D7;cursor:pointer}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__control.producteca-select-field__control--is-focused,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control.producteca-select-field__control--is-focused{border-color:#d7d7d7;box-shadow:none}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__control.producteca-select-field__control--menu-is-open,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control.producteca-select-field__control--menu-is-open{border-color:#d7d7d7;box-shadow:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__control.producteca-select-field__control--menu-is-open .producteca-select-field__dropdown-indicator,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control.producteca-select-field__control--menu-is-open .producteca-select-field__dropdown-indicator{transform:rotate(180deg);transition:all .2s ease-out}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__control .producteca-select-field__value-container,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control .producteca-select-field__value-container{height:40px;padding-left:16px;display:flex;align-items:flex-start;flex-direction:column;justify-content:center;padding-top:0}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__control .producteca-select-field__value-container .producteca-select-field__single-value,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control .producteca-select-field__value-container .producteca-select-field__single-value{font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;font-size:14px;color:#252525;font-weight:400;margin:0}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__control .producteca-select-field__value-container .producteca-select-field__placeholder,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control .producteca-select-field__value-container .producteca-select-field__placeholder{font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;font-size:14px;color:#acacac;font-weight:400;margin:0;height:40px;display:flex;align-items:center}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__control .producteca-select-field__value-container.producteca-select-field__value-container--is-multi .producteca-select-field__multi-value,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control .producteca-select-field__value-container.producteca-select-field__value-container--is-multi .producteca-select-field__multi-value{display:none}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__control .producteca-select-field__input-container,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control .producteca-select-field__input-container{height:40px;margin:0;padding:0;position:relative;top:-3px}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_body_KiYeH .producteca-select-field__control .producteca-select-field__input-container .producteca-select-field__input,.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__control .producteca-select-field__input-container .producteca-select-field__input{top:3px;position:relative}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .selectField-module_producteca-select-field__is-clearable_FzZz2{position:relative;top:0;right:30px;cursor:pointer;width:0;display:flex;align-items:center}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__indicators{width:40px!important}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__indicator-separator{display:none}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__dropdown-indicator{padding:17.5px;background:none!important}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_searcher-body_8Hpy2 .producteca-select-field__dropdown-indicator svg{display:none}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_producteca-select-field--is-clearable_GZGnL .producteca-select-field__indicators{width:75px}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_producteca-select-field--is-searchable_YTkm- .selectField-module_producteca-select-field__is-multiple_G71xD span{margin-left:32px}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_producteca-select-field--is-searchable_YTkm- .producteca-select-field__control.producteca-select-field__control--is-focused .producteca-select-field__placeholder{display:none}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_producteca-select-field--is-searchable_YTkm- .producteca-select-field__control.producteca-select-field__control--is-focused .producteca-select-field__single-value{position:absolute;left:16px}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_producteca-select-field--is-searchable_YTkm- .producteca-select-field__control>.producteca-select-field__value-container{margin-left:24px}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_producteca-select-field--is-searchable_YTkm- .producteca-select-field__control>.producteca-select-field__value-container>.producteca-select-field__placeholder{position:unset}.selectField-module_producteca-select-field-container_wnPdM .selectField-module_producteca-select-field--on-error_rNJN3 .producteca-select-field__control{border:1px solid #D90C0C}.selectField-module_producteca-select-field__input-multiple_K0bLb{display:grid;align-items:center;grid-template-columns:20px 1fr}.selectField-module_option-with-tooltip_etqky{position:relative;cursor:pointer}.selectField-module_option-with-tooltip_etqky:hover:after{visibility:visible;opacity:1}.selectField-module_option-with-tooltip_etqky:after{content:attr(data-tooltip);visibility:hidden;position:fixed;top:var(--tooltip-top);left:var(--tooltip-left);opacity:0;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;background:#666;z-index:1;padding:4px 8px;text-align:left;font-size:12px;line-height:16px;border-radius:4px;white-space:normal;color:#fff;transition:opacity .2s ease-in-out;font-weight:400;max-width:272px;pointer-events:none}.errorMessage-module_warning_bXIaf>input{border:1px solid #FF9900}.errorMessage-module_warning_bXIaf>input:hover{border-color:#f90}.errorMessage-module_warning_bXIaf>input:focus{border-color:#f90}.errorMessage-module_warning_bXIaf .MuiOutlinedInput-root fieldset{border:1px solid #FF9900}.errorMessage-module_warning_bXIaf .MuiOutlinedInput-root:hover fieldset,.errorMessage-module_warning_bXIaf .MuiOutlinedInput-root.errorMessage-module_Mui-focused_JfmdQ fieldset{border-color:#f90}.errorMessage-module_warning_bXIaf .errorMessage-module_message_5zSab{font-size:12px;color:#f90}.errorMessage-module_error_QgQKc>input{border:1px solid #D90C0C!important}.errorMessage-module_error_QgQKc>input:hover{border-color:#d90c0c!important}.errorMessage-module_error_QgQKc>input:focus{border-color:#d90c0c!important}.errorMessage-module_error_QgQKc .MuiOutlinedInput-root fieldset{border:1px solid #D90C0C}.errorMessage-module_error_QgQKc .MuiOutlinedInput-root:hover fieldset,.errorMessage-module_error_QgQKc .MuiOutlinedInput-root.errorMessage-module_Mui-focused_JfmdQ fieldset{border-color:#d90c0c}.errorMessage-module_error_QgQKc .errorMessage-module_message_5zSab{font-size:12px;color:#d90c0c}.textInput-module_form-field_6ylpa{display:flex;justify-content:center;flex-direction:column;gap:8px;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important}.textInput-module_form-field_6ylpa label{font-weight:400;color:#252525;font-size:12px;margin:0}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg{display:flex;gap:8px;align-items:center}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg .textInput-module_with-right-icon_K2CQ7{position:relative}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg .textInput-module_with-right-icon_K2CQ7 input{padding-right:40px}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg .textInput-module_with-left-icon_WkTxr{position:relative}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg .textInput-module_with-left-icon_WkTxr input{padding-left:44px}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg input{height:40px;border-radius:4px;padding:0 16px;display:flex;align-items:center;outline:none;font-size:14px;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;border:1px solid #D7D7D7}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg input::-moz-placeholder{color:#acacac}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg input::placeholder{color:#acacac}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg input:hover{border-color:#acacac}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg input:focus{border-color:#252525}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg input:focus:hover{border-color:#252525}.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg input:disabled,.textInput-module_form-field_6ylpa .textInput-module_input-container_YAHtg .textInput-module_disabled_zmiie{pointer-events:none;cursor:default;color:#acacac;border:1px solid #D7D7D7;background-color:#f5f5f5}.textInput-module_text-input-container_ubBna{font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;color:#252525;font-size:14px}.textInput-module_text-input-container_ubBna .textInput-module_text-input_9gGzW{border:1px solid #D7D7D7}.textInput-module_text-input-container_ubBna .textInput-module_right-icon_9Bh6D{cursor:pointer;position:absolute;top:0;right:0;width:40px;height:40px;display:flex;align-items:center;justify-content:center}.textInput-module_text-input-container_ubBna .textInput-module_right-icon_9Bh6D>div{width:40px;height:40px;display:flex;align-items:center;justify-content:center}.textInput-module_text-input-container_ubBna .textInput-module_right-icon_9Bh6D svg{color:#acacac}.textInput-module_text-input-container_ubBna .textInput-module_left-icon_40v5M{position:absolute;top:9px;left:13px;cursor:pointer}.textInput-module_text-input-container_ubBna .textInput-module_left-icon_40v5M svg{color:#acacac}.textInput-module_text-input-container_ubBna.textInput-module_lg_rvzUN>input{width:312px}.textInput-module_text-input-container_ubBna.textInput-module_md_WTZlG>input{width:272px}.textInput-module_text-input-container_ubBna.textInput-module_sm_3H7Tl>input{width:72px;text-align:center;padding:12px}.textInput-module_text-input-container_ubBna .textInput-module_title_Y61Pu{font-size:14px;font-weight:400;line-height:21px}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}.datePicker-module_date-picker_utM--{position:relative;width:100%;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;color:#252525;font-size:14px;min-width:192px}.datePicker-module_date-picker_utM--.datePicker-module_lg_lvvw6 .datePicker-module_date-input_kaWUt{max-width:312px}.datePicker-module_date-picker_utM--.datePicker-module_md_ENhFs .datePicker-module_date-input_kaWUt{max-width:272px}.datePicker-module_date-picker_utM--.datePicker-module_sm_RywFd .datePicker-module_date-input_kaWUt{max-width:192px}.datePicker-module_date-picker_utM-- .datePicker-module_date-input_kaWUt .MuiOutlinedInput-root{height:40px;border-radius:4px;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;font-size:14px;padding-right:0}.datePicker-module_date-picker_utM-- .datePicker-module_date-input_kaWUt .MuiOutlinedInput-root ::-moz-placeholder{color:#acacac;opacity:1}.datePicker-module_date-picker_utM-- .datePicker-module_date-input_kaWUt .MuiOutlinedInput-root ::placeholder{color:#acacac;opacity:1}.datePicker-module_date-picker_utM-- .datePicker-module_date-input_kaWUt .MuiOutlinedInput-root input{padding-right:0;border:none}.datePicker-module_date-picker_utM-- .datePicker-module_date-input_kaWUt .Mui-focused fieldset{border:1px solid #252525}.datePicker-module_date-picker_utM-- .datePicker-module_date-input_kaWUt .Mui-disabled{pointer-events:none;cursor:default;background-color:#f5f5f5}.datePicker-module_calendar-icon-container_qUmId{display:flex;align-items:center}.datePicker-module_calendar-icon-container_qUmId .datePicker-module_clear-icon_potHo{display:flex;align-items:center;padding:8px;cursor:pointer}.datePicker-module_calendar-icon-container_qUmId .datePicker-module_calendar-icon_gaSkr{display:flex;align-items:center;padding:8px 12px;cursor:pointer}.datePicker-module_calendar-icon-container_qUmId .datePicker-module_divider-line_fdFED{width:1px;height:29px;background-color:#d7d7d7}.datePicker-module_calendar-icon-container_qUmId svg{color:#acacac;cursor:pointer}.MuiTouchRipple-root{display:none!important}.dateRangePicker-module_date-range-picker_PFF9Q{position:relative;width:100%;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;color:#252525;font-size:14px;min-width:192px}.dateRangePicker-module_date-range-picker_PFF9Q.dateRangePicker-module_lg_Z5cAW .dateRangePicker-module_input-wrapper_hyxTt{max-width:312px}.dateRangePicker-module_date-range-picker_PFF9Q.dateRangePicker-module_md_U7O4u .dateRangePicker-module_input-wrapper_hyxTt{max-width:272px}.dateRangePicker-module_date-range-picker_PFF9Q.dateRangePicker-module_sm_eQU4f .dateRangePicker-module_input-wrapper_hyxTt{max-width:192px}.dateRangePicker-module_date-range-picker_PFF9Q.dateRangePicker-module_disabled_O2wo6{opacity:.5}.dateRangePicker-module_date-range-picker_PFF9Q.dateRangePicker-module_disabled_O2wo6 .dateRangePicker-module_input-wrapper_hyxTt,.dateRangePicker-module_date-range-picker_PFF9Q.dateRangePicker-module_disabled_O2wo6 .dateRangePicker-module_input-wrapper_hyxTt input{background-color:#f5f5f5}.dateRangePicker-module_date-range-picker_PFF9Q.dateRangePicker-module_disabled_O2wo6 .dateRangePicker-module_input-wrapper_hyxTt:hover{border-color:#d7d7d7}.dateRangePicker-module_date-range-picker_PFF9Q.dateRangePicker-module_focused_ZciL9:not(.dateRangePicker-module_disabled_O2wo6) .dateRangePicker-module_input-wrapper_hyxTt{border-color:#252525}.dateRangePicker-module_date-range-picker_PFF9Q.dateRangePicker-module_focused_ZciL9:not(.dateRangePicker-module_disabled_O2wo6) .dateRangePicker-module_input-wrapper_hyxTt:hover{border-color:#252525}.dateRangePicker-module_date-range-picker_PFF9Q .dateRangePicker-module_input-wrapper_hyxTt{display:flex;align-items:center;justify-content:space-between;height:100%;border:1px solid #D7D7D7;border-radius:4px;padding:0;background-color:#fff}.dateRangePicker-module_date-range-picker_PFF9Q .dateRangePicker-module_input-wrapper_hyxTt>input[type=dateRange]{border:none;width:100%;padding-right:0;text-overflow:ellipsis}.dateRangePicker-module_date-range-picker_PFF9Q .dateRangePicker-module_input-wrapper_hyxTt>input[type=dateRange]::-moz-placeholder{color:#acacac}.dateRangePicker-module_date-range-picker_PFF9Q .dateRangePicker-module_input-wrapper_hyxTt>input[type=dateRange]::placeholder{color:#acacac}.dateRangePicker-module_date-range-picker_PFF9Q .dateRangePicker-module_input-wrapper_hyxTt:hover{border-color:#acacac}.dateRangePicker-module_popover-content_RKQTm{background:#fff;border-radius:4px;border:1px solid #D7D7D7;z-index:1;max-width:none;width:-moz-max-content;width:max-content;animation:dateRangePicker-module_popoverEnter_LA-QD .2s ease-out;box-shadow:0 5px 5px -3px #cdcdcd33,0 8px 14px 1px #a5a5a524,0 3px 14px 2px #dbdbdb0f}.dateRangePicker-module_popover-content_RKQTm[data-state=closed]{animation:dateRangePicker-module_popoverExit_7P00p .2s ease-in}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_nav_wpLSQ{position:absolute;top:12px;left:16px;right:16px;display:flex;justify-content:space-between;align-items:center;z-index:1;height:30px}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_nav_wpLSQ button{width:20px;height:20px;display:flex;justify-content:center;align-items:center}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_nav_wpLSQ button:focus-visible{outline:none}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_nav_wpLSQ button svg{fill:#797979;width:16px;height:16px}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_months_KJVIG{display:flex}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_months_KJVIG :last-child.dateRangePicker-module_month_5xEDo{border-left:1px solid #D7D7D7}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo table{margin:12px 16px}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_month-caption_SaiMe{display:flex;justify-content:center;font-size:14px;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;color:#797979;font-weight:600;height:30px;margin-top:12px;text-transform:capitalize}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_weekdays_Ifsr6{display:flex}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_weekdays_Ifsr6 .dateRangePicker-module_weekday_2PP3h{width:100%;min-width:32px;min-height:32px;font-size:12px;font-weight:600;color:#797979;border:none;display:flex;align-items:center;justify-content:center;text-transform:uppercase}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S{display:flex;margin-bottom:2px}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S .dateRangePicker-module_day_wqJov{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border:none;background:none;border-radius:4px;cursor:pointer;transition:all .2s ease}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S .dateRangePicker-module_day_wqJov button{color:#252525;font-size:14px;font-weight:400;border-radius:4px}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S .dateRangePicker-module_day_wqJov:hover:not(.dateRangePicker-module_disabled_O2wo6):not(.dateRangePicker-module_selected_RUsR-){background-color:#ededed}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S .dateRangePicker-module_day_wqJov.dateRangePicker-module_selected_RUsR-{background-color:#06f}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S .dateRangePicker-module_day_wqJov.dateRangePicker-module_selected_RUsR- button{color:#fff;background-color:transparent}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S .dateRangePicker-module_day_wqJov.dateRangePicker-module_disabled_O2wo6{opacity:.5}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S .dateRangePicker-module_day_wqJov:focus-visible{outline:1px solid #252525}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S .dateRangePicker-module_day_wqJov.dateRangePicker-module_range-middle_xm-3W{background-color:#e6f1ff;border-radius:0}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S .dateRangePicker-module_day_wqJov.dateRangePicker-module_range-middle_xm-3W button{color:#252525}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S .dateRangePicker-module_day_wqJov.dateRangePicker-module_range-start_52uOV{border-top-right-radius:0;border-bottom-right-radius:0}.dateRangePicker-module_popover-content_RKQTm .dateRangePicker-module_month_5xEDo .dateRangePicker-module_week_t5X3S .dateRangePicker-module_day_wqJov.dateRangePicker-module_range-end_VR3Y-{border-top-left-radius:0;border-bottom-left-radius:0}@keyframes dateRangePicker-module_popoverEnter_LA-QD{0%{opacity:0;transform:scale(.95) translateY(-8px)}to{opacity:1;transform:scale(1) translateY(0)}}@keyframes dateRangePicker-module_popoverExit_7P00p{0%{opacity:1;transform:scale(1) translateY(0)}to{opacity:0;transform:scale(.95) translateY(-8px)}}.rdp-root{--rdp-accent-color: blue;--rdp-accent-background-color: #f0f0ff;--rdp-day-height: 44px;--rdp-day-width: 44px;--rdp-day_button-border-radius: 100%;--rdp-day_button-border: 2px solid transparent;--rdp-day_button-height: 42px;--rdp-day_button-width: 42px;--rdp-selected-border: 2px solid var(--rdp-accent-color);--rdp-disabled-opacity: .5;--rdp-outside-opacity: .75;--rdp-today-color: var(--rdp-accent-color);--rdp-dropdown-gap: .5rem;--rdp-months-gap: 2rem;--rdp-nav_button-disabled-opacity: .5;--rdp-nav_button-height: 2.25rem;--rdp-nav_button-width: 2.25rem;--rdp-nav-height: 2.75rem;--rdp-range_middle-background-color: var(--rdp-accent-background-color);--rdp-range_middle-color: inherit;--rdp-range_start-color: white;--rdp-range_start-background: linear-gradient(var(--rdp-gradient-direction), transparent 50%, var(--rdp-range_middle-background-color) 50%);--rdp-range_start-date-background-color: var(--rdp-accent-color);--rdp-range_end-background: linear-gradient(var(--rdp-gradient-direction), var(--rdp-range_middle-background-color) 50%, transparent 50%);--rdp-range_end-color: white;--rdp-range_end-date-background-color: var(--rdp-accent-color);--rdp-week_number-border-radius: 100%;--rdp-week_number-border: 2px solid transparent;--rdp-week_number-height: var(--rdp-day-height);--rdp-week_number-opacity: .75;--rdp-week_number-width: var(--rdp-day-width);--rdp-weeknumber-text-align: center;--rdp-weekday-opacity: .75;--rdp-weekday-padding: .5rem 0rem;--rdp-weekday-text-align: center;--rdp-gradient-direction: 90deg;--rdp-animation_duration: .3s;--rdp-animation_timing: cubic-bezier(.4, 0, .2, 1)}.rdp-root[dir=rtl]{--rdp-gradient-direction: -90deg}.rdp-root[data-broadcast-calendar=true]{--rdp-outside-opacity: unset}.rdp-root{position:relative;box-sizing:border-box}.rdp-root *{box-sizing:border-box}.rdp-day{width:var(--rdp-day-width);height:var(--rdp-day-height);text-align:center}.rdp-day_button{background:none;padding:0;margin:0;cursor:pointer;font:inherit;color:inherit;justify-content:center;align-items:center;display:flex;width:var(--rdp-day_button-width);height:var(--rdp-day_button-height);border:var(--rdp-day_button-border);border-radius:var(--rdp-day_button-border-radius)}.rdp-day_button:disabled{cursor:revert}.rdp-caption_label{z-index:1;position:relative;display:inline-flex;align-items:center;white-space:nowrap;border:0}.rdp-dropdown:focus-visible~.rdp-caption_label{outline:5px auto Highlight;outline:5px auto -webkit-focus-ring-color}.rdp-button_next,.rdp-button_previous{border:none;background:none;padding:0;margin:0;cursor:pointer;font:inherit;color:inherit;-moz-appearance:none;-webkit-appearance:none;display:inline-flex;align-items:center;justify-content:center;position:relative;appearance:none;width:var(--rdp-nav_button-width);height:var(--rdp-nav_button-height)}.rdp-button_next:disabled,.rdp-button_next[aria-disabled=true],.rdp-button_previous:disabled,.rdp-button_previous[aria-disabled=true]{cursor:revert;opacity:var(--rdp-nav_button-disabled-opacity)}.rdp-chevron{display:inline-block;fill:var(--rdp-accent-color)}.rdp-root[dir=rtl] .rdp-nav .rdp-chevron{transform:rotate(180deg);transform-origin:50%}.rdp-dropdowns{position:relative;display:inline-flex;align-items:center;gap:var(--rdp-dropdown-gap)}.rdp-dropdown{z-index:2;opacity:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;position:absolute;inset-block-start:0;inset-block-end:0;inset-inline-start:0;width:100%;margin:0;padding:0;cursor:inherit;border:none;line-height:inherit}.rdp-dropdown_root{position:relative;display:inline-flex;align-items:center}.rdp-dropdown_root[data-disabled=true] .rdp-chevron{opacity:var(--rdp-disabled-opacity)}.rdp-month_caption{display:flex;align-content:center;height:var(--rdp-nav-height);font-weight:700;font-size:large}.rdp-root[data-nav-layout=around] .rdp-month,.rdp-root[data-nav-layout=after] .rdp-month{position:relative}.rdp-root[data-nav-layout=around] .rdp-month_caption{justify-content:center;margin-inline-start:var(--rdp-nav_button-width);margin-inline-end:var(--rdp-nav_button-width);position:relative}.rdp-root[data-nav-layout=around] .rdp-button_previous{position:absolute;inset-inline-start:0;top:0;height:var(--rdp-nav-height);display:inline-flex}.rdp-root[data-nav-layout=around] .rdp-button_next{position:absolute;inset-inline-end:0;top:0;height:var(--rdp-nav-height);display:inline-flex;justify-content:center}.rdp-months{position:relative;display:flex;flex-wrap:wrap;gap:var(--rdp-months-gap);max-width:-moz-fit-content;max-width:fit-content}.rdp-month_grid{border-collapse:collapse}.rdp-nav{position:absolute;inset-block-start:0;inset-inline-end:0;display:flex;align-items:center;height:var(--rdp-nav-height)}.rdp-weekday{opacity:var(--rdp-weekday-opacity);padding:var(--rdp-weekday-padding);font-weight:500;font-size:smaller;text-align:var(--rdp-weekday-text-align);text-transform:var(--rdp-weekday-text-transform)}.rdp-week_number{opacity:var(--rdp-week_number-opacity);font-weight:400;font-size:small;height:var(--rdp-week_number-height);width:var(--rdp-week_number-width);border:var(--rdp-week_number-border);border-radius:var(--rdp-week_number-border-radius);text-align:var(--rdp-weeknumber-text-align)}.rdp-today:not(.rdp-outside){color:var(--rdp-today-color)}.rdp-selected{font-weight:700;font-size:large}.rdp-selected .rdp-day_button{border:var(--rdp-selected-border)}.rdp-outside{opacity:var(--rdp-outside-opacity)}.rdp-disabled{opacity:var(--rdp-disabled-opacity)}.rdp-hidden{visibility:hidden;color:var(--rdp-range_start-color)}.rdp-range_start{background:var(--rdp-range_start-background)}.rdp-range_start .rdp-day_button{background-color:var(--rdp-range_start-date-background-color);color:var(--rdp-range_start-color)}.rdp-range_middle{background-color:var(--rdp-range_middle-background-color)}.rdp-range_middle .rdp-day_button{border-color:transparent;border:unset;border-radius:unset;color:var(--rdp-range_middle-color)}.rdp-range_end{background:var(--rdp-range_end-background);color:var(--rdp-range_end-color)}.rdp-range_end .rdp-day_button{color:var(--rdp-range_start-color);background-color:var(--rdp-range_end-date-background-color)}.rdp-range_start.rdp-range_end{background:revert}.rdp-focusable{cursor:pointer}@keyframes rdp-slide_in_left{0%{transform:translate(-100%)}to{transform:translate(0)}}@keyframes rdp-slide_in_right{0%{transform:translate(100%)}to{transform:translate(0)}}@keyframes rdp-slide_out_left{0%{transform:translate(0)}to{transform:translate(-100%)}}@keyframes rdp-slide_out_right{0%{transform:translate(0)}to{transform:translate(100%)}}.rdp-weeks_before_enter{animation:rdp-slide_in_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}.rdp-weeks_before_exit{animation:rdp-slide_out_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}.rdp-weeks_after_enter{animation:rdp-slide_in_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}.rdp-weeks_after_exit{animation:rdp-slide_out_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}.rdp-root[dir=rtl] .rdp-weeks_after_enter{animation:rdp-slide_in_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}.rdp-root[dir=rtl] .rdp-weeks_before_exit{animation:rdp-slide_out_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}.rdp-root[dir=rtl] .rdp-weeks_before_enter{animation:rdp-slide_in_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}.rdp-root[dir=rtl] .rdp-weeks_after_exit{animation:rdp-slide_out_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}@keyframes rdp-fade_in{0%{opacity:0}to{opacity:1}}@keyframes rdp-fade_out{0%{opacity:1}to{opacity:0}}.rdp-caption_after_enter{animation:rdp-fade_in var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}.rdp-caption_after_exit{animation:rdp-fade_out var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}.rdp-caption_before_enter{animation:rdp-fade_in var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}.rdp-caption_before_exit{animation:rdp-fade_out var(--rdp-animation_duration) var(--rdp-animation_timing) forwards}.checkboxInput-module_checkbox-input-container_prYRe{font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;color:#252525;display:flex;flex-direction:column;gap:16px}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_title_cvp-g{font-size:14px;font-weight:400;line-height:21px}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS{display:flex;flex-direction:column;gap:16px}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS label{display:flex;align-items:center;gap:8px;margin:0}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS input{margin:0;cursor:pointer}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS span{cursor:pointer}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS input:disabled,.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS .checkboxInput-module_disabled_3EFy5{pointer-events:none;cursor:default;color:#d7d7d7;border:#D7D7D7}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS.checkboxInput-module_lg_VoVop input{min-width:18px;min-height:18px}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS.checkboxInput-module_lg_VoVop span{font-size:14px}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS.checkboxInput-module_md_Nh-Gg input{min-width:16px;min-height:16px}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS.checkboxInput-module_md_Nh-Gg span{font-size:14px}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS.checkboxInput-module_sm_965vX input{min-width:14px;min-height:14px}.checkboxInput-module_checkbox-input-container_prYRe .checkboxInput-module_checkbox-input-items_AMkaS.checkboxInput-module_sm_965vX span{font-size:12px}.spinner-module_loader_UIupC{border-color:#06f;transform-origin:center center}.switchInput-module_switch-input-container_t9Kpp{font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;color:#252525;display:flex;flex-direction:column;gap:16px}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_title_lBK2p{font-size:14px;font-weight:400;line-height:21px}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy{display:flex;flex-direction:column;gap:16px}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy label{display:flex;align-items:center;gap:4px;margin:0;cursor:pointer}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy .switchInput-module_switch-wrapper_cZvDV{display:flex;align-items:center}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-input_e9PWi{position:absolute;opacity:0;width:0;height:0}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-input_e9PWi:checked+.switchInput-module_switch-slider_ICfGn{background-color:#06f}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-input_e9PWi:checked+.switchInput-module_switch-slider_ICfGn:hover{background-color:#0058db}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-input_e9PWi:disabled+.switchInput-module_switch-slider_ICfGn{background-color:#ededed;cursor:default}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-slider_ICfGn{position:relative;display:inline-block;background-color:#acacac;border-radius:34px;transition:.3s}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-slider_ICfGn:hover{background-color:#797979}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-slider_ICfGn:before{position:absolute;content:"";left:4px;bottom:4px;background-color:#fff;border-radius:50%;transition:.3s}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy .switchInput-module_switch-label_Nj-Hh{cursor:pointer}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy .switchInput-module_disabled_yz9dR{pointer-events:none;cursor:default;color:#d7d7d7}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_lg_WMIDO .switchInput-module_switch-input_e9PWi:checked+.switchInput-module_switch-slider_ICfGn:before{transform:translate(21px)}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_lg_WMIDO .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-slider_ICfGn{width:52px;height:32px}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_lg_WMIDO .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-slider_ICfGn:before{height:24px;width:24px}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_lg_WMIDO .switchInput-module_switch-label_Nj-Hh{font-size:16px}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_md_683sQ .switchInput-module_switch-input_e9PWi:checked+.switchInput-module_switch-slider_ICfGn:before{transform:translate(16px)}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_md_683sQ .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-slider_ICfGn{width:40px;height:22px}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_md_683sQ .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-slider_ICfGn:before{height:16px;width:16px;bottom:3px}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_md_683sQ .switchInput-module_switch-label_Nj-Hh{font-size:14px}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_sm_sh92j .switchInput-module_switch-input_e9PWi:checked+.switchInput-module_switch-slider_ICfGn:before{transform:translate(13px)}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_sm_sh92j .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-slider_ICfGn{width:29px;height:16px}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_sm_sh92j .switchInput-module_switch-wrapper_cZvDV .switchInput-module_switch-slider_ICfGn:before{height:12px;width:12px;bottom:2px;left:2px}.switchInput-module_switch-input-container_t9Kpp .switchInput-module_switch-input-items_P3RMy.switchInput-module_sm_sh92j .switchInput-module_switch-label_Nj-Hh{font-size:12px}.emptyState-module_empty-state-container_azCks{display:flex;align-items:center;justify-content:center;flex-direction:column;min-height:45vh;gap:16px}.emptyState-module_empty-state-container_azCks .emptyState-module_link-container_kXroF{display:flex;flex-direction:column;gap:8px}.emptyState-module_empty-state-container_azCks .emptyState-module_link-container_kXroF span{color:#252525;font-size:14px;font-weight:400;line-height:21px}.emptyState-module_empty-state-container_azCks svg{cursor:default;position:relative;left:12px}.emptyState-module_empty-state-container_azCks a{font-size:12px;font-weight:400;line-height:18px;text-align:center;color:#06f;cursor:pointer}.emptyState-module_empty-state-container_azCks a:hover{text-decoration:underline}.actionBar-module_action-bar_Y-sjl{display:flex;justify-content:flex-end;align-items:center;gap:32px;width:100%;background-color:#fafafa;padding:8px 40px;box-shadow:none;border:1px solid #D7D7D7;border-radius:0 0 4px 4px}.actionBar-module_action-bar_Y-sjl>a{font-size:14px;color:#06f;font-weight:400;display:flex;align-items:center;cursor:pointer}.actionBar-module_action-bar_Y-sjl>a:hover{text-decoration:underline}.actionBar-module_action-bar_Y-sjl.actionBar-module_fullPage_A4wiw{border-width:1px 0 0 0;border-radius:0}.actionBar-module_action-bar_Y-sjl.actionBar-module_modal_jZfAJ{border-width:1px 0 0 0}.actionBar-module_action-bar_Y-sjl.actionBar-module_page_Oq8Jb{border:1px solid #D7D7D7}body :global .producteca-select-field__menu-portal{z-index:9999}body :global .producteca-select-field__menu-portal .producteca-select-field__menu-list{max-height:192px;display:flex;flex-direction:column}body :global .producteca-select-field__menu-portal .producteca-select-field__menu-list.producteca-select-field__menu-list--is-multi .producteca-select-field__option{display:flex;align-items:center}body :global .producteca-select-field__menu-portal .producteca-select-field__menu-list.producteca-select-field__menu-list--is-multi .producteca-select-field__option label{margin-left:8px}body :global .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__option{cursor:pointer;height:40px;min-height:40px;margin:0;padding:0 16px;overflow:visible;white-space:nowrap;font-size:14px;font-weight:400;color:#252525;line-height:24px}body :global .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__option label{font-size:14px;font-weight:400;color:#252525;cursor:pointer;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-bottom:0;display:block;padding:9.5px 0;line-height:21px}body :global .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__menu-notice{font-size:14px;color:#252525;padding:0;min-height:40px;display:flex;align-items:center;justify-content:center}body :global .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__option--is-selected{background-color:#fff}body :global .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__option--is-focused{background-color:#ededed}body :global .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__option--is-disabled{opacity:.5;cursor:default}body :global .producteca-select-field__menu-portal .producteca-select-field__menu{margin:0 0 0 1px;max-height:230px;overflow-y:auto;width:calc(100% - 2px);border-top-right-radius:0;border-top-left-radius:0;z-index:9999}body :global .producteca-select-field__menu-portal .producteca-select-field__menu input[type=checkbox]{height:20px;min-width:20px;width:20px;margin:0}.copy-btn{position:relative;transition:all 1s}.copy-btn:before{content:"";position:absolute;width:15px;height:15px;top:0;left:0;border-left:2px solid #1FB62A;border-top:2px solid #1FB62A;transition:all 1s;opacity:0}.copy-btn:after{content:"";position:absolute;width:15px;height:15px;bottom:0;right:0;border-right:2px solid #1FB62A;border-bottom:2px solid #1FB62A;transition:all 1s;opacity:0}.copy-btn .copy-btn-icons{position:relative;width:20px;height:20px}.copy-btn .copy-icon,.copy-btn .check-icon{position:absolute;top:0;left:0;width:100%;height:100%;transition:all .5s;opacity:1;transform:scale(1)}.copy-btn .copy-icon.hidden,.copy-btn .check-icon.hidden{opacity:0;transform:scale(.8)}.copy-btn .copy-icon svg,.copy-btn .check-icon svg{width:100%;height:100%;transition:all 1s ease}.copy-btn.animating:before,.copy-btn.animating:after{opacity:1;width:100%;height:100%}.copy-btn.copied{color:#1fb62a;border:1px solid #1FB62A}.copy-btn.copied svg{fill:#1fb62a}.copy-btn.copied:hover{background-color:transparent}.copy-btn.copied:not(.animating){border-color:#1fb62a}.copy-btn.copied:not(.animating):before,.copy-btn.copied:not(.animating):after{opacity:0}.headerSection-module_header-section-container_M-ZSv{display:flex;align-items:flex-start;flex-direction:column;gap:8px;background-color:#fafafa;padding:38px 32px;border-bottom:1px solid #D7D7D7}.headerSection-module_header-section-container_M-ZSv.headerSection-module_dense_f1FWn{padding:24px 32px}.headerSection-module_header-section-container_M-ZSv .headerSection-module_header-section_UIh2F{display:flex;align-items:center;gap:24px;width:100%;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important}.headerSection-module_content_5y2PB{display:flex;align-items:flex-start;justify-content:space-between;flex-direction:column;height:100%;width:100%}.headerSection-module_content_5y2PB .headerSection-module_title_cabYm{font-size:20px;font-weight:400;height:30px;color:#252525;margin:0}.headerSection-module_content_5y2PB .headerSection-module_action_RZnyR{margin-top:4px}.linkWithIcon-module_action_3K4he{display:flex;align-items:center;gap:4px;cursor:pointer}.iconWithIdentifier-module_icon-with-identifier_3-SZE{display:flex;align-items:center;gap:8px}.iconWithIdentifier-module_icon-with-identifier_3-SZE .iconWithIdentifier-module_icon_y8sd3{display:inline-flex;align-items:center}.iconWithIdentifier-module_icon-with-identifier_3-SZE .iconWithIdentifier-module_divider_fCBSV{width:1px;height:100%;min-height:19px;background-color:#797979;border-radius:4px}.iconWithIdentifier-module_icon-with-identifier_3-SZE .iconWithIdentifier-module_identifier_kWrOU{font-weight:400;font-size:14px;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;color:#797979}.progressbar-module_progressbar_8ygYR{width:100%;border-radius:100px}.progressbar-module_progressbar_8ygYR.progressbar-module_lg_5JGr-{height:8px}.progressbar-module_progressbar_8ygYR.progressbar-module_sm_LPtUo{height:5px}.MuiLinearProgress-root{background-color:#ededed!important}.MuiLinearProgress-bar{background-color:#06f!important}.alert-module_alert_j7ZRS{display:flex;align-items:center;justify-content:flex-start;padding:0 16px;border-radius:4px;max-width:1140px;width:-moz-fit-content;width:fit-content;gap:8px;min-height:50px;position:relative;z-index:1}.alert-module_alert_j7ZRS.alert-module_full-width_eKIHw{width:100%;max-width:100%;border-left:none;border-right:none;border-top:none;border-radius:0;padding:16px 24px}.alert-module_alert_j7ZRS .alert-module_icon_vbZHd{display:flex;align-items:center}.alert-module_alert_j7ZRS .alert-module_message_klR2U{font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important;font-size:12px;color:#252525;font-weight:400}.alert-module_alert_j7ZRS .alert-module_link_IrBj3{color:#06f;text-decoration:none;font-weight:400}.alert-module_alert_j7ZRS .alert-module_link_IrBj3:hover{text-decoration:underline}.alert-module_success_AVBKS{background-color:#cef3d1;border:1px solid #85EA8D}.alert-module_error_cxg96{background-color:#fceceb;border:1px solid #FFC8C8}.alert-module_warning_zkMaJ{background-color:#fff3d1;border:1px solid #FFE1B4}.alert-module_info_PBo1l{background-color:#e6f1ff;border:1px solid #A7CAFF}.image-module_image-container_ZhlhW{border-radius:4px;border:1px solid #D7D7D7;display:flex;align-items:center;justify-content:center;background-color:#f5f5f5;flex-basis:fit-content}.image-module_image-container_ZhlhW .image-module_image_y02P7,.image-module_image-container_ZhlhW .image-module_error_QtQOy{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:3px}.image-module_image-container_ZhlhW .image-module_error_QtQOy{fill:#d7d7d7;padding:20%}.breadcrumb-module_breadcrumb_r-ILp{display:flex;align-items:center;gap:4px;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important}.breadcrumb-module_breadcrumb_r-ILp .breadcrumb-module_breadcrumb-item_suTUF{font-size:12px;font-weight:400;line-height:21px;color:#252525}body{font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important}body .producteca-select-field__menu-portal{z-index:9999}body .producteca-select-field__menu-portal .producteca-select-field__menu-list{max-height:192px;display:flex;flex-direction:column}body .producteca-select-field__menu-portal .producteca-select-field__menu-list.producteca-select-field__menu-list--is-multi .producteca-select-field__option{display:flex;align-items:center}body .producteca-select-field__menu-portal .producteca-select-field__menu-list.producteca-select-field__menu-list--is-multi .producteca-select-field__option label{margin-left:8px}body .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__option{cursor:pointer;height:40px;min-height:40px;margin:0;padding:0 16px;overflow:visible;white-space:nowrap;font-size:14px;font-weight:400;color:#252525;line-height:24px}body .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__option label{font-size:14px;font-weight:400;color:#252525;cursor:pointer;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-bottom:0;display:block;padding:9.5px 0;line-height:21px}body .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__menu-notice{font-size:14px;color:#252525;padding:0;min-height:40px;display:flex;align-items:center;justify-content:center}body .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__option--is-selected{background-color:#fff}body .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__option--is-focused{background-color:#ededed}body .producteca-select-field__menu-portal .producteca-select-field__menu-list .producteca-select-field__option--is-disabled{opacity:.5;cursor:default}body .producteca-select-field__menu-portal .producteca-select-field__menu{margin:0 0 0 1px;max-height:230px;overflow-y:auto;width:calc(100% - 2px);border-top-right-radius:0;border-top-left-radius:0;z-index:9999}body .producteca-select-field__menu-portal .producteca-select-field__menu input[type=checkbox]{height:20px;min-width:20px;width:20px;margin:0}.warningModal-module_overlay_X5HPw{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;align-items:center;justify-content:center;z-index:1}.warningModal-module_overlay_X5HPw .warningModal-module_modal_Co-2N{position:relative;width:100%;max-width:536px;background:#fff;border:1px solid #D7D7D7;border-radius:4px;font-family:Poppins,Open Sans,Helvetica,Arial,sans-serif!important}.warningModal-module_overlay_X5HPw .warningModal-module_modal_Co-2N .warningModal-module_body_MgD8L{padding:24px 16px;display:flex;flex-direction:column;justify-content:center;gap:24px}.warningModal-module_overlay_X5HPw .warningModal-module_modal_Co-2N .warningModal-module_body_MgD8L .warningModal-module_help-container_hsnyD{display:flex;justify-content:flex-end}.warningModal-module_overlay_X5HPw .warningModal-module_modal_Co-2N .warningModal-module_body_MgD8L .warningModal-module_header-icon_qOIRS{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:8px}.warningModal-module_overlay_X5HPw .warningModal-module_modal_Co-2N .warningModal-module_body_MgD8L .warningModal-module_header-icon_qOIRS .warningModal-module_title_kZiTR{font-size:20px;font-weight:600;color:#252525;line-height:26px;text-align:center}.warningModal-module_overlay_X5HPw .warningModal-module_modal_Co-2N .warningModal-module_body_MgD8L .warningModal-module_content_3IB6x{display:flex;flex-direction:column;gap:16px;color:#252525;font-size:14px;font-weight:400;padding:0 8px}
|
package/dist/styles/colors.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
export type ColorMap = {
|
|
2
|
-
[category: string]: {
|
|
3
|
-
'900'?: string;
|
|
4
|
-
'800'?: string;
|
|
5
|
-
'733'?: string;
|
|
6
|
-
'700'?: string;
|
|
7
|
-
'500'?: string;
|
|
8
|
-
'400'?: string;
|
|
9
|
-
'300'?: string;
|
|
10
|
-
'200'?: string;
|
|
11
|
-
'100'?: string;
|
|
12
|
-
'50'?: string;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
export type ColorShade = '900' | '800' | '733' | '700' | '500' | '400' | '300' | '200' | '100' | '50';
|
|
16
|
-
export declare const Colors: ColorMap;
|
|
17
|
-
export type ColorCategory = keyof typeof Colors;
|
|
18
|
-
export declare const getColor: (category: ColorCategory, shade: ColorShade) => string;
|
|
19
|
-
export declare const allColors: boolean[];
|
|
20
|
-
export declare const ColorOptions: any[];
|
|
21
|
-
export declare const ColorValues: any[];
|
|
22
|
-
export declare const Shades: string[];
|
|
23
|
-
export declare const Categories: string[];
|
|
24
|
-
export declare const isValidColor: (color: string) => boolean;
|
|
25
|
-
export default Colors;
|
package/dist/styles/theme.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
export interface Meta {
|
|
2
|
-
touched?: boolean;
|
|
3
|
-
error?: {
|
|
4
|
-
locale: string;
|
|
5
|
-
params?: Record<string, any>;
|
|
6
|
-
};
|
|
7
|
-
warning?: {
|
|
8
|
-
locale: string;
|
|
9
|
-
params?: Record<string, any>;
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
export type InputValue = string | number | Date | null;
|
|
13
|
-
export interface ValidationProps {
|
|
14
|
-
meta?: Meta;
|
|
15
|
-
required?: boolean;
|
|
16
|
-
isValid?: (value: InputValue) => boolean;
|
|
17
|
-
value: InputValue;
|
|
18
|
-
}
|
|
19
|
-
export declare const hasError: (props: ValidationProps) => boolean;
|
|
20
|
-
export declare const hasWarning: (props: ValidationProps) => boolean;
|
|
21
|
-
export declare const formValidation: (props: ValidationProps) => "warning" | "error" | null;
|