ngx-axis-appforge 0.0.72 → 0.0.73
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.
|
@@ -23,11 +23,11 @@ declare class TransferOptions extends ValueAccessOptions {
|
|
|
23
23
|
readonly searchPlaceholder: WritableSignal<string>;
|
|
24
24
|
readonly useSelectInput: WritableSignal<boolean>;
|
|
25
25
|
readonly variant: WritableSignal<"outlined" | "borderless" | "filled" | "underlined">;
|
|
26
|
-
readonly size: WritableSignal<"
|
|
26
|
+
readonly size: WritableSignal<"small" | "default" | "large">;
|
|
27
27
|
readonly allowClear: WritableSignal<boolean>;
|
|
28
28
|
readonly maxTagCount: WritableSignal<number>;
|
|
29
29
|
readonly placeholder: WritableSignal<string>;
|
|
30
|
-
readonly tableSize: WritableSignal<"
|
|
30
|
+
readonly tableSize: WritableSignal<"middle" | "small" | "default">;
|
|
31
31
|
readonly showOrder: WritableSignal<boolean>;
|
|
32
32
|
readonly showDataSize: WritableSignal<boolean>;
|
|
33
33
|
readonly bordered: WritableSignal<boolean>;
|
|
@@ -267,11 +267,11 @@ class Transfer extends ValueAccess {
|
|
|
267
267
|
return { x: x + "px", y: "" };
|
|
268
268
|
}
|
|
269
269
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: Transfer, deps: [{ token: i1.TableService }], target: i0.ɵɵFactoryTarget.Component });
|
|
270
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.4", type: Transfer, isStandalone: true, selector: "axis-transfer", inputs: { selectValue: { classPropertyName: "selectValue", publicName: "selectValue", isSignal: true, isRequired: false, transformFunction: null }, transferValue: { classPropertyName: "transferValue", publicName: "transferValue", isSignal: true, isRequired: false, transformFunction: null }, modalVisible: { classPropertyName: "modalVisible", publicName: "modalVisible", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selectValue: "selectValueChange", transferValue: "transferValueChange", modalVisible: "modalVisibleChange" }, providers: [DatePipe, DecimalPipe, PercentPipe, TableFieldDisplayService, TableService], usesInheritance: true, ngImport: i0, template: "@if (options.useSelectInput()){\n@if (options.readonly()) {\n{{displayValue()}}\n}@else {\n<nz-select nzMode=\"multiple\" [nzOptions]=\"selectOptions()\" [nzDisabled]=\"options.disabled()\"\n [nzVariant]=\"options.variant()\" [nzSize]=\"options.size()\" [nzAllowClear]=\"options.allowClear()\"\n [nzMaxTagCount]=\"options.maxTagCount()\" [nzPlaceHolder]=\"options.placeholder()\" [nzDropdownStyle]=\"{display:'none'}\"\n (click)=\"openModal()\" [(ngModel)]=\"selectValue\" (ngModelChange)=\"onSelectChange($event)\"></nz-select>\n<nz-modal [(nzVisible)]=\"modalVisible\" [nzTitle]=\"options.modalTitle()\" nzWidth=\"fit-content\" nzDraggable\n (nzOnOk)=\"onModalOk()\" (nzOnCancel)=\"onModalCancel()\">\n <div *nzModalContent>\n <ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n </div>\n</nz-modal>\n}\n}@else{\n<ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n}\n\n<ng-template #transferTmpl>\n <ng-container [axisDynamic]=\"options.header()\"></ng-container>\n <nz-transfer #transfer [nzDataSource]=\"transferData()\" [nzDisabled]=\"options.disabled() || options.readonly()\"\n [nzTitles]=\"titles()\" [nzOperations]=\"operations()\" [nzItemUnit]=\"itemUnit()\" [nzItemsUnit]=\"itemsUnit()\"\n [nzShowSelectAll]=\"options.selectAll() && options.type() != 'table'\" [nzShowSearch]=\"options.showSearch()\"\n [nzSearchPlaceholder]=\"options.searchPlaceholder()\" [nzNotFoundContent]=\"options.notFoundContent()\"\n [nzOneWay]=\"options.oneWay() && options.type() != 'table'\"\n [nzRenderList]=\"options.type()=='table'? [tableList, tableList]:null\"\n (nzChange)=\"onTransferChange(transfer.rightDataSource)\">\n <ng-template #tableList let-items let-direction=\"direction\" let-stat=\"stat\" let-disabled=\"disabled\"\n let-onItemSelectAll=\"onItemSelectAll\" let-onItemSelect=\"onItemSelect\">\n <nz-table #table [nzSize]=\"options.tableSize()\" [nzData]=\"items\" [nzLoading]=\"!options.data()\"\n [nzBordered]=\"options.bordered()\" [nzOuterBordered]=\"options.outerBordered()\"\n [nzShowPagination]=\"options.showPagination()\" [nzPageSize]=\"options.pageSize()\"\n [nzShowSizeChanger]=\"options.showSizeChanger()\" [nzPageSizeOptions]=\"tableSvc.pageSizeOptions()\"\n [nzShowTotal]=\"options.showDataSize()?totalRange:null\" [nzScroll]=\"scroll()\">\n <thead>\n <tr>\n @if(options.selectAll()){\n <th [nzDisabled]=\"disabled\" [nzChecked]=\"stat.checkAll\" [nzIndeterminate]=\"stat.checkHalf\"\n [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\" (nzCheckedChange)=\"onItemSelectAll($event)\">\n </th>\n }@else{\n <th [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\"></th>\n }\n @if (options.showOrder()) {\n <th nzAlign=\"center\" [nzWidth]=\"tableSvc.leaderFieldWidth()+'px'\">\u5E8F\u53F7</th>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <th [attr.data-field]=\"f.field()\" [nzWidth]=\"f.width() == null ?null:f.width()+'px'\"\n [nzShowSort]=\"f.sortAble()\" [nzSortFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.sortFn\"\n [nzSortOrder]=\"f.sortOrder()\" [nzSortPriority]=\"f.sortPriority()??false\"\n [nzShowFilter]=\"f.filterAble()\"\n [nzFilters]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterItems ?? []\"\n [nzFilterFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterFn\"\n (nzFilterChange)=\"tableSvc.filterChange(f.field(),$event)\"\n [nzFilterMultiple]=\"f.filterMultiple()\" [nzAlign]=\"f.align()\"\n [nzLeft]=\"f.freezeMode()=='left'\" [nzRight]=\"f.freezeMode()=='right'\">\n <span>\n {{f.title()}}\n </span>\n </th>\n }\n </tr>\n </thead>\n <tbody>\n @for (data of table.data; track data;let i=$index) {\n <tr [axisScope]=\"options.id+'.row'\" scopeName=\"\u8868\u683C\u884C\"\n [dataSources]=\"[{name:'row',type:'local',data:data}]\" (click)=\"onItemSelect(data)\">\n <td [nzChecked]=\"!!data.checked\" [nzDisabled]=\"disabled || data.disabled\"\n (nzCheckedChange)=\"onItemSelect(data)\"></td>\n @if (options.showOrder()) {\n <td nzAlign=\"center\">{{(table.nzPageIndex-1) * table.nzPageSize + i+1}}</td>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <td [nzLeft]=\"f.freezeMode()=='left'\" [attr.data-field]=\"f.field()\"\n [nzRight]=\"f.freezeMode()=='right'\" [nzAlign]=\"f.align()\">\n @if (f.child()) {\n <ng-container [axisDynamic]=\"f.child()\"></ng-container>\n }@else {\n {{data[f.field()]}}\n }\n </td>\n }\n </tr>\n }\n </tbody>\n </nz-table>\n <ng-template #totalRange let-range=\"range\" let-total>\n \u5171{{ total }}\u6761\u6570\u636E\uFF0C\u7B2C{{ range[0] }}-{{ range[1] }}\u6761\n </ng-template>\n </ng-template>\n </nz-transfer>\n</ng-template>", styles: [":host{display:block;width:100%}nz-select{width:100%}nz-transfer{width:100%;justify-content:center}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: NzTransferModule }, { kind: "component", type: i3.NzTransferComponent, selector: "nz-transfer", inputs: ["nzDisabled", "nzDataSource", "nzTitles", "nzOperations", "nzListStyle", "nzShowSelectAll", "nzItemUnit", "nzItemsUnit", "nzCanMove", "nzRenderList", "nzRender", "nzFooter", "nzShowSearch", "nzFilterOption", "nzSearchPlaceholder", "nzNotFoundContent", "nzTargetKeys", "nzSelectedKeys", "nzStatus", "nzOneWay"], outputs: ["nzChange", "nzSearchChange", "nzSelectChange"], exportAs: ["nzTransfer"] }, { kind: "directive", type: DynamicDirective, selector: "[axisDynamic]", inputs: ["axisDynamic", "standalone", "isDesign", "forceRenderOnChange"], outputs: ["onRegisteValueAccess"], exportAs: ["axisDynamic"] }, { kind: "ngmodule", type: NzTableModule }, { kind: "component", type: i4.NzTableComponent, selector: "nz-table", inputs: ["nzTableLayout", "nzShowTotal", "nzItemRender", "nzTitle", "nzFooter", "nzNoResult", "nzPageSizeOptions", "nzVirtualItemSize", "nzVirtualMaxBufferPx", "nzVirtualMinBufferPx", "nzVirtualForTrackBy", "nzLoadingDelay", "nzPageIndex", "nzPageSize", "nzTotal", "nzWidthConfig", "nzData", "nzCustomColumn", "nzPaginationPosition", "nzScroll", "noDataVirtualHeight", "nzPaginationType", "nzFrontPagination", "nzTemplateMode", "nzShowPagination", "nzLoading", "nzOuterBordered", "nzLoadingIndicator", "nzBordered", "nzSize", "nzShowSizeChanger", "nzHideOnSinglePage", "nzShowQuickJumper", "nzSimple"], outputs: ["nzPageSizeChange", "nzPageIndexChange", "nzQueryParams", "nzCurrentPageDataChange", "nzCustomColumnChange"], exportAs: ["nzTable"] }, { kind: "component", type: i4.NzThAddOnComponent, selector: "th[nzColumnKey], th[nzSortFn], th[nzSortOrder], th[nzFilters], th[nzShowSort], th[nzShowFilter], th[nzCustomFilter]", inputs: ["nzColumnKey", "nzFilterMultiple", "nzSortOrder", "nzSortPriority", "nzSortDirections", "nzFilters", "nzSortFn", "nzFilterFn", "nzShowSort", "nzShowFilter", "nzCustomFilter"], outputs: ["nzCheckedChange", "nzSortOrderChange", "nzFilterChange"] }, { kind: "directive", type: i4.NzTableCellDirective, selector: "th:not(.nz-disable-th), td:not(.nz-disable-td)" }, { kind: "directive", type: i4.NzThMeasureDirective, selector: "th", inputs: ["nzWidth", "colspan", "colSpan", "rowspan", "rowSpan"] }, { kind: "component", type: i4.NzTdAddOnComponent, selector: "td[nzChecked], td[nzDisabled], td[nzIndeterminate], td[nzIndentSize], td[nzExpand], td[nzShowExpand], td[nzShowCheckbox]", inputs: ["nzChecked", "nzDisabled", "nzIndeterminate", "nzLabel", "nzIndentSize", "nzShowExpand", "nzShowCheckbox", "nzExpand", "nzExpandIcon"], outputs: ["nzCheckedChange", "nzExpandChange"] }, { kind: "component", type: i4.NzTheadComponent, selector: "thead:not(.ant-table-thead)", outputs: ["nzSortOrderChange"] }, { kind: "component", type: i4.NzTbodyComponent, selector: "tbody" }, { kind: "directive", type: i4.NzTrDirective, selector: "tr:not([nz-table-measure-row]):not([nzExpand]):not([nz-table-fixed-row])" }, { kind: "directive", type: i4.NzCellFixedDirective, selector: "td[nzRight],th[nzRight],td[nzLeft],th[nzLeft]", inputs: ["nzRight", "nzLeft", "colspan", "colSpan"] }, { kind: "directive", type: i4.NzCellAlignDirective, selector: "th[nzAlign],td[nzAlign]", inputs: ["nzAlign"] }, { kind: "component", type: i4.NzThSelectionComponent, selector: "th[nzSelections],th[nzChecked],th[nzShowCheckbox],th[nzShowRowSelection]", inputs: ["nzSelections", "nzChecked", "nzDisabled", "nzIndeterminate", "nzLabel", "nzShowCheckbox", "nzShowRowSelection"], outputs: ["nzCheckedChange"] }, { kind: "ngmodule", type: NzSelectModule }, { kind: "component", type: i5.NzSelectComponent, selector: "nz-select", inputs: ["nzId", "nzSize", "nzStatus", "nzVariant", "nzOptionHeightPx", "nzOptionOverflowSize", "nzDropdownClassName", "nzDropdownMatchSelectWidth", "nzDropdownStyle", "nzNotFoundContent", "nzPlaceHolder", "nzPlacement", "nzMaxTagCount", "nzDropdownRender", "nzCustomTemplate", "nzPrefix", "nzSuffixIcon", "nzClearIcon", "nzRemoveIcon", "nzMenuItemSelectedIcon", "nzTokenSeparators", "nzMaxTagPlaceholder", "nzMaxMultipleCount", "nzMode", "nzFilterOption", "compareWith", "nzAllowClear", "nzBorderless", "nzShowSearch", "nzLoading", "nzAutoFocus", "nzAutoClearSearchValue", "nzServerSearch", "nzDisabled", "nzOpen", "nzSelectOnTab", "nzBackdrop", "nzOptions", "nzShowArrow"], outputs: ["nzOnSearch", "nzScrollToBottom", "nzOpenChange", "nzBlur", "nzFocus", "nzOnClear"], exportAs: ["nzSelect"] }, { kind: "ngmodule", type: NzModalModule }, { kind: "component", type: i6.NzModalComponent, selector: "nz-modal", inputs: ["nzMask", "nzMaskClosable", "nzCloseOnNavigation", "nzVisible", "nzClosable", "nzOkLoading", "nzOkDisabled", "nzCancelDisabled", "nzCancelLoading", "nzKeyboard", "nzNoAnimation", "nzCentered", "nzDraggable", "nzContent", "nzFooter", "nzZIndex", "nzWidth", "nzWrapClassName", "nzClassName", "nzStyle", "nzTitle", "nzCloseIcon", "nzMaskStyle", "nzBodyStyle", "nzOkText", "nzCancelText", "nzOkType", "nzOkDanger", "nzIconType", "nzModalType", "nzAutofocus", "nzOnOk", "nzOnCancel"], outputs: ["nzOnOk", "nzOnCancel", "nzAfterOpen", "nzAfterClose", "nzVisibleChange"], exportAs: ["nzModal"] }, { kind: "directive", type: i6.NzModalContentDirective, selector: "[nzModalContent]", exportAs: ["nzModalContent"] }, { kind: "directive", type: ScopeDirective, selector: "[axisScope]", inputs: ["axisScope", "scopeName", "isRoot", "dataSources"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
270
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.4", type: Transfer, isStandalone: true, selector: "axis-transfer", inputs: { selectValue: { classPropertyName: "selectValue", publicName: "selectValue", isSignal: true, isRequired: false, transformFunction: null }, transferValue: { classPropertyName: "transferValue", publicName: "transferValue", isSignal: true, isRequired: false, transformFunction: null }, modalVisible: { classPropertyName: "modalVisible", publicName: "modalVisible", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selectValue: "selectValueChange", transferValue: "transferValueChange", modalVisible: "modalVisibleChange" }, providers: [DatePipe, DecimalPipe, PercentPipe, TableFieldDisplayService, TableService], usesInheritance: true, ngImport: i0, template: "@if (options.useSelectInput()){\n@if (options.readonly()) {\n{{displayValue()}}\n}@else {\n<nz-select nzMode=\"multiple\" [nzOptions]=\"selectOptions()\" [nzDisabled]=\"options.disabled()\"\n [nzVariant]=\"options.variant()\" [nzSize]=\"options.size()\" [nzAllowClear]=\"options.allowClear()\"\n [nzMaxTagCount]=\"options.maxTagCount()\" [nzPlaceHolder]=\"options.placeholder()\" [nzDropdownStyle]=\"{display:'none'}\"\n (click)=\"openModal()\" [(ngModel)]=\"selectValue\" (ngModelChange)=\"onSelectChange($event)\"></nz-select>\n<nz-modal [(nzVisible)]=\"modalVisible\" [nzTitle]=\"options.modalTitle()\" nzWidth=\"fit-content\" nzDraggable\n (nzOnOk)=\"onModalOk()\" (nzOnCancel)=\"onModalCancel()\">\n <div *nzModalContent>\n <ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n </div>\n</nz-modal>\n}\n}@else{\n<ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n}\n\n<ng-template #transferTmpl>\n <ng-container [axisDynamic]=\"options.header()\"></ng-container>\n <nz-transfer #transfer [nzDataSource]=\"transferData()\" [nzDisabled]=\"options.disabled() || options.readonly()\"\n [nzTitles]=\"titles()\" [nzOperations]=\"operations()\" [nzItemUnit]=\"itemUnit()\" [nzItemsUnit]=\"itemsUnit()\"\n [nzShowSelectAll]=\"options.selectAll() && options.type() != 'table'\" [nzShowSearch]=\"options.showSearch()\"\n [nzSearchPlaceholder]=\"options.searchPlaceholder()\" [nzNotFoundContent]=\"options.notFoundContent()\"\n [nzOneWay]=\"options.oneWay() && options.type() != 'table'\"\n [nzRenderList]=\"options.type()=='table'? [tableList, tableList]:null\"\n (nzChange)=\"onTransferChange(transfer.rightDataSource)\">\n <ng-template #tableList let-items let-direction=\"direction\" let-stat=\"stat\" let-disabled=\"disabled\"\n let-onItemSelectAll=\"onItemSelectAll\" let-onItemSelect=\"onItemSelect\">\n <nz-table #table [nzSize]=\"options.tableSize()\" [nzData]=\"items\" [nzLoading]=\"!options.data()\"\n [nzBordered]=\"options.bordered()\" [nzOuterBordered]=\"options.outerBordered()\"\n [nzShowPagination]=\"options.showPagination()\" [nzPageSize]=\"options.pageSize()\"\n [nzShowSizeChanger]=\"options.showSizeChanger()\" [nzPageSizeOptions]=\"tableSvc.pageSizeOptions()\"\n [nzShowTotal]=\"options.showDataSize()?totalRange:null\" [nzScroll]=\"scroll()\">\n <thead>\n <tr>\n @if(options.selectAll()){\n <th [nzDisabled]=\"disabled\" [nzChecked]=\"stat.checkAll\" [nzIndeterminate]=\"stat.checkHalf\"\n [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\" (nzCheckedChange)=\"onItemSelectAll($event)\">\n </th>\n }@else{\n <th [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\"></th>\n }\n @if (options.showOrder()) {\n <th nzAlign=\"center\" [nzWidth]=\"tableSvc.leaderFieldWidth()+'px'\">\u5E8F\u53F7</th>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <th [attr.data-field]=\"f.field()\" [nzWidth]=\"f.width() == null ?null:f.width()+'px'\"\n [nzShowSort]=\"f.sortAble()\" [nzSortFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.sortFn\"\n [nzSortOrder]=\"f.sortOrder()\" [nzSortPriority]=\"f.sortPriority()??false\"\n [nzShowFilter]=\"f.filterAble()\"\n [nzFilters]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterItems ?? []\"\n [nzFilterFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterFn\"\n (nzFilterChange)=\"tableSvc.filterChange(f.field(),$event)\"\n [nzFilterMultiple]=\"f.filterMultiple()\" [nzAlign]=\"f.align()\"\n [nzLeft]=\"f.freezeMode()=='left'\" [nzRight]=\"f.freezeMode()=='right'\">\n <span>\n {{f.title()}}\n </span>\n </th>\n }\n </tr>\n </thead>\n <tbody>\n @for (data of table.data; track data;let i=$index) {\n <tr [axisScope]=\"options.id+'.row'\" scopeName=\"\u8868\u683C\u884C\"\n [dataSources]=\"[{name:'row',type:'local',data:data.origin}]\" (click)=\"onItemSelect(data)\">\n <td [nzChecked]=\"!!data.checked\" [nzDisabled]=\"disabled || data.disabled\"\n (nzCheckedChange)=\"onItemSelect(data)\"></td>\n @if (options.showOrder()) {\n <td nzAlign=\"center\">{{(table.nzPageIndex-1) * table.nzPageSize + i+1}}</td>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <td [nzLeft]=\"f.freezeMode()=='left'\" [attr.data-field]=\"f.field()\"\n [nzRight]=\"f.freezeMode()=='right'\" [nzAlign]=\"f.align()\">\n @if (f.child()) {\n <ng-container [axisDynamic]=\"f.child()\"></ng-container>\n }@else {\n {{data.origin[f.field()]}}\n }\n </td>\n }\n </tr>\n }\n </tbody>\n </nz-table>\n <ng-template #totalRange let-range=\"range\" let-total>\n \u5171{{ total }}\u6761\u6570\u636E\uFF0C\u7B2C{{ range[0] }}-{{ range[1] }}\u6761\n </ng-template>\n </ng-template>\n </nz-transfer>\n</ng-template>", styles: [":host{display:block;width:100%}nz-select{width:100%}nz-transfer{width:100%;justify-content:center}\n"], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: NzTransferModule }, { kind: "component", type: i3.NzTransferComponent, selector: "nz-transfer", inputs: ["nzDisabled", "nzDataSource", "nzTitles", "nzOperations", "nzListStyle", "nzShowSelectAll", "nzItemUnit", "nzItemsUnit", "nzCanMove", "nzRenderList", "nzRender", "nzFooter", "nzShowSearch", "nzFilterOption", "nzSearchPlaceholder", "nzNotFoundContent", "nzTargetKeys", "nzSelectedKeys", "nzStatus", "nzOneWay"], outputs: ["nzChange", "nzSearchChange", "nzSelectChange"], exportAs: ["nzTransfer"] }, { kind: "directive", type: DynamicDirective, selector: "[axisDynamic]", inputs: ["axisDynamic", "standalone", "isDesign", "forceRenderOnChange"], outputs: ["onRegisteValueAccess"], exportAs: ["axisDynamic"] }, { kind: "ngmodule", type: NzTableModule }, { kind: "component", type: i4.NzTableComponent, selector: "nz-table", inputs: ["nzTableLayout", "nzShowTotal", "nzItemRender", "nzTitle", "nzFooter", "nzNoResult", "nzPageSizeOptions", "nzVirtualItemSize", "nzVirtualMaxBufferPx", "nzVirtualMinBufferPx", "nzVirtualForTrackBy", "nzLoadingDelay", "nzPageIndex", "nzPageSize", "nzTotal", "nzWidthConfig", "nzData", "nzCustomColumn", "nzPaginationPosition", "nzScroll", "noDataVirtualHeight", "nzPaginationType", "nzFrontPagination", "nzTemplateMode", "nzShowPagination", "nzLoading", "nzOuterBordered", "nzLoadingIndicator", "nzBordered", "nzSize", "nzShowSizeChanger", "nzHideOnSinglePage", "nzShowQuickJumper", "nzSimple"], outputs: ["nzPageSizeChange", "nzPageIndexChange", "nzQueryParams", "nzCurrentPageDataChange", "nzCustomColumnChange"], exportAs: ["nzTable"] }, { kind: "component", type: i4.NzThAddOnComponent, selector: "th[nzColumnKey], th[nzSortFn], th[nzSortOrder], th[nzFilters], th[nzShowSort], th[nzShowFilter], th[nzCustomFilter]", inputs: ["nzColumnKey", "nzFilterMultiple", "nzSortOrder", "nzSortPriority", "nzSortDirections", "nzFilters", "nzSortFn", "nzFilterFn", "nzShowSort", "nzShowFilter", "nzCustomFilter"], outputs: ["nzCheckedChange", "nzSortOrderChange", "nzFilterChange"] }, { kind: "directive", type: i4.NzTableCellDirective, selector: "th:not(.nz-disable-th), td:not(.nz-disable-td)" }, { kind: "directive", type: i4.NzThMeasureDirective, selector: "th", inputs: ["nzWidth", "colspan", "colSpan", "rowspan", "rowSpan"] }, { kind: "component", type: i4.NzTdAddOnComponent, selector: "td[nzChecked], td[nzDisabled], td[nzIndeterminate], td[nzIndentSize], td[nzExpand], td[nzShowExpand], td[nzShowCheckbox]", inputs: ["nzChecked", "nzDisabled", "nzIndeterminate", "nzLabel", "nzIndentSize", "nzShowExpand", "nzShowCheckbox", "nzExpand", "nzExpandIcon"], outputs: ["nzCheckedChange", "nzExpandChange"] }, { kind: "component", type: i4.NzTheadComponent, selector: "thead:not(.ant-table-thead)", outputs: ["nzSortOrderChange"] }, { kind: "component", type: i4.NzTbodyComponent, selector: "tbody" }, { kind: "directive", type: i4.NzTrDirective, selector: "tr:not([nz-table-measure-row]):not([nzExpand]):not([nz-table-fixed-row])" }, { kind: "directive", type: i4.NzCellFixedDirective, selector: "td[nzRight],th[nzRight],td[nzLeft],th[nzLeft]", inputs: ["nzRight", "nzLeft", "colspan", "colSpan"] }, { kind: "directive", type: i4.NzCellAlignDirective, selector: "th[nzAlign],td[nzAlign]", inputs: ["nzAlign"] }, { kind: "component", type: i4.NzThSelectionComponent, selector: "th[nzSelections],th[nzChecked],th[nzShowCheckbox],th[nzShowRowSelection]", inputs: ["nzSelections", "nzChecked", "nzDisabled", "nzIndeterminate", "nzLabel", "nzShowCheckbox", "nzShowRowSelection"], outputs: ["nzCheckedChange"] }, { kind: "ngmodule", type: NzSelectModule }, { kind: "component", type: i5.NzSelectComponent, selector: "nz-select", inputs: ["nzId", "nzSize", "nzStatus", "nzVariant", "nzOptionHeightPx", "nzOptionOverflowSize", "nzDropdownClassName", "nzDropdownMatchSelectWidth", "nzDropdownStyle", "nzNotFoundContent", "nzPlaceHolder", "nzPlacement", "nzMaxTagCount", "nzDropdownRender", "nzCustomTemplate", "nzPrefix", "nzSuffixIcon", "nzClearIcon", "nzRemoveIcon", "nzMenuItemSelectedIcon", "nzTokenSeparators", "nzMaxTagPlaceholder", "nzMaxMultipleCount", "nzMode", "nzFilterOption", "compareWith", "nzAllowClear", "nzBorderless", "nzShowSearch", "nzLoading", "nzAutoFocus", "nzAutoClearSearchValue", "nzServerSearch", "nzDisabled", "nzOpen", "nzSelectOnTab", "nzBackdrop", "nzOptions", "nzShowArrow"], outputs: ["nzOnSearch", "nzScrollToBottom", "nzOpenChange", "nzBlur", "nzFocus", "nzOnClear"], exportAs: ["nzSelect"] }, { kind: "ngmodule", type: NzModalModule }, { kind: "component", type: i6.NzModalComponent, selector: "nz-modal", inputs: ["nzMask", "nzMaskClosable", "nzCloseOnNavigation", "nzVisible", "nzClosable", "nzOkLoading", "nzOkDisabled", "nzCancelDisabled", "nzCancelLoading", "nzKeyboard", "nzNoAnimation", "nzCentered", "nzDraggable", "nzContent", "nzFooter", "nzZIndex", "nzWidth", "nzWrapClassName", "nzClassName", "nzStyle", "nzTitle", "nzCloseIcon", "nzMaskStyle", "nzBodyStyle", "nzOkText", "nzCancelText", "nzOkType", "nzOkDanger", "nzIconType", "nzModalType", "nzAutofocus", "nzOnOk", "nzOnCancel"], outputs: ["nzOnOk", "nzOnCancel", "nzAfterOpen", "nzAfterClose", "nzVisibleChange"], exportAs: ["nzModal"] }, { kind: "directive", type: i6.NzModalContentDirective, selector: "[nzModalContent]", exportAs: ["nzModalContent"] }, { kind: "directive", type: ScopeDirective, selector: "[axisScope]", inputs: ["axisScope", "scopeName", "isRoot", "dataSources"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
271
271
|
}
|
|
272
272
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.4", ngImport: i0, type: Transfer, decorators: [{
|
|
273
273
|
type: Component,
|
|
274
|
-
args: [{ selector: 'axis-transfer', imports: [FormsModule, NzTransferModule, DynamicDirective, NzTableModule, NzSelectModule, NzModalModule, ScopeDirective, NgTemplateOutlet], changeDetection: ChangeDetectionStrategy.OnPush, providers: [DatePipe, DecimalPipe, PercentPipe, TableFieldDisplayService, TableService], template: "@if (options.useSelectInput()){\n@if (options.readonly()) {\n{{displayValue()}}\n}@else {\n<nz-select nzMode=\"multiple\" [nzOptions]=\"selectOptions()\" [nzDisabled]=\"options.disabled()\"\n [nzVariant]=\"options.variant()\" [nzSize]=\"options.size()\" [nzAllowClear]=\"options.allowClear()\"\n [nzMaxTagCount]=\"options.maxTagCount()\" [nzPlaceHolder]=\"options.placeholder()\" [nzDropdownStyle]=\"{display:'none'}\"\n (click)=\"openModal()\" [(ngModel)]=\"selectValue\" (ngModelChange)=\"onSelectChange($event)\"></nz-select>\n<nz-modal [(nzVisible)]=\"modalVisible\" [nzTitle]=\"options.modalTitle()\" nzWidth=\"fit-content\" nzDraggable\n (nzOnOk)=\"onModalOk()\" (nzOnCancel)=\"onModalCancel()\">\n <div *nzModalContent>\n <ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n </div>\n</nz-modal>\n}\n}@else{\n<ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n}\n\n<ng-template #transferTmpl>\n <ng-container [axisDynamic]=\"options.header()\"></ng-container>\n <nz-transfer #transfer [nzDataSource]=\"transferData()\" [nzDisabled]=\"options.disabled() || options.readonly()\"\n [nzTitles]=\"titles()\" [nzOperations]=\"operations()\" [nzItemUnit]=\"itemUnit()\" [nzItemsUnit]=\"itemsUnit()\"\n [nzShowSelectAll]=\"options.selectAll() && options.type() != 'table'\" [nzShowSearch]=\"options.showSearch()\"\n [nzSearchPlaceholder]=\"options.searchPlaceholder()\" [nzNotFoundContent]=\"options.notFoundContent()\"\n [nzOneWay]=\"options.oneWay() && options.type() != 'table'\"\n [nzRenderList]=\"options.type()=='table'? [tableList, tableList]:null\"\n (nzChange)=\"onTransferChange(transfer.rightDataSource)\">\n <ng-template #tableList let-items let-direction=\"direction\" let-stat=\"stat\" let-disabled=\"disabled\"\n let-onItemSelectAll=\"onItemSelectAll\" let-onItemSelect=\"onItemSelect\">\n <nz-table #table [nzSize]=\"options.tableSize()\" [nzData]=\"items\" [nzLoading]=\"!options.data()\"\n [nzBordered]=\"options.bordered()\" [nzOuterBordered]=\"options.outerBordered()\"\n [nzShowPagination]=\"options.showPagination()\" [nzPageSize]=\"options.pageSize()\"\n [nzShowSizeChanger]=\"options.showSizeChanger()\" [nzPageSizeOptions]=\"tableSvc.pageSizeOptions()\"\n [nzShowTotal]=\"options.showDataSize()?totalRange:null\" [nzScroll]=\"scroll()\">\n <thead>\n <tr>\n @if(options.selectAll()){\n <th [nzDisabled]=\"disabled\" [nzChecked]=\"stat.checkAll\" [nzIndeterminate]=\"stat.checkHalf\"\n [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\" (nzCheckedChange)=\"onItemSelectAll($event)\">\n </th>\n }@else{\n <th [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\"></th>\n }\n @if (options.showOrder()) {\n <th nzAlign=\"center\" [nzWidth]=\"tableSvc.leaderFieldWidth()+'px'\">\u5E8F\u53F7</th>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <th [attr.data-field]=\"f.field()\" [nzWidth]=\"f.width() == null ?null:f.width()+'px'\"\n [nzShowSort]=\"f.sortAble()\" [nzSortFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.sortFn\"\n [nzSortOrder]=\"f.sortOrder()\" [nzSortPriority]=\"f.sortPriority()??false\"\n [nzShowFilter]=\"f.filterAble()\"\n [nzFilters]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterItems ?? []\"\n [nzFilterFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterFn\"\n (nzFilterChange)=\"tableSvc.filterChange(f.field(),$event)\"\n [nzFilterMultiple]=\"f.filterMultiple()\" [nzAlign]=\"f.align()\"\n [nzLeft]=\"f.freezeMode()=='left'\" [nzRight]=\"f.freezeMode()=='right'\">\n <span>\n {{f.title()}}\n </span>\n </th>\n }\n </tr>\n </thead>\n <tbody>\n @for (data of table.data; track data;let i=$index) {\n <tr [axisScope]=\"options.id+'.row'\" scopeName=\"\u8868\u683C\u884C\"\n [dataSources]=\"[{name:'row',type:'local',data:data}]\" (click)=\"onItemSelect(data)\">\n <td [nzChecked]=\"!!data.checked\" [nzDisabled]=\"disabled || data.disabled\"\n (nzCheckedChange)=\"onItemSelect(data)\"></td>\n @if (options.showOrder()) {\n <td nzAlign=\"center\">{{(table.nzPageIndex-1) * table.nzPageSize + i+1}}</td>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <td [nzLeft]=\"f.freezeMode()=='left'\" [attr.data-field]=\"f.field()\"\n [nzRight]=\"f.freezeMode()=='right'\" [nzAlign]=\"f.align()\">\n @if (f.child()) {\n <ng-container [axisDynamic]=\"f.child()\"></ng-container>\n }@else {\n {{data[f.field()]}}\n }\n </td>\n }\n </tr>\n }\n </tbody>\n </nz-table>\n <ng-template #totalRange let-range=\"range\" let-total>\n \u5171{{ total }}\u6761\u6570\u636E\uFF0C\u7B2C{{ range[0] }}-{{ range[1] }}\u6761\n </ng-template>\n </ng-template>\n </nz-transfer>\n</ng-template>", styles: [":host{display:block;width:100%}nz-select{width:100%}nz-transfer{width:100%;justify-content:center}\n"] }]
|
|
274
|
+
args: [{ selector: 'axis-transfer', imports: [FormsModule, NzTransferModule, DynamicDirective, NzTableModule, NzSelectModule, NzModalModule, ScopeDirective, NgTemplateOutlet], changeDetection: ChangeDetectionStrategy.OnPush, providers: [DatePipe, DecimalPipe, PercentPipe, TableFieldDisplayService, TableService], template: "@if (options.useSelectInput()){\n@if (options.readonly()) {\n{{displayValue()}}\n}@else {\n<nz-select nzMode=\"multiple\" [nzOptions]=\"selectOptions()\" [nzDisabled]=\"options.disabled()\"\n [nzVariant]=\"options.variant()\" [nzSize]=\"options.size()\" [nzAllowClear]=\"options.allowClear()\"\n [nzMaxTagCount]=\"options.maxTagCount()\" [nzPlaceHolder]=\"options.placeholder()\" [nzDropdownStyle]=\"{display:'none'}\"\n (click)=\"openModal()\" [(ngModel)]=\"selectValue\" (ngModelChange)=\"onSelectChange($event)\"></nz-select>\n<nz-modal [(nzVisible)]=\"modalVisible\" [nzTitle]=\"options.modalTitle()\" nzWidth=\"fit-content\" nzDraggable\n (nzOnOk)=\"onModalOk()\" (nzOnCancel)=\"onModalCancel()\">\n <div *nzModalContent>\n <ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n </div>\n</nz-modal>\n}\n}@else{\n<ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n}\n\n<ng-template #transferTmpl>\n <ng-container [axisDynamic]=\"options.header()\"></ng-container>\n <nz-transfer #transfer [nzDataSource]=\"transferData()\" [nzDisabled]=\"options.disabled() || options.readonly()\"\n [nzTitles]=\"titles()\" [nzOperations]=\"operations()\" [nzItemUnit]=\"itemUnit()\" [nzItemsUnit]=\"itemsUnit()\"\n [nzShowSelectAll]=\"options.selectAll() && options.type() != 'table'\" [nzShowSearch]=\"options.showSearch()\"\n [nzSearchPlaceholder]=\"options.searchPlaceholder()\" [nzNotFoundContent]=\"options.notFoundContent()\"\n [nzOneWay]=\"options.oneWay() && options.type() != 'table'\"\n [nzRenderList]=\"options.type()=='table'? [tableList, tableList]:null\"\n (nzChange)=\"onTransferChange(transfer.rightDataSource)\">\n <ng-template #tableList let-items let-direction=\"direction\" let-stat=\"stat\" let-disabled=\"disabled\"\n let-onItemSelectAll=\"onItemSelectAll\" let-onItemSelect=\"onItemSelect\">\n <nz-table #table [nzSize]=\"options.tableSize()\" [nzData]=\"items\" [nzLoading]=\"!options.data()\"\n [nzBordered]=\"options.bordered()\" [nzOuterBordered]=\"options.outerBordered()\"\n [nzShowPagination]=\"options.showPagination()\" [nzPageSize]=\"options.pageSize()\"\n [nzShowSizeChanger]=\"options.showSizeChanger()\" [nzPageSizeOptions]=\"tableSvc.pageSizeOptions()\"\n [nzShowTotal]=\"options.showDataSize()?totalRange:null\" [nzScroll]=\"scroll()\">\n <thead>\n <tr>\n @if(options.selectAll()){\n <th [nzDisabled]=\"disabled\" [nzChecked]=\"stat.checkAll\" [nzIndeterminate]=\"stat.checkHalf\"\n [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\" (nzCheckedChange)=\"onItemSelectAll($event)\">\n </th>\n }@else{\n <th [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\"></th>\n }\n @if (options.showOrder()) {\n <th nzAlign=\"center\" [nzWidth]=\"tableSvc.leaderFieldWidth()+'px'\">\u5E8F\u53F7</th>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <th [attr.data-field]=\"f.field()\" [nzWidth]=\"f.width() == null ?null:f.width()+'px'\"\n [nzShowSort]=\"f.sortAble()\" [nzSortFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.sortFn\"\n [nzSortOrder]=\"f.sortOrder()\" [nzSortPriority]=\"f.sortPriority()??false\"\n [nzShowFilter]=\"f.filterAble()\"\n [nzFilters]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterItems ?? []\"\n [nzFilterFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterFn\"\n (nzFilterChange)=\"tableSvc.filterChange(f.field(),$event)\"\n [nzFilterMultiple]=\"f.filterMultiple()\" [nzAlign]=\"f.align()\"\n [nzLeft]=\"f.freezeMode()=='left'\" [nzRight]=\"f.freezeMode()=='right'\">\n <span>\n {{f.title()}}\n </span>\n </th>\n }\n </tr>\n </thead>\n <tbody>\n @for (data of table.data; track data;let i=$index) {\n <tr [axisScope]=\"options.id+'.row'\" scopeName=\"\u8868\u683C\u884C\"\n [dataSources]=\"[{name:'row',type:'local',data:data.origin}]\" (click)=\"onItemSelect(data)\">\n <td [nzChecked]=\"!!data.checked\" [nzDisabled]=\"disabled || data.disabled\"\n (nzCheckedChange)=\"onItemSelect(data)\"></td>\n @if (options.showOrder()) {\n <td nzAlign=\"center\">{{(table.nzPageIndex-1) * table.nzPageSize + i+1}}</td>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <td [nzLeft]=\"f.freezeMode()=='left'\" [attr.data-field]=\"f.field()\"\n [nzRight]=\"f.freezeMode()=='right'\" [nzAlign]=\"f.align()\">\n @if (f.child()) {\n <ng-container [axisDynamic]=\"f.child()\"></ng-container>\n }@else {\n {{data.origin[f.field()]}}\n }\n </td>\n }\n </tr>\n }\n </tbody>\n </nz-table>\n <ng-template #totalRange let-range=\"range\" let-total>\n \u5171{{ total }}\u6761\u6570\u636E\uFF0C\u7B2C{{ range[0] }}-{{ range[1] }}\u6761\n </ng-template>\n </ng-template>\n </nz-transfer>\n</ng-template>", styles: [":host{display:block;width:100%}nz-select{width:100%}nz-transfer{width:100%;justify-content:center}\n"] }]
|
|
275
275
|
}], ctorParameters: () => [{ type: i1.TableService }] });
|
|
276
276
|
|
|
277
277
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngx-axis-appforge-axis-components-transfer.mjs","sources":["../../../axis-components/transfer/transfer.options.ts","../../../axis-components/transfer/transfer.ts","../../../axis-components/transfer/transfer.html","../../../axis-components/transfer/ngx-axis-appforge-axis-components-transfer.ts"],"sourcesContent":["import { signal, WritableSignal } from \"@angular/core\";\nimport { ValueAccessOptions } from \"ngx-axis-appforge/core\";\nimport { BaseTableFieldOptions, BaseTableOptions } from 'ngx-axis-appforge/axis-components/table-helper'\n\nexport class TransferOptions extends ValueAccessOptions {\n\n readonly labelField = signal(\"title\");\n readonly valueField = signal(\"key\");\n readonly disabledField = signal(\"disabled\");\n readonly fullValue = signal(false);\n readonly allowInvalidValue = signal(false);\n readonly data = signal<any>(undefined);\n\n readonly type = signal<'normal' | 'table'>('normal');\n readonly oneWay = signal(false);\n readonly modalTitle = signal('请选择');\n readonly titles = signal('待选,已选');\n readonly operations = signal('');\n readonly itemUnits = signal<string>('项');\n readonly selectAll = signal(true);\n readonly notFoundContent = signal('列表为空');\n readonly showSearch = signal(false);\n readonly searchPlaceholder = signal('请输入搜索内容');\n\n readonly useSelectInput = signal(true);\n readonly variant = signal<'outlined' | 'borderless' | 'filled' | 'underlined'>('outlined');\n readonly size = signal<'large' | 'small' | 'default'>('default');\n readonly allowClear = signal(true);\n readonly maxTagCount = signal(Infinity);\n readonly placeholder = signal(\"\");\n\n readonly tableSize = signal<'middle' | 'small' | 'default'>(\"middle\");\n readonly showOrder = signal(true);\n readonly showDataSize = signal(true);\n readonly bordered = signal(false);\n readonly outerBordered = signal(false);\n readonly tableWidth = signal<number | undefined>(undefined);\n readonly showPagination = signal(true);\n readonly pageSize = signal(10);\n readonly showSizeChanger = signal(true);\n readonly pageSizeOptions = signal(\"10,20,50,100\");\n\n readonly header = signal<any>(undefined);\n readonly fields = signal<any[]>([]);\n\n}\n\nexport class TransferTableOptions implements BaseTableOptions {\n constructor(transfer: TransferOptions) {\n this.size = transfer.tableSize;\n this.showOrder = transfer.showOrder;\n this.showDataSize = transfer.showDataSize;\n this.bordered = transfer.bordered;\n this.outerBordered = transfer.outerBordered;\n this.width = transfer.tableWidth;\n this.showPagination = transfer.showPagination;\n this.pageSize = transfer.pageSize;\n this.showSizeChanger = transfer.showSizeChanger;\n this.pageSizeOptions = transfer.pageSizeOptions;\n }\n size: WritableSignal<\"small\" | \"default\" | \"middle\">;\n showOrder: WritableSignal<boolean>;\n showDataSize: WritableSignal<boolean>;\n bordered: WritableSignal<boolean>;\n outerBordered: WritableSignal<boolean>;\n width: WritableSignal<number | undefined>;\n showPagination: WritableSignal<boolean>;\n pageSize: WritableSignal<number>;\n showSizeChanger: WritableSignal<boolean>;\n pageSizeOptions: WritableSignal<string>;\n useBackEndPaging = signal(false);\n}\n\nexport class TransferTableFieldOptions implements BaseTableFieldOptions {\n readonly inuse = signal(true);\n readonly field = signal(\"unknown\");\n readonly title = signal(\"未命名\");\n readonly sortAble = signal(false);\n readonly sortOrder = signal<\"descend\" | \"ascend\" | null>(null);\n readonly sortPriority = signal<number | null>(null);\n readonly filterAble = signal(false);\n readonly filterMultiple = signal(false);\n readonly width = signal<number | null>(null);\n readonly align = signal<'left' | 'right' | 'center'>(\"left\");\n readonly freezeMode = signal<'none' | 'left' | 'right'>(\"none\");\n readonly child = signal<any>(undefined);\n}","import { ChangeDetectionStrategy, Component, computed, effect, model, untracked } from '@angular/core';\nimport { DynamicDirective, ScopeDirective, ValueAccess } from 'ngx-axis-appforge/core';\nimport { TableFieldDisplayService, TableService } from 'ngx-axis-appforge/axis-components/table-helper'\nimport { FormsModule } from '@angular/forms';\nimport { TransferOptions, TransferTableFieldOptions, TransferTableOptions } from './transfer.options';\nimport { NzTransferModule, TransferItem } from 'ng-zorro-antd/transfer';\nimport { NzTableModule } from 'ng-zorro-antd/table';\nimport { NzSelectModule } from 'ng-zorro-antd/select';\nimport { NzModalModule } from 'ng-zorro-antd/modal';\nimport { DatePipe, DecimalPipe, NgTemplateOutlet, PercentPipe } from '@angular/common';\n\n@Component({\n selector: 'axis-transfer',\n imports: [FormsModule, NzTransferModule, DynamicDirective, NzTableModule, NzSelectModule, NzModalModule, ScopeDirective, NgTemplateOutlet],\n templateUrl: './transfer.html',\n styleUrl: './transfer.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [DatePipe, DecimalPipe, PercentPipe, TableFieldDisplayService, TableService]\n})\nexport class Transfer extends ValueAccess<TransferOptions> {\n\n constructor(public tableSvc: TableService<TransferTableOptions, TransferTableFieldOptions>) {\n super();\n effect(() => {\n if (this.options.type() == \"table\") {\n this.tableSvc.init({ data: this.data, options: new TransferTableOptions(this.options), fields: this.fields });\n }\n })\n effect(() => {\n if (this.options.type() == \"table\") {\n this.fields().forEach((f, i) => {\n this.bindWithConfig(this.options.fields()[i], { options: f, tag: `bindField.${i}` });\n });\n }\n });\n effect(() => {\n if (!this.options.allowInvalidValue() && this.options.data() !== undefined && this.selectValue().some(r => !this.validValue().has(r))) {\n untracked(() => {\n const next = this.selectValue().filter(r => this.validValue().has(r));\n if (this.options.fullValue()) {\n this.setInitValue(next.map(r => this.dataMap.get(r)));\n } else {\n this.setInitValue(next);\n }\n });\n }\n });\n }\n\n override options: TransferOptions = new TransferOptions();\n private dataMap = new Map();\n private readonly validValue = computed(() => this.buildValidValue());\n readonly data = computed(() => this.buildData());\n readonly transferData = computed(() => this.buildTransferData());\n readonly selectOptions = computed(() => this.selectValue().map(r => this.dataMap.get(r)).map(d => ({ label: d[this.options.labelField()], value: d[this.options.valueField()] })))\n\n readonly selectValue = model<any[]>([]);\n readonly transferValue = model<any[] | null>(null);\n readonly displayValue = computed(() => this.selectValue().map(r => this.dataMap.get(r)[this.options.labelField()]).join(\";\"));\n\n readonly modalVisible = model(false);\n readonly titles = computed(() => {\n const arr = this.options.titles().split(\",\");\n return [arr[0], arr[1] ?? arr[0]];\n });\n readonly operations = computed(() => {\n const arr = this.options.operations().split(\",\");\n return [arr[0], arr[1] ?? arr[0]];\n });\n readonly itemUnit = computed(() => {\n const arr = this.options.itemUnits().split(\",\");\n return arr[0];\n });\n readonly itemsUnit = computed(() => {\n const arr = this.options.itemUnits().split(\",\");\n return arr[1] ?? arr[0];\n });\n\n readonly fields = computed(() => this.buildFields());\n readonly scroll = computed(() => this.buildScroll());\n\n override writeValue(value: any): void {\n super.writeValue(value);\n this.valueToTransferValue();\n }\n\n override setInitValue(value: any): void {\n super.setInitValue(value);\n this.valueToTransferValue();\n }\n\n private buildValidValue(): Set<any> {\n const validValue = new Set();\n const data = this.options.data();\n if (Array.isArray(data)) {\n for (const item of data) {\n this.dataMap.set(item[this.options.valueField()], item);\n validValue.add(item[this.options.valueField()]);\n }\n }\n return validValue;\n }\n\n private buildData(): any[] {\n let data: any[] = [];\n for (const item of this.validValue()) {\n data.push(this.dataMap.get(item));\n }\n if (this.options.allowInvalidValue()) {\n this.selectValue()!.filter(r => !this.validValue().has(r)).forEach(r => {\n if (!this.dataMap.has(r)) {\n this.dataMap.set(r, {\n [this.options.labelField()]: r,\n [this.options.valueField()]: r\n });\n }\n data.push(this.dataMap.get(r));\n });\n }\n return data;\n }\n\n private buildTransferData(): TransferItem[] {\n if (!this.options.useSelectInput() || this.modalVisible()) {\n return this.data().map(r => ({\n title: r[this.options.labelField()],\n key: r[this.options.valueField()],\n disabled: r[this.options.disabledField()],\n direction: (this.transferValue() ?? this.selectValue()).includes(r[this.options.valueField()]) ? \"right\" : \"left\",\n origin: r\n }));\n } else {\n return [];\n }\n }\n\n private valueToTransferValue() {\n if (this.value() != undefined) {\n if (this.options.fullValue()) {\n this.selectValue.set(this.value().map((r: any) => r[this.options.valueField()]));\n for (const v of this.value()) {\n if (!this.dataMap.has(v[this.options.valueField()])) {\n this.dataMap.set(v[this.options.valueField()], v);\n }\n }\n } else {\n this.selectValue.set(this.value());\n }\n return;\n }\n this.selectValue.set(this.value() ?? []);\n }\n\n onSelectChange(value: any) {\n if (this.options.fullValue()) {\n this.value.set(value.map((r: any) => this.dataMap.get(r)));\n } else {\n this.value.set(value);\n }\n this.onChange?.(this.value());\n }\n\n openModal() {\n this.modalVisible.set(true);\n this.transferValue.set(this.selectValue());\n }\n\n onTransferChange(items: TransferItem[]) {\n this.transferValue.set(items.map(i => i['key']));\n if (!this.options.useSelectInput()) {\n this.onSelectChange(this.transferValue());\n }\n }\n\n onModalOk() {\n this.selectValue.set(this.transferValue() ?? []);\n this.onSelectChange(this.selectValue());\n this.modalVisible.set(false);\n }\n\n onModalCancel() {\n this.transferValue.set(null);\n this.modalVisible.set(false);\n }\n\n private buildFields(): TransferTableFieldOptions[] {\n return this.options.fields().map(opt => new TransferTableFieldOptions());\n }\n\n\n private buildScroll() {\n let x = this.options.tableWidth() ?? 0;\n if (this.options.tableWidth() == undefined) {\n if (this.options.showOrder()) {\n x += this.tableSvc.leaderFieldWidth();\n }\n this.tableSvc.displayFields().forEach(f => {\n if (f.width()) {\n x += f.width()!;\n } else {\n x += 120;\n }\n });\n }\n return { x: x + \"px\", y: \"\" }\n }\n\n}\n","@if (options.useSelectInput()){\n@if (options.readonly()) {\n{{displayValue()}}\n}@else {\n<nz-select nzMode=\"multiple\" [nzOptions]=\"selectOptions()\" [nzDisabled]=\"options.disabled()\"\n [nzVariant]=\"options.variant()\" [nzSize]=\"options.size()\" [nzAllowClear]=\"options.allowClear()\"\n [nzMaxTagCount]=\"options.maxTagCount()\" [nzPlaceHolder]=\"options.placeholder()\" [nzDropdownStyle]=\"{display:'none'}\"\n (click)=\"openModal()\" [(ngModel)]=\"selectValue\" (ngModelChange)=\"onSelectChange($event)\"></nz-select>\n<nz-modal [(nzVisible)]=\"modalVisible\" [nzTitle]=\"options.modalTitle()\" nzWidth=\"fit-content\" nzDraggable\n (nzOnOk)=\"onModalOk()\" (nzOnCancel)=\"onModalCancel()\">\n <div *nzModalContent>\n <ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n </div>\n</nz-modal>\n}\n}@else{\n<ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n}\n\n<ng-template #transferTmpl>\n <ng-container [axisDynamic]=\"options.header()\"></ng-container>\n <nz-transfer #transfer [nzDataSource]=\"transferData()\" [nzDisabled]=\"options.disabled() || options.readonly()\"\n [nzTitles]=\"titles()\" [nzOperations]=\"operations()\" [nzItemUnit]=\"itemUnit()\" [nzItemsUnit]=\"itemsUnit()\"\n [nzShowSelectAll]=\"options.selectAll() && options.type() != 'table'\" [nzShowSearch]=\"options.showSearch()\"\n [nzSearchPlaceholder]=\"options.searchPlaceholder()\" [nzNotFoundContent]=\"options.notFoundContent()\"\n [nzOneWay]=\"options.oneWay() && options.type() != 'table'\"\n [nzRenderList]=\"options.type()=='table'? [tableList, tableList]:null\"\n (nzChange)=\"onTransferChange(transfer.rightDataSource)\">\n <ng-template #tableList let-items let-direction=\"direction\" let-stat=\"stat\" let-disabled=\"disabled\"\n let-onItemSelectAll=\"onItemSelectAll\" let-onItemSelect=\"onItemSelect\">\n <nz-table #table [nzSize]=\"options.tableSize()\" [nzData]=\"items\" [nzLoading]=\"!options.data()\"\n [nzBordered]=\"options.bordered()\" [nzOuterBordered]=\"options.outerBordered()\"\n [nzShowPagination]=\"options.showPagination()\" [nzPageSize]=\"options.pageSize()\"\n [nzShowSizeChanger]=\"options.showSizeChanger()\" [nzPageSizeOptions]=\"tableSvc.pageSizeOptions()\"\n [nzShowTotal]=\"options.showDataSize()?totalRange:null\" [nzScroll]=\"scroll()\">\n <thead>\n <tr>\n @if(options.selectAll()){\n <th [nzDisabled]=\"disabled\" [nzChecked]=\"stat.checkAll\" [nzIndeterminate]=\"stat.checkHalf\"\n [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\" (nzCheckedChange)=\"onItemSelectAll($event)\">\n </th>\n }@else{\n <th [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\"></th>\n }\n @if (options.showOrder()) {\n <th nzAlign=\"center\" [nzWidth]=\"tableSvc.leaderFieldWidth()+'px'\">序号</th>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <th [attr.data-field]=\"f.field()\" [nzWidth]=\"f.width() == null ?null:f.width()+'px'\"\n [nzShowSort]=\"f.sortAble()\" [nzSortFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.sortFn\"\n [nzSortOrder]=\"f.sortOrder()\" [nzSortPriority]=\"f.sortPriority()??false\"\n [nzShowFilter]=\"f.filterAble()\"\n [nzFilters]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterItems ?? []\"\n [nzFilterFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterFn\"\n (nzFilterChange)=\"tableSvc.filterChange(f.field(),$event)\"\n [nzFilterMultiple]=\"f.filterMultiple()\" [nzAlign]=\"f.align()\"\n [nzLeft]=\"f.freezeMode()=='left'\" [nzRight]=\"f.freezeMode()=='right'\">\n <span>\n {{f.title()}}\n </span>\n </th>\n }\n </tr>\n </thead>\n <tbody>\n @for (data of table.data; track data;let i=$index) {\n <tr [axisScope]=\"options.id+'.row'\" scopeName=\"表格行\"\n [dataSources]=\"[{name:'row',type:'local',data:data}]\" (click)=\"onItemSelect(data)\">\n <td [nzChecked]=\"!!data.checked\" [nzDisabled]=\"disabled || data.disabled\"\n (nzCheckedChange)=\"onItemSelect(data)\"></td>\n @if (options.showOrder()) {\n <td nzAlign=\"center\">{{(table.nzPageIndex-1) * table.nzPageSize + i+1}}</td>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <td [nzLeft]=\"f.freezeMode()=='left'\" [attr.data-field]=\"f.field()\"\n [nzRight]=\"f.freezeMode()=='right'\" [nzAlign]=\"f.align()\">\n @if (f.child()) {\n <ng-container [axisDynamic]=\"f.child()\"></ng-container>\n }@else {\n {{data[f.field()]}}\n }\n </td>\n }\n </tr>\n }\n </tbody>\n </nz-table>\n <ng-template #totalRange let-range=\"range\" let-total>\n 共{{ total }}条数据,第{{ range[0] }}-{{ range[1] }}条\n </ng-template>\n </ng-template>\n </nz-transfer>\n</ng-template>","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './transfer';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ngx-axis-appforge-axis-components-transfer.mjs","sources":["../../../axis-components/transfer/transfer.options.ts","../../../axis-components/transfer/transfer.ts","../../../axis-components/transfer/transfer.html","../../../axis-components/transfer/ngx-axis-appforge-axis-components-transfer.ts"],"sourcesContent":["import { signal, WritableSignal } from \"@angular/core\";\nimport { ValueAccessOptions } from \"ngx-axis-appforge/core\";\nimport { BaseTableFieldOptions, BaseTableOptions } from 'ngx-axis-appforge/axis-components/table-helper'\n\nexport class TransferOptions extends ValueAccessOptions {\n\n readonly labelField = signal(\"title\");\n readonly valueField = signal(\"key\");\n readonly disabledField = signal(\"disabled\");\n readonly fullValue = signal(false);\n readonly allowInvalidValue = signal(false);\n readonly data = signal<any>(undefined);\n\n readonly type = signal<'normal' | 'table'>('normal');\n readonly oneWay = signal(false);\n readonly modalTitle = signal('请选择');\n readonly titles = signal('待选,已选');\n readonly operations = signal('');\n readonly itemUnits = signal<string>('项');\n readonly selectAll = signal(true);\n readonly notFoundContent = signal('列表为空');\n readonly showSearch = signal(false);\n readonly searchPlaceholder = signal('请输入搜索内容');\n\n readonly useSelectInput = signal(true);\n readonly variant = signal<'outlined' | 'borderless' | 'filled' | 'underlined'>('outlined');\n readonly size = signal<'large' | 'small' | 'default'>('default');\n readonly allowClear = signal(true);\n readonly maxTagCount = signal(Infinity);\n readonly placeholder = signal(\"\");\n\n readonly tableSize = signal<'middle' | 'small' | 'default'>(\"middle\");\n readonly showOrder = signal(true);\n readonly showDataSize = signal(true);\n readonly bordered = signal(false);\n readonly outerBordered = signal(false);\n readonly tableWidth = signal<number | undefined>(undefined);\n readonly showPagination = signal(true);\n readonly pageSize = signal(10);\n readonly showSizeChanger = signal(true);\n readonly pageSizeOptions = signal(\"10,20,50,100\");\n\n readonly header = signal<any>(undefined);\n readonly fields = signal<any[]>([]);\n\n}\n\nexport class TransferTableOptions implements BaseTableOptions {\n constructor(transfer: TransferOptions) {\n this.size = transfer.tableSize;\n this.showOrder = transfer.showOrder;\n this.showDataSize = transfer.showDataSize;\n this.bordered = transfer.bordered;\n this.outerBordered = transfer.outerBordered;\n this.width = transfer.tableWidth;\n this.showPagination = transfer.showPagination;\n this.pageSize = transfer.pageSize;\n this.showSizeChanger = transfer.showSizeChanger;\n this.pageSizeOptions = transfer.pageSizeOptions;\n }\n size: WritableSignal<\"small\" | \"default\" | \"middle\">;\n showOrder: WritableSignal<boolean>;\n showDataSize: WritableSignal<boolean>;\n bordered: WritableSignal<boolean>;\n outerBordered: WritableSignal<boolean>;\n width: WritableSignal<number | undefined>;\n showPagination: WritableSignal<boolean>;\n pageSize: WritableSignal<number>;\n showSizeChanger: WritableSignal<boolean>;\n pageSizeOptions: WritableSignal<string>;\n useBackEndPaging = signal(false);\n}\n\nexport class TransferTableFieldOptions implements BaseTableFieldOptions {\n readonly inuse = signal(true);\n readonly field = signal(\"unknown\");\n readonly title = signal(\"未命名\");\n readonly sortAble = signal(false);\n readonly sortOrder = signal<\"descend\" | \"ascend\" | null>(null);\n readonly sortPriority = signal<number | null>(null);\n readonly filterAble = signal(false);\n readonly filterMultiple = signal(false);\n readonly width = signal<number | null>(null);\n readonly align = signal<'left' | 'right' | 'center'>(\"left\");\n readonly freezeMode = signal<'none' | 'left' | 'right'>(\"none\");\n readonly child = signal<any>(undefined);\n}","import { ChangeDetectionStrategy, Component, computed, effect, model, untracked } from '@angular/core';\nimport { DynamicDirective, ScopeDirective, ValueAccess } from 'ngx-axis-appforge/core';\nimport { TableFieldDisplayService, TableService } from 'ngx-axis-appforge/axis-components/table-helper'\nimport { FormsModule } from '@angular/forms';\nimport { TransferOptions, TransferTableFieldOptions, TransferTableOptions } from './transfer.options';\nimport { NzTransferModule, TransferItem } from 'ng-zorro-antd/transfer';\nimport { NzTableModule } from 'ng-zorro-antd/table';\nimport { NzSelectModule } from 'ng-zorro-antd/select';\nimport { NzModalModule } from 'ng-zorro-antd/modal';\nimport { DatePipe, DecimalPipe, NgTemplateOutlet, PercentPipe } from '@angular/common';\n\n@Component({\n selector: 'axis-transfer',\n imports: [FormsModule, NzTransferModule, DynamicDirective, NzTableModule, NzSelectModule, NzModalModule, ScopeDirective, NgTemplateOutlet],\n templateUrl: './transfer.html',\n styleUrl: './transfer.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [DatePipe, DecimalPipe, PercentPipe, TableFieldDisplayService, TableService]\n})\nexport class Transfer extends ValueAccess<TransferOptions> {\n\n constructor(public tableSvc: TableService<TransferTableOptions, TransferTableFieldOptions>) {\n super();\n effect(() => {\n if (this.options.type() == \"table\") {\n this.tableSvc.init({ data: this.data, options: new TransferTableOptions(this.options), fields: this.fields });\n }\n })\n effect(() => {\n if (this.options.type() == \"table\") {\n this.fields().forEach((f, i) => {\n this.bindWithConfig(this.options.fields()[i], { options: f, tag: `bindField.${i}` });\n });\n }\n });\n effect(() => {\n if (!this.options.allowInvalidValue() && this.options.data() !== undefined && this.selectValue().some(r => !this.validValue().has(r))) {\n untracked(() => {\n const next = this.selectValue().filter(r => this.validValue().has(r));\n if (this.options.fullValue()) {\n this.setInitValue(next.map(r => this.dataMap.get(r)));\n } else {\n this.setInitValue(next);\n }\n });\n }\n });\n }\n\n override options: TransferOptions = new TransferOptions();\n private dataMap = new Map();\n private readonly validValue = computed(() => this.buildValidValue());\n readonly data = computed(() => this.buildData());\n readonly transferData = computed(() => this.buildTransferData());\n readonly selectOptions = computed(() => this.selectValue().map(r => this.dataMap.get(r)).map(d => ({ label: d[this.options.labelField()], value: d[this.options.valueField()] })))\n\n readonly selectValue = model<any[]>([]);\n readonly transferValue = model<any[] | null>(null);\n readonly displayValue = computed(() => this.selectValue().map(r => this.dataMap.get(r)[this.options.labelField()]).join(\";\"));\n\n readonly modalVisible = model(false);\n readonly titles = computed(() => {\n const arr = this.options.titles().split(\",\");\n return [arr[0], arr[1] ?? arr[0]];\n });\n readonly operations = computed(() => {\n const arr = this.options.operations().split(\",\");\n return [arr[0], arr[1] ?? arr[0]];\n });\n readonly itemUnit = computed(() => {\n const arr = this.options.itemUnits().split(\",\");\n return arr[0];\n });\n readonly itemsUnit = computed(() => {\n const arr = this.options.itemUnits().split(\",\");\n return arr[1] ?? arr[0];\n });\n\n readonly fields = computed(() => this.buildFields());\n readonly scroll = computed(() => this.buildScroll());\n\n override writeValue(value: any): void {\n super.writeValue(value);\n this.valueToTransferValue();\n }\n\n override setInitValue(value: any): void {\n super.setInitValue(value);\n this.valueToTransferValue();\n }\n\n private buildValidValue(): Set<any> {\n const validValue = new Set();\n const data = this.options.data();\n if (Array.isArray(data)) {\n for (const item of data) {\n this.dataMap.set(item[this.options.valueField()], item);\n validValue.add(item[this.options.valueField()]);\n }\n }\n return validValue;\n }\n\n private buildData(): any[] {\n let data: any[] = [];\n for (const item of this.validValue()) {\n data.push(this.dataMap.get(item));\n }\n if (this.options.allowInvalidValue()) {\n this.selectValue()!.filter(r => !this.validValue().has(r)).forEach(r => {\n if (!this.dataMap.has(r)) {\n this.dataMap.set(r, {\n [this.options.labelField()]: r,\n [this.options.valueField()]: r\n });\n }\n data.push(this.dataMap.get(r));\n });\n }\n return data;\n }\n\n private buildTransferData(): TransferItem[] {\n if (!this.options.useSelectInput() || this.modalVisible()) {\n return this.data().map(r => ({\n title: r[this.options.labelField()],\n key: r[this.options.valueField()],\n disabled: r[this.options.disabledField()],\n direction: (this.transferValue() ?? this.selectValue()).includes(r[this.options.valueField()]) ? \"right\" : \"left\",\n origin: r\n }));\n } else {\n return [];\n }\n }\n\n private valueToTransferValue() {\n if (this.value() != undefined) {\n if (this.options.fullValue()) {\n this.selectValue.set(this.value().map((r: any) => r[this.options.valueField()]));\n for (const v of this.value()) {\n if (!this.dataMap.has(v[this.options.valueField()])) {\n this.dataMap.set(v[this.options.valueField()], v);\n }\n }\n } else {\n this.selectValue.set(this.value());\n }\n return;\n }\n this.selectValue.set(this.value() ?? []);\n }\n\n onSelectChange(value: any) {\n if (this.options.fullValue()) {\n this.value.set(value.map((r: any) => this.dataMap.get(r)));\n } else {\n this.value.set(value);\n }\n this.onChange?.(this.value());\n }\n\n openModal() {\n this.modalVisible.set(true);\n this.transferValue.set(this.selectValue());\n }\n\n onTransferChange(items: TransferItem[]) {\n this.transferValue.set(items.map(i => i['key']));\n if (!this.options.useSelectInput()) {\n this.onSelectChange(this.transferValue());\n }\n }\n\n onModalOk() {\n this.selectValue.set(this.transferValue() ?? []);\n this.onSelectChange(this.selectValue());\n this.modalVisible.set(false);\n }\n\n onModalCancel() {\n this.transferValue.set(null);\n this.modalVisible.set(false);\n }\n\n private buildFields(): TransferTableFieldOptions[] {\n return this.options.fields().map(opt => new TransferTableFieldOptions());\n }\n\n\n private buildScroll() {\n let x = this.options.tableWidth() ?? 0;\n if (this.options.tableWidth() == undefined) {\n if (this.options.showOrder()) {\n x += this.tableSvc.leaderFieldWidth();\n }\n this.tableSvc.displayFields().forEach(f => {\n if (f.width()) {\n x += f.width()!;\n } else {\n x += 120;\n }\n });\n }\n return { x: x + \"px\", y: \"\" }\n }\n\n}\n","@if (options.useSelectInput()){\n@if (options.readonly()) {\n{{displayValue()}}\n}@else {\n<nz-select nzMode=\"multiple\" [nzOptions]=\"selectOptions()\" [nzDisabled]=\"options.disabled()\"\n [nzVariant]=\"options.variant()\" [nzSize]=\"options.size()\" [nzAllowClear]=\"options.allowClear()\"\n [nzMaxTagCount]=\"options.maxTagCount()\" [nzPlaceHolder]=\"options.placeholder()\" [nzDropdownStyle]=\"{display:'none'}\"\n (click)=\"openModal()\" [(ngModel)]=\"selectValue\" (ngModelChange)=\"onSelectChange($event)\"></nz-select>\n<nz-modal [(nzVisible)]=\"modalVisible\" [nzTitle]=\"options.modalTitle()\" nzWidth=\"fit-content\" nzDraggable\n (nzOnOk)=\"onModalOk()\" (nzOnCancel)=\"onModalCancel()\">\n <div *nzModalContent>\n <ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n </div>\n</nz-modal>\n}\n}@else{\n<ng-container *ngTemplateOutlet=\"transferTmpl\"></ng-container>\n}\n\n<ng-template #transferTmpl>\n <ng-container [axisDynamic]=\"options.header()\"></ng-container>\n <nz-transfer #transfer [nzDataSource]=\"transferData()\" [nzDisabled]=\"options.disabled() || options.readonly()\"\n [nzTitles]=\"titles()\" [nzOperations]=\"operations()\" [nzItemUnit]=\"itemUnit()\" [nzItemsUnit]=\"itemsUnit()\"\n [nzShowSelectAll]=\"options.selectAll() && options.type() != 'table'\" [nzShowSearch]=\"options.showSearch()\"\n [nzSearchPlaceholder]=\"options.searchPlaceholder()\" [nzNotFoundContent]=\"options.notFoundContent()\"\n [nzOneWay]=\"options.oneWay() && options.type() != 'table'\"\n [nzRenderList]=\"options.type()=='table'? [tableList, tableList]:null\"\n (nzChange)=\"onTransferChange(transfer.rightDataSource)\">\n <ng-template #tableList let-items let-direction=\"direction\" let-stat=\"stat\" let-disabled=\"disabled\"\n let-onItemSelectAll=\"onItemSelectAll\" let-onItemSelect=\"onItemSelect\">\n <nz-table #table [nzSize]=\"options.tableSize()\" [nzData]=\"items\" [nzLoading]=\"!options.data()\"\n [nzBordered]=\"options.bordered()\" [nzOuterBordered]=\"options.outerBordered()\"\n [nzShowPagination]=\"options.showPagination()\" [nzPageSize]=\"options.pageSize()\"\n [nzShowSizeChanger]=\"options.showSizeChanger()\" [nzPageSizeOptions]=\"tableSvc.pageSizeOptions()\"\n [nzShowTotal]=\"options.showDataSize()?totalRange:null\" [nzScroll]=\"scroll()\">\n <thead>\n <tr>\n @if(options.selectAll()){\n <th [nzDisabled]=\"disabled\" [nzChecked]=\"stat.checkAll\" [nzIndeterminate]=\"stat.checkHalf\"\n [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\" (nzCheckedChange)=\"onItemSelectAll($event)\">\n </th>\n }@else{\n <th [nzWidth]=\"tableSvc.leaderFieldWidth()-10+'px'\"></th>\n }\n @if (options.showOrder()) {\n <th nzAlign=\"center\" [nzWidth]=\"tableSvc.leaderFieldWidth()+'px'\">序号</th>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <th [attr.data-field]=\"f.field()\" [nzWidth]=\"f.width() == null ?null:f.width()+'px'\"\n [nzShowSort]=\"f.sortAble()\" [nzSortFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.sortFn\"\n [nzSortOrder]=\"f.sortOrder()\" [nzSortPriority]=\"f.sortPriority()??false\"\n [nzShowFilter]=\"f.filterAble()\"\n [nzFilters]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterItems ?? []\"\n [nzFilterFn]=\"tableSvc.fieldsControlsMap()[f.field()]?.filterFn\"\n (nzFilterChange)=\"tableSvc.filterChange(f.field(),$event)\"\n [nzFilterMultiple]=\"f.filterMultiple()\" [nzAlign]=\"f.align()\"\n [nzLeft]=\"f.freezeMode()=='left'\" [nzRight]=\"f.freezeMode()=='right'\">\n <span>\n {{f.title()}}\n </span>\n </th>\n }\n </tr>\n </thead>\n <tbody>\n @for (data of table.data; track data;let i=$index) {\n <tr [axisScope]=\"options.id+'.row'\" scopeName=\"表格行\"\n [dataSources]=\"[{name:'row',type:'local',data:data.origin}]\" (click)=\"onItemSelect(data)\">\n <td [nzChecked]=\"!!data.checked\" [nzDisabled]=\"disabled || data.disabled\"\n (nzCheckedChange)=\"onItemSelect(data)\"></td>\n @if (options.showOrder()) {\n <td nzAlign=\"center\">{{(table.nzPageIndex-1) * table.nzPageSize + i+1}}</td>\n }\n @for (f of tableSvc.displayFields(); track f.field()) {\n <td [nzLeft]=\"f.freezeMode()=='left'\" [attr.data-field]=\"f.field()\"\n [nzRight]=\"f.freezeMode()=='right'\" [nzAlign]=\"f.align()\">\n @if (f.child()) {\n <ng-container [axisDynamic]=\"f.child()\"></ng-container>\n }@else {\n {{data.origin[f.field()]}}\n }\n </td>\n }\n </tr>\n }\n </tbody>\n </nz-table>\n <ng-template #totalRange let-range=\"range\" let-total>\n 共{{ total }}条数据,第{{ range[0] }}-{{ range[1] }}条\n </ng-template>\n </ng-template>\n </nz-transfer>\n</ng-template>","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './transfer';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-axis-appforge",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.73",
|
|
4
4
|
"author": "ZengCheng <zengc694623467@gmail.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"dependencies": {
|
|
@@ -59,37 +59,37 @@
|
|
|
59
59
|
"types": "./axis-components/checkbox/index.d.ts",
|
|
60
60
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-checkbox.mjs"
|
|
61
61
|
},
|
|
62
|
-
"./axis-components/
|
|
63
|
-
"types": "./axis-components/
|
|
64
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
62
|
+
"./axis-components/color-picker": {
|
|
63
|
+
"types": "./axis-components/color-picker/index.d.ts",
|
|
64
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-color-picker.mjs"
|
|
65
65
|
},
|
|
66
66
|
"./axis-components/cytoscape": {
|
|
67
67
|
"types": "./axis-components/cytoscape/index.d.ts",
|
|
68
68
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-cytoscape.mjs"
|
|
69
69
|
},
|
|
70
|
-
"./axis-components/
|
|
71
|
-
"types": "./axis-components/
|
|
72
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
73
|
-
},
|
|
74
|
-
"./axis-components/design": {
|
|
75
|
-
"types": "./axis-components/design/index.d.ts",
|
|
76
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-design.mjs"
|
|
70
|
+
"./axis-components/date-picker": {
|
|
71
|
+
"types": "./axis-components/date-picker/index.d.ts",
|
|
72
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-date-picker.mjs"
|
|
77
73
|
},
|
|
78
74
|
"./axis-components/desc": {
|
|
79
75
|
"types": "./axis-components/desc/index.d.ts",
|
|
80
76
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-desc.mjs"
|
|
81
77
|
},
|
|
82
|
-
"./axis-components/
|
|
83
|
-
"types": "./axis-components/
|
|
84
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
78
|
+
"./axis-components/design": {
|
|
79
|
+
"types": "./axis-components/design/index.d.ts",
|
|
80
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-design.mjs"
|
|
81
|
+
},
|
|
82
|
+
"./axis-components/dropdown": {
|
|
83
|
+
"types": "./axis-components/dropdown/index.d.ts",
|
|
84
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-dropdown.mjs"
|
|
85
85
|
},
|
|
86
86
|
"./axis-components/dynamic-value": {
|
|
87
87
|
"types": "./axis-components/dynamic-value/index.d.ts",
|
|
88
88
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-value.mjs"
|
|
89
89
|
},
|
|
90
|
-
"./axis-components/
|
|
91
|
-
"types": "./axis-components/
|
|
92
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
90
|
+
"./axis-components/dynamic-container": {
|
|
91
|
+
"types": "./axis-components/dynamic-container/index.d.ts",
|
|
92
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-container.mjs"
|
|
93
93
|
},
|
|
94
94
|
"./axis-components/echarts": {
|
|
95
95
|
"types": "./axis-components/echarts/index.d.ts",
|
|
@@ -99,6 +99,10 @@
|
|
|
99
99
|
"types": "./axis-components/editor/index.d.ts",
|
|
100
100
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-editor.mjs"
|
|
101
101
|
},
|
|
102
|
+
"./axis-components/edit-table": {
|
|
103
|
+
"types": "./axis-components/edit-table/index.d.ts",
|
|
104
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-edit-table.mjs"
|
|
105
|
+
},
|
|
102
106
|
"./axis-components/flex": {
|
|
103
107
|
"types": "./axis-components/flex/index.d.ts",
|
|
104
108
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-flex.mjs"
|
|
@@ -111,14 +115,14 @@
|
|
|
111
115
|
"types": "./axis-components/form-item/index.d.ts",
|
|
112
116
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-form-item.mjs"
|
|
113
117
|
},
|
|
114
|
-
"./axis-components/image": {
|
|
115
|
-
"types": "./axis-components/image/index.d.ts",
|
|
116
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-image.mjs"
|
|
117
|
-
},
|
|
118
118
|
"./axis-components/icon": {
|
|
119
119
|
"types": "./axis-components/icon/index.d.ts",
|
|
120
120
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-icon.mjs"
|
|
121
121
|
},
|
|
122
|
+
"./axis-components/image": {
|
|
123
|
+
"types": "./axis-components/image/index.d.ts",
|
|
124
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-image.mjs"
|
|
125
|
+
},
|
|
122
126
|
"./axis-components/input": {
|
|
123
127
|
"types": "./axis-components/input/index.d.ts",
|
|
124
128
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input.mjs"
|
|
@@ -139,14 +143,14 @@
|
|
|
139
143
|
"types": "./axis-components/input-number/index.d.ts",
|
|
140
144
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-number.mjs"
|
|
141
145
|
},
|
|
142
|
-
"./axis-components/modal": {
|
|
143
|
-
"types": "./axis-components/modal/index.d.ts",
|
|
144
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-modal.mjs"
|
|
145
|
-
},
|
|
146
146
|
"./axis-components/radio": {
|
|
147
147
|
"types": "./axis-components/radio/index.d.ts",
|
|
148
148
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-radio.mjs"
|
|
149
149
|
},
|
|
150
|
+
"./axis-components/modal": {
|
|
151
|
+
"types": "./axis-components/modal/index.d.ts",
|
|
152
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-modal.mjs"
|
|
153
|
+
},
|
|
150
154
|
"./axis-components/menu": {
|
|
151
155
|
"types": "./axis-components/menu/index.d.ts",
|
|
152
156
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-menu.mjs"
|
|
@@ -159,53 +163,45 @@
|
|
|
159
163
|
"types": "./axis-components/rich-text-editor/index.d.ts",
|
|
160
164
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-rich-text-editor.mjs"
|
|
161
165
|
},
|
|
162
|
-
"./axis-components/
|
|
163
|
-
"types": "./axis-components/
|
|
164
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
166
|
+
"./axis-components/select": {
|
|
167
|
+
"types": "./axis-components/select/index.d.ts",
|
|
168
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-select.mjs"
|
|
165
169
|
},
|
|
166
170
|
"./axis-components/scope": {
|
|
167
171
|
"types": "./axis-components/scope/index.d.ts",
|
|
168
172
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-scope.mjs"
|
|
169
173
|
},
|
|
170
|
-
"./axis-components/single-selector": {
|
|
171
|
-
"types": "./axis-components/single-selector/index.d.ts",
|
|
172
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-single-selector.mjs"
|
|
173
|
-
},
|
|
174
|
-
"./axis-components/select": {
|
|
175
|
-
"types": "./axis-components/select/index.d.ts",
|
|
176
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-select.mjs"
|
|
177
|
-
},
|
|
178
174
|
"./axis-components/splitter": {
|
|
179
175
|
"types": "./axis-components/splitter/index.d.ts",
|
|
180
176
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-splitter.mjs"
|
|
181
177
|
},
|
|
178
|
+
"./axis-components/single-selector": {
|
|
179
|
+
"types": "./axis-components/single-selector/index.d.ts",
|
|
180
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-single-selector.mjs"
|
|
181
|
+
},
|
|
182
182
|
"./axis-components/steps": {
|
|
183
183
|
"types": "./axis-components/steps/index.d.ts",
|
|
184
184
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-steps.mjs"
|
|
185
185
|
},
|
|
186
|
-
"./axis-components/table": {
|
|
187
|
-
"types": "./axis-components/table/index.d.ts",
|
|
188
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-table.mjs"
|
|
189
|
-
},
|
|
190
186
|
"./axis-components/switch": {
|
|
191
187
|
"types": "./axis-components/switch/index.d.ts",
|
|
192
188
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-switch.mjs"
|
|
193
189
|
},
|
|
190
|
+
"./axis-components/table": {
|
|
191
|
+
"types": "./axis-components/table/index.d.ts",
|
|
192
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-table.mjs"
|
|
193
|
+
},
|
|
194
194
|
"./axis-components/table-helper": {
|
|
195
195
|
"types": "./axis-components/table-helper/index.d.ts",
|
|
196
196
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-table-helper.mjs"
|
|
197
197
|
},
|
|
198
|
-
"./axis-components/tabs": {
|
|
199
|
-
"types": "./axis-components/tabs/index.d.ts",
|
|
200
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-tabs.mjs"
|
|
201
|
-
},
|
|
202
198
|
"./axis-components/text": {
|
|
203
199
|
"types": "./axis-components/text/index.d.ts",
|
|
204
200
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-text.mjs"
|
|
205
201
|
},
|
|
206
|
-
"./axis-components/
|
|
207
|
-
"types": "./axis-components/
|
|
208
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
202
|
+
"./axis-components/tabs": {
|
|
203
|
+
"types": "./axis-components/tabs/index.d.ts",
|
|
204
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-tabs.mjs"
|
|
209
205
|
},
|
|
210
206
|
"./axis-components/timer": {
|
|
211
207
|
"types": "./axis-components/timer/index.d.ts",
|
|
@@ -215,65 +211,73 @@
|
|
|
215
211
|
"types": "./axis-components/tree-selector/index.d.ts",
|
|
216
212
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-tree-selector.mjs"
|
|
217
213
|
},
|
|
218
|
-
"./axis-components/upload": {
|
|
219
|
-
"types": "./axis-components/upload/index.d.ts",
|
|
220
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-upload.mjs"
|
|
221
|
-
},
|
|
222
214
|
"./axis-components/transfer": {
|
|
223
215
|
"types": "./axis-components/transfer/index.d.ts",
|
|
224
216
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-transfer.mjs"
|
|
225
217
|
},
|
|
226
|
-
"./axis-components/
|
|
227
|
-
"types": "./axis-components/
|
|
228
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
218
|
+
"./axis-components/upload": {
|
|
219
|
+
"types": "./axis-components/upload/index.d.ts",
|
|
220
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-upload.mjs"
|
|
221
|
+
},
|
|
222
|
+
"./axis-components/textarea": {
|
|
223
|
+
"types": "./axis-components/textarea/index.d.ts",
|
|
224
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-textarea.mjs"
|
|
229
225
|
},
|
|
230
226
|
"./axis-components/badge/design": {
|
|
231
227
|
"types": "./axis-components/badge/design/index.d.ts",
|
|
232
228
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-badge-design.mjs"
|
|
233
229
|
},
|
|
234
|
-
"./axis-components/date-picker/design": {
|
|
235
|
-
"types": "./axis-components/date-picker/design/index.d.ts",
|
|
236
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-date-picker-design.mjs"
|
|
237
|
-
},
|
|
238
|
-
"./axis-components/cytoscape/design": {
|
|
239
|
-
"types": "./axis-components/cytoscape/design/index.d.ts",
|
|
240
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-cytoscape-design.mjs"
|
|
241
|
-
},
|
|
242
230
|
"./axis-components/checkbox/design": {
|
|
243
231
|
"types": "./axis-components/checkbox/design/index.d.ts",
|
|
244
232
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-checkbox-design.mjs"
|
|
245
233
|
},
|
|
234
|
+
"./axis-components/button/design": {
|
|
235
|
+
"types": "./axis-components/button/design/index.d.ts",
|
|
236
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-button-design.mjs"
|
|
237
|
+
},
|
|
246
238
|
"./axis-components/color-picker/design": {
|
|
247
239
|
"types": "./axis-components/color-picker/design/index.d.ts",
|
|
248
240
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-color-picker-design.mjs"
|
|
249
241
|
},
|
|
242
|
+
"./axis-components/cytoscape/design": {
|
|
243
|
+
"types": "./axis-components/cytoscape/design/index.d.ts",
|
|
244
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-cytoscape-design.mjs"
|
|
245
|
+
},
|
|
246
|
+
"./axis-components/date-picker/design": {
|
|
247
|
+
"types": "./axis-components/date-picker/design/index.d.ts",
|
|
248
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-date-picker-design.mjs"
|
|
249
|
+
},
|
|
250
|
+
"./axis-components/desc/design": {
|
|
251
|
+
"types": "./axis-components/desc/design/index.d.ts",
|
|
252
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-desc-design.mjs"
|
|
253
|
+
},
|
|
250
254
|
"./axis-components/design/design": {
|
|
251
255
|
"types": "./axis-components/design/design/index.d.ts",
|
|
252
256
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-design-design.mjs"
|
|
253
257
|
},
|
|
254
|
-
"./axis-components/
|
|
255
|
-
"types": "./axis-components/
|
|
256
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
258
|
+
"./axis-components/dropdown/design": {
|
|
259
|
+
"types": "./axis-components/dropdown/design/index.d.ts",
|
|
260
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-dropdown-design.mjs"
|
|
257
261
|
},
|
|
258
262
|
"./axis-components/dynamic-value/design": {
|
|
259
263
|
"types": "./axis-components/dynamic-value/design/index.d.ts",
|
|
260
264
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-value-design.mjs"
|
|
261
265
|
},
|
|
262
|
-
"./axis-components/
|
|
263
|
-
"types": "./axis-components/
|
|
264
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
266
|
+
"./axis-components/dynamic-container/design": {
|
|
267
|
+
"types": "./axis-components/dynamic-container/design/index.d.ts",
|
|
268
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-container-design.mjs"
|
|
265
269
|
},
|
|
266
|
-
"./axis-components/
|
|
267
|
-
"types": "./axis-components/
|
|
268
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
270
|
+
"./axis-components/echarts/design": {
|
|
271
|
+
"types": "./axis-components/echarts/design/index.d.ts",
|
|
272
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-echarts-design.mjs"
|
|
269
273
|
},
|
|
270
274
|
"./axis-components/editor/design": {
|
|
271
275
|
"types": "./axis-components/editor/design/index.d.ts",
|
|
272
276
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-editor-design.mjs"
|
|
273
277
|
},
|
|
274
|
-
"./axis-components/
|
|
275
|
-
"types": "./axis-components/
|
|
276
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
278
|
+
"./axis-components/edit-table/design": {
|
|
279
|
+
"types": "./axis-components/edit-table/design/index.d.ts",
|
|
280
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-edit-table-design.mjs"
|
|
277
281
|
},
|
|
278
282
|
"./axis-components/flex/design": {
|
|
279
283
|
"types": "./axis-components/flex/design/index.d.ts",
|
|
@@ -283,6 +287,10 @@
|
|
|
283
287
|
"types": "./axis-components/form/design/index.d.ts",
|
|
284
288
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-form-design.mjs"
|
|
285
289
|
},
|
|
290
|
+
"./axis-components/icon/design": {
|
|
291
|
+
"types": "./axis-components/icon/design/index.d.ts",
|
|
292
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-icon-design.mjs"
|
|
293
|
+
},
|
|
286
294
|
"./axis-components/image/design": {
|
|
287
295
|
"types": "./axis-components/image/design/index.d.ts",
|
|
288
296
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-image-design.mjs"
|
|
@@ -291,10 +299,6 @@
|
|
|
291
299
|
"types": "./axis-components/form-item/design/index.d.ts",
|
|
292
300
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-form-item-design.mjs"
|
|
293
301
|
},
|
|
294
|
-
"./axis-components/icon/design": {
|
|
295
|
-
"types": "./axis-components/icon/design/index.d.ts",
|
|
296
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-icon-design.mjs"
|
|
297
|
-
},
|
|
298
302
|
"./axis-components/input/design": {
|
|
299
303
|
"types": "./axis-components/input/design/index.d.ts",
|
|
300
304
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-design.mjs"
|
|
@@ -303,17 +307,17 @@
|
|
|
303
307
|
"types": "./axis-components/input-component/design/index.d.ts",
|
|
304
308
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-component-design.mjs"
|
|
305
309
|
},
|
|
306
|
-
"./axis-components/input-
|
|
307
|
-
"types": "./axis-components/input-
|
|
308
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-
|
|
310
|
+
"./axis-components/input-number/design": {
|
|
311
|
+
"types": "./axis-components/input-number/design/index.d.ts",
|
|
312
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-number-design.mjs"
|
|
309
313
|
},
|
|
310
314
|
"./axis-components/input-icon/design": {
|
|
311
315
|
"types": "./axis-components/input-icon/design/index.d.ts",
|
|
312
316
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-icon-design.mjs"
|
|
313
317
|
},
|
|
314
|
-
"./axis-components/input-
|
|
315
|
-
"types": "./axis-components/input-
|
|
316
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-
|
|
318
|
+
"./axis-components/input-json/design": {
|
|
319
|
+
"types": "./axis-components/input-json/design/index.d.ts",
|
|
320
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-json-design.mjs"
|
|
317
321
|
},
|
|
318
322
|
"./axis-components/modal/design": {
|
|
319
323
|
"types": "./axis-components/modal/design/index.d.ts",
|
|
@@ -335,14 +339,6 @@
|
|
|
335
339
|
"types": "./axis-components/rich-text-editor/design/index.d.ts",
|
|
336
340
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-rich-text-editor-design.mjs"
|
|
337
341
|
},
|
|
338
|
-
"./axis-components/dropdown/design": {
|
|
339
|
-
"types": "./axis-components/dropdown/design/index.d.ts",
|
|
340
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-dropdown-design.mjs"
|
|
341
|
-
},
|
|
342
|
-
"./axis-components/single-selector/design": {
|
|
343
|
-
"types": "./axis-components/single-selector/design/index.d.ts",
|
|
344
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-single-selector-design.mjs"
|
|
345
|
-
},
|
|
346
342
|
"./axis-components/scope/design": {
|
|
347
343
|
"types": "./axis-components/scope/design/index.d.ts",
|
|
348
344
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-scope-design.mjs"
|
|
@@ -355,30 +351,30 @@
|
|
|
355
351
|
"types": "./axis-components/splitter/design/index.d.ts",
|
|
356
352
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-splitter-design.mjs"
|
|
357
353
|
},
|
|
354
|
+
"./axis-components/single-selector/design": {
|
|
355
|
+
"types": "./axis-components/single-selector/design/index.d.ts",
|
|
356
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-single-selector-design.mjs"
|
|
357
|
+
},
|
|
358
|
+
"./axis-components/switch/design": {
|
|
359
|
+
"types": "./axis-components/switch/design/index.d.ts",
|
|
360
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-switch-design.mjs"
|
|
361
|
+
},
|
|
358
362
|
"./axis-components/steps/design": {
|
|
359
363
|
"types": "./axis-components/steps/design/index.d.ts",
|
|
360
364
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-steps-design.mjs"
|
|
361
365
|
},
|
|
366
|
+
"./axis-components/text/design": {
|
|
367
|
+
"types": "./axis-components/text/design/index.d.ts",
|
|
368
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-text-design.mjs"
|
|
369
|
+
},
|
|
362
370
|
"./axis-components/table/design": {
|
|
363
371
|
"types": "./axis-components/table/design/index.d.ts",
|
|
364
372
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-table-design.mjs"
|
|
365
373
|
},
|
|
366
|
-
"./axis-components/switch/design": {
|
|
367
|
-
"types": "./axis-components/switch/design/index.d.ts",
|
|
368
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-switch-design.mjs"
|
|
369
|
-
},
|
|
370
374
|
"./axis-components/tabs/design": {
|
|
371
375
|
"types": "./axis-components/tabs/design/index.d.ts",
|
|
372
376
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-tabs-design.mjs"
|
|
373
377
|
},
|
|
374
|
-
"./axis-components/text/design": {
|
|
375
|
-
"types": "./axis-components/text/design/index.d.ts",
|
|
376
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-text-design.mjs"
|
|
377
|
-
},
|
|
378
|
-
"./axis-components/textarea/design": {
|
|
379
|
-
"types": "./axis-components/textarea/design/index.d.ts",
|
|
380
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-textarea-design.mjs"
|
|
381
|
-
},
|
|
382
378
|
"./axis-components/timer/design": {
|
|
383
379
|
"types": "./axis-components/timer/design/index.d.ts",
|
|
384
380
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-timer-design.mjs"
|
|
@@ -387,13 +383,17 @@
|
|
|
387
383
|
"types": "./axis-components/tree-selector/design/index.d.ts",
|
|
388
384
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-tree-selector-design.mjs"
|
|
389
385
|
},
|
|
386
|
+
"./axis-components/transfer/design": {
|
|
387
|
+
"types": "./axis-components/transfer/design/index.d.ts",
|
|
388
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-transfer-design.mjs"
|
|
389
|
+
},
|
|
390
390
|
"./axis-components/upload/design": {
|
|
391
391
|
"types": "./axis-components/upload/design/index.d.ts",
|
|
392
392
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-upload-design.mjs"
|
|
393
393
|
},
|
|
394
|
-
"./axis-components/
|
|
395
|
-
"types": "./axis-components/
|
|
396
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
394
|
+
"./axis-components/textarea/design": {
|
|
395
|
+
"types": "./axis-components/textarea/design/index.d.ts",
|
|
396
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-textarea-design.mjs"
|
|
397
397
|
}
|
|
398
398
|
},
|
|
399
399
|
"sideEffects": false
|