@vonage/vivid 3.0.0-next.20 → 3.0.0-next.23
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.
- package/README.md +2 -2
- package/accordion-item/index.js +13 -5
- package/action-group/index.js +19 -4
- package/badge/index.js +4 -1
- package/banner/index.js +10 -9
- package/breadcrumb/index.js +1 -0
- package/breadcrumb-item/index.js +14 -4
- package/button/index.js +8 -3
- package/calendar/index.js +33 -9
- package/calendar-event/index.js +117 -0
- package/card/index.js +12 -17
- package/fab/index.js +8 -3
- package/focus/index.js +1 -1
- package/icon/index.js +3 -1
- package/index.js +15 -9
- package/lib/accordion-item/index.d.ts +2 -0
- package/lib/action-group/action-group.d.ts +1 -0
- package/lib/banner/banner.template.d.ts +0 -2
- package/lib/banner/index.d.ts +1 -0
- package/lib/breadcrumb-item/index.d.ts +1 -0
- package/lib/calendar/calendar.d.ts +3 -1
- package/lib/calendar/index.d.ts +0 -1
- package/lib/calendar-event/calendar-event.d.ts +14 -0
- package/lib/calendar-event/calendar-event.template.d.ts +4 -0
- package/lib/calendar-event/index.d.ts +2 -0
- package/lib/card/index.d.ts +0 -1
- package/lib/components.d.ts +1 -0
- package/lib/side-drawer/side-drawer.d.ts +8 -1
- package/lib/sidenav-item/index.d.ts +1 -0
- package/lib/text-field/text-field.d.ts +1 -0
- package/note/index.js +4 -1
- package/package.json +6 -2
- package/popup/index.js +10 -5
- package/progress/index.js +31 -23
- package/shared/aria-global.js +3 -40
- package/shared/button.js +1 -1
- package/shared/calendar-event.js +26 -0
- package/shared/es.object.assign.js +2 -2
- package/shared/{object-set-prototype-of.js → export.js} +472 -530
- package/shared/focus2.js +2 -459
- package/shared/form-associated.js +460 -0
- package/shared/icon.js +23 -69
- package/shared/iterators.js +61 -0
- package/shared/object-keys.js +13 -0
- package/shared/ref.js +41 -0
- package/shared/text-anchor.template.js +5 -2
- package/shared/to-string.js +51 -0
- package/shared/web.dom-collections.iterator.js +5 -13
- package/side-drawer/index.js +8588 -10
- package/sidenav-item/index.js +10 -6
- package/text/index.js +3 -1
- package/text-anchor/index.js +7 -1
- package/text-field/index.js +14 -5
- package/tooltip/index.js +7 -2
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { i as isCallable$1, f as functionUncurryThis, j as anObject$1, o as objectDefineProperty, w as wellKnownSymbol$1, p as hasOwnProperty_1, a as getBuiltIn$1 } from './export.js';
|
|
2
|
+
|
|
3
|
+
var isCallable = isCallable$1;
|
|
4
|
+
|
|
5
|
+
var $String = String;
|
|
6
|
+
var $TypeError = TypeError;
|
|
7
|
+
|
|
8
|
+
var aPossiblePrototype$1 = function (argument) {
|
|
9
|
+
if (typeof argument == 'object' || isCallable(argument)) return argument;
|
|
10
|
+
throw $TypeError("Can't set " + $String(argument) + ' as a prototype');
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
/* eslint-disable no-proto -- safe */
|
|
14
|
+
|
|
15
|
+
var uncurryThis = functionUncurryThis;
|
|
16
|
+
var anObject = anObject$1;
|
|
17
|
+
var aPossiblePrototype = aPossiblePrototype$1;
|
|
18
|
+
|
|
19
|
+
// `Object.setPrototypeOf` method
|
|
20
|
+
// https://tc39.es/ecma262/#sec-object.setprototypeof
|
|
21
|
+
// Works with __proto__ only. Old v8 can't work with null proto objects.
|
|
22
|
+
// eslint-disable-next-line es-x/no-object-setprototypeof -- safe
|
|
23
|
+
var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () {
|
|
24
|
+
var CORRECT_SETTER = false;
|
|
25
|
+
var test = {};
|
|
26
|
+
var setter;
|
|
27
|
+
try {
|
|
28
|
+
// eslint-disable-next-line es-x/no-object-getownpropertydescriptor -- safe
|
|
29
|
+
setter = uncurryThis(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
|
|
30
|
+
setter(test, []);
|
|
31
|
+
CORRECT_SETTER = test instanceof Array;
|
|
32
|
+
} catch (error) { /* empty */ }
|
|
33
|
+
return function setPrototypeOf(O, proto) {
|
|
34
|
+
anObject(O);
|
|
35
|
+
aPossiblePrototype(proto);
|
|
36
|
+
if (CORRECT_SETTER) setter(O, proto);
|
|
37
|
+
else O.__proto__ = proto;
|
|
38
|
+
return O;
|
|
39
|
+
};
|
|
40
|
+
}() : undefined);
|
|
41
|
+
|
|
42
|
+
var defineProperty = objectDefineProperty.f;
|
|
43
|
+
var hasOwn = hasOwnProperty_1;
|
|
44
|
+
var wellKnownSymbol = wellKnownSymbol$1;
|
|
45
|
+
|
|
46
|
+
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
47
|
+
|
|
48
|
+
var setToStringTag = function (target, TAG, STATIC) {
|
|
49
|
+
if (target && !STATIC) target = target.prototype;
|
|
50
|
+
if (target && !hasOwn(target, TO_STRING_TAG)) {
|
|
51
|
+
defineProperty(target, TO_STRING_TAG, { configurable: true, value: TAG });
|
|
52
|
+
}
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
var getBuiltIn = getBuiltIn$1;
|
|
56
|
+
|
|
57
|
+
var html = getBuiltIn('document', 'documentElement');
|
|
58
|
+
|
|
59
|
+
var iterators = {};
|
|
60
|
+
|
|
61
|
+
export { html as h, iterators as i, objectSetPrototypeOf as o, setToStringTag as s };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { L as objectKeysInternal, H as enumBugKeys$1 } from './export.js';
|
|
2
|
+
|
|
3
|
+
var internalObjectKeys = objectKeysInternal;
|
|
4
|
+
var enumBugKeys = enumBugKeys$1;
|
|
5
|
+
|
|
6
|
+
// `Object.keys` method
|
|
7
|
+
// https://tc39.es/ecma262/#sec-object.keys
|
|
8
|
+
// eslint-disable-next-line es-x/no-object-keys -- safe
|
|
9
|
+
var objectKeys = Object.keys || function keys(O) {
|
|
10
|
+
return internalObjectKeys(O, enumBugKeys);
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export { objectKeys as o };
|
package/shared/ref.js
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { A as AttachedBehaviorHTMLDirective } from './index.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* The runtime behavior for template references.
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
class RefBehavior {
|
|
8
|
+
/**
|
|
9
|
+
* Creates an instance of RefBehavior.
|
|
10
|
+
* @param target - The element to reference.
|
|
11
|
+
* @param propertyName - The name of the property to assign the reference to.
|
|
12
|
+
*/
|
|
13
|
+
constructor(target, propertyName) {
|
|
14
|
+
this.target = target;
|
|
15
|
+
this.propertyName = propertyName;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Bind this behavior to the source.
|
|
19
|
+
* @param source - The source to bind to.
|
|
20
|
+
* @param context - The execution context that the binding is operating within.
|
|
21
|
+
*/
|
|
22
|
+
bind(source) {
|
|
23
|
+
source[this.propertyName] = this.target;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Unbinds this behavior from the source.
|
|
27
|
+
* @param source - The source to unbind from.
|
|
28
|
+
*/
|
|
29
|
+
/* eslint-disable-next-line @typescript-eslint/no-empty-function */
|
|
30
|
+
unbind() { }
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* A directive that observes the updates a property with a reference to the element.
|
|
34
|
+
* @param propertyName - The name of the property to assign the reference to.
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
function ref(propertyName) {
|
|
38
|
+
return new AttachedBehaviorHTMLDirective("fast-ref", RefBehavior, propertyName);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export { ref as r };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { a as affixIconTemplateFactory } from './affix.js';
|
|
2
|
+
import { f as focusTemplateFactory } from './focus2.js';
|
|
2
3
|
import { h as html } from './index.js';
|
|
3
|
-
import { r as ref } from './
|
|
4
|
+
import { r as ref } from './ref.js';
|
|
4
5
|
import { c as classNames } from './class-names.js';
|
|
5
6
|
|
|
6
7
|
let _ = t => t,
|
|
@@ -13,6 +14,7 @@ const getClasses = ({
|
|
|
13
14
|
|
|
14
15
|
const textAnchorTemplate = context => {
|
|
15
16
|
const affixIconTemplate = affixIconTemplateFactory(context);
|
|
17
|
+
const focusTemplate = focusTemplateFactory(context);
|
|
16
18
|
return html(_t || (_t = _`<a
|
|
17
19
|
class="${0}"
|
|
18
20
|
download="${0}"
|
|
@@ -47,8 +49,9 @@ const textAnchorTemplate = context => {
|
|
|
47
49
|
>
|
|
48
50
|
${0}
|
|
49
51
|
${0}
|
|
52
|
+
${0}
|
|
50
53
|
</a>
|
|
51
|
-
`), getClasses, x => x.download, x => x.href, x => x.hreflang, x => x.ping, x => x.referrerpolicy, x => x.rel, x => x.target, x => x.type, x => x.ariaAtomic, x => x.ariaBusy, x => x.ariaControls, x => x.ariaCurrent, x => x.ariaDescribedby, x => x.ariaDetails, x => x.ariaDisabled, x => x.ariaErrormessage, x => x.ariaExpanded, x => x.ariaFlowto, x => x.ariaHaspopup, x => x.ariaHidden, x => x.ariaInvalid, x => x.ariaKeyshortcuts, x => x.ariaLabel, x => x.ariaLabelledby, x => x.ariaLive, x => x.ariaOwns, x => x.ariaRelevant, x => x.ariaRoledescription, ref('control'), x => affixIconTemplate(x.icon), x => x.text);
|
|
54
|
+
`), getClasses, x => x.download, x => x.href, x => x.hreflang, x => x.ping, x => x.referrerpolicy, x => x.rel, x => x.target, x => x.type, x => x.ariaAtomic, x => x.ariaBusy, x => x.ariaControls, x => x.ariaCurrent, x => x.ariaDescribedby, x => x.ariaDetails, x => x.ariaDisabled, x => x.ariaErrormessage, x => x.ariaExpanded, x => x.ariaFlowto, x => x.ariaHaspopup, x => x.ariaHidden, x => x.ariaInvalid, x => x.ariaKeyshortcuts, x => x.ariaLabel, x => x.ariaLabelledby, x => x.ariaLive, x => x.ariaOwns, x => x.ariaRelevant, x => x.ariaRoledescription, ref('control'), () => focusTemplate, x => affixIconTemplate(x.icon), x => x.text);
|
|
52
55
|
};
|
|
53
56
|
|
|
54
57
|
export { textAnchorTemplate as t };
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { w as wellKnownSymbol$2, c as classofRaw$1, i as isCallable$1 } from './export.js';
|
|
2
|
+
|
|
3
|
+
var wellKnownSymbol$1 = wellKnownSymbol$2;
|
|
4
|
+
|
|
5
|
+
var TO_STRING_TAG$1 = wellKnownSymbol$1('toStringTag');
|
|
6
|
+
var test = {};
|
|
7
|
+
|
|
8
|
+
test[TO_STRING_TAG$1] = 'z';
|
|
9
|
+
|
|
10
|
+
var toStringTagSupport = String(test) === '[object z]';
|
|
11
|
+
|
|
12
|
+
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
13
|
+
var isCallable = isCallable$1;
|
|
14
|
+
var classofRaw = classofRaw$1;
|
|
15
|
+
var wellKnownSymbol = wellKnownSymbol$2;
|
|
16
|
+
|
|
17
|
+
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
18
|
+
var $Object = Object;
|
|
19
|
+
|
|
20
|
+
// ES3 wrong here
|
|
21
|
+
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
|
|
22
|
+
|
|
23
|
+
// fallback for IE11 Script Access Denied error
|
|
24
|
+
var tryGet = function (it, key) {
|
|
25
|
+
try {
|
|
26
|
+
return it[key];
|
|
27
|
+
} catch (error) { /* empty */ }
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
// getting tag from ES6+ `Object.prototype.toString`
|
|
31
|
+
var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
32
|
+
var O, tag, result;
|
|
33
|
+
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
34
|
+
// @@toStringTag case
|
|
35
|
+
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
36
|
+
// builtinTag case
|
|
37
|
+
: CORRECT_ARGUMENTS ? classofRaw(O)
|
|
38
|
+
// ES3 arguments fallback
|
|
39
|
+
: (result = classofRaw(O)) == 'Object' && isCallable(O.callee) ? 'Arguments' : result;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
var classof = classof$1;
|
|
43
|
+
|
|
44
|
+
var $String = String;
|
|
45
|
+
|
|
46
|
+
var toString = function (argument) {
|
|
47
|
+
if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
48
|
+
return $String(argument);
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
export { classof$1 as c, toString as t };
|
|
@@ -1,17 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { d as descriptors, D as v8PrototypeDefineBug, o as objectDefineProperty, j as anObject$2, E as toIndexedObject$2, F as hiddenKeys$1, G as sharedKey$2, H as enumBugKeys$1, n as documentCreateElement$2, w as wellKnownSymbol$4, e as fails$2, p as hasOwnProperty_1, i as isCallable$3, I as toObject$1, u as defineBuiltIn$2, J as createPropertyDescriptor$1, _ as _export, K as createNonEnumerableProperty$2, v as functionCall, C as functionName, y as internalState, g as global$1 } from './export.js';
|
|
2
|
+
import { o as objectKeys$1 } from './object-keys.js';
|
|
3
|
+
import { h as html$1, s as setToStringTag$2, i as iterators, o as objectSetPrototypeOf } from './iterators.js';
|
|
2
4
|
|
|
3
5
|
var objectDefineProperties = {};
|
|
4
6
|
|
|
5
|
-
var internalObjectKeys = objectKeysInternal;
|
|
6
|
-
var enumBugKeys$1 = enumBugKeys$2;
|
|
7
|
-
|
|
8
|
-
// `Object.keys` method
|
|
9
|
-
// https://tc39.es/ecma262/#sec-object.keys
|
|
10
|
-
// eslint-disable-next-line es-x/no-object-keys -- safe
|
|
11
|
-
var objectKeys$1 = Object.keys || function keys(O) {
|
|
12
|
-
return internalObjectKeys(O, enumBugKeys$1);
|
|
13
|
-
};
|
|
14
|
-
|
|
15
7
|
var DESCRIPTORS$1 = descriptors;
|
|
16
8
|
var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
|
|
17
9
|
var definePropertyModule = objectDefineProperty;
|
|
@@ -37,7 +29,7 @@ objectDefineProperties.f = DESCRIPTORS$1 && !V8_PROTOTYPE_DEFINE_BUG ? Object.de
|
|
|
37
29
|
|
|
38
30
|
var anObject = anObject$2;
|
|
39
31
|
var definePropertiesModule = objectDefineProperties;
|
|
40
|
-
var enumBugKeys = enumBugKeys$
|
|
32
|
+
var enumBugKeys = enumBugKeys$1;
|
|
41
33
|
var hiddenKeys = hiddenKeys$1;
|
|
42
34
|
var html = html$1;
|
|
43
35
|
var documentCreateElement$1 = documentCreateElement$2;
|
|
@@ -471,4 +463,4 @@ for (var COLLECTION_NAME in DOMIterables) {
|
|
|
471
463
|
|
|
472
464
|
handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
|
|
473
465
|
|
|
474
|
-
export { objectCreate as
|
|
466
|
+
export { objectCreate as o };
|