@bolttech/atoms-segmented-control 0.1.11 → 0.2.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.
- package/index.cjs +20 -25
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -96,7 +96,7 @@ var check = function (it) {
|
|
|
96
96
|
};
|
|
97
97
|
|
|
98
98
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
99
|
-
var global$
|
|
99
|
+
var global$b =
|
|
100
100
|
// eslint-disable-next-line es/no-global-this -- safe
|
|
101
101
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
102
102
|
check(typeof window == 'object' && window) ||
|
|
@@ -104,28 +104,28 @@ var global$c =
|
|
|
104
104
|
check(typeof self == 'object' && self) ||
|
|
105
105
|
check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
|
|
106
106
|
// eslint-disable-next-line no-new-func -- fallback
|
|
107
|
-
(function () { return this; })() ||
|
|
107
|
+
(function () { return this; })() || Function('return this')();
|
|
108
108
|
|
|
109
109
|
var shared$3 = {exports: {}};
|
|
110
110
|
|
|
111
|
-
var global$
|
|
111
|
+
var global$a = global$b;
|
|
112
112
|
|
|
113
113
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
114
114
|
var defineProperty$5 = Object.defineProperty;
|
|
115
115
|
|
|
116
116
|
var defineGlobalProperty$3 = function (key, value) {
|
|
117
117
|
try {
|
|
118
|
-
defineProperty$5(global$
|
|
118
|
+
defineProperty$5(global$a, key, { value: value, configurable: true, writable: true });
|
|
119
119
|
} catch (error) {
|
|
120
|
-
global$
|
|
120
|
+
global$a[key] = value;
|
|
121
121
|
} return value;
|
|
122
122
|
};
|
|
123
123
|
|
|
124
|
-
var global$
|
|
124
|
+
var global$9 = global$b;
|
|
125
125
|
var defineGlobalProperty$2 = defineGlobalProperty$3;
|
|
126
126
|
|
|
127
127
|
var SHARED = '__core-js_shared__';
|
|
128
|
-
var store$3 = global$
|
|
128
|
+
var store$3 = global$9[SHARED] || defineGlobalProperty$2(SHARED, {});
|
|
129
129
|
|
|
130
130
|
var sharedStore = store$3;
|
|
131
131
|
|
|
@@ -134,10 +134,10 @@ var store$2 = sharedStore;
|
|
|
134
134
|
(shared$3.exports = function (key, value) {
|
|
135
135
|
return store$2[key] || (store$2[key] = value !== undefined ? value : {});
|
|
136
136
|
})('versions', []).push({
|
|
137
|
-
version: '3.
|
|
137
|
+
version: '3.29.1',
|
|
138
138
|
mode: 'global',
|
|
139
139
|
copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
|
|
140
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
140
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.29.1/LICENSE',
|
|
141
141
|
source: 'https://github.com/zloirock/core-js'
|
|
142
142
|
});
|
|
143
143
|
|
|
@@ -175,11 +175,11 @@ var uid$2 = function (key) {
|
|
|
175
175
|
|
|
176
176
|
var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
|
177
177
|
|
|
178
|
-
var global$
|
|
178
|
+
var global$8 = global$b;
|
|
179
179
|
var userAgent = engineUserAgent;
|
|
180
180
|
|
|
181
|
-
var process = global$
|
|
182
|
-
var Deno = global$
|
|
181
|
+
var process = global$8.process;
|
|
182
|
+
var Deno = global$8.Deno;
|
|
183
183
|
var versions = process && process.versions || Deno && Deno.version;
|
|
184
184
|
var v8 = versions && versions.v8;
|
|
185
185
|
var match, version;
|
|
@@ -207,18 +207,13 @@ var engineV8Version = version;
|
|
|
207
207
|
|
|
208
208
|
var V8_VERSION = engineV8Version;
|
|
209
209
|
var fails$8 = fails$b;
|
|
210
|
-
var global$8 = global$c;
|
|
211
|
-
|
|
212
|
-
var $String$4 = global$8.String;
|
|
213
210
|
|
|
214
211
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
215
212
|
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$8(function () {
|
|
216
213
|
var symbol = Symbol();
|
|
217
214
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
218
215
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
219
|
-
|
|
220
|
-
// of course, fail.
|
|
221
|
-
return !$String$4(symbol) || !(Object(symbol) instanceof Symbol) ||
|
|
216
|
+
return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
|
222
217
|
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
|
223
218
|
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
|
224
219
|
});
|
|
@@ -231,7 +226,7 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
|
|
|
231
226
|
&& !Symbol.sham
|
|
232
227
|
&& typeof Symbol.iterator == 'symbol';
|
|
233
228
|
|
|
234
|
-
var global$7 = global$
|
|
229
|
+
var global$7 = global$b;
|
|
235
230
|
var shared$2 = shared$3.exports;
|
|
236
231
|
var hasOwn$8 = hasOwnProperty_1;
|
|
237
232
|
var uid$1 = uid$2;
|
|
@@ -320,7 +315,7 @@ var v8PrototypeDefineBug = DESCRIPTORS$9 && fails$6(function () {
|
|
|
320
315
|
|
|
321
316
|
var objectDefineProperty = {};
|
|
322
317
|
|
|
323
|
-
var global$6 = global$
|
|
318
|
+
var global$6 = global$b;
|
|
324
319
|
var isObject$4 = isObject$6;
|
|
325
320
|
|
|
326
321
|
var document$1 = global$6.document;
|
|
@@ -351,7 +346,7 @@ var functionCall = NATIVE_BIND ? call$5.bind(call$5) : function () {
|
|
|
351
346
|
return call$5.apply(call$5, arguments);
|
|
352
347
|
};
|
|
353
348
|
|
|
354
|
-
var global$5 = global$
|
|
349
|
+
var global$5 = global$b;
|
|
355
350
|
var isCallable$c = isCallable$e;
|
|
356
351
|
|
|
357
352
|
var aFunction = function (argument) {
|
|
@@ -778,7 +773,7 @@ var addToUnscopables$1 = function (key) {
|
|
|
778
773
|
|
|
779
774
|
var iterators = {};
|
|
780
775
|
|
|
781
|
-
var global$4 = global$
|
|
776
|
+
var global$4 = global$b;
|
|
782
777
|
var isCallable$8 = isCallable$e;
|
|
783
778
|
|
|
784
779
|
var WeakMap$1 = global$4.WeakMap;
|
|
@@ -806,7 +801,7 @@ var createNonEnumerableProperty$4 = DESCRIPTORS$5 ? function (object, key, value
|
|
|
806
801
|
};
|
|
807
802
|
|
|
808
803
|
var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
|
809
|
-
var global$3 = global$
|
|
804
|
+
var global$3 = global$b;
|
|
810
805
|
var isObject$1 = isObject$6;
|
|
811
806
|
var createNonEnumerableProperty$3 = createNonEnumerableProperty$4;
|
|
812
807
|
var hasOwn$6 = hasOwnProperty_1;
|
|
@@ -1109,7 +1104,7 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
|
|
|
1109
1104
|
|
|
1110
1105
|
var isForced_1 = isForced$1;
|
|
1111
1106
|
|
|
1112
|
-
var global$2 = global$
|
|
1107
|
+
var global$2 = global$b;
|
|
1113
1108
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
1114
1109
|
var createNonEnumerableProperty$2 = createNonEnumerableProperty$4;
|
|
1115
1110
|
var defineBuiltIn$2 = defineBuiltIn$3;
|
|
@@ -1526,7 +1521,7 @@ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.co
|
|
|
1526
1521
|
|
|
1527
1522
|
var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
|
|
1528
1523
|
|
|
1529
|
-
var global$1 = global$
|
|
1524
|
+
var global$1 = global$b;
|
|
1530
1525
|
var DOMIterables = domIterables;
|
|
1531
1526
|
var DOMTokenListPrototype = domTokenListPrototype;
|
|
1532
1527
|
var ArrayIteratorMethods = es_array_iterator;
|