@7shifts/sous-chef 3.34.0-beta.2 → 3.34.0-beta1
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/README.md +0 -1
- package/dist/actions/Button/Button.d.ts +3 -3
- package/dist/core/ComponentIdentifier/ComponentIdentifier.d.ts +11 -0
- package/dist/core/ComponentIdentifier/ComponentIdentifierContext.d.ts +6 -0
- package/dist/core/ComponentIdentifier/constants.d.ts +3 -0
- package/dist/core/ComponentIdentifier/useIsInsideComponent.d.ts +2 -0
- package/dist/empty_states/EmptyState/EmptyState.d.ts +3 -3
- package/dist/empty_states/EmptyStateContainer/EmptyStateContainerStack/EmptyStateContainerStack.d.ts +4 -1
- package/dist/empty_states/EmptyStateContainer/types.d.ts +7 -0
- package/dist/empty_states/Paywall/Paywall.d.ts +3 -2
- package/dist/forms/CheckboxField/CheckboxField.d.ts +2 -1
- package/dist/forms/CurrencyField/CurrencyField.d.ts +21 -1
- package/dist/forms/CurrencyField/constants.d.ts +2 -0
- package/dist/forms/DateRangeField/ToDate/ToDate.d.ts +2 -2
- package/dist/forms/Field/Field.d.ts +2 -1
- package/dist/forms/TextField/TextField.d.ts +26 -2
- package/dist/forms/TextField/useTextField.d.ts +5 -2
- package/dist/forms/TimeField/TimeField.d.ts +21 -1
- package/dist/i18n/locales/en.json +7 -0
- package/dist/i18n/locales/es.json +7 -0
- package/dist/i18n/locales/fr.json +7 -0
- package/dist/i18n/types.d.ts +2 -0
- package/dist/i18n/useTranslation.d.ts +2 -2
- package/dist/icons/components/IconHatChef.d.ts +9 -0
- package/dist/icons/components/IconPlateUtensils.d.ts +9 -0
- package/dist/icons/components/index.d.ts +2 -0
- package/dist/icons/iconUtils.d.ts +2 -2
- package/dist/index.css +82 -45
- package/dist/index.js +2325 -729
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2320 -726
- package/dist/index.modern.js.map +1 -1
- package/dist/layout/CalloutCard/CalloutCard.d.ts +3 -0
- package/dist/layout/Card/Card.d.ts +4 -3
- package/dist/layout/Flex/Flex.d.ts +2 -2
- package/dist/layout/Inline/Inline.d.ts +2 -2
- package/dist/layout/Stack/Stack.d.ts +2 -2
- package/dist/lists/DataTable/DataTable.d.ts +5 -3
- package/dist/lists/DataTable/DataTableEmptyState/DataTableEmptyState.d.ts +8 -0
- package/dist/lists/DataTable/DataTableEmptyState/EmptyStateIllustration/EmptyStateIllustration.d.ts +3 -0
- package/dist/lists/DataTable/DataTableEmptyState/EmptyStateIllustration/index.d.ts +1 -0
- package/dist/lists/DataTable/DataTableEmptyState/index.d.ts +1 -0
- package/dist/lists/DataTable/constants.d.ts +1 -0
- package/dist/lists/DataTable/types.d.ts +6 -1
- package/dist/media/Badge/Badge.d.ts +2 -2
- package/dist/overlay/DropdownList/domain.d.ts +0 -1
- package/dist/overlay/Modal/Modal.d.ts +3 -2
- package/dist/overlay/Tooltip/Tooltip.d.ts +2 -2
- package/dist/utils/elements.d.ts +7 -0
- package/dist/utils/props.d.ts +4 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import type { ButtonTheme, ButtonSize, ButtonType, ButtonTarget } from './types';
|
|
3
3
|
import type { PositionStyles, DataProps } from '../../foundation/types';
|
|
4
|
-
declare const
|
|
4
|
+
declare const Button: React.ForwardRefExoticComponent<{
|
|
5
5
|
children: React.ReactNode;
|
|
6
6
|
type?: ButtonType | undefined;
|
|
7
7
|
/** It controls the button theme */
|
|
@@ -16,7 +16,7 @@ declare const _default: React.ForwardRefExoticComponent<{
|
|
|
16
16
|
id?: string | undefined;
|
|
17
17
|
loading?: boolean | undefined;
|
|
18
18
|
/** This will show a black tooltip when the user hover the button */
|
|
19
|
-
title?: React.ReactNode;
|
|
19
|
+
title?: string | React.ReactNode;
|
|
20
20
|
href?: string | undefined;
|
|
21
21
|
target?: ButtonTarget | undefined;
|
|
22
22
|
testId?: string | undefined;
|
|
@@ -27,4 +27,4 @@ declare const _default: React.ForwardRefExoticComponent<{
|
|
|
27
27
|
*/
|
|
28
28
|
size?: ButtonSize | undefined;
|
|
29
29
|
} & PositionStyles & DataProps & React.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
|
|
30
|
-
export default
|
|
30
|
+
export default Button;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { COMPONENT_NAMES } from './constants';
|
|
3
|
+
type Props = {
|
|
4
|
+
componentName: keyof typeof COMPONENT_NAMES;
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* Used so sub-components con identify if it is placed inside some component using the `useIsInsideComponent` hook
|
|
9
|
+
*/
|
|
10
|
+
declare const ComponentIdentifier: ({ componentName, children }: Props) => React.JSX.Element;
|
|
11
|
+
export default ComponentIdentifier;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
3
|
-
type Props = Omit<
|
|
4
|
-
declare const EmptyState: (
|
|
2
|
+
import { EmptyStateAsBanner, EmptyStateAsCard } from '../EmptyStateContainer/types';
|
|
3
|
+
type Props = Omit<EmptyStateAsCard, 'isPaywall'> | Omit<EmptyStateAsBanner, 'isPaywall'>;
|
|
4
|
+
declare const EmptyState: (props: Props) => React.JSX.Element;
|
|
5
5
|
export default EmptyState;
|
package/dist/empty_states/EmptyStateContainer/EmptyStateContainerStack/EmptyStateContainerStack.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { EmptyStateProps } from '../types';
|
|
3
|
-
|
|
3
|
+
type Props = {
|
|
4
|
+
mediaComponent?: React.ReactNode;
|
|
5
|
+
} & EmptyStateProps;
|
|
6
|
+
declare const EmptyStateContainerStack: ({ header, title, children, mediaUrl, actions, caption, isPaywall, testId, mediaComponent }: Props) => React.JSX.Element;
|
|
4
7
|
export default EmptyStateContainerStack;
|
|
@@ -22,3 +22,10 @@ export type EmptyStateProps = {
|
|
|
22
22
|
/** This is used for setting a data-testid on the component*/
|
|
23
23
|
testId?: string;
|
|
24
24
|
};
|
|
25
|
+
export type EmptyStateAsCard = {
|
|
26
|
+
as?: 'card';
|
|
27
|
+
onClose?: () => void;
|
|
28
|
+
} & EmptyStateProps;
|
|
29
|
+
export type EmptyStateAsBanner = {
|
|
30
|
+
as?: 'banner';
|
|
31
|
+
} & EmptyStateProps;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
3
|
-
|
|
2
|
+
import { EmptyStateAsBanner, EmptyStateAsCard } from '../EmptyStateContainer/types';
|
|
3
|
+
type Props = Omit<EmptyStateAsCard, 'isPaywall'> | Omit<EmptyStateAsBanner, 'isPaywall'>;
|
|
4
|
+
declare const Paywall: (props: Props) => React.JSX.Element;
|
|
4
5
|
export default Paywall;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import type { DataProps } from '../../foundation/types';
|
|
2
3
|
type Props = {
|
|
3
4
|
name: string;
|
|
4
5
|
/** If not provided it will generate a random id so the label links properly with the text input */
|
|
@@ -12,7 +13,7 @@ type Props = {
|
|
|
12
13
|
disabled?: boolean;
|
|
13
14
|
/** This is used for setting the data-testid */
|
|
14
15
|
testId?: string;
|
|
15
|
-
};
|
|
16
|
+
} & DataProps;
|
|
16
17
|
/** CheckboxField form element. */
|
|
17
18
|
declare const CheckboxField: React.FC<Props>;
|
|
18
19
|
export default CheckboxField;
|
|
@@ -5,7 +5,27 @@ import type { Props as TextFieldProps } from '../TextField/TextField';
|
|
|
5
5
|
*
|
|
6
6
|
* At the end, it is just a string formatted nicely. **You are in charge of validating the value and parsing it back to a value that you can use on your application**.
|
|
7
7
|
*/
|
|
8
|
-
declare const CurrencyField: React.ForwardRefExoticComponent<
|
|
8
|
+
declare const CurrencyField: React.ForwardRefExoticComponent<{
|
|
9
|
+
autoComplete?: ("on" | "off") | undefined;
|
|
10
|
+
autoFocus?: boolean | undefined;
|
|
11
|
+
caption?: React.ReactNode;
|
|
12
|
+
defaultValue?: string | undefined;
|
|
13
|
+
disabled?: boolean | undefined;
|
|
14
|
+
error?: React.ReactNode;
|
|
15
|
+
id?: string | undefined;
|
|
16
|
+
label?: React.ReactNode;
|
|
17
|
+
maxLength?: number | undefined;
|
|
18
|
+
name: string;
|
|
19
|
+
onBlur?: ((value: string) => void) | undefined;
|
|
20
|
+
onChange?: ((value: string) => void) | undefined;
|
|
21
|
+
onFocus?: ((value: string) => void) | undefined;
|
|
22
|
+
onKeyDown?: ((key: string) => void) | undefined;
|
|
23
|
+
placeholder?: string | undefined;
|
|
24
|
+
prefix?: React.ReactNode;
|
|
25
|
+
suffix?: React.ReactNode;
|
|
26
|
+
value?: string | undefined;
|
|
27
|
+
testId?: string | undefined;
|
|
28
|
+
} & import("../../foundation/types").DataProps & {
|
|
9
29
|
currencySymbol: string;
|
|
10
30
|
step?: number | undefined;
|
|
11
31
|
} & Omit<TextFieldProps, "prefix" | "suffix"> & React.RefAttributes<HTMLInputElement>>;
|
|
@@ -15,5 +15,5 @@ type Props = {
|
|
|
15
15
|
onBlur: () => void;
|
|
16
16
|
testId?: string;
|
|
17
17
|
};
|
|
18
|
-
declare const
|
|
19
|
-
export default
|
|
18
|
+
declare const ToDate: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
|
|
19
|
+
export default ToDate;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { DataProps } from '../../foundation/types';
|
|
2
3
|
type Props = {
|
|
3
4
|
id: string;
|
|
4
5
|
label?: React.ReactNode;
|
|
@@ -6,6 +7,6 @@ type Props = {
|
|
|
6
7
|
error?: React.ReactNode;
|
|
7
8
|
children: React.ReactNode;
|
|
8
9
|
testId?: string;
|
|
9
|
-
};
|
|
10
|
+
} & DataProps;
|
|
10
11
|
declare const Field: React.FC<Props>;
|
|
11
12
|
export default Field;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import type { DataProps } from '../../foundation/types';
|
|
2
3
|
type AutoCompleteType = 'off' | 'on';
|
|
3
4
|
export type Props = {
|
|
4
5
|
autoComplete?: AutoCompleteType;
|
|
@@ -23,6 +24,29 @@ export type Props = {
|
|
|
23
24
|
suffix?: React.ReactNode;
|
|
24
25
|
value?: string;
|
|
25
26
|
testId?: string;
|
|
26
|
-
};
|
|
27
|
-
declare const TextField: React.ForwardRefExoticComponent<
|
|
27
|
+
} & DataProps;
|
|
28
|
+
declare const TextField: React.ForwardRefExoticComponent<{
|
|
29
|
+
autoComplete?: AutoCompleteType | undefined;
|
|
30
|
+
autoFocus?: boolean | undefined;
|
|
31
|
+
caption?: React.ReactNode;
|
|
32
|
+
defaultValue?: string | undefined;
|
|
33
|
+
disabled?: boolean | undefined;
|
|
34
|
+
error?: React.ReactNode;
|
|
35
|
+
/** If not provided it will generate a random id so the label links properly with the text input */
|
|
36
|
+
id?: string | undefined;
|
|
37
|
+
label?: React.ReactNode;
|
|
38
|
+
maxLength?: number | undefined;
|
|
39
|
+
name: string;
|
|
40
|
+
onBlur?: ((value: string) => void) | undefined;
|
|
41
|
+
onChange?: ((value: string) => void) | undefined;
|
|
42
|
+
onFocus?: ((value: string) => void) | undefined;
|
|
43
|
+
onKeyDown?: ((key: string) => void) | undefined;
|
|
44
|
+
placeholder?: string | undefined;
|
|
45
|
+
/** Use a prefix for things like currency symbols (“$”, “¥”, “£”) or icons. */
|
|
46
|
+
prefix?: React.ReactNode;
|
|
47
|
+
/** Use suffix for things like units of measure (“in”, “cm”, ”hours”) or icons. */
|
|
48
|
+
suffix?: React.ReactNode;
|
|
49
|
+
value?: string | undefined;
|
|
50
|
+
testId?: string | undefined;
|
|
51
|
+
} & DataProps & React.RefAttributes<HTMLInputElement>>;
|
|
28
52
|
export default TextField;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { RefType } from '../../utils/types';
|
|
3
3
|
import type { Props } from './TextField';
|
|
4
|
+
import type { DataProps } from '../../foundation/types';
|
|
4
5
|
type UseTextFieldProps = Props & {
|
|
5
6
|
ref: RefType<HTMLInputElement>;
|
|
6
|
-
};
|
|
7
|
-
export declare const useTextField: ({ autoComplete, autoFocus, defaultValue, disabled, error, id, maxLength, name, caption, label, onBlur, onChange, onFocus, onKeyDown, placeholder, value, ref, testId }: UseTextFieldProps) => {
|
|
7
|
+
} & DataProps;
|
|
8
|
+
export declare const useTextField: ({ autoComplete, autoFocus, defaultValue, disabled, error, id, maxLength, name, caption, label, onBlur, onChange, onFocus, onKeyDown, placeholder, value, ref, testId, ...dataProps }: UseTextFieldProps) => {
|
|
8
9
|
inputProps: {
|
|
9
10
|
'aria-describedby': string;
|
|
10
11
|
'aria-invalid': boolean;
|
|
@@ -28,6 +29,8 @@ export declare const useTextField: ({ autoComplete, autoFocus, defaultValue, dis
|
|
|
28
29
|
value: string | undefined;
|
|
29
30
|
};
|
|
30
31
|
fieldProps: {
|
|
32
|
+
prefix?: import("react").ReactNode;
|
|
33
|
+
suffix?: import("react").ReactNode;
|
|
31
34
|
caption: import("react").ReactNode;
|
|
32
35
|
error: import("react").ReactNode;
|
|
33
36
|
label: import("react").ReactNode;
|
|
@@ -9,7 +9,27 @@ type Props = TextFieldProps & {
|
|
|
9
9
|
endField?: boolean;
|
|
10
10
|
duration?: string;
|
|
11
11
|
};
|
|
12
|
-
export declare const TimeRangeSelector: React.ForwardRefExoticComponent<
|
|
12
|
+
export declare const TimeRangeSelector: React.ForwardRefExoticComponent<{
|
|
13
|
+
autoComplete?: ("on" | "off") | undefined;
|
|
14
|
+
autoFocus?: boolean | undefined;
|
|
15
|
+
caption?: React.ReactNode;
|
|
16
|
+
defaultValue?: string | undefined;
|
|
17
|
+
disabled?: boolean | undefined;
|
|
18
|
+
error?: React.ReactNode;
|
|
19
|
+
id?: string | undefined;
|
|
20
|
+
label?: React.ReactNode;
|
|
21
|
+
maxLength?: number | undefined;
|
|
22
|
+
name: string;
|
|
23
|
+
onBlur?: ((value: string) => void) | undefined;
|
|
24
|
+
onChange?: ((value: string) => void) | undefined;
|
|
25
|
+
onFocus?: ((value: string) => void) | undefined;
|
|
26
|
+
onKeyDown?: ((key: string) => void) | undefined;
|
|
27
|
+
placeholder?: string | undefined;
|
|
28
|
+
prefix?: React.ReactNode;
|
|
29
|
+
suffix?: React.ReactNode;
|
|
30
|
+
value?: string | undefined;
|
|
31
|
+
testId?: string | undefined;
|
|
32
|
+
} & import("../../foundation/types").DataProps & {
|
|
13
33
|
onClick?: (() => void) | undefined;
|
|
14
34
|
interval?: TimeInterval | undefined;
|
|
15
35
|
startTime?: string | undefined;
|
|
@@ -33,5 +33,12 @@
|
|
|
33
33
|
"october": "October",
|
|
34
34
|
"november": "November",
|
|
35
35
|
"december": "December"
|
|
36
|
+
},
|
|
37
|
+
"Card": {
|
|
38
|
+
"dismiss": "Dismiss"
|
|
39
|
+
},
|
|
40
|
+
"DataTable": {
|
|
41
|
+
"emptyStateTitle": "No results found",
|
|
42
|
+
"emptyStateCaption": "Try adding a new item to the list or adjust your search terms."
|
|
36
43
|
}
|
|
37
44
|
}
|
|
@@ -33,5 +33,12 @@
|
|
|
33
33
|
"october": "Octubre",
|
|
34
34
|
"november": "Noviembre",
|
|
35
35
|
"december": "Diciembre"
|
|
36
|
+
},
|
|
37
|
+
"Card": {
|
|
38
|
+
"dismiss": "Descartar"
|
|
39
|
+
},
|
|
40
|
+
"DataTable": {
|
|
41
|
+
"emptyStateTitle": "No se encontraron resultados",
|
|
42
|
+
"emptyStateCaption": "Intenta agregar un nuevo elemento a la lista o ajusta tus términos de búsqueda."
|
|
36
43
|
}
|
|
37
44
|
}
|
|
@@ -33,5 +33,12 @@
|
|
|
33
33
|
"october": "Octobre",
|
|
34
34
|
"november": "Novembre",
|
|
35
35
|
"december": "Décembre"
|
|
36
|
+
},
|
|
37
|
+
"Card": {
|
|
38
|
+
"dismiss": "Rejeter"
|
|
39
|
+
},
|
|
40
|
+
"DataTable": {
|
|
41
|
+
"emptyStateTitle": "Aucun résultat trouvé",
|
|
42
|
+
"emptyStateCaption": "Essayez d'ajouter un nouvel élément à la liste ou ajustez vos termes de recherche."
|
|
36
43
|
}
|
|
37
44
|
}
|
package/dist/i18n/types.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { TranslateFunction } from './types';
|
|
2
|
-
export declare const useTranslation: (context?:
|
|
1
|
+
import type { TranslateFunction, Context } from './types';
|
|
2
|
+
export declare const useTranslation: (context?: Context) => TranslateFunction;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize } from '../types';
|
|
3
|
+
type Props = {
|
|
4
|
+
size?: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
testId?: string;
|
|
7
|
+
} & React.SVGProps<SVGSVGElement>;
|
|
8
|
+
declare const IconHatChef: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
|
|
9
|
+
export default IconHatChef;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IconSize } from '../types';
|
|
3
|
+
type Props = {
|
|
4
|
+
size?: IconSize;
|
|
5
|
+
color?: string;
|
|
6
|
+
testId?: string;
|
|
7
|
+
} & React.SVGProps<SVGSVGElement>;
|
|
8
|
+
declare const IconPlateUtensils: React.ForwardRefExoticComponent<Omit<Props, 'ref'>>;
|
|
9
|
+
export default IconPlateUtensils;
|
|
@@ -78,6 +78,7 @@ export { default as IconGreat } from './IconGreat';
|
|
|
78
78
|
export { default as IconGrinBeam } from './IconGrinBeam';
|
|
79
79
|
export { default as IconGripVertical } from './IconGripVertical';
|
|
80
80
|
export { default as IconHandshake } from './IconHandshake';
|
|
81
|
+
export { default as IconHatChef } from './IconHatChef';
|
|
81
82
|
export { default as IconImage } from './IconImage';
|
|
82
83
|
export { default as IconIslandTropical } from './IconIslandTropical';
|
|
83
84
|
export { default as IconItalic } from './IconItalic';
|
|
@@ -102,6 +103,7 @@ export { default as IconPaperclip } from './IconPaperclip';
|
|
|
102
103
|
export { default as IconPencil } from './IconPencil';
|
|
103
104
|
export { default as IconPercentage } from './IconPercentage';
|
|
104
105
|
export { default as IconPhone } from './IconPhone';
|
|
106
|
+
export { default as IconPlateUtensils } from './IconPlateUtensils';
|
|
105
107
|
export { default as IconPlug } from './IconPlug';
|
|
106
108
|
export { default as IconPlus } from './IconPlus';
|
|
107
109
|
export { default as IconPrint } from './IconPrint';
|
|
@@ -2,7 +2,7 @@ import { IconSize } from './types';
|
|
|
2
2
|
type Params = {
|
|
3
3
|
size?: IconSize;
|
|
4
4
|
color?: string;
|
|
5
|
-
|
|
5
|
+
style?: Object;
|
|
6
6
|
};
|
|
7
|
-
export declare const getIconStyles: ({ size, color,
|
|
7
|
+
export declare const getIconStyles: ({ size, color, style }: Params) => Object;
|
|
8
8
|
export {};
|
package/dist/index.css
CHANGED
|
@@ -1410,7 +1410,7 @@ h5._32amZ {
|
|
|
1410
1410
|
box-sizing: border-box;
|
|
1411
1411
|
background: white;
|
|
1412
1412
|
border: 1px solid var(--color-grey-200);
|
|
1413
|
-
border-radius:
|
|
1413
|
+
border-radius: 20px;
|
|
1414
1414
|
width: 100%;
|
|
1415
1415
|
height: 100%;
|
|
1416
1416
|
padding: 24px 20px;
|
|
@@ -1447,12 +1447,22 @@ h5._32amZ {
|
|
|
1447
1447
|
._L9ZA7 {
|
|
1448
1448
|
position: absolute;
|
|
1449
1449
|
z-index: var(--z-index-base);
|
|
1450
|
-
right:
|
|
1451
|
-
top:
|
|
1450
|
+
right: 6px;
|
|
1451
|
+
top: 6px;
|
|
1452
1452
|
}
|
|
1453
1453
|
._5YidV {
|
|
1454
1454
|
pointer-events: none;
|
|
1455
1455
|
}
|
|
1456
|
+
._37yla {
|
|
1457
|
+
position: absolute;
|
|
1458
|
+
width: 38px;
|
|
1459
|
+
height: 38px;
|
|
1460
|
+
top: 6px;
|
|
1461
|
+
right: 6px;
|
|
1462
|
+
}
|
|
1463
|
+
._3J4FP {
|
|
1464
|
+
pointer-events: none;
|
|
1465
|
+
}
|
|
1456
1466
|
._cQT44 {
|
|
1457
1467
|
position: absolute;
|
|
1458
1468
|
width: 38px;
|
|
@@ -1529,7 +1539,7 @@ h5._32amZ {
|
|
|
1529
1539
|
}
|
|
1530
1540
|
._ORvUI {
|
|
1531
1541
|
stroke: var(--color-grey-100);
|
|
1532
|
-
fill:
|
|
1542
|
+
fill: transparent;
|
|
1533
1543
|
}
|
|
1534
1544
|
._2KJMe {
|
|
1535
1545
|
stroke: var(--color-mint-400);
|
|
@@ -1649,7 +1659,7 @@ h5._32amZ {
|
|
|
1649
1659
|
word-break: break-word;
|
|
1650
1660
|
-webkit-hyphens: auto;
|
|
1651
1661
|
hyphens: auto;
|
|
1652
|
-
background:
|
|
1662
|
+
background: var(--color-white);
|
|
1653
1663
|
}
|
|
1654
1664
|
._3Jay_:first-of-type {
|
|
1655
1665
|
border-left: 1px solid var(--color-grey-200);
|
|
@@ -2146,6 +2156,8 @@ input:disabled + ._2W10t::after {
|
|
|
2146
2156
|
border-color: var(--color-eggplant-400);
|
|
2147
2157
|
box-shadow: 0 0 8px var(--color-eggplant-300);
|
|
2148
2158
|
outline: none;
|
|
2159
|
+
overflow: visible;
|
|
2160
|
+
z-index: var(--z-index-base);
|
|
2149
2161
|
}
|
|
2150
2162
|
._1-1WW input:hover {
|
|
2151
2163
|
background: var(--color-grey-100);
|
|
@@ -2418,6 +2430,46 @@ input:disabled + ._2W10t::after {
|
|
|
2418
2430
|
right: -1px;
|
|
2419
2431
|
bottom: -1px;
|
|
2420
2432
|
}
|
|
2433
|
+
._3mHDL {
|
|
2434
|
+
display: flex;
|
|
2435
|
+
width: 100%;
|
|
2436
|
+
justify-content: center;
|
|
2437
|
+
}
|
|
2438
|
+
._11ygA {
|
|
2439
|
+
display: flex;
|
|
2440
|
+
justify-content: space-between;
|
|
2441
|
+
width: 424px;
|
|
2442
|
+
gap: 20px;
|
|
2443
|
+
flex-direction: column;
|
|
2444
|
+
align-items: center;
|
|
2445
|
+
}
|
|
2446
|
+
._6o4Ut {
|
|
2447
|
+
display: flex;
|
|
2448
|
+
flex-direction: column;
|
|
2449
|
+
justify-content: center;
|
|
2450
|
+
gap: 20px;
|
|
2451
|
+
}
|
|
2452
|
+
._1bs2I {
|
|
2453
|
+
max-width: 500px;
|
|
2454
|
+
}
|
|
2455
|
+
._WwD-g {
|
|
2456
|
+
max-width: 667px;
|
|
2457
|
+
}
|
|
2458
|
+
._1b3C0 {
|
|
2459
|
+
color: var(--color-grey-500);
|
|
2460
|
+
font-size: 12px;
|
|
2461
|
+
text-align: center;
|
|
2462
|
+
}
|
|
2463
|
+
._3q5OJ {
|
|
2464
|
+
display: flex;
|
|
2465
|
+
gap: 8px;
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
@media screen and (max-width: 900px) {
|
|
2469
|
+
._3q5OJ:not(._3DOZC) {
|
|
2470
|
+
justify-content: center;
|
|
2471
|
+
}
|
|
2472
|
+
}
|
|
2421
2473
|
._1JTKu {
|
|
2422
2474
|
flex: 1;
|
|
2423
2475
|
display: "flex";
|
|
@@ -2623,6 +2675,7 @@ input:disabled + ._2W10t::after {
|
|
|
2623
2675
|
display: flex;
|
|
2624
2676
|
flex-direction: column;
|
|
2625
2677
|
min-width: 90px;
|
|
2678
|
+
background-color: var(--color-white);
|
|
2626
2679
|
}
|
|
2627
2680
|
._eyfGn textarea {
|
|
2628
2681
|
line-height: 22px;
|
|
@@ -2781,6 +2834,7 @@ input:focus-visible + ._W4HpY {
|
|
|
2781
2834
|
text-align: center;
|
|
2782
2835
|
height: 100%;
|
|
2783
2836
|
color: var(--color-grey-400);
|
|
2837
|
+
background: var(--color-white);
|
|
2784
2838
|
}
|
|
2785
2839
|
._1md_9 input {
|
|
2786
2840
|
border: 0px;
|
|
@@ -3067,6 +3121,8 @@ input:disabled + ._1aaPx::after {
|
|
|
3067
3121
|
padding-top: 0px;
|
|
3068
3122
|
display: flex;
|
|
3069
3123
|
align-items: center;
|
|
3124
|
+
background-color: var(--color-grey-100);
|
|
3125
|
+
background-color: var(--color-white);
|
|
3070
3126
|
}
|
|
3071
3127
|
._3YxJl {
|
|
3072
3128
|
border-color: var(--color-radish-400) !important;
|
|
@@ -3254,7 +3310,6 @@ input:disabled + ._1aaPx::after {
|
|
|
3254
3310
|
position: absolute;
|
|
3255
3311
|
height: 36px;
|
|
3256
3312
|
margin-top: 1px;
|
|
3257
|
-
margin-left: 25px;
|
|
3258
3313
|
align-items: center;
|
|
3259
3314
|
display: flex;
|
|
3260
3315
|
pointer-events: none;
|
|
@@ -3266,12 +3321,16 @@ input:disabled + ._1aaPx::after {
|
|
|
3266
3321
|
flex-grow: 1;
|
|
3267
3322
|
display: flex;
|
|
3268
3323
|
}
|
|
3269
|
-
.
|
|
3324
|
+
._Fc99X {
|
|
3325
|
+
font-size: 12pt;
|
|
3326
|
+
}
|
|
3327
|
+
|
|
3328
|
+
input._1zowl {
|
|
3270
3329
|
border-top-left-radius: 0;
|
|
3271
3330
|
border-bottom-left-radius: 0;
|
|
3272
3331
|
}
|
|
3273
|
-
.
|
|
3274
|
-
|
|
3332
|
+
._2T1pu {
|
|
3333
|
+
background-color: var(--color-white);
|
|
3275
3334
|
}
|
|
3276
3335
|
._2T1pu:not(._1OxwW) > button:focus ._3mUO5 {
|
|
3277
3336
|
border: 1px solid var(--color-eggplant-400);
|
|
@@ -4476,43 +4535,7 @@ input:disabled + ._1aaPx::after {
|
|
|
4476
4535
|
background-color: var(--color-blueberry-200);
|
|
4477
4536
|
color: var(--color-blueberry-600);
|
|
4478
4537
|
}
|
|
4479
|
-
._11ygA {
|
|
4480
|
-
display: flex;
|
|
4481
|
-
justify-content: space-between;
|
|
4482
|
-
width: 424px;
|
|
4483
|
-
gap: 20px;
|
|
4484
|
-
flex-direction: column;
|
|
4485
|
-
align-items: center;
|
|
4486
|
-
}
|
|
4487
|
-
._6o4Ut {
|
|
4488
|
-
display: flex;
|
|
4489
|
-
flex-direction: column;
|
|
4490
|
-
justify-content: center;
|
|
4491
|
-
gap: 20px;
|
|
4492
|
-
}
|
|
4493
|
-
._1bs2I {
|
|
4494
|
-
max-width: 500px;
|
|
4495
|
-
}
|
|
4496
|
-
._WwD-g {
|
|
4497
|
-
max-width: 667px;
|
|
4498
|
-
}
|
|
4499
|
-
._1b3C0 {
|
|
4500
|
-
color: var(--color-grey-500);
|
|
4501
|
-
font-size: 12px;
|
|
4502
|
-
text-align: center;
|
|
4503
|
-
}
|
|
4504
|
-
._3q5OJ {
|
|
4505
|
-
display: flex;
|
|
4506
|
-
gap: 8px;
|
|
4507
|
-
}
|
|
4508
|
-
|
|
4509
|
-
@media screen and (max-width: 900px) {
|
|
4510
|
-
._3q5OJ:not(._3DOZC) {
|
|
4511
|
-
justify-content: center;
|
|
4512
|
-
}
|
|
4513
|
-
}
|
|
4514
4538
|
._1AdW7 {
|
|
4515
|
-
max-width: 1000px;
|
|
4516
4539
|
display: flex;
|
|
4517
4540
|
flex-direction: row;
|
|
4518
4541
|
justify-content: space-between;
|
|
@@ -4550,4 +4573,18 @@ input:disabled + ._1aaPx::after {
|
|
|
4550
4573
|
text-align: center;
|
|
4551
4574
|
flex-direction: column-reverse;
|
|
4552
4575
|
}
|
|
4576
|
+
}
|
|
4577
|
+
._3kFM9 {
|
|
4578
|
+
padding: 12px 16px;
|
|
4579
|
+
}
|
|
4580
|
+
._3kmTB {
|
|
4581
|
+
display: flex;
|
|
4582
|
+
justify-content: center;
|
|
4583
|
+
}
|
|
4584
|
+
._DrBEi {
|
|
4585
|
+
padding: 12px 16px;
|
|
4586
|
+
}
|
|
4587
|
+
._3YbH7 {
|
|
4588
|
+
display: flex;
|
|
4589
|
+
justify-content: center;
|
|
4553
4590
|
}
|