@bolttech/molecules-input-combo 0.1.0 → 0.1.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.js +11 -6
- package/package.json +7 -9
- package/src/index.d.ts +1 -1
package/index.cjs.js
CHANGED
|
@@ -53,7 +53,7 @@ var fails$a = fails$c;
|
|
|
53
53
|
|
|
54
54
|
var functionBindNative = !fails$a(function () {
|
|
55
55
|
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
|
56
|
-
var test =
|
|
56
|
+
var test = function () { /* empty */ }.bind();
|
|
57
57
|
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
58
58
|
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
59
59
|
});
|
|
@@ -331,10 +331,10 @@ var SHARED = '__core-js_shared__';
|
|
|
331
331
|
var store$3 = sharedStore.exports = globalThis$8[SHARED] || defineGlobalProperty$2(SHARED, {});
|
|
332
332
|
|
|
333
333
|
(store$3.versions || (store$3.versions = [])).push({
|
|
334
|
-
version: '3.
|
|
334
|
+
version: '3.49.0',
|
|
335
335
|
mode: 'global',
|
|
336
336
|
copyright: '© 2013–2025 Denis Pushkarev (zloirock.ru), 2025–2026 CoreJS Company (core-js.io). All rights reserved.',
|
|
337
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
337
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.49.0/LICENSE',
|
|
338
338
|
source: 'https://github.com/zloirock/core-js'
|
|
339
339
|
});
|
|
340
340
|
|
|
@@ -1338,7 +1338,9 @@ var iterate$1 = function (iterable, unboundFunction, options) {
|
|
|
1338
1338
|
var iterator, iterFn, index, length, result, next, step;
|
|
1339
1339
|
|
|
1340
1340
|
var stop = function (condition) {
|
|
1341
|
-
|
|
1341
|
+
var $iterator = iterator;
|
|
1342
|
+
iterator = undefined;
|
|
1343
|
+
if ($iterator) iteratorClose$1($iterator, 'normal');
|
|
1342
1344
|
return new Result(true, condition);
|
|
1343
1345
|
};
|
|
1344
1346
|
|
|
@@ -1368,10 +1370,13 @@ var iterate$1 = function (iterable, unboundFunction, options) {
|
|
|
1368
1370
|
|
|
1369
1371
|
next = IS_RECORD ? iterable.next : iterator.next;
|
|
1370
1372
|
while (!(step = call$2(next, iterator)).done) {
|
|
1373
|
+
// `IteratorValue` errors should propagate without closing the iterator
|
|
1374
|
+
var value = step.value;
|
|
1371
1375
|
try {
|
|
1372
|
-
result = callFn(
|
|
1376
|
+
result = callFn(value);
|
|
1373
1377
|
} catch (error) {
|
|
1374
|
-
iteratorClose$1(iterator, 'throw', error);
|
|
1378
|
+
if (iterator) iteratorClose$1(iterator, 'throw', error);
|
|
1379
|
+
else throw error;
|
|
1375
1380
|
}
|
|
1376
1381
|
if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
|
|
1377
1382
|
} return new Result(false);
|
package/package.json
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bolttech/molecules-input-combo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"react": "19.1.2",
|
|
6
|
-
"react-dom": "19.1.2",
|
|
7
5
|
"styled-components": "6.1.1",
|
|
8
|
-
"
|
|
9
|
-
"@bolttech/atoms-select": "0.27.
|
|
10
|
-
"@bolttech/
|
|
11
|
-
"@bolttech/
|
|
12
|
-
"@bolttech/
|
|
13
|
-
"@bolttech/
|
|
6
|
+
"react": "19.1.2",
|
|
7
|
+
"@bolttech/atoms-select": "0.27.3",
|
|
8
|
+
"@bolttech/molecules-dropdown": "0.37.3",
|
|
9
|
+
"@bolttech/atoms-input": "0.30.4",
|
|
10
|
+
"@bolttech/divider": "0.22.3",
|
|
11
|
+
"@bolttech/ui-utils": "0.6.7"
|
|
14
12
|
},
|
|
15
13
|
"main": "./index.cjs.js",
|
|
16
14
|
"type": "commonjs",
|
package/src/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { InputCombo } from './lib/molecules-input-combo';
|
|
2
|
-
export type { InputComboProps, DropdownOption, InputComboVariants, } from './lib/molecules-input-combo.type';
|
|
2
|
+
export type { InputComboProps, DropdownOption, ComboValue, InputComboVariants, } from './lib/molecules-input-combo.type';
|