@instructure/ui-instructure 10.21.1-snapshot-11
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 +11 -0
- package/README.md +30 -0
- package/es/AiInformation/index.js +179 -0
- package/es/AiInformation/props.js +26 -0
- package/es/AiInformation/styles.js +85 -0
- package/es/AiInformation/theme.js +52 -0
- package/es/DataPermissionLevels/index.js +144 -0
- package/es/DataPermissionLevels/props.js +26 -0
- package/es/DataPermissionLevels/styles.js +96 -0
- package/es/DataPermissionLevels/theme.js +54 -0
- package/es/NutritionFacts/index.js +152 -0
- package/es/NutritionFacts/props.js +26 -0
- package/es/NutritionFacts/styles.js +72 -0
- package/es/NutritionFacts/theme.js +49 -0
- package/es/index.js +26 -0
- package/lib/AiInformation/index.js +185 -0
- package/lib/AiInformation/props.js +31 -0
- package/lib/AiInformation/styles.js +91 -0
- package/lib/AiInformation/theme.js +58 -0
- package/lib/DataPermissionLevels/index.js +151 -0
- package/lib/DataPermissionLevels/props.js +31 -0
- package/lib/DataPermissionLevels/styles.js +102 -0
- package/lib/DataPermissionLevels/theme.js +60 -0
- package/lib/NutritionFacts/index.js +159 -0
- package/lib/NutritionFacts/props.js +31 -0
- package/lib/NutritionFacts/styles.js +78 -0
- package/lib/NutritionFacts/theme.js +55 -0
- package/lib/index.js +26 -0
- package/lib/package.json +1 -0
- package/package.json +54 -0
- package/src/AiInformation/README.md +298 -0
- package/src/AiInformation/index.tsx +182 -0
- package/src/AiInformation/props.ts +163 -0
- package/src/AiInformation/styles.ts +92 -0
- package/src/AiInformation/theme.ts +58 -0
- package/src/DataPermissionLevels/README.md +47 -0
- package/src/DataPermissionLevels/index.tsx +137 -0
- package/src/DataPermissionLevels/props.ts +109 -0
- package/src/DataPermissionLevels/styles.ts +106 -0
- package/src/DataPermissionLevels/theme.ts +59 -0
- package/src/NutritionFacts/README.md +99 -0
- package/src/NutritionFacts/index.tsx +147 -0
- package/src/NutritionFacts/props.ts +106 -0
- package/src/NutritionFacts/styles.ts +79 -0
- package/src/NutritionFacts/theme.ts +52 -0
- package/src/index.ts +29 -0
- package/tsconfig.build.json +50 -0
- package/tsconfig.build.tsbuildinfo +1 -0
- package/tsconfig.json +4 -0
- package/types/AiInformation/index.d.ts +10 -0
- package/types/AiInformation/index.d.ts.map +1 -0
- package/types/AiInformation/props.d.ts +92 -0
- package/types/AiInformation/props.d.ts.map +1 -0
- package/types/AiInformation/styles.d.ts +14 -0
- package/types/AiInformation/styles.d.ts.map +1 -0
- package/types/AiInformation/theme.d.ts +10 -0
- package/types/AiInformation/theme.d.ts.map +1 -0
- package/types/DataPermissionLevels/index.d.ts +10 -0
- package/types/DataPermissionLevels/index.d.ts.map +1 -0
- package/types/DataPermissionLevels/props.d.ts +55 -0
- package/types/DataPermissionLevels/props.d.ts.map +1 -0
- package/types/DataPermissionLevels/styles.d.ts +14 -0
- package/types/DataPermissionLevels/styles.d.ts.map +1 -0
- package/types/DataPermissionLevels/theme.d.ts +10 -0
- package/types/DataPermissionLevels/theme.d.ts.map +1 -0
- package/types/NutritionFacts/index.d.ts +10 -0
- package/types/NutritionFacts/index.d.ts.map +1 -0
- package/types/NutritionFacts/props.d.ts +55 -0
- package/types/NutritionFacts/props.d.ts.map +1 -0
- package/types/NutritionFacts/styles.d.ts +14 -0
- package/types/NutritionFacts/styles.d.ts.map +1 -0
- package/types/NutritionFacts/theme.d.ts +10 -0
- package/types/NutritionFacts/theme.d.ts.map +1 -0
- package/types/index.d.ts +7 -0
- package/types/index.d.ts.map +1 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion';
|
|
2
|
+
import type { DataPermissionLevelsTheme, OtherHTMLAttributes } from '@instructure/shared-types';
|
|
3
|
+
type DataPermissionLevelsOwnProps = {
|
|
4
|
+
/**
|
|
5
|
+
* i18n text for the label of the modal
|
|
6
|
+
*/
|
|
7
|
+
modalLabel: string;
|
|
8
|
+
/**
|
|
9
|
+
* i18n text for the dataPermissionLevels title
|
|
10
|
+
*/
|
|
11
|
+
title: string;
|
|
12
|
+
/**
|
|
13
|
+
* i18n text for the "model and data" heading of the dataPermissionLevels
|
|
14
|
+
*/
|
|
15
|
+
data: {
|
|
16
|
+
level: string;
|
|
17
|
+
title: string;
|
|
18
|
+
description: string;
|
|
19
|
+
highlighted?: boolean;
|
|
20
|
+
}[];
|
|
21
|
+
/**
|
|
22
|
+
* i18n text for the close button
|
|
23
|
+
*/
|
|
24
|
+
closeButtonText: string;
|
|
25
|
+
/**
|
|
26
|
+
* i18n text for the close iconButton
|
|
27
|
+
*/
|
|
28
|
+
closeIconButtonScreenReaderLabel: string;
|
|
29
|
+
/**
|
|
30
|
+
* i18n text for the "current feature" text
|
|
31
|
+
*/
|
|
32
|
+
currentFeatureText: string;
|
|
33
|
+
/**
|
|
34
|
+
* i18n text for the current feature
|
|
35
|
+
*/
|
|
36
|
+
currentFeature: string;
|
|
37
|
+
/**
|
|
38
|
+
* i18n text for the trigger
|
|
39
|
+
*/
|
|
40
|
+
triggerText: string;
|
|
41
|
+
/**
|
|
42
|
+
* sets the modal size to 'fullscreen'. Used for small viewports
|
|
43
|
+
*/
|
|
44
|
+
fullscreen?: boolean;
|
|
45
|
+
};
|
|
46
|
+
type PropKeys = keyof DataPermissionLevelsOwnProps;
|
|
47
|
+
type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
|
48
|
+
type DataPermissionLevelsProps = DataPermissionLevelsOwnProps & WithStyleProps<DataPermissionLevelsTheme, DataPermissionLevelsStyle> & OtherHTMLAttributes<DataPermissionLevelsOwnProps>;
|
|
49
|
+
type DataPermissionLevelsStyle = ComponentStyle<'dataPermissionLevels' | 'body' | 'card' | 'level' | 'highlightedCard' | 'currentFeature' | 'contentContainer' | 'permissionTitle'> & {
|
|
50
|
+
maxWidth?: string;
|
|
51
|
+
};
|
|
52
|
+
declare const allowedProps: AllowedPropKeys;
|
|
53
|
+
export type { DataPermissionLevelsProps, DataPermissionLevelsStyle };
|
|
54
|
+
export { allowedProps };
|
|
55
|
+
//# sourceMappingURL=props.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/DataPermissionLevels/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAC1E,OAAO,KAAK,EACV,yBAAyB,EACzB,mBAAmB,EACpB,MAAM,2BAA2B,CAAA;AAElC,KAAK,4BAA4B,GAAG;IAClC;;OAEG;IACH,UAAU,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,IAAI,EAAE;QACJ,KAAK,EAAE,MAAM,CAAA;QACb,KAAK,EAAE,MAAM,CAAA;QACb,WAAW,EAAE,MAAM,CAAA;QACnB,WAAW,CAAC,EAAE,OAAO,CAAA;KACtB,EAAE,CAAA;IACH;;OAEG;IACH,eAAe,EAAE,MAAM,CAAA;IACvB;;OAEG;IACH,gCAAgC,EAAE,MAAM,CAAA;IACxC;;OAEG;IACH,kBAAkB,EAAE,MAAM,CAAA;IAC1B;;OAEG;IACH,cAAc,EAAE,MAAM,CAAA;IACtB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAA;IACnB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA;AAED,KAAK,QAAQ,GAAG,MAAM,4BAA4B,CAAA;AAElD,KAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,KAAK,yBAAyB,GAAG,4BAA4B,GAC3D,cAAc,CAAC,yBAAyB,EAAE,yBAAyB,CAAC,GACpE,mBAAmB,CAAC,4BAA4B,CAAC,CAAA;AAEnD,KAAK,yBAAyB,GAAG,cAAc,CAC3C,sBAAsB,GACtB,MAAM,GACN,MAAM,GACN,OAAO,GACP,iBAAiB,GACjB,gBAAgB,GAChB,kBAAkB,GAClB,iBAAiB,CACpB,GAAG;IACF,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eAUnB,CAAA;AAED,YAAY,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,CAAA;AACpE,OAAO,EAAE,YAAY,EAAE,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { DataPermissionLevelsTheme } from '@instructure/shared-types';
|
|
2
|
+
import type { DataPermissionLevelsProps, DataPermissionLevelsStyle } from './props';
|
|
3
|
+
/**
|
|
4
|
+
* ---
|
|
5
|
+
* private: true
|
|
6
|
+
* ---
|
|
7
|
+
* Generates the style object from the theme and provided additional information
|
|
8
|
+
* @param {Object} componentTheme The theme variable object.
|
|
9
|
+
* @param {Object} props the props of the component, the style is applied to
|
|
10
|
+
* @return {Object} The final style object, which will be used in the component
|
|
11
|
+
*/
|
|
12
|
+
declare const generateStyle: (componentTheme: DataPermissionLevelsTheme, _props: DataPermissionLevelsProps) => DataPermissionLevelsStyle;
|
|
13
|
+
export default generateStyle;
|
|
14
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../src/DataPermissionLevels/styles.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,2BAA2B,CAAA;AAC1E,OAAO,KAAK,EACV,yBAAyB,EACzB,yBAAyB,EAC1B,MAAM,SAAS,CAAA;AAEhB;;;;;;;;GAQG;AACH,QAAA,MAAM,aAAa,GACjB,gBAAgB,yBAAyB,EACzC,QAAQ,yBAAyB,KAChC,yBA6DF,CAAA;AAED,eAAe,aAAa,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Theme } from '@instructure/ui-themes';
|
|
2
|
+
import type { DataPermissionLevelsTheme } from '@instructure/shared-types';
|
|
3
|
+
/**
|
|
4
|
+
* Generates the theme object for the component from the theme and provided additional information
|
|
5
|
+
* @param {Object} theme The actual theme object.
|
|
6
|
+
* @return {Object} The final theme object with the overrides and component variables
|
|
7
|
+
*/
|
|
8
|
+
declare const generateComponentTheme: (theme: Theme) => DataPermissionLevelsTheme;
|
|
9
|
+
export default generateComponentTheme;
|
|
10
|
+
//# sourceMappingURL=theme.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/DataPermissionLevels/theme.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAA;AACnD,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,2BAA2B,CAAA;AAE1E;;;;GAIG;AACH,QAAA,MAAM,sBAAsB,GAAI,OAAO,KAAK,KAAG,yBAwB9C,CAAA;AAED,eAAe,sBAAsB,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { NutritionFactsProps } from './props';
|
|
2
|
+
/**
|
|
3
|
+
---
|
|
4
|
+
category: components/AI Components
|
|
5
|
+
---
|
|
6
|
+
**/
|
|
7
|
+
declare const NutritionFacts: ({ modalLabel, title, featureName, data, closeButtonText, closeIconButtonScreenReaderLabel, triggerText, fullscreen }: NutritionFactsProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default NutritionFacts;
|
|
9
|
+
export { NutritionFacts };
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/NutritionFacts/index.tsx"],"names":[],"mappings":"AA+BA,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAI7C;;;;GAIG;AACH,QAAA,MAAM,cAAc,GAAI,sHASrB,mBAAmB,qDA8FrB,CAAA;AAED,eAAe,cAAc,CAAA;AAC7B,OAAO,EAAE,cAAc,EAAE,CAAA"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type { WithStyleProps, ComponentStyle } from '@instructure/emotion';
|
|
2
|
+
import type { NutritionFactsTheme, OtherHTMLAttributes } from '@instructure/shared-types';
|
|
3
|
+
type BlockType = {
|
|
4
|
+
blockTitle: string;
|
|
5
|
+
segmentData: {
|
|
6
|
+
segmentTitle: string;
|
|
7
|
+
description: string;
|
|
8
|
+
value: string;
|
|
9
|
+
valueDescription?: string;
|
|
10
|
+
}[];
|
|
11
|
+
};
|
|
12
|
+
type NutritionFactsOwnProps = {
|
|
13
|
+
/**
|
|
14
|
+
* i18n text for the label of the modal
|
|
15
|
+
*/
|
|
16
|
+
modalLabel: string;
|
|
17
|
+
/**
|
|
18
|
+
* i18n text for the Nutrition Facts title
|
|
19
|
+
*/
|
|
20
|
+
title: string;
|
|
21
|
+
/**
|
|
22
|
+
* i18n text for the feature name that the Nutrition Facts describes
|
|
23
|
+
*/
|
|
24
|
+
featureName: string;
|
|
25
|
+
/**
|
|
26
|
+
* i18n text for the "model and data" heading of the Nutrition Facts
|
|
27
|
+
*/
|
|
28
|
+
data: BlockType[];
|
|
29
|
+
/**
|
|
30
|
+
* i18n text for the close button
|
|
31
|
+
*/
|
|
32
|
+
closeButtonText: string;
|
|
33
|
+
/**
|
|
34
|
+
* i18n text for the close iconButton
|
|
35
|
+
*/
|
|
36
|
+
closeIconButtonScreenReaderLabel: string;
|
|
37
|
+
/**
|
|
38
|
+
* i18n text for the trigger
|
|
39
|
+
*/
|
|
40
|
+
triggerText: string;
|
|
41
|
+
/**
|
|
42
|
+
* sets the modal size to 'fullscreen'. Used for small viewports
|
|
43
|
+
*/
|
|
44
|
+
fullscreen?: boolean;
|
|
45
|
+
};
|
|
46
|
+
type PropKeys = keyof NutritionFactsOwnProps;
|
|
47
|
+
type AllowedPropKeys = Readonly<Array<PropKeys>>;
|
|
48
|
+
type NutritionFactsProps = NutritionFactsOwnProps & WithStyleProps<NutritionFactsTheme, NutritionFactsStyle> & OtherHTMLAttributes<NutritionFactsOwnProps>;
|
|
49
|
+
type NutritionFactsStyle = ComponentStyle<'segmentCard' | 'segmentCardExplainerContainer' | 'segmentContainer' | 'blockContainer' | 'body'> & {
|
|
50
|
+
maxWidth?: string;
|
|
51
|
+
};
|
|
52
|
+
declare const allowedProps: AllowedPropKeys;
|
|
53
|
+
export type { NutritionFactsProps, NutritionFactsStyle };
|
|
54
|
+
export { allowedProps };
|
|
55
|
+
//# sourceMappingURL=props.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../src/NutritionFacts/props.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAC1E,OAAO,KAAK,EACV,mBAAmB,EACnB,mBAAmB,EACpB,MAAM,2BAA2B,CAAA;AAElC,KAAK,SAAS,GAAG;IACf,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW,EAAE;QACX,YAAY,EAAE,MAAM,CAAA;QACpB,WAAW,EAAE,MAAM,CAAA;QACnB,KAAK,EAAE,MAAM,CAAA;QACb,gBAAgB,CAAC,EAAE,MAAM,CAAA;KAC1B,EAAE,CAAA;CACJ,CAAA;AAED,KAAK,sBAAsB,GAAG;IAC5B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,WAAW,EAAE,MAAM,CAAA;IACnB;;OAEG;IACH,IAAI,EAAE,SAAS,EAAE,CAAA;IACjB;;OAEG;IACH,eAAe,EAAE,MAAM,CAAA;IACvB;;OAEG;IACH,gCAAgC,EAAE,MAAM,CAAA;IACxC;;OAEG;IACH,WAAW,EAAE,MAAM,CAAA;IACnB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAA;AAED,KAAK,QAAQ,GAAG,MAAM,sBAAsB,CAAA;AAE5C,KAAK,eAAe,GAAG,QAAQ,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAA;AAEhD,KAAK,mBAAmB,GAAG,sBAAsB,GAC/C,cAAc,CAAC,mBAAmB,EAAE,mBAAmB,CAAC,GACxD,mBAAmB,CAAC,sBAAsB,CAAC,CAAA;AAE7C,KAAK,mBAAmB,GAAG,cAAc,CACrC,aAAa,GACb,+BAA+B,GAC/B,kBAAkB,GAClB,gBAAgB,GAChB,MAAM,CACT,GAAG;IACF,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB,CAAA;AAED,QAAA,MAAM,YAAY,EAAE,eASnB,CAAA;AAED,YAAY,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,CAAA;AACxD,OAAO,EAAE,YAAY,EAAE,CAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { NutritionFactsTheme } from '@instructure/shared-types';
|
|
2
|
+
import type { NutritionFactsProps, NutritionFactsStyle } from './props';
|
|
3
|
+
/**
|
|
4
|
+
* ---
|
|
5
|
+
* private: true
|
|
6
|
+
* ---
|
|
7
|
+
* Generates the style object from the theme and provided additional information
|
|
8
|
+
* @param {Object} componentTheme The theme variable object.
|
|
9
|
+
* @param {Object} props the props of the component, the style is applied to
|
|
10
|
+
* @return {Object} The final style object, which will be used in the component
|
|
11
|
+
*/
|
|
12
|
+
declare const generateStyle: (componentTheme: NutritionFactsTheme, _props: NutritionFactsProps) => NutritionFactsStyle;
|
|
13
|
+
export default generateStyle;
|
|
14
|
+
//# sourceMappingURL=styles.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../src/NutritionFacts/styles.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAA;AACpE,OAAO,KAAK,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAEvE;;;;;;;;GAQG;AACH,QAAA,MAAM,aAAa,GACjB,gBAAgB,mBAAmB,EACnC,QAAQ,mBAAmB,KAC1B,mBAqCF,CAAA;AAED,eAAe,aAAa,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Theme } from '@instructure/ui-themes';
|
|
2
|
+
import type { NutritionFactsTheme } from '@instructure/shared-types';
|
|
3
|
+
/**
|
|
4
|
+
* Generates the theme object for the component from the theme and provided additional information
|
|
5
|
+
* @param {Object} theme The actual theme object.
|
|
6
|
+
* @return {Object} The final theme object with the overrides and component variables
|
|
7
|
+
*/
|
|
8
|
+
declare const generateComponentTheme: (theme: Theme) => NutritionFactsTheme;
|
|
9
|
+
export default generateComponentTheme;
|
|
10
|
+
//# sourceMappingURL=theme.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/NutritionFacts/theme.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAA;AACnD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,2BAA2B,CAAA;AAEpE;;;;GAIG;AACH,QAAA,MAAM,sBAAsB,GAAI,OAAO,KAAK,KAAG,mBAiB9C,CAAA;AAED,eAAe,sBAAsB,CAAA"}
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { NutritionFacts } from './NutritionFacts';
|
|
2
|
+
export { DataPermissionLevels } from './DataPermissionLevels';
|
|
3
|
+
export { AiInformation } from './AiInformation';
|
|
4
|
+
export type { NutritionFactsProps } from './NutritionFacts/props';
|
|
5
|
+
export type { DataPermissionLevelsProps } from './DataPermissionLevels/props';
|
|
6
|
+
export type { AiInformationProps } from './AiInformation/props';
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAuBA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,YAAY,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAA;AACjE,YAAY,EAAE,yBAAyB,EAAE,MAAM,8BAA8B,CAAA;AAC7E,YAAY,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAA"}
|