@piying-lib/angular-daisyui 1.0.11 → 1.0.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/piying-lib-angular-daisyui-extension.mjs +34 -79
- package/fesm2022/piying-lib-angular-daisyui-extension.mjs.map +1 -1
- package/fesm2022/piying-lib-angular-daisyui-field-control.mjs +11 -72
- package/fesm2022/piying-lib-angular-daisyui-field-control.mjs.map +1 -1
- package/fesm2022/piying-lib-angular-daisyui-field-group.mjs +6 -17
- package/fesm2022/piying-lib-angular-daisyui-field-group.mjs.map +1 -1
- package/fesm2022/piying-lib-angular-daisyui-non-field-control.mjs +8 -26
- package/fesm2022/piying-lib-angular-daisyui-non-field-control.mjs.map +1 -1
- package/fesm2022/piying-lib-angular-daisyui-wrapper.mjs +29 -3
- package/fesm2022/piying-lib-angular-daisyui-wrapper.mjs.map +1 -1
- package/package.json +2 -2
- package/wrapper/index.d.ts +20 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { NgTemplateOutlet
|
|
1
|
+
import { NgTemplateOutlet } from '@angular/common';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
3
|
import { viewChild, input, inject, computed, Component, model, InjectionToken, Injector, untracked, signal, Injectable, HostListener, Directive, effect, resource, ElementRef, linkedSignal, NgZone, EventEmitter, TemplateRef, ViewContainerRef, Output, forwardRef, ChangeDetectionStrategy } from '@angular/core';
|
|
4
|
-
import { SelectorlessOutlet } from '@cyia/ngx-common/directive';
|
|
5
4
|
import { StrOrTemplateComponent, isSchema, computedWithPrev, DefaultOptionConvert, transformOption } from '@piying-lib/angular-core';
|
|
6
5
|
import { CssPrefixPipe, MergeClassPipe, TwPrefixPipe } from '@piying-lib/angular-daisyui/pipe';
|
|
7
6
|
import { ThemeService, CheckboxService } from '@piying-lib/angular-daisyui/service';
|
|
@@ -13,6 +12,7 @@ import * as i1$1 from '@angular/forms';
|
|
|
13
12
|
import { FormsModule, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
14
13
|
import { PurePipe } from '@cyia/ngx-common/pipe';
|
|
15
14
|
import clsx from 'clsx';
|
|
15
|
+
import { SelectorlessOutlet } from '@cyia/ngx-common/directive';
|
|
16
16
|
import * as v from 'valibot';
|
|
17
17
|
import { setComponent, NFCSchema, actions } from '@piying/view-angular-core';
|
|
18
18
|
import { ThWC, TdWC } from '@piying-lib/angular-daisyui/wrapper';
|
|
@@ -45,16 +45,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImpo
|
|
|
45
45
|
type: Component,
|
|
46
46
|
args: [{ selector: 'app-menu-tree', imports: [
|
|
47
47
|
AttributesDirective,
|
|
48
|
-
NgClass,
|
|
49
48
|
CssPrefixPipe,
|
|
50
|
-
SelectorlessOutlet,
|
|
51
|
-
StrOrTemplateComponent,
|
|
52
49
|
RouterLink,
|
|
53
50
|
RouterLinkActive,
|
|
54
51
|
NgTemplateOutlet,
|
|
55
52
|
MatIconModule,
|
|
56
53
|
MergeClassPipe,
|
|
57
|
-
JsonPipe,
|
|
58
54
|
MergeClassPipe,
|
|
59
55
|
], template: "<ng-template #liBaseContent let-item>\n @if (item.icon; as icon) {\n <mat-icon\n [inline]=\"icon.inline\"\n [fontIcon]=\"icon.fontIcon\"\n [fontSet]=\"icon.fontSet\"\n [svgIcon]=\"icon.svgIcon\"\n ></mat-icon>\n }\n <span>\n {{ item.title }}\n </span>\n @if (item.badge; as badge) {\n <span [class]=\"badge.class | mergeClass: 'badge' | cssPrefix\">{{ badge.title }}</span>\n }\n</ng-template>\n\n<ng-template #liBase let-item>\n @if (item.router) {\n @let router = item.router;\n <a\n [queryParams]=\"router.queryParams\"\n [fragment]=\"router.fragment\"\n [queryParamsHandling]=\"router.queryParamsHandling\"\n [state]=\"router.state\"\n [info]=\"router.info\"\n [relativeTo]=\"router.relativeTo\"\n [target]=\"router.target\"\n [preserveFragment]=\"router.preserveFragment\"\n [skipLocationChange]=\"router.skipLocationChange\"\n [replaceUrl]=\"router.replaceUrl\"\n [routerLink]=\"router.routerLink\"\n [preserveFragment]=\"router.preserveFragment\"\n [routerLinkActive]=\"'menu-active'\"\n [routerLinkActiveOptions]=\"\n router.activate?.routerLinkActiveOptions ?? routerLinkActiveOptions\n \"\n [ariaCurrentWhenActive]=\"router.activate?.ariaCurrentWhenActive ?? undefined\"\n class=\"tooltip\"\n [attr.data-tip]=\"item.tooltip || ''\"\n >\n <ng-container *ngTemplateOutlet=\"liBaseContent; context: { $implicit: item }\"></ng-container>\n </a>\n } @else if (item.href) {\n <a [href]=\"item.href\" [target]=\"item.target\">\n <ng-container *ngTemplateOutlet=\"liBaseContent; context: { $implicit: item }\"></ng-container>\n </a>\n } @else {\n <ng-container *ngTemplateOutlet=\"liBaseContent; context: { $implicit: item }\"></ng-container>\n }\n</ng-template>\n<ng-template #liGroup let-item>\n <!-- todo open\u6D4B\u8BD5 -->\n <details open>\n <summary>{{ item.title }}</summary>\n <ul>\n @for (child of item.children; track $index) {\n <ng-container\n *ngTemplateOutlet=\"itemTemplate; context: { $implicit: child }\"\n ></ng-container>\n }\n </ul>\n </details>\n</ng-template>\n\n<ng-template #itemTemplate let-item>\n @if ((item.hidden && !item.hidden(item)) || !item.hidden) {\n @switch (item.type) {\n @case ('group') {\n <li class=\"tooltip\" [attr.data-tip]=\"item.tooltip || ''\">\n <ng-container *ngTemplateOutlet=\"liGroup; context: { $implicit: item }\"></ng-container>\n </li>\n }\n @case ('divider') {\n <li></li>\n }\n @default {\n <li class=\"tooltip\" [attr.data-tip]=\"item.tooltip || ''\">\n <ng-container *ngTemplateOutlet=\"liBase; context: { $implicit: item }\"></ng-container>\n </li>\n }\n }\n }\n</ng-template>\n<ng-template #templateRef let-attr=\"attributes\">\n <ul\n [class]=\"wrapperClass$() | mergeClass: attr()?.class\"\n [attributes]=\"attr()\"\n [excludes]=\"['class']\"\n >\n @for (child of list(); track $index) {\n <ng-container *ngTemplateOutlet=\"itemTemplate; context: { $implicit: child }\"></ng-container>\n }\n </ul>\n</ng-template>\n" }]
|
|
60
56
|
}], propDecorators: { templateRef: [{ type: i0.ViewChild, args: ['templateRef', { isSignal: true }] }], list: [{ type: i0.Input, args: [{ isSignal: true, alias: "list", required: false }] }], size: [{ type: i0.Input, args: [{ isSignal: true, alias: "size", required: false }] }], direction: [{ type: i0.Input, args: [{ isSignal: true, alias: "direction", required: false }] }] } });
|
|
@@ -165,18 +161,7 @@ class PaginationNFCC {
|
|
|
165
161
|
}
|
|
166
162
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: PaginationNFCC, decorators: [{
|
|
167
163
|
type: Component,
|
|
168
|
-
args: [{ selector: 'app-pagination', imports: [
|
|
169
|
-
AttributesDirective,
|
|
170
|
-
MatIcon,
|
|
171
|
-
NgTemplateOutlet,
|
|
172
|
-
NgClass,
|
|
173
|
-
CssPrefixPipe,
|
|
174
|
-
StrOrTemplateComponent,
|
|
175
|
-
SelectorlessOutlet,
|
|
176
|
-
PurePipe,
|
|
177
|
-
FormsModule,
|
|
178
|
-
MergeClassPipe,
|
|
179
|
-
], template: "<ng-template #templateRef let-attr=\"attributes\">\n <div\n [class]=\"'flex items-center gap-2' | mergeClass: attr()?.class\"\n [attributes]=\"attr()\"\n [excludes]=\"['class']\"\n >\n @if (sizeOptions(); as sizeOptions) {\n <select class=\"select w-20\" [ngModel]=\"value().size\" (ngModelChange)=\"pageSizeChange($event)\">\n @for (item of sizeOptions; track $index) {\n <option [ngValue]=\"item\">\n {{ optionsLabel() ? (optionsLabel()! | pure: item : value().index : count()) : item }}\n </option>\n }\n </select>\n }\n <div [class]=\"wrapperClass$()\">\n <button\n class=\"join-item btn p-0 w-(--size)\"\n [disabled]=\"value().index === 0\"\n (click)=\"gotoPage(0)\"\n >\n \u00AB\n </button>\n @for (item of pageRange$$(); track $index) {\n @if (item.type === 'go') {\n <button\n class=\"join-item btn p-0 w-(--size)\"\n [aria-label]=\"item.value + 1\"\n [class.btn-active]=\"item.value === value().index\"\n (click)=\"gotoPage(item.value)\"\n >\n {{ item.value + 1 }}\n </button>\n } @else if (item.type === 'prev') {\n <button class=\"join-item btn p-0 w-(--size)\" (click)=\"gotoPage(value().index - 5)\">\n <\n </button>\n } @else if (item.type === 'next') {\n <button class=\"join-item btn p-0 w-(--size)\" (click)=\"gotoPage(value().index + 5)\">\n >\n </button>\n }\n }\n <button\n class=\"join-item btn p-0 w-(--size)\"\n [disabled]=\"value().index === maxPageCount$$() - 1\"\n (click)=\"gotoPage(maxPageCount$$() - 1)\"\n >\n \u00BB\n </button>\n </div>\n </div>\n</ng-template>\n" }]
|
|
164
|
+
args: [{ selector: 'app-pagination', imports: [AttributesDirective, PurePipe, FormsModule, MergeClassPipe], template: "<ng-template #templateRef let-attr=\"attributes\">\n <div\n [class]=\"'flex items-center gap-2' | mergeClass: attr()?.class\"\n [attributes]=\"attr()\"\n [excludes]=\"['class']\"\n >\n @if (sizeOptions(); as sizeOptions) {\n <select class=\"select w-20\" [ngModel]=\"value().size\" (ngModelChange)=\"pageSizeChange($event)\">\n @for (item of sizeOptions; track $index) {\n <option [ngValue]=\"item\">\n {{ optionsLabel() ? (optionsLabel()! | pure: item : value().index : count()) : item }}\n </option>\n }\n </select>\n }\n <div [class]=\"wrapperClass$()\">\n <button\n class=\"join-item btn p-0 w-(--size)\"\n [disabled]=\"value().index === 0\"\n (click)=\"gotoPage(0)\"\n >\n \u00AB\n </button>\n @for (item of pageRange$$(); track $index) {\n @if (item.type === 'go') {\n <button\n class=\"join-item btn p-0 w-(--size)\"\n [aria-label]=\"item.value + 1\"\n [class.btn-active]=\"item.value === value().index\"\n (click)=\"gotoPage(item.value)\"\n >\n {{ item.value + 1 }}\n </button>\n } @else if (item.type === 'prev') {\n <button class=\"join-item btn p-0 w-(--size)\" (click)=\"gotoPage(value().index - 5)\">\n <\n </button>\n } @else if (item.type === 'next') {\n <button class=\"join-item btn p-0 w-(--size)\" (click)=\"gotoPage(value().index + 5)\">\n >\n </button>\n }\n }\n <button\n class=\"join-item btn p-0 w-(--size)\"\n [disabled]=\"value().index === maxPageCount$$() - 1\"\n (click)=\"gotoPage(maxPageCount$$() - 1)\"\n >\n \u00BB\n </button>\n </div>\n </div>\n</ng-template>\n" }]
|
|
180
165
|
}], propDecorators: { templateRef: [{ type: i0.ViewChild, args: ['templateRef', { isSignal: true }] }], direction: [{ type: i0.Input, args: [{ isSignal: true, alias: "direction", required: false }] }], sizeOptions: [{ type: i0.Input, args: [{ isSignal: true, alias: "sizeOptions", required: false }] }], optionsLabel: [{ type: i0.Input, args: [{ isSignal: true, alias: "optionsLabel", required: false }] }], value: [{ type: i0.Input, args: [{ isSignal: true, alias: "value", required: true }] }, { type: i0.Output, args: ["valueChange"] }], count: [{ type: i0.Input, args: [{ isSignal: true, alias: "count", required: true }] }] } });
|
|
181
166
|
|
|
182
167
|
class TableRowFGC extends PiyingViewGroupBase {
|
|
@@ -185,15 +170,7 @@ class TableRowFGC extends PiyingViewGroupBase {
|
|
|
185
170
|
}
|
|
186
171
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: TableRowFGC, decorators: [{
|
|
187
172
|
type: Component,
|
|
188
|
-
args: [{ selector: 'tr', imports: [
|
|
189
|
-
AttributesDirective,
|
|
190
|
-
NgTemplateOutlet,
|
|
191
|
-
PurePipe,
|
|
192
|
-
SelectorlessOutlet,
|
|
193
|
-
StrOrTemplateComponent,
|
|
194
|
-
JsonPipe,
|
|
195
|
-
FormsModule,
|
|
196
|
-
], providers: [], template: "@for (field of children$$(); track $index) {\n <ng-container\n *ngTemplateOutlet=\"fieldTemplateRef(); context: { $implicit: field }\"\n ></ng-container>\n}\n" }]
|
|
173
|
+
args: [{ selector: 'tr', imports: [NgTemplateOutlet, FormsModule], providers: [], template: "@for (field of children$$(); track $index) {\n <ng-container\n *ngTemplateOutlet=\"fieldTemplateRef(); context: { $implicit: field }\"\n ></ng-container>\n}\n" }]
|
|
197
174
|
}] });
|
|
198
175
|
|
|
199
176
|
const TABLE_STATUS_TOKEN = new InjectionToken('TABLE_STATUS');
|
|
@@ -286,7 +263,7 @@ class TableNFCC {
|
|
|
286
263
|
})
|
|
287
264
|
.filter(Boolean);
|
|
288
265
|
if (colList.length) {
|
|
289
|
-
|
|
266
|
+
const items = row.define.items;
|
|
290
267
|
items.length = 0;
|
|
291
268
|
row.define.items.push(...colList);
|
|
292
269
|
return row.define;
|
|
@@ -340,11 +317,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImpo
|
|
|
340
317
|
type: Component,
|
|
341
318
|
args: [{ selector: 'app-table', imports: [
|
|
342
319
|
AttributesDirective,
|
|
343
|
-
NgTemplateOutlet,
|
|
344
320
|
PurePipe,
|
|
345
321
|
SelectorlessOutlet,
|
|
346
|
-
StrOrTemplateComponent,
|
|
347
|
-
JsonPipe,
|
|
348
322
|
FormsModule,
|
|
349
323
|
CssPrefixPipe,
|
|
350
324
|
MergeClassPipe,
|
|
@@ -358,27 +332,35 @@ function dataConvert(data) {
|
|
|
358
332
|
return [data.length, data];
|
|
359
333
|
}
|
|
360
334
|
|
|
361
|
-
function
|
|
335
|
+
function defaultCompare(key) {
|
|
336
|
+
return (a, b) => {
|
|
337
|
+
return a[key] > b[key] ? 1 : -1;
|
|
338
|
+
};
|
|
339
|
+
}
|
|
340
|
+
function localData(data, options) {
|
|
362
341
|
const result = dataConvert(data);
|
|
363
342
|
return async (res) => {
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
list = result[1];
|
|
368
|
-
}
|
|
369
|
-
else {
|
|
370
|
-
const start = page.index * page.size;
|
|
371
|
-
list = result[1].slice(start, start + page.size);
|
|
343
|
+
let list = result[1];
|
|
344
|
+
if (options?.filterFn) {
|
|
345
|
+
list = list.filter((item) => options.filterFn(item, res.params.params?.['filter']));
|
|
372
346
|
}
|
|
373
347
|
const direction = res.params.params?.['direction'];
|
|
374
348
|
if (direction) {
|
|
375
349
|
for (const item of direction) {
|
|
350
|
+
const compareFn = options?.sortCompareMap
|
|
351
|
+
? options.sortCompareMap[item.key]
|
|
352
|
+
: defaultCompare(item.key);
|
|
376
353
|
list = list.sort((a, b) => {
|
|
377
|
-
const result = a
|
|
354
|
+
const result = compareFn(a, b);
|
|
378
355
|
return item.value === 1 ? result : -result;
|
|
379
356
|
});
|
|
380
357
|
}
|
|
381
358
|
}
|
|
359
|
+
const page = res.params.params?.['page'];
|
|
360
|
+
if (page) {
|
|
361
|
+
const start = page.index * page.size;
|
|
362
|
+
list = list.slice(start, start + page.size);
|
|
363
|
+
}
|
|
382
364
|
return [result[0], list];
|
|
383
365
|
};
|
|
384
366
|
}
|
|
@@ -464,15 +446,16 @@ class TableResourceWC {
|
|
|
464
446
|
field$$ = inject(PI_VIEW_FIELD_TOKEN);
|
|
465
447
|
#status = inject(TableStatusService);
|
|
466
448
|
props$$ = computed(() => this.field$$().props(), ...(ngDevMode ? [{ debugName: "props$$" }] : []));
|
|
449
|
+
#localSearchOptions$$ = computed(() => this.props$$()['localSearchOptions'], ...(ngDevMode ? [{ debugName: "#localSearchOptions$$" }] : []));
|
|
467
450
|
#data$$ = computed(() => this.field$$().props()['data'], ...(ngDevMode ? [{ debugName: "#data$$" }] : []));
|
|
468
451
|
rawData$$ = computed(() => {
|
|
469
452
|
const data = this.#data$$();
|
|
470
453
|
this.#status.updateIndex$();
|
|
471
454
|
return Array.isArray(data) || !data
|
|
472
|
-
? Promise.resolve(localData(data ?? []))
|
|
455
|
+
? Promise.resolve(localData(data ?? [], this.#localSearchOptions$$()))
|
|
473
456
|
: data().then((value) => {
|
|
474
457
|
if (Array.isArray(value) || !value) {
|
|
475
|
-
return localData(value ?? []);
|
|
458
|
+
return localData(value ?? [], this.#localSearchOptions$$());
|
|
476
459
|
}
|
|
477
460
|
return value;
|
|
478
461
|
});
|
|
@@ -490,7 +473,7 @@ class TableResourceWC {
|
|
|
490
473
|
}),
|
|
491
474
|
loader: async (res) => {
|
|
492
475
|
const { params } = res;
|
|
493
|
-
|
|
476
|
+
const dataResult = await params.data;
|
|
494
477
|
return dataResult(res).then((data) => {
|
|
495
478
|
return dataConvert(data);
|
|
496
479
|
});
|
|
@@ -647,7 +630,7 @@ class SortHeaderWC {
|
|
|
647
630
|
return this.#direction$$() ?? 0;
|
|
648
631
|
}, ...(ngDevMode ? [{ debugName: "index$" }] : []));
|
|
649
632
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: SortHeaderWC, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
650
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.3.14", type: SortHeaderWC, isStandalone: true, selector: "app-sort-header", viewQueries: [{ propertyName: "templateRef", first: true, predicate: ["templateRef"], descendants: true, isSignal: true }], ngImport: i0, template: "<ng-template #templateRef let-attr=\"attributes\">\n <ng-container insertField></ng-container>\n\n
|
|
633
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.3.14", type: SortHeaderWC, isStandalone: true, selector: "app-sort-header", viewQueries: [{ propertyName: "templateRef", first: true, predicate: ["templateRef"], descendants: true, isSignal: true }], ngImport: i0, template: "<ng-template #templateRef let-attr=\"attributes\">\n <div class=\"flex items-center\">\n <ng-container insertField></ng-container>\n\n <label\n [class]=\"'swap swap-rotate' | mergeClass: attr()?.class | cssPrefix\"\n [attributes]=\"attr()\"\n [excludes]=\"['class']\"\n >\n <input type=\"checkbox\" [(inputSort)]=\"index$\" [key]=\"key$$()\" />\n\n <div [class]=\"'swap-indeterminate' | cssPrefix\"></div>\n <div [class]=\"'swap-on' | mergeClass: 'flex' | twPrefix\">\n <mat-icon>arrow_upward</mat-icon>\n </div>\n <div [class]=\"'swap-off' | cssPrefix | mergeClass: 'flex' | twPrefix\">\n <mat-icon>arrow_downward</mat-icon>\n </div>\n </label>\n </div>\n</ng-template>\n", dependencies: [{ kind: "component", type: MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: AttributesDirective, selector: "[attributes]", inputs: ["attributes", "excludes"] }, { kind: "directive", type: inputSortDirective, selector: "[inputSort]", inputs: ["key", "inputSort"], outputs: ["inputSortChange"] }, { kind: "directive", type: InsertFieldDirective, selector: "[insertField]", exportAs: ["insertField"] }, { kind: "pipe", type: CssPrefixPipe, name: "cssPrefix" }, { kind: "pipe", type: MergeClassPipe, name: "mergeClass" }, { kind: "pipe", type: TwPrefixPipe, name: "twPrefix" }] });
|
|
651
634
|
}
|
|
652
635
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: SortHeaderWC, decorators: [{
|
|
653
636
|
type: Component,
|
|
@@ -659,7 +642,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImpo
|
|
|
659
642
|
AttributesDirective,
|
|
660
643
|
inputSortDirective,
|
|
661
644
|
InsertFieldDirective,
|
|
662
|
-
|
|
645
|
+
TwPrefixPipe
|
|
646
|
+
], template: "<ng-template #templateRef let-attr=\"attributes\">\n <div class=\"flex items-center\">\n <ng-container insertField></ng-container>\n\n <label\n [class]=\"'swap swap-rotate' | mergeClass: attr()?.class | cssPrefix\"\n [attributes]=\"attr()\"\n [excludes]=\"['class']\"\n >\n <input type=\"checkbox\" [(inputSort)]=\"index$\" [key]=\"key$$()\" />\n\n <div [class]=\"'swap-indeterminate' | cssPrefix\"></div>\n <div [class]=\"'swap-on' | mergeClass: 'flex' | twPrefix\">\n <mat-icon>arrow_upward</mat-icon>\n </div>\n <div [class]=\"'swap-off' | cssPrefix | mergeClass: 'flex' | twPrefix\">\n <mat-icon>arrow_downward</mat-icon>\n </div>\n </label>\n </div>\n</ng-template>\n" }]
|
|
663
647
|
}], propDecorators: { templateRef: [{ type: i0.ViewChild, args: ['templateRef', { isSignal: true }] }] } });
|
|
664
648
|
|
|
665
649
|
class SortTablehWC {
|
|
@@ -731,7 +715,7 @@ class TableCheckboxAllWC {
|
|
|
731
715
|
return this.props$$()['key'];
|
|
732
716
|
}, ...(ngDevMode ? [{ debugName: "#key$$" }] : []));
|
|
733
717
|
toggle() {
|
|
734
|
-
this.#checkboxService.
|
|
718
|
+
this.#checkboxService.selectAll(this.#key$$());
|
|
735
719
|
}
|
|
736
720
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: TableCheckboxAllWC, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
737
721
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.2.0", version: "20.3.14", type: TableCheckboxAllWC, isStandalone: true, selector: "app-table-checkbox-all", viewQueries: [{ propertyName: "templateRef", first: true, predicate: ["templateRef"], descendants: true, isSignal: true }], ngImport: i0, template: "<ng-template #templateRef let-attr=\"attributes\">\n <div (click)=\"toggle()\">\n <ng-container insertField></ng-container>\n </div>\n</ng-template>\n", dependencies: [{ kind: "directive", type: InsertFieldDirective, selector: "[insertField]", exportAs: ["insertField"] }] });
|
|
@@ -1194,13 +1178,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImpo
|
|
|
1194
1178
|
args: [{ selector: 'app-picker-ref', imports: [
|
|
1195
1179
|
FormsModule,
|
|
1196
1180
|
AttributesDirective,
|
|
1197
|
-
CssPrefixPipe,
|
|
1198
|
-
MergeClassPipe,
|
|
1199
|
-
StrOrTemplateComponent,
|
|
1200
1181
|
SelectorlessOutlet,
|
|
1201
1182
|
CdkConnectedOverlay,
|
|
1202
1183
|
CdkOverlayOrigin,
|
|
1203
|
-
PurePipe,
|
|
1204
1184
|
], providers: [
|
|
1205
1185
|
{
|
|
1206
1186
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -1256,18 +1236,7 @@ class OptionListFCC extends BaseControl {
|
|
|
1256
1236
|
}
|
|
1257
1237
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: OptionListFCC, decorators: [{
|
|
1258
1238
|
type: Component,
|
|
1259
|
-
args: [{ selector: 'app-option-list', imports: [
|
|
1260
|
-
FormsModule,
|
|
1261
|
-
AttributesDirective,
|
|
1262
|
-
NgTemplateOutlet,
|
|
1263
|
-
NgClass,
|
|
1264
|
-
CssPrefixPipe,
|
|
1265
|
-
MergeClassPipe,
|
|
1266
|
-
TwPrefixPipe,
|
|
1267
|
-
StrOrTemplateComponent,
|
|
1268
|
-
SelectorlessOutlet,
|
|
1269
|
-
PurePipe,
|
|
1270
|
-
], providers: [
|
|
1239
|
+
args: [{ selector: 'app-option-list', imports: [FormsModule, NgTemplateOutlet, SelectorlessOutlet, PurePipe], providers: [
|
|
1271
1240
|
{
|
|
1272
1241
|
provide: NG_VALUE_ACCESSOR,
|
|
1273
1242
|
useExisting: forwardRef(() => OptionListFCC),
|
|
@@ -1304,21 +1273,7 @@ class ListTemplateNFCC {
|
|
|
1304
1273
|
}
|
|
1305
1274
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: ListTemplateNFCC, decorators: [{
|
|
1306
1275
|
type: Component,
|
|
1307
|
-
args: [{ selector: 'app-list-template', imports: [
|
|
1308
|
-
AttributesDirective,
|
|
1309
|
-
NgClass,
|
|
1310
|
-
CssPrefixPipe,
|
|
1311
|
-
SelectorlessOutlet,
|
|
1312
|
-
StrOrTemplateComponent,
|
|
1313
|
-
RouterLink,
|
|
1314
|
-
RouterLinkActive,
|
|
1315
|
-
NgTemplateOutlet,
|
|
1316
|
-
MatIconModule,
|
|
1317
|
-
MergeClassPipe,
|
|
1318
|
-
JsonPipe,
|
|
1319
|
-
MergeClassPipe,
|
|
1320
|
-
PurePipe,
|
|
1321
|
-
], template: "<ng-template #templateRef let-attr=\"attributes\">\n @for (child of list(); track $index) {\n <ng-container\n [selectlessOutlet]=\"PiyingView\"\n [selectlessOutletInputs]=\"templateInput$$ | pure: child\"\n ></ng-container>\n }\n</ng-template>\n" }]
|
|
1276
|
+
args: [{ selector: 'app-list-template', imports: [SelectorlessOutlet, MatIconModule, PurePipe], template: "<ng-template #templateRef let-attr=\"attributes\">\n @for (child of list(); track $index) {\n <ng-container\n [selectlessOutlet]=\"PiyingView\"\n [selectlessOutletInputs]=\"templateInput$$ | pure: child\"\n ></ng-container>\n }\n</ng-template>\n" }]
|
|
1322
1277
|
}], propDecorators: { templateRef: [{ type: i0.ViewChild, args: ['templateRef', { isSignal: true }] }], template: [{ type: i0.Input, args: [{ isSignal: true, alias: "template", required: true }] }], list: [{ type: i0.Input, args: [{ isSignal: true, alias: "list", required: false }] }] } });
|
|
1323
1278
|
|
|
1324
1279
|
var component_index = /*#__PURE__*/Object.freeze({
|
|
@@ -1346,7 +1301,7 @@ class FilterOptionNFCC {
|
|
|
1346
1301
|
}
|
|
1347
1302
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImport: i0, type: FilterOptionNFCC, decorators: [{
|
|
1348
1303
|
type: Component,
|
|
1349
|
-
args: [{ selector: 'app-filter-option', imports: [
|
|
1304
|
+
args: [{ selector: 'app-filter-option', imports: [FormsModule, CssPrefixPipe, MergeClassPipe, AttributesDirective, FormsModule], template: "<ng-template #templateRef let-attr=\"attributes\">\n <input\n type=\"text\"\n [attributes]=\"attr?.()\"\n [excludes]=\"['class']\"\n [class]=\"attr?.().class | mergeClass: 'input' | cssPrefix\"\n [(ngModel)]=\"content\"\n (keydown)=\"stopKeyboardListen($event)\"\n />\n</ng-template>\n" }]
|
|
1350
1305
|
}], propDecorators: { templateRef: [{ type: i0.ViewChild, args: ['templateRef', { isSignal: true }] }] } });
|
|
1351
1306
|
|
|
1352
1307
|
class OptionListLocalFilterWC {
|