@bolttech/atoms-segmented-control 0.2.0 → 0.2.2
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 +25 -20
- package/package.json +2 -2
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$c =
|
|
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$b =
|
|
|
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; })() || Function('return this')();
|
|
107
|
+
(function () { return this; })() || commonjsGlobal || Function('return this')();
|
|
108
108
|
|
|
109
109
|
var shared$3 = {exports: {}};
|
|
110
110
|
|
|
111
|
-
var global$
|
|
111
|
+
var global$b = global$c;
|
|
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$b, key, { value: value, configurable: true, writable: true });
|
|
119
119
|
} catch (error) {
|
|
120
|
-
global$
|
|
120
|
+
global$b[key] = value;
|
|
121
121
|
} return value;
|
|
122
122
|
};
|
|
123
123
|
|
|
124
|
-
var global$
|
|
124
|
+
var global$a = global$c;
|
|
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$a[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.30.2',
|
|
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.30.2/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$9 = global$c;
|
|
179
179
|
var userAgent = engineUserAgent;
|
|
180
180
|
|
|
181
|
-
var process = global$
|
|
182
|
-
var Deno = global$
|
|
181
|
+
var process = global$9.process;
|
|
182
|
+
var Deno = global$9.Deno;
|
|
183
183
|
var versions = process && process.versions || Deno && Deno.version;
|
|
184
184
|
var v8 = versions && versions.v8;
|
|
185
185
|
var match, version;
|
|
@@ -207,13 +207,18 @@ 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;
|
|
210
213
|
|
|
211
214
|
// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
|
|
212
215
|
var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$8(function () {
|
|
213
216
|
var symbol = Symbol();
|
|
214
217
|
// Chrome 38 Symbol has incorrect toString conversion
|
|
215
218
|
// `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
|
|
216
|
-
|
|
219
|
+
// nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,
|
|
220
|
+
// of course, fail.
|
|
221
|
+
return !$String$4(symbol) || !(Object(symbol) instanceof Symbol) ||
|
|
217
222
|
// Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
|
|
218
223
|
!Symbol.sham && V8_VERSION && V8_VERSION < 41;
|
|
219
224
|
});
|
|
@@ -226,7 +231,7 @@ var useSymbolAsUid = NATIVE_SYMBOL$1
|
|
|
226
231
|
&& !Symbol.sham
|
|
227
232
|
&& typeof Symbol.iterator == 'symbol';
|
|
228
233
|
|
|
229
|
-
var global$7 = global$
|
|
234
|
+
var global$7 = global$c;
|
|
230
235
|
var shared$2 = shared$3.exports;
|
|
231
236
|
var hasOwn$8 = hasOwnProperty_1;
|
|
232
237
|
var uid$1 = uid$2;
|
|
@@ -315,7 +320,7 @@ var v8PrototypeDefineBug = DESCRIPTORS$9 && fails$6(function () {
|
|
|
315
320
|
|
|
316
321
|
var objectDefineProperty = {};
|
|
317
322
|
|
|
318
|
-
var global$6 = global$
|
|
323
|
+
var global$6 = global$c;
|
|
319
324
|
var isObject$4 = isObject$6;
|
|
320
325
|
|
|
321
326
|
var document$1 = global$6.document;
|
|
@@ -346,7 +351,7 @@ var functionCall = NATIVE_BIND ? call$5.bind(call$5) : function () {
|
|
|
346
351
|
return call$5.apply(call$5, arguments);
|
|
347
352
|
};
|
|
348
353
|
|
|
349
|
-
var global$5 = global$
|
|
354
|
+
var global$5 = global$c;
|
|
350
355
|
var isCallable$c = isCallable$e;
|
|
351
356
|
|
|
352
357
|
var aFunction = function (argument) {
|
|
@@ -773,7 +778,7 @@ var addToUnscopables$1 = function (key) {
|
|
|
773
778
|
|
|
774
779
|
var iterators = {};
|
|
775
780
|
|
|
776
|
-
var global$4 = global$
|
|
781
|
+
var global$4 = global$c;
|
|
777
782
|
var isCallable$8 = isCallable$e;
|
|
778
783
|
|
|
779
784
|
var WeakMap$1 = global$4.WeakMap;
|
|
@@ -801,7 +806,7 @@ var createNonEnumerableProperty$4 = DESCRIPTORS$5 ? function (object, key, value
|
|
|
801
806
|
};
|
|
802
807
|
|
|
803
808
|
var NATIVE_WEAK_MAP = weakMapBasicDetection;
|
|
804
|
-
var global$3 = global$
|
|
809
|
+
var global$3 = global$c;
|
|
805
810
|
var isObject$1 = isObject$6;
|
|
806
811
|
var createNonEnumerableProperty$3 = createNonEnumerableProperty$4;
|
|
807
812
|
var hasOwn$6 = hasOwnProperty_1;
|
|
@@ -1104,7 +1109,7 @@ var POLYFILL = isForced$1.POLYFILL = 'P';
|
|
|
1104
1109
|
|
|
1105
1110
|
var isForced_1 = isForced$1;
|
|
1106
1111
|
|
|
1107
|
-
var global$2 = global$
|
|
1112
|
+
var global$2 = global$c;
|
|
1108
1113
|
var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
|
|
1109
1114
|
var createNonEnumerableProperty$2 = createNonEnumerableProperty$4;
|
|
1110
1115
|
var defineBuiltIn$2 = defineBuiltIn$3;
|
|
@@ -1521,7 +1526,7 @@ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.co
|
|
|
1521
1526
|
|
|
1522
1527
|
var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
|
|
1523
1528
|
|
|
1524
|
-
var global$1 = global$
|
|
1529
|
+
var global$1 = global$c;
|
|
1525
1530
|
var DOMIterables = domIterables;
|
|
1526
1531
|
var DOMTokenListPrototype = domTokenListPrototype;
|
|
1527
1532
|
var ArrayIteratorMethods = es_array_iterator;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bolttech/atoms-segmented-control",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"main": "./index.cjs",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"types": "./src/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@edirect/frontend-foundations": "0.0.
|
|
8
|
+
"@edirect/frontend-foundations": "0.0.53",
|
|
9
9
|
"react": "18.2.0",
|
|
10
10
|
"styled-components": "5.3.6"
|
|
11
11
|
},
|