@bolttech/atoms-checkbox 0.1.10 → 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 +17 -22
- package/package.json +1 -1
package/index.cjs
CHANGED
|
@@ -16,7 +16,7 @@ var check = function (it) {
|
|
|
16
16
|
};
|
|
17
17
|
|
|
18
18
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
19
|
-
var global$
|
|
19
|
+
var global$a =
|
|
20
20
|
// eslint-disable-next-line es/no-global-this -- safe
|
|
21
21
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
22
22
|
check(typeof window == 'object' && window) ||
|
|
@@ -24,7 +24,7 @@ var global$b =
|
|
|
24
24
|
check(typeof self == 'object' && self) ||
|
|
25
25
|
check(typeof commonjsGlobal == 'object' && commonjsGlobal) ||
|
|
26
26
|
// eslint-disable-next-line no-new-func -- fallback
|
|
27
|
-
(function () { return this; })() ||
|
|
27
|
+
(function () { return this; })() || Function('return this')();
|
|
28
28
|
|
|
29
29
|
var objectGetOwnPropertyDescriptor = {};
|
|
30
30
|
|
|
@@ -182,7 +182,7 @@ var isObject$5 = $documentAll.IS_HTMLDDA ? function (it) {
|
|
|
182
182
|
return typeof it == 'object' ? it !== null : isCallable$9(it);
|
|
183
183
|
};
|
|
184
184
|
|
|
185
|
-
var global$
|
|
185
|
+
var global$9 = global$a;
|
|
186
186
|
var isCallable$8 = isCallable$a;
|
|
187
187
|
|
|
188
188
|
var aFunction = function (argument) {
|
|
@@ -190,7 +190,7 @@ var aFunction = function (argument) {
|
|
|
190
190
|
};
|
|
191
191
|
|
|
192
192
|
var getBuiltIn$2 = function (namespace, method) {
|
|
193
|
-
return arguments.length < 2 ? aFunction(global$
|
|
193
|
+
return arguments.length < 2 ? aFunction(global$9[namespace]) : global$9[namespace] && global$9[namespace][method];
|
|
194
194
|
};
|
|
195
195
|
|
|
196
196
|
var uncurryThis$7 = functionUncurryThis;
|
|
@@ -199,11 +199,11 @@ var objectIsPrototypeOf = uncurryThis$7({}.isPrototypeOf);
|
|
|
199
199
|
|
|
200
200
|
var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
|
201
201
|
|
|
202
|
-
var global$
|
|
202
|
+
var global$8 = global$a;
|
|
203
203
|
var userAgent = engineUserAgent;
|
|
204
204
|
|
|
205
|
-
var process = global$
|
|
206
|
-
var Deno = global$
|
|
205
|
+
var process = global$8.process;
|
|
206
|
+
var Deno = global$8.Deno;
|
|
207
207
|
var versions = process && process.versions || Deno && Deno.version;
|
|
208
208
|
var v8 = versions && versions.v8;
|
|
209
209
|
var match, version;
|
|
@@ -231,18 +231,13 @@ var engineV8Version = version;
|
|
|
231
231
|
|
|
232
232
|
var V8_VERSION = engineV8Version;
|
|
233
233
|
var fails$5 = fails$9;
|
|
234
|
-
var global$8 = global$b;
|
|
235
|
-
|
|
236
|
-
var $String$3 = global$8.String;
|
|
237
234
|
|
|
238
235
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
239
236
|
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$5(function () {
|
|
240
237
|
var symbol = Symbol();
|
|
241
238
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
242
239
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
243
|
-
|
|
244
|
-
// of course, fail.
|
|
245
|
-
return !$String$3(symbol) || !(Object(symbol) instanceof Symbol) ||
|
|
240
|
+
return !String(symbol) || !(Object(symbol) instanceof Symbol) ||
|
|
246
241
|
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
|
247
242
|
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
|
248
243
|
});
|
|
@@ -318,7 +313,7 @@ var ordinaryToPrimitive$1 = function (input, pref) {
|
|
|
318
313
|
|
|
319
314
|
var shared$3 = {exports: {}};
|
|
320
315
|
|
|
321
|
-
var global$7 = global$
|
|
316
|
+
var global$7 = global$a;
|
|
322
317
|
|
|
323
318
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
324
319
|
var defineProperty$2 = Object.defineProperty;
|
|
@@ -331,7 +326,7 @@ var defineGlobalProperty$3 = function (key, value) {
|
|
|
331
326
|
} return value;
|
|
332
327
|
};
|
|
333
328
|
|
|
334
|
-
var global$6 = global$
|
|
329
|
+
var global$6 = global$a;
|
|
335
330
|
var defineGlobalProperty$2 = defineGlobalProperty$3;
|
|
336
331
|
|
|
337
332
|
var SHARED = '__core-js_shared__';
|
|
@@ -344,10 +339,10 @@ var store$2 = sharedStore;
|
|
|
344
339
|
(shared$3.exports = function (key, value) {
|
|
345
340
|
return store$2[key] || (store$2[key] = value !== undefined ? value : {});
|
|
346
341
|
})('versions', []).push({
|
|
347
|
-
version: '3.
|
|
342
|
+
version: '3.29.1',
|
|
348
343
|
mode: 'global',
|
|
349
344
|
copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
|
|
350
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
345
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.29.1/LICENSE',
|
|
351
346
|
source: 'https://github.com/zloirock/core-js'
|
|
352
347
|
});
|
|
353
348
|
|
|
@@ -383,7 +378,7 @@ var uid$2 = function (key) {
|
|
|
383
378
|
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
|
|
384
379
|
};
|
|
385
380
|
|
|
386
|
-
var global$5 = global$
|
|
381
|
+
var global$5 = global$a;
|
|
387
382
|
var shared$2 = shared$3.exports;
|
|
388
383
|
var hasOwn$6 = hasOwnProperty_1;
|
|
389
384
|
var uid$1 = uid$2;
|
|
@@ -438,7 +433,7 @@ var toPropertyKey$2 = function (argument) {
|
|
|
438
433
|
return isSymbol(key) ? key : key + '';
|
|
439
434
|
};
|
|
440
435
|
|
|
441
|
-
var global$4 = global$
|
|
436
|
+
var global$4 = global$a;
|
|
442
437
|
var isObject$2 = isObject$5;
|
|
443
438
|
|
|
444
439
|
var document$1 = global$4.document;
|
|
@@ -600,7 +595,7 @@ if (!isCallable$4(store$1.inspectSource)) {
|
|
|
600
595
|
|
|
601
596
|
var inspectSource$1 = store$1.inspectSource;
|
|
602
597
|
|
|
603
|
-
var global$3 = global$
|
|
598
|
+
var global$3 = global$a;
|
|
604
599
|
var isCallable$3 = isCallable$a;
|
|
605
600
|
|
|
606
601
|
var WeakMap$1 = global$3.WeakMap;
|
|
@@ -619,7 +614,7 @@ var sharedKey$1 = function (key) {
|
|
|
619
614
|
var hiddenKeys$3 = {};
|
|
620
615
|
|
|
621
616
|
var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
|
622
|
-
var global$2 = global$
|
|
617
|
+
var global$2 = global$a;
|
|
623
618
|
var isObject = isObject$5;
|
|
624
619
|
var createNonEnumerableProperty$1 = createNonEnumerableProperty$2;
|
|
625
620
|
var hasOwn$3 = hasOwnProperty_1;
|
|
@@ -963,7 +958,7 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
|
|
|
963
958
|
|
|
964
959
|
var isForced_1 = isForced$1;
|
|
965
960
|
|
|
966
|
-
var global$1 = global$
|
|
961
|
+
var global$1 = global$a;
|
|
967
962
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
968
963
|
var createNonEnumerableProperty = createNonEnumerableProperty$2;
|
|
969
964
|
var defineBuiltIn = defineBuiltIn$1;
|