@vonage/vivid 4.8.0 → 4.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/custom-elements.json +255 -3
  2. package/lib/breadcrumb/breadcrumb.d.ts +4 -1
  3. package/lib/breadcrumb-item/breadcrumb-item.d.ts +5 -3
  4. package/lib/checkbox/checkbox.d.ts +4 -0
  5. package/lib/dialog/dialog.d.ts +4 -0
  6. package/lib/divider/divider.d.ts +11 -2
  7. package/lib/icon/icon.d.ts +2 -1
  8. package/lib/text-field/text-field.d.ts +1 -0
  9. package/package.json +1 -1
  10. package/shared/breadcrumb-item.cjs +162 -20
  11. package/shared/breadcrumb-item.js +163 -21
  12. package/shared/definition10.cjs +52 -68
  13. package/shared/definition10.js +54 -70
  14. package/shared/definition11.cjs +1 -1
  15. package/shared/definition11.js +1 -1
  16. package/shared/definition15.cjs +17 -1
  17. package/shared/definition15.js +17 -1
  18. package/shared/definition20.cjs +88 -64
  19. package/shared/definition20.js +88 -64
  20. package/shared/definition21.cjs +59 -14
  21. package/shared/definition21.js +59 -14
  22. package/shared/definition22.cjs +32 -51
  23. package/shared/definition22.js +33 -52
  24. package/shared/definition29.cjs +1 -1
  25. package/shared/definition29.js +1 -1
  26. package/shared/definition30.cjs +1 -1
  27. package/shared/definition30.js +1 -1
  28. package/shared/definition46.cjs +24 -9
  29. package/shared/definition46.js +24 -9
  30. package/shared/definition5.cjs +1 -1
  31. package/shared/definition5.js +1 -1
  32. package/shared/definition56.cjs +4 -0
  33. package/shared/definition56.js +4 -0
  34. package/shared/definition9.cjs +1 -19
  35. package/shared/definition9.js +2 -20
  36. package/shared/icon.cjs +11 -5
  37. package/shared/icon.js +11 -5
  38. package/shared/patterns/anchor.d.ts +18 -0
  39. package/shared/patterns/anchored.d.ts +4 -4
  40. package/shared/patterns/aria-global.d.ts +21 -0
  41. package/shared/patterns/form-elements/form-elements.d.ts +6 -6
  42. package/shared/text-anchor.cjs +84 -2
  43. package/shared/text-anchor.js +84 -2
  44. package/styles/core/all.css +1 -1
  45. package/styles/core/theme.css +1 -1
  46. package/styles/core/typography.css +1 -1
  47. package/styles/tokens/theme-dark.css +35 -14
  48. package/styles/tokens/theme-light.css +35 -14
  49. package/styles/tokens/vivid-2-compat.css +1 -1
  50. package/vivid.api.json +10 -1
  51. package/shared/anchor.cjs +0 -90
  52. package/shared/anchor.js +0 -87
package/shared/icon.cjs CHANGED
@@ -196,22 +196,28 @@ const extractSvg = (response) => {
196
196
  assertIsValidResponse(response);
197
197
  return response.text();
198
198
  };
199
- const loadSvg = (iconId) => fetch(baseUrlTemplate([iconId, "svg"].join("."), ICONS_VERSION)).then(
200
- extractSvg
201
- );
199
+ const loadSvg = (iconId, signal) => fetch(baseUrlTemplate([iconId, "svg"].join("."), ICONS_VERSION), {
200
+ signal
201
+ }).then(extractSvg);
202
202
  const resolveIcon = memoizeWith(
203
203
  identity,
204
- (iconId = "") => iconId.trim() ? loadSvg(iconId) : Promise.resolve("")
204
+ (iconId, signal) => iconId.trim() ? loadSvg(iconId, signal) : Promise.resolve("")
205
205
  );
206
206
  class Icon extends index.FoundationElement {
207
207
  constructor() {
208
208
  super(...arguments);
209
209
  this.iconLoaded = false;
210
+ this.#abortController = null;
210
211
  }
211
212
  get iconUrl() {
212
213
  return !this.name ? this._svg : baseUrlTemplate(`${this.name}.svg`, ICONS_VERSION);
213
214
  }
215
+ #abortController;
214
216
  async nameChanged() {
217
+ if (this.#abortController) {
218
+ this.#abortController.abort();
219
+ }
220
+ this.#abortController = new AbortController();
215
221
  this._svg = void 0;
216
222
  this.iconLoaded = false;
217
223
  let timeout = setTimeout(() => {
@@ -222,7 +228,7 @@ class Icon extends index.FoundationElement {
222
228
  }
223
229
  }, PLACEHOLDER_TIMEOUT);
224
230
  }, PLACEHOLDER_DELAY);
225
- await resolveIcon(this.name).then((svg) => {
231
+ await resolveIcon(this.name ? this.name : "", this.#abortController.signal).then((svg) => {
226
232
  this._svg = svg;
227
233
  }).catch(() => {
228
234
  this._svg = void 0;
package/shared/icon.js CHANGED
@@ -194,22 +194,28 @@ const extractSvg = (response) => {
194
194
  assertIsValidResponse(response);
195
195
  return response.text();
196
196
  };
197
- const loadSvg = (iconId) => fetch(baseUrlTemplate([iconId, "svg"].join("."), ICONS_VERSION)).then(
198
- extractSvg
199
- );
197
+ const loadSvg = (iconId, signal) => fetch(baseUrlTemplate([iconId, "svg"].join("."), ICONS_VERSION), {
198
+ signal
199
+ }).then(extractSvg);
200
200
  const resolveIcon = memoizeWith(
201
201
  identity,
202
- (iconId = "") => iconId.trim() ? loadSvg(iconId) : Promise.resolve("")
202
+ (iconId, signal) => iconId.trim() ? loadSvg(iconId, signal) : Promise.resolve("")
203
203
  );
204
204
  class Icon extends FoundationElement {
205
205
  constructor() {
206
206
  super(...arguments);
207
207
  this.iconLoaded = false;
208
+ this.#abortController = null;
208
209
  }
209
210
  get iconUrl() {
210
211
  return !this.name ? this._svg : baseUrlTemplate(`${this.name}.svg`, ICONS_VERSION);
211
212
  }
213
+ #abortController;
212
214
  async nameChanged() {
215
+ if (this.#abortController) {
216
+ this.#abortController.abort();
217
+ }
218
+ this.#abortController = new AbortController();
213
219
  this._svg = void 0;
214
220
  this.iconLoaded = false;
215
221
  let timeout = setTimeout(() => {
@@ -220,7 +226,7 @@ class Icon extends FoundationElement {
220
226
  }
221
227
  }, PLACEHOLDER_TIMEOUT);
222
228
  }, PLACEHOLDER_DELAY);
223
- await resolveIcon(this.name).then((svg) => {
229
+ await resolveIcon(this.name ? this.name : "", this.#abortController.signal).then((svg) => {
224
230
  this._svg = svg;
225
231
  }).catch(() => {
226
232
  this._svg = void 0;
@@ -0,0 +1,18 @@
1
+ import { ARIAGlobalStatesAndProperties } from './aria-global';
2
+ export declare class Anchor {
3
+ download: string;
4
+ href: string;
5
+ hreflang: string;
6
+ ping: string;
7
+ referrerpolicy: string;
8
+ rel: string;
9
+ target: '_self' | '_blank' | '_parent' | '_top';
10
+ type: string;
11
+ }
12
+ export declare class DelegatesARIALink {
13
+ ariaExpanded: 'true' | 'false' | string | null;
14
+ }
15
+ export interface DelegatesARIALink extends ARIAGlobalStatesAndProperties {
16
+ }
17
+ export interface Anchor extends DelegatesARIALink {
18
+ }
@@ -14,10 +14,10 @@ export declare function anchored<T extends {
14
14
  _slottedAnchor?: HTMLElement[] | undefined;
15
15
  _slottedAnchorChanged(): void;
16
16
  _anchorEl?: HTMLElement | undefined;
17
- "__#6@#updateAnchorEl": () => void;
18
- "__#6@#observer"?: MutationObserver | undefined;
19
- "__#6@#observeMissingAnchor": (anchorId: string) => void;
20
- "__#6@#cleanupObserverIfNeeded": () => void;
17
+ "__#7@#updateAnchorEl": () => void;
18
+ "__#7@#observer"?: MutationObserver | undefined;
19
+ "__#7@#observeMissingAnchor": (anchorId: string) => void;
20
+ "__#7@#cleanupObserverIfNeeded": () => void;
21
21
  connectedCallback(): void;
22
22
  disconnectedCallback(): void;
23
23
  };
@@ -0,0 +1,21 @@
1
+ export declare class ARIAGlobalStatesAndProperties {
2
+ ariaAtomic: 'true' | 'false' | string | null;
3
+ ariaBusy: 'true' | 'false' | string | null;
4
+ ariaControls: string | null;
5
+ ariaCurrent: 'page' | 'step' | 'location' | 'date' | 'time' | 'true' | 'false' | string | null;
6
+ ariaDescribedby: string | null;
7
+ ariaDetails: string | null;
8
+ ariaDisabled: 'true' | 'false' | string | null;
9
+ ariaErrormessage: string | null;
10
+ ariaFlowto: string | null;
11
+ ariaHaspopup: 'false' | 'true' | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog' | string | null;
12
+ ariaHidden: 'false' | 'true' | string | null;
13
+ ariaInvalid: 'false' | 'true' | 'grammar' | 'spelling' | string | null;
14
+ ariaKeyshortcuts: string | null;
15
+ ariaLabel: string | null;
16
+ ariaLabelledby: string | null;
17
+ ariaLive: 'assertive' | 'off' | 'polite' | string | null;
18
+ ariaOwns: string | null;
19
+ ariaRelevant: 'additions' | 'additions text' | 'all' | 'removals' | 'text' | string | null;
20
+ ariaRoledescription: string | null;
21
+ }
@@ -34,10 +34,10 @@ export declare function formElements<T extends {
34
34
  [x: string]: any;
35
35
  label?: string | undefined;
36
36
  errorValidationMessage: string;
37
- "__#1@#forceErrorDisplay": boolean;
38
- "__#1@#hasBeenTouched": boolean;
37
+ "__#2@#forceErrorDisplay": boolean;
38
+ "__#2@#hasBeenTouched": boolean;
39
39
  connectedCallback(): void;
40
- "__#1@#handleInvalidEvent": () => void;
40
+ "__#2@#handleInvalidEvent": () => void;
41
41
  disconnectedCallback(): void;
42
42
  formResetCallback(): void;
43
43
  validate: () => void;
@@ -50,9 +50,9 @@ export declare function errorText<T extends {
50
50
  new (...args: any[]): {
51
51
  [x: string]: any;
52
52
  errorText?: string | undefined;
53
- "__#2@#blockValidateCalls": boolean;
53
+ "__#3@#blockValidateCalls": boolean;
54
54
  errorTextChanged(_: string, newErrorText: string | undefined): void;
55
- "__#2@#forceCustomError"(errorMessage: string): void;
56
- "__#2@#clearCustomErrorAndRevalidate"(): void;
55
+ "__#3@#forceCustomError"(errorMessage: string): void;
56
+ "__#3@#clearCustomErrorAndRevalidate"(): void;
57
57
  };
58
58
  } & T;
@@ -1,9 +1,91 @@
1
1
  'use strict';
2
2
 
3
3
  const affix = require('./affix.cjs');
4
- const anchor = require('./anchor.cjs');
5
4
  const index = require('./index.cjs');
6
5
  const applyMixins = require('./apply-mixins.cjs');
6
+ const ariaGlobal = require('./aria-global.cjs');
7
+ const startEnd = require('./start-end.cjs');
8
+
9
+ /**
10
+ * An Anchor Custom HTML Element.
11
+ * Based largely on the {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a | <a> element }.
12
+ *
13
+ * @slot start - Content which can be provided before the anchor content
14
+ * @slot end - Content which can be provided after the anchor content
15
+ * @slot - The default slot for anchor content
16
+ * @csspart control - The anchor element
17
+ * @csspart content - The element wrapping anchor content
18
+ *
19
+ * @public
20
+ */
21
+ class Anchor extends index.FoundationElement {
22
+ constructor() {
23
+ super(...arguments);
24
+ /**
25
+ * Overrides the focus call for where delegatesFocus is unsupported.
26
+ * This check works for Chrome, Edge Chromium, FireFox, and Safari
27
+ * Relevant PR on the Firefox browser: https://phabricator.services.mozilla.com/D123858
28
+ */
29
+ this.handleUnsupportedDelegatesFocus = () => {
30
+ var _a;
31
+ // Check to see if delegatesFocus is supported
32
+ if (window.ShadowRoot &&
33
+ !window.ShadowRoot.prototype.hasOwnProperty("delegatesFocus") &&
34
+ ((_a = this.$fastController.definition.shadowOptions) === null || _a === void 0 ? void 0 : _a.delegatesFocus)) {
35
+ this.focus = () => {
36
+ var _a;
37
+ (_a = this.control) === null || _a === void 0 ? void 0 : _a.focus();
38
+ };
39
+ }
40
+ };
41
+ }
42
+ /**
43
+ * @internal
44
+ */
45
+ connectedCallback() {
46
+ super.connectedCallback();
47
+ this.handleUnsupportedDelegatesFocus();
48
+ }
49
+ }
50
+ index.__decorate([
51
+ index.attr
52
+ ], Anchor.prototype, "download", void 0);
53
+ index.__decorate([
54
+ index.attr
55
+ ], Anchor.prototype, "href", void 0);
56
+ index.__decorate([
57
+ index.attr
58
+ ], Anchor.prototype, "hreflang", void 0);
59
+ index.__decorate([
60
+ index.attr
61
+ ], Anchor.prototype, "ping", void 0);
62
+ index.__decorate([
63
+ index.attr
64
+ ], Anchor.prototype, "referrerpolicy", void 0);
65
+ index.__decorate([
66
+ index.attr
67
+ ], Anchor.prototype, "rel", void 0);
68
+ index.__decorate([
69
+ index.attr
70
+ ], Anchor.prototype, "target", void 0);
71
+ index.__decorate([
72
+ index.attr
73
+ ], Anchor.prototype, "type", void 0);
74
+ index.__decorate([
75
+ index.observable
76
+ ], Anchor.prototype, "defaultSlottedContent", void 0);
77
+ /**
78
+ * Includes ARIA states and properties relating to the ARIA link role
79
+ *
80
+ * @public
81
+ */
82
+ class DelegatesARIALink {
83
+ }
84
+ index.__decorate([
85
+ index.attr({ attribute: "aria-expanded" })
86
+ ], DelegatesARIALink.prototype, "ariaExpanded", void 0);
87
+ applyMixins.applyMixins(DelegatesARIALink, ariaGlobal.ARIAGlobalStatesAndProperties);
88
+ applyMixins.applyMixins(Anchor, startEnd.StartEnd, DelegatesARIALink);
7
89
 
8
90
  var __defProp = Object.defineProperty;
9
91
  var __decorateClass = (decorators, target, key, kind) => {
@@ -14,7 +96,7 @@ var __decorateClass = (decorators, target, key, kind) => {
14
96
  if (result) __defProp(target, key, result);
15
97
  return result;
16
98
  };
17
- class TextAnchor extends anchor.Anchor {
99
+ class TextAnchor extends Anchor {
18
100
  /**
19
101
  * Allows subclasses to provide a body template that will be rendered inside the anchor.
20
102
  * @internal
@@ -1,7 +1,89 @@
1
1
  import { A as AffixIcon } from './affix.js';
2
- import { A as Anchor } from './anchor.js';
3
- import { a as attr } from './index.js';
2
+ import { F as FoundationElement, _ as __decorate, a as attr, o as observable } from './index.js';
4
3
  import { a as applyMixins } from './apply-mixins.js';
4
+ import { A as ARIAGlobalStatesAndProperties } from './aria-global.js';
5
+ import { S as StartEnd } from './start-end.js';
6
+
7
+ /**
8
+ * An Anchor Custom HTML Element.
9
+ * Based largely on the {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a | <a> element }.
10
+ *
11
+ * @slot start - Content which can be provided before the anchor content
12
+ * @slot end - Content which can be provided after the anchor content
13
+ * @slot - The default slot for anchor content
14
+ * @csspart control - The anchor element
15
+ * @csspart content - The element wrapping anchor content
16
+ *
17
+ * @public
18
+ */
19
+ class Anchor extends FoundationElement {
20
+ constructor() {
21
+ super(...arguments);
22
+ /**
23
+ * Overrides the focus call for where delegatesFocus is unsupported.
24
+ * This check works for Chrome, Edge Chromium, FireFox, and Safari
25
+ * Relevant PR on the Firefox browser: https://phabricator.services.mozilla.com/D123858
26
+ */
27
+ this.handleUnsupportedDelegatesFocus = () => {
28
+ var _a;
29
+ // Check to see if delegatesFocus is supported
30
+ if (window.ShadowRoot &&
31
+ !window.ShadowRoot.prototype.hasOwnProperty("delegatesFocus") &&
32
+ ((_a = this.$fastController.definition.shadowOptions) === null || _a === void 0 ? void 0 : _a.delegatesFocus)) {
33
+ this.focus = () => {
34
+ var _a;
35
+ (_a = this.control) === null || _a === void 0 ? void 0 : _a.focus();
36
+ };
37
+ }
38
+ };
39
+ }
40
+ /**
41
+ * @internal
42
+ */
43
+ connectedCallback() {
44
+ super.connectedCallback();
45
+ this.handleUnsupportedDelegatesFocus();
46
+ }
47
+ }
48
+ __decorate([
49
+ attr
50
+ ], Anchor.prototype, "download", void 0);
51
+ __decorate([
52
+ attr
53
+ ], Anchor.prototype, "href", void 0);
54
+ __decorate([
55
+ attr
56
+ ], Anchor.prototype, "hreflang", void 0);
57
+ __decorate([
58
+ attr
59
+ ], Anchor.prototype, "ping", void 0);
60
+ __decorate([
61
+ attr
62
+ ], Anchor.prototype, "referrerpolicy", void 0);
63
+ __decorate([
64
+ attr
65
+ ], Anchor.prototype, "rel", void 0);
66
+ __decorate([
67
+ attr
68
+ ], Anchor.prototype, "target", void 0);
69
+ __decorate([
70
+ attr
71
+ ], Anchor.prototype, "type", void 0);
72
+ __decorate([
73
+ observable
74
+ ], Anchor.prototype, "defaultSlottedContent", void 0);
75
+ /**
76
+ * Includes ARIA states and properties relating to the ARIA link role
77
+ *
78
+ * @public
79
+ */
80
+ class DelegatesARIALink {
81
+ }
82
+ __decorate([
83
+ attr({ attribute: "aria-expanded" })
84
+ ], DelegatesARIALink.prototype, "ariaExpanded", void 0);
85
+ applyMixins(DelegatesARIALink, ARIAGlobalStatesAndProperties);
86
+ applyMixins(Anchor, StartEnd, DelegatesARIALink);
5
87
 
6
88
  var __defProp = Object.defineProperty;
7
89
  var __decorateClass = (decorators, target, key, kind) => {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
3
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
4
4
  */
5
5
  .vvd-root {
6
6
  color-scheme: var(--vvd-color-scheme);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
3
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
4
4
  */
5
5
  .vvd-root {
6
6
  color-scheme: var(--vvd-color-scheme);
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
3
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
4
4
  */
5
5
  .vvd-root:root {
6
6
  --vvd-size-font-scale-base: 1rem;
@@ -1,18 +1,18 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
3
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
4
4
  */
5
5
  /**
6
6
  * Do not edit directly
7
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
7
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
8
8
  */
9
9
  /**
10
10
  * Do not edit directly
11
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
11
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
12
12
  */
13
13
  /**
14
14
  * Do not edit directly
15
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
15
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
16
16
  */
17
17
  @property --vvd-size-density {
18
18
  syntax: "<integer>";
@@ -79,16 +79,6 @@
79
79
  --vvd-color-announcement-700: #f8b9e7;
80
80
  --vvd-color-announcement-800: #ffdcf7;
81
81
  --vvd-color-announcement-900: #ffedfb;
82
- --vvd-color-alert-50: #3e0004;
83
- --vvd-color-alert-100: #6e0000;
84
- --vvd-color-alert-200: #9f0202;
85
- --vvd-color-alert-300: #cd0d0d;
86
- --vvd-color-alert-400: #e61d1d;
87
- --vvd-color-alert-500: #f75959;
88
- --vvd-color-alert-600: #fe9696;
89
- --vvd-color-alert-700: #ffbbbb;
90
- --vvd-color-alert-800: #fedfdf;
91
- --vvd-color-alert-900: #ffeef2;
92
82
  --vvd-color-success-50: #0a1e11;
93
83
  --vvd-color-success-100: #183a1e;
94
84
  --vvd-color-success-200: #155923;
@@ -99,6 +89,26 @@
99
89
  --vvd-color-success-700: #86e090;
100
90
  --vvd-color-success-800: #cfeed4;
101
91
  --vvd-color-success-900: #e1f8e5;
92
+ --vvd-color-alert-50: #3e0004;
93
+ --vvd-color-alert-100: #6e0000;
94
+ --vvd-color-alert-200: #9f0202;
95
+ --vvd-color-alert-300: #cd0d0d;
96
+ --vvd-color-alert-400: #e61d1d;
97
+ --vvd-color-alert-500: #f75959;
98
+ --vvd-color-alert-600: #fe9696;
99
+ --vvd-color-alert-700: #ffbbbb;
100
+ --vvd-color-alert-800: #fedfdf;
101
+ --vvd-color-alert-900: #ffeef2;
102
+ --vvd-color-neutral-tint-50: #191828;
103
+ --vvd-color-neutral-tint-100: #31304f;
104
+ --vvd-color-neutral-tint-200: #494977;
105
+ --vvd-color-neutral-tint-300: #63628d;
106
+ --vvd-color-neutral-tint-400: #727198;
107
+ --vvd-color-neutral-tint-500: #908fae;
108
+ --vvd-color-neutral-tint-600: #b2b1c7;
109
+ --vvd-color-neutral-tint-700: #cbcbd9;
110
+ --vvd-color-neutral-tint-800: #e5e5ec;
111
+ --vvd-color-neutral-tint-900: #f2f3f9;
102
112
  --vvd-color-surface-0dp: #0d0d0d;
103
113
  --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;
104
114
  --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;
@@ -209,6 +219,17 @@
209
219
  --vvd-color-alert-800: #6e0000;
210
220
  --vvd-color-alert-900: #3e0004;
211
221
  --vvd-color-alert-950: #250004;
222
+ --vvd-color-neutral-tint-50: #f2f3f9;
223
+ --vvd-color-neutral-tint-100: #e5e5ec;
224
+ --vvd-color-neutral-tint-200: #cbcbd9;
225
+ --vvd-color-neutral-tint-300: #b2b1c7;
226
+ --vvd-color-neutral-tint-400: #908fae;
227
+ --vvd-color-neutral-tint-500: #727198;
228
+ --vvd-color-neutral-tint-600: #63628d;
229
+ --vvd-color-neutral-tint-700: #494977;
230
+ --vvd-color-neutral-tint-800: #31304f;
231
+ --vvd-color-neutral-tint-900: #191828;
232
+ --vvd-color-neutral-tint-950: #0d0c15;
212
233
  --vvd-color-surface-0dp: #ffffff;
213
234
  --vvd-color-surface-2dp: #ffffff;
214
235
  --vvd-color-surface-4dp: #ffffff;
@@ -1,18 +1,18 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
3
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
4
4
  */
5
5
  /**
6
6
  * Do not edit directly
7
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
7
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
8
8
  */
9
9
  /**
10
10
  * Do not edit directly
11
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
11
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
12
12
  */
13
13
  /**
14
14
  * Do not edit directly
15
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
15
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
16
16
  */
17
17
  @property --vvd-size-density {
18
18
  syntax: "<integer>";
@@ -105,6 +105,17 @@
105
105
  --vvd-color-alert-800: #6e0000;
106
106
  --vvd-color-alert-900: #3e0004;
107
107
  --vvd-color-alert-950: #250004;
108
+ --vvd-color-neutral-tint-50: #f2f3f9;
109
+ --vvd-color-neutral-tint-100: #e5e5ec;
110
+ --vvd-color-neutral-tint-200: #cbcbd9;
111
+ --vvd-color-neutral-tint-300: #b2b1c7;
112
+ --vvd-color-neutral-tint-400: #908fae;
113
+ --vvd-color-neutral-tint-500: #727198;
114
+ --vvd-color-neutral-tint-600: #63628d;
115
+ --vvd-color-neutral-tint-700: #494977;
116
+ --vvd-color-neutral-tint-800: #31304f;
117
+ --vvd-color-neutral-tint-900: #191828;
118
+ --vvd-color-neutral-tint-950: #0d0c15;
108
119
  --vvd-color-surface-0dp: #ffffff;
109
120
  --vvd-color-surface-2dp: #ffffff;
110
121
  --vvd-color-surface-4dp: #ffffff;
@@ -189,16 +200,6 @@
189
200
  --vvd-color-announcement-700: #f8b9e7;
190
201
  --vvd-color-announcement-800: #ffdcf7;
191
202
  --vvd-color-announcement-900: #ffedfb;
192
- --vvd-color-alert-50: #3e0004;
193
- --vvd-color-alert-100: #6e0000;
194
- --vvd-color-alert-200: #9f0202;
195
- --vvd-color-alert-300: #cd0d0d;
196
- --vvd-color-alert-400: #e61d1d;
197
- --vvd-color-alert-500: #f75959;
198
- --vvd-color-alert-600: #fe9696;
199
- --vvd-color-alert-700: #ffbbbb;
200
- --vvd-color-alert-800: #fedfdf;
201
- --vvd-color-alert-900: #ffeef2;
202
203
  --vvd-color-success-50: #0a1e11;
203
204
  --vvd-color-success-100: #183a1e;
204
205
  --vvd-color-success-200: #155923;
@@ -209,6 +210,26 @@
209
210
  --vvd-color-success-700: #86e090;
210
211
  --vvd-color-success-800: #cfeed4;
211
212
  --vvd-color-success-900: #e1f8e5;
213
+ --vvd-color-alert-50: #3e0004;
214
+ --vvd-color-alert-100: #6e0000;
215
+ --vvd-color-alert-200: #9f0202;
216
+ --vvd-color-alert-300: #cd0d0d;
217
+ --vvd-color-alert-400: #e61d1d;
218
+ --vvd-color-alert-500: #f75959;
219
+ --vvd-color-alert-600: #fe9696;
220
+ --vvd-color-alert-700: #ffbbbb;
221
+ --vvd-color-alert-800: #fedfdf;
222
+ --vvd-color-alert-900: #ffeef2;
223
+ --vvd-color-neutral-tint-50: #191828;
224
+ --vvd-color-neutral-tint-100: #31304f;
225
+ --vvd-color-neutral-tint-200: #494977;
226
+ --vvd-color-neutral-tint-300: #63628d;
227
+ --vvd-color-neutral-tint-400: #727198;
228
+ --vvd-color-neutral-tint-500: #908fae;
229
+ --vvd-color-neutral-tint-600: #b2b1c7;
230
+ --vvd-color-neutral-tint-700: #cbcbd9;
231
+ --vvd-color-neutral-tint-800: #e5e5ec;
232
+ --vvd-color-neutral-tint-900: #f2f3f9;
212
233
  --vvd-color-surface-0dp: #0d0d0d;
213
234
  --vvd-color-surface-2dp: linear-gradient(#ffffff0f, #ffffff0f), #0d0d0d;
214
235
  --vvd-color-surface-4dp: linear-gradient(#ffffff14, #ffffff14), #0d0d0d;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 09 Oct 2024 14:15:03 GMT
3
+ * Generated on Wed, 23 Oct 2024 11:35:04 GMT
4
4
  */
5
5
  .vvd-root, ::part(vvd-root),
6
6
  .vvd-theme-alternate, ::part(vvd-theme-alternate) {
package/vivid.api.json CHANGED
@@ -3857,6 +3857,15 @@
3857
3857
  "text": "Connotation.Information",
3858
3858
  "canonicalReference": "@vonage/vivid!Connotation.Information:member"
3859
3859
  },
3860
+ {
3861
+ "kind": "Content",
3862
+ "text": " | "
3863
+ },
3864
+ {
3865
+ "kind": "Reference",
3866
+ "text": "Connotation.Announcement",
3867
+ "canonicalReference": "@vonage/vivid!Connotation.Announcement:member"
3868
+ },
3860
3869
  {
3861
3870
  "kind": "Content",
3862
3871
  "text": ">"
@@ -3871,7 +3880,7 @@
3871
3880
  "name": "IconConnotation",
3872
3881
  "typeTokenRange": {
3873
3882
  "startIndex": 1,
3874
- "endIndex": 17
3883
+ "endIndex": 19
3875
3884
  }
3876
3885
  },
3877
3886
  {