@vertexvis/ui 0.1.1-canary.0 → 0.1.1-canary.2

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 (50) hide show
  1. package/dist/cjs/banner-8612b10b.js +104 -0
  2. package/dist/cjs/button-e63d25b1.js +70 -0
  3. package/dist/cjs/color-picker-000b8ca6.js +47 -0
  4. package/dist/cjs/components.cjs.js +1 -1
  5. package/dist/cjs/index.cjs.js +5 -3
  6. package/dist/cjs/loader.cjs.js +1 -1
  7. package/dist/cjs/vertex-banner.cjs.entry.js +12 -0
  8. package/dist/cjs/vertex-button.cjs.entry.js +1 -1
  9. package/dist/cjs/vertex-color-picker.cjs.entry.js +1 -1
  10. package/dist/collection/collection-manifest.json +2 -1
  11. package/dist/collection/components/banner/banner.css +135 -0
  12. package/dist/collection/components/banner/banner.js +251 -0
  13. package/dist/collection/components/button/button.css +99 -13
  14. package/dist/collection/components/button/button.js +4 -1
  15. package/dist/collection/components/color-picker/color-picker.css +5 -0
  16. package/dist/collection/components/color-picker/color-picker.js +24 -1
  17. package/dist/collection/components/icon/icon.js +1 -1
  18. package/dist/collection/components/icon-button/icon-button.js +1 -1
  19. package/dist/collection/components/index.js +1 -0
  20. package/dist/components/components.esm.js +1 -1
  21. package/dist/components/index.esm.js +1 -1
  22. package/dist/components/p-06f217b4.entry.js +1 -0
  23. package/dist/components/p-1e645c1f.js +1 -0
  24. package/dist/components/p-70c6c194.entry.js +1 -0
  25. package/dist/components/p-7a527151.js +1 -0
  26. package/dist/components/p-e5ce8d66.js +1 -0
  27. package/dist/components/p-f6f2bc86.entry.js +1 -0
  28. package/dist/esm/banner-38e7885a.js +102 -0
  29. package/dist/esm/button-81207236.js +68 -0
  30. package/dist/esm/color-picker-16b97934.js +45 -0
  31. package/dist/esm/components.js +1 -1
  32. package/dist/esm/index.js +4 -3
  33. package/dist/esm/loader.js +1 -1
  34. package/dist/esm/vertex-banner.entry.js +4 -0
  35. package/dist/esm/vertex-button.entry.js +1 -1
  36. package/dist/esm/vertex-color-picker.entry.js +1 -1
  37. package/dist/types/components/banner/banner.d.ts +55 -0
  38. package/dist/types/components/button/button.d.ts +1 -1
  39. package/dist/types/components/color-picker/color-picker.d.ts +9 -0
  40. package/dist/types/components/index.d.ts +1 -0
  41. package/dist/types/components.d.ts +79 -1
  42. package/package.json +2 -2
  43. package/dist/cjs/button-edd366d8.js +0 -67
  44. package/dist/cjs/color-picker-2a4820fa.js +0 -46
  45. package/dist/components/p-2b4aedaa.entry.js +0 -1
  46. package/dist/components/p-64e8b92c.js +0 -1
  47. package/dist/components/p-655053df.js +0 -1
  48. package/dist/components/p-fca52578.entry.js +0 -1
  49. package/dist/esm/button-547336b8.js +0 -65
  50. package/dist/esm/color-picker-1d67effe.js +0 -44
@@ -0,0 +1,251 @@
1
+ import { h, } from '@stencil/core';
2
+ import classNames from 'classnames';
3
+ import { getSvg } from '../icon/icon-helper';
4
+ const DEFAULT_BANNER_DURATION = 3000;
5
+ export class Banner {
6
+ constructor() {
7
+ this.content = undefined;
8
+ this.placement = 'top';
9
+ this.duration = DEFAULT_BANNER_DURATION;
10
+ this.animated = true;
11
+ this.open = false;
12
+ this.type = 'info';
13
+ this.isOpen = undefined;
14
+ this.handleClose = this.handleClose.bind(this);
15
+ this.startCloseTimeout = this.startCloseTimeout.bind(this);
16
+ this.clearCloseTimeout = this.clearCloseTimeout.bind(this);
17
+ this.restartCloseTimeout = this.restartCloseTimeout.bind(this);
18
+ }
19
+ componentDidLoad() {
20
+ // This allows the component to render once initially to correctly
21
+ // place the popover anchor.
22
+ this.isOpen = this.open;
23
+ if (this.isOpen) {
24
+ this.restartCloseTimeout();
25
+ }
26
+ }
27
+ async handleOpenChanged(open) {
28
+ if (open) {
29
+ this.restartCloseTimeout();
30
+ this.isOpen = open;
31
+ }
32
+ }
33
+ render() {
34
+ return (h("vertex-popover", { class: "popover", open: this.isOpen, resizeBehavior: "fixed", backdrop: false, placement: this.getPopoverPlacement(), animated: this.animated }, h("div", { slot: "anchor", class: classNames('anchor', this.placement) }), h("div", { class: classNames('banner', {
35
+ hidden: !this.isOpen,
36
+ info: this.type === 'info',
37
+ success: this.type === 'success',
38
+ warn: this.type === 'warn',
39
+ error: this.type === 'error',
40
+ }) }, h("div", { class: classNames('icon', {
41
+ 'icon-info': this.type === 'info',
42
+ 'icon-success': this.type === 'success',
43
+ 'icon-warn': this.type === 'warn',
44
+ 'icon-error': this.type === 'error',
45
+ }) }, getSvg(this.getIconName())), this.content ? h("div", { class: "message" }, this.content) : h("slot", null), h("div", { class: "actions" }, h("slot", { name: "action" }), h("vertex-icon-button", { class: "close", iconName: "close", iconSize: "sm", variant: "plain", onClick: this.handleClose })))));
46
+ }
47
+ handleClose() {
48
+ this.clearCloseTimeout();
49
+ this.isOpen = false;
50
+ this.closed.emit();
51
+ }
52
+ startCloseTimeout() {
53
+ if (this.closeTimeout == null && this.duration > 0) {
54
+ this.closeTimeout = setTimeout(() => {
55
+ this.handleClose();
56
+ }, this.duration);
57
+ }
58
+ }
59
+ clearCloseTimeout() {
60
+ if (this.closeTimeout != null) {
61
+ clearTimeout(this.closeTimeout);
62
+ this.closeTimeout = undefined;
63
+ }
64
+ }
65
+ restartCloseTimeout() {
66
+ this.clearCloseTimeout();
67
+ this.startCloseTimeout();
68
+ }
69
+ getPopoverPlacement() {
70
+ switch (this.placement) {
71
+ case 'top-left':
72
+ return 'bottom-start';
73
+ case 'top':
74
+ return 'bottom';
75
+ case 'top-right':
76
+ return 'bottom-end';
77
+ }
78
+ }
79
+ getIconName() {
80
+ switch (this.type) {
81
+ case 'info':
82
+ return 'info';
83
+ case 'success':
84
+ return 'check-circle';
85
+ case 'warn':
86
+ return 'caution';
87
+ case 'error':
88
+ return 'error-circle';
89
+ }
90
+ }
91
+ static get is() { return "vertex-banner"; }
92
+ static get encapsulation() { return "shadow"; }
93
+ static get originalStyleUrls() {
94
+ return {
95
+ "$": ["banner.css"]
96
+ };
97
+ }
98
+ static get styleUrls() {
99
+ return {
100
+ "$": ["banner.css"]
101
+ };
102
+ }
103
+ static get properties() {
104
+ return {
105
+ "content": {
106
+ "type": "string",
107
+ "mutable": false,
108
+ "complexType": {
109
+ "original": "string",
110
+ "resolved": "string | undefined",
111
+ "references": {}
112
+ },
113
+ "required": false,
114
+ "optional": true,
115
+ "docs": {
116
+ "tags": [],
117
+ "text": "The content to display in this banner. This can also\nbe provided by inserting an element with the `content` slot\nto support additional elements."
118
+ },
119
+ "attribute": "content",
120
+ "reflect": false
121
+ },
122
+ "placement": {
123
+ "type": "string",
124
+ "mutable": false,
125
+ "complexType": {
126
+ "original": "BannerPlacement",
127
+ "resolved": "\"top\" | \"top-left\" | \"top-right\"",
128
+ "references": {
129
+ "BannerPlacement": {
130
+ "location": "local"
131
+ }
132
+ }
133
+ },
134
+ "required": false,
135
+ "optional": false,
136
+ "docs": {
137
+ "tags": [],
138
+ "text": "The placement of the banner.\nThis can be any of the following values:\n\n'top', 'top-left', or 'top-right'."
139
+ },
140
+ "attribute": "placement",
141
+ "reflect": false,
142
+ "defaultValue": "'top'"
143
+ },
144
+ "duration": {
145
+ "type": "number",
146
+ "mutable": false,
147
+ "complexType": {
148
+ "original": "number",
149
+ "resolved": "number",
150
+ "references": {}
151
+ },
152
+ "required": false,
153
+ "optional": false,
154
+ "docs": {
155
+ "tags": [],
156
+ "text": "The duration this banner will appear for.\nCan be set to `0` to display the banner until\nexplicitly dismissed, and defaults to 3000ms."
157
+ },
158
+ "attribute": "duration",
159
+ "reflect": false,
160
+ "defaultValue": "DEFAULT_BANNER_DURATION"
161
+ },
162
+ "animated": {
163
+ "type": "boolean",
164
+ "mutable": false,
165
+ "complexType": {
166
+ "original": "boolean",
167
+ "resolved": "boolean",
168
+ "references": {}
169
+ },
170
+ "required": false,
171
+ "optional": false,
172
+ "docs": {
173
+ "tags": [],
174
+ "text": "Whether this banner should be animated.\nDefaults to true."
175
+ },
176
+ "attribute": "animated",
177
+ "reflect": false,
178
+ "defaultValue": "true"
179
+ },
180
+ "open": {
181
+ "type": "boolean",
182
+ "mutable": false,
183
+ "complexType": {
184
+ "original": "boolean",
185
+ "resolved": "boolean",
186
+ "references": {}
187
+ },
188
+ "required": false,
189
+ "optional": false,
190
+ "docs": {
191
+ "tags": [],
192
+ "text": "Whether this banner is visible. Updating this\nproperty to `true` will restart the timer to hide\nthe banner. Defaults to false."
193
+ },
194
+ "attribute": "open",
195
+ "reflect": false,
196
+ "defaultValue": "false"
197
+ },
198
+ "type": {
199
+ "type": "string",
200
+ "mutable": false,
201
+ "complexType": {
202
+ "original": "BannerType",
203
+ "resolved": "\"error\" | \"info\" | \"success\" | \"warn\"",
204
+ "references": {
205
+ "BannerType": {
206
+ "location": "local"
207
+ }
208
+ }
209
+ },
210
+ "required": false,
211
+ "optional": false,
212
+ "docs": {
213
+ "tags": [],
214
+ "text": "The type of banner. This will change the styling of the banner"
215
+ },
216
+ "attribute": "type",
217
+ "reflect": false,
218
+ "defaultValue": "'info'"
219
+ }
220
+ };
221
+ }
222
+ static get states() {
223
+ return {
224
+ "isOpen": {}
225
+ };
226
+ }
227
+ static get events() {
228
+ return [{
229
+ "method": "closed",
230
+ "name": "closed",
231
+ "bubbles": true,
232
+ "cancelable": true,
233
+ "composed": true,
234
+ "docs": {
235
+ "tags": [],
236
+ "text": "An event that is dispatched when this banner is closed."
237
+ },
238
+ "complexType": {
239
+ "original": "void",
240
+ "resolved": "void",
241
+ "references": {}
242
+ }
243
+ }];
244
+ }
245
+ static get watchers() {
246
+ return [{
247
+ "propName": "open",
248
+ "methodName": "handleOpenChanged"
249
+ }];
250
+ }
251
+ }
@@ -50,7 +50,7 @@ a {
50
50
  }
51
51
 
52
52
  .btn.disabled,
53
- .btn:not(.disabled):focus,
53
+ .btn:not(.disabled):focus-visible,
54
54
  .btn:not(.disabled):active {
55
55
  outline: none;
56
56
  }
@@ -96,11 +96,11 @@ a {
96
96
  background-color: var(--vertex-ui-blue-500);
97
97
  }
98
98
 
99
- .btn-primary:not(.disabled):focus,
99
+ .btn-primary:not(.disabled):focus-visible,
100
100
  .btn-primary:not(.disabled):active {
101
101
  background-color: var(--vertex-ui-blue-600);
102
102
  }
103
- .btn-primary:not(.disabled):focus {
103
+ .btn-primary:not(.disabled):focus-visible {
104
104
  box-shadow: 0 0 0 1px var(--vertex-ui-blue-900);
105
105
  }
106
106
 
@@ -122,12 +122,12 @@ a {
122
122
  box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
123
123
  }
124
124
 
125
- .btn-secondary:not(.disabled):focus,
125
+ .btn-secondary:not(.disabled):focus-visible,
126
126
  .btn-secondary:not(.disabled):active {
127
127
  background-color: var(--vertex-ui-neutral-400);
128
128
  }
129
129
 
130
- .btn-secondary:not(.disabled):focus {
130
+ .btn-secondary:not(.disabled):focus-visible {
131
131
  box-shadow: 0 0 0 1px var(--vertex-ui-neutral-900);
132
132
  }
133
133
 
@@ -149,7 +149,7 @@ a {
149
149
  background-color: var(--vertex-ui-red-400);
150
150
  }
151
151
 
152
- .btn-danger:not(.disabled):focus {
152
+ .btn-danger:not(.disabled):focus-visible {
153
153
  background-color: var(--vertex-ui-red-500);
154
154
  box-shadow: 0 0 0 1px var(--vertex-ui-red-900);
155
155
  }
@@ -173,13 +173,13 @@ a {
173
173
  background-color: var(--vertex-ui-blue-200);
174
174
  }
175
175
 
176
- .btn-txt-primary:not(.disabled):focus,
176
+ .btn-txt-primary:not(.disabled):focus-visible,
177
177
  .btn-txt-primary:not(.disabled):active {
178
178
  color: var(--vertex-ui-blue-800);
179
179
  background-color: var(--vertex-ui-blue-300);
180
180
  }
181
181
 
182
- .btn-txt-primary:not(.disabled):focus {
182
+ .btn-txt-primary:not(.disabled):focus-visible {
183
183
  box-shadow: 0 0 0 1px var(--vertex-ui-blue-900);
184
184
  }
185
185
 
@@ -197,12 +197,12 @@ a {
197
197
  }
198
198
  .btn-txt-secondary:not(.disabled):hover,
199
199
  .btn-txt-secondary:not(.disabled):active,
200
- .btn-txt-secondary:not(.disabled):focus {
200
+ .btn-txt-secondary:not(.disabled):focus-visible {
201
201
  color: var(--vertex-ui-neutral-800);
202
202
  background-color: var(--vertex-ui-neutral-300);
203
203
  }
204
204
 
205
- .btn-txt-secondary:not(.disabled):focus {
205
+ .btn-txt-secondary:not(.disabled):focus-visible {
206
206
  box-shadow: 0 0 0 1px var(--vertex-ui-neutral-900);
207
207
  }
208
208
 
@@ -215,7 +215,7 @@ a {
215
215
  color: var(--vertex-ui-red-600);
216
216
  }
217
217
 
218
- .btn-txt-danger:not(.disabled):focus,
218
+ .btn-txt-danger:not(.disabled):focus-visible,
219
219
  .btn-txt-danger:not(.disabled):active,
220
220
  .btn-txt-danger:not(.disabled):hover {
221
221
  color: var(--vertex-ui-red-800);
@@ -225,12 +225,12 @@ a {
225
225
  background-color: var(--vertex-ui-red-200);
226
226
  }
227
227
 
228
- .btn-txt-danger:not(.disabled):focus,
228
+ .btn-txt-danger:not(.disabled):focus-visible,
229
229
  .btn-txt-danger:not(.disabled):active {
230
230
  background-color: var(--vertex-ui-red-300);
231
231
  }
232
232
 
233
- .btn-txt-danger:not(.disabled):focus {
233
+ .btn-txt-danger:not(.disabled):focus-visible {
234
234
  box-shadow: 0 0 0 1px var(--vertex-ui-red-900);
235
235
  }
236
236
 
@@ -242,3 +242,89 @@ a {
242
242
  color: var(--vertex-ui-red-300);
243
243
  box-shadow: none;
244
244
  }
245
+
246
+ .btn-outline-primary {
247
+ color: var(--vertex-ui-blue-600);
248
+ border: 1px solid var(--vertex-ui-blue-600);
249
+ }
250
+
251
+ .btn-outline-primary:not(.disabled):hover {
252
+ color: var(--vertex-ui-blue-800);
253
+ background-color: var(--vertex-ui-blue-200);
254
+ }
255
+
256
+ .btn-outline-primary:not(.disabled):focus-visible,
257
+ .btn-outline-primary:not(.disabled):active {
258
+ color: var(--vertex-ui-blue-800);
259
+ background-color: var(--vertex-ui-blue-300);
260
+ }
261
+
262
+ .btn-outline-primary:not(.disabled):focus-visible {
263
+ box-shadow: 0 0 0 1px var(--vertex-ui-blue-900);
264
+ }
265
+
266
+ .btn-outline-primary:not(.disabled):active {
267
+ box-shadow: none;
268
+ }
269
+
270
+ .btn-outline-primary.disabled {
271
+ color: var(--vertex-ui-blue-300);
272
+ box-shadow: none;
273
+ }
274
+
275
+ .btn-outline-secondary {
276
+ color: var(--vertex-ui-neutral-700);
277
+ border: 1px solid var(--vertex-ui-neutral-700);
278
+ }
279
+
280
+ .btn-outline-secondary:not(.disabled):hover {
281
+ box-shadow: 0 2px 2px rgb(0 0 0 / 20%);
282
+ background-color: var(--vertex-ui-neutral-300);
283
+ }
284
+
285
+ .btn-outline-secondary:not(.disabled):focus-visible,
286
+ .btn-outline-secondary:not(.disabled):active {
287
+ background-color: var(--vertex-ui-neutral-400);
288
+ }
289
+
290
+ .btn-outline-secondary:not(.disabled):focus-visible {
291
+ box-shadow: 0 0 0 1px var(--vertex-ui-neutral-900);
292
+ }
293
+
294
+ .btn-outline-secondary.disabled {
295
+ color: var(--vertex-ui-neutral-300);
296
+ box-shadow: none;
297
+ }
298
+
299
+ .btn-outline-danger {
300
+ color: var(--vertex-ui-red-600);
301
+ border: 1px solid var(--vertex-ui-red-600);
302
+ }
303
+
304
+ .btn-outline-danger:not(.disabled):focus-visible,
305
+ .btn-outline-danger:not(.disabled):active,
306
+ .btn-outline-danger:not(.disabled):hover {
307
+ color: var(--vertex-ui-red-800);
308
+ }
309
+
310
+ .btn-outline-danger:not(.disabled):hover {
311
+ background-color: var(--vertex-ui-red-200);
312
+ }
313
+
314
+ .btn-outline-danger:not(.disabled):focus-visible,
315
+ .btn-outline-danger:not(.disabled):active {
316
+ background-color: var(--vertex-ui-red-300);
317
+ }
318
+
319
+ .btn-outline-danger:not(.disabled):focus-visible {
320
+ box-shadow: 0 0 0 1px var(--vertex-ui-red-900);
321
+ }
322
+
323
+ .btn-outline-danger:not(.disabled):active {
324
+ box-shadow: none;
325
+ }
326
+
327
+ .btn-outline-danger.disabled {
328
+ color: var(--vertex-ui-red-300);
329
+ box-shadow: none;
330
+ }
@@ -40,6 +40,9 @@ export class Button {
40
40
  'btn-txt-primary': this.color === 'primary' && this.variant === 'text',
41
41
  'btn-txt-secondary': this.color === 'secondary' && this.variant === 'text',
42
42
  'btn-txt-danger': this.color === 'danger' && this.variant === 'text',
43
+ 'btn-outline-primary': this.color === 'primary' && this.variant === 'outline',
44
+ 'btn-outline-secondary': this.color === 'secondary' && this.variant === 'outline',
45
+ 'btn-outline-danger': this.color === 'danger' && this.variant === 'outline',
43
46
  'btn-plaintext': this.variant === 'plaintext',
44
47
  disabled: this.disabled,
45
48
  });
@@ -116,7 +119,7 @@ export class Button {
116
119
  "mutable": false,
117
120
  "complexType": {
118
121
  "original": "ButtonVariant",
119
- "resolved": "\"plaintext\" | \"solid\" | \"text\"",
122
+ "resolved": "\"outline\" | \"plaintext\" | \"solid\" | \"text\"",
120
123
  "references": {
121
124
  "ButtonVariant": {
122
125
  "location": "local"
@@ -19,6 +19,10 @@
19
19
  align-items: center;
20
20
  }
21
21
 
22
+ .wrapper.expand-full {
23
+ width: 100%;
24
+ }
25
+
22
26
  .wrapper.full {
23
27
  padding: 0.375rem 0.5rem;
24
28
  border: 1px solid var(--vertex-ui-neutral-300);
@@ -26,6 +30,7 @@
26
30
  }
27
31
 
28
32
  .color-picker {
33
+ width: 100%;
29
34
  display: inline-flex;
30
35
  position: relative;
31
36
  cursor: pointer;
@@ -13,6 +13,7 @@ export class ColorPicker {
13
13
  this.value = undefined;
14
14
  this.size = 'md';
15
15
  this.variant = 'full';
16
+ this.expand = 'block';
16
17
  this.disabled = false;
17
18
  }
18
19
  valueChange() {
@@ -20,7 +21,7 @@ export class ColorPicker {
20
21
  }
21
22
  render() {
22
23
  var _a;
23
- return (h(Host, null, h("div", { class: classNames('wrapper', this.variant, this.size) }, h("label", { class: classNames('color-picker', { disabled: this.disabled }) }, h("input", { type: "color", class: "input", "data-testid": "input", disabled: this.disabled, value: this.value, onInput: this.handleInput, onChange: this.handleChange }), h("div", { class: classNames('selected-wrapper', this.variant) }, h("div", { class: "selected", title: this.value }, h("vertex-color-swatch", { class: "selected-color", supplementalColor: "var(--vertex-ui-neutral-400)", color: this.value, variant: "square", size: this.size }, h("slot", { name: "overlay", slot: "overlay" }, (this.value == null || this.value === '') && (h("svg", { class: "no-value", slot: "overlay", xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 16 16" }, h("path", { d: "M16,0L0,16" })))))), this.variant === 'full' && (h("div", { class: "text-wrapper" }, h("div", { class: "hidden-text" }, "#FFFFFF"), h("div", { class: "selected-text" }, (_a = this.getDisplayedValue()) !== null && _a !== void 0 ? _a : 'Default'))))), h("div", { class: "right-gutter" }, h("slot", { name: "right-gutter" })))));
24
+ return (h(Host, null, h("div", { class: classNames('wrapper', this.variant, this.size, `expand-${this.expand}`) }, h("label", { class: classNames('color-picker', { disabled: this.disabled }) }, h("input", { type: "color", class: "input", "data-testid": "input", disabled: this.disabled, value: this.value, onInput: this.handleInput, onChange: this.handleChange }), h("div", { class: classNames('selected-wrapper', this.variant) }, h("div", { class: "selected", title: this.value }, h("vertex-color-swatch", { class: "selected-color", supplementalColor: "var(--vertex-ui-neutral-400)", color: this.value, variant: "square", size: this.size }, h("slot", { name: "overlay", slot: "overlay" }, (this.value == null || this.value === '') && (h("svg", { class: "no-value", slot: "overlay", xmlns: "http://www.w3.org/2000/svg", width: "16", height: "16", viewBox: "0 0 16 16" }, h("path", { d: "M16,0L0,16" })))))), this.variant === 'full' && (h("div", { class: "text-wrapper" }, h("div", { class: "hidden-text" }, "#FFFFFF"), h("div", { class: "selected-text" }, (_a = this.getDisplayedValue()) !== null && _a !== void 0 ? _a : 'Default')))), h("div", { class: "right-gutter" }, h("slot", { name: "right-gutter" }))))));
24
25
  }
25
26
  getDisplayedValue() {
26
27
  var _a;
@@ -105,6 +106,28 @@ export class ColorPicker {
105
106
  "reflect": true,
106
107
  "defaultValue": "'full'"
107
108
  },
109
+ "expand": {
110
+ "type": "string",
111
+ "mutable": false,
112
+ "complexType": {
113
+ "original": "ColorPickerExpand",
114
+ "resolved": "\"block\" | \"full\"",
115
+ "references": {
116
+ "ColorPickerExpand": {
117
+ "location": "local"
118
+ }
119
+ }
120
+ },
121
+ "required": false,
122
+ "optional": false,
123
+ "docs": {
124
+ "tags": [],
125
+ "text": "The expansion behavior of this <vertex-color-picker>.\nCan be set to \"full\" to cause the color picker to stretch to fill\nits container, or \"block\" to cause the color picker to be sized based\non its contents.\nDefaults to \"block\"."
126
+ },
127
+ "attribute": "expand",
128
+ "reflect": true,
129
+ "defaultValue": "'block'"
130
+ },
108
131
  "disabled": {
109
132
  "type": "boolean",
110
133
  "mutable": false,
@@ -33,7 +33,7 @@ export class Icon {
33
33
  "mutable": false,
34
34
  "complexType": {
35
35
  "original": "IconName",
36
- "resolved": "\"compare\" | \"help\" | \"open\" | \"expand\" | \"info\" | \"copy\" | \"menu\" | \"ellipse\" | \"line\" | \"download\" | \"rotate\" | \"close\" | \"flip\" | \"reset\" | \"resize\" | \"search\" | \"caret-down\" | \"caret-up\" | \"adjustments\" | \"align-to-global\" | \"align-to-part\" | \"align-to-surface\" | \"align-view-to-plane\" | \"annotation\" | \"arrow-filled\" | \"arrow-left-circled\" | \"arrow-line-left\" | \"arrow-line-right\" | \"arrow-partial\" | \"arrow-right-circled\" | \"arrow-triangle-left\" | \"arrow-triangle-right\" | \"arrow-up-circled\" | \"attachment\" | \"axis-x\" | \"axis-y\" | \"axis-z\" | \"back\" | \"box-cursor\" | \"box-select\" | \"camera\" | \"camera-add\" | \"caret-left\" | \"caution\" | \"check\" | \"check-circle\" | \"caret-right\" | \"chevron-down\" | \"chevron-left\" | \"chevron-right\" | \"chevron-up\" | \"circle-outline\" | \"close-circle-fill\" | \"close-circle\" | \"collapse-all\" | \"columns\" | \"columns-add\" | \"comment-add\" | \"comment-filled\" | \"comment-reopen\" | \"comment-resolve\" | \"comment-show\" | \"compress\" | \"cross-section\" | \"cube-orthographic\" | \"cube-perspective\" | \"cube-stack\" | \"delete\" | \"drag-indicator\" | \"error-circle\" | \"expand-all\" | \"export\" | \"file\" | \"file-folder\" | \"file-pdf\" | \"fit-all\" | \"fit-selected\" | \"folder-plus\" | \"forward\" | \"gear\" | \"invert\" | \"line-dot-left\" | \"line-dot-right\" | \"line-hash-left\" | \"line-hash-right\" | \"locate\" | \"markup\" | \"notification\" | \"open-window\" | \"pan\" | \"pencil\" | \"person-height\" | \"person-run\" | \"person-short\" | \"person-tall\" | \"person-walk\" | \"pin-fill\" | \"pin-line\" | \"pin-text\" | \"pin-text-fill\" | \"pin-text-square\" | \"plus\" | \"plus-with-arrow\" | \"pmi\" | \"precise-measurement\" | \"rabbit\" | \"report\" | \"ruler\" | \"show-only-nearby\" | \"snapshots\" | \"star\" | \"square-dot-outline\" | \"tape-measure\" | \"teleport-and-align\" | \"teleport-toward\" | \"teleport\" | \"turtle\" | \"update\" | \"version-history\" | \"views\" | \"visibility-hidden\" | \"visibility-partial\" | \"visibility-visible\" | \"zoom\"",
36
+ "resolved": "\"compare\" | \"help\" | \"open\" | \"expand\" | \"info\" | \"copy\" | \"menu\" | \"ellipse\" | \"line\" | \"download\" | \"rotate\" | \"close\" | \"adjustments\" | \"align-to-global\" | \"align-to-part\" | \"align-to-surface\" | \"align-view-to-plane\" | \"annotation\" | \"arrow-filled\" | \"arrow-left-circled\" | \"arrow-line-left\" | \"arrow-line-right\" | \"arrow-partial\" | \"arrow-right-circled\" | \"arrow-triangle-left\" | \"arrow-triangle-right\" | \"arrow-up-circled\" | \"attachment\" | \"axis-x\" | \"axis-y\" | \"axis-z\" | \"back\" | \"box-cursor\" | \"box-select\" | \"camera\" | \"camera-add\" | \"caret-down\" | \"caret-left\" | \"caret-right\" | \"caret-up\" | \"caution\" | \"check\" | \"check-circle\" | \"chevron-down\" | \"chevron-left\" | \"chevron-right\" | \"chevron-up\" | \"circle-outline\" | \"close-circle\" | \"close-circle-fill\" | \"collapse-all\" | \"columns\" | \"columns-add\" | \"comment-add\" | \"comment-filled\" | \"comment-reopen\" | \"comment-resolve\" | \"comment-show\" | \"compress\" | \"cross-section\" | \"cube-orthographic\" | \"cube-perspective\" | \"cube-stack\" | \"delete\" | \"drag-indicator\" | \"error-circle\" | \"expand-all\" | \"export\" | \"file\" | \"file-folder\" | \"file-pdf\" | \"fit-all\" | \"fit-selected\" | \"flip\" | \"folder-plus\" | \"forward\" | \"gear\" | \"invert\" | \"line-dot-left\" | \"line-dot-right\" | \"line-hash-left\" | \"line-hash-right\" | \"locate\" | \"markup\" | \"notification\" | \"open-window\" | \"pan\" | \"pencil\" | \"person-height\" | \"person-run\" | \"person-short\" | \"person-tall\" | \"person-walk\" | \"pin-fill\" | \"pin-line\" | \"pin-text\" | \"pin-text-fill\" | \"pin-text-square\" | \"plus\" | \"plus-with-arrow\" | \"pmi\" | \"precise-measurement\" | \"rabbit\" | \"report\" | \"reset\" | \"resize\" | \"ruler\" | \"search\" | \"show-only-nearby\" | \"snapshots\" | \"square-dot-outline\" | \"star\" | \"tape-measure\" | \"teleport\" | \"teleport-and-align\" | \"teleport-toward\" | \"turtle\" | \"update\" | \"version-history\" | \"views\" | \"visibility-hidden\" | \"visibility-partial\" | \"visibility-visible\" | \"zoom\"",
37
37
  "references": {
38
38
  "IconName": {
39
39
  "location": "import",
@@ -50,7 +50,7 @@ export class IconButton {
50
50
  "mutable": false,
51
51
  "complexType": {
52
52
  "original": "IconName",
53
- "resolved": "\"compare\" | \"help\" | \"open\" | \"expand\" | \"info\" | \"copy\" | \"menu\" | \"ellipse\" | \"line\" | \"download\" | \"rotate\" | \"close\" | \"flip\" | \"reset\" | \"resize\" | \"search\" | \"caret-down\" | \"caret-up\" | \"adjustments\" | \"align-to-global\" | \"align-to-part\" | \"align-to-surface\" | \"align-view-to-plane\" | \"annotation\" | \"arrow-filled\" | \"arrow-left-circled\" | \"arrow-line-left\" | \"arrow-line-right\" | \"arrow-partial\" | \"arrow-right-circled\" | \"arrow-triangle-left\" | \"arrow-triangle-right\" | \"arrow-up-circled\" | \"attachment\" | \"axis-x\" | \"axis-y\" | \"axis-z\" | \"back\" | \"box-cursor\" | \"box-select\" | \"camera\" | \"camera-add\" | \"caret-left\" | \"caution\" | \"check\" | \"check-circle\" | \"caret-right\" | \"chevron-down\" | \"chevron-left\" | \"chevron-right\" | \"chevron-up\" | \"circle-outline\" | \"close-circle-fill\" | \"close-circle\" | \"collapse-all\" | \"columns\" | \"columns-add\" | \"comment-add\" | \"comment-filled\" | \"comment-reopen\" | \"comment-resolve\" | \"comment-show\" | \"compress\" | \"cross-section\" | \"cube-orthographic\" | \"cube-perspective\" | \"cube-stack\" | \"delete\" | \"drag-indicator\" | \"error-circle\" | \"expand-all\" | \"export\" | \"file\" | \"file-folder\" | \"file-pdf\" | \"fit-all\" | \"fit-selected\" | \"folder-plus\" | \"forward\" | \"gear\" | \"invert\" | \"line-dot-left\" | \"line-dot-right\" | \"line-hash-left\" | \"line-hash-right\" | \"locate\" | \"markup\" | \"notification\" | \"open-window\" | \"pan\" | \"pencil\" | \"person-height\" | \"person-run\" | \"person-short\" | \"person-tall\" | \"person-walk\" | \"pin-fill\" | \"pin-line\" | \"pin-text\" | \"pin-text-fill\" | \"pin-text-square\" | \"plus\" | \"plus-with-arrow\" | \"pmi\" | \"precise-measurement\" | \"rabbit\" | \"report\" | \"ruler\" | \"show-only-nearby\" | \"snapshots\" | \"star\" | \"square-dot-outline\" | \"tape-measure\" | \"teleport-and-align\" | \"teleport-toward\" | \"teleport\" | \"turtle\" | \"update\" | \"version-history\" | \"views\" | \"visibility-hidden\" | \"visibility-partial\" | \"visibility-visible\" | \"zoom\"",
53
+ "resolved": "\"compare\" | \"help\" | \"open\" | \"expand\" | \"info\" | \"copy\" | \"menu\" | \"ellipse\" | \"line\" | \"download\" | \"rotate\" | \"close\" | \"adjustments\" | \"align-to-global\" | \"align-to-part\" | \"align-to-surface\" | \"align-view-to-plane\" | \"annotation\" | \"arrow-filled\" | \"arrow-left-circled\" | \"arrow-line-left\" | \"arrow-line-right\" | \"arrow-partial\" | \"arrow-right-circled\" | \"arrow-triangle-left\" | \"arrow-triangle-right\" | \"arrow-up-circled\" | \"attachment\" | \"axis-x\" | \"axis-y\" | \"axis-z\" | \"back\" | \"box-cursor\" | \"box-select\" | \"camera\" | \"camera-add\" | \"caret-down\" | \"caret-left\" | \"caret-right\" | \"caret-up\" | \"caution\" | \"check\" | \"check-circle\" | \"chevron-down\" | \"chevron-left\" | \"chevron-right\" | \"chevron-up\" | \"circle-outline\" | \"close-circle\" | \"close-circle-fill\" | \"collapse-all\" | \"columns\" | \"columns-add\" | \"comment-add\" | \"comment-filled\" | \"comment-reopen\" | \"comment-resolve\" | \"comment-show\" | \"compress\" | \"cross-section\" | \"cube-orthographic\" | \"cube-perspective\" | \"cube-stack\" | \"delete\" | \"drag-indicator\" | \"error-circle\" | \"expand-all\" | \"export\" | \"file\" | \"file-folder\" | \"file-pdf\" | \"fit-all\" | \"fit-selected\" | \"flip\" | \"folder-plus\" | \"forward\" | \"gear\" | \"invert\" | \"line-dot-left\" | \"line-dot-right\" | \"line-hash-left\" | \"line-hash-right\" | \"locate\" | \"markup\" | \"notification\" | \"open-window\" | \"pan\" | \"pencil\" | \"person-height\" | \"person-run\" | \"person-short\" | \"person-tall\" | \"person-walk\" | \"pin-fill\" | \"pin-line\" | \"pin-text\" | \"pin-text-fill\" | \"pin-text-square\" | \"plus\" | \"plus-with-arrow\" | \"pmi\" | \"precise-measurement\" | \"rabbit\" | \"report\" | \"reset\" | \"resize\" | \"ruler\" | \"search\" | \"show-only-nearby\" | \"snapshots\" | \"square-dot-outline\" | \"star\" | \"tape-measure\" | \"teleport\" | \"teleport-and-align\" | \"teleport-toward\" | \"turtle\" | \"update\" | \"version-history\" | \"views\" | \"visibility-hidden\" | \"visibility-partial\" | \"visibility-visible\" | \"zoom\"",
54
54
  "references": {
55
55
  "IconName": {
56
56
  "location": "import",
@@ -2,6 +2,7 @@ export * from './auto-resize-textarea/auto-resize-textarea';
2
2
  export * from './avatar/avatar';
3
3
  export * from './avatar-group/avatar-group';
4
4
  export * from './badge/badge';
5
+ export * from './banner/banner';
5
6
  export * from './button/button';
6
7
  export * from './card/card';
7
8
  export * from './card-group/card-group';
@@ -1 +1 @@
1
- import{d as e,N as t,w as a,p as o,a as r,b as i}from"./p-6834631c.js";export{s as setNonce}from"./p-6834631c.js";(()=>{const i=Array.from(e.querySelectorAll("script")).find((e=>new RegExp(`/${t}(\\.esm)?\\.js($|\\?|#)`).test(e.src)||e.getAttribute("data-stencil-namespace")===t)),n={};return n.resourcesUrl=new URL(".",new URL(i.getAttribute("data-resources-url")||i.src,a.location.href)).href,((o,i)=>{const n=`__sc_import_${t.replace(/\s|-/g,"_")}`;try{a[n]=new Function("w",`return import(w);//${Math.random()}`)}catch(t){const l=new Map;a[n]=t=>{var c;const s=new URL(t,o).href;let p=l.get(s);if(!p){const t=e.createElement("script");t.type="module",t.crossOrigin=i.crossOrigin,t.src=URL.createObjectURL(new Blob([`import * as m from '${s}'; window.${n}.m = m;`],{type:"application/javascript"}));const o=null!==(c=r.t)&&void 0!==c?c:function(e){var t,a,o;return null!==(o=null===(a=null===(t=e.head)||void 0===t?void 0:t.querySelector('meta[name="csp-nonce"]'))||void 0===a?void 0:a.getAttribute("content"))&&void 0!==o?o:void 0}(e);null!=o&&t.setAttribute("nonce",o),p=new Promise((e=>{t.onload=()=>{e(a[n].m),t.remove()}})),l.set(s,p),e.head.appendChild(t)}return p}}})(n.resourcesUrl,i),a.customElements?o(n):__sc_import_components("./p-c3ec6642.js").then((()=>n))})().then((e=>i([["p-24c72960",[[6,"vertex-click-to-edit-textfield",{placeholder:[1],fontSize:[1,"font-size"],disabled:[516],multiline:[4],minRows:[2,"min-rows"],maxRows:[2,"max-rows"],value:[1032],autoFocus:[4,"auto-focus"],editing:[1540],hasError:[4,"has-error"]}]]],["p-226e83a6",[[1,"vertex-collapsible",{label:[1],open:[1540]}]]],["p-41ced35c",[[1,"vertex-context-menu",{targetSelector:[1,"target-selector"],animated:[4],position:[32],open:[32]}]]],["p-e35057b5",[[1,"vertex-dialog",{open:[1540],fullscreen:[4],resizable:[4],width:[32],height:[32],minWidth:[32],minHeight:[32],maxWidth:[32],maxHeight:[32],isResizing:[32]},[[4,"keydown","keyDownListener"]]]]],["p-e7336466",[[1,"vertex-draggable-popover",{position:[1],boundarySelector:[1,"boundary-selector"],boundaryPadding:[2,"boundary-padding"],anchorPosition:[32],lastPosition:[32],dragging:[32]}]]],["p-e3d0c2d1",[[1,"vertex-dropdown-menu",{animated:[4],placement:[1],open:[32]}]]],["p-fe7e7a74",[[1,"vertex-help-tooltip",{animated:[4],placement:[1],open:[32]}]]],["p-6a49c365",[[6,"vertex-search-bar",{variant:[1],disabled:[4],triggerCharacter:[1,"trigger-character"],breakCharacters:[16],resultItems:[16],placement:[1],value:[1],placeholder:[1],replacements:[1040],replacementUriType:[1,"replacement-uri-type"],cursorPosition:[32],displayedElements:[32],hasTriggered:[32]}]]],["p-1d08dd79",[[1,"vertex-select",{value:[513],placeholder:[513],disabled:[516],animated:[4],hideSelected:[4,"hide-selected"],resizeObserverFactory:[16],open:[32],position:[32],displayValue:[32]}]]],["p-01d4be1d",[[1,"vertex-slider",{min:[2],max:[2],valueLabelDisplay:[1,"value-label-display"],step:[8],size:[1],value:[1026],disabled:[4]}]]],["p-756c9977",[[1,"vertex-toast",{content:[1],placement:[1],duration:[2],animated:[4],open:[4],type:[1],isOpen:[32]}]]],["p-d2d75bcf",[[1,"vertex-color-circle-picker",{colors:[1],supplementalColors:[1,"supplemental-colors"],theme:[513],lightenPercentage:[2,"lighten-percentage"],darkenPercentage:[2,"darken-percentage"],selected:[1537],direction:[1]}]]],["p-2b4aedaa",[[1,"vertex-color-picker",{value:[1537],size:[513],variant:[513],disabled:[4]}]]],["p-53515813",[[1,"vertex-toggle",{variant:[1],disabled:[4],checked:[1540]}]]],["p-bca6275a",[[1,"vertex-avatar",{firstName:[1,"first-name"],lastName:[1,"last-name"],value:[1],active:[4],variant:[1]}]]],["p-91123ff6",[[1,"vertex-avatar-group"]]],["p-0b4406fa",[[1,"vertex-badge",{badgeText:[1,"badge-text"],badgeColor:[1,"badge-color"]}]]],["p-fca52578",[[1,"vertex-button",{type:[1],color:[1],variant:[1],size:[1],expand:[1],href:[1],target:[1],disabled:[516]}]]],["p-6d4f055b",[[1,"vertex-card",{mode:[1]}]]],["p-211c1186",[[1,"vertex-card-group",{selected:[516],hovered:[516],expanded:[516]}]]],["p-d7c0c287",[[1,"vertex-chip",{variant:[1],color:[1]}]]],["p-a2018217",[[1,"vertex-logo-loading"]]],["p-cc2e3192",[[1,"vertex-menu-divider"]]],["p-573b8ec6",[[1,"vertex-menu-item",{disabled:[516]}]]],["p-33400eed",[[2,"vertex-radio",{disabled:[516],value:[513],label:[513],name:[513],checked:[516]}]]],["p-8b85ea4a",[[1,"vertex-radio-group",{name:[513],value:[1537]}]]],["p-ea4a2f74",[[1,"vertex-resizable",{horizontalDirection:[1,"horizontal-direction"],verticalDirection:[1,"vertical-direction"],initialHorizontalScale:[2,"initial-horizontal-scale"],initialVerticalScale:[2,"initial-vertical-scale"],initializeWithOffset:[4,"initialize-with-offset"],parentSelector:[1,"parent-selector"],verticalSiblingSelector:[1,"vertical-sibling-selector"],horizontalSiblingSelector:[1,"horizontal-sibling-selector"],contentSelector:[1,"content-selector"],position:[1],dimensionsComputed:[1540,"dimensions-computed"],width:[32],minWidth:[32],maxWidth:[32],height:[32],minHeight:[32],maxHeight:[32],left:[32],top:[32],hoveredLocation:[32],dragStartLocation:[32],updateDimensions:[64]}]]],["p-69375605",[[1,"vertex-spinner",{color:[1],size:[1]}]]],["p-2ae8175d",[[1,"vertex-tab",{label:[1],active:[4]}]]],["p-8d83dfff",[[1,"vertex-tabs",{active:[1025],labels:[32],activeBounds:[32],activeButtonEl:[32]}]]],["p-80c989fa",[[1,"vertex-expandable",{expanded:[1540],expanding:[1540],collapsing:[1540],controlled:[516],expandType:[513,"expand-type"],animated:[4],contentScrollHeight:[32]}]]],["p-ee496965",[[1,"vertex-result-list",{items:[16],itemsJson:[1,"items"],viewportStartIndex:[1026,"viewport-start-index"],viewportEndIndex:[1026,"viewport-end-index"],resultHeight:[1026,"result-height"],overScanCount:[2,"over-scan-count"],placement:[1],position:[1],open:[4],listHeight:[32],parsedResults:[32],scrollTop:[32],lastStartIndex:[32],lastFocusedIndex:[32],stateMap:[32]}]]],["p-9c384f6c",[[1,"vertex-auto-resize-textarea",{textareaSelector:[1,"textarea-selector"],initialValue:[1,"initial-value"],minRows:[514,"min-rows"],maxRows:[514,"max-rows"],textValue:[32]}]]],["p-406e73da",[[6,"vertex-textfield",{type:[1],name:[1],variant:[1],fontSize:[1,"font-size"],multiline:[4],minRows:[2,"min-rows"],maxRows:[2,"max-rows"],placeholder:[1],autoFocus:[4,"auto-focus"],autoComplete:[1,"auto-complete"],autoCorrect:[1,"auto-correct"],value:[1032],disabled:[516],hasError:[4,"has-error"],updateInput:[64],blurInput:[64],getInputValue:[64],selectAll:[64]}]]],["p-606596de",[[1,"vertex-popover",{open:[1540],placement:[1],position:[1025],anchorBounds:[16],backdrop:[4],animated:[4],anchorSelector:[1,"anchor-selector"],boundarySelector:[1,"boundary-selector"],resizeBehavior:[1,"resize-behavior"],overflowBehavior:[16],flipBehavior:[16],offsetBehavior:[2,"offset-behavior"],updateOnResize:[4,"update-on-resize"],resizeObserverFactory:[16],opened:[32],computedPlacement:[32]}]]],["p-cbfc041e",[[1,"vertex-tooltip",{content:[1],disabled:[4],placement:[1],delay:[2],animated:[4],open:[32]}]]],["p-8bbc344d",[[1,"vertex-color-swatch",{variant:[513],size:[513],color:[513],supplementalColor:[513,"supplemental-color"],theme:[513],lightenPercentage:[2,"lighten-percentage"],darkenPercentage:[2,"darken-percentage"],lightened:[1537],darkened:[1537]}]]],["p-0517ca62",[[1,"vertex-menu",{animated:[4],open:[1540],placement:[1],fallbackPlacements:[16],backdrop:[4],position:[1040],popoverProps:[16]}]]],["p-decf635f",[[1,"vertex-icon-button",{iconName:[1,"icon-name"],disabled:[516],variant:[1],iconColor:[1,"icon-color"],iconSize:[1,"icon-size"]}]]],["p-c6841378",[[1,"vertex-icon",{name:[1],size:[1]}]]]],e)));
1
+ import{d as e,N as t,w as a,p as o,a as r,b as i}from"./p-6834631c.js";export{s as setNonce}from"./p-6834631c.js";(()=>{const i=Array.from(e.querySelectorAll("script")).find((e=>new RegExp(`/${t}(\\.esm)?\\.js($|\\?|#)`).test(e.src)||e.getAttribute("data-stencil-namespace")===t)),n={};return n.resourcesUrl=new URL(".",new URL(i.getAttribute("data-resources-url")||i.src,a.location.href)).href,((o,i)=>{const n=`__sc_import_${t.replace(/\s|-/g,"_")}`;try{a[n]=new Function("w",`return import(w);//${Math.random()}`)}catch(t){const l=new Map;a[n]=t=>{var c;const s=new URL(t,o).href;let p=l.get(s);if(!p){const t=e.createElement("script");t.type="module",t.crossOrigin=i.crossOrigin,t.src=URL.createObjectURL(new Blob([`import * as m from '${s}'; window.${n}.m = m;`],{type:"application/javascript"}));const o=null!==(c=r.t)&&void 0!==c?c:function(e){var t,a,o;return null!==(o=null===(a=null===(t=e.head)||void 0===t?void 0:t.querySelector('meta[name="csp-nonce"]'))||void 0===a?void 0:a.getAttribute("content"))&&void 0!==o?o:void 0}(e);null!=o&&t.setAttribute("nonce",o),p=new Promise((e=>{t.onload=()=>{e(a[n].m),t.remove()}})),l.set(s,p),e.head.appendChild(t)}return p}}})(n.resourcesUrl,i),a.customElements?o(n):__sc_import_components("./p-c3ec6642.js").then((()=>n))})().then((e=>i([["p-24c72960",[[6,"vertex-click-to-edit-textfield",{placeholder:[1],fontSize:[1,"font-size"],disabled:[516],multiline:[4],minRows:[2,"min-rows"],maxRows:[2,"max-rows"],value:[1032],autoFocus:[4,"auto-focus"],editing:[1540],hasError:[4,"has-error"]}]]],["p-226e83a6",[[1,"vertex-collapsible",{label:[1],open:[1540]}]]],["p-06f217b4",[[1,"vertex-banner",{content:[1],placement:[1],duration:[2],animated:[4],open:[4],type:[1],isOpen:[32]}]]],["p-41ced35c",[[1,"vertex-context-menu",{targetSelector:[1,"target-selector"],animated:[4],position:[32],open:[32]}]]],["p-e35057b5",[[1,"vertex-dialog",{open:[1540],fullscreen:[4],resizable:[4],width:[32],height:[32],minWidth:[32],minHeight:[32],maxWidth:[32],maxHeight:[32],isResizing:[32]},[[4,"keydown","keyDownListener"]]]]],["p-e7336466",[[1,"vertex-draggable-popover",{position:[1],boundarySelector:[1,"boundary-selector"],boundaryPadding:[2,"boundary-padding"],anchorPosition:[32],lastPosition:[32],dragging:[32]}]]],["p-e3d0c2d1",[[1,"vertex-dropdown-menu",{animated:[4],placement:[1],open:[32]}]]],["p-fe7e7a74",[[1,"vertex-help-tooltip",{animated:[4],placement:[1],open:[32]}]]],["p-6a49c365",[[6,"vertex-search-bar",{variant:[1],disabled:[4],triggerCharacter:[1,"trigger-character"],breakCharacters:[16],resultItems:[16],placement:[1],value:[1],placeholder:[1],replacements:[1040],replacementUriType:[1,"replacement-uri-type"],cursorPosition:[32],displayedElements:[32],hasTriggered:[32]}]]],["p-1d08dd79",[[1,"vertex-select",{value:[513],placeholder:[513],disabled:[516],animated:[4],hideSelected:[4,"hide-selected"],resizeObserverFactory:[16],open:[32],position:[32],displayValue:[32]}]]],["p-01d4be1d",[[1,"vertex-slider",{min:[2],max:[2],valueLabelDisplay:[1,"value-label-display"],step:[8],size:[1],value:[1026],disabled:[4]}]]],["p-756c9977",[[1,"vertex-toast",{content:[1],placement:[1],duration:[2],animated:[4],open:[4],type:[1],isOpen:[32]}]]],["p-d2d75bcf",[[1,"vertex-color-circle-picker",{colors:[1],supplementalColors:[1,"supplemental-colors"],theme:[513],lightenPercentage:[2,"lighten-percentage"],darkenPercentage:[2,"darken-percentage"],selected:[1537],direction:[1]}]]],["p-70c6c194",[[1,"vertex-color-picker",{value:[1537],size:[513],variant:[513],expand:[513],disabled:[4]}]]],["p-53515813",[[1,"vertex-toggle",{variant:[1],disabled:[4],checked:[1540]}]]],["p-bca6275a",[[1,"vertex-avatar",{firstName:[1,"first-name"],lastName:[1,"last-name"],value:[1],active:[4],variant:[1]}]]],["p-91123ff6",[[1,"vertex-avatar-group"]]],["p-0b4406fa",[[1,"vertex-badge",{badgeText:[1,"badge-text"],badgeColor:[1,"badge-color"]}]]],["p-f6f2bc86",[[1,"vertex-button",{type:[1],color:[1],variant:[1],size:[1],expand:[1],href:[1],target:[1],disabled:[516]}]]],["p-6d4f055b",[[1,"vertex-card",{mode:[1]}]]],["p-211c1186",[[1,"vertex-card-group",{selected:[516],hovered:[516],expanded:[516]}]]],["p-d7c0c287",[[1,"vertex-chip",{variant:[1],color:[1]}]]],["p-a2018217",[[1,"vertex-logo-loading"]]],["p-cc2e3192",[[1,"vertex-menu-divider"]]],["p-573b8ec6",[[1,"vertex-menu-item",{disabled:[516]}]]],["p-33400eed",[[2,"vertex-radio",{disabled:[516],value:[513],label:[513],name:[513],checked:[516]}]]],["p-8b85ea4a",[[1,"vertex-radio-group",{name:[513],value:[1537]}]]],["p-ea4a2f74",[[1,"vertex-resizable",{horizontalDirection:[1,"horizontal-direction"],verticalDirection:[1,"vertical-direction"],initialHorizontalScale:[2,"initial-horizontal-scale"],initialVerticalScale:[2,"initial-vertical-scale"],initializeWithOffset:[4,"initialize-with-offset"],parentSelector:[1,"parent-selector"],verticalSiblingSelector:[1,"vertical-sibling-selector"],horizontalSiblingSelector:[1,"horizontal-sibling-selector"],contentSelector:[1,"content-selector"],position:[1],dimensionsComputed:[1540,"dimensions-computed"],width:[32],minWidth:[32],maxWidth:[32],height:[32],minHeight:[32],maxHeight:[32],left:[32],top:[32],hoveredLocation:[32],dragStartLocation:[32],updateDimensions:[64]}]]],["p-69375605",[[1,"vertex-spinner",{color:[1],size:[1]}]]],["p-2ae8175d",[[1,"vertex-tab",{label:[1],active:[4]}]]],["p-8d83dfff",[[1,"vertex-tabs",{active:[1025],labels:[32],activeBounds:[32],activeButtonEl:[32]}]]],["p-80c989fa",[[1,"vertex-expandable",{expanded:[1540],expanding:[1540],collapsing:[1540],controlled:[516],expandType:[513,"expand-type"],animated:[4],contentScrollHeight:[32]}]]],["p-ee496965",[[1,"vertex-result-list",{items:[16],itemsJson:[1,"items"],viewportStartIndex:[1026,"viewport-start-index"],viewportEndIndex:[1026,"viewport-end-index"],resultHeight:[1026,"result-height"],overScanCount:[2,"over-scan-count"],placement:[1],position:[1],open:[4],listHeight:[32],parsedResults:[32],scrollTop:[32],lastStartIndex:[32],lastFocusedIndex:[32],stateMap:[32]}]]],["p-9c384f6c",[[1,"vertex-auto-resize-textarea",{textareaSelector:[1,"textarea-selector"],initialValue:[1,"initial-value"],minRows:[514,"min-rows"],maxRows:[514,"max-rows"],textValue:[32]}]]],["p-406e73da",[[6,"vertex-textfield",{type:[1],name:[1],variant:[1],fontSize:[1,"font-size"],multiline:[4],minRows:[2,"min-rows"],maxRows:[2,"max-rows"],placeholder:[1],autoFocus:[4,"auto-focus"],autoComplete:[1,"auto-complete"],autoCorrect:[1,"auto-correct"],value:[1032],disabled:[516],hasError:[4,"has-error"],updateInput:[64],blurInput:[64],getInputValue:[64],selectAll:[64]}]]],["p-606596de",[[1,"vertex-popover",{open:[1540],placement:[1],position:[1025],anchorBounds:[16],backdrop:[4],animated:[4],anchorSelector:[1,"anchor-selector"],boundarySelector:[1,"boundary-selector"],resizeBehavior:[1,"resize-behavior"],overflowBehavior:[16],flipBehavior:[16],offsetBehavior:[2,"offset-behavior"],updateOnResize:[4,"update-on-resize"],resizeObserverFactory:[16],opened:[32],computedPlacement:[32]}]]],["p-cbfc041e",[[1,"vertex-tooltip",{content:[1],disabled:[4],placement:[1],delay:[2],animated:[4],open:[32]}]]],["p-8bbc344d",[[1,"vertex-color-swatch",{variant:[513],size:[513],color:[513],supplementalColor:[513,"supplemental-color"],theme:[513],lightenPercentage:[2,"lighten-percentage"],darkenPercentage:[2,"darken-percentage"],lightened:[1537],darkened:[1537]}]]],["p-0517ca62",[[1,"vertex-menu",{animated:[4],open:[1540],placement:[1],fallbackPlacements:[16],backdrop:[4],position:[1040],popoverProps:[16]}]]],["p-c6841378",[[1,"vertex-icon",{name:[1],size:[1]}]]],["p-decf635f",[[1,"vertex-icon-button",{iconName:[1,"icon-name"],disabled:[516],variant:[1],iconColor:[1,"icon-color"],iconSize:[1,"icon-size"]}]]]],e)));
@@ -1 +1 @@
1
- export{A as AutoResizeTextArea}from"./p-bec53c3a.js";export{A as Avatar}from"./p-c2c076f1.js";export{A as AvatarGroup}from"./p-81cb4da4.js";export{B as Badge}from"./p-29d7697f.js";export{B as Button}from"./p-64e8b92c.js";export{C as Card}from"./p-a3c04bbd.js";export{C as CardGroup}from"./p-ff4a1c3a.js";export{C as Chip}from"./p-a6614625.js";export{C as ClickToEditTextField}from"./p-0e628c05.js";export{C as Collapsible}from"./p-8fe0084d.js";export{C as ColorCirclePicker}from"./p-b9dab446.js";export{C as ColorPicker}from"./p-655053df.js";export{C as ColorSwatch}from"./p-d539f530.js";export{C as ContextMenu}from"./p-f2bc7ec5.js";export{D as Dialog}from"./p-0d4a0d61.js";export{D as DraggablePopover}from"./p-41a7564c.js";export{D as DropdownMenu}from"./p-39133bc7.js";export{E as Expandable}from"./p-6a640a2c.js";export{H as HelpTooltip}from"./p-2cff3285.js";export{I as Icon}from"./p-7bd92281.js";export{I as IconButton}from"./p-5384f198.js";export{L as LogoLoading}from"./p-817bf6ff.js";export{M as Menu}from"./p-7b75e004.js";export{M as MenuDivider}from"./p-c939fa4e.js";export{M as MenuItem}from"./p-988058f9.js";export{P as Popover}from"./p-c2706288.js";export{R as Radio}from"./p-36c853c4.js";export{R as RadioGroup}from"./p-f693e6f8.js";export{R as Resizable}from"./p-6ec189d2.js";export{R as ResultList}from"./p-6b862967.js";export{S as SearchBar}from"./p-6b6c2260.js";export{S as Select}from"./p-4327deea.js";export{S as Slider}from"./p-18ed73e9.js";export{S as Spinner}from"./p-09ba50c3.js";export{T as Tab}from"./p-96f55673.js";export{T as Tabs}from"./p-48629bf1.js";export{T as TextField}from"./p-43b1b3f9.js";export{T as Toast}from"./p-3dd08a0f.js";export{T as Toggle}from"./p-59fb829f.js";export{T as Tooltip}from"./p-45848878.js";import"./p-6834631c.js";import"./p-b2c7b113.js";import"./p-fe062eb0.js";import"./p-3438c441.js";import"./p-6ff20817.js";import"./p-1356f525.js";import"./p-59032668.js";import"./p-65f9817e.js";
1
+ export{A as AutoResizeTextArea}from"./p-bec53c3a.js";export{A as Avatar}from"./p-c2c076f1.js";export{A as AvatarGroup}from"./p-81cb4da4.js";export{B as Badge}from"./p-29d7697f.js";export{B as Banner}from"./p-7a527151.js";export{B as Button}from"./p-1e645c1f.js";export{C as Card}from"./p-a3c04bbd.js";export{C as CardGroup}from"./p-ff4a1c3a.js";export{C as Chip}from"./p-a6614625.js";export{C as ClickToEditTextField}from"./p-0e628c05.js";export{C as Collapsible}from"./p-8fe0084d.js";export{C as ColorCirclePicker}from"./p-b9dab446.js";export{C as ColorPicker}from"./p-e5ce8d66.js";export{C as ColorSwatch}from"./p-d539f530.js";export{C as ContextMenu}from"./p-f2bc7ec5.js";export{D as Dialog}from"./p-0d4a0d61.js";export{D as DraggablePopover}from"./p-41a7564c.js";export{D as DropdownMenu}from"./p-39133bc7.js";export{E as Expandable}from"./p-6a640a2c.js";export{H as HelpTooltip}from"./p-2cff3285.js";export{I as Icon}from"./p-7bd92281.js";export{I as IconButton}from"./p-5384f198.js";export{L as LogoLoading}from"./p-817bf6ff.js";export{M as Menu}from"./p-7b75e004.js";export{M as MenuDivider}from"./p-c939fa4e.js";export{M as MenuItem}from"./p-988058f9.js";export{P as Popover}from"./p-c2706288.js";export{R as Radio}from"./p-36c853c4.js";export{R as RadioGroup}from"./p-f693e6f8.js";export{R as Resizable}from"./p-6ec189d2.js";export{R as ResultList}from"./p-6b862967.js";export{S as SearchBar}from"./p-6b6c2260.js";export{S as Select}from"./p-4327deea.js";export{S as Slider}from"./p-18ed73e9.js";export{S as Spinner}from"./p-09ba50c3.js";export{T as Tab}from"./p-96f55673.js";export{T as Tabs}from"./p-48629bf1.js";export{T as TextField}from"./p-43b1b3f9.js";export{T as Toast}from"./p-3dd08a0f.js";export{T as Toggle}from"./p-59fb829f.js";export{T as Tooltip}from"./p-45848878.js";import"./p-6834631c.js";import"./p-b2c7b113.js";import"./p-fe062eb0.js";import"./p-6ff20817.js";import"./p-3438c441.js";import"./p-1356f525.js";import"./p-59032668.js";import"./p-65f9817e.js";
@@ -0,0 +1 @@
1
+ export{B as vertex_banner}from"./p-7a527151.js";import"./p-6834631c.js";import"./p-fe062eb0.js";import"./p-6ff20817.js";