@haiilo/catalyst 12.4.0 → 13.0.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.esm.js +1 -1
- package/dist/catalyst/index.esm.js +2 -2
- package/dist/catalyst/index.esm.js.map +1 -1
- package/dist/catalyst/p-02e41ad7.entry.js +10 -0
- package/dist/catalyst/p-02e41ad7.entry.js.map +1 -0
- package/dist/catalyst/p-D80xhZLG.js +2 -0
- package/dist/catalyst/p-D80xhZLG.js.map +1 -0
- package/dist/catalyst/scss/core/_form.scss +11 -11
- package/dist/cjs/cat-alert_30.cjs.entry.js +59 -47
- package/dist/cjs/cat-alert_30.cjs.entry.js.map +1 -1
- package/dist/cjs/{index-DNLT6JC9.js → index-B6viy7Jl.js} +19 -13
- package/dist/cjs/index-B6viy7Jl.js.map +1 -0
- package/dist/cjs/index.cjs.js +2 -2
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/collection/components/cat-date/cat-date.js +3 -3
- package/dist/collection/components/cat-date/cat-date.js.map +1 -1
- package/dist/collection/components/cat-form-group/cat-form-group.js +2 -2
- package/dist/collection/components/cat-form-group/cat-form-group.js.map +1 -1
- package/dist/collection/components/cat-input/cat-input.css +12 -4
- package/dist/collection/components/cat-notification/cat-notification.js +1 -1
- package/dist/collection/components/cat-notification/cat-notification.js.map +1 -1
- package/dist/collection/components/cat-select/cat-select.css +6 -2
- package/dist/collection/components/cat-select/cat-select.js +1 -1
- package/dist/collection/components/cat-tag/cat-tag.css +12 -4
- package/dist/collection/components/cat-textarea/cat-textarea.css +6 -2
- package/dist/collection/components/cat-tooltip/cat-tooltip.js +8 -12
- package/dist/collection/components/cat-tooltip/cat-tooltip.js.map +1 -1
- package/dist/collection/scss/core/_form.scss +11 -11
- package/dist/components/cat-date.js +3 -3
- package/dist/components/cat-date.js.map +1 -1
- package/dist/components/cat-form-group.js +2 -2
- package/dist/components/cat-form-group.js.map +1 -1
- package/dist/components/cat-input2.js +1 -1
- package/dist/components/cat-input2.js.map +1 -1
- package/dist/components/cat-scrollable2.js.map +1 -1
- package/dist/components/cat-select2.js +1 -1
- package/dist/components/cat-select2.js.map +1 -1
- package/dist/components/cat-tag.js +1 -1
- package/dist/components/cat-tag.js.map +1 -1
- package/dist/components/cat-textarea.js +1 -1
- package/dist/components/cat-textarea.js.map +1 -1
- package/dist/components/cat-tooltip.js +8 -12
- package/dist/components/cat-tooltip.js.map +1 -1
- package/dist/components/floating-ui.dom.js +41 -25
- package/dist/components/floating-ui.dom.js.map +1 -1
- package/dist/components/index.js +1 -1
- package/dist/components/index.js.map +1 -1
- package/dist/components/index2.js +17 -11
- package/dist/components/index2.js.map +1 -1
- package/dist/esm/cat-alert_30.entry.js +59 -47
- package/dist/esm/cat-alert_30.entry.js.map +1 -1
- package/dist/esm/{index-LJZzaWFR.js → index-D80xhZLG.js} +19 -13
- package/dist/esm/index-D80xhZLG.js.map +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/types/components/cat-date/cat-date.d.ts +1 -1
- package/dist/types/components/cat-notification/cat-notification.d.ts +2 -0
- package/package.json +4 -4
- package/dist/catalyst/p-2b38c9b7.entry.js +0 -10
- package/dist/catalyst/p-2b38c9b7.entry.js.map +0 -1
- package/dist/catalyst/p-LJZzaWFR.js +0 -2
- package/dist/catalyst/p-LJZzaWFR.js.map +0 -1
- package/dist/cjs/index-DNLT6JC9.js.map +0 -1
- package/dist/esm/index-LJZzaWFR.js.map +0 -1
|
@@ -3016,7 +3016,7 @@ function requireAnimationFrameAction () {
|
|
|
3016
3016
|
return _super.prototype.recycleAsyncId.call(this, scheduler, id, delay);
|
|
3017
3017
|
}
|
|
3018
3018
|
var actions = scheduler.actions;
|
|
3019
|
-
if (id != null && ((_a = actions[actions.length - 1]) === null || _a === void 0 ? void 0 : _a.id) !== id) {
|
|
3019
|
+
if (id != null && id === scheduler._scheduled && ((_a = actions[actions.length - 1]) === null || _a === void 0 ? void 0 : _a.id) !== id) {
|
|
3020
3020
|
animationFrameProvider_1.animationFrameProvider.cancelAnimationFrame(id);
|
|
3021
3021
|
scheduler._scheduled = undefined;
|
|
3022
3022
|
}
|
|
@@ -3061,8 +3061,14 @@ function requireAnimationFrameScheduler () {
|
|
|
3061
3061
|
}
|
|
3062
3062
|
AnimationFrameScheduler.prototype.flush = function (action) {
|
|
3063
3063
|
this._active = true;
|
|
3064
|
-
var flushId
|
|
3065
|
-
|
|
3064
|
+
var flushId;
|
|
3065
|
+
if (action) {
|
|
3066
|
+
flushId = action.id;
|
|
3067
|
+
}
|
|
3068
|
+
else {
|
|
3069
|
+
flushId = this._scheduled;
|
|
3070
|
+
this._scheduled = undefined;
|
|
3071
|
+
}
|
|
3066
3072
|
var actions = this.actions;
|
|
3067
3073
|
var error;
|
|
3068
3074
|
action = action || actions.shift();
|
|
@@ -4212,11 +4218,13 @@ function requireEmptyError () {
|
|
|
4212
4218
|
Object.defineProperty(EmptyError, "__esModule", { value: true });
|
|
4213
4219
|
EmptyError.EmptyError = void 0;
|
|
4214
4220
|
var createErrorClass_1 = requireCreateErrorClass();
|
|
4215
|
-
EmptyError.EmptyError = createErrorClass_1.createErrorClass(function (_super) {
|
|
4216
|
-
|
|
4217
|
-
|
|
4218
|
-
|
|
4219
|
-
|
|
4221
|
+
EmptyError.EmptyError = createErrorClass_1.createErrorClass(function (_super) {
|
|
4222
|
+
return function EmptyErrorImpl() {
|
|
4223
|
+
_super(this);
|
|
4224
|
+
this.name = 'EmptyError';
|
|
4225
|
+
this.message = 'no elements in sequence';
|
|
4226
|
+
};
|
|
4227
|
+
});
|
|
4220
4228
|
|
|
4221
4229
|
return EmptyError;
|
|
4222
4230
|
}
|
|
@@ -7027,7 +7035,7 @@ function requireDistinctUntilKeyChanged () {
|
|
|
7027
7035
|
distinctUntilKeyChanged.distinctUntilKeyChanged = void 0;
|
|
7028
7036
|
var distinctUntilChanged_1 = requireDistinctUntilChanged();
|
|
7029
7037
|
function distinctUntilKeyChanged$1(key, compare) {
|
|
7030
|
-
return distinctUntilChanged_1.distinctUntilChanged(function (x, y) { return compare ? compare(x[key], y[key]) : x[key] === y[key]; });
|
|
7038
|
+
return distinctUntilChanged_1.distinctUntilChanged(function (x, y) { return (compare ? compare(x[key], y[key]) : x[key] === y[key]); });
|
|
7031
7039
|
}
|
|
7032
7040
|
distinctUntilKeyChanged.distinctUntilKeyChanged = distinctUntilKeyChanged$1;
|
|
7033
7041
|
|
|
@@ -7705,7 +7713,6 @@ function requireMerge () {
|
|
|
7705
7713
|
Object.defineProperty(merge, "__esModule", { value: true });
|
|
7706
7714
|
merge.merge = void 0;
|
|
7707
7715
|
var lift_1 = requireLift();
|
|
7708
|
-
var argsOrArgArray_1 = requireArgsOrArgArray();
|
|
7709
7716
|
var mergeAll_1 = requireMergeAll();
|
|
7710
7717
|
var args_1 = requireArgs();
|
|
7711
7718
|
var from_1 = requireFrom();
|
|
@@ -7716,7 +7723,6 @@ function requireMerge () {
|
|
|
7716
7723
|
}
|
|
7717
7724
|
var scheduler = args_1.popScheduler(args);
|
|
7718
7725
|
var concurrent = args_1.popNumber(args, Infinity);
|
|
7719
|
-
args = argsOrArgArray_1.argsOrArgArray(args);
|
|
7720
7726
|
return lift_1.operate(function (source, subscriber) {
|
|
7721
7727
|
mergeAll_1.mergeAll(concurrent)(from_1.from(__spreadArray([source], __read(args)), scheduler)).subscribe(subscriber);
|
|
7722
7728
|
});
|
|
@@ -10173,6 +10179,6 @@ exports.requireWithLatestFrom = requireWithLatestFrom;
|
|
|
10173
10179
|
exports.requireZip = requireZip;
|
|
10174
10180
|
exports.requireZipAll = requireZipAll;
|
|
10175
10181
|
exports.requireZipWith = requireZipWith;
|
|
10176
|
-
//# sourceMappingURL=index-
|
|
10182
|
+
//# sourceMappingURL=index-B6viy7Jl.js.map
|
|
10177
10183
|
|
|
10178
|
-
//# sourceMappingURL=index-
|
|
10184
|
+
//# sourceMappingURL=index-B6viy7Jl.js.map
|