@haiilo/catalyst 6.0.2 → 6.1.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/dist/catalyst/catalyst.css +16 -4
- package/dist/catalyst/catalyst.esm.js +1 -1
- package/dist/catalyst/index.cdn.js +0 -1
- package/dist/catalyst/{p-60298958.entry.js → p-b218a2b0.entry.js} +5 -5
- package/dist/catalyst/p-b218a2b0.entry.js.map +1 -0
- package/dist/catalyst/scss/core/_typography.scss +0 -4
- package/dist/catalyst/scss/fonts/_fonts-mixins.scss +1 -1
- package/dist/cjs/cat-alert_25.cjs.entry.js +53 -16
- package/dist/cjs/cat-alert_25.cjs.entry.js.map +1 -1
- package/dist/collection/index.cdn.js +0 -1
- package/dist/collection/scss/core/_typography.scss +0 -4
- package/dist/collection/scss/fonts/_fonts-mixins.scss +1 -1
- package/dist/components/cat-dropdown2.js +47 -15
- package/dist/components/cat-dropdown2.js.map +1 -1
- package/dist/components/cat-scrollable2.js +6 -1
- package/dist/components/cat-scrollable2.js.map +1 -1
- package/dist/components/cat-select-demo.js.map +1 -1
- package/dist/components/cat-select2.js.map +1 -1
- package/dist/components/floating-ui.dom.esm.js.map +1 -1
- package/dist/esm/cat-alert_25.entry.js +53 -16
- package/dist/esm/cat-alert_25.entry.js.map +1 -1
- package/package.json +2 -2
- package/dist/catalyst/p-60298958.entry.js.map +0 -1
|
@@ -910,7 +910,12 @@ function __asyncValues(o) {
|
|
|
910
910
|
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
|
911
911
|
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
|
912
912
|
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
913
|
-
}
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
916
|
+
var e = new Error(message);
|
|
917
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
918
|
+
};
|
|
914
919
|
|
|
915
920
|
const isArrayLike = ((x) => x && typeof x.length === 'number' && typeof x !== 'function');
|
|
916
921
|
|