@instructure/ui-menu 8.11.2-snapshot.15 → 8.11.2-snapshot.23
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/es/Menu/MenuItem/index.js +8 -6
- package/es/Menu/index.js +0 -1
- package/lib/Menu/MenuItem/index.js +8 -6
- package/lib/Menu/index.js +0 -1
- package/package.json +21 -21
- package/src/Menu/MenuItem/index.tsx +14 -10
- package/src/Menu/index.tsx +0 -1
- package/types/Menu/MenuItem/index.d.ts +1 -1
- package/types/Menu/MenuItem/index.d.ts.map +1 -1
- package/types/Menu/index.d.ts.map +1 -1
|
@@ -49,11 +49,9 @@ let MenuItem = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 =
|
|
|
49
49
|
constructor(props) {
|
|
50
50
|
super();
|
|
51
51
|
this.ref = null;
|
|
52
|
-
this._node = null;
|
|
53
52
|
|
|
54
53
|
this.handleRef = el => {
|
|
55
54
|
this.ref = el;
|
|
56
|
-
this._node = el;
|
|
57
55
|
};
|
|
58
56
|
|
|
59
57
|
this.handleClick = e => {
|
|
@@ -95,7 +93,7 @@ let MenuItem = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 =
|
|
|
95
93
|
|
|
96
94
|
if (enterKey) {
|
|
97
95
|
// handle space key on keyUp for FF
|
|
98
|
-
findDOMNode(this.
|
|
96
|
+
findDOMNode(this.ref).click(); // eslint-disable-line react/no-find-dom-node
|
|
99
97
|
}
|
|
100
98
|
}
|
|
101
99
|
};
|
|
@@ -109,7 +107,7 @@ let MenuItem = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 =
|
|
|
109
107
|
e.stopPropagation();
|
|
110
108
|
|
|
111
109
|
if (spaceKey) {
|
|
112
|
-
findDOMNode(this.
|
|
110
|
+
findDOMNode(this.ref).click(); // eslint-disable-line react/no-find-dom-node
|
|
113
111
|
}
|
|
114
112
|
}
|
|
115
113
|
};
|
|
@@ -131,6 +129,10 @@ let MenuItem = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 =
|
|
|
131
129
|
this.labelId = uid('MenuItem__label');
|
|
132
130
|
}
|
|
133
131
|
|
|
132
|
+
get _node() {
|
|
133
|
+
return this.ref;
|
|
134
|
+
}
|
|
135
|
+
|
|
134
136
|
componentDidMount() {
|
|
135
137
|
this.props.makeStyles();
|
|
136
138
|
const context = this.context;
|
|
@@ -177,11 +179,11 @@ let MenuItem = (_dec = withStyle(generateStyle, generateComponentTheme), _dec2 =
|
|
|
177
179
|
}
|
|
178
180
|
|
|
179
181
|
get focused() {
|
|
180
|
-
return isActiveElement(this.
|
|
182
|
+
return isActiveElement(this.ref);
|
|
181
183
|
}
|
|
182
184
|
|
|
183
185
|
focus() {
|
|
184
|
-
findDOMNode(this.
|
|
186
|
+
findDOMNode(this.ref).focus(); // eslint-disable-line react/no-find-dom-node
|
|
185
187
|
}
|
|
186
188
|
|
|
187
189
|
renderContent() {
|
package/es/Menu/index.js
CHANGED
|
@@ -51,11 +51,9 @@ let MenuItem = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
51
51
|
constructor(props) {
|
|
52
52
|
super();
|
|
53
53
|
this.ref = null;
|
|
54
|
-
this._node = null;
|
|
55
54
|
|
|
56
55
|
this.handleRef = el => {
|
|
57
56
|
this.ref = el;
|
|
58
|
-
this._node = el;
|
|
59
57
|
};
|
|
60
58
|
|
|
61
59
|
this.handleClick = e => {
|
|
@@ -97,7 +95,7 @@ let MenuItem = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
97
95
|
|
|
98
96
|
if (enterKey) {
|
|
99
97
|
// handle space key on keyUp for FF
|
|
100
|
-
(0, _findDOMNode.findDOMNode)(this.
|
|
98
|
+
(0, _findDOMNode.findDOMNode)(this.ref).click(); // eslint-disable-line react/no-find-dom-node
|
|
101
99
|
}
|
|
102
100
|
}
|
|
103
101
|
};
|
|
@@ -111,7 +109,7 @@ let MenuItem = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
111
109
|
e.stopPropagation();
|
|
112
110
|
|
|
113
111
|
if (spaceKey) {
|
|
114
|
-
(0, _findDOMNode.findDOMNode)(this.
|
|
112
|
+
(0, _findDOMNode.findDOMNode)(this.ref).click(); // eslint-disable-line react/no-find-dom-node
|
|
115
113
|
}
|
|
116
114
|
}
|
|
117
115
|
};
|
|
@@ -133,6 +131,10 @@ let MenuItem = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
133
131
|
this.labelId = (0, _uid.uid)('MenuItem__label');
|
|
134
132
|
}
|
|
135
133
|
|
|
134
|
+
get _node() {
|
|
135
|
+
return this.ref;
|
|
136
|
+
}
|
|
137
|
+
|
|
136
138
|
componentDidMount() {
|
|
137
139
|
this.props.makeStyles();
|
|
138
140
|
const context = this.context;
|
|
@@ -179,11 +181,11 @@ let MenuItem = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default),
|
|
|
179
181
|
}
|
|
180
182
|
|
|
181
183
|
get focused() {
|
|
182
|
-
return (0, _isActiveElement.isActiveElement)(this.
|
|
184
|
+
return (0, _isActiveElement.isActiveElement)(this.ref);
|
|
183
185
|
}
|
|
184
186
|
|
|
185
187
|
focus() {
|
|
186
|
-
(0, _findDOMNode.findDOMNode)(this.
|
|
188
|
+
(0, _findDOMNode.findDOMNode)(this.ref).focus(); // eslint-disable-line react/no-find-dom-node
|
|
187
189
|
}
|
|
188
190
|
|
|
189
191
|
renderContent() {
|
package/lib/Menu/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-menu",
|
|
3
|
-
"version": "8.11.2-snapshot.
|
|
3
|
+
"version": "8.11.2-snapshot.23+0d8081052",
|
|
4
4
|
"description": "A dropdown menu component",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -24,28 +24,28 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@instructure/ui-babel-preset": "8.11.2-snapshot.
|
|
28
|
-
"@instructure/ui-color-utils": "8.11.2-snapshot.
|
|
29
|
-
"@instructure/ui-test-locator": "8.11.2-snapshot.
|
|
30
|
-
"@instructure/ui-test-queries": "8.11.2-snapshot.
|
|
31
|
-
"@instructure/ui-test-utils": "8.11.2-snapshot.
|
|
32
|
-
"@instructure/ui-themes": "8.11.2-snapshot.
|
|
27
|
+
"@instructure/ui-babel-preset": "8.11.2-snapshot.23+0d8081052",
|
|
28
|
+
"@instructure/ui-color-utils": "8.11.2-snapshot.23+0d8081052",
|
|
29
|
+
"@instructure/ui-test-locator": "8.11.2-snapshot.23+0d8081052",
|
|
30
|
+
"@instructure/ui-test-queries": "8.11.2-snapshot.23+0d8081052",
|
|
31
|
+
"@instructure/ui-test-utils": "8.11.2-snapshot.23+0d8081052",
|
|
32
|
+
"@instructure/ui-themes": "8.11.2-snapshot.23+0d8081052"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@babel/runtime": "^7.13.10",
|
|
36
|
-
"@instructure/console": "8.11.2-snapshot.
|
|
37
|
-
"@instructure/emotion": "8.11.2-snapshot.
|
|
38
|
-
"@instructure/shared-types": "8.11.2-snapshot.
|
|
39
|
-
"@instructure/ui-a11y-utils": "8.11.2-snapshot.
|
|
40
|
-
"@instructure/ui-dom-utils": "8.11.2-snapshot.
|
|
41
|
-
"@instructure/ui-icons": "8.11.2-snapshot.
|
|
42
|
-
"@instructure/ui-popover": "8.11.2-snapshot.
|
|
43
|
-
"@instructure/ui-position": "8.11.2-snapshot.
|
|
44
|
-
"@instructure/ui-prop-types": "8.11.2-snapshot.
|
|
45
|
-
"@instructure/ui-react-utils": "8.11.2-snapshot.
|
|
46
|
-
"@instructure/ui-testable": "8.11.2-snapshot.
|
|
47
|
-
"@instructure/ui-utils": "8.11.2-snapshot.
|
|
48
|
-
"@instructure/uid": "8.11.2-snapshot.
|
|
36
|
+
"@instructure/console": "8.11.2-snapshot.23+0d8081052",
|
|
37
|
+
"@instructure/emotion": "8.11.2-snapshot.23+0d8081052",
|
|
38
|
+
"@instructure/shared-types": "8.11.2-snapshot.23+0d8081052",
|
|
39
|
+
"@instructure/ui-a11y-utils": "8.11.2-snapshot.23+0d8081052",
|
|
40
|
+
"@instructure/ui-dom-utils": "8.11.2-snapshot.23+0d8081052",
|
|
41
|
+
"@instructure/ui-icons": "8.11.2-snapshot.23+0d8081052",
|
|
42
|
+
"@instructure/ui-popover": "8.11.2-snapshot.23+0d8081052",
|
|
43
|
+
"@instructure/ui-position": "8.11.2-snapshot.23+0d8081052",
|
|
44
|
+
"@instructure/ui-prop-types": "8.11.2-snapshot.23+0d8081052",
|
|
45
|
+
"@instructure/ui-react-utils": "8.11.2-snapshot.23+0d8081052",
|
|
46
|
+
"@instructure/ui-testable": "8.11.2-snapshot.23+0d8081052",
|
|
47
|
+
"@instructure/ui-utils": "8.11.2-snapshot.23+0d8081052",
|
|
48
|
+
"@instructure/uid": "8.11.2-snapshot.23+0d8081052",
|
|
49
49
|
"keycode": "^2",
|
|
50
50
|
"prop-types": "^15"
|
|
51
51
|
},
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
58
|
"sideEffects": false,
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "0d8081052d9986085a7d0c62ee9ac41a1dcf8608"
|
|
60
60
|
}
|
|
@@ -78,12 +78,16 @@ class MenuItem extends Component<MenuItemProps> {
|
|
|
78
78
|
this.labelId = uid('MenuItem__label')
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
|
|
82
|
-
|
|
81
|
+
get _node() {
|
|
82
|
+
console.warn(
|
|
83
|
+
'_node property is deprecated and will be removed in v9, please use ref instead'
|
|
84
|
+
)
|
|
83
85
|
|
|
86
|
+
return this.ref
|
|
87
|
+
}
|
|
88
|
+
ref: Element | null = null
|
|
84
89
|
handleRef = (el: Element | null) => {
|
|
85
90
|
this.ref = el
|
|
86
|
-
this._node = el
|
|
87
91
|
}
|
|
88
92
|
|
|
89
93
|
componentDidMount() {
|
|
@@ -144,8 +148,8 @@ class MenuItem extends Component<MenuItemProps> {
|
|
|
144
148
|
|
|
145
149
|
if (enterKey) {
|
|
146
150
|
// handle space key on keyUp for FF
|
|
147
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property '
|
|
148
|
-
findDOMNode(this.
|
|
151
|
+
// @ts-expect-error ts-migrate(2339) FIXME: Property 'ref' does not exist on type 'MenuItem'... Remove this comment to see the full error message
|
|
152
|
+
findDOMNode(this.ref).click() // eslint-disable-line react/no-find-dom-node
|
|
149
153
|
}
|
|
150
154
|
}
|
|
151
155
|
}
|
|
@@ -160,8 +164,8 @@ class MenuItem extends Component<MenuItemProps> {
|
|
|
160
164
|
e.stopPropagation()
|
|
161
165
|
|
|
162
166
|
if (spaceKey) {
|
|
163
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property '
|
|
164
|
-
findDOMNode(this.
|
|
167
|
+
// @ts-expect-error ts-migrate(2339) FIXME: Property 'ref' does not exist on type 'MenuItem'... Remove this comment to see the full error message
|
|
168
|
+
findDOMNode(this.ref).click() // eslint-disable-line react/no-find-dom-node
|
|
165
169
|
}
|
|
166
170
|
}
|
|
167
171
|
}
|
|
@@ -200,12 +204,12 @@ class MenuItem extends Component<MenuItemProps> {
|
|
|
200
204
|
}
|
|
201
205
|
|
|
202
206
|
get focused() {
|
|
203
|
-
return isActiveElement(this.
|
|
207
|
+
return isActiveElement(this.ref)
|
|
204
208
|
}
|
|
205
209
|
|
|
206
210
|
focus() {
|
|
207
|
-
// @ts-expect-error ts-migrate(2339) FIXME: Property '
|
|
208
|
-
findDOMNode(this.
|
|
211
|
+
// @ts-expect-error ts-migrate(2339) FIXME: Property 'ref' does not exist on type 'MenuItem'... Remove this comment to see the full error message
|
|
212
|
+
findDOMNode(this.ref).focus() // eslint-disable-line react/no-find-dom-node
|
|
209
213
|
}
|
|
210
214
|
|
|
211
215
|
renderContent() {
|
package/src/Menu/index.tsx
CHANGED
|
@@ -525,7 +525,6 @@ class Menu extends Component<MenuProps> {
|
|
|
525
525
|
renderTrigger={safeCloneElement(trigger as ReactElement, {
|
|
526
526
|
// @ts-expect-error ts-migrate(7006) FIXME: Parameter 'el' implicitly has an 'any' type.
|
|
527
527
|
ref: (el) => {
|
|
528
|
-
this._trigger = el
|
|
529
528
|
this.ref = el
|
|
530
529
|
},
|
|
531
530
|
'aria-haspopup': true,
|
|
@@ -52,8 +52,8 @@ declare class MenuItem extends Component<MenuItemProps> {
|
|
|
52
52
|
removeMenuItem: () => void;
|
|
53
53
|
}>;
|
|
54
54
|
constructor(props: any);
|
|
55
|
+
get _node(): Element | null;
|
|
55
56
|
ref: Element | null;
|
|
56
|
-
_node: Element | null;
|
|
57
57
|
handleRef: (el: Element | null) => void;
|
|
58
58
|
componentDidMount(): void;
|
|
59
59
|
componentDidUpdate(): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Menu/MenuItem/index.tsx"],"names":[],"mappings":"AAuBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AASjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAQrD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAE5C;;;;;GAKG;AACH,cAEM,QAAS,SAAQ,SAAS,CAAC,aAAa,CAAC;IAC7C,MAAM,CAAC,QAAQ,CAAC,WAAW,eAAc;IAEzC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;MAKT;IAEV,MAAM,CAAC,WAAW;;;OAAc;gBAGpB,KAAK,KAAA;IAcjB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Menu/MenuItem/index.tsx"],"names":[],"mappings":"AAuBA,eAAe;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AASjC,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAQrD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAE5C;;;;;GAKG;AACH,cAEM,QAAS,SAAQ,SAAS,CAAC,aAAa,CAAC;IAC7C,MAAM,CAAC,QAAQ,CAAC,WAAW,eAAc;IAEzC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;MAKT;IAEV,MAAM,CAAC,WAAW;;;OAAc;gBAGpB,KAAK,KAAA;IAcjB,IAAI,KAAK,mBAMR;IACD,GAAG,EAAE,OAAO,GAAG,IAAI,CAAO;IAC1B,SAAS,OAAQ,OAAO,GAAG,IAAI,UAE9B;IAED,iBAAiB;IAUjB,kBAAkB;IAKlB,oBAAoB;IASpB,WAAW,mBAqBV;IAGD,aAAa,mBAcZ;IAGD,WAAW,mBAaV;IAGD,eAAe,uBAMd;IAED,IAAI,WAAW,wEAEd;IAED,IAAI,IAAI,iEAWP;IAED,IAAI,QAAQ,QAKX;IAED,IAAI,OAAO,YAEV;IAED,KAAK;IAKL,aAAa;IAuBb,MAAM;CAmCP;AAED,eAAe,QAAQ,CAAA;AACvB,OAAO,EAAE,QAAQ,EAAE,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Menu/index.tsx"],"names":[],"mappings":"AAuBA,eAAe;AACf,OAAO,EAAY,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAczD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAMrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC;;;;GAIG;AACH,cAEM,IAAK,SAAQ,SAAS,CAAC,SAAS,CAAC;IACrC,MAAM,CAAC,QAAQ,CAAC,WAAW,UAAS;IAEpC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;MAmClB;IAED,MAAM,CAAC,IAAI,kBAAW;IACtB,MAAM,CAAC,KAAK,uBAAgB;IAC5B,MAAM,CAAC,SAAS,2BAAoB;IAEpC,KAAK;;MAAsB;IAC3B,SAAS,OAAO;IAChB,UAAU,UAAK;IACf,QAAQ,OAAO;IACf,QAAQ,OAAO;IACf,KAAK,EAAE,gBAAgB,GAAG,IAAI,CAAO;IACrC,QAAQ,SAAqB;IAC7B,cAAc,OAAO;IAErB,GAAG,EAAE,gBAAgB,GAAG,IAAI,CAAO;IAEnC,SAAS,OAAQ,gBAAgB,GAAG,IAAI,UAMvC;gBAGW,KAAK,KAAA;IAMjB,iBAAiB;IAMjB,kBAAkB,CAAC,SAAS,KAAA;IAK5B,MAAM,CAAC,WAAW;;;OAAc;IAGhC,gBAAgB,sBAGf;IAGD,cAAc,sBAMb;IAED,IAAI,SAAS,YAEZ;IAGD,gBAAgB,wBAEf;IAGD,oBAAoB,uBAMnB;IAED,sBAAsB,aAKrB;IAGD,YAAY,uBAIX;IAGD,iBAAiB,uBAuBhB;IAGD,oBAAoB,6DAQnB;IAED,mBAAmB,aAElB;IAED,kBAAkB,aAEjB;IAGD,uBAAuB,sCAKtB;IAGD,iBAAiB,uBAMhB;IAGD,mBAAmB,qCAIlB;IAGD,oBAAoB,2CAInB;IAGD,IAAI,uBAKH;IAGD,IAAI,uBAKH;IAED,KAAK;IAiBL,OAAO;IAQP,IAAI,YAAY,WAKf;IAGD,SAAS,CAAC,IAAI,KAAA;IAkBd,IAAI,KAAK,QAGR;IAED,cAAc;IA2Gd,UAAU;IAmCV,MAAM;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/Menu/index.tsx"],"names":[],"mappings":"AAuBA,eAAe;AACf,OAAO,EAAY,SAAS,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAczD,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AACrC,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAC/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACvD,OAAO,EAAa,GAAG,EAAE,MAAM,sBAAsB,CAAA;AAMrD,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AAExC;;;;GAIG;AACH,cAEM,IAAK,SAAQ,SAAS,CAAC,SAAS,CAAC;IACrC,MAAM,CAAC,QAAQ,CAAC,WAAW,UAAS;IAEpC,MAAM,CAAC,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAAY;IAC5B,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAe;IAClC,MAAM,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;MAmClB;IAED,MAAM,CAAC,IAAI,kBAAW;IACtB,MAAM,CAAC,KAAK,uBAAgB;IAC5B,MAAM,CAAC,SAAS,2BAAoB;IAEpC,KAAK;;MAAsB;IAC3B,SAAS,OAAO;IAChB,UAAU,UAAK;IACf,QAAQ,OAAO;IACf,QAAQ,OAAO;IACf,KAAK,EAAE,gBAAgB,GAAG,IAAI,CAAO;IACrC,QAAQ,SAAqB;IAC7B,cAAc,OAAO;IAErB,GAAG,EAAE,gBAAgB,GAAG,IAAI,CAAO;IAEnC,SAAS,OAAQ,gBAAgB,GAAG,IAAI,UAMvC;gBAGW,KAAK,KAAA;IAMjB,iBAAiB;IAMjB,kBAAkB,CAAC,SAAS,KAAA;IAK5B,MAAM,CAAC,WAAW;;;OAAc;IAGhC,gBAAgB,sBAGf;IAGD,cAAc,sBAMb;IAED,IAAI,SAAS,YAEZ;IAGD,gBAAgB,wBAEf;IAGD,oBAAoB,uBAMnB;IAED,sBAAsB,aAKrB;IAGD,YAAY,uBAIX;IAGD,iBAAiB,uBAuBhB;IAGD,oBAAoB,6DAQnB;IAED,mBAAmB,aAElB;IAED,kBAAkB,aAEjB;IAGD,uBAAuB,sCAKtB;IAGD,iBAAiB,uBAMhB;IAGD,mBAAmB,qCAIlB;IAGD,oBAAoB,2CAInB;IAGD,IAAI,uBAKH;IAGD,IAAI,uBAKH;IAED,KAAK;IAiBL,OAAO;IAQP,IAAI,YAAY,WAKf;IAGD,SAAS,CAAC,IAAI,KAAA;IAkBd,IAAI,KAAK,QAGR;IAED,cAAc;IA2Gd,UAAU;IAmCV,MAAM;CAiEP;AAED,eAAe,IAAI,CAAA;AACnB,OAAO,EAAE,IAAI,EAAE,QAAQ,EAAE,aAAa,EAAE,iBAAiB,EAAE,CAAA"}
|