@instructure/emotion 10.26.1-snapshot-2 → 10.26.1
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 +2 -23
- package/es/InstUISettingsProvider/index.js +15 -3
- package/es/getTheme.js +4 -2
- package/es/index.js +1 -1
- package/es/styleUtils/ThemeablePropTypes.js +74 -0
- package/es/styleUtils/index.js +1 -0
- package/es/useTheme.js +7 -1
- package/es/withStyle.js +7 -1
- package/lib/InstUISettingsProvider/index.js +16 -3
- package/lib/getTheme.js +4 -2
- package/lib/index.js +7 -0
- package/lib/styleUtils/ThemeablePropTypes.js +81 -0
- package/lib/styleUtils/index.js +7 -0
- package/lib/useTheme.js +7 -1
- package/lib/withStyle.js +7 -1
- package/package.json +15 -13
- package/src/InstUISettingsProvider/index.tsx +46 -11
- package/src/getTheme.ts +5 -2
- package/src/index.ts +1 -0
- package/src/styleUtils/ThemeablePropTypes.ts +121 -0
- package/src/styleUtils/index.ts +1 -0
- package/src/useTheme.ts +9 -1
- package/src/withStyle.tsx +6 -2
- package/tsconfig.build.json +3 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/InstUISettingsProvider/index.d.ts +29 -3
- package/types/InstUISettingsProvider/index.d.ts.map +1 -1
- package/types/getTheme.d.ts.map +1 -1
- package/types/index.d.ts +1 -1
- package/types/index.d.ts.map +1 -1
- package/types/styleUtils/ThemeablePropTypes.d.ts +22 -0
- package/types/styleUtils/ThemeablePropTypes.d.ts.map +1 -0
- package/types/styleUtils/index.d.ts +1 -0
- package/types/styleUtils/index.d.ts.map +1 -1
- package/types/useTheme.d.ts +2 -1
- package/types/useTheme.d.ts.map +1 -1
- package/types/withStyle.d.ts +1 -1
- package/types/withStyle.d.ts.map +1 -1
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import PropTypes from 'prop-types';
|
|
1
2
|
import type { ThemeOrOverride } from '../EmotionTypes';
|
|
2
3
|
import type { DeterministicIdProviderValue } from '@instructure/ui-react-utils';
|
|
4
|
+
import type { AsElementType } from '@instructure/shared-types';
|
|
3
5
|
type InstUIProviderProps = {
|
|
4
6
|
children?: React.ReactNode;
|
|
5
7
|
/**
|
|
@@ -14,21 +16,45 @@ type InstUIProviderProps = {
|
|
|
14
16
|
* specific InstUI components. (generally this is used for deterministic id generation for [SSR](/#server-side-rendering))
|
|
15
17
|
*/
|
|
16
18
|
instanceCounterMap?: DeterministicIdProviderValue;
|
|
19
|
+
} & ({
|
|
17
20
|
/**
|
|
18
21
|
* The text direction to use in the descendants. If not provided, it uses the following in this priority order:
|
|
19
22
|
* - The value given in a parent `TextDirectionContext`
|
|
20
23
|
* - The `dir` prop of `document.documentElement` or its `direction` CSS prop
|
|
21
24
|
* - The default `ltr`
|
|
22
25
|
*/
|
|
23
|
-
dir
|
|
24
|
-
|
|
26
|
+
dir: 'ltr' | 'rtl';
|
|
27
|
+
/**
|
|
28
|
+
* @deprecated This prop will be removed in InstUI v11
|
|
29
|
+
*
|
|
30
|
+
* The element type to render as
|
|
31
|
+
*/
|
|
32
|
+
as?: AsElementType;
|
|
33
|
+
} | {
|
|
34
|
+
dir?: never;
|
|
35
|
+
/**
|
|
36
|
+
* @deprecated This prop will be removed in InstUI v11
|
|
37
|
+
*
|
|
38
|
+
* The element type to render as
|
|
39
|
+
*/
|
|
40
|
+
as?: never;
|
|
41
|
+
});
|
|
25
42
|
/**
|
|
26
43
|
* ---
|
|
27
44
|
* category: components/utilities
|
|
28
45
|
* ---
|
|
29
46
|
* @module InstUISettingsProvider
|
|
30
47
|
*/
|
|
31
|
-
declare function InstUISettingsProvider({ children, theme, dir, instanceCounterMap }: InstUIProviderProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
48
|
+
declare function InstUISettingsProvider({ children, theme, dir, instanceCounterMap, as }: InstUIProviderProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
49
|
+
declare namespace InstUISettingsProvider {
|
|
50
|
+
var propTypes: {
|
|
51
|
+
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
52
|
+
theme: PropTypes.Requireable<object>;
|
|
53
|
+
dir: PropTypes.Requireable<string>;
|
|
54
|
+
instanceCounterMap: PropTypes.Requireable<Map<unknown, unknown>>;
|
|
55
|
+
as: PropTypes.Requireable<string>;
|
|
56
|
+
};
|
|
57
|
+
}
|
|
32
58
|
export default InstUISettingsProvider;
|
|
33
59
|
export { InstUISettingsProvider };
|
|
34
60
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/InstUISettingsProvider/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/InstUISettingsProvider/index.tsx"],"names":[],"mappings":"AAyBA,OAAO,SAAS,MAAM,YAAY,CAAA;AAQlC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AACtD,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,6BAA6B,CAAA;AAC/E,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAA;AAE9D,KAAK,mBAAmB,GAAG;IACzB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAE1B;;OAEG;IACH,KAAK,CAAC,EAAE,eAAe,CAAA;IAEvB;;;;;;OAMG;IACH,kBAAkB,CAAC,EAAE,4BAA4B,CAAA;CAClD,GAAG,CACA;IACE;;;;;OAKG;IACH,GAAG,EAAE,KAAK,GAAG,KAAK,CAAA;IAClB;;;;OAIG;IACH,EAAE,CAAC,EAAE,aAAa,CAAA;CACnB,GACD;IACE,GAAG,CAAC,EAAE,KAAK,CAAA;IACX;;;;OAIG;IACH,EAAE,CAAC,EAAE,KAAK,CAAA;CACX,CACJ,CAAA;AAED;;;;;GAKG;AACH,iBAAS,sBAAsB,CAAC,EAC9B,QAAQ,EACR,KAAU,EACV,GAAG,EACH,kBAAkB,EAClB,EAAE,EACH,EAAE,mBAAmB,oDA6BrB;kBAnCQ,sBAAsB;;;;;;;;;AA+C/B,eAAe,sBAAsB,CAAA;AACrC,OAAO,EAAE,sBAAsB,EAAE,CAAA"}
|
package/types/getTheme.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTheme.d.ts","sourceRoot":"","sources":["../src/getTheme.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"getTheme.d.ts","sourceRoot":"","sources":["../src/getTheme.ts"],"names":[],"mappings":"AA2BA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAA;AAE1D,OAAO,KAAK,EAEV,eAAe,EAEhB,MAAM,gBAAgB,CAAA;AAEvB;;;;;;;;;;;;;;;GAeG;AACH,QAAA,MAAM,QAAQ,GACX,iBAAiB,eAAe,MAChC,gBAAsB,SAAS,oCAsD/B,CAAA;AAEH,eAAe,QAAQ,CAAA;AACvB,OAAO,EAAE,QAAQ,EAAE,CAAA"}
|
package/types/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * from '@emotion/react';
|
|
2
2
|
export { InstUISettingsProvider } from './InstUISettingsProvider';
|
|
3
3
|
export { withStyle } from './withStyle';
|
|
4
|
-
export { ThemeablePropValues, makeThemeVars, getShorthandPropValue, mirrorShorthandCorners, mirrorShorthandEdges, mapSpacingToShorthand } from './styleUtils';
|
|
4
|
+
export { ThemeablePropValues, ThemeablePropTypes, makeThemeVars, getShorthandPropValue, mirrorShorthandCorners, mirrorShorthandEdges, mapSpacingToShorthand } from './styleUtils';
|
|
5
5
|
export { useStyle } from './useStyle';
|
|
6
6
|
export type { ComponentStyle, StyleObject, Overrides } from './EmotionTypes';
|
|
7
7
|
export type { WithStyleProps } from './withStyle';
|
package/types/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAyBA,cAAc,gBAAgB,CAAA;AAE9B,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EACL,mBAAmB,EACnB,aAAa,EACb,qBAAqB,EACrB,sBAAsB,EACtB,oBAAoB,EACpB,qBAAqB,EACtB,MAAM,cAAc,CAAA;AAErB,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAErC,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAC5E,YAAY,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AACjD,YAAY,EACV,aAAa,EACb,OAAO,EACP,MAAM,EACN,QAAQ,EACR,UAAU,EACV,iBAAiB,EACjB,WAAW,EACX,iBAAiB,EACjB,WAAW,EACZ,MAAM,cAAc,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAyBA,cAAc,gBAAgB,CAAA;AAE9B,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EACL,mBAAmB,EACnB,kBAAkB,EAClB,aAAa,EACb,qBAAqB,EACrB,sBAAsB,EACtB,oBAAoB,EACpB,qBAAqB,EACtB,MAAM,cAAc,CAAA;AAErB,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAErC,YAAY,EAAE,cAAc,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAA;AAC5E,YAAY,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AACjD,YAAY,EACV,aAAa,EACb,OAAO,EACP,MAAM,EACN,QAAQ,EACR,UAAU,EACV,iBAAiB,EACjB,WAAW,EACX,iBAAiB,EACjB,WAAW,EACZ,MAAM,cAAc,CAAA"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import PropTypes from 'prop-types';
|
|
2
|
+
import type { BorderRadiiValues, BorderRadii, BorderWidthValues, BorderWidth, SpacingValues } from './ThemeablePropValues';
|
|
3
|
+
/**
|
|
4
|
+
* ---
|
|
5
|
+
* category: utilities/themes
|
|
6
|
+
* ---
|
|
7
|
+
* Custom prop types for themeable React components.
|
|
8
|
+
* @module ThemeablePropTypes
|
|
9
|
+
*/
|
|
10
|
+
declare const ThemeablePropTypes: {
|
|
11
|
+
shadow: PropTypes.Requireable<"resting" | "above" | "topmost" | "none">;
|
|
12
|
+
stacking: PropTypes.Requireable<"resting" | "above" | "topmost" | "below" | "deepest">;
|
|
13
|
+
borderWidth: PropTypes.Validator<BorderWidth>;
|
|
14
|
+
borderRadius: PropTypes.Validator<string>;
|
|
15
|
+
background: PropTypes.Requireable<"default" | "inverse" | "transparent">;
|
|
16
|
+
size: PropTypes.Requireable<"small" | "medium" | "large" | "x-small" | "x-large">;
|
|
17
|
+
};
|
|
18
|
+
type ValueKeys = BorderWidthValues[] | BorderRadiiValues[] | SpacingValues[] | string[];
|
|
19
|
+
declare function shorthandPropType<V extends ValueKeys>(validValues: V): PropTypes.Validator<V extends BorderWidthValues[] ? BorderWidth : V extends BorderRadiiValues[] ? BorderRadii : string[]>;
|
|
20
|
+
export default ThemeablePropTypes;
|
|
21
|
+
export { ThemeablePropTypes, shorthandPropType };
|
|
22
|
+
//# sourceMappingURL=ThemeablePropTypes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ThemeablePropTypes.d.ts","sourceRoot":"","sources":["../../src/styleUtils/ThemeablePropTypes.ts"],"names":[],"mappings":"AAwBA,OAAO,SAAS,MAAM,YAAY,CAAA;AAGlC,OAAO,KAAK,EACV,iBAAiB,EACjB,WAAW,EACX,iBAAiB,EACjB,WAAW,EACX,aAAa,EACd,MAAM,uBAAuB,CAAA;AAW9B;;;;;;GAMG;AACH,QAAA,MAAM,kBAAkB;;;;;;;CAOvB,CAAA;AAED,KAAK,SAAS,GACV,iBAAiB,EAAE,GACnB,iBAAiB,EAAE,GACnB,aAAa,EAAE,GACf,MAAM,EAAE,CAAA;AAEZ,iBAAS,iBAAiB,CAAC,CAAC,SAAS,SAAS,EAC5C,WAAW,EAAE,CAAC,GACb,SAAS,CAAC,SAAS,CACpB,CAAC,SAAS,iBAAiB,EAAE,GACzB,WAAW,GACX,CAAC,SAAS,iBAAiB,EAAE,GAC7B,WAAW,GACX,MAAM,EAAE,CACb,CA2CA;AAED,eAAe,kBAAkB,CAAA;AACjC,OAAO,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,CAAA"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { ThemeablePropValues } from './ThemeablePropValues';
|
|
2
|
+
export { ThemeablePropTypes } from './ThemeablePropTypes';
|
|
2
3
|
export { makeThemeVars } from './makeThemeVars';
|
|
3
4
|
export { getShorthandPropValue } from './getShorthandPropValue';
|
|
4
5
|
export { mirrorShorthandCorners } from './mirrorShorthandCorners';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/styleUtils/index.ts"],"names":[],"mappings":"AAwBA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAE/D,YAAY,EACV,aAAa,EACb,OAAO,EACP,MAAM,EACN,QAAQ,EACR,UAAU,EACV,iBAAiB,EACjB,WAAW,EACX,iBAAiB,EACjB,WAAW,EACZ,MAAM,uBAAuB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/styleUtils/index.ts"],"names":[],"mappings":"AAwBA,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAC3D,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAA;AACzD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAC/D,OAAO,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAA;AACjE,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AAE/D,YAAY,EACV,aAAa,EACb,OAAO,EACP,MAAM,EACN,QAAQ,EACR,UAAU,EACV,iBAAiB,EACjB,WAAW,EACX,iBAAiB,EACjB,WAAW,EACZ,MAAM,uBAAuB,CAAA"}
|
package/types/useTheme.d.ts
CHANGED
|
@@ -4,7 +4,8 @@ import type { BaseThemeOrOverride } from './EmotionTypes';
|
|
|
4
4
|
* private: true
|
|
5
5
|
* ---
|
|
6
6
|
* A hook that will return the currently applied theme object from the nearest Context.
|
|
7
|
-
* If there is no
|
|
7
|
+
* If there is no Context, then it tries to get the current theme from the global ThemeRegistry.
|
|
8
|
+
* If there is no theme provided to the Context and ThemeRegistry it will return the default `canvas` theme.
|
|
8
9
|
* @returns The theme object
|
|
9
10
|
*/
|
|
10
11
|
declare const useTheme: () => BaseThemeOrOverride;
|
package/types/useTheme.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useTheme.d.ts","sourceRoot":"","sources":["../src/useTheme.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"useTheme.d.ts","sourceRoot":"","sources":["../src/useTheme.ts"],"names":[],"mappings":"AA6BA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAA;AAEzD;;;;;;;;GAQG;AACH,QAAA,MAAM,QAAQ,2BAkBb,CAAA;AAED,eAAe,QAAQ,CAAA;AACvB,OAAO,EAAE,QAAQ,EAAE,CAAA"}
|
package/types/withStyle.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ type WithStyleProps<Theme extends ComponentTheme | null = ComponentTheme, Style
|
|
|
36
36
|
* [InstUISettingsProvider](#InstUISettingsProvider) component, and/or set
|
|
37
37
|
* explicitly via its `themeOverride` prop.
|
|
38
38
|
*
|
|
39
|
-
* InstUISettingsProvider provides a theme object (e.g. the [canvas theme](/#canvas)).
|
|
39
|
+
* InstUISettingsProvider provides a theme object with global theme variables (e.g. the [canvas theme](/#canvas)).
|
|
40
40
|
* These variables are mapped to the component's own variables in `theme.js` (see [theming](#theming-basics) for more info).
|
|
41
41
|
*
|
|
42
42
|
* With the `themeOverride` prop you can directly set/override the component theme variables declared in theme.js. It accepts an object or a function. The function has the component's theme and the currently active main theme as its parameter.
|
package/types/withStyle.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"withStyle.d.ts","sourceRoot":"","sources":["../src/withStyle.tsx"],"names":[],"mappings":"AAwCA,OAAO,KAAK,EACV,SAAS,EACT,cAAc,EAEf,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EACV,cAAc,EAKf,MAAM,gBAAgB,CAAA;AAYvB,KAAK,qBAAqB,CACxB,KAAK,SAAS,cAAc,GAAG,IAAI,GAAG,cAAc,IAClD,KAAK,SAAS,IAAI,GAClB,MAAM,GACN;IACE,MAAM,CAAC,EAAE,KAAK,CAAA;IACd,UAAU,CAAC,EAAE,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAA;CAC3D,CAAA;AAEL,KAAK,iBAAiB,CAAC,KAAK,SAAS,cAAc,GAAG,IAAI,GAAG,cAAc,IAAI;IAC7E,aAAa,CAAC,EACV,OAAO,CAAC,KAAK,CAAC,GACd,CAAC,CAAC,cAAc,EAAE,KAAK,EAAE,YAAY,EAAE,SAAS,KAAK,OAAO,CAAC,KAAK,CAAC,CAAC,CAAA;CACzE,CAAA;AAED,KAAK,cAAc,CACjB,KAAK,SAAS,cAAc,GAAG,IAAI,GAAG,cAAc,EACpD,KAAK,SAAS,cAAc,GAAG,IAAI,GAAG,cAAc,IAClD,KAAK,SAAS,IAAI,GAClB,qBAAqB,CAAC,KAAK,CAAC,GAC5B,qBAAqB,CAAC,KAAK,CAAC,GAAG,iBAAiB,CAAC,KAAK,CAAC,CAAA;AAO3D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0EG;AACH,QAAA,MAAM,SAAS,
|
|
1
|
+
{"version":3,"file":"withStyle.d.ts","sourceRoot":"","sources":["../src/withStyle.tsx"],"names":[],"mappings":"AAwCA,OAAO,KAAK,EACV,SAAS,EACT,cAAc,EAEf,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EACV,cAAc,EAKf,MAAM,gBAAgB,CAAA;AAYvB,KAAK,qBAAqB,CACxB,KAAK,SAAS,cAAc,GAAG,IAAI,GAAG,cAAc,IAClD,KAAK,SAAS,IAAI,GAClB,MAAM,GACN;IACE,MAAM,CAAC,EAAE,KAAK,CAAA;IACd,UAAU,CAAC,EAAE,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAA;CAC3D,CAAA;AAEL,KAAK,iBAAiB,CAAC,KAAK,SAAS,cAAc,GAAG,IAAI,GAAG,cAAc,IAAI;IAC7E,aAAa,CAAC,EACV,OAAO,CAAC,KAAK,CAAC,GACd,CAAC,CAAC,cAAc,EAAE,KAAK,EAAE,YAAY,EAAE,SAAS,KAAK,OAAO,CAAC,KAAK,CAAC,CAAC,CAAA;CACzE,CAAA;AAED,KAAK,cAAc,CACjB,KAAK,SAAS,cAAc,GAAG,IAAI,GAAG,cAAc,EACpD,KAAK,SAAS,cAAc,GAAG,IAAI,GAAG,cAAc,IAClD,KAAK,SAAS,IAAI,GAClB,qBAAqB,CAAC,KAAK,CAAC,GAC5B,qBAAqB,CAAC,KAAK,CAAC,GAAG,iBAAiB,CAAC,KAAK,CAAC,CAAA;AAO3D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0EG;AACH,QAAA,MAAM,SAAS,yFAkHd,CAAA;AAED,eAAe,SAAS,CAAA;AACxB,OAAO,EAAE,SAAS,EAAE,CAAA;AACpB,YAAY,EAAE,cAAc,EAAE,CAAA"}
|