@xplortech/apollo-vue 2.8.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/README.md +133 -0
- package/css/apollo.css +12909 -0
- package/dist/components.d.ts +71 -0
- package/dist/components.js +705 -0
- package/dist/components.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/plugin.d.ts +2 -0
- package/dist/plugin.js +13 -0
- package/dist/plugin.js.map +1 -0
- package/license +21 -0
- package/package.json +87 -0
|
@@ -0,0 +1,705 @@
|
|
|
1
|
+
import { defineContainer } from '@stencil/vue-output-target/runtime';
|
|
2
|
+
import { defineCustomElements } from '@xplortech/apollo-core/loader';
|
|
3
|
+
defineCustomElements();
|
|
4
|
+
export const XplAccordion = defineContainer('xpl-accordion', undefined, [
|
|
5
|
+
'contentId',
|
|
6
|
+
'header',
|
|
7
|
+
'description',
|
|
8
|
+
'initialExpanded',
|
|
9
|
+
'size',
|
|
10
|
+
'borderType'
|
|
11
|
+
]);
|
|
12
|
+
export const XplApplicationShell = defineContainer('xpl-application-shell', undefined, [
|
|
13
|
+
'withSubnav',
|
|
14
|
+
'withUtility',
|
|
15
|
+
'navWidth',
|
|
16
|
+
'isNavOpenAtStartup'
|
|
17
|
+
]);
|
|
18
|
+
export const XplAvatar = defineContainer('xpl-avatar', undefined, [
|
|
19
|
+
'color',
|
|
20
|
+
'disabled',
|
|
21
|
+
'groupData',
|
|
22
|
+
'href',
|
|
23
|
+
'name',
|
|
24
|
+
'size',
|
|
25
|
+
'src',
|
|
26
|
+
'status',
|
|
27
|
+
'subText',
|
|
28
|
+
'target',
|
|
29
|
+
'variant'
|
|
30
|
+
]);
|
|
31
|
+
export const XplBackdrop = defineContainer('xpl-backdrop', undefined, [
|
|
32
|
+
'relative'
|
|
33
|
+
]);
|
|
34
|
+
export const XplBadge = defineContainer('xpl-badge', undefined, [
|
|
35
|
+
'bordered',
|
|
36
|
+
'dot',
|
|
37
|
+
'dotOnly',
|
|
38
|
+
'shape',
|
|
39
|
+
'size',
|
|
40
|
+
'variant'
|
|
41
|
+
]);
|
|
42
|
+
export const XplBanner = defineContainer('xpl-banner', undefined, [
|
|
43
|
+
'actionText',
|
|
44
|
+
'appearance',
|
|
45
|
+
'description',
|
|
46
|
+
'hasIcon',
|
|
47
|
+
'heading',
|
|
48
|
+
'isDismissible',
|
|
49
|
+
'isSection',
|
|
50
|
+
'secondaryActionText',
|
|
51
|
+
'truncateDesc',
|
|
52
|
+
'action',
|
|
53
|
+
'dismiss',
|
|
54
|
+
'secondaryAction'
|
|
55
|
+
], [
|
|
56
|
+
'action',
|
|
57
|
+
'dismiss',
|
|
58
|
+
'secondaryAction'
|
|
59
|
+
]);
|
|
60
|
+
export const XplBreadcrumbItem = defineContainer('xpl-breadcrumb-item', undefined);
|
|
61
|
+
export const XplBreadcrumbs = defineContainer('xpl-breadcrumbs', undefined);
|
|
62
|
+
export const XplButton = defineContainer('xpl-button', undefined, [
|
|
63
|
+
'controlAttrs',
|
|
64
|
+
'disabled',
|
|
65
|
+
'form',
|
|
66
|
+
'fullWidth',
|
|
67
|
+
'icon',
|
|
68
|
+
'iconOnly',
|
|
69
|
+
'iconPosition',
|
|
70
|
+
'isLoading',
|
|
71
|
+
'link',
|
|
72
|
+
'name',
|
|
73
|
+
'sentiment',
|
|
74
|
+
'size',
|
|
75
|
+
'state',
|
|
76
|
+
'type',
|
|
77
|
+
'value',
|
|
78
|
+
'variant'
|
|
79
|
+
]);
|
|
80
|
+
export const XplButtonRow = defineContainer('xpl-button-row', undefined, [
|
|
81
|
+
'primary',
|
|
82
|
+
'secondary',
|
|
83
|
+
'tertiary',
|
|
84
|
+
'clickPrimary',
|
|
85
|
+
'clickSecondary',
|
|
86
|
+
'clickTertiary'
|
|
87
|
+
], [
|
|
88
|
+
'clickPrimary',
|
|
89
|
+
'clickSecondary',
|
|
90
|
+
'clickTertiary'
|
|
91
|
+
]);
|
|
92
|
+
export const XplCalendar = defineContainer('xpl-calendar', undefined, [
|
|
93
|
+
'inputId',
|
|
94
|
+
'dateFormat',
|
|
95
|
+
'max',
|
|
96
|
+
'min',
|
|
97
|
+
'mode',
|
|
98
|
+
'defaultDate',
|
|
99
|
+
'dateSelected'
|
|
100
|
+
], [
|
|
101
|
+
'dateSelected'
|
|
102
|
+
]);
|
|
103
|
+
export const XplCheckbox = defineContainer('xpl-checkbox', undefined, [
|
|
104
|
+
'ariaLabel',
|
|
105
|
+
'checked',
|
|
106
|
+
'description',
|
|
107
|
+
'disabled',
|
|
108
|
+
'indeterminate',
|
|
109
|
+
'name',
|
|
110
|
+
'value',
|
|
111
|
+
'required',
|
|
112
|
+
'styled',
|
|
113
|
+
'dataId',
|
|
114
|
+
'checkboxChange'
|
|
115
|
+
], [
|
|
116
|
+
'checkboxChange'
|
|
117
|
+
], 'checked', 'checkboxChange', 'detail');
|
|
118
|
+
export const XplChoicelist = defineContainer('xpl-choicelist', undefined, [
|
|
119
|
+
'choices',
|
|
120
|
+
'description',
|
|
121
|
+
'heading',
|
|
122
|
+
'multi',
|
|
123
|
+
'name',
|
|
124
|
+
'styled',
|
|
125
|
+
'choicelistChange',
|
|
126
|
+
'choicelistValueChange'
|
|
127
|
+
], [
|
|
128
|
+
'choicelistChange',
|
|
129
|
+
'choicelistValueChange'
|
|
130
|
+
]);
|
|
131
|
+
export const XplContentArea = defineContainer('xpl-content-area', undefined, [
|
|
132
|
+
'size'
|
|
133
|
+
]);
|
|
134
|
+
export const XplDashboard = defineContainer('xpl-dashboard', undefined);
|
|
135
|
+
export const XplDataCard = defineContainer('xpl-data-card', undefined, [
|
|
136
|
+
'link',
|
|
137
|
+
'name',
|
|
138
|
+
'stat',
|
|
139
|
+
'shortStat',
|
|
140
|
+
'variant',
|
|
141
|
+
'leadingIcon',
|
|
142
|
+
'icon',
|
|
143
|
+
'smallStat',
|
|
144
|
+
'smallStatIcon',
|
|
145
|
+
'detail',
|
|
146
|
+
'smallStatVariant',
|
|
147
|
+
'tooltipTextSmallStat',
|
|
148
|
+
'tooltipTextStat'
|
|
149
|
+
]);
|
|
150
|
+
export const XplDivider = defineContainer('xpl-divider', undefined, [
|
|
151
|
+
'tier'
|
|
152
|
+
]);
|
|
153
|
+
export const XplDropdown = defineContainer('xpl-dropdown', undefined, [
|
|
154
|
+
'isOpen',
|
|
155
|
+
'closeOnSelect',
|
|
156
|
+
'mode',
|
|
157
|
+
'options',
|
|
158
|
+
'anchorToTrigger',
|
|
159
|
+
'flipFallbackPlacements',
|
|
160
|
+
'placement',
|
|
161
|
+
'selectedValues',
|
|
162
|
+
'selectOnFocus',
|
|
163
|
+
'triggerId',
|
|
164
|
+
'update',
|
|
165
|
+
'isOpenChange'
|
|
166
|
+
], [
|
|
167
|
+
'isOpenChange'
|
|
168
|
+
]);
|
|
169
|
+
export const XplDropdownGroup = defineContainer('xpl-dropdown-group', undefined, [
|
|
170
|
+
'groupName',
|
|
171
|
+
'options'
|
|
172
|
+
]);
|
|
173
|
+
export const XplDropdownHeading = defineContainer('xpl-dropdown-heading', undefined, [
|
|
174
|
+
'label'
|
|
175
|
+
]);
|
|
176
|
+
export const XplDropdownOption = defineContainer('xpl-dropdown-option', undefined, [
|
|
177
|
+
'isDisabled',
|
|
178
|
+
'label',
|
|
179
|
+
'value',
|
|
180
|
+
'subtitle',
|
|
181
|
+
'icon',
|
|
182
|
+
'isSelected'
|
|
183
|
+
]);
|
|
184
|
+
export const XplDynamicTable = defineContainer('xpl-dynamic-table', undefined, [
|
|
185
|
+
'selectedItemCountChange'
|
|
186
|
+
], [
|
|
187
|
+
'selectedItemCountChange'
|
|
188
|
+
]);
|
|
189
|
+
export const XplDynamicTableCell = defineContainer('xpl-dynamic-table-cell', undefined, [
|
|
190
|
+
'disabled'
|
|
191
|
+
]);
|
|
192
|
+
export const XplDynamicTableRow = defineContainer('xpl-dynamic-table-row', undefined, [
|
|
193
|
+
'disabled',
|
|
194
|
+
'selected'
|
|
195
|
+
]);
|
|
196
|
+
export const XplGrid = defineContainer('xpl-grid', undefined);
|
|
197
|
+
export const XplGridItem = defineContainer('xpl-grid-item', undefined, [
|
|
198
|
+
'xs',
|
|
199
|
+
'sm',
|
|
200
|
+
'md',
|
|
201
|
+
'lg'
|
|
202
|
+
]);
|
|
203
|
+
export const XplHeaderAccordion = defineContainer('xpl-header-accordion', undefined, [
|
|
204
|
+
'contentId',
|
|
205
|
+
'initialExpanded',
|
|
206
|
+
'disabled',
|
|
207
|
+
'selectedCount',
|
|
208
|
+
'hasCheckbox'
|
|
209
|
+
]);
|
|
210
|
+
export const XplIcon = defineContainer('xpl-icon', undefined, [
|
|
211
|
+
'icon',
|
|
212
|
+
'size',
|
|
213
|
+
'backgroundColor'
|
|
214
|
+
]);
|
|
215
|
+
export const XplInput = defineContainer('xpl-input', undefined, [
|
|
216
|
+
'_id',
|
|
217
|
+
'description',
|
|
218
|
+
'disabled',
|
|
219
|
+
'error',
|
|
220
|
+
'label',
|
|
221
|
+
'name',
|
|
222
|
+
'required',
|
|
223
|
+
'readonly',
|
|
224
|
+
'value',
|
|
225
|
+
'autocomplete',
|
|
226
|
+
'placeholder',
|
|
227
|
+
'post',
|
|
228
|
+
'pre',
|
|
229
|
+
'max',
|
|
230
|
+
'min',
|
|
231
|
+
'step',
|
|
232
|
+
'multiline',
|
|
233
|
+
'maxCharacterCount',
|
|
234
|
+
'dateFormat',
|
|
235
|
+
'timeFormat',
|
|
236
|
+
'allowCustomOption',
|
|
237
|
+
'mode',
|
|
238
|
+
'accept',
|
|
239
|
+
'multiple',
|
|
240
|
+
'hideTriggerOnSelect',
|
|
241
|
+
'hideFileNames',
|
|
242
|
+
'hideAcceptText',
|
|
243
|
+
'hideEyeDropper',
|
|
244
|
+
'defaultCountry',
|
|
245
|
+
'preferredCountries',
|
|
246
|
+
'isInternational',
|
|
247
|
+
'ariaLabel',
|
|
248
|
+
'shape',
|
|
249
|
+
'type',
|
|
250
|
+
'blurEvent',
|
|
251
|
+
'focusEvent',
|
|
252
|
+
'inputEvent',
|
|
253
|
+
'search',
|
|
254
|
+
'valueChange'
|
|
255
|
+
], [
|
|
256
|
+
'blurEvent',
|
|
257
|
+
'focusEvent',
|
|
258
|
+
'inputEvent',
|
|
259
|
+
'search',
|
|
260
|
+
'valueChange'
|
|
261
|
+
], 'value', 'valueChange', 'detail');
|
|
262
|
+
export const XplInputColor = defineContainer('xpl-input-color', undefined, [
|
|
263
|
+
'value',
|
|
264
|
+
'placeholder',
|
|
265
|
+
'disabled',
|
|
266
|
+
'required',
|
|
267
|
+
'hideEyeDropper',
|
|
268
|
+
'inputChange',
|
|
269
|
+
'hasErrorStateChanged'
|
|
270
|
+
], [
|
|
271
|
+
'inputChange',
|
|
272
|
+
'hasErrorStateChanged'
|
|
273
|
+
]);
|
|
274
|
+
export const XplInputDate = defineContainer('xpl-input-date', undefined, [
|
|
275
|
+
'inputId',
|
|
276
|
+
'disabled',
|
|
277
|
+
'name',
|
|
278
|
+
'required',
|
|
279
|
+
'readonly',
|
|
280
|
+
'value',
|
|
281
|
+
'placeholder',
|
|
282
|
+
'post',
|
|
283
|
+
'pre',
|
|
284
|
+
'max',
|
|
285
|
+
'min',
|
|
286
|
+
'dateFormat',
|
|
287
|
+
'mode',
|
|
288
|
+
'valueChange',
|
|
289
|
+
'hasErrorStateChanged',
|
|
290
|
+
'rangeSelected'
|
|
291
|
+
], [
|
|
292
|
+
'valueChange',
|
|
293
|
+
'hasErrorStateChanged',
|
|
294
|
+
'rangeSelected'
|
|
295
|
+
]);
|
|
296
|
+
export const XplInputFile = defineContainer('xpl-input-file', undefined, [
|
|
297
|
+
'disabled',
|
|
298
|
+
'name',
|
|
299
|
+
'_id',
|
|
300
|
+
'accept',
|
|
301
|
+
'multiple',
|
|
302
|
+
'hideTriggerOnSelect',
|
|
303
|
+
'hideFileNames',
|
|
304
|
+
'hideAcceptText',
|
|
305
|
+
'inputChange'
|
|
306
|
+
], [
|
|
307
|
+
'inputChange'
|
|
308
|
+
]);
|
|
309
|
+
export const XplInputPhone = defineContainer('xpl-input-phone', undefined, [
|
|
310
|
+
'defaultCountry',
|
|
311
|
+
'disabled',
|
|
312
|
+
'inputId',
|
|
313
|
+
'isInternational',
|
|
314
|
+
'name',
|
|
315
|
+
'placeholder',
|
|
316
|
+
'preferredCountries',
|
|
317
|
+
'readonly',
|
|
318
|
+
'required',
|
|
319
|
+
'value',
|
|
320
|
+
'hasErrorStateChanged',
|
|
321
|
+
'valueChange'
|
|
322
|
+
], [
|
|
323
|
+
'hasErrorStateChanged',
|
|
324
|
+
'valueChange'
|
|
325
|
+
]);
|
|
326
|
+
export const XplInputSearch = defineContainer('xpl-input-search', undefined, [
|
|
327
|
+
'ariaLabel',
|
|
328
|
+
'autocomplete',
|
|
329
|
+
'disabled',
|
|
330
|
+
'errorMessageId',
|
|
331
|
+
'hasError',
|
|
332
|
+
'hasVisibleLabel',
|
|
333
|
+
'inputId',
|
|
334
|
+
'name',
|
|
335
|
+
'placeholder',
|
|
336
|
+
'readonly',
|
|
337
|
+
'required',
|
|
338
|
+
'shape',
|
|
339
|
+
'value',
|
|
340
|
+
'blurEvent',
|
|
341
|
+
'focusEvent',
|
|
342
|
+
'inputEvent',
|
|
343
|
+
'search',
|
|
344
|
+
'valueChange'
|
|
345
|
+
], [
|
|
346
|
+
'blurEvent',
|
|
347
|
+
'focusEvent',
|
|
348
|
+
'inputEvent',
|
|
349
|
+
'search',
|
|
350
|
+
'valueChange'
|
|
351
|
+
]);
|
|
352
|
+
export const XplInputTime = defineContainer('xpl-input-time', undefined, [
|
|
353
|
+
'inputId',
|
|
354
|
+
'disabled',
|
|
355
|
+
'name',
|
|
356
|
+
'required',
|
|
357
|
+
'readonly',
|
|
358
|
+
'value',
|
|
359
|
+
'placeholder',
|
|
360
|
+
'max',
|
|
361
|
+
'min',
|
|
362
|
+
'step',
|
|
363
|
+
'mode',
|
|
364
|
+
'timeFormat',
|
|
365
|
+
'allowCustomOption',
|
|
366
|
+
'valueChange',
|
|
367
|
+
'hasErrorStateChanged'
|
|
368
|
+
], [
|
|
369
|
+
'valueChange',
|
|
370
|
+
'hasErrorStateChanged'
|
|
371
|
+
]);
|
|
372
|
+
export const XplLargeCard = defineContainer('xpl-large-card', undefined, [
|
|
373
|
+
'link',
|
|
374
|
+
'name',
|
|
375
|
+
'description'
|
|
376
|
+
]);
|
|
377
|
+
export const XplList = defineContainer('xpl-list', undefined, [
|
|
378
|
+
'items',
|
|
379
|
+
'label',
|
|
380
|
+
'labelledBy',
|
|
381
|
+
'reorderable',
|
|
382
|
+
'selectable',
|
|
383
|
+
'itemSelect',
|
|
384
|
+
'orderChange'
|
|
385
|
+
], [
|
|
386
|
+
'itemSelect',
|
|
387
|
+
'orderChange'
|
|
388
|
+
]);
|
|
389
|
+
export const XplListItem = defineContainer('xpl-list-item', undefined, [
|
|
390
|
+
'disabled',
|
|
391
|
+
'error',
|
|
392
|
+
'hidden',
|
|
393
|
+
'href',
|
|
394
|
+
'item',
|
|
395
|
+
'itemId',
|
|
396
|
+
'keyboardActive',
|
|
397
|
+
'radioName',
|
|
398
|
+
'reorderable',
|
|
399
|
+
'selectable',
|
|
400
|
+
'selected',
|
|
401
|
+
'showDivider',
|
|
402
|
+
'titleBadgeVariant',
|
|
403
|
+
'itemDragEnd',
|
|
404
|
+
'itemDragStart',
|
|
405
|
+
'itemDrop',
|
|
406
|
+
'itemSelect'
|
|
407
|
+
], [
|
|
408
|
+
'itemDragEnd',
|
|
409
|
+
'itemDragStart',
|
|
410
|
+
'itemDrop',
|
|
411
|
+
'itemSelect'
|
|
412
|
+
]);
|
|
413
|
+
export const XplMainNav = defineContainer('xpl-main-nav', undefined, [
|
|
414
|
+
'width',
|
|
415
|
+
'navWidth'
|
|
416
|
+
], [
|
|
417
|
+
'navWidth'
|
|
418
|
+
]);
|
|
419
|
+
export const XplModal = defineContainer('xpl-modal', undefined, [
|
|
420
|
+
'isOpen',
|
|
421
|
+
'size',
|
|
422
|
+
'variant',
|
|
423
|
+
'modalClosed'
|
|
424
|
+
], [
|
|
425
|
+
'modalClosed'
|
|
426
|
+
]);
|
|
427
|
+
export const XplNavHeaderMenu = defineContainer('xpl-nav-header-menu', undefined, [
|
|
428
|
+
'email',
|
|
429
|
+
'username'
|
|
430
|
+
]);
|
|
431
|
+
export const XplNavItem = defineContainer('xpl-nav-item', undefined, [
|
|
432
|
+
'navControl',
|
|
433
|
+
'navOpen'
|
|
434
|
+
], [
|
|
435
|
+
'navOpen'
|
|
436
|
+
]);
|
|
437
|
+
export const XplPagination = defineContainer('xpl-pagination', undefined, [
|
|
438
|
+
'totalPages',
|
|
439
|
+
'withPageControl',
|
|
440
|
+
'currentPage',
|
|
441
|
+
'rowsPerPageOptions',
|
|
442
|
+
'selectedRowsPerPage',
|
|
443
|
+
'pageChange',
|
|
444
|
+
'rowsPerPageChange'
|
|
445
|
+
], [
|
|
446
|
+
'pageChange',
|
|
447
|
+
'rowsPerPageChange'
|
|
448
|
+
]);
|
|
449
|
+
export const XplPanel = defineContainer('xpl-panel', undefined, [
|
|
450
|
+
'accent',
|
|
451
|
+
'padding'
|
|
452
|
+
]);
|
|
453
|
+
export const XplPopover = defineContainer('xpl-popover', undefined, [
|
|
454
|
+
'isOpen',
|
|
455
|
+
'disabled',
|
|
456
|
+
'position',
|
|
457
|
+
'display',
|
|
458
|
+
'isOpenChange'
|
|
459
|
+
], [
|
|
460
|
+
'isOpenChange'
|
|
461
|
+
]);
|
|
462
|
+
export const XplProgressBar = defineContainer('xpl-progress-bar', undefined, [
|
|
463
|
+
'helperText',
|
|
464
|
+
'label',
|
|
465
|
+
'max',
|
|
466
|
+
'size',
|
|
467
|
+
'value',
|
|
468
|
+
'variant'
|
|
469
|
+
]);
|
|
470
|
+
export const XplProgressIndicator = defineContainer('xpl-progress-indicator', undefined, [
|
|
471
|
+
'currentStep',
|
|
472
|
+
'layout',
|
|
473
|
+
'showLabels',
|
|
474
|
+
'showNumbers',
|
|
475
|
+
'steps'
|
|
476
|
+
]);
|
|
477
|
+
export const XplRadio = defineContainer('xpl-radio', undefined, [
|
|
478
|
+
'checked',
|
|
479
|
+
'description',
|
|
480
|
+
'disabled',
|
|
481
|
+
'name',
|
|
482
|
+
'value',
|
|
483
|
+
'required',
|
|
484
|
+
'selectedValue',
|
|
485
|
+
'styled',
|
|
486
|
+
'radioChange'
|
|
487
|
+
], [
|
|
488
|
+
'radioChange'
|
|
489
|
+
], 'selectedValue', 'radioChange', 'detail');
|
|
490
|
+
export const XplSecondaryNav = defineContainer('xpl-secondary-nav', undefined);
|
|
491
|
+
export const XplSelect = defineContainer('xpl-select', undefined, [
|
|
492
|
+
'choices',
|
|
493
|
+
'selectIcon',
|
|
494
|
+
'description',
|
|
495
|
+
'disabled',
|
|
496
|
+
'dropdownFlipFallbackPlacements',
|
|
497
|
+
'dropdownPlacement',
|
|
498
|
+
'error',
|
|
499
|
+
'label',
|
|
500
|
+
'mode',
|
|
501
|
+
'name',
|
|
502
|
+
'placeholder',
|
|
503
|
+
'truncate',
|
|
504
|
+
'customDisplayValue',
|
|
505
|
+
'selectedValues',
|
|
506
|
+
'classNames',
|
|
507
|
+
'selectChange',
|
|
508
|
+
'changeEvent',
|
|
509
|
+
'dropdownStateChange',
|
|
510
|
+
'triggerDropdown'
|
|
511
|
+
], [
|
|
512
|
+
'selectChange',
|
|
513
|
+
'changeEvent',
|
|
514
|
+
'dropdownStateChange',
|
|
515
|
+
'triggerDropdown'
|
|
516
|
+
], 'selectedValues', 'changeEvent', 'detail');
|
|
517
|
+
export const XplSideNav = defineContainer('xpl-side-nav', undefined, [
|
|
518
|
+
'label'
|
|
519
|
+
]);
|
|
520
|
+
export const XplSideNavItem = defineContainer('xpl-side-nav-item', undefined, [
|
|
521
|
+
'disabled',
|
|
522
|
+
'expanded',
|
|
523
|
+
'hasChildren',
|
|
524
|
+
'hidden',
|
|
525
|
+
'icon',
|
|
526
|
+
'label',
|
|
527
|
+
'link',
|
|
528
|
+
'selected',
|
|
529
|
+
'expandedChange',
|
|
530
|
+
'navClick'
|
|
531
|
+
], [
|
|
532
|
+
'expandedChange',
|
|
533
|
+
'navClick'
|
|
534
|
+
]);
|
|
535
|
+
export const XplSkeleton = defineContainer('xpl-skeleton', undefined, [
|
|
536
|
+
'classNames',
|
|
537
|
+
'fullWidth',
|
|
538
|
+
'height',
|
|
539
|
+
'width',
|
|
540
|
+
'margin',
|
|
541
|
+
'shape',
|
|
542
|
+
'size'
|
|
543
|
+
]);
|
|
544
|
+
export const XplSlideout = defineContainer('xpl-slideout', undefined, [
|
|
545
|
+
'isOpen',
|
|
546
|
+
'backdrop',
|
|
547
|
+
'variant',
|
|
548
|
+
'showFooter',
|
|
549
|
+
'isOpenChange'
|
|
550
|
+
], [
|
|
551
|
+
'isOpenChange'
|
|
552
|
+
]);
|
|
553
|
+
export const XplSpotlight = defineContainer('xpl-spotlight', undefined, [
|
|
554
|
+
'actionLayout',
|
|
555
|
+
'anchorPosition',
|
|
556
|
+
'body',
|
|
557
|
+
'currentStep',
|
|
558
|
+
'heading',
|
|
559
|
+
'isDismissible',
|
|
560
|
+
'isOpen',
|
|
561
|
+
'primaryActionLabel',
|
|
562
|
+
'secondaryActionLabel',
|
|
563
|
+
'showActions',
|
|
564
|
+
'showImage',
|
|
565
|
+
'showSteps',
|
|
566
|
+
'target',
|
|
567
|
+
'totalSteps',
|
|
568
|
+
'dismiss',
|
|
569
|
+
'primaryAction',
|
|
570
|
+
'secondaryAction',
|
|
571
|
+
'targetClick'
|
|
572
|
+
], [
|
|
573
|
+
'dismiss',
|
|
574
|
+
'primaryAction',
|
|
575
|
+
'secondaryAction',
|
|
576
|
+
'targetClick'
|
|
577
|
+
]);
|
|
578
|
+
export const XplTab = defineContainer('xpl-tab', undefined, [
|
|
579
|
+
'disabled',
|
|
580
|
+
'fullWidth',
|
|
581
|
+
'groupDisabled',
|
|
582
|
+
'icon',
|
|
583
|
+
'iconPosition',
|
|
584
|
+
'selected',
|
|
585
|
+
'target',
|
|
586
|
+
'variant',
|
|
587
|
+
'tabChange'
|
|
588
|
+
], [
|
|
589
|
+
'tabChange'
|
|
590
|
+
]);
|
|
591
|
+
export const XplTabPanel = defineContainer('xpl-tab-panel', undefined, [
|
|
592
|
+
'selected',
|
|
593
|
+
'target'
|
|
594
|
+
]);
|
|
595
|
+
export const XplTable = defineContainer('xpl-table', undefined, [
|
|
596
|
+
'columns',
|
|
597
|
+
'data',
|
|
598
|
+
'footer',
|
|
599
|
+
'freeze',
|
|
600
|
+
'multiselect',
|
|
601
|
+
'striped',
|
|
602
|
+
'selectedValues',
|
|
603
|
+
'isSortable',
|
|
604
|
+
'sortableColumns',
|
|
605
|
+
'tableSelect',
|
|
606
|
+
'sortChanged'
|
|
607
|
+
], [
|
|
608
|
+
'tableSelect',
|
|
609
|
+
'sortChanged'
|
|
610
|
+
]);
|
|
611
|
+
export const XplTableHeader = defineContainer('xpl-table-header', undefined);
|
|
612
|
+
export const XplTableHeaderCell = defineContainer('xpl-table-header-cell', undefined, [
|
|
613
|
+
'icon',
|
|
614
|
+
'sortable',
|
|
615
|
+
'label',
|
|
616
|
+
'type',
|
|
617
|
+
'width',
|
|
618
|
+
'sortChanged'
|
|
619
|
+
], [
|
|
620
|
+
'sortChanged'
|
|
621
|
+
]);
|
|
622
|
+
export const XplTabs = defineContainer('xpl-tabs', undefined, [
|
|
623
|
+
'disabled',
|
|
624
|
+
'fullWidth',
|
|
625
|
+
'type',
|
|
626
|
+
'value',
|
|
627
|
+
'tabChange'
|
|
628
|
+
], [
|
|
629
|
+
'tabChange'
|
|
630
|
+
]);
|
|
631
|
+
export const XplTag = defineContainer('xpl-tag', undefined, [
|
|
632
|
+
'disabled',
|
|
633
|
+
'dismissible',
|
|
634
|
+
'isDraggable',
|
|
635
|
+
'size',
|
|
636
|
+
'tagId',
|
|
637
|
+
'close',
|
|
638
|
+
'tagDragEnd',
|
|
639
|
+
'tagDragStart',
|
|
640
|
+
'tagRemove'
|
|
641
|
+
], [
|
|
642
|
+
'close',
|
|
643
|
+
'tagDragEnd',
|
|
644
|
+
'tagDragStart',
|
|
645
|
+
'tagRemove'
|
|
646
|
+
]);
|
|
647
|
+
export const XplToast = defineContainer('xpl-toast', undefined, [
|
|
648
|
+
'variant',
|
|
649
|
+
'showIcon',
|
|
650
|
+
'caption',
|
|
651
|
+
'dismissable',
|
|
652
|
+
'timeout'
|
|
653
|
+
]);
|
|
654
|
+
export const XplToggle = defineContainer('xpl-toggle', undefined, [
|
|
655
|
+
'checked',
|
|
656
|
+
'description',
|
|
657
|
+
'disabled',
|
|
658
|
+
'heading',
|
|
659
|
+
'label',
|
|
660
|
+
'name',
|
|
661
|
+
'variant',
|
|
662
|
+
'toggleChange'
|
|
663
|
+
], [
|
|
664
|
+
'toggleChange'
|
|
665
|
+
], 'checked', 'toggleChange', 'detail');
|
|
666
|
+
export const XplToolbar = defineContainer('xpl-toolbar', undefined, [
|
|
667
|
+
'selectedItemCount'
|
|
668
|
+
]);
|
|
669
|
+
export const XplTooltip = defineContainer('xpl-tooltip', undefined, [
|
|
670
|
+
'text',
|
|
671
|
+
'position',
|
|
672
|
+
'hideArrow'
|
|
673
|
+
]);
|
|
674
|
+
export const XplTopNav = defineContainer('xpl-top-nav', undefined, [
|
|
675
|
+
'brandHref',
|
|
676
|
+
'brandLogo',
|
|
677
|
+
'brandName',
|
|
678
|
+
'childAccountLabel',
|
|
679
|
+
'label',
|
|
680
|
+
'navControl',
|
|
681
|
+
'brandClick',
|
|
682
|
+
'navOpen'
|
|
683
|
+
], [
|
|
684
|
+
'brandClick',
|
|
685
|
+
'navOpen'
|
|
686
|
+
]);
|
|
687
|
+
export const XplTopNavItem = defineContainer('xpl-top-nav-item', undefined, [
|
|
688
|
+
'active',
|
|
689
|
+
'href',
|
|
690
|
+
'icon',
|
|
691
|
+
'itemAriaLabel',
|
|
692
|
+
'label',
|
|
693
|
+
'selected',
|
|
694
|
+
'navItemClick'
|
|
695
|
+
], [
|
|
696
|
+
'navItemClick'
|
|
697
|
+
]);
|
|
698
|
+
export const XplUtilityBar = defineContainer('xpl-utility-bar', undefined, [
|
|
699
|
+
'navControl',
|
|
700
|
+
'isNavOpenAtStartup',
|
|
701
|
+
'navOpen'
|
|
702
|
+
], [
|
|
703
|
+
'navOpen'
|
|
704
|
+
]);
|
|
705
|
+
//# sourceMappingURL=components.js.map
|