@bolttech/atoms-checkbox 0.20.0 → 0.20.1
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 +32 -37
- package/package.json +2 -2
package/index.cjs
CHANGED
|
@@ -20,7 +20,7 @@ var check = function (it) {
|
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
|
|
23
|
-
var
|
|
23
|
+
var global$a =
|
|
24
24
|
// eslint-disable-next-line es/no-global-this -- safe
|
|
25
25
|
check(typeof globalThis == 'object' && globalThis) ||
|
|
26
26
|
check(typeof window == 'object' && window) ||
|
|
@@ -171,7 +171,7 @@ var isObject$5 = function (it) {
|
|
|
171
171
|
return typeof it == 'object' ? it !== null : isCallable$9(it);
|
|
172
172
|
};
|
|
173
173
|
|
|
174
|
-
var
|
|
174
|
+
var global$9 = global$a;
|
|
175
175
|
var isCallable$8 = isCallable$a;
|
|
176
176
|
|
|
177
177
|
var aFunction = function (argument) {
|
|
@@ -179,25 +179,20 @@ var aFunction = function (argument) {
|
|
|
179
179
|
};
|
|
180
180
|
|
|
181
181
|
var getBuiltIn$2 = function (namespace, method) {
|
|
182
|
-
return arguments.length < 2 ? aFunction(
|
|
182
|
+
return arguments.length < 2 ? aFunction(global$9[namespace]) : global$9[namespace] && global$9[namespace][method];
|
|
183
183
|
};
|
|
184
184
|
|
|
185
185
|
var uncurryThis$7 = functionUncurryThis;
|
|
186
186
|
|
|
187
187
|
var objectIsPrototypeOf = uncurryThis$7({}.isPrototypeOf);
|
|
188
188
|
|
|
189
|
-
var
|
|
189
|
+
var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
|
|
190
190
|
|
|
191
|
-
var
|
|
192
|
-
var userAgent
|
|
191
|
+
var global$8 = global$a;
|
|
192
|
+
var userAgent = engineUserAgent;
|
|
193
193
|
|
|
194
|
-
var
|
|
195
|
-
|
|
196
|
-
var globalThis$9 = globalThis_1;
|
|
197
|
-
var userAgent = environmentUserAgent;
|
|
198
|
-
|
|
199
|
-
var process = globalThis$9.process;
|
|
200
|
-
var Deno = globalThis$9.Deno;
|
|
194
|
+
var process = global$8.process;
|
|
195
|
+
var Deno = global$8.Deno;
|
|
201
196
|
var versions = process && process.versions || Deno && Deno.version;
|
|
202
197
|
var v8 = versions && versions.v8;
|
|
203
198
|
var match, version;
|
|
@@ -219,14 +214,14 @@ if (!version && userAgent) {
|
|
|
219
214
|
}
|
|
220
215
|
}
|
|
221
216
|
|
|
222
|
-
var
|
|
217
|
+
var engineV8Version = version;
|
|
223
218
|
|
|
224
219
|
/* eslint-disable es/no-symbol -- required for testing */
|
|
225
|
-
var V8_VERSION =
|
|
220
|
+
var V8_VERSION = engineV8Version;
|
|
226
221
|
var fails$5 = fails$9;
|
|
227
|
-
var
|
|
222
|
+
var global$7 = global$a;
|
|
228
223
|
|
|
229
|
-
var $String$3 =
|
|
224
|
+
var $String$3 = global$7.String;
|
|
230
225
|
|
|
231
226
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
232
227
|
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$5(function () {
|
|
@@ -310,30 +305,30 @@ var ordinaryToPrimitive$1 = function (input, pref) {
|
|
|
310
305
|
|
|
311
306
|
var sharedStore = {exports: {}};
|
|
312
307
|
|
|
313
|
-
var
|
|
308
|
+
var global$6 = global$a;
|
|
314
309
|
|
|
315
310
|
// eslint-disable-next-line es/no-object-defineproperty -- safe
|
|
316
311
|
var defineProperty$2 = Object.defineProperty;
|
|
317
312
|
|
|
318
313
|
var defineGlobalProperty$3 = function (key, value) {
|
|
319
314
|
try {
|
|
320
|
-
defineProperty$2(
|
|
315
|
+
defineProperty$2(global$6, key, { value: value, configurable: true, writable: true });
|
|
321
316
|
} catch (error) {
|
|
322
|
-
|
|
317
|
+
global$6[key] = value;
|
|
323
318
|
} return value;
|
|
324
319
|
};
|
|
325
320
|
|
|
326
|
-
var globalThis$
|
|
321
|
+
var globalThis$1 = global$a;
|
|
327
322
|
var defineGlobalProperty$2 = defineGlobalProperty$3;
|
|
328
323
|
|
|
329
324
|
var SHARED = '__core-js_shared__';
|
|
330
|
-
var store$3 = sharedStore.exports = globalThis$
|
|
325
|
+
var store$3 = sharedStore.exports = globalThis$1[SHARED] || defineGlobalProperty$2(SHARED, {});
|
|
331
326
|
|
|
332
327
|
(store$3.versions || (store$3.versions = [])).push({
|
|
333
|
-
version: '3.
|
|
328
|
+
version: '3.37.1',
|
|
334
329
|
mode: 'global',
|
|
335
330
|
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
|
|
336
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
331
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.37.1/LICENSE',
|
|
337
332
|
source: 'https://github.com/zloirock/core-js'
|
|
338
333
|
});
|
|
339
334
|
|
|
@@ -375,14 +370,14 @@ var uid$2 = function (key) {
|
|
|
375
370
|
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);
|
|
376
371
|
};
|
|
377
372
|
|
|
378
|
-
var
|
|
373
|
+
var global$5 = global$a;
|
|
379
374
|
var shared$2 = shared$3;
|
|
380
375
|
var hasOwn$6 = hasOwnProperty_1;
|
|
381
376
|
var uid$1 = uid$2;
|
|
382
377
|
var NATIVE_SYMBOL = symbolConstructorDetection;
|
|
383
378
|
var USE_SYMBOL_AS_UID = useSymbolAsUid;
|
|
384
379
|
|
|
385
|
-
var Symbol$1 =
|
|
380
|
+
var Symbol$1 = global$5.Symbol;
|
|
386
381
|
var WellKnownSymbolsStore = shared$2('wks');
|
|
387
382
|
var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
|
|
388
383
|
|
|
@@ -430,10 +425,10 @@ var toPropertyKey$2 = function (argument) {
|
|
|
430
425
|
return isSymbol(key) ? key : key + '';
|
|
431
426
|
};
|
|
432
427
|
|
|
433
|
-
var
|
|
428
|
+
var global$4 = global$a;
|
|
434
429
|
var isObject$2 = isObject$5;
|
|
435
430
|
|
|
436
|
-
var document$1 =
|
|
431
|
+
var document$1 = global$4.document;
|
|
437
432
|
// typeof document.createElement is 'object' in old IE
|
|
438
433
|
var EXISTS$1 = isObject$2(document$1) && isObject$2(document$1.createElement);
|
|
439
434
|
|
|
@@ -592,10 +587,10 @@ if (!isCallable$4(store$1.inspectSource)) {
|
|
|
592
587
|
|
|
593
588
|
var inspectSource$1 = store$1.inspectSource;
|
|
594
589
|
|
|
595
|
-
var
|
|
590
|
+
var global$3 = global$a;
|
|
596
591
|
var isCallable$3 = isCallable$a;
|
|
597
592
|
|
|
598
|
-
var WeakMap$1 =
|
|
593
|
+
var WeakMap$1 = global$3.WeakMap;
|
|
599
594
|
|
|
600
595
|
var weakMapBasicDetection = isCallable$3(WeakMap$1) && /native code/.test(String(WeakMap$1));
|
|
601
596
|
|
|
@@ -611,7 +606,7 @@ var sharedKey$1 = function (key) {
|
|
|
611
606
|
var hiddenKeys$3 = {};
|
|
612
607
|
|
|
613
608
|
var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
|
614
|
-
var
|
|
609
|
+
var global$2 = global$a;
|
|
615
610
|
var isObject = isObject$5;
|
|
616
611
|
var createNonEnumerableProperty$1 = createNonEnumerableProperty$2;
|
|
617
612
|
var hasOwn$3 = hasOwnProperty_1;
|
|
@@ -620,8 +615,8 @@ var sharedKey = sharedKey$1;
|
|
|
620
615
|
var hiddenKeys$2 = hiddenKeys$3;
|
|
621
616
|
|
|
622
617
|
var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
|
|
623
|
-
var TypeError$1 =
|
|
624
|
-
var WeakMap =
|
|
618
|
+
var TypeError$1 = global$2.TypeError;
|
|
619
|
+
var WeakMap = global$2.WeakMap;
|
|
625
620
|
var set, get, has;
|
|
626
621
|
|
|
627
622
|
var enforce = function (it) {
|
|
@@ -957,7 +952,7 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
|
|
|
957
952
|
|
|
958
953
|
var isForced_1 = isForced$1;
|
|
959
954
|
|
|
960
|
-
var
|
|
955
|
+
var global$1 = global$a;
|
|
961
956
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
962
957
|
var createNonEnumerableProperty = createNonEnumerableProperty$2;
|
|
963
958
|
var defineBuiltIn = defineBuiltIn$1;
|
|
@@ -986,11 +981,11 @@ var _export = function (options, source) {
|
|
|
986
981
|
var STATIC = options.stat;
|
|
987
982
|
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
988
983
|
if (GLOBAL) {
|
|
989
|
-
target =
|
|
984
|
+
target = global$1;
|
|
990
985
|
} else if (STATIC) {
|
|
991
|
-
target =
|
|
986
|
+
target = global$1[TARGET] || defineGlobalProperty(TARGET, {});
|
|
992
987
|
} else {
|
|
993
|
-
target =
|
|
988
|
+
target = global$1[TARGET] && global$1[TARGET].prototype;
|
|
994
989
|
}
|
|
995
990
|
if (target) for (key in source) {
|
|
996
991
|
sourceProperty = source[key];
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bolttech/atoms-checkbox",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.1",
|
|
4
4
|
"main": "./index.cjs",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@bolttech/default-theme": "0.8.0",
|
|
9
9
|
"@bolttech/form-engine": "3.0.1-beta.5",
|
|
10
|
-
"@bolttech/frontend-foundations": "0.9.
|
|
10
|
+
"@bolttech/frontend-foundations": "0.9.1",
|
|
11
11
|
"@bolttech/ui-utils": "0.4.0",
|
|
12
12
|
"react": "18.2.0",
|
|
13
13
|
"styled-components": "6.1.1"
|