-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
556 lines (556 loc) · 39.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
{
"name": "@ember-eui/core",
"version": "11.0.1",
"description": "Ember Components for Elastic UI",
"keywords": [
"ember-addon",
"elastic",
"design",
"ember",
"eui",
" netlify-plugin"
],
"repository": "https://github.com/prysmex/ember-eui",
"license": "MIT",
"author": "Alberto Cantu <betocantu93@gmail.com> (https://betocantu93.com)",
"contributors:": [
"David Martinez",
"Mario Trujillo",
"Victor Aguilar",
"Diego Zubieta",
"Gustavo Rodriguez",
"Gerardo Pérez"
],
"exports": {
".": {
"types": "./declarations/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./declarations/*.d.ts",
"default": "./dist/*.js"
},
"./addon-main.js": "./addon-main.js",
"./themes/dark.css": "./vendor/eui_theme_dark.min.css",
"./themes/light.css": "./vendor/eui_theme_light.min.css"
},
"files": [
"addon-main.js",
"declarations",
"dist",
"vendor/**/*"
],
"scripts": {
"build": "concurrently 'npm:build:*'",
"build:js": "rollup --config ./rollup.config.mjs",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"prepack": "pnpm run build",
"start": "concurrently 'npm:start:*'",
"start:js": "rollup --config --watch",
"start:types": "glint --build --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{json,css,scss,md,ts,js}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"pnpm-sync-dependencies-meta-injected": "^0.0.10",
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/plugin-transform-class-static-block": "^7.20.0",
"@babel/plugin-transform-typescript": "^7.12.13",
"@babel/preset-typescript": "^7.18.6",
"@embroider/addon-dev": "^4.3.1",
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
"@glint/environment-ember-loose": "^1.3.0",
"@glint/environment-ember-template-imports": "^1.3.0",
"@glint/template": "^1.3.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@tsconfig/ember": "3.0.0",
"@types/chroma-js": "^2.4.0",
"@types/ember": "^4.0.4",
"@types/ember__application": "^4.0.6",
"@types/ember__array": "^4.0.4",
"@types/ember__component": "^4.0.14",
"@types/ember__controller": "^4.0.5",
"@types/ember__debug": "^4.0.4",
"@types/ember__destroyable": "^4.0.3",
"@types/ember__engine": "^4.0.5",
"@types/ember__error": "^4.0.3",
"@types/ember__helper": "^4.0.3",
"@types/ember__modifier": "^4.0.6",
"@types/ember__object": "^4.0.6",
"@types/ember__owner": "^4.0.4",
"@types/ember__polyfills": "^4.0.2",
"@types/ember__routing": "^4.0.13",
"@types/ember__runloop": "^4.0.3",
"@types/ember__service": "^4.0.3",
"@types/ember__string": "^3.16.3",
"@types/ember__template": "^4.0.2",
"@types/ember__test": "^4.0.2",
"@types/ember__utils": "^4.0.3",
"@types/lodash-es": "^4.17.4",
"@types/refractor": "^3.0.0",
"babel-plugin-ember-template-compilation": "^2.2.5",
"concurrently": "^8.2.2",
"@ember/string": "^3.1.1",
"ember-focus-trap": "^1.1.0",
"ember-source": "~4.2.0",
"ember-template-imports": "^4.1.1",
"ember-template-lint": "^5.11.2",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-ember": "^11.6.0",
"eslint-plugin-node": "^11.1.0",
"moment": "^2.29.3",
"rollup": "~4.3.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-glimmer-template-tag": "^0.4.1",
"rollup-plugin-ts": "^3.0.2",
"execa": "^8.0.1",
"fix-bad-declaration-output": "^1.1.4",
"typescript": "^5.3.3",
"webpack": "^5.89.0"
},
"dependencies": {
"@babel/runtime": "^7.23.2",
"@elastic/datemath": "^5.0.3",
"@ember/render-modifiers": "^2.1.0",
"@embroider/addon-shim": "^1.8.9",
"@embroider/util": "^1.13.1",
"@html-next/vertical-collection": "4.0.0",
"chroma-js": "^2.1.0",
"ember-auto-import": "^2.7.2",
"ember-cached-decorator-polyfill": "^1.0.2",
"ember-cli-string-helpers": "^6.1.0",
"ember-composable-helpers": "^5.0.0",
"ember-element-helper": "^0.8.6",
"ember-event-helpers": "^0.1.1",
"ember-in-element-polyfill": "^1.0.0",
"ember-keyboard": "^7.0.1",
"ember-math-helpers": "^2.15.0",
"ember-modifier": "^4.1.0",
"ember-power-select": "7.2.0",
"ember-set-body-class": "^1.0.2",
"ember-set-helper": "^2.0.1",
"ember-style-modifier": "^3.0.1",
"ember-svg-jar": "^2.4.7",
"ember-truth-helpers": "^4.0.3",
"lodash-es": "^4.17.21",
"mdast-util-to-hast": "^10.2.0",
"refractor": "^3.5.0",
"rehype-raw": "^5.0.0",
"rehype-stringify": "^8.0.0",
"remark-breaks": "^3.0.2",
"remark-emoji": "^2.1.0",
"remark-parse": "^8.0.3",
"remark-rehype": "^8.0.0",
"resolve": "^1.13.1",
"tabbable": "^5.1.5",
"unified": "^9.2.0",
"unist-util-visit": "^2.0.3",
"vfile": "^4.2.0",
"vfile-message": "^2.0.0",
"decorator-transforms": "^1.0.3"
},
"peerDependencies": {
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
"ember-auto-import": "^2.7.2",
"ember-focus-trap": "^1.1.0",
"ember-source": "^3.28.0 || >=4.0.0",
"moment": "^2.29.3",
"@ember/string": "^3.1.1"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "12.* || 14.* || >= 16"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.js",
"app-js": {
"./components/common.js": "./dist/_app_/components/common.js",
"./components/eui-accordion.js": "./dist/_app_/components/eui-accordion.js",
"./components/eui-auto-sizer.js": "./dist/_app_/components/eui-auto-sizer.js",
"./components/eui-avatar.js": "./dist/_app_/components/eui-avatar.js",
"./components/eui-badge-group.js": "./dist/_app_/components/eui-badge-group.js",
"./components/eui-badge.js": "./dist/_app_/components/eui-badge.js",
"./components/eui-beta-badge.js": "./dist/_app_/components/eui-beta-badge.js",
"./components/eui-bottom-bar.js": "./dist/_app_/components/eui-bottom-bar.js",
"./components/eui-breadcrumbs.js": "./dist/_app_/components/eui-breadcrumbs.js",
"./components/eui-button-content.js": "./dist/_app_/components/eui-button-content.js",
"./components/eui-button-empty.js": "./dist/_app_/components/eui-button-empty.js",
"./components/eui-button-group-button.js": "./dist/_app_/components/eui-button-group-button.js",
"./components/eui-button-group.js": "./dist/_app_/components/eui-button-group.js",
"./components/eui-button-icon.js": "./dist/_app_/components/eui-button-icon.js",
"./components/eui-button.js": "./dist/_app_/components/eui-button.js",
"./components/eui-call-out.js": "./dist/_app_/components/eui-call-out.js",
"./components/eui-card-select.js": "./dist/_app_/components/eui-card-select.js",
"./components/eui-card.js": "./dist/_app_/components/eui-card.js",
"./components/eui-checkable-card.js": "./dist/_app_/components/eui-checkable-card.js",
"./components/eui-checkbox-group.js": "./dist/_app_/components/eui-checkbox-group.js",
"./components/eui-checkbox.js": "./dist/_app_/components/eui-checkbox.js",
"./components/eui-code-block.js": "./dist/_app_/components/eui-code-block.js",
"./components/eui-code-block/controls.js": "./dist/_app_/components/eui-code-block/controls.js",
"./components/eui-code-block/full-screen-display.js": "./dist/_app_/components/eui-code-block/full-screen-display.js",
"./components/eui-code-block/virtualized.js": "./dist/_app_/components/eui-code-block/virtualized.js",
"./components/eui-code.js": "./dist/_app_/components/eui-code.js",
"./components/eui-collapsible-nav-group.js": "./dist/_app_/components/eui-collapsible-nav-group.js",
"./components/eui-collapsible-nav.js": "./dist/_app_/components/eui-collapsible-nav.js",
"./components/eui-combo-box-pill.js": "./dist/_app_/components/eui-combo-box-pill.js",
"./components/eui-combo-box.js": "./dist/_app_/components/eui-combo-box.js",
"./components/eui-combo-box/create-option.js": "./dist/_app_/components/eui-combo-box/create-option.js",
"./components/eui-combo-box/group.js": "./dist/_app_/components/eui-combo-box/group.js",
"./components/eui-combo-box/no-matches-message.js": "./dist/_app_/components/eui-combo-box/no-matches-message.js",
"./components/eui-combo-box/options.js": "./dist/_app_/components/eui-combo-box/options.js",
"./components/eui-combo-box/search-message.js": "./dist/_app_/components/eui-combo-box/search-message.js",
"./components/eui-combo-box/trigger.js": "./dist/_app_/components/eui-combo-box/trigger.js",
"./components/eui-combo-box/trigger/input.js": "./dist/_app_/components/eui-combo-box/trigger/input.js",
"./components/eui-comment-list.js": "./dist/_app_/components/eui-comment-list.js",
"./components/eui-comment-timeline.js": "./dist/_app_/components/eui-comment-timeline.js",
"./components/eui-comment.js": "./dist/_app_/components/eui-comment.js",
"./components/eui-confirm-modal.js": "./dist/_app_/components/eui-confirm-modal.js",
"./components/eui-context-menu-item.js": "./dist/_app_/components/eui-context-menu-item.js",
"./components/eui-context-menu-panel.js": "./dist/_app_/components/eui-context-menu-panel.js",
"./components/eui-copy.js": "./dist/_app_/components/eui-copy.js",
"./components/eui-described-form-group.js": "./dist/_app_/components/eui-described-form-group.js",
"./components/eui-description-list-description.js": "./dist/_app_/components/eui-description-list-description.js",
"./components/eui-description-list-title.js": "./dist/_app_/components/eui-description-list-title.js",
"./components/eui-description-list.js": "./dist/_app_/components/eui-description-list.js",
"./components/eui-dual-range.js": "./dist/_app_/components/eui-dual-range.js",
"./components/eui-empty-prompt.js": "./dist/_app_/components/eui-empty-prompt.js",
"./components/eui-field-number.js": "./dist/_app_/components/eui-field-number.js",
"./components/eui-field-password.js": "./dist/_app_/components/eui-field-password.js",
"./components/eui-field-search.js": "./dist/_app_/components/eui-field-search.js",
"./components/eui-field-text.js": "./dist/_app_/components/eui-field-text.js",
"./components/eui-file-picker.js": "./dist/_app_/components/eui-file-picker.js",
"./components/eui-flex-grid.js": "./dist/_app_/components/eui-flex-grid.js",
"./components/eui-flex-group.js": "./dist/_app_/components/eui-flex-group.js",
"./components/eui-flex-item.js": "./dist/_app_/components/eui-flex-item.js",
"./components/eui-flyout-body.js": "./dist/_app_/components/eui-flyout-body.js",
"./components/eui-flyout-footer.js": "./dist/_app_/components/eui-flyout-footer.js",
"./components/eui-flyout-header.js": "./dist/_app_/components/eui-flyout-header.js",
"./components/eui-flyout.js": "./dist/_app_/components/eui-flyout.js",
"./components/eui-form-control-layout-clear-button.js": "./dist/_app_/components/eui-form-control-layout-clear-button.js",
"./components/eui-form-control-layout-custom-icon.js": "./dist/_app_/components/eui-form-control-layout-custom-icon.js",
"./components/eui-form-control-layout-delimited.js": "./dist/_app_/components/eui-form-control-layout-delimited.js",
"./components/eui-form-control-layout-icons.js": "./dist/_app_/components/eui-form-control-layout-icons.js",
"./components/eui-form-control-layout.js": "./dist/_app_/components/eui-form-control-layout.js",
"./components/eui-form-error-text.js": "./dist/_app_/components/eui-form-error-text.js",
"./components/eui-form-fieldset.js": "./dist/_app_/components/eui-form-fieldset.js",
"./components/eui-form-help-text.js": "./dist/_app_/components/eui-form-help-text.js",
"./components/eui-form-label.js": "./dist/_app_/components/eui-form-label.js",
"./components/eui-form-legend.js": "./dist/_app_/components/eui-form-legend.js",
"./components/eui-form-row.js": "./dist/_app_/components/eui-form-row.js",
"./components/eui-form.js": "./dist/_app_/components/eui-form.js",
"./components/eui-global-toast-list.js": "./dist/_app_/components/eui-global-toast-list.js",
"./components/eui-header-alert.js": "./dist/_app_/components/eui-header-alert.js",
"./components/eui-header-breadcrumbs.js": "./dist/_app_/components/eui-header-breadcrumbs.js",
"./components/eui-header-link.js": "./dist/_app_/components/eui-header-link.js",
"./components/eui-header-links.js": "./dist/_app_/components/eui-header-links.js",
"./components/eui-header-logo.js": "./dist/_app_/components/eui-header-logo.js",
"./components/eui-header-section-item-button.js": "./dist/_app_/components/eui-header-section-item-button.js",
"./components/eui-header-section-item.js": "./dist/_app_/components/eui-header-section-item.js",
"./components/eui-header-section.js": "./dist/_app_/components/eui-header-section.js",
"./components/eui-header.js": "./dist/_app_/components/eui-header.js",
"./components/eui-health.js": "./dist/_app_/components/eui-health.js",
"./components/eui-hide-for.js": "./dist/_app_/components/eui-hide-for.js",
"./components/eui-horizontal-rule.js": "./dist/_app_/components/eui-horizontal-rule.js",
"./components/eui-i18n.js": "./dist/_app_/components/eui-i18n.js",
"./components/eui-i18n/render.js": "./dist/_app_/components/eui-i18n/render.js",
"./components/eui-icon-tip.js": "./dist/_app_/components/eui-icon-tip.js",
"./components/eui-icon.js": "./dist/_app_/components/eui-icon.js",
"./components/eui-image.js": "./dist/_app_/components/eui-image.js",
"./components/eui-inner-text.js": "./dist/_app_/components/eui-inner-text.js",
"./components/eui-input-popover.js": "./dist/_app_/components/eui-input-popover.js",
"./components/eui-key-pad-menu-item.js": "./dist/_app_/components/eui-key-pad-menu-item.js",
"./components/eui-key-pad-menu.js": "./dist/_app_/components/eui-key-pad-menu.js",
"./components/eui-link.js": "./dist/_app_/components/eui-link.js",
"./components/eui-list-group-item.js": "./dist/_app_/components/eui-list-group-item.js",
"./components/eui-list-group.js": "./dist/_app_/components/eui-list-group.js",
"./components/eui-loading-content.js": "./dist/_app_/components/eui-loading-content.js",
"./components/eui-loading-logo.js": "./dist/_app_/components/eui-loading-logo.js",
"./components/eui-loading-spinner.js": "./dist/_app_/components/eui-loading-spinner.js",
"./components/eui-markdown-editor-drop-zone.js": "./dist/_app_/components/eui-markdown-editor-drop-zone.js",
"./components/eui-markdown-editor-footer.js": "./dist/_app_/components/eui-markdown-editor-footer.js",
"./components/eui-markdown-editor-footer/icons/markdown-logo.js": "./dist/_app_/components/eui-markdown-editor-footer/icons/markdown-logo.js",
"./components/eui-markdown-editor-text-area.js": "./dist/_app_/components/eui-markdown-editor-text-area.js",
"./components/eui-markdown-editor-toolbar.js": "./dist/_app_/components/eui-markdown-editor-toolbar.js",
"./components/eui-markdown-editor-toolbar/icons/markdown-checkmark.js": "./dist/_app_/components/eui-markdown-editor-toolbar/icons/markdown-checkmark.js",
"./components/eui-markdown-editor.js": "./dist/_app_/components/eui-markdown-editor.js",
"./components/eui-markdown-format.js": "./dist/_app_/components/eui-markdown-format.js",
"./components/eui-markdown-format/markdown-checkbox.js": "./dist/_app_/components/eui-markdown-format/markdown-checkbox.js",
"./components/eui-markdown-format/markdown-code-block.js": "./dist/_app_/components/eui-markdown-format/markdown-code-block.js",
"./components/eui-markdown-format/markdown-code.js": "./dist/_app_/components/eui-markdown-format/markdown-code.js",
"./components/eui-markdown-format/markdown-tooltip.js": "./dist/_app_/components/eui-markdown-format/markdown-tooltip.js",
"./components/eui-modal-body.js": "./dist/_app_/components/eui-modal-body.js",
"./components/eui-modal-footer.js": "./dist/_app_/components/eui-modal-footer.js",
"./components/eui-modal-header-title.js": "./dist/_app_/components/eui-modal-header-title.js",
"./components/eui-modal-header.js": "./dist/_app_/components/eui-modal-header.js",
"./components/eui-modal.js": "./dist/_app_/components/eui-modal.js",
"./components/eui-notification-badge.js": "./dist/_app_/components/eui-notification-badge.js",
"./components/eui-notification-event-messages.js": "./dist/_app_/components/eui-notification-event-messages.js",
"./components/eui-notification-event-meta.js": "./dist/_app_/components/eui-notification-event-meta.js",
"./components/eui-notification-event-read-button.js": "./dist/_app_/components/eui-notification-event-read-button.js",
"./components/eui-notification-event-read-icon.js": "./dist/_app_/components/eui-notification-event-read-icon.js",
"./components/eui-notification-event.js": "./dist/_app_/components/eui-notification-event.js",
"./components/eui-overlay-mask.js": "./dist/_app_/components/eui-overlay-mask.js",
"./components/eui-page-body.js": "./dist/_app_/components/eui-page-body.js",
"./components/eui-page-content-body.js": "./dist/_app_/components/eui-page-content-body.js",
"./components/eui-page-content-header-section.js": "./dist/_app_/components/eui-page-content-header-section.js",
"./components/eui-page-content-header.js": "./dist/_app_/components/eui-page-content-header.js",
"./components/eui-page-content.js": "./dist/_app_/components/eui-page-content.js",
"./components/eui-page-header-content.js": "./dist/_app_/components/eui-page-header-content.js",
"./components/eui-page-header-section.js": "./dist/_app_/components/eui-page-header-section.js",
"./components/eui-page-header.js": "./dist/_app_/components/eui-page-header.js",
"./components/eui-page-side-bar.js": "./dist/_app_/components/eui-page-side-bar.js",
"./components/eui-page-template.js": "./dist/_app_/components/eui-page-template.js",
"./components/eui-page.js": "./dist/_app_/components/eui-page.js",
"./components/eui-pagination-button.js": "./dist/_app_/components/eui-pagination-button.js",
"./components/eui-pagination.js": "./dist/_app_/components/eui-pagination.js",
"./components/eui-pagination/button-wrapper.js": "./dist/_app_/components/eui-pagination/button-wrapper.js",
"./components/eui-pagination/next-button.js": "./dist/_app_/components/eui-pagination/next-button.js",
"./components/eui-pagination/previous-button.js": "./dist/_app_/components/eui-pagination/previous-button.js",
"./components/eui-panel.js": "./dist/_app_/components/eui-panel.js",
"./components/eui-popover-footer.js": "./dist/_app_/components/eui-popover-footer.js",
"./components/eui-popover-title.js": "./dist/_app_/components/eui-popover-title.js",
"./components/eui-popover.js": "./dist/_app_/components/eui-popover.js",
"./components/eui-portal.js": "./dist/_app_/components/eui-portal.js",
"./components/eui-progress.js": "./dist/_app_/components/eui-progress.js",
"./components/eui-radio-group.js": "./dist/_app_/components/eui-radio-group.js",
"./components/eui-radio.js": "./dist/_app_/components/eui-radio.js",
"./components/eui-range-highlight.js": "./dist/_app_/components/eui-range-highlight.js",
"./components/eui-range-input.js": "./dist/_app_/components/eui-range-input.js",
"./components/eui-range-label.js": "./dist/_app_/components/eui-range-label.js",
"./components/eui-range-levels.js": "./dist/_app_/components/eui-range-levels.js",
"./components/eui-range-slider.js": "./dist/_app_/components/eui-range-slider.js",
"./components/eui-range-thumb.js": "./dist/_app_/components/eui-range-thumb.js",
"./components/eui-range-ticks.js": "./dist/_app_/components/eui-range-ticks.js",
"./components/eui-range-tooltip.js": "./dist/_app_/components/eui-range-tooltip.js",
"./components/eui-range-track.js": "./dist/_app_/components/eui-range-track.js",
"./components/eui-range-wrapper.js": "./dist/_app_/components/eui-range-wrapper.js",
"./components/eui-range.js": "./dist/_app_/components/eui-range.js",
"./components/eui-select.js": "./dist/_app_/components/eui-select.js",
"./components/eui-selectable-list-item.js": "./dist/_app_/components/eui-selectable-list-item.js",
"./components/eui-show-for.js": "./dist/_app_/components/eui-show-for.js",
"./components/eui-side-nav-item.js": "./dist/_app_/components/eui-side-nav-item.js",
"./components/eui-side-nav-item/button.js": "./dist/_app_/components/eui-side-nav-item/button.js",
"./components/eui-side-nav.js": "./dist/_app_/components/eui-side-nav.js",
"./components/eui-spacer.js": "./dist/_app_/components/eui-spacer.js",
"./components/eui-split-panel/inner.js": "./dist/_app_/components/eui-split-panel/inner.js",
"./components/eui-split-panel/outer.js": "./dist/_app_/components/eui-split-panel/outer.js",
"./components/eui-stat.js": "./dist/_app_/components/eui-stat.js",
"./components/eui-stat/description.js": "./dist/_app_/components/eui-stat/description.js",
"./components/eui-stat/title.js": "./dist/_app_/components/eui-stat/title.js",
"./components/eui-step-horizontal.js": "./dist/_app_/components/eui-step-horizontal.js",
"./components/eui-step-number.js": "./dist/_app_/components/eui-step-number.js",
"./components/eui-step.js": "./dist/_app_/components/eui-step.js",
"./components/eui-steps-horizontal.js": "./dist/_app_/components/eui-steps-horizontal.js",
"./components/eui-steps.js": "./dist/_app_/components/eui-steps.js",
"./components/eui-sub-steps.js": "./dist/_app_/components/eui-sub-steps.js",
"./components/eui-super-date-picker.js": "./dist/_app_/components/eui-super-date-picker.js",
"./components/eui-super-date-picker/date-popover/absolute-tab.js": "./dist/_app_/components/eui-super-date-picker/date-popover/absolute-tab.js",
"./components/eui-super-date-picker/date-popover/datetime-picker.js": "./dist/_app_/components/eui-super-date-picker/date-popover/datetime-picker.js",
"./components/eui-super-date-picker/date-popover/eui-date-popover-button.js": "./dist/_app_/components/eui-super-date-picker/date-popover/eui-date-popover-button.js",
"./components/eui-super-date-picker/date-popover/eui-date-popover-content.js": "./dist/_app_/components/eui-super-date-picker/date-popover/eui-date-popover-content.js",
"./components/eui-super-date-picker/date-popover/now-tab.js": "./dist/_app_/components/eui-super-date-picker/date-popover/now-tab.js",
"./components/eui-super-date-picker/date-popover/relative-tab.js": "./dist/_app_/components/eui-super-date-picker/date-popover/relative-tab.js",
"./components/eui-super-date-picker/eui-date-picker-range.js": "./dist/_app_/components/eui-super-date-picker/eui-date-picker-range.js",
"./components/eui-super-date-picker/eui-quick-select-popover.js": "./dist/_app_/components/eui-super-date-picker/eui-quick-select-popover.js",
"./components/eui-super-date-picker/eui-quick-select-popover/eui-commonly-used-time-ranges.js": "./dist/_app_/components/eui-super-date-picker/eui-quick-select-popover/eui-commonly-used-time-ranges.js",
"./components/eui-super-date-picker/eui-quick-select-popover/eui-quick-select.js": "./dist/_app_/components/eui-super-date-picker/eui-quick-select-popover/eui-quick-select.js",
"./components/eui-super-date-picker/eui-quick-select-popover/eui-recently-used.js": "./dist/_app_/components/eui-super-date-picker/eui-quick-select-popover/eui-recently-used.js",
"./components/eui-super-date-picker/eui-super-update-button.js": "./dist/_app_/components/eui-super-date-picker/eui-super-update-button.js",
"./components/eui-super-date-picker/utils/date-utils.js": "./dist/_app_/components/eui-super-date-picker/utils/date-utils.js",
"./components/eui-super-date-picker/utils/index.js": "./dist/_app_/components/eui-super-date-picker/utils/index.js",
"./components/eui-super-date-picker/utils/pretty-duration.js": "./dist/_app_/components/eui-super-date-picker/utils/pretty-duration.js",
"./components/eui-super-date-picker/utils/quick-select.js": "./dist/_app_/components/eui-super-date-picker/utils/quick-select.js",
"./components/eui-super-date-picker/utils/time-options.js": "./dist/_app_/components/eui-super-date-picker/utils/time-options.js",
"./components/eui-switch.js": "./dist/_app_/components/eui-switch.js",
"./components/eui-tab.js": "./dist/_app_/components/eui-tab.js",
"./components/eui-tabbed-content.js": "./dist/_app_/components/eui-tabbed-content.js",
"./components/eui-tabs.js": "./dist/_app_/components/eui-tabs.js",
"./components/eui-text-align.js": "./dist/_app_/components/eui-text-align.js",
"./components/eui-text-area.js": "./dist/_app_/components/eui-text-area.js",
"./components/eui-text-color.js": "./dist/_app_/components/eui-text-color.js",
"./components/eui-text.js": "./dist/_app_/components/eui-text.js",
"./components/eui-title.js": "./dist/_app_/components/eui-title.js",
"./components/eui-toast.js": "./dist/_app_/components/eui-toast.js",
"./components/eui-tool-tip-popover.js": "./dist/_app_/components/eui-tool-tip-popover.js",
"./components/eui-tool-tip.js": "./dist/_app_/components/eui-tool-tip.js",
"./components/text-block.js": "./dist/_app_/components/text-block.js",
"./helpers/arg-or-default.js": "./dist/_app_/helpers/arg-or-default.js",
"./helpers/cast-to.js": "./dist/_app_/helpers/cast-to.js",
"./helpers/class-names.js": "./dist/_app_/helpers/class-names.js",
"./helpers/eui-page-restrict-width.js": "./dist/_app_/helpers/eui-page-restrict-width.js",
"./helpers/eui-palette.js": "./dist/_app_/helpers/eui-palette.js",
"./helpers/get-eui-config.js": "./dist/_app_/helpers/get-eui-config.js",
"./helpers/get-range-tick.js": "./dist/_app_/helpers/get-range-tick.js",
"./helpers/hex-to-rgb.js": "./dist/_app_/helpers/hex-to-rgb.js",
"./helpers/inline-styles.js": "./dist/_app_/helpers/inline-styles.js",
"./helpers/is-color-dark.js": "./dist/_app_/helpers/is-color-dark.js",
"./helpers/is-item-open.js": "./dist/_app_/helpers/is-item-open.js",
"./helpers/is-valid-hex.js": "./dist/_app_/helpers/is-valid-hex.js",
"./helpers/is-within-number.js": "./dist/_app_/helpers/is-within-number.js",
"./helpers/merge.js": "./dist/_app_/helpers/merge.js",
"./helpers/nullish.js": "./dist/_app_/helpers/nullish.js",
"./helpers/starts-with.js": "./dist/_app_/helpers/starts-with.js",
"./helpers/to-initials.js": "./dist/_app_/helpers/to-initials.js",
"./helpers/type-of.js": "./dist/_app_/helpers/type-of.js",
"./helpers/use-state.js": "./dist/_app_/helpers/use-state.js",
"./modifiers/mutation-observer.js": "./dist/_app_/modifiers/mutation-observer.js",
"./modifiers/outside-click-detector.js": "./dist/_app_/modifiers/outside-click-detector.js",
"./modifiers/resize-observer.js": "./dist/_app_/modifiers/resize-observer.js",
"./modifiers/screen-reader-only.js": "./dist/_app_/modifiers/screen-reader-only.js",
"./modifiers/simple-style.js": "./dist/_app_/modifiers/simple-style.js",
"./modifiers/use-is-within-breakpoints.js": "./dist/_app_/modifiers/use-is-within-breakpoints.js",
"./modifiers/validatable-control.js": "./dist/_app_/modifiers/validatable-control.js",
"./services/eui-config.js": "./dist/_app_/services/eui-config.js",
"./services/eui-i18n.js": "./dist/_app_/services/eui-i18n.js",
"./services/eui-toaster.js": "./dist/_app_/services/eui-toaster.js",
"./utils/accesibility/accessible-click-keys.js": "./dist/_app_/utils/accesibility/accessible-click-keys.js",
"./utils/accesibility/cascading-menu-keys.js": "./dist/_app_/utils/accesibility/cascading-menu-keys.js",
"./utils/accesibility/combo-box-keys.js": "./dist/_app_/utils/accesibility/combo-box-keys.js",
"./utils/accesibility/index.js": "./dist/_app_/utils/accesibility/index.js",
"./utils/breakpoint.js": "./dist/_app_/utils/breakpoint.js",
"./utils/browser/browser.js": "./dist/_app_/utils/browser/browser.js",
"./utils/browser/index.js": "./dist/_app_/utils/browser/index.js",
"./utils/code/utils.js": "./dist/_app_/utils/code/utils.js",
"./utils/color/color_palette.js": "./dist/_app_/utils/color/color_palette.js",
"./utils/color/eui_palettes.js": "./dist/_app_/utils/color/eui_palettes.js",
"./utils/color/index.js": "./dist/_app_/utils/color/index.js",
"./utils/copy-to-clipboard.js": "./dist/_app_/utils/copy-to-clipboard.js",
"./utils/css-mappings/eui-accordion.js": "./dist/_app_/utils/css-mappings/eui-accordion.js",
"./utils/css-mappings/eui-avatar.js": "./dist/_app_/utils/css-mappings/eui-avatar.js",
"./utils/css-mappings/eui-badge-group.js": "./dist/_app_/utils/css-mappings/eui-badge-group.js",
"./utils/css-mappings/eui-badge.js": "./dist/_app_/utils/css-mappings/eui-badge.js",
"./utils/css-mappings/eui-beta-badge.js": "./dist/_app_/utils/css-mappings/eui-beta-badge.js",
"./utils/css-mappings/eui-bottom-bar.js": "./dist/_app_/utils/css-mappings/eui-bottom-bar.js",
"./utils/css-mappings/eui-button-empty.js": "./dist/_app_/utils/css-mappings/eui-button-empty.js",
"./utils/css-mappings/eui-button-group-button.js": "./dist/_app_/utils/css-mappings/eui-button-group-button.js",
"./utils/css-mappings/eui-button-group.js": "./dist/_app_/utils/css-mappings/eui-button-group.js",
"./utils/css-mappings/eui-button-icon.js": "./dist/_app_/utils/css-mappings/eui-button-icon.js",
"./utils/css-mappings/eui-button.js": "./dist/_app_/utils/css-mappings/eui-button.js",
"./utils/css-mappings/eui-call-out.js": "./dist/_app_/utils/css-mappings/eui-call-out.js",
"./utils/css-mappings/eui-card-select.js": "./dist/_app_/utils/css-mappings/eui-card-select.js",
"./utils/css-mappings/eui-card.js": "./dist/_app_/utils/css-mappings/eui-card.js",
"./utils/css-mappings/eui-code-block.js": "./dist/_app_/utils/css-mappings/eui-code-block.js",
"./utils/css-mappings/eui-collapsible-nav-group.js": "./dist/_app_/utils/css-mappings/eui-collapsible-nav-group.js",
"./utils/css-mappings/eui-comment-event.js": "./dist/_app_/utils/css-mappings/eui-comment-event.js",
"./utils/css-mappings/eui-comment-timeline-icon.js": "./dist/_app_/utils/css-mappings/eui-comment-timeline-icon.js",
"./utils/css-mappings/eui-context-menu-item.js": "./dist/_app_/utils/css-mappings/eui-context-menu-item.js",
"./utils/css-mappings/eui-described-form-group.js": "./dist/_app_/utils/css-mappings/eui-described-form-group.js",
"./utils/css-mappings/eui-description-list.js": "./dist/_app_/utils/css-mappings/eui-description-list.js",
"./utils/css-mappings/eui-empty-prompt.js": "./dist/_app_/utils/css-mappings/eui-empty-prompt.js",
"./utils/css-mappings/eui-file-picker.js": "./dist/_app_/utils/css-mappings/eui-file-picker.js",
"./utils/css-mappings/eui-flex-grid.js": "./dist/_app_/utils/css-mappings/eui-flex-grid.js",
"./utils/css-mappings/eui-flex-group.js": "./dist/_app_/utils/css-mappings/eui-flex-group.js",
"./utils/css-mappings/eui-flex-item.js": "./dist/_app_/utils/css-mappings/eui-flex-item.js",
"./utils/css-mappings/eui-flyout.js": "./dist/_app_/utils/css-mappings/eui-flyout.js",
"./utils/css-mappings/eui-form-control-layout-clear-button.js": "./dist/_app_/utils/css-mappings/eui-form-control-layout-clear-button.js",
"./utils/css-mappings/eui-form-row.js": "./dist/_app_/utils/css-mappings/eui-form-row.js",
"./utils/css-mappings/eui-global-toast-list.js": "./dist/_app_/utils/css-mappings/eui-global-toast-list.js",
"./utils/css-mappings/eui-header-links.js": "./dist/_app_/utils/css-mappings/eui-header-links.js",
"./utils/css-mappings/eui-header-section-item.js": "./dist/_app_/utils/css-mappings/eui-header-section-item.js",
"./utils/css-mappings/eui-header-section.js": "./dist/_app_/utils/css-mappings/eui-header-section.js",
"./utils/css-mappings/eui-header.js": "./dist/_app_/utils/css-mappings/eui-header.js",
"./utils/css-mappings/eui-health.js": "./dist/_app_/utils/css-mappings/eui-health.js",
"./utils/css-mappings/eui-horizontal-rule.js": "./dist/_app_/utils/css-mappings/eui-horizontal-rule.js",
"./utils/css-mappings/eui-icon.js": "./dist/_app_/utils/css-mappings/eui-icon.js",
"./utils/css-mappings/eui-image.js": "./dist/_app_/utils/css-mappings/eui-image.js",
"./utils/css-mappings/eui-link.js": "./dist/_app_/utils/css-mappings/eui-link.js",
"./utils/css-mappings/eui-list-group-item.js": "./dist/_app_/utils/css-mappings/eui-list-group-item.js",
"./utils/css-mappings/eui-list-group.js": "./dist/_app_/utils/css-mappings/eui-list-group.js",
"./utils/css-mappings/eui-loading-spinner.js": "./dist/_app_/utils/css-mappings/eui-loading-spinner.js",
"./utils/css-mappings/eui-modal.js": "./dist/_app_/utils/css-mappings/eui-modal.js",
"./utils/css-mappings/eui-notification-badge.js": "./dist/_app_/utils/css-mappings/eui-notification-badge.js",
"./utils/css-mappings/eui-page-body.js": "./dist/_app_/utils/css-mappings/eui-page-body.js",
"./utils/css-mappings/eui-page-content-body.js": "./dist/_app_/utils/css-mappings/eui-page-content-body.js",
"./utils/css-mappings/eui-page-content.js": "./dist/_app_/utils/css-mappings/eui-page-content.js",
"./utils/css-mappings/eui-page-header.js": "./dist/_app_/utils/css-mappings/eui-page-header.js",
"./utils/css-mappings/eui-page-side-bar.js": "./dist/_app_/utils/css-mappings/eui-page-side-bar.js",
"./utils/css-mappings/eui-page.js": "./dist/_app_/utils/css-mappings/eui-page.js",
"./utils/css-mappings/eui-panel.js": "./dist/_app_/utils/css-mappings/eui-panel.js",
"./utils/css-mappings/eui-popover-footer.js": "./dist/_app_/utils/css-mappings/eui-popover-footer.js",
"./utils/css-mappings/eui-popover-title.js": "./dist/_app_/utils/css-mappings/eui-popover-title.js",
"./utils/css-mappings/eui-popover.js": "./dist/_app_/utils/css-mappings/eui-popover.js",
"./utils/css-mappings/eui-progress-data.js": "./dist/_app_/utils/css-mappings/eui-progress-data.js",
"./utils/css-mappings/eui-progress.js": "./dist/_app_/utils/css-mappings/eui-progress.js",
"./utils/css-mappings/eui-range-highlight.js": "./dist/_app_/utils/css-mappings/eui-range-highlight.js",
"./utils/css-mappings/eui-range-input.js": "./dist/_app_/utils/css-mappings/eui-range-input.js",
"./utils/css-mappings/eui-range-levels.js": "./dist/_app_/utils/css-mappings/eui-range-levels.js",
"./utils/css-mappings/eui-selectable-list-item.js": "./dist/_app_/utils/css-mappings/eui-selectable-list-item.js",
"./utils/css-mappings/eui-spacer.js": "./dist/_app_/utils/css-mappings/eui-spacer.js",
"./utils/css-mappings/eui-stat.js": "./dist/_app_/utils/css-mappings/eui-stat.js",
"./utils/css-mappings/eui-step-number.js": "./dist/_app_/utils/css-mappings/eui-step-number.js",
"./utils/css-mappings/eui-tabs.js": "./dist/_app_/utils/css-mappings/eui-tabs.js",
"./utils/css-mappings/eui-text-align.js": "./dist/_app_/utils/css-mappings/eui-text-align.js",
"./utils/css-mappings/eui-text-area.js": "./dist/_app_/utils/css-mappings/eui-text-area.js",
"./utils/css-mappings/eui-text-color.js": "./dist/_app_/utils/css-mappings/eui-text-color.js",
"./utils/css-mappings/eui-text.js": "./dist/_app_/utils/css-mappings/eui-text.js",
"./utils/css-mappings/eui-title.js": "./dist/_app_/utils/css-mappings/eui-title.js",
"./utils/css-mappings/eui-toast.js": "./dist/_app_/utils/css-mappings/eui-toast.js",
"./utils/css-mappings/eui-tool-tip.js": "./dist/_app_/utils/css-mappings/eui-tool-tip.js",
"./utils/css-mappings/index.js": "./dist/_app_/utils/css-mappings/index.js",
"./utils/detect-element-resize.js": "./dist/_app_/utils/detect-element-resize.js",
"./utils/index.js": "./dist/_app_/utils/index.js",
"./utils/keys.js": "./dist/_app_/utils/keys.js",
"./utils/markdown/markdown-actions.js": "./dist/_app_/utils/markdown/markdown-actions.js",
"./utils/markdown/markdown-modes.js": "./dist/_app_/utils/markdown/markdown-modes.js",
"./utils/markdown/markdown-types.js": "./dist/_app_/utils/markdown/markdown-types.js",
"./utils/markdown/plugins/markdown-add-components/index.js": "./dist/_app_/utils/markdown/plugins/markdown-add-components/index.js",
"./utils/markdown/plugins/markdown-add-components/processor.js": "./dist/_app_/utils/markdown/plugins/markdown-add-components/processor.js",
"./utils/markdown/plugins/markdown-checkbox/index.js": "./dist/_app_/utils/markdown/plugins/markdown-checkbox/index.js",
"./utils/markdown/plugins/markdown-checkbox/parser.js": "./dist/_app_/utils/markdown/plugins/markdown-checkbox/parser.js",
"./utils/markdown/plugins/markdown-default-plugins/index.js": "./dist/_app_/utils/markdown/plugins/markdown-default-plugins/index.js",
"./utils/markdown/plugins/markdown-default-plugins/parsing-plugins.js": "./dist/_app_/utils/markdown/plugins/markdown-default-plugins/parsing-plugins.js",
"./utils/markdown/plugins/markdown-default-plugins/plugins.js": "./dist/_app_/utils/markdown/plugins/markdown-default-plugins/plugins.js",
"./utils/markdown/plugins/markdown-default-plugins/processing-plugins.js": "./dist/_app_/utils/markdown/plugins/markdown-default-plugins/processing-plugins.js",
"./utils/markdown/plugins/markdown-default-plugins/ui-plugins.js": "./dist/_app_/utils/markdown/plugins/markdown-default-plugins/ui-plugins.js",
"./utils/markdown/plugins/markdown-tooltip/index.js": "./dist/_app_/utils/markdown/plugins/markdown-tooltip/index.js",
"./utils/markdown/plugins/markdown-tooltip/parser.js": "./dist/_app_/utils/markdown/plugins/markdown-tooltip/parser.js",
"./utils/markdown/plugins/markdown-tooltip/plugin.js": "./dist/_app_/utils/markdown/plugins/markdown-tooltip/plugin.js",
"./utils/markdown/plugins/to-dom.js": "./dist/_app_/utils/markdown/plugins/to-dom.js",
"./utils/markdown/remark/remark-prismjs.js": "./dist/_app_/utils/markdown/remark/remark-prismjs.js",
"./utils/maybe-unwrap-proxy.js": "./dist/_app_/utils/maybe-unwrap-proxy.js",
"./utils/number/index.js": "./dist/_app_/utils/number/index.js",
"./utils/number/number.js": "./dist/_app_/utils/number/number.js",
"./utils/popover/index.js": "./dist/_app_/utils/popover/index.js",
"./utils/popover/types.js": "./dist/_app_/utils/popover/types.js",
"./utils/predicate/common_predicates.js": "./dist/_app_/utils/predicate/common_predicates.js",
"./utils/predicate/index.js": "./dist/_app_/utils/predicate/index.js",
"./utils/predicate/lodash_predicates.js": "./dist/_app_/utils/predicate/lodash_predicates.js",
"./utils/range/index.js": "./dist/_app_/utils/range/index.js",
"./utils/timer.js": "./dist/_app_/utils/timer.js",
"./utils/transition.js": "./dist/_app_/utils/transition.js"
},
"public-assets": {
"./vendor/eui_theme_dark.min.css": "/@ember-eui/core/themes/dark.css",
"./vendor/eui_theme_light.min.css": "/@ember-eui/core/themes/light.css"
}
},
"volta": {
"extends": "../../package.json"
}
}