@stemy/ngx-utils 19.5.10 → 19.5.13
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/fesm2022/stemy-ngx-utils.mjs +106 -75
- package/fesm2022/stemy-ngx-utils.mjs.map +1 -1
- package/ngx-utils/common-types.d.ts +2 -2
- package/ngx-utils/components/btn/btn.component.d.ts +3 -3
- package/ngx-utils/components/btn-default/btn-default.component.d.ts +3 -3
- package/ngx-utils/components/tabs/tabs.component.d.ts +3 -3
- package/ngx-utils/directives/async-method-target.directive.d.ts +10 -0
- package/ngx-utils/directives/async-method.base.d.ts +13 -12
- package/ngx-utils/directives/async-method.directive.d.ts +2 -2
- package/ngx-utils/directives/dropdown-toggle.directive.d.ts +4 -7
- package/ngx-utils/ngx-utils.imports.d.ts +2 -2
- package/ngx-utils/ngx-utils.module.d.ts +38 -37
- package/package.json +1 -1
- package/public_api.d.ts +2 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'zone.js';
|
|
2
2
|
import 'reflect-metadata';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
|
-
import { InjectionToken, PLATFORM_ID, Inject, Injectable, Optional, Injector, EventEmitter, isDevMode, ErrorHandler, createComponent, NgZone, Pipe,
|
|
4
|
+
import { InjectionToken, PLATFORM_ID, Inject, Injectable, Optional, Injector, EventEmitter, isDevMode, ErrorHandler, createComponent, NgZone, Pipe, signal, input, output, inject, ChangeDetectorRef, Renderer2, ElementRef, effect, HostListener, Directive, Input, HostBinding, Output, computed, ChangeDetectionStrategy, ViewEncapsulation, Component, ViewChild, forwardRef, ContentChild, ContentChildren, model, contentChildren, APP_INITIALIZER, makeEnvironmentProviders, NgModule } from '@angular/core';
|
|
5
5
|
import * as i2 from '@angular/router';
|
|
6
6
|
import { ActivatedRouteSnapshot, Scroll, NavigationEnd, Router, DefaultUrlSerializer, UrlTree, UrlSegmentGroup, UrlSegment, UrlSerializer, ROUTES } from '@angular/router';
|
|
7
7
|
import { BehaviorSubject, Observable, firstValueFrom, Subject, Subscription, from, TimeoutError, combineLatest, lastValueFrom } from 'rxjs';
|
|
@@ -5278,17 +5278,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
5278
5278
|
}] });
|
|
5279
5279
|
|
|
5280
5280
|
class AsyncMethodBase {
|
|
5281
|
-
|
|
5282
|
-
|
|
5283
|
-
|
|
5284
|
-
|
|
5285
|
-
|
|
5286
|
-
|
|
5287
|
-
|
|
5288
|
-
this.
|
|
5289
|
-
this.
|
|
5290
|
-
this.
|
|
5291
|
-
this.
|
|
5281
|
+
constructor() {
|
|
5282
|
+
this.disabled = signal(false);
|
|
5283
|
+
this.context = input({});
|
|
5284
|
+
this.onSuccess = output();
|
|
5285
|
+
this.onError = output();
|
|
5286
|
+
this.toaster = inject(TOASTER_SERVICE);
|
|
5287
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
5288
|
+
this.renderer = inject(Renderer2);
|
|
5289
|
+
this.element = inject(ElementRef);
|
|
5290
|
+
this.loading = signal(false);
|
|
5291
|
+
this.target = signal(this.element.nativeElement);
|
|
5292
|
+
effect(() => {
|
|
5293
|
+
const disabled = this.disabled();
|
|
5294
|
+
const loading = this.loading();
|
|
5295
|
+
const target = this.target();
|
|
5296
|
+
if (!target)
|
|
5297
|
+
return;
|
|
5298
|
+
if (disabled) {
|
|
5299
|
+
this.renderer.addClass(target, "disabled");
|
|
5300
|
+
}
|
|
5301
|
+
else {
|
|
5302
|
+
this.renderer.removeClass(target, "disabled");
|
|
5303
|
+
}
|
|
5304
|
+
if (loading) {
|
|
5305
|
+
this.renderer.addClass(target, "loading");
|
|
5306
|
+
}
|
|
5307
|
+
else {
|
|
5308
|
+
this.renderer.removeClass(target, "loading");
|
|
5309
|
+
}
|
|
5310
|
+
});
|
|
5292
5311
|
}
|
|
5293
5312
|
getMethod() {
|
|
5294
5313
|
return async () => null;
|
|
@@ -5298,31 +5317,34 @@ class AsyncMethodBase {
|
|
|
5298
5317
|
}
|
|
5299
5318
|
click(ev) {
|
|
5300
5319
|
ev?.preventDefault();
|
|
5301
|
-
if (this.disabled)
|
|
5320
|
+
if (this.disabled())
|
|
5302
5321
|
return true;
|
|
5303
5322
|
this.callMethod(ev);
|
|
5304
5323
|
return true;
|
|
5305
5324
|
}
|
|
5306
5325
|
callMethod(ev) {
|
|
5307
|
-
if (this.loading)
|
|
5326
|
+
if (this.loading())
|
|
5308
5327
|
return true;
|
|
5309
|
-
this.loading
|
|
5328
|
+
this.loading.set(true);
|
|
5310
5329
|
const method = this.getMethod();
|
|
5311
|
-
const result = !method ? null : method(this.context, ev);
|
|
5330
|
+
const result = !method ? null : method(this.context(), ev);
|
|
5331
|
+
console.log("Call", result);
|
|
5312
5332
|
if (!(result instanceof Promise)) {
|
|
5313
|
-
this.loading
|
|
5333
|
+
this.loading.set(false);
|
|
5314
5334
|
return false;
|
|
5315
5335
|
}
|
|
5316
5336
|
result.then(result => {
|
|
5317
|
-
|
|
5337
|
+
console.log("result", result);
|
|
5338
|
+
this.loading.set(false);
|
|
5318
5339
|
if (result) {
|
|
5319
5340
|
this.onSuccess.emit(result);
|
|
5320
5341
|
this.toaster.success(result.message, result.context);
|
|
5321
5342
|
}
|
|
5322
5343
|
}, reason => {
|
|
5344
|
+
console.log("result", reason);
|
|
5323
5345
|
if (!reason || !reason.message)
|
|
5324
5346
|
throw new Error("Reason must implement IAsyncMessage interface");
|
|
5325
|
-
this.loading
|
|
5347
|
+
this.loading.set(false);
|
|
5326
5348
|
this.onError.emit(reason);
|
|
5327
5349
|
this.toaster.error(reason.message, reason.context);
|
|
5328
5350
|
}).finally(() => {
|
|
@@ -5332,8 +5354,8 @@ class AsyncMethodBase {
|
|
|
5332
5354
|
});
|
|
5333
5355
|
return true;
|
|
5334
5356
|
}
|
|
5335
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodBase, deps: [
|
|
5336
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
5357
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5358
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.2.14", type: AsyncMethodBase, isStandalone: false, selector: "[__asmb__]", inputs: { context: { classPropertyName: "context", publicName: "context", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { onSuccess: "onSuccess", onError: "onError" }, host: { listeners: { "click": "click($event)" } }, usesOnChanges: true, ngImport: i0 }); }
|
|
5337
5359
|
}
|
|
5338
5360
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodBase, decorators: [{
|
|
5339
5361
|
type: Directive,
|
|
@@ -5341,46 +5363,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
5341
5363
|
standalone: false,
|
|
5342
5364
|
selector: "[__asmb__]"
|
|
5343
5365
|
}]
|
|
5344
|
-
}], ctorParameters: () => [
|
|
5345
|
-
type: Inject,
|
|
5346
|
-
args: [TOASTER_SERVICE]
|
|
5347
|
-
}] }, { type: i0.ChangeDetectorRef }], propDecorators: { disabled: [{
|
|
5348
|
-
type: Input
|
|
5349
|
-
}], context: [{
|
|
5350
|
-
type: Input
|
|
5351
|
-
}], onSuccess: [{
|
|
5352
|
-
type: Output
|
|
5353
|
-
}], onError: [{
|
|
5354
|
-
type: Output
|
|
5355
|
-
}], isDisabled: [{
|
|
5356
|
-
type: HostBinding,
|
|
5357
|
-
args: ["class.disabled"]
|
|
5358
|
-
}], isLoading: [{
|
|
5359
|
-
type: HostBinding,
|
|
5360
|
-
args: ["class.loading"]
|
|
5361
|
-
}], click: [{
|
|
5366
|
+
}], ctorParameters: () => [], propDecorators: { click: [{
|
|
5362
5367
|
type: HostListener,
|
|
5363
5368
|
args: ["click", ["$event"]]
|
|
5364
5369
|
}] } });
|
|
5365
5370
|
|
|
5366
5371
|
class AsyncMethodDirective extends AsyncMethodBase {
|
|
5372
|
+
constructor() {
|
|
5373
|
+
super(...arguments);
|
|
5374
|
+
this.method = input(null, { alias: "async-method" });
|
|
5375
|
+
}
|
|
5367
5376
|
getMethod() {
|
|
5368
|
-
return this.method;
|
|
5377
|
+
return this.method();
|
|
5369
5378
|
}
|
|
5370
5379
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5371
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
5380
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.2.14", type: AsyncMethodDirective, isStandalone: false, selector: "[async-method]", inputs: { method: { classPropertyName: "method", publicName: "async-method", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
5381
|
+
{ provide: AsyncMethodBase, useExisting: AsyncMethodDirective }
|
|
5382
|
+
], exportAs: ["async-method"], usesInheritance: true, ngImport: i0 }); }
|
|
5372
5383
|
}
|
|
5373
5384
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodDirective, decorators: [{
|
|
5374
5385
|
type: Directive,
|
|
5375
5386
|
args: [{
|
|
5376
5387
|
standalone: false,
|
|
5377
5388
|
selector: "[async-method]",
|
|
5378
|
-
exportAs: "async-method"
|
|
5389
|
+
exportAs: "async-method",
|
|
5390
|
+
providers: [
|
|
5391
|
+
{ provide: AsyncMethodBase, useExisting: AsyncMethodDirective }
|
|
5392
|
+
]
|
|
5379
5393
|
}]
|
|
5380
|
-
}]
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
|
|
5394
|
+
}] });
|
|
5395
|
+
|
|
5396
|
+
class AsyncMethodTargetDirective {
|
|
5397
|
+
constructor(element, asyncMethod) {
|
|
5398
|
+
this.element = element;
|
|
5399
|
+
this.asyncMethod = asyncMethod;
|
|
5400
|
+
if (!asyncMethod)
|
|
5401
|
+
return;
|
|
5402
|
+
asyncMethod.target.set(element.nativeElement);
|
|
5403
|
+
}
|
|
5404
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodTargetDirective, deps: [{ token: i0.ElementRef }, { token: AsyncMethodBase, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5405
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.14", type: AsyncMethodTargetDirective, isStandalone: false, selector: "[async-method-target]", ngImport: i0 }); }
|
|
5406
|
+
}
|
|
5407
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: AsyncMethodTargetDirective, decorators: [{
|
|
5408
|
+
type: Directive,
|
|
5409
|
+
args: [{
|
|
5410
|
+
standalone: false,
|
|
5411
|
+
selector: "[async-method-target]"
|
|
5412
|
+
}]
|
|
5413
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: AsyncMethodBase, decorators: [{
|
|
5414
|
+
type: Optional
|
|
5415
|
+
}] }] });
|
|
5384
5416
|
|
|
5385
5417
|
const defaultClass = "default-image";
|
|
5386
5418
|
const loadingClass = "loading-image";
|
|
@@ -6276,18 +6308,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6276
6308
|
}] }] });
|
|
6277
6309
|
|
|
6278
6310
|
class DropdownToggleDirective extends AsyncMethodBase {
|
|
6279
|
-
constructor(
|
|
6280
|
-
super(
|
|
6281
|
-
this.
|
|
6282
|
-
this.
|
|
6283
|
-
this.
|
|
6311
|
+
constructor() {
|
|
6312
|
+
super(...arguments);
|
|
6313
|
+
this.beforeOpen = input(null);
|
|
6314
|
+
this.switch = input(true);
|
|
6315
|
+
this.dropdown = inject(DropdownDirective);
|
|
6284
6316
|
}
|
|
6285
6317
|
getMethod() {
|
|
6286
|
-
return this.beforeOpen;
|
|
6318
|
+
return this.beforeOpen();
|
|
6287
6319
|
}
|
|
6288
6320
|
callMethod(ev) {
|
|
6289
6321
|
if (this.dropdown.isOpened) {
|
|
6290
|
-
if (!this.switch)
|
|
6322
|
+
if (!this.switch())
|
|
6291
6323
|
return true;
|
|
6292
6324
|
this.dropdown.hide();
|
|
6293
6325
|
}
|
|
@@ -6296,8 +6328,10 @@ class DropdownToggleDirective extends AsyncMethodBase {
|
|
|
6296
6328
|
}
|
|
6297
6329
|
return true;
|
|
6298
6330
|
}
|
|
6299
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DropdownToggleDirective, deps:
|
|
6300
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "
|
|
6331
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DropdownToggleDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6332
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "19.2.14", type: DropdownToggleDirective, isStandalone: false, selector: "[dropdownToggle]", inputs: { beforeOpen: { classPropertyName: "beforeOpen", publicName: "beforeOpen", isSignal: true, isRequired: false, transformFunction: null }, switch: { classPropertyName: "switch", publicName: "switch", isSignal: true, isRequired: false, transformFunction: null } }, providers: [
|
|
6333
|
+
{ provide: AsyncMethodBase, useExisting: DropdownToggleDirective }
|
|
6334
|
+
], exportAs: ["dropdown-toggle"], usesInheritance: true, ngImport: i0 }); }
|
|
6301
6335
|
}
|
|
6302
6336
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: DropdownToggleDirective, decorators: [{
|
|
6303
6337
|
type: Directive,
|
|
@@ -6305,15 +6339,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6305
6339
|
standalone: false,
|
|
6306
6340
|
selector: "[dropdownToggle]",
|
|
6307
6341
|
exportAs: "dropdown-toggle",
|
|
6342
|
+
providers: [
|
|
6343
|
+
{ provide: AsyncMethodBase, useExisting: DropdownToggleDirective }
|
|
6344
|
+
]
|
|
6308
6345
|
}]
|
|
6309
|
-
}]
|
|
6310
|
-
type: Inject,
|
|
6311
|
-
args: [TOASTER_SERVICE]
|
|
6312
|
-
}] }, { type: i0.ChangeDetectorRef }], propDecorators: { beforeOpen: [{
|
|
6313
|
-
type: Input
|
|
6314
|
-
}], switch: [{
|
|
6315
|
-
type: Input
|
|
6316
|
-
}] } });
|
|
6346
|
+
}] });
|
|
6317
6347
|
|
|
6318
6348
|
class TabsItemDirective {
|
|
6319
6349
|
constructor() {
|
|
@@ -6437,7 +6467,7 @@ class BtnComponent {
|
|
|
6437
6467
|
this.tooltip = input("");
|
|
6438
6468
|
this.icon = input("");
|
|
6439
6469
|
this.disabled = input(false);
|
|
6440
|
-
this.
|
|
6470
|
+
this.type = input("primary");
|
|
6441
6471
|
this.size = input("normal");
|
|
6442
6472
|
this.buttonType = inject(BUTTON_TYPE);
|
|
6443
6473
|
this.buttonProps = computed(() => {
|
|
@@ -6446,13 +6476,13 @@ class BtnComponent {
|
|
|
6446
6476
|
tooltip: this.tooltip(),
|
|
6447
6477
|
icon: this.icon(),
|
|
6448
6478
|
disabled: this.disabled(),
|
|
6449
|
-
|
|
6479
|
+
type: this.type(),
|
|
6450
6480
|
size: this.size()
|
|
6451
6481
|
};
|
|
6452
6482
|
});
|
|
6453
6483
|
}
|
|
6454
6484
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: BtnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6455
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.14", type: BtnComponent, isStandalone: false, selector: "btn", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, tooltip: { classPropertyName: "tooltip", publicName: "tooltip", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null },
|
|
6485
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "19.2.14", type: BtnComponent, isStandalone: false, selector: "btn", inputs: { label: { classPropertyName: "label", publicName: "label", isSignal: true, isRequired: false, transformFunction: null }, tooltip: { classPropertyName: "tooltip", publicName: "tooltip", isSignal: true, isRequired: false, transformFunction: null }, icon: { classPropertyName: "icon", publicName: "icon", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<ng-container [ngComponentOutlet]=\"buttonType\"\n [ngComponentOutletInputs]=\"buttonProps()\"></ng-container>\n", dependencies: [{ kind: "directive", type: i1$3.NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"], exportAs: ["ngComponentOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
6456
6486
|
}
|
|
6457
6487
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: BtnComponent, decorators: [{
|
|
6458
6488
|
type: Component,
|
|
@@ -6481,11 +6511,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6481
6511
|
|
|
6482
6512
|
class BtnDefaultComponent {
|
|
6483
6513
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: BtnDefaultComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6484
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: BtnDefaultComponent, isStandalone: false, selector: "btn-default", inputs: { label: "label", tooltip: "tooltip", icon: "icon", disabled: "disabled",
|
|
6514
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.14", type: BtnDefaultComponent, isStandalone: false, selector: "btn-default", inputs: { label: "label", tooltip: "tooltip", icon: "icon", disabled: "disabled", type: "type", size: "size" }, ngImport: i0, template: "<div class=\"default-btn btn\"\n [title]=\"!tooltip ? '' : tooltip | translate\"\n [ngClass]=\"['btn-' + type, 'btn-' + size]\">\n <icon [name]=\"icon\" *ngIf=\"icon\"></icon>\n <span *ngIf=\"label\">{{ label | translate }}</span>\n</div>\n", styles: [".default-btn{display:flex;gap:5px}\n"], dependencies: [{ kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconComponent, selector: "icon", inputs: ["name"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
6485
6515
|
}
|
|
6486
6516
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: BtnDefaultComponent, decorators: [{
|
|
6487
6517
|
type: Component,
|
|
6488
|
-
args: [{ standalone: false, encapsulation: ViewEncapsulation.None, selector: "btn-default", template: "<div class=\"default-btn btn\"\n [title]=\"!tooltip ? '' : tooltip | translate\"\n [ngClass]=\"['btn-' +
|
|
6518
|
+
args: [{ standalone: false, encapsulation: ViewEncapsulation.None, selector: "btn-default", template: "<div class=\"default-btn btn\"\n [title]=\"!tooltip ? '' : tooltip | translate\"\n [ngClass]=\"['btn-' + type, 'btn-' + size]\">\n <icon [name]=\"icon\" *ngIf=\"icon\"></icon>\n <span *ngIf=\"label\">{{ label | translate }}</span>\n</div>\n", styles: [".default-btn{display:flex;gap:5px}\n"] }]
|
|
6489
6519
|
}], propDecorators: { label: [{
|
|
6490
6520
|
type: Input
|
|
6491
6521
|
}], tooltip: [{
|
|
@@ -6494,7 +6524,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
6494
6524
|
type: Input
|
|
6495
6525
|
}], disabled: [{
|
|
6496
6526
|
type: Input
|
|
6497
|
-
}],
|
|
6527
|
+
}], type: [{
|
|
6498
6528
|
type: Input
|
|
6499
6529
|
}], size: [{
|
|
6500
6530
|
type: Input
|
|
@@ -7797,7 +7827,7 @@ class TabsComponent {
|
|
|
7797
7827
|
constructor() {
|
|
7798
7828
|
this.value = model();
|
|
7799
7829
|
this.options = input([]);
|
|
7800
|
-
this.
|
|
7830
|
+
this.type = input("primary");
|
|
7801
7831
|
this.size = input("normal");
|
|
7802
7832
|
this.tabItems = contentChildren(TabsItemDirective);
|
|
7803
7833
|
this.renderer = inject(Renderer2);
|
|
@@ -7832,11 +7862,11 @@ class TabsComponent {
|
|
|
7832
7862
|
this.value.set(value);
|
|
7833
7863
|
}
|
|
7834
7864
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: TabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7835
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: TabsComponent, isStandalone: false, selector: "tabs", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null },
|
|
7865
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: TabsComponent, isStandalone: false, selector: "tabs", inputs: { value: { classPropertyName: "value", publicName: "value", isSignal: true, isRequired: false, transformFunction: null }, options: { classPropertyName: "options", publicName: "options", isSignal: true, isRequired: false, transformFunction: null }, type: { classPropertyName: "type", publicName: "type", isSignal: true, isRequired: false, transformFunction: null }, size: { classPropertyName: "size", publicName: "size", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { value: "valueChange" }, queries: [{ propertyName: "tabItems", predicate: TabsItemDirective, isSignal: true }], ngImport: i0, template: "<ul class=\"ui-tabs\" [ngClass]=\"'type-' + type()\">\n @for (option of tabs(); track option.value) {\n <li [ngClass]=\"option.active ? 'active' : 'inactive'\">\n <btn [label]=\"option.label\"\n [tooltip]=\"option.tooltip\"\n [icon]=\"option.icon\"\n [disabled]=\"option.disabled\"\n [type]=\"option.active ? type() : 'transparent'\"\n [size]=\"size()\"\n (click)=\"select(option.value)\"></btn>\n </li>\n }\n</ul>\n<ng-content></ng-content>\n", styles: [".ui-tabs{--tabs-bg: var(--primary-color, var(--bs-primary, #666666));--tabs-margin: 5px;--tabs-padding: 5px;display:flex;gap:5px;margin:0 0 var(--tabs-margin) 0;padding:var(--tabs-padding);position:relative;list-style-type:none}.ui-tabs:before{content:\"\";position:absolute;inset:0;background:var(--tabs-bg);opacity:.25;border-radius:5px;z-index:0}.ui-tabs li{position:relative;z-index:1}.ui-tabs *{box-sizing:border-box}.ui-tabs.type-secondary{--tabs-bg: var(--secondary-color, var(--bs-secondary, #666666))}\n"], dependencies: [{ kind: "directive", type: i1$3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: BtnComponent, selector: "btn", inputs: ["label", "tooltip", "icon", "disabled", "type", "size"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
|
|
7836
7866
|
}
|
|
7837
7867
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: TabsComponent, decorators: [{
|
|
7838
7868
|
type: Component,
|
|
7839
|
-
args: [{ standalone: false, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, selector: "tabs", template: "<ul class=\"ui-tabs\" [ngClass]=\"'
|
|
7869
|
+
args: [{ standalone: false, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, selector: "tabs", template: "<ul class=\"ui-tabs\" [ngClass]=\"'type-' + type()\">\n @for (option of tabs(); track option.value) {\n <li [ngClass]=\"option.active ? 'active' : 'inactive'\">\n <btn [label]=\"option.label\"\n [tooltip]=\"option.tooltip\"\n [icon]=\"option.icon\"\n [disabled]=\"option.disabled\"\n [type]=\"option.active ? type() : 'transparent'\"\n [size]=\"size()\"\n (click)=\"select(option.value)\"></btn>\n </li>\n }\n</ul>\n<ng-content></ng-content>\n", styles: [".ui-tabs{--tabs-bg: var(--primary-color, var(--bs-primary, #666666));--tabs-margin: 5px;--tabs-padding: 5px;display:flex;gap:5px;margin:0 0 var(--tabs-margin) 0;padding:var(--tabs-padding);position:relative;list-style-type:none}.ui-tabs:before{content:\"\";position:absolute;inset:0;background:var(--tabs-bg);opacity:.25;border-radius:5px;z-index:0}.ui-tabs li{position:relative;z-index:1}.ui-tabs *{box-sizing:border-box}.ui-tabs.type-secondary{--tabs-bg: var(--secondary-color, var(--bs-secondary, #666666))}\n"] }]
|
|
7840
7870
|
}] });
|
|
7841
7871
|
|
|
7842
7872
|
class UnorderedListComponent {
|
|
@@ -8174,6 +8204,7 @@ const pipes = [
|
|
|
8174
8204
|
const directives = [
|
|
8175
8205
|
AsyncMethodBase,
|
|
8176
8206
|
AsyncMethodDirective,
|
|
8207
|
+
AsyncMethodTargetDirective,
|
|
8177
8208
|
BackgroundDirective,
|
|
8178
8209
|
ComponentLoaderDirective,
|
|
8179
8210
|
DynamicTableTemplateDirective,
|
|
@@ -8594,8 +8625,8 @@ class NgxUtilsModule {
|
|
|
8594
8625
|
constructor() {
|
|
8595
8626
|
}
|
|
8596
8627
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: NgxUtilsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8597
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.14", ngImport: i0, type: NgxUtilsModule, declarations: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplatePipe, GroupByPipe, IncludesPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, PopPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, ShiftPipe, SplitPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, BackgroundDirective, ComponentLoaderDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, DropdownDirective, DropdownContentDirective, DropdownToggleDirective, TabsItemDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, BtnComponent, BtnDefaultComponent, ChipsComponent, DropListComponent, DropdownBoxComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, IconComponent, IconDefaultComponent, InteractiveCanvasComponent, InteractiveItemComponent, InteractiveCircleComponent, InteractiveRectComponent, TabsComponent, UnorderedListComponent, UploadComponent], imports: [CommonModule,
|
|
8598
|
-
FormsModule], exports: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplatePipe, GroupByPipe, IncludesPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, PopPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, ShiftPipe, SplitPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, BackgroundDirective, ComponentLoaderDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, DropdownDirective, DropdownContentDirective, DropdownToggleDirective, TabsItemDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, BtnComponent, BtnDefaultComponent, ChipsComponent, DropListComponent, DropdownBoxComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, IconComponent, IconDefaultComponent, InteractiveCanvasComponent, InteractiveItemComponent, InteractiveCircleComponent, InteractiveRectComponent, TabsComponent, UnorderedListComponent, UploadComponent, FormsModule] }); }
|
|
8628
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.14", ngImport: i0, type: NgxUtilsModule, declarations: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplatePipe, GroupByPipe, IncludesPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, PopPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, ShiftPipe, SplitPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, AsyncMethodTargetDirective, BackgroundDirective, ComponentLoaderDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, DropdownDirective, DropdownContentDirective, DropdownToggleDirective, TabsItemDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, BtnComponent, BtnDefaultComponent, ChipsComponent, DropListComponent, DropdownBoxComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, IconComponent, IconDefaultComponent, InteractiveCanvasComponent, InteractiveItemComponent, InteractiveCircleComponent, InteractiveRectComponent, TabsComponent, UnorderedListComponent, UploadComponent], imports: [CommonModule,
|
|
8629
|
+
FormsModule], exports: [ChunkPipe, EntriesPipe, ExtraItemPropertiesPipe, FilterPipe, FindPipe, FormatNumberPipe, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplatePipe, GroupByPipe, IncludesPipe, IsTypePipe, JoinPipe, KeysPipe, MapPipe, MaxPipe, MinPipe, PopPipe, ReducePipe, RemapPipe, ReplacePipe, ReversePipe, RoundPipe, SafeHtmlPipe, ShiftPipe, SplitPipe, TranslatePipe, ValuesPipe, AsyncMethodBase, AsyncMethodDirective, AsyncMethodTargetDirective, BackgroundDirective, ComponentLoaderDirective, DynamicTableTemplateDirective, GlobalTemplateDirective, IconDirective, NgxTemplateOutletDirective, PaginationDirective, PaginationItemDirective, ResourceIfDirective, StickyDirective, StickyClassDirective, DropdownDirective, DropdownContentDirective, DropdownToggleDirective, TabsItemDirective, UnorderedListItemDirective, UnorderedListTemplateDirective, BtnComponent, BtnDefaultComponent, ChipsComponent, DropListComponent, DropdownBoxComponent, DynamicTableComponent, FakeModuleComponent, PaginationMenuComponent, IconComponent, IconDefaultComponent, InteractiveCanvasComponent, InteractiveItemComponent, InteractiveCircleComponent, InteractiveRectComponent, TabsComponent, UnorderedListComponent, UploadComponent, FormsModule] }); }
|
|
8599
8630
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: NgxUtilsModule, providers: pipes, imports: [CommonModule,
|
|
8600
8631
|
FormsModule, FormsModule] }); }
|
|
8601
8632
|
}
|
|
@@ -8625,5 +8656,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
8625
8656
|
* Generated bundle index. Do not edit.
|
|
8626
8657
|
*/
|
|
8627
8658
|
|
|
8628
|
-
export { API_SERVICE, APP_BASE_URL, AUTH_SERVICE, AclService, AjaxRequestHandler, ApiService, ArrayUtils, AsyncMethodBase, AsyncMethodDirective, AuthGuard, BASE_CONFIG, BUTTON_TYPE, BackgroundDirective, BaseDialogService, BaseHttpClient, BaseHttpService, BaseToasterService, BtnComponent, BtnDefaultComponent, CONFIG_SERVICE, CanvasColor, CanvasUtils, ChipsComponent, ChunkPipe, Circle, ComponentLoaderDirective, ComponentLoaderService, ConfigService, DIALOG_SERVICE, DateUtils, DragDropEventPlugin, DropListComponent, DropdownBoxComponent, DropdownContentDirective, DropdownDirective, DropdownToggleDirective, DynamicTableComponent, DynamicTableTemplateDirective, ERROR_HANDLER, EXPRESS_REQUEST, EntriesPipe, ErrorHandlerService, EventsService, ExtraItemPropertiesPipe, FactoryDependencies, FakeModuleComponent, FileSystemEntry, FileUtils, FilterPipe, FindPipe, ForbiddenZone, FormatNumberPipe, FormatterService, GenericValue, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplateDirective, GlobalTemplatePipe, GlobalTemplateService, GroupByPipe, HttpPromise, ICON_MAP, ICON_SERVICE, ICON_TYPE, IConfiguration, IconComponent, IconDefaultComponent, IconDirective, IconService, IncludesPipe, Initializer, InteractiveCanvasComponent, InteractiveCircleComponent, InteractiveItemComponent, InteractiveRectComponent, IsTypePipe, JSONfn, JoinPipe, KeysPipe, LANGUAGE_SERVICE, LanguageService, LoaderUtils, LocalHttpService, MapPipe, MathUtils, MaxPipe, MinPipe, NgxTemplateOutletDirective, NgxUtilsModule, OPTIONS_TOKEN, ObjectType, ObjectUtils, ObservableUtils, OpenApiService, PROMISE_SERVICE, PaginationDirective, PaginationItemContext, PaginationItemDirective, PaginationMenuComponent, Point, PopPipe, PromiseService, RESIZE_DELAY, RESIZE_STRATEGY, ROOT_ELEMENT, Rect, ReducePipe, ReflectUtils, RemapPipe, ReplacePipe, ResizeEventPlugin, ResourceIfContext, ResourceIfDirective, ReversePipe, RoundPipe, SCRIPT_PARAMS, SafeHtmlPipe, ScrollEventPlugin, SetUtils, ShiftPipe, SocketClient, SocketService, SplitPipe, StateService, StaticAuthService, StaticLanguageService, StickyClassDirective, StickyDirective, StorageMode, StorageService, StringUtils, TOASTER_SERVICE, TabsComponent, TabsItemDirective, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UploadComponent, ValuedPromise, ValuesPipe, Vector, WASI_IMPLEMENTATION, WasmService, cachedFactory, cancelablePromise, checkTransitions, getComponentDef, hashCode, impatientPromise, parseSelector, provideEntryComponents, provideWithOptions, selectorMatchesList };
|
|
8659
|
+
export { API_SERVICE, APP_BASE_URL, AUTH_SERVICE, AclService, AjaxRequestHandler, ApiService, ArrayUtils, AsyncMethodBase, AsyncMethodDirective, AsyncMethodTargetDirective, AuthGuard, BASE_CONFIG, BUTTON_TYPE, BackgroundDirective, BaseDialogService, BaseHttpClient, BaseHttpService, BaseToasterService, BtnComponent, BtnDefaultComponent, CONFIG_SERVICE, CanvasColor, CanvasUtils, ChipsComponent, ChunkPipe, Circle, ComponentLoaderDirective, ComponentLoaderService, ConfigService, DIALOG_SERVICE, DateUtils, DragDropEventPlugin, DropListComponent, DropdownBoxComponent, DropdownContentDirective, DropdownDirective, DropdownToggleDirective, DynamicTableComponent, DynamicTableTemplateDirective, ERROR_HANDLER, EXPRESS_REQUEST, EntriesPipe, ErrorHandlerService, EventsService, ExtraItemPropertiesPipe, FactoryDependencies, FakeModuleComponent, FileSystemEntry, FileUtils, FilterPipe, FindPipe, ForbiddenZone, FormatNumberPipe, FormatterService, GenericValue, GetOffsetPipe, GetTypePipe, GetValuePipe, GlobalTemplateDirective, GlobalTemplatePipe, GlobalTemplateService, GroupByPipe, HttpPromise, ICON_MAP, ICON_SERVICE, ICON_TYPE, IConfiguration, IconComponent, IconDefaultComponent, IconDirective, IconService, IncludesPipe, Initializer, InteractiveCanvasComponent, InteractiveCircleComponent, InteractiveItemComponent, InteractiveRectComponent, IsTypePipe, JSONfn, JoinPipe, KeysPipe, LANGUAGE_SERVICE, LanguageService, LoaderUtils, LocalHttpService, MapPipe, MathUtils, MaxPipe, MinPipe, NgxTemplateOutletDirective, NgxUtilsModule, OPTIONS_TOKEN, ObjectType, ObjectUtils, ObservableUtils, OpenApiService, PROMISE_SERVICE, PaginationDirective, PaginationItemContext, PaginationItemDirective, PaginationMenuComponent, Point, PopPipe, PromiseService, RESIZE_DELAY, RESIZE_STRATEGY, ROOT_ELEMENT, Rect, ReducePipe, ReflectUtils, RemapPipe, ReplacePipe, ResizeEventPlugin, ResourceIfContext, ResourceIfDirective, ReversePipe, RoundPipe, SCRIPT_PARAMS, SafeHtmlPipe, ScrollEventPlugin, SetUtils, ShiftPipe, SocketClient, SocketService, SplitPipe, StateService, StaticAuthService, StaticLanguageService, StickyClassDirective, StickyDirective, StorageMode, StorageService, StringUtils, TOASTER_SERVICE, TabsComponent, TabsItemDirective, TimerUtils, TranslatePipe, TranslatedUrlSerializer, UniqueUtils, UniversalService, UnorderedListComponent, UnorderedListItemDirective, UnorderedListTemplateDirective, UploadComponent, ValuedPromise, ValuesPipe, Vector, WASI_IMPLEMENTATION, WasmService, cachedFactory, cancelablePromise, checkTransitions, getComponentDef, hashCode, impatientPromise, parseSelector, provideEntryComponents, provideWithOptions, selectorMatchesList };
|
|
8629
8660
|
//# sourceMappingURL=stemy-ngx-utils.mjs.map
|