@pingux/astro 2.56.0 → 2.57.0-alpha.0
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/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.d.ts +9 -0
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +39 -80
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.d.ts +12 -0
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.js +27 -19
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.d.ts +4 -0
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +41 -29
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentalBreadcrumb.styles.d.ts +78 -0
- package/lib/cjs/components/EnvironmentBreadcrumb/EnvironmentalBreadcrumbUniversal.test.d.ts +1 -0
- package/lib/cjs/components/EnvironmentBreadcrumb/index.d.ts +1 -0
- package/lib/cjs/types/environmentBreadcrumb.d.ts +60 -0
- package/lib/cjs/types/environmentBreadcrumb.js +6 -0
- package/lib/cjs/types/index.d.ts +1 -0
- package/lib/cjs/types/index.js +41 -30
- package/lib/cjs/types/listBox.d.ts +1 -1
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.js +41 -82
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.stories.js +25 -17
- package/lib/components/EnvironmentBreadcrumb/EnvironmentBreadcrumb.test.js +41 -29
- package/lib/types/environmentBreadcrumb.js +1 -0
- package/lib/types/index.js +1 -0
- package/package.json +1 -1
@@ -0,0 +1,78 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
button: {
|
3
|
+
current: {
|
4
|
+
color: string;
|
5
|
+
fontSize: string;
|
6
|
+
fontWeight: number;
|
7
|
+
padding: string;
|
8
|
+
'&.is-hovered': {
|
9
|
+
color: string;
|
10
|
+
textDecoration: string;
|
11
|
+
boxShadow: string;
|
12
|
+
};
|
13
|
+
'&.is-focused': {
|
14
|
+
outline: string;
|
15
|
+
outlineColor: string;
|
16
|
+
outlineOffset: string;
|
17
|
+
};
|
18
|
+
'&.is-pressed': {
|
19
|
+
color: string;
|
20
|
+
textDecoration: string;
|
21
|
+
};
|
22
|
+
display: string;
|
23
|
+
bg: string;
|
24
|
+
border: string;
|
25
|
+
borderColor: string;
|
26
|
+
height: string;
|
27
|
+
lineHeight: string;
|
28
|
+
fontFamily: string;
|
29
|
+
overflowWrap: import("../..").overflowWrap;
|
30
|
+
maxWidth: string;
|
31
|
+
wordWrap: import("../..").wordWrap;
|
32
|
+
wordBreak: import("../..").wordBreak;
|
33
|
+
cursor: string;
|
34
|
+
minWidth: string;
|
35
|
+
outline: string;
|
36
|
+
alignItems: string;
|
37
|
+
justifyContent: string;
|
38
|
+
borderRadius: string;
|
39
|
+
flexShrink: number;
|
40
|
+
whiteSpace: string;
|
41
|
+
};
|
42
|
+
selectItem: {
|
43
|
+
color: string;
|
44
|
+
fontSize: string;
|
45
|
+
fontWeight: number;
|
46
|
+
justifyContent: string;
|
47
|
+
display: string;
|
48
|
+
bg: string;
|
49
|
+
border: string;
|
50
|
+
borderColor: string;
|
51
|
+
height: string;
|
52
|
+
padding: string;
|
53
|
+
lineHeight: string;
|
54
|
+
'&.is-hovered': {
|
55
|
+
textDecoration: string;
|
56
|
+
};
|
57
|
+
'&.is-focused': {
|
58
|
+
boxShadow: string;
|
59
|
+
outline: string;
|
60
|
+
outlineColor: string;
|
61
|
+
outlineOffset: string;
|
62
|
+
};
|
63
|
+
fontFamily: string;
|
64
|
+
overflowWrap: import("../..").overflowWrap;
|
65
|
+
maxWidth: string;
|
66
|
+
wordWrap: import("../..").wordWrap;
|
67
|
+
wordBreak: import("../..").wordBreak;
|
68
|
+
cursor: string;
|
69
|
+
minWidth: string;
|
70
|
+
outline: string;
|
71
|
+
alignItems: string;
|
72
|
+
borderRadius: string;
|
73
|
+
flexShrink: number;
|
74
|
+
whiteSpace: string;
|
75
|
+
};
|
76
|
+
};
|
77
|
+
};
|
78
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from './EnvironmentBreadcrumb';
|
@@ -0,0 +1,60 @@
|
|
1
|
+
import { Dispatch, ReactElement, SetStateAction } from 'react';
|
2
|
+
import type { CollectionChildren, Node } from '@react-types/shared';
|
3
|
+
import { TestingAttributes } from './shared/test';
|
4
|
+
import { DOMAttributes, StyleProps } from './shared';
|
5
|
+
export interface EnvironmentBreadcrumbProps<T> extends StyleProps, TestingAttributes {
|
6
|
+
/** Callback function that fires when the selected key changes. */
|
7
|
+
onSelectionChange?: (keys: Selection | unknown) => unknown;
|
8
|
+
/** Current environment */
|
9
|
+
selectedItem?: ReactElement | string;
|
10
|
+
/** Displayed name */
|
11
|
+
name?: string;
|
12
|
+
/** Callback function that fires when name pressed */
|
13
|
+
onNamePress?: () => void;
|
14
|
+
/** The list of environments. */
|
15
|
+
items?: Iterable<T>;
|
16
|
+
/**
|
17
|
+
* Filter function to generate a filtered list of nodes.
|
18
|
+
*
|
19
|
+
* `(nodes: Iterable<Node>) => Iterable<Node>`
|
20
|
+
*/
|
21
|
+
itemsFilter?: (nodes: Iterable<Node<T>>) => Iterable<Node<T>>;
|
22
|
+
/** Callback function that fires when the dropdown is opened. */
|
23
|
+
onPopoverOpen?: () => void;
|
24
|
+
/** Callback function that fires when the dropdown is closed. */
|
25
|
+
onPopoverClose?: () => void;
|
26
|
+
/** Props object that is spread directly into the popover container component. */
|
27
|
+
popoverProps?: object;
|
28
|
+
/** Props object that is spread directly into the SearchField element. */
|
29
|
+
searchProps?: object;
|
30
|
+
/** Array of keys to disable within the options list. */
|
31
|
+
disabledKeys?: string[];
|
32
|
+
/** Text that will be shown if no search results found. */
|
33
|
+
emptySearchText?: string;
|
34
|
+
/** Sets the default open state of the overlay. */
|
35
|
+
isDefaultOpen?: boolean;
|
36
|
+
/** Whether the overlay is currently open. */
|
37
|
+
isOpen?: boolean;
|
38
|
+
/**
|
39
|
+
* Method that is called when the open state of the menu changes.
|
40
|
+
*
|
41
|
+
* `(isOpen: boolean, overlayTrigger: OverlayTriggerAction) => void`
|
42
|
+
*/
|
43
|
+
onOpenChange?: Dispatch<SetStateAction<boolean>>;
|
44
|
+
/** Callback function that returns number of filtered options. */
|
45
|
+
onFilteredOptionsNumber?: Dispatch<SetStateAction<number | null>>;
|
46
|
+
/** Message to announce number of available options by screen reader. */
|
47
|
+
optionsCountMessage?: string;
|
48
|
+
children?: CollectionChildren<T>;
|
49
|
+
}
|
50
|
+
export interface EnvironmentItemProps extends StyleProps, DOMAttributes, TestingAttributes {
|
51
|
+
name: string;
|
52
|
+
key?: string;
|
53
|
+
isSandbox?: boolean;
|
54
|
+
options?: Array<{
|
55
|
+
name: string;
|
56
|
+
isSandbox?: boolean;
|
57
|
+
options?: Array<object>;
|
58
|
+
}>;
|
59
|
+
childNodes?: Iterable<Node<object>>;
|
60
|
+
}
|
package/lib/cjs/types/index.d.ts
CHANGED
package/lib/cjs/types/index.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
|
-
var _context, _context2, _context3, _context4, _context5, _context6, _context7, _context8, _context9, _context10, _context11, _context12, _context13, _context14, _context15, _context16, _context17, _context18, _context19, _context20, _context21, _context22, _context23, _context24, _context25, _context26, _context27, _context28, _context29, _context30, _context31, _context32, _context33, _context34, _context35, _context36, _context37, _context38;
|
3
|
+
var _context, _context2, _context3, _context4, _context5, _context6, _context7, _context8, _context9, _context10, _context11, _context12, _context13, _context14, _context15, _context16, _context17, _context18, _context19, _context20, _context21, _context22, _context23, _context24, _context25, _context26, _context27, _context28, _context29, _context30, _context31, _context32, _context33, _context34, _context35, _context36, _context37, _context38, _context39;
|
4
4
|
var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
|
5
5
|
var _forEachInstanceProperty = require("@babel/runtime-corejs3/core-js-stable/instance/for-each");
|
6
6
|
var _Object$keys = require("@babel/runtime-corejs3/core-js-stable/object/keys");
|
@@ -106,8 +106,19 @@ _forEachInstanceProperty(_context9 = _Object$keys(_copyText)).call(_context9, fu
|
|
106
106
|
}
|
107
107
|
});
|
108
108
|
});
|
109
|
+
var _environmentBreadcrumb = require("./environmentBreadcrumb");
|
110
|
+
_forEachInstanceProperty(_context10 = _Object$keys(_environmentBreadcrumb)).call(_context10, function (key) {
|
111
|
+
if (key === "default" || key === "__esModule") return;
|
112
|
+
if (key in exports && exports[key] === _environmentBreadcrumb[key]) return;
|
113
|
+
_Object$defineProperty(exports, key, {
|
114
|
+
enumerable: true,
|
115
|
+
get: function get() {
|
116
|
+
return _environmentBreadcrumb[key];
|
117
|
+
}
|
118
|
+
});
|
119
|
+
});
|
109
120
|
var _fieldHelperText = require("./fieldHelperText");
|
110
|
-
_forEachInstanceProperty(
|
121
|
+
_forEachInstanceProperty(_context11 = _Object$keys(_fieldHelperText)).call(_context11, function (key) {
|
111
122
|
if (key === "default" || key === "__esModule") return;
|
112
123
|
if (key in exports && exports[key] === _fieldHelperText[key]) return;
|
113
124
|
_Object$defineProperty(exports, key, {
|
@@ -118,7 +129,7 @@ _forEachInstanceProperty(_context10 = _Object$keys(_fieldHelperText)).call(_cont
|
|
118
129
|
});
|
119
130
|
});
|
120
131
|
var _helpHint = require("./helpHint");
|
121
|
-
_forEachInstanceProperty(
|
132
|
+
_forEachInstanceProperty(_context12 = _Object$keys(_helpHint)).call(_context12, function (key) {
|
122
133
|
if (key === "default" || key === "__esModule") return;
|
123
134
|
if (key in exports && exports[key] === _helpHint[key]) return;
|
124
135
|
_Object$defineProperty(exports, key, {
|
@@ -129,7 +140,7 @@ _forEachInstanceProperty(_context11 = _Object$keys(_helpHint)).call(_context11,
|
|
129
140
|
});
|
130
141
|
});
|
131
142
|
var _icon = require("./icon");
|
132
|
-
_forEachInstanceProperty(
|
143
|
+
_forEachInstanceProperty(_context13 = _Object$keys(_icon)).call(_context13, function (key) {
|
133
144
|
if (key === "default" || key === "__esModule") return;
|
134
145
|
if (key in exports && exports[key] === _icon[key]) return;
|
135
146
|
_Object$defineProperty(exports, key, {
|
@@ -140,7 +151,7 @@ _forEachInstanceProperty(_context12 = _Object$keys(_icon)).call(_context12, func
|
|
140
151
|
});
|
141
152
|
});
|
142
153
|
var _iconBadge = require("./iconBadge");
|
143
|
-
_forEachInstanceProperty(
|
154
|
+
_forEachInstanceProperty(_context14 = _Object$keys(_iconBadge)).call(_context14, function (key) {
|
144
155
|
if (key === "default" || key === "__esModule") return;
|
145
156
|
if (key in exports && exports[key] === _iconBadge[key]) return;
|
146
157
|
_Object$defineProperty(exports, key, {
|
@@ -151,7 +162,7 @@ _forEachInstanceProperty(_context13 = _Object$keys(_iconBadge)).call(_context13,
|
|
151
162
|
});
|
152
163
|
});
|
153
164
|
var _iconButton = require("./iconButton");
|
154
|
-
_forEachInstanceProperty(
|
165
|
+
_forEachInstanceProperty(_context15 = _Object$keys(_iconButton)).call(_context15, function (key) {
|
155
166
|
if (key === "default" || key === "__esModule") return;
|
156
167
|
if (key in exports && exports[key] === _iconButton[key]) return;
|
157
168
|
_Object$defineProperty(exports, key, {
|
@@ -162,7 +173,7 @@ _forEachInstanceProperty(_context14 = _Object$keys(_iconButton)).call(_context14
|
|
162
173
|
});
|
163
174
|
});
|
164
175
|
var _iconButtonToggle = require("./iconButtonToggle");
|
165
|
-
_forEachInstanceProperty(
|
176
|
+
_forEachInstanceProperty(_context16 = _Object$keys(_iconButtonToggle)).call(_context16, function (key) {
|
166
177
|
if (key === "default" || key === "__esModule") return;
|
167
178
|
if (key in exports && exports[key] === _iconButtonToggle[key]) return;
|
168
179
|
_Object$defineProperty(exports, key, {
|
@@ -173,7 +184,7 @@ _forEachInstanceProperty(_context15 = _Object$keys(_iconButtonToggle)).call(_con
|
|
173
184
|
});
|
174
185
|
});
|
175
186
|
var _input = require("./input");
|
176
|
-
_forEachInstanceProperty(
|
187
|
+
_forEachInstanceProperty(_context17 = _Object$keys(_input)).call(_context17, function (key) {
|
177
188
|
if (key === "default" || key === "__esModule") return;
|
178
189
|
if (key in exports && exports[key] === _input[key]) return;
|
179
190
|
_Object$defineProperty(exports, key, {
|
@@ -184,7 +195,7 @@ _forEachInstanceProperty(_context16 = _Object$keys(_input)).call(_context16, fun
|
|
184
195
|
});
|
185
196
|
});
|
186
197
|
var _item = require("./item");
|
187
|
-
_forEachInstanceProperty(
|
198
|
+
_forEachInstanceProperty(_context18 = _Object$keys(_item)).call(_context18, function (key) {
|
188
199
|
if (key === "default" || key === "__esModule") return;
|
189
200
|
if (key in exports && exports[key] === _item[key]) return;
|
190
201
|
_Object$defineProperty(exports, key, {
|
@@ -195,7 +206,7 @@ _forEachInstanceProperty(_context17 = _Object$keys(_item)).call(_context17, func
|
|
195
206
|
});
|
196
207
|
});
|
197
208
|
var _label = require("./label");
|
198
|
-
_forEachInstanceProperty(
|
209
|
+
_forEachInstanceProperty(_context19 = _Object$keys(_label)).call(_context19, function (key) {
|
199
210
|
if (key === "default" || key === "__esModule") return;
|
200
211
|
if (key in exports && exports[key] === _label[key]) return;
|
201
212
|
_Object$defineProperty(exports, key, {
|
@@ -206,7 +217,7 @@ _forEachInstanceProperty(_context18 = _Object$keys(_label)).call(_context18, fun
|
|
206
217
|
});
|
207
218
|
});
|
208
219
|
var _link = require("./link");
|
209
|
-
_forEachInstanceProperty(
|
220
|
+
_forEachInstanceProperty(_context20 = _Object$keys(_link)).call(_context20, function (key) {
|
210
221
|
if (key === "default" || key === "__esModule") return;
|
211
222
|
if (key in exports && exports[key] === _link[key]) return;
|
212
223
|
_Object$defineProperty(exports, key, {
|
@@ -217,7 +228,7 @@ _forEachInstanceProperty(_context19 = _Object$keys(_link)).call(_context19, func
|
|
217
228
|
});
|
218
229
|
});
|
219
230
|
var _listBox = require("./listBox");
|
220
|
-
_forEachInstanceProperty(
|
231
|
+
_forEachInstanceProperty(_context21 = _Object$keys(_listBox)).call(_context21, function (key) {
|
221
232
|
if (key === "default" || key === "__esModule") return;
|
222
233
|
if (key in exports && exports[key] === _listBox[key]) return;
|
223
234
|
_Object$defineProperty(exports, key, {
|
@@ -228,7 +239,7 @@ _forEachInstanceProperty(_context20 = _Object$keys(_listBox)).call(_context20, f
|
|
228
239
|
});
|
229
240
|
});
|
230
241
|
var _listItem = require("./listItem");
|
231
|
-
_forEachInstanceProperty(
|
242
|
+
_forEachInstanceProperty(_context22 = _Object$keys(_listItem)).call(_context22, function (key) {
|
232
243
|
if (key === "default" || key === "__esModule") return;
|
233
244
|
if (key in exports && exports[key] === _listItem[key]) return;
|
234
245
|
_Object$defineProperty(exports, key, {
|
@@ -239,7 +250,7 @@ _forEachInstanceProperty(_context21 = _Object$keys(_listItem)).call(_context21,
|
|
239
250
|
});
|
240
251
|
});
|
241
252
|
var _loader = require("./loader");
|
242
|
-
_forEachInstanceProperty(
|
253
|
+
_forEachInstanceProperty(_context23 = _Object$keys(_loader)).call(_context23, function (key) {
|
243
254
|
if (key === "default" || key === "__esModule") return;
|
244
255
|
if (key in exports && exports[key] === _loader[key]) return;
|
245
256
|
_Object$defineProperty(exports, key, {
|
@@ -250,7 +261,7 @@ _forEachInstanceProperty(_context22 = _Object$keys(_loader)).call(_context22, fu
|
|
250
261
|
});
|
251
262
|
});
|
252
263
|
var _menu = require("./menu");
|
253
|
-
_forEachInstanceProperty(
|
264
|
+
_forEachInstanceProperty(_context24 = _Object$keys(_menu)).call(_context24, function (key) {
|
254
265
|
if (key === "default" || key === "__esModule") return;
|
255
266
|
if (key in exports && exports[key] === _menu[key]) return;
|
256
267
|
_Object$defineProperty(exports, key, {
|
@@ -261,7 +272,7 @@ _forEachInstanceProperty(_context23 = _Object$keys(_menu)).call(_context23, func
|
|
261
272
|
});
|
262
273
|
});
|
263
274
|
var _menuItem = require("./menuItem");
|
264
|
-
_forEachInstanceProperty(
|
275
|
+
_forEachInstanceProperty(_context25 = _Object$keys(_menuItem)).call(_context25, function (key) {
|
265
276
|
if (key === "default" || key === "__esModule") return;
|
266
277
|
if (key in exports && exports[key] === _menuItem[key]) return;
|
267
278
|
_Object$defineProperty(exports, key, {
|
@@ -272,7 +283,7 @@ _forEachInstanceProperty(_context24 = _Object$keys(_menuItem)).call(_context24,
|
|
272
283
|
});
|
273
284
|
});
|
274
285
|
var _messages = require("./messages");
|
275
|
-
_forEachInstanceProperty(
|
286
|
+
_forEachInstanceProperty(_context26 = _Object$keys(_messages)).call(_context26, function (key) {
|
276
287
|
if (key === "default" || key === "__esModule") return;
|
277
288
|
if (key in exports && exports[key] === _messages[key]) return;
|
278
289
|
_Object$defineProperty(exports, key, {
|
@@ -283,7 +294,7 @@ _forEachInstanceProperty(_context25 = _Object$keys(_messages)).call(_context25,
|
|
283
294
|
});
|
284
295
|
});
|
285
296
|
var _Modal = require("./Modal");
|
286
|
-
_forEachInstanceProperty(
|
297
|
+
_forEachInstanceProperty(_context27 = _Object$keys(_Modal)).call(_context27, function (key) {
|
287
298
|
if (key === "default" || key === "__esModule") return;
|
288
299
|
if (key in exports && exports[key] === _Modal[key]) return;
|
289
300
|
_Object$defineProperty(exports, key, {
|
@@ -294,7 +305,7 @@ _forEachInstanceProperty(_context26 = _Object$keys(_Modal)).call(_context26, fun
|
|
294
305
|
});
|
295
306
|
});
|
296
307
|
var _navBar = require("./navBar");
|
297
|
-
_forEachInstanceProperty(
|
308
|
+
_forEachInstanceProperty(_context28 = _Object$keys(_navBar)).call(_context28, function (key) {
|
298
309
|
if (key === "default" || key === "__esModule") return;
|
299
310
|
if (key in exports && exports[key] === _navBar[key]) return;
|
300
311
|
_Object$defineProperty(exports, key, {
|
@@ -305,7 +316,7 @@ _forEachInstanceProperty(_context27 = _Object$keys(_navBar)).call(_context27, fu
|
|
305
316
|
});
|
306
317
|
});
|
307
318
|
var _overlayPanel = require("./overlayPanel");
|
308
|
-
_forEachInstanceProperty(
|
319
|
+
_forEachInstanceProperty(_context29 = _Object$keys(_overlayPanel)).call(_context29, function (key) {
|
309
320
|
if (key === "default" || key === "__esModule") return;
|
310
321
|
if (key in exports && exports[key] === _overlayPanel[key]) return;
|
311
322
|
_Object$defineProperty(exports, key, {
|
@@ -316,7 +327,7 @@ _forEachInstanceProperty(_context28 = _Object$keys(_overlayPanel)).call(_context
|
|
316
327
|
});
|
317
328
|
});
|
318
329
|
var _popoverContainer = require("./popoverContainer");
|
319
|
-
_forEachInstanceProperty(
|
330
|
+
_forEachInstanceProperty(_context30 = _Object$keys(_popoverContainer)).call(_context30, function (key) {
|
320
331
|
if (key === "default" || key === "__esModule") return;
|
321
332
|
if (key in exports && exports[key] === _popoverContainer[key]) return;
|
322
333
|
_Object$defineProperty(exports, key, {
|
@@ -327,7 +338,7 @@ _forEachInstanceProperty(_context29 = _Object$keys(_popoverContainer)).call(_con
|
|
327
338
|
});
|
328
339
|
});
|
329
340
|
var _popoverMenu = require("./popoverMenu");
|
330
|
-
_forEachInstanceProperty(
|
341
|
+
_forEachInstanceProperty(_context31 = _Object$keys(_popoverMenu)).call(_context31, function (key) {
|
331
342
|
if (key === "default" || key === "__esModule") return;
|
332
343
|
if (key in exports && exports[key] === _popoverMenu[key]) return;
|
333
344
|
_Object$defineProperty(exports, key, {
|
@@ -338,7 +349,7 @@ _forEachInstanceProperty(_context30 = _Object$keys(_popoverMenu)).call(_context3
|
|
338
349
|
});
|
339
350
|
});
|
340
351
|
var _requirementsList = require("./requirementsList");
|
341
|
-
_forEachInstanceProperty(
|
352
|
+
_forEachInstanceProperty(_context32 = _Object$keys(_requirementsList)).call(_context32, function (key) {
|
342
353
|
if (key === "default" || key === "__esModule") return;
|
343
354
|
if (key in exports && exports[key] === _requirementsList[key]) return;
|
344
355
|
_Object$defineProperty(exports, key, {
|
@@ -349,7 +360,7 @@ _forEachInstanceProperty(_context31 = _Object$keys(_requirementsList)).call(_con
|
|
349
360
|
});
|
350
361
|
});
|
351
362
|
var _rockerButtonGroup = require("./rockerButtonGroup");
|
352
|
-
_forEachInstanceProperty(
|
363
|
+
_forEachInstanceProperty(_context33 = _Object$keys(_rockerButtonGroup)).call(_context33, function (key) {
|
353
364
|
if (key === "default" || key === "__esModule") return;
|
354
365
|
if (key in exports && exports[key] === _rockerButtonGroup[key]) return;
|
355
366
|
_Object$defineProperty(exports, key, {
|
@@ -360,7 +371,7 @@ _forEachInstanceProperty(_context32 = _Object$keys(_rockerButtonGroup)).call(_co
|
|
360
371
|
});
|
361
372
|
});
|
362
373
|
var _scrollBox = require("./scrollBox");
|
363
|
-
_forEachInstanceProperty(
|
374
|
+
_forEachInstanceProperty(_context34 = _Object$keys(_scrollBox)).call(_context34, function (key) {
|
364
375
|
if (key === "default" || key === "__esModule") return;
|
365
376
|
if (key in exports && exports[key] === _scrollBox[key]) return;
|
366
377
|
_Object$defineProperty(exports, key, {
|
@@ -371,7 +382,7 @@ _forEachInstanceProperty(_context33 = _Object$keys(_scrollBox)).call(_context33,
|
|
371
382
|
});
|
372
383
|
});
|
373
384
|
var _separator = require("./separator");
|
374
|
-
_forEachInstanceProperty(
|
385
|
+
_forEachInstanceProperty(_context35 = _Object$keys(_separator)).call(_context35, function (key) {
|
375
386
|
if (key === "default" || key === "__esModule") return;
|
376
387
|
if (key in exports && exports[key] === _separator[key]) return;
|
377
388
|
_Object$defineProperty(exports, key, {
|
@@ -382,7 +393,7 @@ _forEachInstanceProperty(_context34 = _Object$keys(_separator)).call(_context34,
|
|
382
393
|
});
|
383
394
|
});
|
384
395
|
var _shared = require("./shared");
|
385
|
-
_forEachInstanceProperty(
|
396
|
+
_forEachInstanceProperty(_context36 = _Object$keys(_shared)).call(_context36, function (key) {
|
386
397
|
if (key === "default" || key === "__esModule") return;
|
387
398
|
if (key in exports && exports[key] === _shared[key]) return;
|
388
399
|
_Object$defineProperty(exports, key, {
|
@@ -393,7 +404,7 @@ _forEachInstanceProperty(_context35 = _Object$keys(_shared)).call(_context35, fu
|
|
393
404
|
});
|
394
405
|
});
|
395
406
|
var _table = require("./table");
|
396
|
-
_forEachInstanceProperty(
|
407
|
+
_forEachInstanceProperty(_context37 = _Object$keys(_table)).call(_context37, function (key) {
|
397
408
|
if (key === "default" || key === "__esModule") return;
|
398
409
|
if (key in exports && exports[key] === _table[key]) return;
|
399
410
|
_Object$defineProperty(exports, key, {
|
@@ -404,7 +415,7 @@ _forEachInstanceProperty(_context36 = _Object$keys(_table)).call(_context36, fun
|
|
404
415
|
});
|
405
416
|
});
|
406
417
|
var _text = require("./text");
|
407
|
-
_forEachInstanceProperty(
|
418
|
+
_forEachInstanceProperty(_context38 = _Object$keys(_text)).call(_context38, function (key) {
|
408
419
|
if (key === "default" || key === "__esModule") return;
|
409
420
|
if (key in exports && exports[key] === _text[key]) return;
|
410
421
|
_Object$defineProperty(exports, key, {
|
@@ -415,7 +426,7 @@ _forEachInstanceProperty(_context37 = _Object$keys(_text)).call(_context37, func
|
|
415
426
|
});
|
416
427
|
});
|
417
428
|
var _tooltipTrigger = require("./tooltipTrigger");
|
418
|
-
_forEachInstanceProperty(
|
429
|
+
_forEachInstanceProperty(_context39 = _Object$keys(_tooltipTrigger)).call(_context39, function (key) {
|
419
430
|
if (key === "default" || key === "__esModule") return;
|
420
431
|
if (key in exports && exports[key] === _tooltipTrigger[key]) return;
|
421
432
|
_Object$defineProperty(exports, key, {
|
@@ -9,7 +9,7 @@ export interface ComboBoxStateType extends ComboBoxState<object> {
|
|
9
9
|
focusStrategy: FocusStrategy;
|
10
10
|
}
|
11
11
|
export interface ListStateType extends ListState<object> {
|
12
|
-
focusStrategy
|
12
|
+
focusStrategy?: FocusStrategy;
|
13
13
|
}
|
14
14
|
export type ListBoxStateType = ListStateType | ComboBoxStateType;
|
15
15
|
interface ListBoxItemType extends Node<unknown> {
|