@elliemae/ds-form-combobox 3.53.0-beta.8 → 3.53.0-next.10

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.
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { DSComboboxT } from './react-desc-prop-types.js';
2
3
  import type { DSComboboxInternalsT } from './sharedTypes.js';
3
4
  export declare function noop<T extends unknown[]>(..._args: T): void;
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const DropdownIndicator: () => JSX.Element;
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const Container: () => JSX.Element;
@@ -1,9 +1,9 @@
1
1
  import type { XstyledProps } from '@elliemae/ds-props-helpers';
2
2
  export declare const StyledContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, XstyledProps & {
3
- disabled?: boolean;
3
+ disabled?: boolean | undefined;
4
4
  applyAriaDisabled: boolean;
5
5
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
6
6
  export declare const StyledPopperWrapper: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, {
7
- disabled?: boolean;
7
+ disabled?: boolean | undefined;
8
8
  applyAriaDisabled: boolean;
9
9
  } & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>;
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const Controls: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  interface StyledControlsWrapperT {
2
3
  hasError: boolean;
3
4
  inline: boolean;
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const ControlsInput: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  interface UseControlsInputT {
2
3
  handleOnBlur: () => void;
3
4
  handleOnChange?: React.ChangeEventHandler<HTMLInputElement>;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export declare const useKeyboardNavigation: () => {
2
3
  onInputKeyDown: import("react").KeyboardEventHandler<HTMLInputElement>;
3
4
  };
@@ -1,2 +1,3 @@
1
+ /// <reference types="react" />
1
2
  declare const useMaskedOnChange: () => import("react").ChangeEventHandler<HTMLInputElement>;
2
3
  export { useMaskedOnChange };
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const MenuList: () => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  export declare const SkeletonContainer: ({ instanceUid }: {
2
3
  instanceUid: string;
3
4
  }) => JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { SizingProps } from '@elliemae/ds-system';
2
3
  interface StyledListWrapperT {
3
4
  minWidth: SizingProps['minWidth'];
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import type { DSComboboxT } from '../../react-desc-prop-types.js';
2
3
  interface ItemRendererT {
3
4
  extraItemProps?: {
@@ -1 +1,2 @@
1
+ /// <reference types="react" />
1
2
  export declare const MultiSelectedValuesContainer: () => JSX.Element;
@@ -1,2 +1,2 @@
1
1
  import type React from 'react';
2
- export declare const useOnElementResize: <T extends HTMLElement>(targetRef: React.RefObject<T>) => Record<"width" | "height", number>;
2
+ export declare const useOnElementResize: <T extends HTMLElement>(targetRef: React.RefObject<T>) => Record<'width' | 'height', number>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-form-combobox",
3
- "version": "3.53.0-beta.8",
3
+ "version": "3.53.0-next.10",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Controlled Form Combobox",
6
6
  "files": [
@@ -38,27 +38,27 @@
38
38
  "dependencies": {
39
39
  "react-virtual": "~2.10.4",
40
40
  "uid": "~2.0.1",
41
- "@elliemae/ds-button-v2": "3.53.0-beta.8",
42
- "@elliemae/ds-fast-list": "3.53.0-beta.8",
43
- "@elliemae/ds-floating-context": "3.53.0-beta.8",
44
- "@elliemae/ds-circular-progress-indicator": "3.53.0-beta.8",
45
- "@elliemae/ds-grid": "3.53.0-beta.8",
46
- "@elliemae/ds-form-checkbox": "3.53.0-beta.8",
47
- "@elliemae/ds-menu-items": "3.53.0-beta.8",
48
- "@elliemae/ds-icons": "3.53.0-beta.8",
49
- "@elliemae/ds-pills-v2": "3.53.0-beta.8",
50
- "@elliemae/ds-system": "3.53.0-beta.8",
51
- "@elliemae/ds-props-helpers": "3.53.0-beta.8",
52
- "@elliemae/ds-truncated-tooltip-text": "3.53.0-beta.8"
41
+ "@elliemae/ds-button-v2": "3.53.0-next.10",
42
+ "@elliemae/ds-floating-context": "3.53.0-next.10",
43
+ "@elliemae/ds-circular-progress-indicator": "3.53.0-next.10",
44
+ "@elliemae/ds-grid": "3.53.0-next.10",
45
+ "@elliemae/ds-fast-list": "3.53.0-next.10",
46
+ "@elliemae/ds-form-checkbox": "3.53.0-next.10",
47
+ "@elliemae/ds-props-helpers": "3.53.0-next.10",
48
+ "@elliemae/ds-menu-items": "3.53.0-next.10",
49
+ "@elliemae/ds-icons": "3.53.0-next.10",
50
+ "@elliemae/ds-pills-v2": "3.53.0-next.10",
51
+ "@elliemae/ds-system": "3.53.0-next.10",
52
+ "@elliemae/ds-truncated-tooltip-text": "3.53.0-next.10"
53
53
  },
54
54
  "devDependencies": {
55
- "@elliemae/pui-cli": "9.0.0-next.65",
55
+ "@elliemae/pui-cli": "9.0.0-next.63",
56
56
  "@elliemae/pui-theme": "~2.13.0",
57
57
  "jest": "~29.7.0",
58
58
  "styled-components": "~5.3.9",
59
59
  "styled-system": "^5.1.5",
60
- "@elliemae/ds-monorepo-devops": "3.53.0-beta.8",
61
- "@elliemae/ds-form-helpers-mask-hooks": "3.53.0-beta.8"
60
+ "@elliemae/ds-monorepo-devops": "3.53.0-next.10",
61
+ "@elliemae/ds-form-helpers-mask-hooks": "3.53.0-next.10"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "@elliemae/pui-theme": "~2.13.0",
@@ -1,133 +0,0 @@
1
- "use strict";
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, { get: all[name], enumerable: true });
11
- };
12
- var __copyProps = (to, from, except, desc) => {
13
- if (from && typeof from === "object" || typeof from === "function") {
14
- for (let key of __getOwnPropNames(from))
15
- if (!__hasOwnProp.call(to, key) && key !== except)
16
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
- }
18
- return to;
19
- };
20
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
- // If the importer is in node compatibility mode or this is not an ESM
22
- // file that has been converted to a CommonJS file using a Babel-
23
- // compatible transform (i.e. "__esModule" has not been set), then set
24
- // "default" to the CommonJS "module.exports" for node compatibility.
25
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
- mod
27
- ));
28
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
- var utils_exports = {};
30
- __export(utils_exports, {
31
- basicOptions: () => basicOptions,
32
- groupedOptions: () => groupedOptions,
33
- optionsWithApplyAriaDisabled: () => optionsWithApplyAriaDisabled,
34
- selectOptions: () => selectOptions
35
- });
36
- module.exports = __toCommonJS(utils_exports);
37
- var React = __toESM(require("react"));
38
- const basicOptions = [
39
- {
40
- dsId: "1",
41
- type: "option",
42
- value: "id_1",
43
- label: "Luke Skywalker too long this text is super long"
44
- },
45
- {
46
- dsId: "2",
47
- type: "option",
48
- value: "id_2",
49
- label: "Obi-Wan Kenobi"
50
- },
51
- {
52
- dsId: "3",
53
- type: "option",
54
- value: "id_3",
55
- label: "Padme Amidala"
56
- },
57
- {
58
- dsId: "4",
59
- type: "option",
60
- value: "id_4",
61
- label: "Harry Potter"
62
- }
63
- ];
64
- const groupedOptions = [
65
- {
66
- dsId: "1",
67
- type: "option",
68
- value: "id_1",
69
- label: "Luke Skywalker too long this text is super long"
70
- },
71
- {
72
- dsId: "2",
73
- type: "option",
74
- value: "id_2",
75
- label: "Obi-Wan Kenobi"
76
- },
77
- {
78
- dsId: "separator",
79
- type: "separator"
80
- },
81
- {
82
- dsId: "section",
83
- type: "section",
84
- label: "Group A"
85
- },
86
- {
87
- dsId: "3",
88
- type: "option",
89
- value: "id_3",
90
- label: "Padme Amidala"
91
- }
92
- ];
93
- const selectOptions = [
94
- "John Frusciante",
95
- "John F. Kennedy",
96
- "John Lennon",
97
- "Billie Jean",
98
- "Bill Gates",
99
- "Bill Clinton",
100
- "Zack de la Rocha",
101
- "Zack Snyder"
102
- ];
103
- const optionsWithApplyAriaDisabled = [
104
- {
105
- dsId: "1",
106
- type: "option",
107
- value: "id_1",
108
- label: "Luke Skywalker too long this text is super long",
109
- applyAriaDisabled: true
110
- },
111
- {
112
- dsId: "2",
113
- type: "option",
114
- value: "id_2",
115
- label: "Obi-Wan Kenobi",
116
- applyAriaDisabled: true
117
- },
118
- {
119
- dsId: "3",
120
- type: "option",
121
- value: "id_3",
122
- label: "Padme Amidala",
123
- applyAriaDisabled: true
124
- },
125
- {
126
- dsId: "4",
127
- type: "option",
128
- value: "id_4",
129
- label: "Harry Potter",
130
- applyAriaDisabled: true
131
- }
132
- ];
133
- //# sourceMappingURL=utils.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/tests/utils.js", "../../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["export const basicOptions = [\n {\n dsId: '1',\n type: 'option',\n value: 'id_1',\n label: 'Luke Skywalker too long this text is super long',\n },\n {\n dsId: '2',\n type: 'option',\n value: 'id_2',\n label: 'Obi-Wan Kenobi',\n },\n {\n dsId: '3',\n type: 'option',\n value: 'id_3',\n label: 'Padme Amidala',\n },\n {\n dsId: '4',\n type: 'option',\n value: 'id_4',\n label: 'Harry Potter',\n },\n];\n\nexport const groupedOptions = [\n {\n dsId: '1',\n type: 'option',\n value: 'id_1',\n label: 'Luke Skywalker too long this text is super long',\n },\n {\n dsId: '2',\n type: 'option',\n value: 'id_2',\n label: 'Obi-Wan Kenobi',\n },\n {\n dsId: 'separator',\n type: 'separator',\n },\n {\n dsId: 'section',\n type: 'section',\n label: 'Group A',\n },\n {\n dsId: '3',\n type: 'option',\n value: 'id_3',\n label: 'Padme Amidala',\n },\n];\n\nexport const selectOptions = [\n 'John Frusciante',\n 'John F. Kennedy',\n 'John Lennon',\n 'Billie Jean',\n 'Bill Gates',\n 'Bill Clinton',\n 'Zack de la Rocha',\n 'Zack Snyder',\n];\n\nexport const optionsWithApplyAriaDisabled = [\n {\n dsId: '1',\n type: 'option',\n value: 'id_1',\n label: 'Luke Skywalker too long this text is super long',\n applyAriaDisabled: true,\n },\n {\n dsId: '2',\n type: 'option',\n value: 'id_2',\n label: 'Obi-Wan Kenobi',\n applyAriaDisabled: true,\n },\n {\n dsId: '3',\n type: 'option',\n value: 'id_3',\n label: 'Padme Amidala',\n applyAriaDisabled: true,\n },\n {\n dsId: '4',\n type: 'option',\n value: 'id_4',\n label: 'Harry Potter',\n applyAriaDisabled: true,\n },\n];\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAhB,MAAM,eAAe;AAAA,EAC1B;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AACF;AAEO,MAAM,iBAAiB;AAAA,EAC5B;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,EACR;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AACF;AAEO,MAAM,gBAAgB;AAAA,EAC3B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAEO,MAAM,+BAA+B;AAAA,EAC1C;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,IACP,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,IACP,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,IACP,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,IACP,mBAAmB;AAAA,EACrB;AACF;",
6
- "names": []
7
- }
@@ -1,103 +0,0 @@
1
- import * as React from "react";
2
- const basicOptions = [
3
- {
4
- dsId: "1",
5
- type: "option",
6
- value: "id_1",
7
- label: "Luke Skywalker too long this text is super long"
8
- },
9
- {
10
- dsId: "2",
11
- type: "option",
12
- value: "id_2",
13
- label: "Obi-Wan Kenobi"
14
- },
15
- {
16
- dsId: "3",
17
- type: "option",
18
- value: "id_3",
19
- label: "Padme Amidala"
20
- },
21
- {
22
- dsId: "4",
23
- type: "option",
24
- value: "id_4",
25
- label: "Harry Potter"
26
- }
27
- ];
28
- const groupedOptions = [
29
- {
30
- dsId: "1",
31
- type: "option",
32
- value: "id_1",
33
- label: "Luke Skywalker too long this text is super long"
34
- },
35
- {
36
- dsId: "2",
37
- type: "option",
38
- value: "id_2",
39
- label: "Obi-Wan Kenobi"
40
- },
41
- {
42
- dsId: "separator",
43
- type: "separator"
44
- },
45
- {
46
- dsId: "section",
47
- type: "section",
48
- label: "Group A"
49
- },
50
- {
51
- dsId: "3",
52
- type: "option",
53
- value: "id_3",
54
- label: "Padme Amidala"
55
- }
56
- ];
57
- const selectOptions = [
58
- "John Frusciante",
59
- "John F. Kennedy",
60
- "John Lennon",
61
- "Billie Jean",
62
- "Bill Gates",
63
- "Bill Clinton",
64
- "Zack de la Rocha",
65
- "Zack Snyder"
66
- ];
67
- const optionsWithApplyAriaDisabled = [
68
- {
69
- dsId: "1",
70
- type: "option",
71
- value: "id_1",
72
- label: "Luke Skywalker too long this text is super long",
73
- applyAriaDisabled: true
74
- },
75
- {
76
- dsId: "2",
77
- type: "option",
78
- value: "id_2",
79
- label: "Obi-Wan Kenobi",
80
- applyAriaDisabled: true
81
- },
82
- {
83
- dsId: "3",
84
- type: "option",
85
- value: "id_3",
86
- label: "Padme Amidala",
87
- applyAriaDisabled: true
88
- },
89
- {
90
- dsId: "4",
91
- type: "option",
92
- value: "id_4",
93
- label: "Harry Potter",
94
- applyAriaDisabled: true
95
- }
96
- ];
97
- export {
98
- basicOptions,
99
- groupedOptions,
100
- optionsWithApplyAriaDisabled,
101
- selectOptions
102
- };
103
- //# sourceMappingURL=utils.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../../../../scripts/build/transpile/react-shim.js", "../../../src/tests/utils.js"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export const basicOptions = [\n {\n dsId: '1',\n type: 'option',\n value: 'id_1',\n label: 'Luke Skywalker too long this text is super long',\n },\n {\n dsId: '2',\n type: 'option',\n value: 'id_2',\n label: 'Obi-Wan Kenobi',\n },\n {\n dsId: '3',\n type: 'option',\n value: 'id_3',\n label: 'Padme Amidala',\n },\n {\n dsId: '4',\n type: 'option',\n value: 'id_4',\n label: 'Harry Potter',\n },\n];\n\nexport const groupedOptions = [\n {\n dsId: '1',\n type: 'option',\n value: 'id_1',\n label: 'Luke Skywalker too long this text is super long',\n },\n {\n dsId: '2',\n type: 'option',\n value: 'id_2',\n label: 'Obi-Wan Kenobi',\n },\n {\n dsId: 'separator',\n type: 'separator',\n },\n {\n dsId: 'section',\n type: 'section',\n label: 'Group A',\n },\n {\n dsId: '3',\n type: 'option',\n value: 'id_3',\n label: 'Padme Amidala',\n },\n];\n\nexport const selectOptions = [\n 'John Frusciante',\n 'John F. Kennedy',\n 'John Lennon',\n 'Billie Jean',\n 'Bill Gates',\n 'Bill Clinton',\n 'Zack de la Rocha',\n 'Zack Snyder',\n];\n\nexport const optionsWithApplyAriaDisabled = [\n {\n dsId: '1',\n type: 'option',\n value: 'id_1',\n label: 'Luke Skywalker too long this text is super long',\n applyAriaDisabled: true,\n },\n {\n dsId: '2',\n type: 'option',\n value: 'id_2',\n label: 'Obi-Wan Kenobi',\n applyAriaDisabled: true,\n },\n {\n dsId: '3',\n type: 'option',\n value: 'id_3',\n label: 'Padme Amidala',\n applyAriaDisabled: true,\n },\n {\n dsId: '4',\n type: 'option',\n value: 'id_4',\n label: 'Harry Potter',\n applyAriaDisabled: true,\n },\n];\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACAhB,MAAM,eAAe;AAAA,EAC1B;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AACF;AAEO,MAAM,iBAAiB;AAAA,EAC5B;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,EACR;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,EACT;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,EACT;AACF;AAEO,MAAM,gBAAgB;AAAA,EAC3B;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;AAEO,MAAM,+BAA+B;AAAA,EAC1C;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,IACP,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,IACP,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,IACP,mBAAmB;AAAA,EACrB;AAAA,EACA;AAAA,IACE,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO;AAAA,IACP,OAAO;AAAA,IACP,mBAAmB;AAAA,EACrB;AACF;",
6
- "names": []
7
- }