ngx-axis-appforge 0.0.68 → 0.0.69
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.
|
@@ -82,9 +82,14 @@ class DatePickerSelector extends ValueAccess {
|
|
|
82
82
|
if (this.dateValue() != undefined) {
|
|
83
83
|
if (Array.isArray(this.dateValue())) {
|
|
84
84
|
let dates = this.dateValue();
|
|
85
|
-
dates
|
|
86
|
-
|
|
87
|
-
|
|
85
|
+
if (dates.length != 2) {
|
|
86
|
+
this.value.set(null);
|
|
87
|
+
}
|
|
88
|
+
else {
|
|
89
|
+
dates[0] = this.floorDate(dates[0]);
|
|
90
|
+
dates[1] = this.topDate(dates[1]);
|
|
91
|
+
this.value.set(this.dateValue().map(v => v.toISOString()));
|
|
92
|
+
}
|
|
88
93
|
}
|
|
89
94
|
else {
|
|
90
95
|
let date = this.floorDate(this.dateValue());
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngx-axis-appforge-axis-components-date-picker.mjs","sources":["../../../axis-components/date-picker/date-picker.options.ts","../../../axis-components/date-picker/date-picker.ts","../../../axis-components/date-picker/date-picker.html","../../../axis-components/date-picker/ngx-axis-appforge-axis-components-date-picker.ts"],"sourcesContent":["import { signal } from \"@angular/core\";\nimport { ValueAccessOptions } from \"ngx-axis-appforge/core\";\n\nexport class DatePickerOptions extends ValueAccessOptions {\n\n readonly mode = signal<'date' | 'week' | 'month' | 'quarter' | 'year'>(\"date\");\n readonly range = signal(false);\n readonly allowClear = signal(true);\n readonly selectTime = signal(false);\n readonly defaultNow = signal(false);\n\n readonly showToday = signal(true);\n readonly showNow = signal(true);\n readonly showWeek = signal(false);\n readonly placeHolder = signal(\"\");\n readonly format = signal(\"\");\n readonly size = signal<'default' | 'large' | 'small'>(\"default\");\n readonly variant = signal<'outlined' | 'borderless' | 'filled' | 'underlined'>(\"outlined\");\n readonly inline = signal(false);\n}","import { ChangeDetectionStrategy, Component, computed, model, OnInit } from '@angular/core';\nimport { ValueAccess } from 'ngx-axis-appforge/core';\nimport { DatePickerOptions } from './date-picker.options';\nimport { NzDatePickerModule } from 'ng-zorro-antd/date-picker';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule } from '@angular/forms';\n\n@Component({\n selector: 'axis-date-picker',\n imports: [NzDatePickerModule, CommonModule, FormsModule],\n templateUrl: './date-picker.html',\n styleUrl: './date-picker.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatePickerSelector extends ValueAccess<DatePickerOptions> implements OnInit {\n\n override options: DatePickerOptions = new DatePickerOptions();\n readonly dateValue = model<Date | Date[]>();\n readonly showTime = computed(() => this.options.selectTime() && this.options.mode() == \"date\");\n\n format = computed(() => {\n if (this.options.format()) {\n return this.options.format();\n }\n switch (this.options.mode()) {\n case \"date\":\n return this.showTime() ? \"yyyy-MM-dd HH:mm:ss\" : \"yyyy-MM-dd\";\n case \"week\":\n return \"yyyy-ww\";\n case \"month\":\n return \"yyyy-MM\";\n case \"quarter\":\n return \"yyyy-qQ\";\n case \"year\":\n return \"yyyy\";\n }\n });\n\n ngOnInit(): void {\n if (this.options.defaultNow()) {\n const now = new Date();\n if (!this.options.range()) {\n this.setInitValue(this.floorDate(now).toISOString());\n } else {\n this.setInitValue([this.floorDate(now).toISOString(), this.topDate(now).toISOString()]);\n }\n }\n }\n\n override writeValue(value: any): void {\n super.writeValue(value);\n this.valueToDateValue();\n }\n\n override setInitValue(value: any): void {\n super.setInitValue(value);\n this.valueToDateValue();\n }\n\n dateChange() {\n this.dateValueToValue();\n this.onChange?.(this.value());\n }\n\n private valueToDateValue() {\n if (this.value() != undefined) {\n if (Array.isArray(this.value())) {\n this.dateValue.set((this.value() as any[]).map(v => new Date(v)));\n } else {\n this.dateValue.set(new Date(this.value()));\n }\n }\n }\n\n private dateValueToValue() {\n if (this.dateValue() != undefined) {\n if (Array.isArray(this.dateValue())) {\n let dates = (this.dateValue() as Date[]);\n dates[0] = this.floorDate(dates[0]);\n dates[1] = this.topDate(dates[1]);\n this.value.set((this.dateValue() as Date[]).map(v => v.toISOString()));\n } else {\n let date = this.floorDate(this.dateValue() as Date);\n this.value.set(date.toISOString());\n }\n }\n }\n\n private floorDate(date: Date): Date {\n if (this.options.mode() != \"date\" || !this.options.selectTime()) {\n date = new Date(date);\n switch (this.options.mode()) {\n case \"year\":\n date.setMonth(0);\n case \"quarter\":\n if (this.options.mode() == \"quarter\") {\n date.setMonth(Math.floor(date.getMonth() / 3) * 3);\n }\n case \"month\":\n date.setDate(1);\n case \"week\":\n if (this.options.mode() == \"week\") {\n let offset = 1 - date.getDay();\n offset = offset == 1 ? -6 : offset;\n date.setDate(date.getDate() + offset);\n }\n case \"date\":\n date.setHours(0);\n date.setMinutes(0);\n date.setSeconds(0);\n date.setMilliseconds(0);\n }\n }\n return date;\n }\n\n private topDate(date: Date) {\n if (this.options.mode() != \"date\" || !this.options.selectTime()) {\n date = this.floorDate(date);\n switch (this.options.mode()) {\n case \"date\":\n date.setDate(date.getDate() + 1);\n break;\n case \"week\":\n date.setDate(date.getDate() + 7);\n break;\n case \"month\":\n date.setMonth(date.getMonth() + 1);\n break;\n case \"quarter\":\n date.setMonth(date.getMonth() + 3);\n break;\n case \"year\":\n date.setFullYear(date.getFullYear() + 1);\n break;\n }\n date.setMilliseconds(-1);\n }\n return date;\n }\n\n\n}\n","@if (options.readonly()) {\n{{value() | date:format()}}\n}@else {\n@if (options.range()) {\n<nz-range-picker style=\"width: 100%;\" [(ngModel)]=\"dateValue\" (ngModelChange)=\"dateChange()\"\n [nzAllowClear]=\"options.allowClear()\" [nzDisabled]=\"options.disabled()\" [nzFormat]=\"format()\"\n [nzMode]=\"options.mode()\" [nzPlaceHolder]=\"options.placeHolder()\" [nzSize]=\"options.size()\"\n [nzVariant]=\"options.variant()\" [nzInline]=\"options.inline()\" [nzShowTime]=\"showTime()\"\n [nzShowToday]=\"options.showToday()\" [nzShowNow]=\"options.showNow()\"\n [nzShowWeekNumber]=\"options.showWeek()\"></nz-range-picker>\n}@else {\n<nz-date-picker style=\"width: 100%;\" [(ngModel)]=\"dateValue\" (ngModelChange)=\"dateChange()\"\n [nzAllowClear]=\"options.allowClear()\" [nzDisabled]=\"options.disabled()\" [nzFormat]=\"format()\"\n [nzMode]=\"options.mode()\" [nzPlaceHolder]=\"options.placeHolder()\" [nzSize]=\"options.size()\"\n [nzVariant]=\"options.variant()\" [nzInline]=\"options.inline()\" [nzShowTime]=\"showTime()\"\n [nzShowToday]=\"options.showToday()\" [nzShowNow]=\"options.showNow()\"\n [nzShowWeekNumber]=\"options.showWeek()\"></nz-date-picker>\n}\n}","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './date-picker';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ngx-axis-appforge-axis-components-date-picker.mjs","sources":["../../../axis-components/date-picker/date-picker.options.ts","../../../axis-components/date-picker/date-picker.ts","../../../axis-components/date-picker/date-picker.html","../../../axis-components/date-picker/ngx-axis-appforge-axis-components-date-picker.ts"],"sourcesContent":["import { signal } from \"@angular/core\";\nimport { ValueAccessOptions } from \"ngx-axis-appforge/core\";\n\nexport class DatePickerOptions extends ValueAccessOptions {\n\n readonly mode = signal<'date' | 'week' | 'month' | 'quarter' | 'year'>(\"date\");\n readonly range = signal(false);\n readonly allowClear = signal(true);\n readonly selectTime = signal(false);\n readonly defaultNow = signal(false);\n\n readonly showToday = signal(true);\n readonly showNow = signal(true);\n readonly showWeek = signal(false);\n readonly placeHolder = signal(\"\");\n readonly format = signal(\"\");\n readonly size = signal<'default' | 'large' | 'small'>(\"default\");\n readonly variant = signal<'outlined' | 'borderless' | 'filled' | 'underlined'>(\"outlined\");\n readonly inline = signal(false);\n}","import { ChangeDetectionStrategy, Component, computed, model, OnInit } from '@angular/core';\nimport { ValueAccess } from 'ngx-axis-appforge/core';\nimport { DatePickerOptions } from './date-picker.options';\nimport { NzDatePickerModule } from 'ng-zorro-antd/date-picker';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule } from '@angular/forms';\n\n@Component({\n selector: 'axis-date-picker',\n imports: [NzDatePickerModule, CommonModule, FormsModule],\n templateUrl: './date-picker.html',\n styleUrl: './date-picker.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class DatePickerSelector extends ValueAccess<DatePickerOptions> implements OnInit {\n\n override options: DatePickerOptions = new DatePickerOptions();\n readonly dateValue = model<Date | Date[]>();\n readonly showTime = computed(() => this.options.selectTime() && this.options.mode() == \"date\");\n\n format = computed(() => {\n if (this.options.format()) {\n return this.options.format();\n }\n switch (this.options.mode()) {\n case \"date\":\n return this.showTime() ? \"yyyy-MM-dd HH:mm:ss\" : \"yyyy-MM-dd\";\n case \"week\":\n return \"yyyy-ww\";\n case \"month\":\n return \"yyyy-MM\";\n case \"quarter\":\n return \"yyyy-qQ\";\n case \"year\":\n return \"yyyy\";\n }\n });\n\n ngOnInit(): void {\n if (this.options.defaultNow()) {\n const now = new Date();\n if (!this.options.range()) {\n this.setInitValue(this.floorDate(now).toISOString());\n } else {\n this.setInitValue([this.floorDate(now).toISOString(), this.topDate(now).toISOString()]);\n }\n }\n }\n\n override writeValue(value: any): void {\n super.writeValue(value);\n this.valueToDateValue();\n }\n\n override setInitValue(value: any): void {\n super.setInitValue(value);\n this.valueToDateValue();\n }\n\n dateChange() {\n this.dateValueToValue();\n this.onChange?.(this.value());\n }\n\n private valueToDateValue() {\n if (this.value() != undefined) {\n if (Array.isArray(this.value())) {\n this.dateValue.set((this.value() as any[]).map(v => new Date(v)));\n } else {\n this.dateValue.set(new Date(this.value()));\n }\n }\n }\n\n private dateValueToValue() {\n if (this.dateValue() != undefined) {\n if (Array.isArray(this.dateValue())) {\n let dates = (this.dateValue() as Date[]);\n if (dates.length != 2) {\n this.value.set(null);\n } else {\n dates[0] = this.floorDate(dates[0]);\n dates[1] = this.topDate(dates[1]);\n this.value.set((this.dateValue() as Date[]).map(v => v.toISOString()));\n }\n } else {\n let date = this.floorDate(this.dateValue() as Date);\n this.value.set(date.toISOString());\n }\n }\n }\n\n private floorDate(date: Date): Date {\n if (this.options.mode() != \"date\" || !this.options.selectTime()) {\n date = new Date(date);\n switch (this.options.mode()) {\n case \"year\":\n date.setMonth(0);\n case \"quarter\":\n if (this.options.mode() == \"quarter\") {\n date.setMonth(Math.floor(date.getMonth() / 3) * 3);\n }\n case \"month\":\n date.setDate(1);\n case \"week\":\n if (this.options.mode() == \"week\") {\n let offset = 1 - date.getDay();\n offset = offset == 1 ? -6 : offset;\n date.setDate(date.getDate() + offset);\n }\n case \"date\":\n date.setHours(0);\n date.setMinutes(0);\n date.setSeconds(0);\n date.setMilliseconds(0);\n }\n }\n return date;\n }\n\n private topDate(date: Date) {\n if (this.options.mode() != \"date\" || !this.options.selectTime()) {\n date = this.floorDate(date);\n switch (this.options.mode()) {\n case \"date\":\n date.setDate(date.getDate() + 1);\n break;\n case \"week\":\n date.setDate(date.getDate() + 7);\n break;\n case \"month\":\n date.setMonth(date.getMonth() + 1);\n break;\n case \"quarter\":\n date.setMonth(date.getMonth() + 3);\n break;\n case \"year\":\n date.setFullYear(date.getFullYear() + 1);\n break;\n }\n date.setMilliseconds(-1);\n }\n return date;\n }\n\n\n}\n","@if (options.readonly()) {\n{{value() | date:format()}}\n}@else {\n@if (options.range()) {\n<nz-range-picker style=\"width: 100%;\" [(ngModel)]=\"dateValue\" (ngModelChange)=\"dateChange()\"\n [nzAllowClear]=\"options.allowClear()\" [nzDisabled]=\"options.disabled()\" [nzFormat]=\"format()\"\n [nzMode]=\"options.mode()\" [nzPlaceHolder]=\"options.placeHolder()\" [nzSize]=\"options.size()\"\n [nzVariant]=\"options.variant()\" [nzInline]=\"options.inline()\" [nzShowTime]=\"showTime()\"\n [nzShowToday]=\"options.showToday()\" [nzShowNow]=\"options.showNow()\"\n [nzShowWeekNumber]=\"options.showWeek()\"></nz-range-picker>\n}@else {\n<nz-date-picker style=\"width: 100%;\" [(ngModel)]=\"dateValue\" (ngModelChange)=\"dateChange()\"\n [nzAllowClear]=\"options.allowClear()\" [nzDisabled]=\"options.disabled()\" [nzFormat]=\"format()\"\n [nzMode]=\"options.mode()\" [nzPlaceHolder]=\"options.placeHolder()\" [nzSize]=\"options.size()\"\n [nzVariant]=\"options.variant()\" [nzInline]=\"options.inline()\" [nzShowTime]=\"showTime()\"\n [nzShowToday]=\"options.showToday()\" [nzShowNow]=\"options.showNow()\"\n [nzShowWeekNumber]=\"options.showWeek()\"></nz-date-picker>\n}\n}","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './date-picker';\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.69",
|
|
4
4
|
"author": "ZengCheng <zengc694623467@gmail.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"dependencies": {
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"types": "./axis-components/index.d.ts",
|
|
38
38
|
"default": "./fesm2022/ngx-axis-appforge-axis-components.mjs"
|
|
39
39
|
},
|
|
40
|
-
"./core": {
|
|
41
|
-
"types": "./core/index.d.ts",
|
|
42
|
-
"default": "./fesm2022/ngx-axis-appforge-core.mjs"
|
|
43
|
-
},
|
|
44
40
|
"./providers": {
|
|
45
41
|
"types": "./providers/index.d.ts",
|
|
46
42
|
"default": "./fesm2022/ngx-axis-appforge-providers.mjs"
|
|
47
43
|
},
|
|
44
|
+
"./core": {
|
|
45
|
+
"types": "./core/index.d.ts",
|
|
46
|
+
"default": "./fesm2022/ngx-axis-appforge-core.mjs"
|
|
47
|
+
},
|
|
48
48
|
"./axis-components/badge": {
|
|
49
49
|
"types": "./axis-components/badge/index.d.ts",
|
|
50
50
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-badge.mjs"
|
|
@@ -53,17 +53,21 @@
|
|
|
53
53
|
"types": "./axis-components/button/index.d.ts",
|
|
54
54
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-button.mjs"
|
|
55
55
|
},
|
|
56
|
-
"./axis-components/
|
|
57
|
-
"types": "./axis-components/
|
|
58
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
56
|
+
"./axis-components/color-picker": {
|
|
57
|
+
"types": "./axis-components/color-picker/index.d.ts",
|
|
58
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-color-picker.mjs"
|
|
59
59
|
},
|
|
60
60
|
"./axis-components/cytoscape": {
|
|
61
61
|
"types": "./axis-components/cytoscape/index.d.ts",
|
|
62
62
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-cytoscape.mjs"
|
|
63
63
|
},
|
|
64
|
-
"./axis-components/
|
|
65
|
-
"types": "./axis-components/
|
|
66
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
64
|
+
"./axis-components/checkbox": {
|
|
65
|
+
"types": "./axis-components/checkbox/index.d.ts",
|
|
66
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-checkbox.mjs"
|
|
67
|
+
},
|
|
68
|
+
"./axis-components/date-picker": {
|
|
69
|
+
"types": "./axis-components/date-picker/index.d.ts",
|
|
70
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-date-picker.mjs"
|
|
67
71
|
},
|
|
68
72
|
"./axis-components/design": {
|
|
69
73
|
"types": "./axis-components/design/index.d.ts",
|
|
@@ -73,17 +77,9 @@
|
|
|
73
77
|
"types": "./axis-components/desc/index.d.ts",
|
|
74
78
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-desc.mjs"
|
|
75
79
|
},
|
|
76
|
-
"./axis-components/
|
|
77
|
-
"types": "./axis-components/
|
|
78
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
79
|
-
},
|
|
80
|
-
"./axis-components/dynamic-container": {
|
|
81
|
-
"types": "./axis-components/dynamic-container/index.d.ts",
|
|
82
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-container.mjs"
|
|
83
|
-
},
|
|
84
|
-
"./axis-components/dropdown": {
|
|
85
|
-
"types": "./axis-components/dropdown/index.d.ts",
|
|
86
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-dropdown.mjs"
|
|
80
|
+
"./axis-components/edit-table": {
|
|
81
|
+
"types": "./axis-components/edit-table/index.d.ts",
|
|
82
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-edit-table.mjs"
|
|
87
83
|
},
|
|
88
84
|
"./axis-components/dynamic-value": {
|
|
89
85
|
"types": "./axis-components/dynamic-value/index.d.ts",
|
|
@@ -93,10 +89,6 @@
|
|
|
93
89
|
"types": "./axis-components/editor/index.d.ts",
|
|
94
90
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-editor.mjs"
|
|
95
91
|
},
|
|
96
|
-
"./axis-components/edit-table": {
|
|
97
|
-
"types": "./axis-components/edit-table/index.d.ts",
|
|
98
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-edit-table.mjs"
|
|
99
|
-
},
|
|
100
92
|
"./axis-components/flex": {
|
|
101
93
|
"types": "./axis-components/flex/index.d.ts",
|
|
102
94
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-flex.mjs"
|
|
@@ -105,38 +97,46 @@
|
|
|
105
97
|
"types": "./axis-components/form/index.d.ts",
|
|
106
98
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-form.mjs"
|
|
107
99
|
},
|
|
108
|
-
"./axis-components/image": {
|
|
109
|
-
"types": "./axis-components/image/index.d.ts",
|
|
110
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-image.mjs"
|
|
111
|
-
},
|
|
112
100
|
"./axis-components/icon": {
|
|
113
101
|
"types": "./axis-components/icon/index.d.ts",
|
|
114
102
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-icon.mjs"
|
|
115
103
|
},
|
|
104
|
+
"./axis-components/form-item": {
|
|
105
|
+
"types": "./axis-components/form-item/index.d.ts",
|
|
106
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-form-item.mjs"
|
|
107
|
+
},
|
|
108
|
+
"./axis-components/image": {
|
|
109
|
+
"types": "./axis-components/image/index.d.ts",
|
|
110
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-image.mjs"
|
|
111
|
+
},
|
|
116
112
|
"./axis-components/input": {
|
|
117
113
|
"types": "./axis-components/input/index.d.ts",
|
|
118
114
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input.mjs"
|
|
119
115
|
},
|
|
120
|
-
"./axis-components/input-icon": {
|
|
121
|
-
"types": "./axis-components/input-icon/index.d.ts",
|
|
122
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-icon.mjs"
|
|
123
|
-
},
|
|
124
116
|
"./axis-components/input-component": {
|
|
125
117
|
"types": "./axis-components/input-component/index.d.ts",
|
|
126
118
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-component.mjs"
|
|
127
119
|
},
|
|
120
|
+
"./axis-components/dropdown": {
|
|
121
|
+
"types": "./axis-components/dropdown/index.d.ts",
|
|
122
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-dropdown.mjs"
|
|
123
|
+
},
|
|
124
|
+
"./axis-components/input-icon": {
|
|
125
|
+
"types": "./axis-components/input-icon/index.d.ts",
|
|
126
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-icon.mjs"
|
|
127
|
+
},
|
|
128
128
|
"./axis-components/input-json": {
|
|
129
129
|
"types": "./axis-components/input-json/index.d.ts",
|
|
130
130
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-json.mjs"
|
|
131
131
|
},
|
|
132
|
-
"./axis-components/form-item": {
|
|
133
|
-
"types": "./axis-components/form-item/index.d.ts",
|
|
134
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-form-item.mjs"
|
|
135
|
-
},
|
|
136
132
|
"./axis-components/modal": {
|
|
137
133
|
"types": "./axis-components/modal/index.d.ts",
|
|
138
134
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-modal.mjs"
|
|
139
135
|
},
|
|
136
|
+
"./axis-components/radio": {
|
|
137
|
+
"types": "./axis-components/radio/index.d.ts",
|
|
138
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-radio.mjs"
|
|
139
|
+
},
|
|
140
140
|
"./axis-components/input-number": {
|
|
141
141
|
"types": "./axis-components/input-number/index.d.ts",
|
|
142
142
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-number.mjs"
|
|
@@ -149,46 +149,42 @@
|
|
|
149
149
|
"types": "./axis-components/rate/index.d.ts",
|
|
150
150
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-rate.mjs"
|
|
151
151
|
},
|
|
152
|
+
"./axis-components/dynamic-container": {
|
|
153
|
+
"types": "./axis-components/dynamic-container/index.d.ts",
|
|
154
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-container.mjs"
|
|
155
|
+
},
|
|
152
156
|
"./axis-components/rich-text-editor": {
|
|
153
157
|
"types": "./axis-components/rich-text-editor/index.d.ts",
|
|
154
158
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-rich-text-editor.mjs"
|
|
155
159
|
},
|
|
156
|
-
"./axis-components/radio": {
|
|
157
|
-
"types": "./axis-components/radio/index.d.ts",
|
|
158
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-radio.mjs"
|
|
159
|
-
},
|
|
160
|
-
"./axis-components/single-selector": {
|
|
161
|
-
"types": "./axis-components/single-selector/index.d.ts",
|
|
162
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-single-selector.mjs"
|
|
163
|
-
},
|
|
164
160
|
"./axis-components/select": {
|
|
165
161
|
"types": "./axis-components/select/index.d.ts",
|
|
166
162
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-select.mjs"
|
|
167
163
|
},
|
|
168
|
-
"./axis-components/scope": {
|
|
169
|
-
"types": "./axis-components/scope/index.d.ts",
|
|
170
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-scope.mjs"
|
|
171
|
-
},
|
|
172
164
|
"./axis-components/splitter": {
|
|
173
165
|
"types": "./axis-components/splitter/index.d.ts",
|
|
174
166
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-splitter.mjs"
|
|
175
167
|
},
|
|
176
|
-
"./axis-components/
|
|
177
|
-
"types": "./axis-components/
|
|
178
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
168
|
+
"./axis-components/scope": {
|
|
169
|
+
"types": "./axis-components/scope/index.d.ts",
|
|
170
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-scope.mjs"
|
|
171
|
+
},
|
|
172
|
+
"./axis-components/single-selector": {
|
|
173
|
+
"types": "./axis-components/single-selector/index.d.ts",
|
|
174
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-single-selector.mjs"
|
|
179
175
|
},
|
|
180
176
|
"./axis-components/steps": {
|
|
181
177
|
"types": "./axis-components/steps/index.d.ts",
|
|
182
178
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-steps.mjs"
|
|
183
179
|
},
|
|
180
|
+
"./axis-components/switch": {
|
|
181
|
+
"types": "./axis-components/switch/index.d.ts",
|
|
182
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-switch.mjs"
|
|
183
|
+
},
|
|
184
184
|
"./axis-components/table": {
|
|
185
185
|
"types": "./axis-components/table/index.d.ts",
|
|
186
186
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-table.mjs"
|
|
187
187
|
},
|
|
188
|
-
"./axis-components/tabs": {
|
|
189
|
-
"types": "./axis-components/tabs/index.d.ts",
|
|
190
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-tabs.mjs"
|
|
191
|
-
},
|
|
192
188
|
"./axis-components/text": {
|
|
193
189
|
"types": "./axis-components/text/index.d.ts",
|
|
194
190
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-text.mjs"
|
|
@@ -205,6 +201,10 @@
|
|
|
205
201
|
"types": "./axis-components/timer/index.d.ts",
|
|
206
202
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-timer.mjs"
|
|
207
203
|
},
|
|
204
|
+
"./axis-components/transfer": {
|
|
205
|
+
"types": "./axis-components/transfer/index.d.ts",
|
|
206
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-transfer.mjs"
|
|
207
|
+
},
|
|
208
208
|
"./axis-components/upload": {
|
|
209
209
|
"types": "./axis-components/upload/index.d.ts",
|
|
210
210
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-upload.mjs"
|
|
@@ -213,18 +213,18 @@
|
|
|
213
213
|
"types": "./axis-components/tree-selector/index.d.ts",
|
|
214
214
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-tree-selector.mjs"
|
|
215
215
|
},
|
|
216
|
-
"./axis-components/
|
|
217
|
-
"types": "./axis-components/
|
|
218
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
216
|
+
"./axis-components/button/design": {
|
|
217
|
+
"types": "./axis-components/button/design/index.d.ts",
|
|
218
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-button-design.mjs"
|
|
219
|
+
},
|
|
220
|
+
"./axis-components/color-picker/design": {
|
|
221
|
+
"types": "./axis-components/color-picker/design/index.d.ts",
|
|
222
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-color-picker-design.mjs"
|
|
219
223
|
},
|
|
220
224
|
"./axis-components/badge/design": {
|
|
221
225
|
"types": "./axis-components/badge/design/index.d.ts",
|
|
222
226
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-badge-design.mjs"
|
|
223
227
|
},
|
|
224
|
-
"./axis-components/button/design": {
|
|
225
|
-
"types": "./axis-components/button/design/index.d.ts",
|
|
226
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-button-design.mjs"
|
|
227
|
-
},
|
|
228
228
|
"./axis-components/cytoscape/design": {
|
|
229
229
|
"types": "./axis-components/cytoscape/design/index.d.ts",
|
|
230
230
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-cytoscape-design.mjs"
|
|
@@ -233,85 +233,85 @@
|
|
|
233
233
|
"types": "./axis-components/checkbox/design/index.d.ts",
|
|
234
234
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-checkbox-design.mjs"
|
|
235
235
|
},
|
|
236
|
-
"./axis-components/
|
|
237
|
-
"types": "./axis-components/
|
|
238
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
236
|
+
"./axis-components/tabs": {
|
|
237
|
+
"types": "./axis-components/tabs/index.d.ts",
|
|
238
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-tabs.mjs"
|
|
239
|
+
},
|
|
240
|
+
"./axis-components/date-picker/design": {
|
|
241
|
+
"types": "./axis-components/date-picker/design/index.d.ts",
|
|
242
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-date-picker-design.mjs"
|
|
239
243
|
},
|
|
240
244
|
"./axis-components/design/design": {
|
|
241
245
|
"types": "./axis-components/design/design/index.d.ts",
|
|
242
246
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-design-design.mjs"
|
|
243
247
|
},
|
|
244
|
-
"./axis-components/
|
|
245
|
-
"types": "./axis-components/
|
|
246
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
248
|
+
"./axis-components/dynamic-value/design": {
|
|
249
|
+
"types": "./axis-components/dynamic-value/design/index.d.ts",
|
|
250
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-value-design.mjs"
|
|
247
251
|
},
|
|
248
252
|
"./axis-components/desc/design": {
|
|
249
253
|
"types": "./axis-components/desc/design/index.d.ts",
|
|
250
254
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-desc-design.mjs"
|
|
251
255
|
},
|
|
252
|
-
"./axis-components/
|
|
253
|
-
"types": "./axis-components/
|
|
254
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
256
|
+
"./axis-components/edit-table/design": {
|
|
257
|
+
"types": "./axis-components/edit-table/design/index.d.ts",
|
|
258
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-edit-table-design.mjs"
|
|
255
259
|
},
|
|
256
260
|
"./axis-components/editor/design": {
|
|
257
261
|
"types": "./axis-components/editor/design/index.d.ts",
|
|
258
262
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-editor-design.mjs"
|
|
259
263
|
},
|
|
260
|
-
"./axis-components/dynamic-value/design": {
|
|
261
|
-
"types": "./axis-components/dynamic-value/design/index.d.ts",
|
|
262
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-value-design.mjs"
|
|
263
|
-
},
|
|
264
|
-
"./axis-components/dynamic-container/design": {
|
|
265
|
-
"types": "./axis-components/dynamic-container/design/index.d.ts",
|
|
266
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-container-design.mjs"
|
|
267
|
-
},
|
|
268
264
|
"./axis-components/flex/design": {
|
|
269
265
|
"types": "./axis-components/flex/design/index.d.ts",
|
|
270
266
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-flex-design.mjs"
|
|
271
267
|
},
|
|
272
|
-
"./axis-components/
|
|
273
|
-
"types": "./axis-components/
|
|
274
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
268
|
+
"./axis-components/icon/design": {
|
|
269
|
+
"types": "./axis-components/icon/design/index.d.ts",
|
|
270
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-icon-design.mjs"
|
|
275
271
|
},
|
|
276
272
|
"./axis-components/form/design": {
|
|
277
273
|
"types": "./axis-components/form/design/index.d.ts",
|
|
278
274
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-form-design.mjs"
|
|
279
275
|
},
|
|
276
|
+
"./axis-components/form-item/design": {
|
|
277
|
+
"types": "./axis-components/form-item/design/index.d.ts",
|
|
278
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-form-item-design.mjs"
|
|
279
|
+
},
|
|
280
280
|
"./axis-components/image/design": {
|
|
281
281
|
"types": "./axis-components/image/design/index.d.ts",
|
|
282
282
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-image-design.mjs"
|
|
283
283
|
},
|
|
284
|
-
"./axis-components/icon/design": {
|
|
285
|
-
"types": "./axis-components/icon/design/index.d.ts",
|
|
286
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-icon-design.mjs"
|
|
287
|
-
},
|
|
288
284
|
"./axis-components/input/design": {
|
|
289
285
|
"types": "./axis-components/input/design/index.d.ts",
|
|
290
286
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-design.mjs"
|
|
291
287
|
},
|
|
292
|
-
"./axis-components/input-component/design": {
|
|
293
|
-
"types": "./axis-components/input-component/design/index.d.ts",
|
|
294
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-component-design.mjs"
|
|
295
|
-
},
|
|
296
288
|
"./axis-components/input-icon/design": {
|
|
297
289
|
"types": "./axis-components/input-icon/design/index.d.ts",
|
|
298
290
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-icon-design.mjs"
|
|
299
291
|
},
|
|
300
|
-
"./axis-components/
|
|
301
|
-
"types": "./axis-components/
|
|
302
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
292
|
+
"./axis-components/dropdown/design": {
|
|
293
|
+
"types": "./axis-components/dropdown/design/index.d.ts",
|
|
294
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-dropdown-design.mjs"
|
|
303
295
|
},
|
|
304
|
-
"./axis-components/
|
|
305
|
-
"types": "./axis-components/
|
|
306
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
296
|
+
"./axis-components/input-component/design": {
|
|
297
|
+
"types": "./axis-components/input-component/design/index.d.ts",
|
|
298
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-component-design.mjs"
|
|
299
|
+
},
|
|
300
|
+
"./axis-components/radio/design": {
|
|
301
|
+
"types": "./axis-components/radio/design/index.d.ts",
|
|
302
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-radio-design.mjs"
|
|
307
303
|
},
|
|
308
304
|
"./axis-components/input-number/design": {
|
|
309
305
|
"types": "./axis-components/input-number/design/index.d.ts",
|
|
310
306
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-number-design.mjs"
|
|
311
307
|
},
|
|
312
|
-
"./axis-components/
|
|
313
|
-
"types": "./axis-components/
|
|
314
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
308
|
+
"./axis-components/modal/design": {
|
|
309
|
+
"types": "./axis-components/modal/design/index.d.ts",
|
|
310
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-modal-design.mjs"
|
|
311
|
+
},
|
|
312
|
+
"./axis-components/menu/design": {
|
|
313
|
+
"types": "./axis-components/menu/design/index.d.ts",
|
|
314
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-menu-design.mjs"
|
|
315
315
|
},
|
|
316
316
|
"./axis-components/rate/design": {
|
|
317
317
|
"types": "./axis-components/rate/design/index.d.ts",
|
|
@@ -321,29 +321,29 @@
|
|
|
321
321
|
"types": "./axis-components/rich-text-editor/design/index.d.ts",
|
|
322
322
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-rich-text-editor-design.mjs"
|
|
323
323
|
},
|
|
324
|
-
"./axis-components/
|
|
325
|
-
"types": "./axis-components/
|
|
326
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
327
|
-
},
|
|
328
|
-
"./axis-components/menu/design": {
|
|
329
|
-
"types": "./axis-components/menu/design/index.d.ts",
|
|
330
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-menu-design.mjs"
|
|
324
|
+
"./axis-components/input-json/design": {
|
|
325
|
+
"types": "./axis-components/input-json/design/index.d.ts",
|
|
326
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-json-design.mjs"
|
|
331
327
|
},
|
|
332
|
-
"./axis-components/
|
|
333
|
-
"types": "./axis-components/
|
|
334
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
328
|
+
"./axis-components/dynamic-container/design": {
|
|
329
|
+
"types": "./axis-components/dynamic-container/design/index.d.ts",
|
|
330
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-container-design.mjs"
|
|
335
331
|
},
|
|
336
332
|
"./axis-components/select/design": {
|
|
337
333
|
"types": "./axis-components/select/design/index.d.ts",
|
|
338
334
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-select-design.mjs"
|
|
339
335
|
},
|
|
336
|
+
"./axis-components/splitter/design": {
|
|
337
|
+
"types": "./axis-components/splitter/design/index.d.ts",
|
|
338
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-splitter-design.mjs"
|
|
339
|
+
},
|
|
340
340
|
"./axis-components/scope/design": {
|
|
341
341
|
"types": "./axis-components/scope/design/index.d.ts",
|
|
342
342
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-scope-design.mjs"
|
|
343
343
|
},
|
|
344
|
-
"./axis-components/
|
|
345
|
-
"types": "./axis-components/
|
|
346
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
344
|
+
"./axis-components/single-selector/design": {
|
|
345
|
+
"types": "./axis-components/single-selector/design/index.d.ts",
|
|
346
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-single-selector-design.mjs"
|
|
347
347
|
},
|
|
348
348
|
"./axis-components/switch/design": {
|
|
349
349
|
"types": "./axis-components/switch/design/index.d.ts",
|
|
@@ -361,10 +361,6 @@
|
|
|
361
361
|
"types": "./axis-components/text/design/index.d.ts",
|
|
362
362
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-text-design.mjs"
|
|
363
363
|
},
|
|
364
|
-
"./axis-components/tabs/design": {
|
|
365
|
-
"types": "./axis-components/tabs/design/index.d.ts",
|
|
366
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-tabs-design.mjs"
|
|
367
|
-
},
|
|
368
364
|
"./axis-components/textarea/design": {
|
|
369
365
|
"types": "./axis-components/textarea/design/index.d.ts",
|
|
370
366
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-textarea-design.mjs"
|
|
@@ -377,13 +373,17 @@
|
|
|
377
373
|
"types": "./axis-components/upload/design/index.d.ts",
|
|
378
374
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-upload-design.mjs"
|
|
379
375
|
},
|
|
376
|
+
"./axis-components/transfer/design": {
|
|
377
|
+
"types": "./axis-components/transfer/design/index.d.ts",
|
|
378
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-transfer-design.mjs"
|
|
379
|
+
},
|
|
380
380
|
"./axis-components/tree-selector/design": {
|
|
381
381
|
"types": "./axis-components/tree-selector/design/index.d.ts",
|
|
382
382
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-tree-selector-design.mjs"
|
|
383
383
|
},
|
|
384
|
-
"./axis-components/
|
|
385
|
-
"types": "./axis-components/
|
|
386
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
384
|
+
"./axis-components/tabs/design": {
|
|
385
|
+
"types": "./axis-components/tabs/design/index.d.ts",
|
|
386
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-tabs-design.mjs"
|
|
387
387
|
}
|
|
388
388
|
},
|
|
389
389
|
"sideEffects": false
|