@carto/meridian-ds 2.6.2-alpha.0 → 2.7.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/CHANGELOG.md +6 -3
- package/dist/{Alert-1A6BG2aO.js → Alert-BfDnWlbD.js} +1 -1
- package/dist/{Alert-eVzJvC47.cjs → Alert-CPvYAHO_.cjs} +1 -1
- package/dist/{MenuItem-DgHhHW-j.js → MenuItem-D90EfuGS.js} +12 -3
- package/dist/{MenuItem-6ZIV5V7a.cjs → MenuItem-ZSYcQBtg.cjs} +12 -3
- package/dist/{SwatchSquare-CaaLsjAC.js → Search-C7wkXu3f.js} +4 -23
- package/dist/{SwatchSquare-B8PIY3Rd.cjs → Search-CMWbM9nD.cjs} +3 -22
- package/dist/SwatchSquare-B6KYVoqV.js +24 -0
- package/dist/SwatchSquare-DuXPIL7t.cjs +23 -0
- package/dist/components/index.cjs +290 -3
- package/dist/components/index.js +293 -6
- package/dist/{css-utils-lmkjeCdF.js → css-utils-BHYA7By_.js} +3 -0
- package/dist/{css-utils-BNXxLCyb.cjs → css-utils-DjvM17Vb.cjs} +3 -0
- package/dist/custom-icons/index.cjs +3 -2
- package/dist/custom-icons/index.js +3 -2
- package/dist/theme/index.cjs +16 -4
- package/dist/theme/index.js +17 -5
- package/dist/types/components/Menu/Menu/Menu.stories.d.ts +16 -7
- package/dist/types/components/Menu/Menu/Menu.stories.d.ts.map +1 -1
- package/dist/types/components/Menu/MenuItem/MenuItem.d.ts.map +1 -1
- package/dist/types/components/SearchField/SearchField.d.ts +4 -0
- package/dist/types/components/SearchField/SearchField.d.ts.map +1 -0
- package/dist/types/components/SearchField/SearchField.stories.d.ts +111 -0
- package/dist/types/components/SearchField/SearchField.stories.d.ts.map +1 -0
- package/dist/types/components/SearchField/SearchField.styled.d.ts +23 -0
- package/dist/types/components/SearchField/SearchField.styled.d.ts.map +1 -0
- package/dist/types/components/SearchField/SearchField.test.d.ts +2 -0
- package/dist/types/components/SearchField/SearchField.test.d.ts.map +1 -0
- package/dist/types/components/SearchField/components/SearchFieldEndAdornment.d.ts +19 -0
- package/dist/types/components/SearchField/components/SearchFieldEndAdornment.d.ts.map +1 -0
- package/dist/types/components/SearchField/components/SearchFieldStartAdornment.d.ts +14 -0
- package/dist/types/components/SearchField/components/SearchFieldStartAdornment.d.ts.map +1 -0
- package/dist/types/components/SearchField/index.d.ts +3 -0
- package/dist/types/components/SearchField/index.d.ts.map +1 -0
- package/dist/types/components/SearchField/types.d.ts +72 -0
- package/dist/types/components/SearchField/types.d.ts.map +1 -0
- package/dist/types/components/index.d.ts +2 -0
- package/dist/types/components/index.d.ts.map +1 -1
- package/dist/types/localization/en.d.ts +1 -0
- package/dist/types/localization/en.d.ts.map +1 -1
- package/dist/types/localization/es.d.ts +1 -0
- package/dist/types/localization/es.d.ts.map +1 -1
- package/dist/types/localization/id.d.ts +1 -0
- package/dist/types/localization/id.d.ts.map +1 -1
- package/dist/types/localization/index.d.ts +3 -0
- package/dist/types/localization/index.d.ts.map +1 -1
- package/dist/types/theme/carto-theme.d.ts.map +1 -1
- package/dist/types/theme/components/layout.d.ts +3 -0
- package/dist/types/theme/components/layout.d.ts.map +1 -0
- package/dist/types/theme/components/navigation.d.ts.map +1 -1
- package/dist/widgets/index.cjs +8 -7
- package/dist/widgets/index.js +4 -3
- package/package.json +2 -3
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
interface StoryTemplateProps {
|
|
2
|
+
placeholder?: string;
|
|
3
|
+
defaultValue?: string;
|
|
4
|
+
[key: string]: unknown;
|
|
5
|
+
}
|
|
6
|
+
declare const options: {
|
|
7
|
+
title: string;
|
|
8
|
+
component: import('react').ForwardRefExoticComponent<Omit<import('..').SearchFieldProps, "ref"> & import('react').RefAttributes<HTMLDivElement>>;
|
|
9
|
+
tags: string[];
|
|
10
|
+
argTypes: {
|
|
11
|
+
variant: {
|
|
12
|
+
control: "select";
|
|
13
|
+
options: string[];
|
|
14
|
+
};
|
|
15
|
+
size: {
|
|
16
|
+
control: "select";
|
|
17
|
+
options: string[];
|
|
18
|
+
};
|
|
19
|
+
minimized: {
|
|
20
|
+
control: "boolean";
|
|
21
|
+
};
|
|
22
|
+
disabled: {
|
|
23
|
+
control: "boolean";
|
|
24
|
+
};
|
|
25
|
+
loading: {
|
|
26
|
+
control: "boolean";
|
|
27
|
+
};
|
|
28
|
+
placeholder: {
|
|
29
|
+
control: "text";
|
|
30
|
+
};
|
|
31
|
+
required: {
|
|
32
|
+
table: {
|
|
33
|
+
disable: true;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
error: {
|
|
37
|
+
table: {
|
|
38
|
+
disable: true;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
args: {
|
|
43
|
+
placeholder: string;
|
|
44
|
+
disabled: false;
|
|
45
|
+
minimized: false;
|
|
46
|
+
loading: false;
|
|
47
|
+
};
|
|
48
|
+
parameters: {
|
|
49
|
+
design: {
|
|
50
|
+
type: string;
|
|
51
|
+
url: string;
|
|
52
|
+
};
|
|
53
|
+
status: {
|
|
54
|
+
type: string;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
export default options;
|
|
59
|
+
export declare const Playground: {
|
|
60
|
+
render: ({ ...args }: StoryTemplateProps) => import("react/jsx-runtime").JSX.Element;
|
|
61
|
+
parameters: {
|
|
62
|
+
chromatic: {
|
|
63
|
+
disableSnapshot: boolean;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
export declare const Variants: {
|
|
68
|
+
render: ({ placeholder, ...rest }: StoryTemplateProps) => import("react/jsx-runtime").JSX.Element;
|
|
69
|
+
};
|
|
70
|
+
export declare const Medium: {
|
|
71
|
+
render: ({ placeholder, defaultValue, ...rest }: StoryTemplateProps) => import("react/jsx-runtime").JSX.Element;
|
|
72
|
+
args: {
|
|
73
|
+
size: string;
|
|
74
|
+
defaultValue: string;
|
|
75
|
+
};
|
|
76
|
+
argTypes: {
|
|
77
|
+
variant: {
|
|
78
|
+
table: {
|
|
79
|
+
disable: boolean;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
defaultValue: {
|
|
83
|
+
table: {
|
|
84
|
+
disable: boolean;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
export declare const Small: {
|
|
90
|
+
render: ({ placeholder, defaultValue, ...rest }: StoryTemplateProps) => import("react/jsx-runtime").JSX.Element;
|
|
91
|
+
args: {
|
|
92
|
+
size: string;
|
|
93
|
+
defaultValue: string;
|
|
94
|
+
};
|
|
95
|
+
argTypes: {
|
|
96
|
+
variant: {
|
|
97
|
+
table: {
|
|
98
|
+
disable: boolean;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
defaultValue: {
|
|
102
|
+
table: {
|
|
103
|
+
disable: boolean;
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
export declare const Behavior: {
|
|
109
|
+
render: ({ placeholder, ...rest }: StoryTemplateProps) => import("react/jsx-runtime").JSX.Element;
|
|
110
|
+
};
|
|
111
|
+
//# sourceMappingURL=SearchField.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchField.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/SearchField/SearchField.stories.tsx"],"names":[],"mappings":"AAQA,UAAU,kBAAkB;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CACvB;AAED,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+CuB,CAAA;AAEpC,eAAe,OAAO,CAAA;AAyYtB,eAAO,MAAM,UAAU;0BAvYkB,kBAAkB;;;;;;CA4Y1D,CAAA;AAED,eAAO,MAAM,QAAQ;uCApY+B,kBAAkB;CAsYrE,CAAA;AAED,eAAO,MAAM,MAAM;qDAvWhB,kBAAkB;;;;;;;;;;;;;;;;;CA2WpB,CAAA;AAED,eAAO,MAAM,KAAK;qDA7Wf,kBAAkB;;;;;;;;;;;;;;;;;CAiXpB,CAAA;AAED,eAAO,MAAM,QAAQ;uCA9H+B,kBAAkB;CAgIrE,CAAA"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { SearchFieldProps } from './types';
|
|
2
|
+
export declare const SearchIcon: import('@emotion/styled').StyledComponent<Omit<import('../../custom-icons/types').CustomIconProps, "ref"> & import('react').RefAttributes<SVGSVGElement> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & {
|
|
3
|
+
minimized?: boolean;
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
}, {}, {}>;
|
|
6
|
+
export declare const ClearSearchIcon: import('@emotion/styled').StyledComponent<import('@mui/material').SvgIconOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').SVGProps<SVGSVGElement>, "ref"> & {
|
|
7
|
+
ref?: ((instance: SVGSVGElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<SVGSVGElement> | null | undefined;
|
|
8
|
+
}, "fontSize" | "color" | "style" | "className" | "classes" | "shapeRendering" | "children" | "sx" | "viewBox" | "htmlColor" | "inheritViewBox" | "titleAccess"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
|
9
|
+
export declare const LoadingSearchIcon: import('@emotion/styled').StyledComponent<import('@mui/material').CircularProgressProps & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, {}, {}>;
|
|
10
|
+
export declare const SearchInputAdornment: import('@emotion/styled').StyledComponent<import('@mui/material').InputAdornmentOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
11
|
+
ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
|
|
12
|
+
}, "style" | "position" | "className" | "classes" | "children" | "sx" | "variant" | "disablePointerEvents" | "disableTypography"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & {
|
|
13
|
+
minimized?: boolean;
|
|
14
|
+
expanded?: boolean;
|
|
15
|
+
}, {}, {}>;
|
|
16
|
+
export declare const SearchFieldBase: import('@emotion/styled').StyledComponent<{
|
|
17
|
+
variant?: import('@mui/material').TextFieldVariants | undefined;
|
|
18
|
+
} & Omit<import('@mui/material').FilledTextFieldProps | import('@mui/material').OutlinedTextFieldProps | import('@mui/material').StandardTextFieldProps, "variant"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & {
|
|
19
|
+
minimized: boolean;
|
|
20
|
+
isInputFocused?: boolean;
|
|
21
|
+
emphasis?: SearchFieldProps["variant"];
|
|
22
|
+
}, {}, {}>;
|
|
23
|
+
//# sourceMappingURL=SearchField.styled.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchField.styled.d.ts","sourceRoot":"","sources":["../../../../src/components/SearchField/SearchField.styled.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAE1C,eAAO,MAAM,UAAU;gBAEN,OAAO;eAAa,OAAO;UAY3C,CAAA;AAED,eAAO,MAAM,eAAe;;qPAEzB,CAAA;AAEH,eAAO,MAAM,iBAAiB,8KAI3B,CAAA;AAEH,eAAO,MAAM,oBAAoB;;;gBAEhB,OAAO;eAAa,OAAO;UAgC3C,CAAA;AAED,eAAO,MAAM,eAAe;;;eAIf,OAAO;qBACD,OAAO;eACb,gBAAgB,CAAC,SAAS,CAAC;UAuGrC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchField.test.d.ts","sourceRoot":"","sources":["../../../../src/components/SearchField/SearchField.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { SearchFieldProps } from '../types';
|
|
3
|
+
interface SearchFieldEndAdornmentProps {
|
|
4
|
+
disabled?: boolean;
|
|
5
|
+
showClearButton?: boolean;
|
|
6
|
+
loading?: boolean;
|
|
7
|
+
size?: SearchFieldProps['size'];
|
|
8
|
+
endAdornment?: ReactNode;
|
|
9
|
+
clearButtonLabel?: string;
|
|
10
|
+
clearButton?: ReactNode;
|
|
11
|
+
onClear?: () => void;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* End adornment component for the SearchField.
|
|
15
|
+
* Displays a loading spinner, clear button, and optional custom end adornment.
|
|
16
|
+
*/
|
|
17
|
+
export declare const SearchFieldEndAdornment: ({ disabled, showClearButton, loading, size, endAdornment, clearButton, clearButtonLabel, onClear, }: SearchFieldEndAdornmentProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
18
|
+
export {};
|
|
19
|
+
//# sourceMappingURL=SearchFieldEndAdornment.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchFieldEndAdornment.d.ts","sourceRoot":"","sources":["../../../../../src/components/SearchField/components/SearchFieldEndAdornment.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAUjC,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAA;AAE3C,UAAU,4BAA4B;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAA;IAC/B,YAAY,CAAC,EAAE,SAAS,CAAA;IACxB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,WAAW,CAAC,EAAE,SAAS,CAAA;IACvB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACrB;AAED;;;GAGG;AACH,eAAO,MAAM,uBAAuB,wGASjC,4BAA4B,mDAqC9B,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
interface SearchFieldStartAdornmentProps {
|
|
3
|
+
minimized: boolean;
|
|
4
|
+
loading: boolean;
|
|
5
|
+
startAdornment?: ReactNode;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Start adornment component for the SearchField.
|
|
10
|
+
* Displays a loading spinner when minimized and loading, or a search icon/default start adornment otherwise.
|
|
11
|
+
*/
|
|
12
|
+
export declare const SearchFieldStartAdornment: ({ minimized, loading, startAdornment, disabled, }: SearchFieldStartAdornmentProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=SearchFieldStartAdornment.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchFieldStartAdornment.d.ts","sourceRoot":"","sources":["../../../../../src/components/SearchField/components/SearchFieldStartAdornment.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AASjC,UAAU,8BAA8B;IACtC,SAAS,EAAE,OAAO,CAAA;IAClB,OAAO,EAAE,OAAO,CAAA;IAChB,cAAc,CAAC,EAAE,SAAS,CAAA;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED;;;GAGG;AACH,eAAO,MAAM,yBAAyB,sDAKnC,8BAA8B,4CAYhC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/SearchField/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAA;AACtD,mBAAmB,SAAS,CAAA"}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import { InputProps, TextFieldProps } from '@mui/material';
|
|
2
|
+
export type SearchFieldProps = Omit<TextFieldProps, 'InputProps' | 'variant'> & {
|
|
3
|
+
/**
|
|
4
|
+
* Visual variant of the search field.
|
|
5
|
+
* - 'filled': Filled background with hover effect
|
|
6
|
+
* - 'transparent': Transparent background
|
|
7
|
+
* - 'floating': Paper background with shadow
|
|
8
|
+
*
|
|
9
|
+
* @default 'filled'
|
|
10
|
+
*/
|
|
11
|
+
variant?: 'filled' | 'transparent' | 'floating';
|
|
12
|
+
/**
|
|
13
|
+
* The value of the input element, used for controlled components.
|
|
14
|
+
*/
|
|
15
|
+
value?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The default value of the input element, used for uncontrolled components.
|
|
18
|
+
*/
|
|
19
|
+
defaultValue?: string;
|
|
20
|
+
/**
|
|
21
|
+
* Minimized mode, which only shows the search icon and user can deminimize it to render a full text field.
|
|
22
|
+
*
|
|
23
|
+
* @default false
|
|
24
|
+
*/
|
|
25
|
+
minimized?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* If true, shows a loading spinner in the start adornment (does not disable the input).
|
|
28
|
+
*
|
|
29
|
+
* @default false
|
|
30
|
+
*/
|
|
31
|
+
loading?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Called when the clear button (x icon) is clicked.
|
|
34
|
+
*
|
|
35
|
+
* When not provided, control will emit reset as onChange with empty value.
|
|
36
|
+
*/
|
|
37
|
+
onResetSearch?: () => void;
|
|
38
|
+
/**
|
|
39
|
+
* Custom element to display at the start of the input.
|
|
40
|
+
* Replaces the default search icon when provided.
|
|
41
|
+
*/
|
|
42
|
+
startAdornment?: React.ReactNode;
|
|
43
|
+
/**
|
|
44
|
+
* Custom element to display at the end of the input.
|
|
45
|
+
* Appears alongside the clear button when a value exists.
|
|
46
|
+
*/
|
|
47
|
+
endAdornment?: React.ReactNode;
|
|
48
|
+
/**
|
|
49
|
+
* Props applied to the Input element.
|
|
50
|
+
* Can include a 'data-testid' for testing purposes.
|
|
51
|
+
*/
|
|
52
|
+
InputProps?: Partial<InputProps> & {
|
|
53
|
+
'data-testid'?: string;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* Whether to show the clear button.
|
|
57
|
+
* If false, the clear button will not be shown even if a value exists.
|
|
58
|
+
* @default true
|
|
59
|
+
*/
|
|
60
|
+
showClearButton?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Custom label text for the clear button tooltip.
|
|
63
|
+
* Falls back to the translation key 'c4r.button.clear' if not provided.
|
|
64
|
+
*/
|
|
65
|
+
clearButtonLabel?: string;
|
|
66
|
+
/**
|
|
67
|
+
* Custom element to display in the clear button.
|
|
68
|
+
* Overrides the default clear button.
|
|
69
|
+
*/
|
|
70
|
+
clearButton?: React.ReactNode;
|
|
71
|
+
};
|
|
72
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/SearchField/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAE1D,MAAM,MAAM,gBAAgB,GAAG,IAAI,CACjC,cAAc,EACd,YAAY,GAAG,SAAS,CACzB,GAAG;IACF;;;;;;;OAOG;IACH,OAAO,CAAC,EAAE,QAAQ,GAAG,aAAa,GAAG,UAAU,CAAA;IAE/C;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAA;IAErB;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IAEnB;;;;OAIG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;IAEjB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,IAAI,CAAA;IAE1B;;;OAGG;IACH,cAAc,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAEhC;;;OAGG;IACH,YAAY,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAE9B;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,GAAG;QAAE,aAAa,CAAC,EAAE,MAAM,CAAA;KAAE,CAAA;IAE7D;;;;OAIG;IACH,eAAe,CAAC,EAAE,OAAO,CAAA;IAEzB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAA;IAEzB;;;OAGG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;CAC9B,CAAA"}
|
|
@@ -22,6 +22,7 @@ export * from './Avatar';
|
|
|
22
22
|
export * from './FilterDropdown';
|
|
23
23
|
export * from './Menu';
|
|
24
24
|
export * from './SelectField';
|
|
25
|
+
export * from './SearchField';
|
|
25
26
|
export * from './Snackbar';
|
|
26
27
|
export * from './TablePaginationActions';
|
|
27
28
|
export * from './Tag';
|
|
@@ -51,6 +52,7 @@ export type * from './Avatar';
|
|
|
51
52
|
export type * from './FilterDropdown';
|
|
52
53
|
export type * from './Menu';
|
|
53
54
|
export type * from './SelectField';
|
|
55
|
+
export type * from './SearchField';
|
|
54
56
|
export type * from './Snackbar';
|
|
55
57
|
export type * from './TablePaginationActions';
|
|
56
58
|
export type * from './Tag';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,sBAAsB,CAAA;AACpC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,qBAAqB,CAAA;AACnC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,QAAQ,CAAA;AACtB,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,kBAAkB,CAAA;AAChC,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,kBAAkB,CAAA;AAChC,cAAc,QAAQ,CAAA;AACtB,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,0BAA0B,CAAA;AACxC,cAAc,OAAO,CAAA;AACrB,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AAErC,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,sBAAsB,CAAA;AACzC,mBAAmB,iBAAiB,CAAA;AACpC,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,qBAAqB,CAAA;AACxC,mBAAmB,cAAc,CAAA;AACjC,mBAAmB,cAAc,CAAA;AACjC,mBAAmB,QAAQ,CAAA;AAC3B,mBAAmB,oBAAoB,CAAA;AACvC,mBAAmB,qBAAqB,CAAA;AACxC,mBAAmB,qBAAqB,CAAA;AACxC,mBAAmB,gBAAgB,CAAA;AACnC,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,YAAY,CAAA;AAC/B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,kBAAkB,CAAA;AACrC,mBAAmB,SAAS,CAAA;AAC5B,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,kBAAkB,CAAA;AACrC,mBAAmB,QAAQ,CAAA;AAC3B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,YAAY,CAAA;AAC/B,mBAAmB,0BAA0B,CAAA;AAC7C,mBAAmB,OAAO,CAAA;AAC1B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,uBAAuB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,sBAAsB,CAAA;AACpC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAC7B,cAAc,qBAAqB,CAAA;AACnC,cAAc,cAAc,CAAA;AAC5B,cAAc,cAAc,CAAA;AAC5B,cAAc,QAAQ,CAAA;AACtB,cAAc,oBAAoB,CAAA;AAClC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA;AACnC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,UAAU,CAAA;AACxB,cAAc,YAAY,CAAA;AAC1B,cAAc,eAAe,CAAA;AAC7B,cAAc,UAAU,CAAA;AACxB,cAAc,eAAe,CAAA;AAC7B,cAAc,kBAAkB,CAAA;AAChC,cAAc,SAAS,CAAA;AACvB,cAAc,UAAU,CAAA;AACxB,cAAc,kBAAkB,CAAA;AAChC,cAAc,QAAQ,CAAA;AACtB,cAAc,eAAe,CAAA;AAC7B,cAAc,eAAe,CAAA;AAC7B,cAAc,YAAY,CAAA;AAC1B,cAAc,0BAA0B,CAAA;AACxC,cAAc,OAAO,CAAA;AACrB,cAAc,eAAe,CAAA;AAC7B,cAAc,uBAAuB,CAAA;AAErC,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,sBAAsB,CAAA;AACzC,mBAAmB,iBAAiB,CAAA;AACpC,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,qBAAqB,CAAA;AACxC,mBAAmB,cAAc,CAAA;AACjC,mBAAmB,cAAc,CAAA;AACjC,mBAAmB,QAAQ,CAAA;AAC3B,mBAAmB,oBAAoB,CAAA;AACvC,mBAAmB,qBAAqB,CAAA;AACxC,mBAAmB,qBAAqB,CAAA;AACxC,mBAAmB,gBAAgB,CAAA;AACnC,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,YAAY,CAAA;AAC/B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,kBAAkB,CAAA;AACrC,mBAAmB,SAAS,CAAA;AAC5B,mBAAmB,UAAU,CAAA;AAC7B,mBAAmB,kBAAkB,CAAA;AACrC,mBAAmB,QAAQ,CAAA;AAC3B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,YAAY,CAAA;AAC/B,mBAAmB,0BAA0B,CAAA;AAC7C,mBAAmB,OAAO,CAAA;AAC1B,mBAAmB,eAAe,CAAA;AAClC,mBAAmB,uBAAuB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/localization/en.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/localization/en.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAwJ0B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../../src/localization/es.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"es.d.ts","sourceRoot":"","sources":["../../../src/localization/es.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBA0J0B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"id.d.ts","sourceRoot":"","sources":["../../../src/localization/id.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"id.d.ts","sourceRoot":"","sources":["../../../src/localization/id.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEA,wBAwJ0B"}
|
|
@@ -10,6 +10,7 @@ export declare const messages: {
|
|
|
10
10
|
copy: string;
|
|
11
11
|
save: string;
|
|
12
12
|
add: string;
|
|
13
|
+
clear: string;
|
|
13
14
|
showOptions: string;
|
|
14
15
|
hide: string;
|
|
15
16
|
show: string;
|
|
@@ -159,6 +160,7 @@ export declare const messages: {
|
|
|
159
160
|
copy: string;
|
|
160
161
|
save: string;
|
|
161
162
|
add: string;
|
|
163
|
+
clear: string;
|
|
162
164
|
showOptions: string;
|
|
163
165
|
hide: string;
|
|
164
166
|
show: string;
|
|
@@ -306,6 +308,7 @@ export declare const messages: {
|
|
|
306
308
|
copy: string;
|
|
307
309
|
save: string;
|
|
308
310
|
add: string;
|
|
311
|
+
clear: string;
|
|
309
312
|
showOptions: string;
|
|
310
313
|
hide: string;
|
|
311
314
|
show: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/localization/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/localization/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"carto-theme.d.ts","sourceRoot":"","sources":["../../../src/theme/carto-theme.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,UAAU,EACf,KAAK,SAAS,EAGf,MAAM,eAAe,CAAA;
|
|
1
|
+
{"version":3,"file":"carto-theme.d.ts","sourceRoot":"","sources":["../../../src/theme/carto-theme.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,UAAU,EACf,KAAK,SAAS,EAGf,MAAM,eAAe,CAAA;AAkBtB,eAAO,MAAM,iBAAiB;;;cAGc,UAAU,EAAE;;;;;;;;;;;eAiBlC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAvBnB,CAAC;;;;;;;wBAQP,CAAH;;;;;;;;;;;;;;;;;;;;;;;wBA+BuD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAqDw2C,CAAC;;;;;;;;;;;wBAA0Z,CAAC;;;wBAAoF,CAAC;;;wBAA0F,CAAC;;;wBAAyF,CAAC;;;wBAAsG,CAAC;;;wBAAoF,CAAC;;;wBAA0F,CAAC;;;wBAAyF,CAAC;;;wBAA+G,CAAC;;;wBAA4F,CAAC;;;wBAAkG,CAAC;;;wBAAiG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;CAH30F,CAAA;AAED,eAAO,MAAM,KAAK,+BAAsD,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"layout.d.ts","sourceRoot":"","sources":["../../../../src/theme/components/layout.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,eAAe,CAAA;AAEjD,eAAO,MAAM,eAAe,EAAE,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CAOtD,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"navigation.d.ts","sourceRoot":"","sources":["../../../../src/theme/components/navigation.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,eAAe,CAAA;AAEjD,eAAO,MAAM,mBAAmB,EAAE,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,
|
|
1
|
+
{"version":3,"file":"navigation.d.ts","sourceRoot":"","sources":["../../../../src/theme/components/navigation.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,eAAe,CAAA;AAEjD,eAAO,MAAM,mBAAmB,EAAE,OAAO,CAAC,UAAU,CAAC,KAAK,CAAC,CA6U1D,CAAA"}
|
package/dist/widgets/index.cjs
CHANGED
|
@@ -4,13 +4,14 @@ const jsxRuntime = require("react/jsx-runtime");
|
|
|
4
4
|
const React = require("react");
|
|
5
5
|
const material = require("@mui/material");
|
|
6
6
|
const reactIntl = require("react-intl");
|
|
7
|
-
const cssUtils = require("../css-utils-
|
|
7
|
+
const cssUtils = require("../css-utils-DjvM17Vb.cjs");
|
|
8
8
|
const _ReactEcharts = require("echarts-for-react");
|
|
9
9
|
const reactWindow = require("react-window");
|
|
10
|
-
const
|
|
11
|
-
const Alert = require("../Alert-
|
|
10
|
+
const Search = require("../Search-CMWbM9nD.cjs");
|
|
11
|
+
const Alert = require("../Alert-CPvYAHO_.cjs");
|
|
12
12
|
const iconsMaterial = require("@mui/icons-material");
|
|
13
13
|
const paletteUtils = require("../palette-utils-B9ybmwiI.cjs");
|
|
14
|
+
const SwatchSquare = require("../SwatchSquare-DuXPIL7t.cjs");
|
|
14
15
|
function detectTouchscreen() {
|
|
15
16
|
let result = false;
|
|
16
17
|
if (window.PointerEvent && "maxTouchPoints" in navigator) {
|
|
@@ -1229,7 +1230,7 @@ function CategoryWidgetUI({
|
|
|
1229
1230
|
}),
|
|
1230
1231
|
onChange: handleSearchChange,
|
|
1231
1232
|
InputProps: {
|
|
1232
|
-
startAdornment: /* @__PURE__ */ jsxRuntime.jsx(material.InputAdornment, { position: "start", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1233
|
+
startAdornment: /* @__PURE__ */ jsxRuntime.jsx(material.InputAdornment, { position: "start", children: /* @__PURE__ */ jsxRuntime.jsx(Search.Search, {}) })
|
|
1233
1234
|
},
|
|
1234
1235
|
inputProps: {
|
|
1235
1236
|
tabIndex: 0,
|
|
@@ -1273,7 +1274,7 @@ function CategoryWidgetUI({
|
|
|
1273
1274
|
"data-testid": "show-all-categories-button",
|
|
1274
1275
|
size: "small",
|
|
1275
1276
|
color: "primary",
|
|
1276
|
-
startIcon: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1277
|
+
startIcon: /* @__PURE__ */ jsxRuntime.jsx(Search.Search, {}),
|
|
1277
1278
|
onClick: handleShowAllCategoriesClicked,
|
|
1278
1279
|
children: intlConfig.formatMessage(
|
|
1279
1280
|
{ id: "c4r.widgets.category.searchInfo" },
|
|
@@ -5541,7 +5542,7 @@ function ComparativeCategoryWidgetUI({
|
|
|
5541
5542
|
onChange: (ev) => setSearchValue(ev.currentTarget.value),
|
|
5542
5543
|
onFocus: (ev) => ev.currentTarget.scrollIntoView(),
|
|
5543
5544
|
InputProps: {
|
|
5544
|
-
startAdornment: /* @__PURE__ */ jsxRuntime.jsx(material.InputAdornment, { position: "start", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5545
|
+
startAdornment: /* @__PURE__ */ jsxRuntime.jsx(material.InputAdornment, { position: "start", children: /* @__PURE__ */ jsxRuntime.jsx(Search.Search, {}) })
|
|
5545
5546
|
}
|
|
5546
5547
|
}
|
|
5547
5548
|
) }) : null,
|
|
@@ -5577,7 +5578,7 @@ function ComparativeCategoryWidgetUI({
|
|
|
5577
5578
|
{
|
|
5578
5579
|
size: "small",
|
|
5579
5580
|
color: "primary",
|
|
5580
|
-
startIcon: /* @__PURE__ */ jsxRuntime.jsx(
|
|
5581
|
+
startIcon: /* @__PURE__ */ jsxRuntime.jsx(Search.Search, {}),
|
|
5581
5582
|
onClick: enableSearchMode,
|
|
5582
5583
|
children: intlConfig.formatMessage(
|
|
5583
5584
|
{ id: "c4r.widgets.category.searchInfo" },
|
package/dist/widgets/index.js
CHANGED
|
@@ -2,13 +2,14 @@ import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import React, { useMemo, useState, useEffect, useCallback, useRef, createContext, useContext, useLayoutEffect, createRef } from "react";
|
|
3
3
|
import { useTheme, styled, Box, Skeleton, Grid, Link, darken, Button, Divider, TextField, InputAdornment, Checkbox, Tooltip, debounce, Slider, TableCell, Table, TableHead, TableRow, TableBody, TableContainer, TableSortLabel, TablePagination, IconButton as IconButton$1, Menu, MenuItem, SvgIcon, Icon, Collapse, LinearProgress, Typography as Typography$1, lighten, ClickAwayListener, ToggleButton, capitalize, ListItem, Chip, List, Paper, Popover, Select, ListItemText, Drawer } from "@mui/material";
|
|
4
4
|
import { useIntl } from "react-intl";
|
|
5
|
-
import { k as getDefaultExportFromCjs, j as useImperativeIntl, T as Typography, S as SPACING, i as IconButton, B as BREAKPOINTS, a as TablePaginationActions, e as ellipsisStyles, b as ICON_SIZE_MEDIUM } from "../css-utils-
|
|
5
|
+
import { k as getDefaultExportFromCjs, j as useImperativeIntl, T as Typography, S as SPACING, i as IconButton, B as BREAKPOINTS, a as TablePaginationActions, e as ellipsisStyles, b as ICON_SIZE_MEDIUM } from "../css-utils-BHYA7By_.js";
|
|
6
6
|
import _ReactEcharts from "echarts-for-react";
|
|
7
7
|
import { FixedSizeList } from "react-window";
|
|
8
|
-
import { S as Search
|
|
9
|
-
import { A as Alert, L as Link$1 } from "../Alert-
|
|
8
|
+
import { S as Search } from "../Search-C7wkXu3f.js";
|
|
9
|
+
import { A as Alert, L as Link$1 } from "../Alert-BfDnWlbD.js";
|
|
10
10
|
import { ChevronLeft, ChevronRight, ExpandLess, ExpandMore, MoreVert, KeyboardArrowDown, ErrorOutline, Cancel, VisibilityOutlined, VisibilityOffOutlined, Close, LayersOutlined } from "@mui/icons-material";
|
|
11
11
|
import { a as getColorByCategory, c as commonPalette, b as getPalette } from "../palette-utils-BHqJlHm9.js";
|
|
12
|
+
import { S as SwatchSquare } from "../SwatchSquare-B6KYVoqV.js";
|
|
12
13
|
function detectTouchscreen() {
|
|
13
14
|
let result = false;
|
|
14
15
|
if (window.PointerEvent && "maxTouchPoints" in navigator) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carto/meridian-ds",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "CARTO Meridian Design System",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -170,6 +170,5 @@
|
|
|
170
170
|
"bugs": {
|
|
171
171
|
"url": "https://github.com/CartoDB/meridian-ds/issues"
|
|
172
172
|
},
|
|
173
|
-
"homepage": "https://github.com/CartoDB/meridian-ds#readme"
|
|
174
|
-
"stableVersion": "2.6.1"
|
|
173
|
+
"homepage": "https://github.com/CartoDB/meridian-ds#readme"
|
|
175
174
|
}
|