@carto/meridian-ds 2.6.2-alpha.0 → 2.7.0-alpha-loader.2
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 +8 -3
- package/dist/{Alert-1A6BG2aO.js → Alert-BZPM5zpX.js} +1 -1
- package/dist/{Alert-eVzJvC47.cjs → Alert-C4W0H_uN.cjs} +1 -1
- package/dist/{MenuItem-6ZIV5V7a.cjs → MenuItem-CgF4QdGi.cjs} +12 -3
- package/dist/{MenuItem-DgHhHW-j.js → MenuItem-DRUK149i.js} +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 +366 -3
- package/dist/components/index.js +369 -6
- package/dist/{css-utils-BNXxLCyb.cjs → css-utils-CH7es90t.cjs} +18 -0
- package/dist/{css-utils-lmkjeCdF.js → css-utils-CjUBRJVK.js} +18 -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/Loader/Loader.d.ts +43 -0
- package/dist/types/components/Loader/Loader.d.ts.map +1 -0
- package/dist/types/components/Loader/Loader.stories.d.ts +79 -0
- package/dist/types/components/Loader/Loader.stories.d.ts.map +1 -0
- package/dist/types/components/Loader/Loader.test.d.ts +2 -0
- package/dist/types/components/Loader/Loader.test.d.ts.map +1 -0
- package/dist/types/components/Loader/index.d.ts +3 -0
- package/dist/types/components/Loader/index.d.ts.map +1 -0
- 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 +4 -0
- package/dist/types/components/index.d.ts.map +1 -1
- package/dist/types/localization/en.d.ts +6 -0
- package/dist/types/localization/en.d.ts.map +1 -1
- package/dist/types/localization/es.d.ts +6 -0
- package/dist/types/localization/es.d.ts.map +1 -1
- package/dist/types/localization/id.d.ts +6 -0
- package/dist/types/localization/id.d.ts.map +1 -1
- package/dist/types/localization/index.d.ts +18 -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/types/widgets/CategoryWidgetUI/CategoryWidgetUI.styled.d.ts +5 -5
- package/dist/widgets/index.cjs +8 -7
- package/dist/widgets/index.js +4 -3
- package/package.json +2 -3
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { TypographyProps } from '../Typography';
|
|
3
|
+
export type LoaderProps = {
|
|
4
|
+
/**
|
|
5
|
+
* The label to display.
|
|
6
|
+
* If not provided, the default label 'Loading...' will be displayed.
|
|
7
|
+
*/
|
|
8
|
+
label?: ReactNode;
|
|
9
|
+
/**
|
|
10
|
+
* The props to pass to the label Typography component to override the default styles.
|
|
11
|
+
*/
|
|
12
|
+
labelTypographyProps?: TypographyProps;
|
|
13
|
+
/**
|
|
14
|
+
* The second label to display.
|
|
15
|
+
* If not provided, no second label will be displayed.
|
|
16
|
+
*/
|
|
17
|
+
secondLabel?: ReactNode;
|
|
18
|
+
/**
|
|
19
|
+
* The props to pass to the second label Typography component to override the default styles.
|
|
20
|
+
*/
|
|
21
|
+
secondLabelTypographyProps?: TypographyProps;
|
|
22
|
+
/**
|
|
23
|
+
* The color of the circular progress.
|
|
24
|
+
* It supports both primary and secondary colors.
|
|
25
|
+
* @default 'primary'
|
|
26
|
+
*/
|
|
27
|
+
color?: 'primary' | 'secondary';
|
|
28
|
+
/**
|
|
29
|
+
* The size of the component.
|
|
30
|
+
* If using a number, the pixel unit is assumed.
|
|
31
|
+
* If using a string, you need to provide the CSS unit, for example '3rem'.
|
|
32
|
+
* @default 40
|
|
33
|
+
*/
|
|
34
|
+
size?: number | string;
|
|
35
|
+
/**
|
|
36
|
+
* If `true`, the component will take the full height of its container.
|
|
37
|
+
* @default false
|
|
38
|
+
*/
|
|
39
|
+
fullHeight?: boolean;
|
|
40
|
+
};
|
|
41
|
+
declare const Loader: import('react').ForwardRefExoticComponent<LoaderProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
42
|
+
export default Loader;
|
|
43
|
+
//# sourceMappingURL=Loader.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Loader.d.ts","sourceRoot":"","sources":["../../../../src/components/Loader/Loader.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAA4B,MAAM,OAAO,CAAA;AAE3D,OAAO,EAAc,eAAe,EAAE,MAAM,eAAe,CAAA;AAG3D,MAAM,MAAM,WAAW,GAAG;IACxB;;;OAGG;IACH,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB;;OAEG;IACH,oBAAoB,CAAC,EAAE,eAAe,CAAA;IACtC;;;OAGG;IACH,WAAW,CAAC,EAAE,SAAS,CAAA;IACvB;;OAEG;IACH,0BAA0B,CAAC,EAAE,eAAe,CAAA;IAC5C;;;;OAIG;IACH,KAAK,CAAC,EAAE,SAAS,GAAG,WAAW,CAAA;IAC/B;;;;;OAKG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA;AAgFD,QAAA,MAAM,MAAM,wGAAsB,CAAA;AAClC,eAAe,MAAM,CAAA"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { LoaderProps } from './Loader';
|
|
2
|
+
declare const options: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: import('react').ForwardRefExoticComponent<LoaderProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
5
|
+
tags: string[];
|
|
6
|
+
argTypes: {
|
|
7
|
+
color: {
|
|
8
|
+
control: "select";
|
|
9
|
+
options: string[];
|
|
10
|
+
};
|
|
11
|
+
size: {
|
|
12
|
+
control: "select";
|
|
13
|
+
options: number[];
|
|
14
|
+
};
|
|
15
|
+
label: {
|
|
16
|
+
control: "text";
|
|
17
|
+
};
|
|
18
|
+
secondLabel: {
|
|
19
|
+
control: "text";
|
|
20
|
+
};
|
|
21
|
+
labelTypographyProps: {
|
|
22
|
+
control: "object";
|
|
23
|
+
};
|
|
24
|
+
secondLabelTypographyProps: {
|
|
25
|
+
control: "object";
|
|
26
|
+
};
|
|
27
|
+
fullHeight: {
|
|
28
|
+
table: {
|
|
29
|
+
defaultValue: {
|
|
30
|
+
summary: string;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
control: "boolean";
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
args: {
|
|
37
|
+
color: string;
|
|
38
|
+
fullHeight: boolean;
|
|
39
|
+
};
|
|
40
|
+
parameters: {
|
|
41
|
+
design: {
|
|
42
|
+
type: string;
|
|
43
|
+
url: string;
|
|
44
|
+
};
|
|
45
|
+
status: {
|
|
46
|
+
type: string;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
export default options;
|
|
51
|
+
export declare const Playground: {
|
|
52
|
+
render: (args: LoaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
53
|
+
parameters: {
|
|
54
|
+
chromatic: {
|
|
55
|
+
disableSnapshot: boolean;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
export declare const Color: {
|
|
60
|
+
render: (args: LoaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
61
|
+
};
|
|
62
|
+
export declare const Size: {
|
|
63
|
+
render: (args: LoaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
64
|
+
};
|
|
65
|
+
export declare const LabelAndSecondLabel: {
|
|
66
|
+
render: (args: LoaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
67
|
+
};
|
|
68
|
+
export declare const FullHeight: {
|
|
69
|
+
render: (args: LoaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
70
|
+
};
|
|
71
|
+
export declare const CustomSXStyles: {
|
|
72
|
+
render: (args: LoaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
73
|
+
args: {
|
|
74
|
+
sx: {
|
|
75
|
+
border: string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
//# sourceMappingURL=Loader.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Loader.stories.d.ts","sourceRoot":"","sources":["../../../../src/components/Loader/Loader.stories.tsx"],"names":[],"mappings":"AAEA,OAAe,EAAE,WAAW,EAAE,MAAM,UAAU,CAAA;AAG9C,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6CG,CAAA;AAChB,eAAe,OAAO,CAAA;AAqGtB,eAAO,MAAM,UAAU;mBAnGC,WAAW;;;;;;CAwGlC,CAAA;AAED,eAAO,MAAM,KAAK;mBAxGW,WAAW;CA0GvC,CAAA;AAED,eAAO,MAAM,IAAI;mBA9FW,WAAW;CAgGtC,CAAA;AAED,eAAO,MAAM,mBAAmB;mBA7EH,WAAW;CA+EvC,CAAA;AAED,eAAO,MAAM,UAAU;mBAlCO,WAAW;CAoCxC,CAAA;AAED,eAAO,MAAM,cAAc;mBA1HH,WAAW;;;;;;CA+HlC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Loader.test.d.ts","sourceRoot":"","sources":["../../../../src/components/Loader/Loader.test.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Loader/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,MAAM,EAAE,MAAM,UAAU,CAAA;AAC5C,mBAAmB,UAAU,CAAA"}
|
|
@@ -107,7 +107,7 @@ declare const options: {
|
|
|
107
107
|
};
|
|
108
108
|
export default options;
|
|
109
109
|
export declare const Playground: {
|
|
110
|
-
render: ({ label, subtitle, dense, disabled, destructive, ...args }: MenuProps & MenuItemProps & {
|
|
110
|
+
render: ({ label, subtitle, dense, disabled, destructive, disableGutters, ...args }: MenuProps & MenuItemProps & {
|
|
111
111
|
label: string;
|
|
112
112
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
113
113
|
args: {
|
|
@@ -123,7 +123,7 @@ export declare const Guide: {
|
|
|
123
123
|
};
|
|
124
124
|
};
|
|
125
125
|
export declare const Dense: {
|
|
126
|
-
render: ({ label, subtitle, dense, disabled, destructive, ...args }: MenuProps & MenuItemProps & {
|
|
126
|
+
render: ({ label, subtitle, dense, disabled, destructive, disableGutters, ...args }: MenuProps & MenuItemProps & {
|
|
127
127
|
label: string;
|
|
128
128
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
129
129
|
args: {
|
|
@@ -173,7 +173,7 @@ export declare const Destructive: {
|
|
|
173
173
|
};
|
|
174
174
|
};
|
|
175
175
|
export declare const Subtitle: {
|
|
176
|
-
render: ({ label, subtitle, dense, disabled, destructive, ...args }: MenuProps & MenuItemProps & {
|
|
176
|
+
render: ({ label, subtitle, dense, disabled, destructive, disableGutters, ...args }: MenuProps & MenuItemProps & {
|
|
177
177
|
label: string;
|
|
178
178
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
179
179
|
args: {
|
|
@@ -207,7 +207,7 @@ export declare const MenuListWrapper: {
|
|
|
207
207
|
};
|
|
208
208
|
};
|
|
209
209
|
export declare const CustomWidth: {
|
|
210
|
-
render: ({ label, subtitle, dense, disabled, destructive, ...args }: MenuProps & MenuItemProps & {
|
|
210
|
+
render: ({ label, subtitle, dense, disabled, destructive, disableGutters, ...args }: MenuProps & MenuItemProps & {
|
|
211
211
|
label: string;
|
|
212
212
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
213
213
|
args: {
|
|
@@ -216,7 +216,7 @@ export declare const CustomWidth: {
|
|
|
216
216
|
};
|
|
217
217
|
};
|
|
218
218
|
export declare const CustomHeight: {
|
|
219
|
-
render: ({ label, subtitle, dense, disabled, destructive, ...args }: MenuProps & MenuItemProps & {
|
|
219
|
+
render: ({ label, subtitle, dense, disabled, destructive, disableGutters, ...args }: MenuProps & MenuItemProps & {
|
|
220
220
|
label: string;
|
|
221
221
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
222
222
|
args: {
|
|
@@ -224,8 +224,17 @@ export declare const CustomHeight: {
|
|
|
224
224
|
label: string;
|
|
225
225
|
};
|
|
226
226
|
};
|
|
227
|
+
export declare const DisableGutters: {
|
|
228
|
+
render: ({ label, subtitle, dense, disabled, destructive, disableGutters, ...args }: MenuProps & MenuItemProps & {
|
|
229
|
+
label: string;
|
|
230
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
231
|
+
args: {
|
|
232
|
+
disableGutters: boolean;
|
|
233
|
+
label: string;
|
|
234
|
+
};
|
|
235
|
+
};
|
|
227
236
|
export declare const PlacementTop: {
|
|
228
|
-
render: ({ label, subtitle, dense, disabled, destructive, ...args }: MenuProps & MenuItemProps & {
|
|
237
|
+
render: ({ label, subtitle, dense, disabled, destructive, disableGutters, ...args }: MenuProps & MenuItemProps & {
|
|
229
238
|
label: string;
|
|
230
239
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
231
240
|
args: {
|
|
@@ -241,7 +250,7 @@ export declare const PlacementTop: {
|
|
|
241
250
|
};
|
|
242
251
|
};
|
|
243
252
|
export declare const PlacementRight: {
|
|
244
|
-
render: ({ label, subtitle, dense, disabled, destructive, ...args }: MenuProps & MenuItemProps & {
|
|
253
|
+
render: ({ label, subtitle, dense, disabled, destructive, disableGutters, ...args }: MenuProps & MenuItemProps & {
|
|
245
254
|
label: string;
|
|
246
255
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
247
256
|
args: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Menu.stories.d.ts","sourceRoot":"","sources":["../../../../../src/components/Menu/Menu/Menu.stories.tsx"],"names":[],"mappings":"AA6BA,OAAO,EAGL,aAAa,EAEb,aAAa,EACb,SAAS,EACV,MAAM,mBAAmB,CAAA;AAkB1B,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyFG,CAAA;AAChB,eAAe,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"Menu.stories.d.ts","sourceRoot":"","sources":["../../../../../src/components/Menu/Menu/Menu.stories.tsx"],"names":[],"mappings":"AA6BA,OAAO,EAGL,aAAa,EAEb,aAAa,EACb,SAAS,EACV,MAAM,mBAAmB,CAAA;AAkB1B,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyFG,CAAA;AAChB,eAAe,OAAO,CAAA;AA03BtB,eAAO,MAAM,UAAU;yFAlhBpB,SAAS,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;CAqhB/C,CAAA;AAED,eAAO,MAAM,KAAK;;;;;;;CAKjB,CAAA;AAED,eAAO,MAAM,KAAK;yFA9hBf,SAAS,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;;CAiiB/C,CAAA;AAED,eAAO,MAAM,QAAQ;yEAjKlB,SAAS,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;;CAuK/C,CAAA;AAED,eAAO,MAAM,MAAM;2CA74BhB,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;CAg5BnC,CAAA;AAED,eAAO,MAAM,OAAO;qDAjuBjB,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;CAouBnC,CAAA;AAED,eAAO,MAAM,SAAS;iCA5lBnB,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;CAimBnC,CAAA;AAED,eAAO,MAAM,WAAW;iCAnoBrB,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;CAsoBnC,CAAA;AAED,eAAO,MAAM,QAAQ;yFAjkBlB,SAAS,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;;CAokB/C,CAAA;AAED,eAAO,MAAM,YAAY;yEAnXtB,SAAS,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;;CA0X/C,CAAA;AAED,eAAO,MAAM,aAAa;yEAjRvB,SAAS,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;CAoR/C,CAAA;AAED,eAAO,MAAM,eAAe;yEA7ezB,aAAa,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;CAgfnD,CAAA;AAED,eAAO,MAAM,WAAW;yFAzlBrB,SAAS,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;;CA4lB/C,CAAA;AAED,eAAO,MAAM,YAAY;yFA9lBtB,SAAS,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;;CAimB/C,CAAA;AAED,eAAO,MAAM,cAAc;yFAnmBxB,SAAS,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;;CAsmB/C,CAAA;AAED,eAAO,MAAM,YAAY;yFAxmBtB,SAAS,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;;;CA+mB/C,CAAA;AAED,eAAO,MAAM,cAAc;yFAjnBxB,SAAS,GAAG,aAAa,GAAG;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;;;CAwnB/C,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MenuItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/Menu/MenuItem/MenuItem.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;
|
|
1
|
+
{"version":3,"file":"MenuItem.d.ts","sourceRoot":"","sources":["../../../../../src/components/Menu/MenuItem/MenuItem.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AA+LxC,QAAA,MAAM,QAAQ,sHAAwB,CAAA;AACtC,eAAe,QAAQ,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SearchField.d.ts","sourceRoot":"","sources":["../../../../src/components/SearchField/SearchField.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAmH1C,QAAA,MAAM,WAAW,0HAA2B,CAAA;AAC5C,eAAe,WAAW,CAAA"}
|
|
@@ -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;UAoC3C,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"}
|
|
@@ -7,6 +7,7 @@ export * from './ToggleButtonGroup';
|
|
|
7
7
|
export * from './Typography';
|
|
8
8
|
export * from './IconButton';
|
|
9
9
|
export * from './Link';
|
|
10
|
+
export * from './Loader';
|
|
10
11
|
export * from './ScreenReaderOnly';
|
|
11
12
|
export * from './CopiableComponent';
|
|
12
13
|
export * from './CopiableInputText';
|
|
@@ -22,6 +23,7 @@ export * from './Avatar';
|
|
|
22
23
|
export * from './FilterDropdown';
|
|
23
24
|
export * from './Menu';
|
|
24
25
|
export * from './SelectField';
|
|
26
|
+
export * from './SearchField';
|
|
25
27
|
export * from './Snackbar';
|
|
26
28
|
export * from './TablePaginationActions';
|
|
27
29
|
export * from './Tag';
|
|
@@ -36,6 +38,7 @@ export type * from './ToggleButtonGroup';
|
|
|
36
38
|
export type * from './Typography';
|
|
37
39
|
export type * from './IconButton';
|
|
38
40
|
export type * from './Link';
|
|
41
|
+
export type * from './Loader';
|
|
39
42
|
export type * from './ScreenReaderOnly';
|
|
40
43
|
export type * from './CopiableComponent';
|
|
41
44
|
export type * from './CopiableInputText';
|
|
@@ -51,6 +54,7 @@ export type * from './Avatar';
|
|
|
51
54
|
export type * from './FilterDropdown';
|
|
52
55
|
export type * from './Menu';
|
|
53
56
|
export type * from './SelectField';
|
|
57
|
+
export type * from './SearchField';
|
|
54
58
|
export type * from './Snackbar';
|
|
55
59
|
export type * from './TablePaginationActions';
|
|
56
60
|
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,UAAU,CAAA;AACxB,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,UAAU,CAAA;AAC7B,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"}
|
|
@@ -9,6 +9,7 @@ declare const _default: {
|
|
|
9
9
|
copy: string;
|
|
10
10
|
save: string;
|
|
11
11
|
add: string;
|
|
12
|
+
clear: string;
|
|
12
13
|
showOptions: string;
|
|
13
14
|
hide: string;
|
|
14
15
|
show: string;
|
|
@@ -49,6 +50,11 @@ declare const _default: {
|
|
|
49
50
|
changesSaved: string;
|
|
50
51
|
copiedToClipboard: string;
|
|
51
52
|
};
|
|
53
|
+
utils: {
|
|
54
|
+
loader: {
|
|
55
|
+
label: string;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
52
58
|
widgets: {
|
|
53
59
|
category: {
|
|
54
60
|
apply: string;
|
|
@@ -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,wBA6J0B"}
|
|
@@ -9,6 +9,7 @@ declare const _default: {
|
|
|
9
9
|
copy: string;
|
|
10
10
|
save: string;
|
|
11
11
|
add: string;
|
|
12
|
+
clear: string;
|
|
12
13
|
showOptions: string;
|
|
13
14
|
hide: string;
|
|
14
15
|
show: string;
|
|
@@ -49,6 +50,11 @@ declare const _default: {
|
|
|
49
50
|
changesSaved: string;
|
|
50
51
|
copiedToClipboard: string;
|
|
51
52
|
};
|
|
53
|
+
utils: {
|
|
54
|
+
loader: {
|
|
55
|
+
label: string;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
52
58
|
widgets: {
|
|
53
59
|
category: {
|
|
54
60
|
apply: string;
|
|
@@ -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,wBA+J0B"}
|
|
@@ -9,6 +9,7 @@ declare const _default: {
|
|
|
9
9
|
copy: string;
|
|
10
10
|
save: string;
|
|
11
11
|
add: string;
|
|
12
|
+
clear: string;
|
|
12
13
|
showOptions: string;
|
|
13
14
|
hide: string;
|
|
14
15
|
show: string;
|
|
@@ -49,6 +50,11 @@ declare const _default: {
|
|
|
49
50
|
changesSaved: string;
|
|
50
51
|
copiedToClipboard: string;
|
|
51
52
|
};
|
|
53
|
+
utils: {
|
|
54
|
+
loader: {
|
|
55
|
+
label: string;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
52
58
|
widgets: {
|
|
53
59
|
category: {
|
|
54
60
|
apply: string;
|