@kyndryl-design-system/shidoka-applications 1.26.2 → 1.26.4

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.
Files changed (41) hide show
  1. package/components/global/header/header.scss.js +6 -11
  2. package/components/global/header/header.scss.js.map +1 -1
  3. package/components/global/header/headerFlyout.scss.js +14 -6
  4. package/components/global/header/headerFlyout.scss.js.map +1 -1
  5. package/components/global/header/headerFlyouts.scss.js +4 -4
  6. package/components/global/header/headerLink.scss.js +19 -6
  7. package/components/global/header/headerLink.scss.js.map +1 -1
  8. package/components/global/header/headerNav.scss.js +4 -4
  9. package/components/global/header/headerPanel.scss.js +4 -4
  10. package/components/global/localNav/localNav.scss.js +1 -1
  11. package/components/global/localNav/localNavLink.scss.js +14 -1
  12. package/components/global/localNav/localNavLink.scss.js.map +1 -1
  13. package/components/reusable/tooltip/tooltip.scss.js +2 -1
  14. package/components/reusable/tooltip/tooltip.scss.js.map +1 -1
  15. package/external/@carbon/icons/es/arrow--left/16.js.map +1 -1
  16. package/external/@carbon/icons/es/arrow--up/16.js.map +1 -1
  17. package/external/@carbon/icons/es/checkmark/20.js.map +1 -1
  18. package/external/@carbon/icons/es/checkmark--filled/16.js.map +1 -1
  19. package/external/@carbon/icons/es/chevron--down/16.js.map +1 -1
  20. package/external/@carbon/icons/es/chevron--down/20.js.map +1 -1
  21. package/external/@carbon/icons/es/chevron--down/24.js.map +1 -1
  22. package/external/@carbon/icons/es/chevron--left/16.js.map +1 -1
  23. package/external/@carbon/icons/es/chevron--right/16.js.map +1 -1
  24. package/external/@carbon/icons/es/close/16.js +1 -1
  25. package/external/@carbon/icons/es/close/16.js.map +1 -1
  26. package/external/@carbon/icons/es/close/24.js +1 -1
  27. package/external/@carbon/icons/es/close/24.js.map +1 -1
  28. package/external/@carbon/icons/es/close/32.js +1 -1
  29. package/external/@carbon/icons/es/close/32.js.map +1 -1
  30. package/external/@carbon/icons/es/draggable/16.js.map +1 -1
  31. package/external/@carbon/icons/es/information/20.js.map +1 -1
  32. package/external/@carbon/icons/es/information--filled/16.js.map +1 -1
  33. package/external/@carbon/icons/es/menu/24.js.map +1 -1
  34. package/external/@carbon/icons/es/overflow-menu--horizontal/16.js.map +1 -1
  35. package/external/@carbon/icons/es/overflow-menu--vertical/20.js.map +1 -1
  36. package/external/@carbon/icons/es/search/24.js.map +1 -1
  37. package/external/@carbon/icons/es/side-panel--open/24.js.map +1 -1
  38. package/external/@carbon/icons/es/warning--alt--filled/16.js.map +1 -1
  39. package/external/@carbon/icons/es/warning--filled/16.js.map +1 -1
  40. package/external/@carbon/icons/es/warning--filled/24.js.map +1 -1
  41. package/package.json +2 -2
@@ -112,8 +112,8 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
112
112
  @media (min-width: 42rem) {
113
113
  .menu__content {
114
114
  position: absolute;
115
- top: calc(100% + 12px);
116
- right: 0;
115
+ top: calc(100% + 10px);
116
+ right: -12px;
117
117
  bottom: auto;
118
118
  left: auto;
119
119
  border-top: none;
@@ -122,7 +122,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
122
122
  max-height: calc(100vh - var(--kd-header-height));
123
123
  }
124
124
  .menu__content.left {
125
- left: 0;
125
+ left: -12px;
126
126
  right: auto;
127
127
  }
128
128
  }
@@ -159,7 +159,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
159
159
  display: flex;
160
160
  position: relative;
161
161
  align-items: center;
162
- padding: 8px 16px 8px 8px;
162
+ padding: 8px 8px 8px 12px;
163
163
  cursor: pointer;
164
164
  background: none;
165
165
  border: none;
@@ -229,18 +229,13 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
229
229
  height: var(--kd-header-height);
230
230
  background: var(--kd-color-neutral-webgray);
231
231
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
232
- padding: 4px 8px;
232
+ padding: 4px 12px 4px 16px;
233
233
  transition: z-index 150ms ease-out;
234
234
  z-index: var(--kd-z-header);
235
235
  }
236
236
  .header.child-open {
237
237
  z-index: calc(var(--kd-z-header) + 20);
238
238
  }
239
- @media screen and (min-width: 42rem) {
240
- .header {
241
- padding: 4px 24px;
242
- }
243
- }
244
239
  .header.left-slotted {
245
240
  padding-left: 12px;
246
241
  }
@@ -254,7 +249,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
254
249
  .logo-link {
255
250
  display: flex;
256
251
  align-items: center;
257
- padding: 0 8px;
252
+ margin-left: 16px;
258
253
  text-decoration: none;
259
254
  }
260
255
  .logo-link:hover {
@@ -1 +1 @@
1
- {"version":3,"file":"header.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"header.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -112,8 +112,8 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
112
112
  @media (min-width: 42rem) {
113
113
  .menu__content {
114
114
  position: absolute;
115
- top: calc(100% + 12px);
116
- right: 0;
115
+ top: calc(100% + 10px);
116
+ right: -12px;
117
117
  bottom: auto;
118
118
  left: auto;
119
119
  border-top: none;
@@ -122,7 +122,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
122
122
  max-height: calc(100vh - var(--kd-header-height));
123
123
  }
124
124
  .menu__content.left {
125
- left: 0;
125
+ left: -12px;
126
126
  right: auto;
127
127
  }
128
128
  }
@@ -159,7 +159,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
159
159
  display: flex;
160
160
  position: relative;
161
161
  align-items: center;
162
- padding: 8px 16px 8px 8px;
162
+ padding: 8px 8px 8px 12px;
163
163
  cursor: pointer;
164
164
  background: none;
165
165
  border: none;
@@ -230,7 +230,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
230
230
  gap: 12px;
231
231
  width: 100%;
232
232
  color: var(--kd-color-text-primary);
233
- padding: 16px 16px 16px 8px;
233
+ padding: 16px 12px 16px 8px;
234
234
  height: 56px;
235
235
  text-decoration: none;
236
236
  }
@@ -258,6 +258,14 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
258
258
  line-height: var(--kd-line-height-utility-5-max);
259
259
  }
260
260
  }
261
+ .btn ::slotted(kd-icon),
262
+ .btn ::slotted(svg) {
263
+ display: flex;
264
+ align-items: center;
265
+ justify-content: center;
266
+ width: 24px;
267
+ height: 24px;
268
+ }
261
269
  @media (min-width: 42rem) {
262
270
  .btn {
263
271
  justify-content: center;
@@ -275,7 +283,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
275
283
  color: var(--kd-color-text-tertiary-bold);
276
284
  font-weight: 500;
277
285
  text-transform: uppercase;
278
- padding: 8px 16px 8px 8px;
286
+ padding: 8px;
279
287
  border-bottom: 1px solid var(--kd-color-border-light);
280
288
  }
281
289
  @media (min-width: 42rem) {
@@ -1 +1 @@
1
- {"version":3,"file":"headerFlyout.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"headerFlyout.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -112,8 +112,8 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
112
112
  @media (min-width: 42rem) {
113
113
  .menu__content {
114
114
  position: absolute;
115
- top: calc(100% + 12px);
116
- right: 0;
115
+ top: calc(100% + 10px);
116
+ right: -12px;
117
117
  bottom: auto;
118
118
  left: auto;
119
119
  border-top: none;
@@ -122,7 +122,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
122
122
  max-height: calc(100vh - var(--kd-header-height));
123
123
  }
124
124
  .menu__content.left {
125
- left: 0;
125
+ left: -12px;
126
126
  right: auto;
127
127
  }
128
128
  }
@@ -159,7 +159,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
159
159
  display: flex;
160
160
  position: relative;
161
161
  align-items: center;
162
- padding: 8px 16px 8px 8px;
162
+ padding: 8px 8px 8px 12px;
163
163
  cursor: pointer;
164
164
  background: none;
165
165
  border: none;
@@ -112,8 +112,8 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
112
112
  @media (min-width: 42rem) {
113
113
  .menu__content {
114
114
  position: absolute;
115
- top: calc(100% + 12px);
116
- right: 0;
115
+ top: calc(100% + 10px);
116
+ right: -12px;
117
117
  bottom: auto;
118
118
  left: auto;
119
119
  border-top: none;
@@ -122,7 +122,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
122
122
  max-height: calc(100vh - var(--kd-header-height));
123
123
  }
124
124
  .menu__content.left {
125
- left: 0;
125
+ left: -12px;
126
126
  right: auto;
127
127
  }
128
128
  }
@@ -159,7 +159,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
159
159
  display: flex;
160
160
  position: relative;
161
161
  align-items: center;
162
- padding: 8px 16px 8px 8px;
162
+ padding: 8px 8px 8px 12px;
163
163
  cursor: pointer;
164
164
  background: none;
165
165
  border: none;
@@ -225,7 +225,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
225
225
  position: relative;
226
226
  align-items: center;
227
227
  gap: 12px;
228
- padding: 16px 16px 16px 8px;
228
+ padding: 16px 12px 16px 8px;
229
229
  text-decoration: none;
230
230
  color: var(--kd-color-text-primary);
231
231
  white-space: nowrap;
@@ -234,6 +234,11 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
234
234
  outline: 2px solid transparent;
235
235
  outline-offset: -2px;
236
236
  }
237
+ @media (min-width: 42rem) {
238
+ .nav-link {
239
+ padding-right: 16px;
240
+ }
241
+ }
237
242
  .nav-link:hover {
238
243
  background: var(--kd-color-background-primary-hover);
239
244
  color: var(--kd-color-text-inversed);
@@ -252,6 +257,14 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
252
257
  .nav-link.active:hover {
253
258
  color: var(--kd-color-text-inversed);
254
259
  }
260
+ .nav-link ::slotted(kd-icon),
261
+ .nav-link ::slotted(svg) {
262
+ display: flex;
263
+ align-items: center;
264
+ justify-content: center;
265
+ width: 24px;
266
+ height: 24px;
267
+ }
255
268
 
256
269
  .level--1 .nav-link {
257
270
  height: 56px;
@@ -262,7 +275,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
262
275
  line-height: var(--kd-line-height-utility-2-sm);
263
276
  font-weight: var(--kd-font-weight-regular);
264
277
  letter-spacing: var(--kd-letter-spacing-5);
265
- padding: 8px 16px 8px 8px;
278
+ padding: 8px;
266
279
  height: 40px;
267
280
  color: var(--kd-color-text-secondary);
268
281
  }
@@ -1 +1 @@
1
- {"version":3,"file":"headerLink.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"headerLink.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -112,8 +112,8 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
112
112
  @media (min-width: 42rem) {
113
113
  .menu__content {
114
114
  position: absolute;
115
- top: calc(100% + 12px);
116
- right: 0;
115
+ top: calc(100% + 10px);
116
+ right: -12px;
117
117
  bottom: auto;
118
118
  left: auto;
119
119
  border-top: none;
@@ -122,7 +122,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
122
122
  max-height: calc(100vh - var(--kd-header-height));
123
123
  }
124
124
  .menu__content.left {
125
- left: 0;
125
+ left: -12px;
126
126
  right: auto;
127
127
  }
128
128
  }
@@ -159,7 +159,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
159
159
  display: flex;
160
160
  position: relative;
161
161
  align-items: center;
162
- padding: 8px 16px 8px 8px;
162
+ padding: 8px 8px 8px 12px;
163
163
  cursor: pointer;
164
164
  background: none;
165
165
  border: none;
@@ -112,8 +112,8 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
112
112
  @media (min-width: 42rem) {
113
113
  .menu__content {
114
114
  position: absolute;
115
- top: calc(100% + 12px);
116
- right: 0;
115
+ top: calc(100% + 10px);
116
+ right: -12px;
117
117
  bottom: auto;
118
118
  left: auto;
119
119
  border-top: none;
@@ -122,7 +122,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
122
122
  max-height: calc(100vh - var(--kd-header-height));
123
123
  }
124
124
  .menu__content.left {
125
- left: 0;
125
+ left: -12px;
126
126
  right: auto;
127
127
  }
128
128
  }
@@ -159,7 +159,7 @@ import'./../../../external/@lit/reactive-element/reactive-element.js';import'./.
159
159
  display: flex;
160
160
  position: relative;
161
161
  align-items: center;
162
- padding: 8px 16px 8px 8px;
162
+ padding: 8px 8px 8px 12px;
163
163
  cursor: pointer;
164
164
  background: none;
165
165
  border: none;
@@ -167,7 +167,7 @@ nav {
167
167
  outline-offset: -2px;
168
168
  font: inherit;
169
169
  color: var(--kd-color-text-secondary);
170
- padding: 8px 16px 8px 8px;
170
+ padding: 8px 12px;
171
171
  cursor: pointer;
172
172
  display: flex;
173
173
  align-items: center;
@@ -45,6 +45,14 @@ a {
45
45
  color: var(--kd-color-text-secondary);
46
46
  transition: background-color 150ms ease-out, color 150ms ease-out, outline-color 150ms ease-out;
47
47
  }
48
+ a ::slotted(kd-icon),
49
+ a ::slotted(svg) {
50
+ display: flex;
51
+ align-items: center;
52
+ justify-content: center;
53
+ width: 24px;
54
+ height: 24px;
55
+ }
48
56
  .link-active a {
49
57
  color: var(--kd-color-text-tertiary);
50
58
  font-weight: 500;
@@ -53,8 +61,13 @@ a {
53
61
  background: var(--kd-color-background-primary);
54
62
  color: var(--kd-color-text-inversed);
55
63
  }
64
+ @media (min-width: 42rem) {
65
+ a {
66
+ padding: 4px;
67
+ }
68
+ }
56
69
  .nav-expanded a {
57
- padding-right: 16px;
70
+ padding-right: 12px;
58
71
  }
59
72
  a:hover {
60
73
  background: var(--kd-color-background-primary-hover);
@@ -1 +1 @@
1
- {"version":3,"file":"localNavLink.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"localNavLink.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -55,7 +55,8 @@ button:focus {
55
55
  }
56
56
 
57
57
  kd-icon,
58
- slot[name=anchor]::slotted(kd-icon) {
58
+ slot[name=anchor]::slotted(kd-icon),
59
+ slot[name=anchor]::slotted(svg) {
59
60
  display: block;
60
61
  }
61
62
 
@@ -1 +1 @@
1
- {"version":3,"file":"tooltip.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"tooltip.scss.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/arrow--left/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M6.7 12.3L2.9 8.5 15 8.5 15 7.5 2.9 7.5 6.7 3.7 6 3 1 8 6 13z\"\n }\n }],\n \"name\": \"arrow--left\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mEAGTC,KAAQ,cACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/arrow--left/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M6.7 12.3L2.9 8.5 15 8.5 15 7.5 2.9 7.5 6.7 3.7 6 3 1 8 6 13z\"\n }\n }],\n \"name\": \"arrow--left\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mEAGTC,KAAQ,cACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/arrow--up/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M3.7 6.7L7.5 2.9 7.5 15 8.5 15 8.5 2.9 12.3 6.7 13 6 8 1 3 6z\"\n }\n }],\n \"name\": \"arrow--up\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mEAGTC,KAAQ,YACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/arrow--up/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M3.7 6.7L7.5 2.9 7.5 15 8.5 15 8.5 2.9 12.3 6.7 13 6 8 1 3 6z\"\n }\n }],\n \"name\": \"arrow--up\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mEAGTC,KAAQ,YACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"20.js","sources":["../../../../../../node_modules/@carbon/icons/es/checkmark/20.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _20 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 20 20\",\n \"fill\": \"currentColor\",\n \"width\": 20,\n \"height\": 20\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M8 13.2L3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M15.6 5.6L8 13.2 3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z\"\n }\n }],\n \"name\": \"checkmark\",\n \"size\": 20\n};\n\nexport { _20 as default };\n"],"names":["_20","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,6DAEN,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,uEAGTC,KAAQ,YACRC,KAAQ"}
1
+ {"version":3,"file":"20.js","sources":["../../../../../../node_modules/@carbon/icons/es/checkmark/20.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _20 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 20 20\",\n \"fill\": \"currentColor\",\n \"width\": 20,\n \"height\": 20\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M8 13.2L3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M15.6 5.6L8 13.2 3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z\"\n }\n }],\n \"name\": \"checkmark\",\n \"size\": 20\n};\n\nexport { _20 as default };\n"],"names":["_20","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,6DAEN,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,uEAGTC,KAAQ,YACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/checkmark--filled/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M8,1C4.1,1,1,4.1,1,8c0,3.9,3.1,7,7,7s7-3.1,7-7C15,4.1,11.9,1,8,1z M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z\",\n \"data-icon-path\": \"inner-path\",\n \"opacity\": \"0\"\n }\n }],\n \"name\": \"checkmark--filled\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","opacity","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,sHAEN,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,kDACL,iBAAkB,aAClBC,QAAW,OAGfC,KAAQ,oBACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/checkmark--filled/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M8,1C4.1,1,1,4.1,1,8c0,3.9,3.1,7,7,7s7-3.1,7-7C15,4.1,11.9,1,8,1z M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z\",\n \"data-icon-path\": \"inner-path\",\n \"opacity\": \"0\"\n }\n }],\n \"name\": \"checkmark--filled\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","opacity","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,sHAEN,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,kDACL,iBAAkB,aAClBC,QAAW,OAGfC,KAAQ,oBACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/chevron--down/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z\"\n }\n }],\n \"name\": \"chevron--down\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,4CAGTC,KAAQ,gBACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/chevron--down/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z\"\n }\n }],\n \"name\": \"chevron--down\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,4CAGTC,KAAQ,gBACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"20.js","sources":["../../../../../../node_modules/@carbon/icons/es/chevron--down/20.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _20 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 20,\n \"height\": 20\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M16 22L6 12 7.4 10.6 16 19.2 24.6 10.6 26 12z\"\n }\n }],\n \"name\": \"chevron--down\",\n \"size\": 20\n};\n\nexport { _20 as default };\n"],"names":["_20","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mDAGTC,KAAQ,gBACRC,KAAQ"}
1
+ {"version":3,"file":"20.js","sources":["../../../../../../node_modules/@carbon/icons/es/chevron--down/20.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _20 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 20,\n \"height\": 20\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M16 22L6 12 7.4 10.6 16 19.2 24.6 10.6 26 12z\"\n }\n }],\n \"name\": \"chevron--down\",\n \"size\": 20\n};\n\nexport { _20 as default };\n"],"names":["_20","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mDAGTC,KAAQ,gBACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/chevron--down/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M16 22L6 12 7.4 10.6 16 19.2 24.6 10.6 26 12z\"\n }\n }],\n \"name\": \"chevron--down\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mDAGTC,KAAQ,gBACRC,KAAQ"}
1
+ {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/chevron--down/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M16 22L6 12 7.4 10.6 16 19.2 24.6 10.6 26 12z\"\n }\n }],\n \"name\": \"chevron--down\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mDAGTC,KAAQ,gBACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/chevron--left/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M5 8L10 3 10.7 3.7 6.4 8 10.7 12.3 10 13z\"\n }\n }],\n \"name\": \"chevron--left\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,+CAGTC,KAAQ,gBACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/chevron--left/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M5 8L10 3 10.7 3.7 6.4 8 10.7 12.3 10 13z\"\n }\n }],\n \"name\": \"chevron--left\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,+CAGTC,KAAQ,gBACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/chevron--right/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M11 8L6 13 5.3 12.3 9.6 8 5.3 3.7 6 3z\"\n }\n }],\n \"name\": \"chevron--right\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,4CAGTC,KAAQ,iBACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/chevron--right/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M11 8L6 13 5.3 12.3 9.6 8 5.3 3.7 6 3z\"\n }\n }],\n \"name\": \"chevron--right\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,4CAGTC,KAAQ,iBACRC,KAAQ"}
@@ -1,2 +1,2 @@
1
- var t={elem:"svg",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",width:16,height:16},content:[{elem:"path",attrs:{d:"M24 9.4L22.6 8 16 14.6 9.4 8 8 9.4 14.6 16 8 22.6 9.4 24 16 17.4 22.6 24 24 22.6 17.4 16 24 9.4z"}}],name:"close",size:16};export{t as default};
1
+ var t={elem:"svg",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",width:16,height:16},content:[{elem:"path",attrs:{d:"M17.4141 16L24 9.4141 22.5859 8 16 14.5859 9.4143 8 8 9.4141 14.5859 16 8 22.5859 9.4143 24 16 17.4141 22.5859 24 24 22.5859 17.4141 16z"}}],name:"close",size:16};export{t as default};
2
2
  //# sourceMappingURL=16.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/close/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M24 9.4L22.6 8 16 14.6 9.4 8 8 9.4 14.6 16 8 22.6 9.4 24 16 17.4 22.6 24 24 22.6 17.4 16 24 9.4z\"\n }\n }],\n \"name\": \"close\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,sGAGTC,KAAQ,QACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/close/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M17.4141 16L24 9.4141 22.5859 8 16 14.5859 9.4143 8 8 9.4141 14.5859 16 8 22.5859 9.4143 24 16 17.4141 22.5859 24 24 22.5859 17.4141 16z\"\n }\n }],\n \"name\": \"close\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,8IAGTC,KAAQ,QACRC,KAAQ"}
@@ -1,2 +1,2 @@
1
- var t={elem:"svg",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",width:24,height:24},content:[{elem:"path",attrs:{d:"M24 9.4L22.6 8 16 14.6 9.4 8 8 9.4 14.6 16 8 22.6 9.4 24 16 17.4 22.6 24 24 22.6 17.4 16 24 9.4z"}}],name:"close",size:24};export{t as default};
1
+ var t={elem:"svg",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",width:24,height:24},content:[{elem:"path",attrs:{d:"M17.4141 16L24 9.4141 22.5859 8 16 14.5859 9.4143 8 8 9.4141 14.5859 16 8 22.5859 9.4143 24 16 17.4141 22.5859 24 24 22.5859 17.4141 16z"}}],name:"close",size:24};export{t as default};
2
2
  //# sourceMappingURL=24.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/close/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M24 9.4L22.6 8 16 14.6 9.4 8 8 9.4 14.6 16 8 22.6 9.4 24 16 17.4 22.6 24 24 22.6 17.4 16 24 9.4z\"\n }\n }],\n \"name\": \"close\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,sGAGTC,KAAQ,QACRC,KAAQ"}
1
+ {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/close/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M17.4141 16L24 9.4141 22.5859 8 16 14.5859 9.4143 8 8 9.4141 14.5859 16 8 22.5859 9.4143 24 16 17.4141 22.5859 24 24 22.5859 17.4141 16z\"\n }\n }],\n \"name\": \"close\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,8IAGTC,KAAQ,QACRC,KAAQ"}
@@ -1,2 +1,2 @@
1
- var t={elem:"svg",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",width:32,height:32},content:[{elem:"path",attrs:{d:"M24 9.4L22.6 8 16 14.6 9.4 8 8 9.4 14.6 16 8 22.6 9.4 24 16 17.4 22.6 24 24 22.6 17.4 16 24 9.4z"}}],name:"close",size:32};export{t as default};
1
+ var t={elem:"svg",attrs:{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",width:32,height:32},content:[{elem:"path",attrs:{d:"M17.4141 16L24 9.4141 22.5859 8 16 14.5859 9.4143 8 8 9.4141 14.5859 16 8 22.5859 9.4143 24 16 17.4141 22.5859 24 24 22.5859 17.4141 16z"}}],name:"close",size:32};export{t as default};
2
2
  //# sourceMappingURL=32.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"32.js","sources":["../../../../../../node_modules/@carbon/icons/es/close/32.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _32 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 32,\n \"height\": 32\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M24 9.4L22.6 8 16 14.6 9.4 8 8 9.4 14.6 16 8 22.6 9.4 24 16 17.4 22.6 24 24 22.6 17.4 16 24 9.4z\"\n }\n }],\n \"name\": \"close\",\n \"size\": 32\n};\n\nexport { _32 as default };\n"],"names":["_32","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,sGAGTC,KAAQ,QACRC,KAAQ"}
1
+ {"version":3,"file":"32.js","sources":["../../../../../../node_modules/@carbon/icons/es/close/32.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _32 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 32,\n \"height\": 32\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M17.4141 16L24 9.4141 22.5859 8 16 14.5859 9.4143 8 8 9.4141 14.5859 16 8 22.5859 9.4143 24 16 17.4141 22.5859 24 24 22.5859 17.4141 16z\"\n }\n }],\n \"name\": \"close\",\n \"size\": 32\n};\n\nexport { _32 as default };\n"],"names":["_32","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,8IAGTC,KAAQ,QACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/draggable/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M10 6H14V10H10zM18 6H22V10H18zM10 14H14V18H10zM18 14H22V18H18zM10 22H14V26H10zM18 22H22V26H18z\"\n }\n }],\n \"name\": \"draggable\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,oGAGTC,KAAQ,YACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/draggable/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M10 6H14V10H10zM18 6H22V10H18zM10 14H14V18H10zM18 14H22V18H18zM10 22H14V26H10zM18 22H22V26H18z\"\n }\n }],\n \"name\": \"draggable\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,oGAGTC,KAAQ,YACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"20.js","sources":["../../../../../../node_modules/@carbon/icons/es/information/20.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _20 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 20,\n \"height\": 20\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M17 22L17 14 13 14 13 16 15 16 15 22 12 22 12 24 20 24 20 22 17 22zM16 8a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 8z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M16,30A14,14,0,1,1,30,16,14,14,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4Z\"\n }\n }],\n \"name\": \"information\",\n \"size\": 20\n};\n\nexport { _20 as default };\n"],"names":["_20","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mHAEN,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,0FAGTC,KAAQ,cACRC,KAAQ"}
1
+ {"version":3,"file":"20.js","sources":["../../../../../../node_modules/@carbon/icons/es/information/20.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _20 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 20,\n \"height\": 20\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M17 22L17 14 13 14 13 16 15 16 15 22 12 22 12 24 20 24 20 22 17 22zM16 8a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 8z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M16,30A14,14,0,1,1,30,16,14,14,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4Z\"\n }\n }],\n \"name\": \"information\",\n \"size\": 20\n};\n\nexport { _20 as default };\n"],"names":["_20","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mHAEN,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,0FAGTC,KAAQ,cACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/information--filled/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"fill\": \"none\",\n \"d\": \"M16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,13.875H17.125v-8H13v2.25h1.875v5.75H12v2.25h8Z\",\n \"data-icon-path\": \"inner-path\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,6a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,16.125H12v-2.25h2.875v-5.75H13v-2.25h4.125v8H20Z\"\n }\n }],\n \"name\": \"information--filled\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPG,KAAQ,OACRI,EAAK,mGACL,iBAAkB,eAEnB,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,gJAGTC,KAAQ,sBACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/information--filled/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"fill\": \"none\",\n \"d\": \"M16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,13.875H17.125v-8H13v2.25h1.875v5.75H12v2.25h8Z\",\n \"data-icon-path\": \"inner-path\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,6a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,16.125H12v-2.25h2.875v-5.75H13v-2.25h4.125v8H20Z\"\n }\n }],\n \"name\": \"information--filled\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPG,KAAQ,OACRI,EAAK,mGACL,iBAAkB,eAEnB,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,gJAGTC,KAAQ,sBACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/menu/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 24 24\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M3 18H21V19.5H3zM3 13.5H21V15H3zM3 9H21V10.5H3zM3 4.5H21V6H3z\"\n }\n }],\n \"name\": \"menu\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mEAGTC,KAAQ,OACRC,KAAQ"}
1
+ {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/menu/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 24 24\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M3 18H21V19.5H3zM3 13.5H21V15H3zM3 9H21V10.5H3zM3 4.5H21V6H3z\"\n }\n }],\n \"name\": \"menu\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mEAGTC,KAAQ,OACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/overflow-menu--horizontal/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"8\",\n \"cy\": \"16\",\n \"r\": \"2\"\n }\n }, {\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"16\",\n \"cy\": \"16\",\n \"r\": \"2\"\n }\n }, {\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"24\",\n \"cy\": \"16\",\n \"r\": \"2\"\n }\n }],\n \"name\": \"overflow-menu--horizontal\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","cx","cy","r","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,SACRC,MAAS,CACPO,GAAM,IACNC,GAAM,KACNC,EAAK,MAEN,CACDV,KAAQ,SACRC,MAAS,CACPO,GAAM,KACNC,GAAM,KACNC,EAAK,MAEN,CACDV,KAAQ,SACRC,MAAS,CACPO,GAAM,KACNC,GAAM,KACNC,EAAK,OAGTC,KAAQ,4BACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/overflow-menu--horizontal/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"8\",\n \"cy\": \"16\",\n \"r\": \"2\"\n }\n }, {\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"16\",\n \"cy\": \"16\",\n \"r\": \"2\"\n }\n }, {\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"24\",\n \"cy\": \"16\",\n \"r\": \"2\"\n }\n }],\n \"name\": \"overflow-menu--horizontal\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","cx","cy","r","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,SACRC,MAAS,CACPO,GAAM,IACNC,GAAM,KACNC,EAAK,MAEN,CACDV,KAAQ,SACRC,MAAS,CACPO,GAAM,KACNC,GAAM,KACNC,EAAK,MAEN,CACDV,KAAQ,SACRC,MAAS,CACPO,GAAM,KACNC,GAAM,KACNC,EAAK,OAGTC,KAAQ,4BACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"20.js","sources":["../../../../../../node_modules/@carbon/icons/es/overflow-menu--vertical/20.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _20 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 20,\n \"height\": 20\n },\n \"content\": [{\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"16\",\n \"cy\": \"8\",\n \"r\": \"2\"\n }\n }, {\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"16\",\n \"cy\": \"16\",\n \"r\": \"2\"\n }\n }, {\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"16\",\n \"cy\": \"24\",\n \"r\": \"2\"\n }\n }],\n \"name\": \"overflow-menu--vertical\",\n \"size\": 20\n};\n\nexport { _20 as default };\n"],"names":["_20","elem","attrs","xmlns","viewBox","fill","width","height","content","cx","cy","r","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,SACRC,MAAS,CACPO,GAAM,KACNC,GAAM,IACNC,EAAK,MAEN,CACDV,KAAQ,SACRC,MAAS,CACPO,GAAM,KACNC,GAAM,KACNC,EAAK,MAEN,CACDV,KAAQ,SACRC,MAAS,CACPO,GAAM,KACNC,GAAM,KACNC,EAAK,OAGTC,KAAQ,0BACRC,KAAQ"}
1
+ {"version":3,"file":"20.js","sources":["../../../../../../node_modules/@carbon/icons/es/overflow-menu--vertical/20.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _20 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 20,\n \"height\": 20\n },\n \"content\": [{\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"16\",\n \"cy\": \"8\",\n \"r\": \"2\"\n }\n }, {\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"16\",\n \"cy\": \"16\",\n \"r\": \"2\"\n }\n }, {\n \"elem\": \"circle\",\n \"attrs\": {\n \"cx\": \"16\",\n \"cy\": \"24\",\n \"r\": \"2\"\n }\n }],\n \"name\": \"overflow-menu--vertical\",\n \"size\": 20\n};\n\nexport { _20 as default };\n"],"names":["_20","elem","attrs","xmlns","viewBox","fill","width","height","content","cx","cy","r","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,SACRC,MAAS,CACPO,GAAM,KACNC,GAAM,IACNC,EAAK,MAEN,CACDV,KAAQ,SACRC,MAAS,CACPO,GAAM,KACNC,GAAM,KACNC,EAAK,MAEN,CACDV,KAAQ,SACRC,MAAS,CACPO,GAAM,KACNC,GAAM,KACNC,EAAK,OAGTC,KAAQ,0BACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/search/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M29,27.5859l-7.5521-7.5521a11.0177,11.0177,0,1,0-1.4141,1.4141L27.5859,29ZM4,13a9,9,0,1,1,9,9A9.01,9.01,0,0,1,4,13Z\"\n }\n }],\n \"name\": \"search\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,yHAGTC,KAAQ,SACRC,KAAQ"}
1
+ {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/search/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M29,27.5859l-7.5521-7.5521a11.0177,11.0177,0,1,0-1.4141,1.4141L27.5859,29ZM4,13a9,9,0,1,1,9,9A9.01,9.01,0,0,1,4,13Z\"\n }\n }],\n \"name\": \"search\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,yHAGTC,KAAQ,SACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/side-panel--open/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M28,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h24c1.1,0,2-0.9,2-2V6C30,4.9,29.1,4,28,4z M10,26H4V6h6V26z M28,26H12v-9h10.2\\tl-3.6,3.6L20,22l6-6l-6-6l-1.4,1.4l3.6,3.6H12V6h16V26z\"\n }\n }],\n \"name\": \"side-panel--open\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mLAGTC,KAAQ,mBACRC,KAAQ"}
1
+ {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/side-panel--open/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M28,4H4C2.9,4,2,4.9,2,6v20c0,1.1,0.9,2,2,2h24c1.1,0,2-0.9,2-2V6C30,4.9,29.1,4,28,4z M10,26H4V6h6V26z M28,26H12v-9h10.2\\tl-3.6,3.6L20,22l6-6l-6-6l-1.4,1.4l3.6,3.6H12V6h16V26z\"\n }\n }],\n \"name\": \"side-panel--open\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,mLAGTC,KAAQ,mBACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/warning--alt--filled/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"fill\": \"none\",\n \"d\": \"M16,26a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,26Zm-1.125-5h2.25V12h-2.25Z\",\n \"data-icon-path\": \"inner-path\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M16.002,6.1714h-.004L4.6487,27.9966,4.6506,28H27.3494l.0019-.0034ZM14.875,12h2.25v9h-2.25ZM16,26a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,26Z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M29,30H3a1,1,0,0,1-.8872-1.4614l13-25a1,1,0,0,1,1.7744,0l13,25A1,1,0,0,1,29,30ZM4.6507,28H27.3493l.002-.0033L16.002,6.1714h-.004L4.6487,27.9967Z\"\n }\n }],\n \"name\": \"warning--alt--filled\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPG,KAAQ,OACRI,EAAK,4EACL,iBAAkB,eAEnB,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,gJAEN,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,sJAGTC,KAAQ,uBACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/warning--alt--filled/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 32 32\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"fill\": \"none\",\n \"d\": \"M16,26a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,26Zm-1.125-5h2.25V12h-2.25Z\",\n \"data-icon-path\": \"inner-path\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M16.002,6.1714h-.004L4.6487,27.9966,4.6506,28H27.3494l.0019-.0034ZM14.875,12h2.25v9h-2.25ZM16,26a1.5,1.5,0,1,1,1.5-1.5A1.5,1.5,0,0,1,16,26Z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M29,30H3a1,1,0,0,1-.8872-1.4614l13-25a1,1,0,0,1,1.7744,0l13,25A1,1,0,0,1,29,30ZM4.6507,28H27.3493l.002-.0033L16.002,6.1714h-.004L4.6487,27.9967Z\"\n }\n }],\n \"name\": \"warning--alt--filled\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPG,KAAQ,OACRI,EAAK,4EACL,iBAAkB,eAEnB,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,gJAEN,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,sJAGTC,KAAQ,uBACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/warning--filled/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M8,1C4.2,1,1,4.2,1,8s3.2,7,7,7s7-3.1,7-7S11.9,1,8,1z M7.5,4h1v5h-1C7.5,9,7.5,4,7.5,4z M8,12.2\\tc-0.4,0-0.8-0.4-0.8-0.8s0.3-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8S8.4,12.2,8,12.2z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M7.5,4h1v5h-1C7.5,9,7.5,4,7.5,4z M8,12.2c-0.4,0-0.8-0.4-0.8-0.8s0.3-0.8,0.8-0.8\\tc0.4,0,0.8,0.4,0.8,0.8S8.4,12.2,8,12.2z\",\n \"data-icon-path\": \"inner-path\",\n \"opacity\": \"0\"\n }\n }],\n \"name\": \"warning--filled\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","opacity","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,kLAEN,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,2HACL,iBAAkB,aAClBC,QAAW,OAGfC,KAAQ,kBACRC,KAAQ"}
1
+ {"version":3,"file":"16.js","sources":["../../../../../../node_modules/@carbon/icons/es/warning--filled/16.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _16 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 16 16\",\n \"fill\": \"currentColor\",\n \"width\": 16,\n \"height\": 16\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M8,1C4.2,1,1,4.2,1,8s3.2,7,7,7s7-3.1,7-7S11.9,1,8,1z M7.5,4h1v5h-1C7.5,9,7.5,4,7.5,4z M8,12.2\\tc-0.4,0-0.8-0.4-0.8-0.8s0.3-0.8,0.8-0.8c0.4,0,0.8,0.4,0.8,0.8S8.4,12.2,8,12.2z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M7.5,4h1v5h-1C7.5,9,7.5,4,7.5,4z M8,12.2c-0.4,0-0.8-0.4-0.8-0.8s0.3-0.8,0.8-0.8\\tc0.4,0,0.8,0.4,0.8,0.8S8.4,12.2,8,12.2z\",\n \"data-icon-path\": \"inner-path\",\n \"opacity\": \"0\"\n }\n }],\n \"name\": \"warning--filled\",\n \"size\": 16\n};\n\nexport { _16 as default };\n"],"names":["_16","elem","attrs","xmlns","viewBox","fill","width","height","content","d","opacity","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,kLAEN,CACDR,KAAQ,OACRC,MAAS,CACPO,EAAK,2HACL,iBAAkB,aAClBC,QAAW,OAGfC,KAAQ,kBACRC,KAAQ"}
@@ -1 +1 @@
1
- {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/warning--filled/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2020\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 24 24\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11C23,5.9,18.1,1,12,1z M11.1,6h1.8v8h-1.8V6z M12,19.2\\tc-0.7,0-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2S12.7,19.2,12,19.2z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"fill\": \"none\",\n \"d\": \"M13.2,18c0,0.7-0.6,1.2-1.2,1.2s-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2S13.2,17.3,13.2,18z M12.9,6\\th-1.8v8h1.8V6z\",\n \"data-icon-path\": \"inner-path\",\n \"opacity\": \"0\"\n }\n }],\n \"name\": \"warning--filled\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","opacity","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,oLAEN,CACDR,KAAQ,OACRC,MAAS,CACPG,KAAQ,OACRI,EAAK,6GACL,iBAAkB,aAClBC,QAAW,OAGfC,KAAQ,kBACRC,KAAQ"}
1
+ {"version":3,"file":"24.js","sources":["../../../../../../node_modules/@carbon/icons/es/warning--filled/24.js"],"sourcesContent":["/**\n * Copyright IBM Corp. 2016, 2023\n *\n * This source code is licensed under the Apache-2.0 license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.\n */\nvar _24 = {\n \"elem\": \"svg\",\n \"attrs\": {\n \"xmlns\": \"http://www.w3.org/2000/svg\",\n \"viewBox\": \"0 0 24 24\",\n \"fill\": \"currentColor\",\n \"width\": 24,\n \"height\": 24\n },\n \"content\": [{\n \"elem\": \"path\",\n \"attrs\": {\n \"d\": \"M12,1C5.9,1,1,5.9,1,12s4.9,11,11,11s11-4.9,11-11C23,5.9,18.1,1,12,1z M11.1,6h1.8v8h-1.8V6z M12,19.2\\tc-0.7,0-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2s1.2,0.6,1.2,1.2S12.7,19.2,12,19.2z\"\n }\n }, {\n \"elem\": \"path\",\n \"attrs\": {\n \"fill\": \"none\",\n \"d\": \"M13.2,18c0,0.7-0.6,1.2-1.2,1.2s-1.2-0.6-1.2-1.2s0.6-1.2,1.2-1.2S13.2,17.3,13.2,18z M12.9,6\\th-1.8v8h1.8V6z\",\n \"data-icon-path\": \"inner-path\",\n \"opacity\": \"0\"\n }\n }],\n \"name\": \"warning--filled\",\n \"size\": 24\n};\n\nexport { _24 as default };\n"],"names":["_24","elem","attrs","xmlns","viewBox","fill","width","height","content","d","opacity","name","size"],"mappings":"AAQG,IAACA,EAAM,CACRC,KAAQ,MACRC,MAAS,CACPC,MAAS,6BACTC,QAAW,YACXC,KAAQ,eACRC,MAAS,GACTC,OAAU,IAEZC,QAAW,CAAC,CACVP,KAAQ,OACRC,MAAS,CACPO,EAAK,oLAEN,CACDR,KAAQ,OACRC,MAAS,CACPG,KAAQ,OACRI,EAAK,6GACL,iBAAkB,aAClBC,QAAW,OAGfC,KAAQ,kBACRC,KAAQ"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kyndryl-design-system/shidoka-applications",
3
- "version": "1.26.2",
3
+ "version": "1.26.4",
4
4
  "description": "Shidoka Web Components for Applications",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@carbon/icon-helpers": "^10.37.0",
32
- "@carbon/icons": "^11.14.0",
32
+ "@carbon/icons": "^11.43.0",
33
33
  "@lit/context": "^1.1.0",
34
34
  "gridstack": "^10.1.2",
35
35
  "lit": "^2.7.6",