@vonage/vivid 3.0.0-next.43 → 3.0.0-next.46

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.
@@ -22,7 +22,7 @@ const getClasses = ({
22
22
  connotation,
23
23
  density,
24
24
  paused
25
- }) => classNames('base', ['disabled', !!paused], [`connotation-${connotation}`, !!connotation], [`density-${(density ? Number(density) : 0) + 9}`, !!density]);
25
+ }) => classNames('base', ['disabled', !!paused], [`connotation-${connotation}`, !!connotation], [`density-${(density ? Number(density) : 0) + 10}`, !!density]);
26
26
 
27
27
  const progressSegments = 44;
28
28
  const ProgressRingTemplate = _ => html(_t || (_t = _2`
@@ -76,8 +76,17 @@ var KeyCodes;
76
76
  KeyCodes[KeyCodes["windowsOpera"] = 219] = "windowsOpera";
77
77
  KeyCodes[KeyCodes["windowsRight"] = 92] = "windowsRight";
78
78
  })(KeyCodes || (KeyCodes = {}));
79
+ /**
80
+ * String values for use with KeyboardEvent.key
81
+ */
82
+ const keyArrowDown = "ArrowDown";
83
+ const keyArrowLeft = "ArrowLeft";
84
+ const keyArrowRight = "ArrowRight";
85
+ const keyArrowUp = "ArrowUp";
79
86
  const keyEnter = "Enter";
80
87
  const keyEscape = "Escape";
88
+ const keyHome = "Home";
89
+ const keyEnd = "End";
81
90
  const keySpace = " ";
82
91
 
83
92
  const proxySlotName = "form-associated-proxy";
@@ -545,4 +554,4 @@ function CheckableFormAssociated(BaseCtor) {
545
554
  return D;
546
555
  }
547
556
 
548
- export { CheckableFormAssociated as C, FormAssociated as F, keyEscape as a, keySpace as k };
557
+ export { CheckableFormAssociated as C, FormAssociated as F, keyArrowLeft as a, keyArrowRight as b, keyEnter as c, keyHome as d, keyEnd as e, keyArrowUp as f, keyArrowDown as g, keyEscape as h, keySpace as k };
package/shared/icon.js CHANGED
@@ -1333,7 +1333,7 @@ const PLACEHOLDER_ICON = `<svg width="80%" height="80%" viewBox="0 0 64 64">
1333
1333
  </svg>`;
1334
1334
 
1335
1335
  const BASE_URL = 'https://icon.resources.vonage.com';
1336
- const ICON_SET_VERSION = '4.0.28';
1336
+ const ICON_SET_VERSION = '4.0.29';
1337
1337
  const PLACEHOLDER_DELAY = 500;
1338
1338
  const PLACEHOLDER_TIMEOUT = 2000;
1339
1339