@vonage/vivid 3.0.0-next.20 → 3.0.0-next.21
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/accordion-item/index.js +3 -0
- package/badge/index.js +3 -0
- package/banner/index.js +3 -0
- package/breadcrumb-item/index.js +3 -0
- package/button/index.js +3 -0
- package/calendar/index.js +2 -0
- package/calendar-event/index.js +130 -0
- package/card/index.js +3 -0
- package/fab/index.js +3 -0
- package/icon/index.js +2 -0
- package/index.js +4 -0
- package/lib/calendar-event/calendar-event.d.ts +12 -0
- package/lib/calendar-event/calendar-event.template.d.ts +4 -0
- package/lib/calendar-event/index.d.ts +2 -0
- package/lib/components.d.ts +1 -0
- package/lib/text-field/text-field.d.ts +1 -0
- package/note/index.js +3 -0
- package/package.json +2 -1
- package/popup/index.js +6 -3
- package/progress/index.js +3 -1
- package/shared/es.object.assign.js +2 -2
- package/shared/export.js +972 -0
- package/shared/icon.js +23 -69
- package/shared/object-keys.js +13 -0
- package/shared/object-set-prototype-of.js +7 -976
- package/shared/to-string.js +51 -0
- package/shared/web.dom-collections.iterator.js +5 -13
- package/side-drawer/index.js +2 -0
- package/sidenav-item/index.js +3 -0
- package/text/index.js +2 -0
- package/text-anchor/index.js +3 -0
- package/text-field/index.js +9 -2
- package/tooltip/index.js +3 -0
package/shared/icon.js
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { r as classofRaw, q as global$8, w as wellKnownSymbol$6, u as getBuiltIn$5, o as objectDefineProperty, d as descriptors, x as objectIsPrototypeOf, y as functionUncurryThis, f as fails$4, i as isCallable$6, z as inspectSource$2, A as tryToString$3, a as anObject$5, B as functionBindNative, C as aCallable$6, D as engineUserAgent, b as documentCreateElement, c as hasOwnProperty_1, E as objectGetOwnPropertyDescriptor, F as isForced_1, G as engineV8Version, _ as _export, j as defineBuiltIn$3, m as functionCall, H as isObject$2, p as internalState, I as getMethod$2, J as lengthOfArrayLike$1, K as requireObjectCoercible$1, n as functionName } from './export.js';
|
|
2
|
+
import { h as html$1, o as objectSetPrototypeOf, s as setToStringTag$1, i as iterators } from './object-set-prototype-of.js';
|
|
3
|
+
import { c as classof$3, t as toString$1 } from './to-string.js';
|
|
2
4
|
import { F as FoundationElement, _ as __decorate, a as attr, b as __metadata, o as observable } from './index.js';
|
|
3
5
|
import { _ as _curry1, a as _curry2, b as _has } from './_has.js';
|
|
4
6
|
|
|
5
|
-
var classof$
|
|
7
|
+
var classof$2 = classofRaw;
|
|
6
8
|
var global$7 = global$8;
|
|
7
9
|
|
|
8
|
-
var engineIsNode = classof$
|
|
10
|
+
var engineIsNode = classof$2(global$7.process) == 'process';
|
|
9
11
|
|
|
10
12
|
var getBuiltIn$4 = getBuiltIn$5;
|
|
11
13
|
var definePropertyModule = objectDefineProperty;
|
|
12
|
-
var wellKnownSymbol$
|
|
14
|
+
var wellKnownSymbol$5 = wellKnownSymbol$6;
|
|
13
15
|
var DESCRIPTORS = descriptors;
|
|
14
16
|
|
|
15
|
-
var SPECIES$2 = wellKnownSymbol$
|
|
17
|
+
var SPECIES$2 = wellKnownSymbol$5('species');
|
|
16
18
|
|
|
17
19
|
var setSpecies$1 = function (CONSTRUCTOR_NAME) {
|
|
18
20
|
var Constructor = getBuiltIn$4(CONSTRUCTOR_NAME);
|
|
@@ -35,49 +37,10 @@ var anInstance$1 = function (it, Prototype) {
|
|
|
35
37
|
throw $TypeError$4('Incorrect invocation');
|
|
36
38
|
};
|
|
37
39
|
|
|
38
|
-
var wellKnownSymbol$6 = wellKnownSymbol$8;
|
|
39
|
-
|
|
40
|
-
var TO_STRING_TAG$1 = wellKnownSymbol$6('toStringTag');
|
|
41
|
-
var test = {};
|
|
42
|
-
|
|
43
|
-
test[TO_STRING_TAG$1] = 'z';
|
|
44
|
-
|
|
45
|
-
var toStringTagSupport = String(test) === '[object z]';
|
|
46
|
-
|
|
47
|
-
var TO_STRING_TAG_SUPPORT = toStringTagSupport;
|
|
48
|
-
var isCallable$6 = isCallable$7;
|
|
49
|
-
var classofRaw = classofRaw$1;
|
|
50
|
-
var wellKnownSymbol$5 = wellKnownSymbol$8;
|
|
51
|
-
|
|
52
|
-
var TO_STRING_TAG = wellKnownSymbol$5('toStringTag');
|
|
53
|
-
var $Object = Object;
|
|
54
|
-
|
|
55
|
-
// ES3 wrong here
|
|
56
|
-
var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
|
|
57
|
-
|
|
58
|
-
// fallback for IE11 Script Access Denied error
|
|
59
|
-
var tryGet = function (it, key) {
|
|
60
|
-
try {
|
|
61
|
-
return it[key];
|
|
62
|
-
} catch (error) { /* empty */ }
|
|
63
|
-
};
|
|
64
|
-
|
|
65
|
-
// getting tag from ES6+ `Object.prototype.toString`
|
|
66
|
-
var classof$3 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
|
|
67
|
-
var O, tag, result;
|
|
68
|
-
return it === undefined ? 'Undefined' : it === null ? 'Null'
|
|
69
|
-
// @@toStringTag case
|
|
70
|
-
: typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
|
|
71
|
-
// builtinTag case
|
|
72
|
-
: CORRECT_ARGUMENTS ? classofRaw(O)
|
|
73
|
-
// ES3 arguments fallback
|
|
74
|
-
: (result = classofRaw(O)) == 'Object' && isCallable$6(O.callee) ? 'Arguments' : result;
|
|
75
|
-
};
|
|
76
|
-
|
|
77
40
|
var uncurryThis$3 = functionUncurryThis;
|
|
78
41
|
var fails$3 = fails$4;
|
|
79
|
-
var isCallable$5 = isCallable$
|
|
80
|
-
var classof$
|
|
42
|
+
var isCallable$5 = isCallable$6;
|
|
43
|
+
var classof$1 = classof$3;
|
|
81
44
|
var getBuiltIn$3 = getBuiltIn$5;
|
|
82
45
|
var inspectSource$1 = inspectSource$2;
|
|
83
46
|
|
|
@@ -100,7 +63,7 @@ var isConstructorModern = function isConstructor(argument) {
|
|
|
100
63
|
|
|
101
64
|
var isConstructorLegacy = function isConstructor(argument) {
|
|
102
65
|
if (!isCallable$5(argument)) return false;
|
|
103
|
-
switch (classof$
|
|
66
|
+
switch (classof$1(argument)) {
|
|
104
67
|
case 'AsyncFunction':
|
|
105
68
|
case 'GeneratorFunction':
|
|
106
69
|
case 'AsyncGeneratorFunction': return false;
|
|
@@ -140,7 +103,7 @@ var aConstructor$1 = function (argument) {
|
|
|
140
103
|
|
|
141
104
|
var anObject$4 = anObject$5;
|
|
142
105
|
var aConstructor = aConstructor$1;
|
|
143
|
-
var wellKnownSymbol$4 = wellKnownSymbol$
|
|
106
|
+
var wellKnownSymbol$4 = wellKnownSymbol$6;
|
|
144
107
|
|
|
145
108
|
var SPECIES$1 = wellKnownSymbol$4('species');
|
|
146
109
|
|
|
@@ -195,7 +158,7 @@ var engineIsIos = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent$2);
|
|
|
195
158
|
var global$6 = global$8;
|
|
196
159
|
var apply = functionApply;
|
|
197
160
|
var bind$3 = functionBindContext;
|
|
198
|
-
var isCallable$4 = isCallable$
|
|
161
|
+
var isCallable$4 = isCallable$6;
|
|
199
162
|
var hasOwn = hasOwnProperty_1;
|
|
200
163
|
var fails$2 = fails$4;
|
|
201
164
|
var html = html$1;
|
|
@@ -453,10 +416,10 @@ var engineIsBrowser = typeof window == 'object' && typeof Deno != 'object';
|
|
|
453
416
|
|
|
454
417
|
var global$1 = global$8;
|
|
455
418
|
var NativePromiseConstructor$4 = promiseNativeConstructor;
|
|
456
|
-
var isCallable$3 = isCallable$
|
|
419
|
+
var isCallable$3 = isCallable$6;
|
|
457
420
|
var isForced = isForced_1;
|
|
458
421
|
var inspectSource = inspectSource$2;
|
|
459
|
-
var wellKnownSymbol$3 = wellKnownSymbol$
|
|
422
|
+
var wellKnownSymbol$3 = wellKnownSymbol$6;
|
|
460
423
|
var IS_BROWSER = engineIsBrowser;
|
|
461
424
|
var V8_VERSION = engineV8Version;
|
|
462
425
|
|
|
@@ -525,7 +488,7 @@ var setPrototypeOf = objectSetPrototypeOf;
|
|
|
525
488
|
var setToStringTag = setToStringTag$1;
|
|
526
489
|
var setSpecies = setSpecies$1;
|
|
527
490
|
var aCallable$3 = aCallable$6;
|
|
528
|
-
var isCallable$2 = isCallable$
|
|
491
|
+
var isCallable$2 = isCallable$6;
|
|
529
492
|
var isObject$1 = isObject$2;
|
|
530
493
|
var anInstance = anInstance$1;
|
|
531
494
|
var speciesConstructor$1 = speciesConstructor$2;
|
|
@@ -803,7 +766,7 @@ $$7({ global: true, constructor: true, wrap: true, forced: FORCED_PROMISE_CONSTR
|
|
|
803
766
|
setToStringTag(PromiseConstructor, PROMISE, false);
|
|
804
767
|
setSpecies(PROMISE);
|
|
805
768
|
|
|
806
|
-
var wellKnownSymbol$2 = wellKnownSymbol$
|
|
769
|
+
var wellKnownSymbol$2 = wellKnownSymbol$6;
|
|
807
770
|
var Iterators$1 = iterators;
|
|
808
771
|
|
|
809
772
|
var ITERATOR$2 = wellKnownSymbol$2('iterator');
|
|
@@ -814,17 +777,17 @@ var isArrayIteratorMethod$1 = function (it) {
|
|
|
814
777
|
return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$2] === it);
|
|
815
778
|
};
|
|
816
779
|
|
|
817
|
-
var classof
|
|
780
|
+
var classof = classof$3;
|
|
818
781
|
var getMethod$1 = getMethod$2;
|
|
819
782
|
var Iterators = iterators;
|
|
820
|
-
var wellKnownSymbol$1 = wellKnownSymbol$
|
|
783
|
+
var wellKnownSymbol$1 = wellKnownSymbol$6;
|
|
821
784
|
|
|
822
785
|
var ITERATOR$1 = wellKnownSymbol$1('iterator');
|
|
823
786
|
|
|
824
787
|
var getIteratorMethod$2 = function (it) {
|
|
825
788
|
if (it != undefined) return getMethod$1(it, ITERATOR$1)
|
|
826
789
|
|| getMethod$1(it, '@@iterator')
|
|
827
|
-
|| Iterators[classof
|
|
790
|
+
|| Iterators[classof(it)];
|
|
828
791
|
};
|
|
829
792
|
|
|
830
793
|
var call$5 = functionCall;
|
|
@@ -931,7 +894,7 @@ var iterate$2 = function (iterable, unboundFunction, options) {
|
|
|
931
894
|
} return new Result(false);
|
|
932
895
|
};
|
|
933
896
|
|
|
934
|
-
var wellKnownSymbol = wellKnownSymbol$
|
|
897
|
+
var wellKnownSymbol = wellKnownSymbol$6;
|
|
935
898
|
|
|
936
899
|
var ITERATOR = wellKnownSymbol('iterator');
|
|
937
900
|
var SAFE_CLOSING = false;
|
|
@@ -1021,7 +984,7 @@ var $$5 = _export;
|
|
|
1021
984
|
var FORCED_PROMISE_CONSTRUCTOR$2 = promiseConstructorDetection.CONSTRUCTOR;
|
|
1022
985
|
var NativePromiseConstructor$1 = promiseNativeConstructor;
|
|
1023
986
|
var getBuiltIn$2 = getBuiltIn$5;
|
|
1024
|
-
var isCallable$1 = isCallable$
|
|
987
|
+
var isCallable$1 = isCallable$6;
|
|
1025
988
|
var defineBuiltIn$1 = defineBuiltIn$3;
|
|
1026
989
|
|
|
1027
990
|
var NativePromisePrototype$1 = NativePromiseConstructor$1 && NativePromiseConstructor$1.prototype;
|
|
@@ -1111,15 +1074,6 @@ $$2({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
|
|
|
1111
1074
|
}
|
|
1112
1075
|
});
|
|
1113
1076
|
|
|
1114
|
-
var classof = classof$3;
|
|
1115
|
-
|
|
1116
|
-
var $String = String;
|
|
1117
|
-
|
|
1118
|
-
var toString$1 = function (argument) {
|
|
1119
|
-
if (classof(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
|
|
1120
|
-
return $String(argument);
|
|
1121
|
-
};
|
|
1122
|
-
|
|
1123
1077
|
// a string of all valid unicode whitespaces
|
|
1124
1078
|
var whitespaces$2 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
|
|
1125
1079
|
'\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
|
|
@@ -1188,7 +1142,7 @@ var $ = _export;
|
|
|
1188
1142
|
var NativePromiseConstructor = promiseNativeConstructor;
|
|
1189
1143
|
var fails = fails$4;
|
|
1190
1144
|
var getBuiltIn = getBuiltIn$5;
|
|
1191
|
-
var isCallable = isCallable$
|
|
1145
|
+
var isCallable = isCallable$6;
|
|
1192
1146
|
var speciesConstructor = speciesConstructor$2;
|
|
1193
1147
|
var promiseResolve = promiseResolve$2;
|
|
1194
1148
|
var defineBuiltIn = defineBuiltIn$3;
|
|
@@ -1432,4 +1386,4 @@ __decorate([observable, __metadata("design:type", String)], Icon.prototype, "svg
|
|
|
1432
1386
|
|
|
1433
1387
|
__decorate([attr, __metadata("design:type", String)], Icon.prototype, "type", void 0);
|
|
1434
1388
|
|
|
1435
|
-
export { Icon as I, functionApply as f, speciesConstructor$2 as s
|
|
1389
|
+
export { Icon as I, functionApply as f, speciesConstructor$2 as s };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { L as objectKeysInternal, e 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 };
|