ngx-axis-appforge 0.0.24 → 0.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/axis-components/radio/index.d.ts +2 -2
- package/axis-components/switch/design/index.d.ts +5 -0
- package/axis-components/switch/index.d.ts +23 -0
- package/axis-components-covers/switch.svg +14 -0
- package/fesm2022/ngx-axis-appforge-axis-components-radio.mjs +6 -6
- package/fesm2022/ngx-axis-appforge-axis-components-radio.mjs.map +1 -1
- package/fesm2022/ngx-axis-appforge-axis-components-switch-design.mjs +79 -0
- package/fesm2022/ngx-axis-appforge-axis-components-switch-design.mjs.map +1 -0
- package/fesm2022/ngx-axis-appforge-axis-components-switch.mjs +48 -0
- package/fesm2022/ngx-axis-appforge-axis-components-switch.mjs.map +1 -0
- package/fesm2022/ngx-axis-appforge-axis-components.mjs +18 -0
- package/fesm2022/ngx-axis-appforge-axis-components.mjs.map +1 -1
- package/package.json +93 -85
|
@@ -21,8 +21,8 @@ declare class Radio extends ValueAccess<RadioOptions> {
|
|
|
21
21
|
readonly radioValue: _angular_core.ModelSignal<any[] | undefined>;
|
|
22
22
|
writeValue(value: any): void;
|
|
23
23
|
setInitValue(value: any): void;
|
|
24
|
-
private
|
|
25
|
-
|
|
24
|
+
private valueToRadioValue;
|
|
25
|
+
onRadioChange(value: any): void;
|
|
26
26
|
private buildDisplay;
|
|
27
27
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Radio, never>;
|
|
28
28
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Radio, "axis-radio", never, { "radioValue": { "alias": "radioValue"; "required": false; "isSignal": true; }; }, { "radioValue": "radioValueChange"; }, never, never, true, never>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { ValueAccessOptions, ValueAccess } from 'ngx-axis-appforge/core';
|
|
3
|
+
|
|
4
|
+
declare class SwitchOptions extends ValueAccessOptions {
|
|
5
|
+
readonly onValue: _angular_core.WritableSignal<any>;
|
|
6
|
+
readonly offValue: _angular_core.WritableSignal<any>;
|
|
7
|
+
readonly onLabel: _angular_core.WritableSignal<any>;
|
|
8
|
+
readonly offLabel: _angular_core.WritableSignal<any>;
|
|
9
|
+
readonly size: _angular_core.WritableSignal<"small" | "default">;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare class Switch extends ValueAccess<SwitchOptions> {
|
|
13
|
+
options: SwitchOptions;
|
|
14
|
+
readonly switchValue: _angular_core.ModelSignal<boolean>;
|
|
15
|
+
writeValue(value: any): void;
|
|
16
|
+
setInitValue(value: any): void;
|
|
17
|
+
private valueToSwitchValue;
|
|
18
|
+
onSwitchChange(value: boolean): void;
|
|
19
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Switch, never>;
|
|
20
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Switch, "axis-switch", never, { "switchValue": { "alias": "switchValue"; "required": false; "isSignal": true; }; }, { "switchValue": "switchValueChange"; }, never, never, true, never>;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export { Switch };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="100px" height="66px" viewBox="0 -10 28 36" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>编组 48</title>
|
|
4
|
+
<g id="页面-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
5
|
+
<g id="Ant-Design-组件缩略图" transform="translate(-1820.000000, -126.000000)">
|
|
6
|
+
<g id="编组-48" transform="translate(1821.000000, 126.000000)">
|
|
7
|
+
<g id="3.DataEntry/Switch/Small/on#" transform="translate(-1.000000, 0.000000)">
|
|
8
|
+
<path d="M0,8 L0,8 C0,3.581722 3.57465974,0 8.00493448,0 L19.9950655,0 C24.4160688,0 28,3.59071231 28,8 L28,8 C28,12.418278 24.4253403,16 19.9950655,16 L8.00493448,16 C3.58393124,16 0,12.4211798 0,8 L0,8 Z" id="Rectangle-77-Copy-11" fill="#1890FF" fill-rule="nonzero"></path>
|
|
9
|
+
<path d="M20,14 C23.3137085,14 26,11.3137085 26,8 C26,4.6862915 23.3137085,2 20,2 C16.6862915,2 14,4.6862915 14,8 C14,11.3137085 16.6862915,14 20,14 Z" id="Oval-1-Copy-15" fill="#FFFFFF" fill-rule="evenodd"></path>
|
|
10
|
+
</g>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -43,13 +43,13 @@ class Radio extends ValueAccess {
|
|
|
43
43
|
radioValue = model(...(ngDevMode ? [undefined, { debugName: "radioValue" }] : []));
|
|
44
44
|
writeValue(value) {
|
|
45
45
|
super.writeValue(value);
|
|
46
|
-
this.
|
|
46
|
+
this.valueToRadioValue();
|
|
47
47
|
}
|
|
48
48
|
setInitValue(value) {
|
|
49
49
|
super.setInitValue(value);
|
|
50
|
-
this.
|
|
50
|
+
this.valueToRadioValue();
|
|
51
51
|
}
|
|
52
|
-
|
|
52
|
+
valueToRadioValue() {
|
|
53
53
|
if (this.value() != undefined) {
|
|
54
54
|
if (this.options.fullValue()) {
|
|
55
55
|
this.radioValue.set(this.value()[this.options.valueField()]);
|
|
@@ -61,7 +61,7 @@ class Radio extends ValueAccess {
|
|
|
61
61
|
}
|
|
62
62
|
this.radioValue.set(undefined);
|
|
63
63
|
}
|
|
64
|
-
|
|
64
|
+
onRadioChange(value) {
|
|
65
65
|
if (this.options.fullValue()) {
|
|
66
66
|
this.value.set(this.options.data().find((item) => item[this.options.valueField()] == value));
|
|
67
67
|
}
|
|
@@ -79,11 +79,11 @@ class Radio extends ValueAccess {
|
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: Radio, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
82
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.6", type: Radio, isStandalone: true, selector: "axis-radio", inputs: { radioValue: { classPropertyName: "radioValue", publicName: "radioValue", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { radioValue: "radioValueChange" }, usesInheritance: true, ngImport: i0, template: "@if (options.readonly()) {\n{{displayValue()}}\n}@else {\n<nz-radio-group [(ngModel)]=\"radioValue\" (ngModelChange)=\"
|
|
82
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.1.6", type: Radio, isStandalone: true, selector: "axis-radio", inputs: { radioValue: { classPropertyName: "radioValue", publicName: "radioValue", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { radioValue: "radioValueChange" }, usesInheritance: true, ngImport: i0, template: "@if (options.readonly()) {\n{{displayValue()}}\n}@else {\n<nz-radio-group [(ngModel)]=\"radioValue\" (ngModelChange)=\"onRadioChange($event)\" [nzSize]=\"options.size()\"\n [nzDisabled]=\"options.disabled()\" [class]=\"options.direction()\" [nzButtonStyle]=\"options.buttonStyle()\">\n @for (item of options.data(); track item[options.valueField()]) {\n @if (options.buttonMode()) {\n <label nz-radio-button [nzValue]=\"item[options.valueField()]\"\n [nzDisabled]=\"item[options.disabledField()]\">{{item[options.labelField()]}}</label>\n }@else {\n <label nz-radio [nzValue]=\"item[options.valueField()]\"\n [nzDisabled]=\"item[options.disabledField()]\">{{item[options.labelField()]}}</label>\n }\n }\n</nz-radio-group>\n}", styles: [":host{display:block}.vertical [nz-radio]{display:block}\n"], dependencies: [{ kind: "ngmodule", type: NzRadioModule }, { kind: "component", type: i1.NzRadioComponent, selector: "[nz-radio],[nz-radio-button]", inputs: ["nzValue", "nzDisabled", "nzAutoFocus", "nz-radio-button"], exportAs: ["nzRadio"] }, { kind: "component", type: i1.NzRadioGroupComponent, selector: "nz-radio-group", inputs: ["nzDisabled", "nzButtonStyle", "nzSize", "nzName"], exportAs: ["nzRadioGroup"] }, { 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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
83
83
|
}
|
|
84
84
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: Radio, decorators: [{
|
|
85
85
|
type: Component,
|
|
86
|
-
args: [{ selector: 'axis-radio', imports: [NzRadioModule, FormsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (options.readonly()) {\n{{displayValue()}}\n}@else {\n<nz-radio-group [(ngModel)]=\"radioValue\" (ngModelChange)=\"
|
|
86
|
+
args: [{ selector: 'axis-radio', imports: [NzRadioModule, FormsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (options.readonly()) {\n{{displayValue()}}\n}@else {\n<nz-radio-group [(ngModel)]=\"radioValue\" (ngModelChange)=\"onRadioChange($event)\" [nzSize]=\"options.size()\"\n [nzDisabled]=\"options.disabled()\" [class]=\"options.direction()\" [nzButtonStyle]=\"options.buttonStyle()\">\n @for (item of options.data(); track item[options.valueField()]) {\n @if (options.buttonMode()) {\n <label nz-radio-button [nzValue]=\"item[options.valueField()]\"\n [nzDisabled]=\"item[options.disabledField()]\">{{item[options.labelField()]}}</label>\n }@else {\n <label nz-radio [nzValue]=\"item[options.valueField()]\"\n [nzDisabled]=\"item[options.disabledField()]\">{{item[options.labelField()]}}</label>\n }\n }\n</nz-radio-group>\n}", styles: [":host{display:block}.vertical [nz-radio]{display:block}\n"] }]
|
|
87
87
|
}], ctorParameters: () => [] });
|
|
88
88
|
|
|
89
89
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngx-axis-appforge-axis-components-radio.mjs","sources":["../../../axis-components/radio/radio.options.ts","../../../axis-components/radio/radio.ts","../../../axis-components/radio/radio.html","../../../axis-components/radio/ngx-axis-appforge-axis-components-radio.ts"],"sourcesContent":["import { signal } from \"@angular/core\";\nimport { ValueAccessOptions } from \"ngx-axis-appforge/core\";\n\nexport class RadioOptions 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 defaultFirst = signal(false);\n readonly data = signal<any>(undefined);\n\n readonly buttonMode = signal(false);\n readonly buttonStyle = signal<'outline' | 'solid'>(\"outline\");\n readonly size = signal<'large' | 'small' | 'default'>('default');\n readonly direction = signal<\"horizontal\" | \"vertical\">(\"horizontal\");\n\n}","import { ChangeDetectionStrategy, Component, computed, effect, model, untracked } from '@angular/core';\nimport { ValueAccess } from 'ngx-axis-appforge/core';\nimport { NzRadioModule } from 'ng-zorro-antd/radio';\nimport { FormsModule } from '@angular/forms';\nimport { RadioOptions } from './radio.options';\n\n@Component({\n selector: 'axis-radio',\n imports: [NzRadioModule, FormsModule],\n templateUrl: './radio.html',\n styleUrl: './radio.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class Radio extends ValueAccess<RadioOptions> {\n\n constructor() {\n super();\n effect(() => {\n if (untracked(this.options.defaultFirst)) {\n const data = this.options.data();\n untracked(() => {\n if (data?.length) {\n if (this.options.fullValue()) {\n this.setInitValue(data[0]);\n } else {\n this.setInitValue(data[0][this.options.valueField()]);\n }\n }\n })\n }\n });\n }\n\n override options: RadioOptions = new RadioOptions();\n\n readonly displayValue = computed(() => this.buildDisplay());\n readonly radioValue = model<any[]>();\n\n override writeValue(value: any): void {\n super.writeValue(value);\n this.
|
|
1
|
+
{"version":3,"file":"ngx-axis-appforge-axis-components-radio.mjs","sources":["../../../axis-components/radio/radio.options.ts","../../../axis-components/radio/radio.ts","../../../axis-components/radio/radio.html","../../../axis-components/radio/ngx-axis-appforge-axis-components-radio.ts"],"sourcesContent":["import { signal } from \"@angular/core\";\nimport { ValueAccessOptions } from \"ngx-axis-appforge/core\";\n\nexport class RadioOptions 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 defaultFirst = signal(false);\n readonly data = signal<any>(undefined);\n\n readonly buttonMode = signal(false);\n readonly buttonStyle = signal<'outline' | 'solid'>(\"outline\");\n readonly size = signal<'large' | 'small' | 'default'>('default');\n readonly direction = signal<\"horizontal\" | \"vertical\">(\"horizontal\");\n\n}","import { ChangeDetectionStrategy, Component, computed, effect, model, untracked } from '@angular/core';\nimport { ValueAccess } from 'ngx-axis-appforge/core';\nimport { NzRadioModule } from 'ng-zorro-antd/radio';\nimport { FormsModule } from '@angular/forms';\nimport { RadioOptions } from './radio.options';\n\n@Component({\n selector: 'axis-radio',\n imports: [NzRadioModule, FormsModule],\n templateUrl: './radio.html',\n styleUrl: './radio.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class Radio extends ValueAccess<RadioOptions> {\n\n constructor() {\n super();\n effect(() => {\n if (untracked(this.options.defaultFirst)) {\n const data = this.options.data();\n untracked(() => {\n if (data?.length) {\n if (this.options.fullValue()) {\n this.setInitValue(data[0]);\n } else {\n this.setInitValue(data[0][this.options.valueField()]);\n }\n }\n })\n }\n });\n }\n\n override options: RadioOptions = new RadioOptions();\n\n readonly displayValue = computed(() => this.buildDisplay());\n readonly radioValue = model<any[]>();\n\n override writeValue(value: any): void {\n super.writeValue(value);\n this.valueToRadioValue();\n }\n\n override setInitValue(value: any): void {\n super.setInitValue(value);\n this.valueToRadioValue();\n }\n\n private valueToRadioValue() {\n if (this.value() != undefined) {\n if (this.options.fullValue()) {\n this.radioValue.set(this.value()[this.options.valueField()]);\n } else {\n this.radioValue.set(this.value());\n }\n return;\n }\n this.radioValue.set(undefined);\n }\n\n onRadioChange(value: any) {\n if (this.options.fullValue()) {\n this.value.set(this.options.data().find((item: any) => item[this.options.valueField()] == value));\n } else {\n this.value.set(value);\n }\n this.onChange?.(this.value());\n }\n\n private buildDisplay(): string {\n if (this.options.fullValue()) {\n return this.value()[this.options.labelField()];\n } else {\n return this.options.data().find((r: any) => this.value() == r[this.options.valueField()])?.[this.options.labelField()];\n }\n }\n}\n","@if (options.readonly()) {\n{{displayValue()}}\n}@else {\n<nz-radio-group [(ngModel)]=\"radioValue\" (ngModelChange)=\"onRadioChange($event)\" [nzSize]=\"options.size()\"\n [nzDisabled]=\"options.disabled()\" [class]=\"options.direction()\" [nzButtonStyle]=\"options.buttonStyle()\">\n @for (item of options.data(); track item[options.valueField()]) {\n @if (options.buttonMode()) {\n <label nz-radio-button [nzValue]=\"item[options.valueField()]\"\n [nzDisabled]=\"item[options.disabledField()]\">{{item[options.labelField()]}}</label>\n }@else {\n <label nz-radio [nzValue]=\"item[options.valueField()]\"\n [nzDisabled]=\"item[options.disabledField()]\">{{item[options.labelField()]}}</label>\n }\n }\n</nz-radio-group>\n}","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './radio';\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { FunFieldValueBase, FormValidators, valueFbConfig, baseFbConfig, valueFunField, baseFunField, BaseDesignSetting, ValueDesignSetting, FunField, DynamicDirective, InputTrigger, OptionsNode, SimpleMenu } from 'ngx-axis-appforge/core';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
4
|
+
import * as i1 from '@angular/forms';
|
|
5
|
+
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
6
|
+
import * as i2 from 'ng-zorro-antd/collapse';
|
|
7
|
+
import { NzCollapseModule } from 'ng-zorro-antd/collapse';
|
|
8
|
+
import * as i4 from 'ng-zorro-antd/form';
|
|
9
|
+
import { NzFormModule } from 'ng-zorro-antd/form';
|
|
10
|
+
import * as i5 from 'ng-zorro-antd/input';
|
|
11
|
+
import { NzInputModule } from 'ng-zorro-antd/input';
|
|
12
|
+
import * as i6 from 'ng-zorro-antd/radio';
|
|
13
|
+
import { NzRadioModule } from 'ng-zorro-antd/radio';
|
|
14
|
+
import * as i3 from 'ng-zorro-antd/grid';
|
|
15
|
+
|
|
16
|
+
class Setting extends FunFieldValueBase {
|
|
17
|
+
fg = this.fb.group({
|
|
18
|
+
...baseFbConfig,
|
|
19
|
+
...valueFbConfig,
|
|
20
|
+
onValue: [true, FormValidators.required],
|
|
21
|
+
offValue: [false, FormValidators.required],
|
|
22
|
+
onLabel: [],
|
|
23
|
+
offLabel: [],
|
|
24
|
+
size: [undefined, FormValidators.requiredFun],
|
|
25
|
+
});
|
|
26
|
+
funFields = {
|
|
27
|
+
...baseFunField,
|
|
28
|
+
...valueFunField,
|
|
29
|
+
onLabel: {
|
|
30
|
+
defaultValue: undefined
|
|
31
|
+
},
|
|
32
|
+
offLabel: {
|
|
33
|
+
defaultValue: undefined
|
|
34
|
+
},
|
|
35
|
+
size: {
|
|
36
|
+
defaultValue: "default"
|
|
37
|
+
},
|
|
38
|
+
};
|
|
39
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: Setting, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
40
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: Setting, isStandalone: true, selector: "axis-design-single-selector-setting", usesInheritance: true, ngImport: i0, template: "<form [formGroup]=\"fg\" nz-form>\n <nz-collapse [nzBordered]=\"false\">\n <nz-collapse-panel nzHeader=\"\u57FA\u672C\u8BBE\u7F6E\" nzActive>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\" nzRequired>\n \u5F00\u542F\u503C\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <ng-container formControlName=\"onValue\"\n [axisDynamic]=\"{component:'axis-components/input-json',inuse:true}\"\n [standalone]=\"true\"></ng-container>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\" nzRequired>\n \u5173\u95ED\u503C\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <ng-container formControlName=\"offValue\"\n [axisDynamic]=\"{component:'axis-components/input-json',inuse:true}\"\n [standalone]=\"true\"></ng-container>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\">\n \u5F00\u542F\u6807\u7B7E\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <axis-fun-field formControlName=\"onLabel\">\n <input nz-input ngModel [ngModelOptions]=\"{standalone:true}\" />\n </axis-fun-field>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\">\n \u5173\u95ED\u6807\u7B7E\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <axis-fun-field formControlName=\"offLabel\">\n <input nz-input ngModel [ngModelOptions]=\"{standalone:true}\" />\n </axis-fun-field>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\" nzRequired>\n \u5927\u5C0F\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <axis-fun-field formControlName=\"size\">\n <nz-radio-group ngModel [ngModelOptions]=\"{standalone:true}\" nzSize=\"small\">\n <label nz-radio-button nzValue=\"default\">\u5927</label>\n <label nz-radio-button nzValue=\"small\">\u5C0F</label>\n </nz-radio-group>\n </axis-fun-field>\n </nz-form-control>\n </nz-form-item>\n </nz-collapse-panel>\n <axis-value-design-setting [fg]=\"fg\"></axis-value-design-setting>\n <axis-base-design-setting [fg]=\"fg\"></axis-base-design-setting>\n <axis-input-trigger formControlName=\"triggeEvents\" [internalTriggers]=\"['valueChange']\"></axis-input-trigger>\n </nz-collapse>\n</form>", styles: [""], dependencies: [{ kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: NzCollapseModule }, { kind: "component", type: i2.NzCollapsePanelComponent, selector: "nz-collapse-panel", inputs: ["nzActive", "nzDisabled", "nzShowArrow", "nzExtra", "nzHeader", "nzExpandedIcon"], outputs: ["nzActiveChange"], exportAs: ["nzCollapsePanel"] }, { kind: "component", type: i2.NzCollapseComponent, selector: "nz-collapse", inputs: ["nzAccordion", "nzBordered", "nzGhost", "nzExpandIconPosition"], exportAs: ["nzCollapse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: NzFormModule }, { kind: "directive", type: i3.NzColDirective, selector: "[nz-col],nz-col,nz-form-control,nz-form-label", inputs: ["nzFlex", "nzSpan", "nzOrder", "nzOffset", "nzPush", "nzPull", "nzXs", "nzSm", "nzMd", "nzLg", "nzXl", "nzXXl"], exportAs: ["nzCol"] }, { kind: "directive", type: i3.NzRowDirective, selector: "[nz-row],nz-row,nz-form-item", inputs: ["nzAlign", "nzJustify", "nzGutter"], exportAs: ["nzRow"] }, { kind: "directive", type: i4.NzFormDirective, selector: "[nz-form]", inputs: ["nzLayout", "nzNoColon", "nzAutoTips", "nzDisableAutoTips", "nzTooltipIcon", "nzLabelAlign", "nzLabelWrap"], exportAs: ["nzForm"] }, { kind: "component", type: i4.NzFormItemComponent, selector: "nz-form-item", exportAs: ["nzFormItem"] }, { kind: "component", type: i4.NzFormLabelComponent, selector: "nz-form-label", inputs: ["nzFor", "nzRequired", "nzNoColon", "nzTooltipTitle", "nzTooltipIcon", "nzLabelAlign", "nzLabelWrap"], exportAs: ["nzFormLabel"] }, { kind: "component", type: i4.NzFormControlComponent, selector: "nz-form-control", inputs: ["nzSuccessTip", "nzWarningTip", "nzErrorTip", "nzValidatingTip", "nzExtra", "nzAutoTips", "nzDisableAutoTips", "nzHasFeedback", "nzValidateStatus"], exportAs: ["nzFormControl"] }, { kind: "component", type: BaseDesignSetting, selector: "axis-base-design-setting", inputs: ["scopeId", "exclude", "fg"] }, { kind: "component", type: ValueDesignSetting, selector: "axis-value-design-setting", inputs: ["scopeId", "exclude", "fg"] }, { kind: "ngmodule", type: NzInputModule }, { kind: "directive", type: i5.NzInputDirective, selector: "input[nz-input],textarea[nz-input]", inputs: ["nzBorderless", "nzVariant", "nzSize", "nzStepperless", "nzStatus", "disabled"], exportAs: ["nzInput"] }, { kind: "component", type: FunField, selector: "axis-fun-field", inputs: ["scopes", "exclude", "scopeId", "onlyFun", "noListen", "disabled", "editTip", "value", "open", "showCreateListenModal", "createListenDataSourceName"], outputs: ["valueChange", "openChange", "showCreateListenModalChange", "createListenDataSourceNameChange"] }, { kind: "directive", type: DynamicDirective, selector: "[axisDynamic]", inputs: ["axisDynamic", "standalone", "isDesign"], outputs: ["onRegisteValueAccess"], exportAs: ["axisDynamic"] }, { kind: "component", type: InputTrigger, selector: "axis-input-trigger", inputs: ["internalTriggers", "value", "eventDesc", "isVisibleHandlerModal", "editEventHandler"], outputs: ["valueChange", "isVisibleHandlerModalChange", "editEventHandlerChange"] }, { kind: "ngmodule", type: NzRadioModule }, { kind: "component", type: i6.NzRadioComponent, selector: "[nz-radio],[nz-radio-button]", inputs: ["nzValue", "nzDisabled", "nzAutoFocus", "nz-radio-button"], exportAs: ["nzRadio"] }, { kind: "component", type: i6.NzRadioGroupComponent, selector: "nz-radio-group", inputs: ["nzDisabled", "nzButtonStyle", "nzSize", "nzName"], exportAs: ["nzRadioGroup"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
41
|
+
}
|
|
42
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: Setting, decorators: [{
|
|
43
|
+
type: Component,
|
|
44
|
+
args: [{ selector: 'axis-design-single-selector-setting', imports: [FormsModule, NzCollapseModule, ReactiveFormsModule, NzFormModule, BaseDesignSetting, ValueDesignSetting, NzInputModule, FunField, DynamicDirective, InputTrigger, NzRadioModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<form [formGroup]=\"fg\" nz-form>\n <nz-collapse [nzBordered]=\"false\">\n <nz-collapse-panel nzHeader=\"\u57FA\u672C\u8BBE\u7F6E\" nzActive>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\" nzRequired>\n \u5F00\u542F\u503C\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <ng-container formControlName=\"onValue\"\n [axisDynamic]=\"{component:'axis-components/input-json',inuse:true}\"\n [standalone]=\"true\"></ng-container>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\" nzRequired>\n \u5173\u95ED\u503C\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <ng-container formControlName=\"offValue\"\n [axisDynamic]=\"{component:'axis-components/input-json',inuse:true}\"\n [standalone]=\"true\"></ng-container>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\">\n \u5F00\u542F\u6807\u7B7E\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <axis-fun-field formControlName=\"onLabel\">\n <input nz-input ngModel [ngModelOptions]=\"{standalone:true}\" />\n </axis-fun-field>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\">\n \u5173\u95ED\u6807\u7B7E\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <axis-fun-field formControlName=\"offLabel\">\n <input nz-input ngModel [ngModelOptions]=\"{standalone:true}\" />\n </axis-fun-field>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\" nzRequired>\n \u5927\u5C0F\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <axis-fun-field formControlName=\"size\">\n <nz-radio-group ngModel [ngModelOptions]=\"{standalone:true}\" nzSize=\"small\">\n <label nz-radio-button nzValue=\"default\">\u5927</label>\n <label nz-radio-button nzValue=\"small\">\u5C0F</label>\n </nz-radio-group>\n </axis-fun-field>\n </nz-form-control>\n </nz-form-item>\n </nz-collapse-panel>\n <axis-value-design-setting [fg]=\"fg\"></axis-value-design-setting>\n <axis-base-design-setting [fg]=\"fg\"></axis-base-design-setting>\n <axis-input-trigger formControlName=\"triggeEvents\" [internalTriggers]=\"['valueChange']\"></axis-input-trigger>\n </nz-collapse>\n</form>" }]
|
|
45
|
+
}] });
|
|
46
|
+
|
|
47
|
+
const Config = {
|
|
48
|
+
componentName: "开关",
|
|
49
|
+
buildOptionsNodes(nextInfo) {
|
|
50
|
+
return {
|
|
51
|
+
treeNode: new OptionsNode({
|
|
52
|
+
parentId: nextInfo.parentId,
|
|
53
|
+
scopeId: nextInfo.scopeId,
|
|
54
|
+
name: "开关",
|
|
55
|
+
canSetting: true,
|
|
56
|
+
canDrag: true,
|
|
57
|
+
dragType: "component",
|
|
58
|
+
parentObj: nextInfo.parentObject,
|
|
59
|
+
indexOfParentObj: nextInfo.indexOfParent,
|
|
60
|
+
rootOptions: nextInfo.currentObject,
|
|
61
|
+
settingType: Setting,
|
|
62
|
+
contextMenu: SimpleMenu,
|
|
63
|
+
icon: "switcher",
|
|
64
|
+
}),
|
|
65
|
+
};
|
|
66
|
+
},
|
|
67
|
+
bindElementsOptionsNode(element, options) {
|
|
68
|
+
return {
|
|
69
|
+
[options.id]: { element },
|
|
70
|
+
};
|
|
71
|
+
},
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Generated bundle index. Do not edit.
|
|
76
|
+
*/
|
|
77
|
+
|
|
78
|
+
export { Config };
|
|
79
|
+
//# sourceMappingURL=ngx-axis-appforge-axis-components-switch-design.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ngx-axis-appforge-axis-components-switch-design.mjs","sources":["../../../axis-components/switch/design/setting/setting.ts","../../../axis-components/switch/design/setting/setting.html","../../../axis-components/switch/design/config.ts","../../../axis-components/switch/design/ngx-axis-appforge-axis-components-switch-design.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { FormsModule, ReactiveFormsModule, UntypedFormGroup } from '@angular/forms';\nimport { NzCollapseModule } from 'ng-zorro-antd/collapse';\nimport { NzFormModule } from 'ng-zorro-antd/form';\nimport { NzInputModule } from 'ng-zorro-antd/input';\nimport { NzRadioModule } from 'ng-zorro-antd/radio';\nimport { BaseDesignSetting, baseFbConfig, baseFunField, DynamicDirective, FormValidators, FunField, FunFieldOptions, FunFieldValueBase, InputTrigger, ValueDesignSetting, valueFbConfig, valueFunField } from 'ngx-axis-appforge/core';\n\n@Component({\n selector: 'axis-design-single-selector-setting',\n imports: [FormsModule, NzCollapseModule, ReactiveFormsModule, NzFormModule, BaseDesignSetting, ValueDesignSetting, NzInputModule, FunField, DynamicDirective, InputTrigger, NzRadioModule],\n templateUrl: './setting.html',\n styleUrl: './setting.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class Setting extends FunFieldValueBase {\n\n override fg: UntypedFormGroup = this.fb.group({\n ...baseFbConfig,\n ...valueFbConfig,\n onValue: [true, FormValidators.required],\n offValue: [false, FormValidators.required],\n onLabel: [],\n offLabel: [],\n size: [undefined, FormValidators.requiredFun],\n });\n\n protected override funFields: FunFieldOptions = {\n ...baseFunField,\n ...valueFunField,\n onLabel: {\n defaultValue: undefined\n },\n offLabel: {\n defaultValue: undefined\n },\n size: {\n defaultValue: \"default\"\n },\n };\n\n}\n","<form [formGroup]=\"fg\" nz-form>\n <nz-collapse [nzBordered]=\"false\">\n <nz-collapse-panel nzHeader=\"基本设置\" nzActive>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\" nzRequired>\n 开启值\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <ng-container formControlName=\"onValue\"\n [axisDynamic]=\"{component:'axis-components/input-json',inuse:true}\"\n [standalone]=\"true\"></ng-container>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\" nzRequired>\n 关闭值\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <ng-container formControlName=\"offValue\"\n [axisDynamic]=\"{component:'axis-components/input-json',inuse:true}\"\n [standalone]=\"true\"></ng-container>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\">\n 开启标签\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <axis-fun-field formControlName=\"onLabel\">\n <input nz-input ngModel [ngModelOptions]=\"{standalone:true}\" />\n </axis-fun-field>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\">\n 关闭标签\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <axis-fun-field formControlName=\"offLabel\">\n <input nz-input ngModel [ngModelOptions]=\"{standalone:true}\" />\n </axis-fun-field>\n </nz-form-control>\n </nz-form-item>\n <nz-form-item>\n <nz-form-label nzSpan=\"8\" nzRequired>\n 大小\n </nz-form-label>\n <nz-form-control nzSpan=\"16\">\n <axis-fun-field formControlName=\"size\">\n <nz-radio-group ngModel [ngModelOptions]=\"{standalone:true}\" nzSize=\"small\">\n <label nz-radio-button nzValue=\"default\">大</label>\n <label nz-radio-button nzValue=\"small\">小</label>\n </nz-radio-group>\n </axis-fun-field>\n </nz-form-control>\n </nz-form-item>\n </nz-collapse-panel>\n <axis-value-design-setting [fg]=\"fg\"></axis-value-design-setting>\n <axis-base-design-setting [fg]=\"fg\"></axis-base-design-setting>\n <axis-input-trigger formControlName=\"triggeEvents\" [internalTriggers]=\"['valueChange']\"></axis-input-trigger>\n </nz-collapse>\n</form>","import { NextInfo, DesignBuildResult, DesignBindElementsResult, DesignConfig, OptionsNode, SimpleMenu } from \"ngx-axis-appforge/core\";\nimport { Setting } from \"./setting/setting\";\n\nexport const Config: DesignConfig = {\n\n componentName: \"开关\",\n buildOptionsNodes(nextInfo: NextInfo): DesignBuildResult {\n return {\n treeNode: new OptionsNode({\n parentId: nextInfo.parentId,\n scopeId: nextInfo.scopeId,\n name: \"开关\",\n canSetting: true,\n canDrag: true,\n dragType: \"component\",\n parentObj: nextInfo.parentObject,\n indexOfParentObj: nextInfo.indexOfParent,\n rootOptions: nextInfo.currentObject,\n settingType: Setting,\n contextMenu: SimpleMenu,\n icon: \"switcher\",\n }),\n };\n },\n bindElementsOptionsNode(element: HTMLElement, options: any): DesignBindElementsResult {\n return {\n [options.id]: { element },\n }\n },\n};\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './config';\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { signal, model, ChangeDetectionStrategy, Component } from '@angular/core';
|
|
3
|
+
import { ValueAccessOptions, ValueAccess } from 'ngx-axis-appforge/core';
|
|
4
|
+
import * as i2 from '@angular/forms';
|
|
5
|
+
import { FormsModule } from '@angular/forms';
|
|
6
|
+
import * as i1 from 'ng-zorro-antd/switch';
|
|
7
|
+
import { NzSwitchModule } from 'ng-zorro-antd/switch';
|
|
8
|
+
|
|
9
|
+
class SwitchOptions extends ValueAccessOptions {
|
|
10
|
+
onValue = signal(true, ...(ngDevMode ? [{ debugName: "onValue" }] : []));
|
|
11
|
+
offValue = signal(false, ...(ngDevMode ? [{ debugName: "offValue" }] : []));
|
|
12
|
+
onLabel = signal(undefined, ...(ngDevMode ? [{ debugName: "onLabel" }] : []));
|
|
13
|
+
offLabel = signal(undefined, ...(ngDevMode ? [{ debugName: "offLabel" }] : []));
|
|
14
|
+
size = signal('default', ...(ngDevMode ? [{ debugName: "size" }] : []));
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
class Switch extends ValueAccess {
|
|
18
|
+
options = new SwitchOptions();
|
|
19
|
+
switchValue = model(false, ...(ngDevMode ? [{ debugName: "switchValue" }] : []));
|
|
20
|
+
writeValue(value) {
|
|
21
|
+
super.writeValue(value);
|
|
22
|
+
this.valueToSwitchValue();
|
|
23
|
+
}
|
|
24
|
+
setInitValue(value) {
|
|
25
|
+
super.setInitValue(value);
|
|
26
|
+
this.valueToSwitchValue();
|
|
27
|
+
}
|
|
28
|
+
valueToSwitchValue() {
|
|
29
|
+
this.switchValue.set(this.value() === this.options.onValue());
|
|
30
|
+
}
|
|
31
|
+
onSwitchChange(value) {
|
|
32
|
+
this.value.set(value ? this.options.onValue() : this.options.offValue());
|
|
33
|
+
this.onChange?.(this.value());
|
|
34
|
+
}
|
|
35
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: Switch, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
36
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "20.1.6", type: Switch, isStandalone: true, selector: "axis-switch", inputs: { switchValue: { classPropertyName: "switchValue", publicName: "switchValue", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { switchValue: "switchValueChange" }, usesInheritance: true, ngImport: i0, template: "<nz-switch [(ngModel)]=\"switchValue\" (ngModelChange)=\"onSwitchChange($event)\"\n [nzDisabled]=\"options.disabled() || options.readonly()\" [nzCheckedChildren]=\"options.onLabel()\"\n [nzUnCheckedChildren]=\"options.offLabel()\" [nzSize]=\"options.size()\"></nz-switch>", styles: [":host{display:block}.vertical [nz-radio]{display:block}\n"], dependencies: [{ kind: "ngmodule", type: NzSwitchModule }, { kind: "component", type: i1.NzSwitchComponent, selector: "nz-switch", inputs: ["nzLoading", "nzDisabled", "nzControl", "nzCheckedChildren", "nzUnCheckedChildren", "nzSize", "nzId"], exportAs: ["nzSwitch"] }, { 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"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
37
|
+
}
|
|
38
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: Switch, decorators: [{
|
|
39
|
+
type: Component,
|
|
40
|
+
args: [{ selector: 'axis-switch', imports: [NzSwitchModule, FormsModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<nz-switch [(ngModel)]=\"switchValue\" (ngModelChange)=\"onSwitchChange($event)\"\n [nzDisabled]=\"options.disabled() || options.readonly()\" [nzCheckedChildren]=\"options.onLabel()\"\n [nzUnCheckedChildren]=\"options.offLabel()\" [nzSize]=\"options.size()\"></nz-switch>", styles: [":host{display:block}.vertical [nz-radio]{display:block}\n"] }]
|
|
41
|
+
}] });
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Generated bundle index. Do not edit.
|
|
45
|
+
*/
|
|
46
|
+
|
|
47
|
+
export { Switch };
|
|
48
|
+
//# sourceMappingURL=ngx-axis-appforge-axis-components-switch.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ngx-axis-appforge-axis-components-switch.mjs","sources":["../../../axis-components/switch/switch.options.ts","../../../axis-components/switch/switch.ts","../../../axis-components/switch/switch.html","../../../axis-components/switch/ngx-axis-appforge-axis-components-switch.ts"],"sourcesContent":["import { signal } from \"@angular/core\";\nimport { ValueAccessOptions } from \"ngx-axis-appforge/core\";\n\nexport class SwitchOptions extends ValueAccessOptions {\n\n readonly onValue = signal<any>(true);\n readonly offValue = signal<any>(false);\n readonly onLabel = signal<any>(undefined);\n readonly offLabel = signal<any>(undefined);\n readonly size = signal<'small' | 'default'>('default');\n}","import { ChangeDetectionStrategy, Component, model } from '@angular/core';\nimport { ValueAccess } from 'ngx-axis-appforge/core';\nimport { FormsModule } from '@angular/forms';\nimport { SwitchOptions } from './switch.options';\nimport { NzSwitchModule } from 'ng-zorro-antd/switch';\n\n@Component({\n selector: 'axis-switch',\n imports: [NzSwitchModule, FormsModule],\n templateUrl: './switch.html',\n styleUrl: './switch.css',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class Switch extends ValueAccess<SwitchOptions> {\n\n override options: SwitchOptions = new SwitchOptions();\n\n readonly switchValue = model(false);\n\n override writeValue(value: any): void {\n super.writeValue(value);\n this.valueToSwitchValue();\n }\n\n override setInitValue(value: any): void {\n super.setInitValue(value);\n this.valueToSwitchValue();\n }\n\n private valueToSwitchValue() {\n this.switchValue.set(this.value() === this.options.onValue());\n }\n\n onSwitchChange(value: boolean) {\n this.value.set(value ? this.options.onValue() : this.options.offValue());\n this.onChange?.(this.value());\n }\n\n}\n","<nz-switch [(ngModel)]=\"switchValue\" (ngModelChange)=\"onSwitchChange($event)\"\n [nzDisabled]=\"options.disabled() || options.readonly()\" [nzCheckedChildren]=\"options.onLabel()\"\n [nzUnCheckedChildren]=\"options.offLabel()\" [nzSize]=\"options.size()\"></nz-switch>","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './switch';\n"],"names":[],"mappings":"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"}
|
|
@@ -65,6 +65,8 @@ const cmpMap = {
|
|
|
65
65
|
"axis-components/color-picker/design": () => import('ngx-axis-appforge/axis-components/color-picker/design'),
|
|
66
66
|
"axis-components/radio": () => import('ngx-axis-appforge/axis-components/radio'),
|
|
67
67
|
"axis-components/radio/design": () => import('ngx-axis-appforge/axis-components/radio/design'),
|
|
68
|
+
"axis-components/switch": () => import('ngx-axis-appforge/axis-components/switch'),
|
|
69
|
+
"axis-components/switch/design": () => import('ngx-axis-appforge/axis-components/switch/design'),
|
|
68
70
|
};
|
|
69
71
|
|
|
70
72
|
const buttonExampleDesc = {
|
|
@@ -1161,6 +1163,21 @@ const radioExampleDesc = {
|
|
|
1161
1163
|
}
|
|
1162
1164
|
};
|
|
1163
1165
|
|
|
1166
|
+
const switchExampleDesc = {
|
|
1167
|
+
component: "开关",
|
|
1168
|
+
coverImg: "assets/axis-components-covers/switch.svg",
|
|
1169
|
+
span: 12,
|
|
1170
|
+
height: 60,
|
|
1171
|
+
example: {
|
|
1172
|
+
builder: (componentIdBuilder) => ({
|
|
1173
|
+
component: "axis-components/switch",
|
|
1174
|
+
id: componentIdBuilder?.("axis-components/switch"),
|
|
1175
|
+
inuse: true,
|
|
1176
|
+
initValue: false
|
|
1177
|
+
}),
|
|
1178
|
+
}
|
|
1179
|
+
};
|
|
1180
|
+
|
|
1164
1181
|
const examples = [
|
|
1165
1182
|
{
|
|
1166
1183
|
groupName: "通用",
|
|
@@ -1188,6 +1205,7 @@ const examples = [
|
|
|
1188
1205
|
selectExampleDesc,
|
|
1189
1206
|
treeSelectorExampleDesc,
|
|
1190
1207
|
radioExampleDesc,
|
|
1208
|
+
switchExampleDesc,
|
|
1191
1209
|
inputIconExampleDesc,
|
|
1192
1210
|
textareaExampleDesc,
|
|
1193
1211
|
uploadExampleDesc,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngx-axis-appforge-axis-components.mjs","sources":["../../../axis-components/cmp-map.ts","../../../axis-components/examples/examples/button.ts","../../../axis-components/examples/examples/form.ts","../../../axis-components/examples/examples/form-item.ts","../../../axis-components/examples/examples/flex.ts","../../../axis-components/examples/examples/input.ts","../../../axis-components/examples/examples/table.ts","../../../axis-components/examples/examples/design.ts","../../../axis-components/examples/examples/text.ts","../../../axis-components/examples/examples/tree-selector.ts","../../../axis-components/examples/examples/splitter.ts","../../../axis-components/examples/examples/modal.ts","../../../axis-components/examples/examples/desc.ts","../../../axis-components/examples/examples/badge.ts","../../../axis-components/examples/examples/image.ts","../../../axis-components/examples/examples/icon.ts","../../../axis-components/examples/examples/input-icon.ts","../../../axis-components/examples/examples/input-number.ts","../../../axis-components/examples/examples/upload.ts","../../../axis-components/examples/examples/textarea.ts","../../../axis-components/examples/examples/dynamic-container.ts","../../../axis-components/examples/examples/scope.ts","../../../axis-components/examples/examples/input-component.ts","../../../axis-components/examples/examples/input-json.ts","../../../axis-components/examples/examples/date-picker.ts","../../../axis-components/examples/examples/steps.ts","../../../axis-components/examples/examples/editor.ts","../../../axis-components/examples/examples/tabs.ts","../../../axis-components/examples/examples/dynamic-value.ts","../../../axis-components/examples/examples/edit-table.ts","../../../axis-components/examples/examples/color-picker.ts","../../../axis-components/examples/examples/select.ts","../../../axis-components/examples/examples/radio.ts","../../../axis-components/examples/examples.ts","../../../axis-components/cmplib.ts","../../../axis-components/ngx-axis-appforge-axis-components.ts"],"sourcesContent":["export const cmpMap: { [component: string]: () => Promise<any> } = {\n \"axis-components/button\": () => import(\"ngx-axis-appforge/axis-components/button\"),\n \"axis-components/button/design\": () => import(\"ngx-axis-appforge/axis-components/button/design\"),\n \"axis-components/design\": () => import(\"ngx-axis-appforge/axis-components/design\"),\n \"axis-components/design/design\": () => import(\"ngx-axis-appforge/axis-components/design/design\"),\n \"axis-components/editor\": () => import(\"ngx-axis-appforge/axis-components/editor\"),\n \"axis-components/editor/design\": () => import(\"ngx-axis-appforge/axis-components/editor/design\"),\n \"axis-components/flex\": () => import(\"ngx-axis-appforge/axis-components/flex\"),\n \"axis-components/flex/design\": () => import(\"ngx-axis-appforge/axis-components/flex/design\"),\n \"axis-components/icon\": () => import(\"ngx-axis-appforge/axis-components/icon\"),\n \"axis-components/icon/design\": () => import(\"ngx-axis-appforge/axis-components/icon/design\"),\n \"axis-components/input\": () => import(\"ngx-axis-appforge/axis-components/input\"),\n \"axis-components/input/design\": () => import(\"ngx-axis-appforge/axis-components/input/design\"),\n \"axis-components/input-icon\": () => import(\"ngx-axis-appforge/axis-components/input-icon\"),\n \"axis-components/input-icon/design\": () => import(\"ngx-axis-appforge/axis-components/input-icon/design\"),\n \"axis-components/input-json\": () => import(\"ngx-axis-appforge/axis-components/input-json\"),\n \"axis-components/input-json/design\": () => import(\"ngx-axis-appforge/axis-components/input-json/design\"),\n \"axis-components/scope\": () => import(\"ngx-axis-appforge/axis-components/scope\"),\n \"axis-components/scope/design\": () => import(\"ngx-axis-appforge/axis-components/scope/design\"),\n \"axis-components/text\": () => import(\"ngx-axis-appforge/axis-components/text\"),\n \"axis-components/text/design\": () => import(\"ngx-axis-appforge/axis-components/text/design\"),\n \"axis-components/form\": () => import(\"ngx-axis-appforge/axis-components/form\"),\n \"axis-components/form/design\": () => import(\"ngx-axis-appforge/axis-components/form/design\"),\n \"axis-components/form-item\": () => import(\"ngx-axis-appforge/axis-components/form-item\"),\n \"axis-components/form-item/design\": () => import(\"ngx-axis-appforge/axis-components/form-item/design\"),\n \"axis-components/table\": () => import(\"ngx-axis-appforge/axis-components/table\"),\n \"axis-components/table/design\": () => import(\"ngx-axis-appforge/axis-components/table/design\"),\n \"axis-components/single-selector\": () => import(\"ngx-axis-appforge/axis-components/single-selector\"),\n \"axis-components/single-selector/design\": () => import(\"ngx-axis-appforge/axis-components/single-selector/design\"),\n \"axis-components/select\": () => import(\"ngx-axis-appforge/axis-components/select\"),\n \"axis-components/select/design\": () => import(\"ngx-axis-appforge/axis-components/select/design\"),\n \"axis-components/tree-selector\": () => import(\"ngx-axis-appforge/axis-components/tree-selector\"),\n \"axis-components/tree-selector/design\": () => import(\"ngx-axis-appforge/axis-components/tree-selector/design\"),\n \"axis-components/splitter\": () => import(\"ngx-axis-appforge/axis-components/splitter\"),\n \"axis-components/splitter/design\": () => import(\"ngx-axis-appforge/axis-components/splitter/design\"),\n \"axis-components/modal\": () => import(\"ngx-axis-appforge/axis-components/modal\"),\n \"axis-components/modal/design\": () => import(\"ngx-axis-appforge/axis-components/modal/design\"),\n \"axis-components/desc\": () => import(\"ngx-axis-appforge/axis-components/desc\"),\n \"axis-components/desc/design\": () => import(\"ngx-axis-appforge/axis-components/desc/design\"),\n \"axis-components/badge\": () => import(\"ngx-axis-appforge/axis-components/badge\"),\n \"axis-components/badge/design\": () => import(\"ngx-axis-appforge/axis-components/badge/design\"),\n \"axis-components/image\": () => import(\"ngx-axis-appforge/axis-components/image\"),\n \"axis-components/image/design\": () => import(\"ngx-axis-appforge/axis-components/image/design\"),\n \"axis-components/input-number\": () => import(\"ngx-axis-appforge/axis-components/input-number\"),\n \"axis-components/input-number/design\": () => import(\"ngx-axis-appforge/axis-components/input-number/design\"),\n \"axis-components/upload\": () => import(\"ngx-axis-appforge/axis-components/upload\"),\n \"axis-components/upload/design\": () => import(\"ngx-axis-appforge/axis-components/upload/design\"),\n \"axis-components/textarea\": () => import(\"ngx-axis-appforge/axis-components/textarea\"),\n \"axis-components/textarea/design\": () => import(\"ngx-axis-appforge/axis-components/textarea/design\"),\n \"axis-components/dynamic-container\": () => import(\"ngx-axis-appforge/axis-components/dynamic-container\"),\n \"axis-components/dynamic-container/design\": () => import(\"ngx-axis-appforge/axis-components/dynamic-container/design\"),\n \"axis-components/input-component\": () => import(\"ngx-axis-appforge/axis-components/input-component\"),\n \"axis-components/input-component/design\": () => import(\"ngx-axis-appforge/axis-components/input-component/design\"),\n \"axis-components/date-picker\": () => import(\"ngx-axis-appforge/axis-components/date-picker\"),\n \"axis-components/date-picker/design\": () => import(\"ngx-axis-appforge/axis-components/date-picker/design\"),\n \"axis-components/steps\": () => import(\"ngx-axis-appforge/axis-components/steps\"),\n \"axis-components/steps/design\": () => import(\"ngx-axis-appforge/axis-components/steps/design\"),\n \"axis-components/tabs\": () => import(\"ngx-axis-appforge/axis-components/tabs\"),\n \"axis-components/tabs/design\": () => import(\"ngx-axis-appforge/axis-components/tabs/design\"),\n \"axis-components/dynamic-value\": () => import(\"ngx-axis-appforge/axis-components/dynamic-value\"),\n \"axis-components/dynamic-value/design\": () => import(\"ngx-axis-appforge/axis-components/dynamic-value/design\"),\n \"axis-components/edit-table\": () => import(\"ngx-axis-appforge/axis-components/edit-table\"),\n \"axis-components/edit-table/design\": () => import(\"ngx-axis-appforge/axis-components/edit-table/design\"),\n \"axis-components/color-picker\": () => import(\"ngx-axis-appforge/axis-components/color-picker\"),\n \"axis-components/color-picker/design\": () => import(\"ngx-axis-appforge/axis-components/color-picker/design\"),\n \"axis-components/radio\": () => import(\"ngx-axis-appforge/axis-components/radio\"),\n \"axis-components/radio/design\": () => import(\"ngx-axis-appforge/axis-components/radio/design\"),\n}","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const buttonExampleDesc: ExampleDesc = {\n component: \"按钮\",\n coverImg: \"assets/axis-components-covers/button.svg\",\n span: 12,\n height: 78,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\"),\n inuse: true,\n title: \"未命名按钮\",\n confirm: false,\n confirmText: \"是否确认?\",\n confirmType: \"modal\",\n disabledBtn: false,\n styleType: \"primary\",\n block: false,\n danger: false,\n ghost: false,\n size: \"default\",\n shape: \"\"\n }),\n },\n moreExamples: [\n {\n name: \"链接按钮\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\"),\n inuse: true,\n title: \"未命名按钮\",\n styleType: \"link\"\n }),\n }\n ]\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const formExampleDesc: ExampleDesc = {\n component: \"表单\",\n coverImg: \"assets/axis-components-covers/form.svg\",\n span: 24,\n height: 120,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/form\",\n id: componentIdBuilder?.(\"axis-components/form\"),\n inuse: true,\n submitConfirm: true,\n leaveConfirm: true,\n child: {\n component: \"axis-components/flex\",\n id: componentIdBuilder?.(\"axis-components/flex\"),\n inuse: true,\n direction: \"vertical\",\n align: \"center\",\n gap: \"20px\",\n style: {\n padding: \"20px\"\n },\n children: [\n {\n component: \"axis-components/flex\",\n inuse: true,\n id: componentIdBuilder?.(\"axis-components/flex\", 2),\n direction: \"horizontal\",\n justify: \"end\",\n gap: \"6px\",\n children: [\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\"),\n inuse: true,\n title: \"重置\",\n styleType: \"default\",\n icon: {\n component: \"axis-components/icon\",\n inuse: true,\n lib: \"antdesign\",\n theme: \"outline\",\n icon: \"redo\"\n },\n triggeEvents: {\n buttonClick: [\n {\n name: \"resetForm\",\n disabled: false,\n id: componentIdBuilder?.(\"axis-components/form\"),\n target: \"component\"\n }\n ]\n }\n },\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\", 2),\n inuse: true,\n title: \"提交\",\n icon: {\n component: \"axis-components/icon\",\n inuse: true,\n lib: \"antdesign\",\n theme: \"outline\",\n icon: \"save\"\n },\n triggeEvents: {\n buttonClick: [\n {\n name: \"validForm\",\n disabled: false,\n id: componentIdBuilder?.(\"axis-components/form\"),\n target: \"component\"\n }\n ]\n }\n },\n ]\n },\n {\n component: \"axis-components/flex\",\n inuse: true,\n id: componentIdBuilder?.(\"axis-components/flex\", 3),\n direction: \"vertical\",\n align: \"center\",\n style: {\n width: \"400px\"\n },\n children: [\n {\n component: \"axis-components/form-item\",\n id: componentIdBuilder?.(\"axis-components/form-item\"),\n inuse: true,\n name: \"field1\",\n label: \"字段1\",\n validators: [],\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\"),\n inuse: true\n }\n },\n {\n component: \"axis-components/form-item\",\n id: componentIdBuilder?.(\"axis-components/form-item\", 2),\n inuse: true,\n name: \"field2\",\n label: \"字段2\",\n validators: [],\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\", 2),\n inuse: true\n }\n },\n ]\n }\n ]\n }\n }),\n },\n moreExamples: [\n {\n name: \"空表单\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/form\",\n id: componentIdBuilder?.(\"axis-components/form\"),\n inuse: true,\n submitConfirm: true,\n leaveConfirm: true\n }),\n },\n {\n name: \"查询表单\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/form\",\n id: componentIdBuilder?.(\"axis-components/form\"),\n inuse: true,\n submitConfirm: true,\n leaveConfirm: true,\n style: {\n width: \"100%\"\n },\n child: {\n component: \"axis-components/flex\",\n id: componentIdBuilder?.(\"axis-components/flex\"),\n direction: \"horizontal\",\n children: [\n {\n component: \"axis-components/flex\",\n id: componentIdBuilder?.(\"axis-components/flex\", 2),\n direction: \"horizontal\",\n children: [\n {\n component: \"axis-components/form-item\",\n id: componentIdBuilder?.(\"axis-components/form-item\"),\n validators: [],\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\"),\n requiredPermissions: null,\n triggeEvents: null,\n inuse: true,\n disabled: false,\n readonly: false,\n type: \"text\",\n placeholder: \"输入关键字搜索\",\n maxlength: \"\",\n debounceTime: 300,\n autofocus: false\n },\n requiredPermissions: null,\n triggeEvents: null,\n inuse: true,\n style: {\n width: \"250px\",\n height: \"35px\"\n },\n name: \"keywords\",\n label: \"搜索\",\n labelWidth: \"40px\"\n }, {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\"),\n requiredPermissions: null,\n triggeEvents: {\n buttonClick: [\n {\n name: \"resetForm\",\n disabled: false,\n id: componentIdBuilder?.(\"axis-components/form\"),\n data: null,\n target: \"component\"\n }\n ]\n },\n inuse: true,\n title: \"\",\n icon: {\n component: \"axis-components/icon\",\n inuse: true,\n lib: \"antdesign\",\n theme: \"outline\",\n icon: \"delete\"\n },\n confirm: false,\n confirmText: \"是否确认?\",\n confirmType: \"modal\",\n disabledBtn: false,\n styleType: \"default\",\n block: false,\n danger: true,\n ghost: false,\n size: \"default\",\n shape: \"circle\"\n }\n ],\n requiredPermissions: null,\n triggeEvents: null,\n inuse: true,\n style: {\n flex: 1\n },\n justify: \"start\",\n align: \"start\",\n wrap: \"wrap\",\n gap: \"20px\"\n },\n {\n component: \"axis-components/flex\",\n id: componentIdBuilder?.(\"axis-components/flex\", 3),\n direction: \"horizontal\",\n children: [\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\", 2),\n inuse: true,\n requiredPermissions: null,\n triggeEvents: null,\n title: \"刷新\",\n icon: {\n component: \"axis-components/icon\",\n inuse: true,\n lib: \"antdesign\",\n theme: \"outline\",\n icon: \"reload\"\n },\n confirm: false,\n confirmText: \"是否确认?\",\n confirmType: \"modal\",\n disabledBtn: false,\n styleType: \"default\",\n block: false,\n danger: false,\n ghost: false,\n size: \"default\",\n shape: \"\"\n },\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\", 3),\n inuse: true,\n requiredPermissions: null,\n triggeEvents: null,\n title: \"新增\",\n icon: {\n component: \"axis-components/icon\",\n inuse: true,\n lib: \"antdesign\",\n theme: \"outline\",\n icon: \"plus\"\n },\n confirm: false,\n confirmText: \"是否确认?\",\n confirmType: \"modal\",\n disabledBtn: false,\n styleType: \"dashed\",\n block: false,\n danger: false,\n ghost: false,\n size: \"default\",\n shape: \"\"\n }\n ],\n inuse: true,\n requiredPermissions: null,\n style: {\n width: \"fit-content\"\n },\n triggeEvents: null,\n justify: \"start\",\n align: \"start\",\n wrap: \"nowrap\",\n gap: \"4px\"\n }\n ],\n inuse: true,\n requiredPermissions: null,\n style: {\n padding: \"10px\"\n },\n triggeEvents: null,\n justify: \"start\",\n align: \"center\",\n wrap: \"nowrap\",\n gap: \"20px\"\n }\n })\n }\n ]\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const formItemExampleDesc: ExampleDesc = {\n component: \"表单项\",\n coverImg: \"assets/axis-components-covers/form-item.svg\",\n span: 24,\n height: 60,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/form-item\",\n id: componentIdBuilder?.(\"axis-components/form-item\"),\n inuse: true,\n name: \"field\",\n label: \"字段\",\n labelWidth: \"120px\",\n validators: [],\n child: {\n component: \"axis-components/input\",\n inuse: true,\n id: componentIdBuilder?.(\"axis-components/input\"),\n }\n }),\n },\n moreExamples: [\n {\n name: \"空表单项\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/form-item\",\n id: componentIdBuilder?.(\"axis-components/form-item\"),\n inuse: true,\n name: \"field\",\n label: \"\",\n labelWidth: \"\",\n validators: [],\n }),\n }\n ]\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const flexExampleDesc: ExampleDesc = {\n component: \"响应布局\",\n coverImg: \"assets/axis-components-covers/flex.svg\",\n span: 24,\n height: 120,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/flex\",\n id: componentIdBuilder?.(\"axis-components/flex\"),\n inuse: true,\n direction: \"horizontal\",\n children: []\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const inputExampleDesc: ExampleDesc = {\n component: \"文本输入框\",\n coverImg: \"assets/axis-components-covers/input.svg\",\n span: 12,\n height: 60,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\"),\n inuse: true\n }),\n },\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const tableExampleDesc: ExampleDesc = {\n component: \"表格\",\n coverImg: \"assets/axis-components-covers/table.svg\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/table\",\n id: componentIdBuilder?.(\"axis-components/table\"),\n inuse: true,\n keyField: \"id\",\n fields: [\n {\n field: \"id\",\n exportFn: null,\n groupLevel: null,\n totalAble: false,\n totalFn: null,\n titleGroup: null,\n inuse: true,\n title: \"编码\",\n export: false,\n exportFlowChild: true,\n import: false,\n importRequired: false,\n importCellType: \"text\",\n sortAble: true,\n sortOrder: null,\n filterAble: false,\n filterMultiple: false,\n width: 150,\n align: \"left\",\n freezeMode: \"none\"\n },\n {\n field: \"name\",\n exportFn: null,\n groupLevel: null,\n totalAble: false,\n totalFn: null,\n titleGroup: null,\n inuse: true,\n title: \"名字\",\n export: false,\n exportFlowChild: true,\n import: false,\n importRequired: false,\n importCellType: \"text\",\n sortAble: true,\n sortOrder: null,\n filterAble: false,\n filterMultiple: false,\n width: null,\n align: \"left\",\n freezeMode: \"none\"\n }\n ],\n rowActions: [\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\"),\n inuse: true,\n requiredPermissions: null,\n triggeEvents: null,\n title: \"详情\",\n confirm: false,\n confirmText: \"是否确认?\",\n confirmType: \"modal\",\n disabledBtn: false,\n styleType: \"link\",\n block: false,\n danger: false,\n ghost: false,\n size: \"small\",\n shape: \"\"\n },\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\", 2),\n requiredPermissions: null,\n triggeEvents: null,\n inuse: true,\n title: \"删除\",\n confirm: true,\n confirmText: \"确认删除?\",\n confirmType: \"pop\",\n disabledBtn: false,\n styleType: \"link\",\n block: false,\n danger: true,\n ghost: false,\n size: \"small\",\n shape: \"\"\n }\n ],\n data: [\n {\n id: \"001\",\n name: \"小王\",\n },\n {\n id: \"002\",\n name: \"小张\",\n },\n ],\n }),\n },\n moreExamples: [\n {\n name: \"空表格\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/table\",\n id: componentIdBuilder?.(\"axis-components/table\"),\n inuse: true,\n fields: [],\n rowActions: [],\n data: [],\n showOrder: false,\n }),\n }\n ]\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const designExampleDesc: ExampleDesc = {\n component: \"低代码设计器\",\n coverImg: \"assets/axis-components-covers/design.jpg\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/design\",\n id: componentIdBuilder?.(\"axis-components/design\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const textExampleDesc: ExampleDesc = {\n component: \"文本\",\n coverImg: \"assets/axis-components-covers/text.svg\",\n span: 12,\n height: 80,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const treeSelectorExampleDesc: ExampleDesc = {\n component: \"树选择器\",\n coverImg: \"assets/axis-components-covers/tree-selector.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/tree-selector\",\n id: componentIdBuilder?.(\"axis-components/tree-selector\"),\n inuse: true,\n menus: [],\n data: [{\n title: \"节点1\",\n key: \"1\",\n children: [\n {\n title: \"节点1-1\",\n key: \"1-1\"\n }, {\n title: \"节点1-2\",\n key: \"1-2\",\n children: [\n {\n title: \"节点1-2-1\",\n key: \"1-2-1\"\n }\n ]\n }\n ]\n }]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const splitterExampleDesc: ExampleDesc = {\n component: \"分隔面板\",\n coverImg: \"assets/axis-components-covers/splitter.svg\",\n span: 24,\n height: 120,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/splitter\",\n id: componentIdBuilder?.(\"axis-components/splitter\"),\n inuse: true,\n direction: \"horizontal\",\n panels: [\n {\n inuse: true,\n child: {\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\"),\n inuse: true,\n data: \"左面板\"\n }\n }, {\n inuse: true,\n child: {\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\", 2),\n inuse: true,\n data: \"右边面板\"\n }\n }\n ]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const modalExampleDesc: ExampleDesc = {\n component: \"对话框\",\n coverImg: \"assets/axis-components-covers/modal.svg\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/modal\",\n id: componentIdBuilder?.(\"axis-components/modal\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const descExampleDesc: ExampleDesc = {\n component: \"描述\",\n coverImg: \"assets/axis-components-covers/desc.svg\",\n span: 24,\n height: 90,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/desc\",\n id: componentIdBuilder?.(\"axis-components/desc\"),\n inuse: true,\n title: \"未命名\",\n data: {\n field1: \"字段1\",\n field2: \"字段2\"\n },\n items: [\n {\n inuse: true,\n title: \"字段1\",\n field: \"field1\"\n }, {\n inuse: true,\n title: \"字段2\",\n field: \"field2\"\n }\n ]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const badgeExampleDesc: ExampleDesc = {\n component: \"徽标\",\n coverImg: \"assets/axis-components-covers/badge.svg\",\n span: 14,\n height: 70,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/badge\",\n id: componentIdBuilder?.(\"axis-components/badge\"),\n inuse: true,\n standalone: true,\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const imageExampleDesc: ExampleDesc = {\n component: \"图片\",\n coverImg: \"assets/axis-components-covers/image.svg\",\n span: 10,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/image\",\n id: componentIdBuilder?.(\"axis-components/image\"),\n inuse: true,\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const iconExampleDesc: ExampleDesc = {\n component: \"图标\",\n coverImg: \"assets/axis-components-covers/icon.svg\",\n span: 12,\n height: 80,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/icon\",\n id: componentIdBuilder?.(\"axis-components/icon\"),\n inuse: true,\n icon: \"ant-design\"\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const inputIconExampleDesc: ExampleDesc = {\n component: \"图标输入框\",\n coverImg: \"assets/axis-components-covers/input-icon.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/input-icon\",\n id: componentIdBuilder?.(\"axis-components/input-icon\"),\n inuse: true,\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const inputNumberExampleDesc: ExampleDesc = {\n component: \"数值输入框\",\n coverImg: \"assets/axis-components-covers/input-number.svg\",\n span: 12,\n height: 60,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/input-number\",\n id: componentIdBuilder?.(\"axis-components/input-number\"),\n inuse: true\n }),\n },\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const uploadExampleDesc: ExampleDesc = {\n component: \"文件上传\",\n coverImg: \"assets/axis-components-covers/upload.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/upload\",\n id: componentIdBuilder?.(\"axis-components/upload\"),\n inuse: true,\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const textareaExampleDesc: ExampleDesc = {\n component: \"文本输入框\",\n coverImg: \"assets/axis-components-covers/textarea.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/textarea\",\n id: componentIdBuilder?.(\"axis-components/textarea\"),\n inuse: true\n }),\n },\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const dynamicContainerExampleDesc: ExampleDesc = {\n component: \"动态容器\",\n coverImg: \"assets/axis-components-covers/dynamic-container.svg\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/dynamic-container\",\n id: componentIdBuilder?.(\"axis-components/dynamic-container\"),\n inuse: true,\n child: {\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\"),\n inuse: true,\n data: \"动态容器中的文本\"\n }\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const scopeExampleDesc: ExampleDesc = {\n component: \"组件域\",\n coverImg: \"assets/axis-components-covers/scope.svg\",\n span: 12,\n height: 80,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/scope\",\n id: componentIdBuilder?.(\"axis-components/scope\"),\n inuse: true,\n scopeName: \"根\"\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const inputComponentExampleDesc: ExampleDesc = {\n component: \"组件输入框\",\n coverImg: \"assets/axis-components-covers/input-component.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/input-component\",\n id: componentIdBuilder?.(\"axis-components/input-component\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const inputJsonExampleDesc: ExampleDesc = {\n component: \"JSON输入框\",\n coverImg: \"assets/axis-components-covers/input-json.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/input-json\",\n id: componentIdBuilder?.(\"axis-components/input-json\"),\n inuse: true,\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const datePickerExampleDesc: ExampleDesc = {\n component: \"日期选择器\",\n coverImg: \"assets/axis-components-covers/date-picker.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/date-picker\",\n id: componentIdBuilder?.(\"axis-components/date-picker\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const stepsExampleDesc: ExampleDesc = {\n component: \"步骤条\",\n coverImg: \"assets/axis-components-covers/steps.svg\",\n span: 12,\n height: 90,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/steps\",\n id: componentIdBuilder?.(\"axis-components/steps\"),\n inuse: true,\n steps: [\n {\n inuse: true,\n name: \"step1\",\n title: \"步骤一\",\n status: \"finish\",\n desc: \"已完成\"\n }, {\n inuse: true,\n name: \"step2\",\n title: \"步骤二\",\n desc: \"进行中\",\n status: \"process\"\n }, {\n inuse: true,\n name: \"step3\",\n title: \"步骤三\"\n }\n ]\n }),\n },\n moreExamples: [\n {\n name: \"空步骤条\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/steps\",\n id: componentIdBuilder?.(\"axis-components/steps\"),\n inuse: true,\n steps: []\n }),\n },\n ]\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const editorExampleDesc: ExampleDesc = {\n component: \"编辑器\",\n coverImg: \"assets/axis-components-covers/editor.png\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/editor\",\n id: componentIdBuilder?.(\"axis-components/editor\"),\n inuse: true,\n mode: \"plain_text\",\n style: {\n height: \"300px\"\n }\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const tabsExampleDesc: ExampleDesc = {\n component: \"标签页\",\n coverImg: \"assets/axis-components-covers/tabs.svg\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/tabs\",\n id: componentIdBuilder?.(\"axis-components/tabs\"),\n inuse: true,\n tabs: [\n {\n inuse: true,\n name: \"tab1\",\n title: \"标签1\",\n child: {\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\"),\n inuse: true,\n data: \"标签1的内容\"\n }\n }, {\n inuse: true,\n name: \"tab2\",\n title: \"标签2\",\n child: {\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\", 2),\n inuse: true,\n data: \"标签2的内容\"\n }\n }\n ]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const dynamicValueExampleDesc: ExampleDesc = {\n component: \"动态值\",\n coverImg: \"assets/axis-components-covers/dynamic-value.svg\",\n span: 12,\n height: 80,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/dynamic-value\",\n id: componentIdBuilder?.(\"axis-components/dynamic-value\"),\n inuse: true,\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\"),\n inuse: true,\n }\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const editTableExampleDesc: ExampleDesc = {\n component: \"可编辑表格\",\n coverImg: \"assets/axis-components-covers/edit-table.png\",\n span: 24,\n height: 80,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/edit-table\",\n id: componentIdBuilder?.(\"axis-components/edit-table\"),\n inuse: true,\n fields: [\n {\n field: \"id\",\n inuse: true,\n title: \"编码\",\n sortAble: true,\n sortOrder: null,\n filterAble: false,\n filterMultiple: false,\n width: 150,\n align: \"left\",\n freezeMode: \"none\",\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\"),\n inuse: true,\n }\n },\n {\n field: \"name\",\n inuse: true,\n title: \"名称\",\n sortAble: true,\n sortOrder: null,\n filterAble: false,\n filterMultiple: false,\n width: 150,\n align: \"left\",\n freezeMode: \"none\",\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\", 2),\n inuse: true,\n }\n }\n ]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const colorPickerExampleDesc: ExampleDesc = {\n component: \"颜色选择器\",\n coverImg: \"assets/axis-components-covers/color-picker.svg\",\n span: 12,\n height: 80,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/color-picker\",\n id: componentIdBuilder?.(\"axis-components/color-picker\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const selectExampleDesc: ExampleDesc = {\n component: \"选择器\",\n coverImg: \"assets/axis-components-covers/select.svg\",\n span: 12,\n height: 60,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/select\",\n id: componentIdBuilder?.(\"axis-components/select\"),\n inuse: true,\n data: [\n {\n title: \"选项1\",\n key: \"1\"\n },\n {\n title: \"选项2\",\n key: \"2\"\n }\n ]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const radioExampleDesc: ExampleDesc = {\n component: \"单选框\",\n coverImg: \"assets/axis-components-covers/radio.svg\",\n span: 12,\n height: 60,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/radio\",\n id: componentIdBuilder?.(\"axis-components/radio\"),\n inuse: true,\n data: [\n {\n title: \"选项1\",\n key: \"1\"\n },\n {\n title: \"选项2\",\n key: \"2\"\n }\n ]\n }),\n }\n};","import { ExampleGroup } from \"ngx-axis-appforge/core\";\nimport { buttonExampleDesc } from \"./examples/button\";\nimport { formExampleDesc } from \"./examples/form\";\nimport { formItemExampleDesc } from \"./examples/form-item\";\nimport { flexExampleDesc } from \"./examples/flex\";\nimport { inputExampleDesc } from \"./examples/input\";\nimport { tableExampleDesc } from \"./examples/table\";\nimport { designExampleDesc } from \"./examples/design\";\nimport { textExampleDesc } from \"./examples/text\";\nimport { treeSelectorExampleDesc } from \"./examples/tree-selector\";\nimport { splitterExampleDesc } from \"./examples/splitter\";\nimport { modalExampleDesc } from \"./examples/modal\";\nimport { descExampleDesc } from \"./examples/desc\";\nimport { badgeExampleDesc } from \"./examples/badge\";\nimport { imageExampleDesc } from \"./examples/image\";\nimport { iconExampleDesc } from \"./examples/icon\";\nimport { inputIconExampleDesc } from \"./examples/input-icon\";\nimport { inputNumberExampleDesc } from \"./examples/input-number\";\nimport { uploadExampleDesc } from \"./examples/upload\";\nimport { textareaExampleDesc } from \"./examples/textarea\";\nimport { dynamicContainerExampleDesc } from \"./examples/dynamic-container\";\nimport { scopeExampleDesc } from \"./examples/scope\";\nimport { inputComponentExampleDesc } from \"./examples/input-component\";\nimport { inputJsonExampleDesc } from \"./examples/input-json\";\nimport { datePickerExampleDesc } from \"./examples/date-picker\";\nimport { stepsExampleDesc } from \"./examples/steps\";\nimport { editorExampleDesc } from \"./examples/editor\";\nimport { tabsExampleDesc } from \"./examples/tabs\";\nimport { dynamicValueExampleDesc } from \"./examples/dynamic-value\";\nimport { editTableExampleDesc } from \"./examples/edit-table\";\nimport { colorPickerExampleDesc } from \"./examples/color-picker\";\nimport { selectExampleDesc } from \"./examples/select\";\nimport { radioExampleDesc } from \"./examples/radio\";\n\nexport const examples: ExampleGroup[] = [\n {\n groupName: \"通用\",\n children: [\n scopeExampleDesc,\n buttonExampleDesc,\n textExampleDesc,\n iconExampleDesc,\n modalExampleDesc,\n ]\n }, {\n groupName: \"布局\",\n children: [\n flexExampleDesc,\n splitterExampleDesc,\n tabsExampleDesc,\n ]\n }, {\n groupName: \"录入\",\n children: [\n formExampleDesc,\n formItemExampleDesc,\n inputExampleDesc,\n inputNumberExampleDesc,\n selectExampleDesc,\n treeSelectorExampleDesc,\n radioExampleDesc,\n inputIconExampleDesc,\n textareaExampleDesc,\n uploadExampleDesc,\n inputComponentExampleDesc,\n inputJsonExampleDesc,\n datePickerExampleDesc,\n editorExampleDesc,\n dynamicValueExampleDesc,\n colorPickerExampleDesc,\n editTableExampleDesc,\n ]\n }, {\n groupName: \"数据\",\n children: [\n tableExampleDesc,\n descExampleDesc,\n badgeExampleDesc,\n imageExampleDesc,\n stepsExampleDesc,\n ]\n }, {\n groupName: \"其他\",\n children: [\n designExampleDesc,\n dynamicContainerExampleDesc,\n ]\n }\n];","import { Cmplib } from \"ngx-axis-appforge/core\";\nimport { cmpMap } from \"./cmp-map\";\nimport { examples } from \"./examples/examples\";\n\nexport const axisCmplib: Cmplib = {\n name: \"标准组件库\",\n cmpMap: cmpMap,\n examples: examples\n}","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './cmplib';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ngx-axis-appforge-axis-components.mjs","sources":["../../../axis-components/cmp-map.ts","../../../axis-components/examples/examples/button.ts","../../../axis-components/examples/examples/form.ts","../../../axis-components/examples/examples/form-item.ts","../../../axis-components/examples/examples/flex.ts","../../../axis-components/examples/examples/input.ts","../../../axis-components/examples/examples/table.ts","../../../axis-components/examples/examples/design.ts","../../../axis-components/examples/examples/text.ts","../../../axis-components/examples/examples/tree-selector.ts","../../../axis-components/examples/examples/splitter.ts","../../../axis-components/examples/examples/modal.ts","../../../axis-components/examples/examples/desc.ts","../../../axis-components/examples/examples/badge.ts","../../../axis-components/examples/examples/image.ts","../../../axis-components/examples/examples/icon.ts","../../../axis-components/examples/examples/input-icon.ts","../../../axis-components/examples/examples/input-number.ts","../../../axis-components/examples/examples/upload.ts","../../../axis-components/examples/examples/textarea.ts","../../../axis-components/examples/examples/dynamic-container.ts","../../../axis-components/examples/examples/scope.ts","../../../axis-components/examples/examples/input-component.ts","../../../axis-components/examples/examples/input-json.ts","../../../axis-components/examples/examples/date-picker.ts","../../../axis-components/examples/examples/steps.ts","../../../axis-components/examples/examples/editor.ts","../../../axis-components/examples/examples/tabs.ts","../../../axis-components/examples/examples/dynamic-value.ts","../../../axis-components/examples/examples/edit-table.ts","../../../axis-components/examples/examples/color-picker.ts","../../../axis-components/examples/examples/select.ts","../../../axis-components/examples/examples/radio.ts","../../../axis-components/examples/examples/switch.ts","../../../axis-components/examples/examples.ts","../../../axis-components/cmplib.ts","../../../axis-components/ngx-axis-appforge-axis-components.ts"],"sourcesContent":["export const cmpMap: { [component: string]: () => Promise<any> } = {\n \"axis-components/button\": () => import(\"ngx-axis-appforge/axis-components/button\"),\n \"axis-components/button/design\": () => import(\"ngx-axis-appforge/axis-components/button/design\"),\n \"axis-components/design\": () => import(\"ngx-axis-appforge/axis-components/design\"),\n \"axis-components/design/design\": () => import(\"ngx-axis-appforge/axis-components/design/design\"),\n \"axis-components/editor\": () => import(\"ngx-axis-appforge/axis-components/editor\"),\n \"axis-components/editor/design\": () => import(\"ngx-axis-appforge/axis-components/editor/design\"),\n \"axis-components/flex\": () => import(\"ngx-axis-appforge/axis-components/flex\"),\n \"axis-components/flex/design\": () => import(\"ngx-axis-appforge/axis-components/flex/design\"),\n \"axis-components/icon\": () => import(\"ngx-axis-appforge/axis-components/icon\"),\n \"axis-components/icon/design\": () => import(\"ngx-axis-appforge/axis-components/icon/design\"),\n \"axis-components/input\": () => import(\"ngx-axis-appforge/axis-components/input\"),\n \"axis-components/input/design\": () => import(\"ngx-axis-appforge/axis-components/input/design\"),\n \"axis-components/input-icon\": () => import(\"ngx-axis-appforge/axis-components/input-icon\"),\n \"axis-components/input-icon/design\": () => import(\"ngx-axis-appforge/axis-components/input-icon/design\"),\n \"axis-components/input-json\": () => import(\"ngx-axis-appforge/axis-components/input-json\"),\n \"axis-components/input-json/design\": () => import(\"ngx-axis-appforge/axis-components/input-json/design\"),\n \"axis-components/scope\": () => import(\"ngx-axis-appforge/axis-components/scope\"),\n \"axis-components/scope/design\": () => import(\"ngx-axis-appforge/axis-components/scope/design\"),\n \"axis-components/text\": () => import(\"ngx-axis-appforge/axis-components/text\"),\n \"axis-components/text/design\": () => import(\"ngx-axis-appforge/axis-components/text/design\"),\n \"axis-components/form\": () => import(\"ngx-axis-appforge/axis-components/form\"),\n \"axis-components/form/design\": () => import(\"ngx-axis-appforge/axis-components/form/design\"),\n \"axis-components/form-item\": () => import(\"ngx-axis-appforge/axis-components/form-item\"),\n \"axis-components/form-item/design\": () => import(\"ngx-axis-appforge/axis-components/form-item/design\"),\n \"axis-components/table\": () => import(\"ngx-axis-appforge/axis-components/table\"),\n \"axis-components/table/design\": () => import(\"ngx-axis-appforge/axis-components/table/design\"),\n \"axis-components/single-selector\": () => import(\"ngx-axis-appforge/axis-components/single-selector\"),\n \"axis-components/single-selector/design\": () => import(\"ngx-axis-appforge/axis-components/single-selector/design\"),\n \"axis-components/select\": () => import(\"ngx-axis-appforge/axis-components/select\"),\n \"axis-components/select/design\": () => import(\"ngx-axis-appforge/axis-components/select/design\"),\n \"axis-components/tree-selector\": () => import(\"ngx-axis-appforge/axis-components/tree-selector\"),\n \"axis-components/tree-selector/design\": () => import(\"ngx-axis-appforge/axis-components/tree-selector/design\"),\n \"axis-components/splitter\": () => import(\"ngx-axis-appforge/axis-components/splitter\"),\n \"axis-components/splitter/design\": () => import(\"ngx-axis-appforge/axis-components/splitter/design\"),\n \"axis-components/modal\": () => import(\"ngx-axis-appforge/axis-components/modal\"),\n \"axis-components/modal/design\": () => import(\"ngx-axis-appforge/axis-components/modal/design\"),\n \"axis-components/desc\": () => import(\"ngx-axis-appforge/axis-components/desc\"),\n \"axis-components/desc/design\": () => import(\"ngx-axis-appforge/axis-components/desc/design\"),\n \"axis-components/badge\": () => import(\"ngx-axis-appforge/axis-components/badge\"),\n \"axis-components/badge/design\": () => import(\"ngx-axis-appforge/axis-components/badge/design\"),\n \"axis-components/image\": () => import(\"ngx-axis-appforge/axis-components/image\"),\n \"axis-components/image/design\": () => import(\"ngx-axis-appforge/axis-components/image/design\"),\n \"axis-components/input-number\": () => import(\"ngx-axis-appforge/axis-components/input-number\"),\n \"axis-components/input-number/design\": () => import(\"ngx-axis-appforge/axis-components/input-number/design\"),\n \"axis-components/upload\": () => import(\"ngx-axis-appforge/axis-components/upload\"),\n \"axis-components/upload/design\": () => import(\"ngx-axis-appforge/axis-components/upload/design\"),\n \"axis-components/textarea\": () => import(\"ngx-axis-appforge/axis-components/textarea\"),\n \"axis-components/textarea/design\": () => import(\"ngx-axis-appforge/axis-components/textarea/design\"),\n \"axis-components/dynamic-container\": () => import(\"ngx-axis-appforge/axis-components/dynamic-container\"),\n \"axis-components/dynamic-container/design\": () => import(\"ngx-axis-appforge/axis-components/dynamic-container/design\"),\n \"axis-components/input-component\": () => import(\"ngx-axis-appforge/axis-components/input-component\"),\n \"axis-components/input-component/design\": () => import(\"ngx-axis-appforge/axis-components/input-component/design\"),\n \"axis-components/date-picker\": () => import(\"ngx-axis-appforge/axis-components/date-picker\"),\n \"axis-components/date-picker/design\": () => import(\"ngx-axis-appforge/axis-components/date-picker/design\"),\n \"axis-components/steps\": () => import(\"ngx-axis-appforge/axis-components/steps\"),\n \"axis-components/steps/design\": () => import(\"ngx-axis-appforge/axis-components/steps/design\"),\n \"axis-components/tabs\": () => import(\"ngx-axis-appforge/axis-components/tabs\"),\n \"axis-components/tabs/design\": () => import(\"ngx-axis-appforge/axis-components/tabs/design\"),\n \"axis-components/dynamic-value\": () => import(\"ngx-axis-appforge/axis-components/dynamic-value\"),\n \"axis-components/dynamic-value/design\": () => import(\"ngx-axis-appforge/axis-components/dynamic-value/design\"),\n \"axis-components/edit-table\": () => import(\"ngx-axis-appforge/axis-components/edit-table\"),\n \"axis-components/edit-table/design\": () => import(\"ngx-axis-appforge/axis-components/edit-table/design\"),\n \"axis-components/color-picker\": () => import(\"ngx-axis-appforge/axis-components/color-picker\"),\n \"axis-components/color-picker/design\": () => import(\"ngx-axis-appforge/axis-components/color-picker/design\"),\n \"axis-components/radio\": () => import(\"ngx-axis-appforge/axis-components/radio\"),\n \"axis-components/radio/design\": () => import(\"ngx-axis-appforge/axis-components/radio/design\"),\n \"axis-components/switch\": () => import(\"ngx-axis-appforge/axis-components/switch\"),\n \"axis-components/switch/design\": () => import(\"ngx-axis-appforge/axis-components/switch/design\"),\n}","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const buttonExampleDesc: ExampleDesc = {\n component: \"按钮\",\n coverImg: \"assets/axis-components-covers/button.svg\",\n span: 12,\n height: 78,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\"),\n inuse: true,\n title: \"未命名按钮\",\n confirm: false,\n confirmText: \"是否确认?\",\n confirmType: \"modal\",\n disabledBtn: false,\n styleType: \"primary\",\n block: false,\n danger: false,\n ghost: false,\n size: \"default\",\n shape: \"\"\n }),\n },\n moreExamples: [\n {\n name: \"链接按钮\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\"),\n inuse: true,\n title: \"未命名按钮\",\n styleType: \"link\"\n }),\n }\n ]\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const formExampleDesc: ExampleDesc = {\n component: \"表单\",\n coverImg: \"assets/axis-components-covers/form.svg\",\n span: 24,\n height: 120,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/form\",\n id: componentIdBuilder?.(\"axis-components/form\"),\n inuse: true,\n submitConfirm: true,\n leaveConfirm: true,\n child: {\n component: \"axis-components/flex\",\n id: componentIdBuilder?.(\"axis-components/flex\"),\n inuse: true,\n direction: \"vertical\",\n align: \"center\",\n gap: \"20px\",\n style: {\n padding: \"20px\"\n },\n children: [\n {\n component: \"axis-components/flex\",\n inuse: true,\n id: componentIdBuilder?.(\"axis-components/flex\", 2),\n direction: \"horizontal\",\n justify: \"end\",\n gap: \"6px\",\n children: [\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\"),\n inuse: true,\n title: \"重置\",\n styleType: \"default\",\n icon: {\n component: \"axis-components/icon\",\n inuse: true,\n lib: \"antdesign\",\n theme: \"outline\",\n icon: \"redo\"\n },\n triggeEvents: {\n buttonClick: [\n {\n name: \"resetForm\",\n disabled: false,\n id: componentIdBuilder?.(\"axis-components/form\"),\n target: \"component\"\n }\n ]\n }\n },\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\", 2),\n inuse: true,\n title: \"提交\",\n icon: {\n component: \"axis-components/icon\",\n inuse: true,\n lib: \"antdesign\",\n theme: \"outline\",\n icon: \"save\"\n },\n triggeEvents: {\n buttonClick: [\n {\n name: \"validForm\",\n disabled: false,\n id: componentIdBuilder?.(\"axis-components/form\"),\n target: \"component\"\n }\n ]\n }\n },\n ]\n },\n {\n component: \"axis-components/flex\",\n inuse: true,\n id: componentIdBuilder?.(\"axis-components/flex\", 3),\n direction: \"vertical\",\n align: \"center\",\n style: {\n width: \"400px\"\n },\n children: [\n {\n component: \"axis-components/form-item\",\n id: componentIdBuilder?.(\"axis-components/form-item\"),\n inuse: true,\n name: \"field1\",\n label: \"字段1\",\n validators: [],\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\"),\n inuse: true\n }\n },\n {\n component: \"axis-components/form-item\",\n id: componentIdBuilder?.(\"axis-components/form-item\", 2),\n inuse: true,\n name: \"field2\",\n label: \"字段2\",\n validators: [],\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\", 2),\n inuse: true\n }\n },\n ]\n }\n ]\n }\n }),\n },\n moreExamples: [\n {\n name: \"空表单\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/form\",\n id: componentIdBuilder?.(\"axis-components/form\"),\n inuse: true,\n submitConfirm: true,\n leaveConfirm: true\n }),\n },\n {\n name: \"查询表单\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/form\",\n id: componentIdBuilder?.(\"axis-components/form\"),\n inuse: true,\n submitConfirm: true,\n leaveConfirm: true,\n style: {\n width: \"100%\"\n },\n child: {\n component: \"axis-components/flex\",\n id: componentIdBuilder?.(\"axis-components/flex\"),\n direction: \"horizontal\",\n children: [\n {\n component: \"axis-components/flex\",\n id: componentIdBuilder?.(\"axis-components/flex\", 2),\n direction: \"horizontal\",\n children: [\n {\n component: \"axis-components/form-item\",\n id: componentIdBuilder?.(\"axis-components/form-item\"),\n validators: [],\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\"),\n requiredPermissions: null,\n triggeEvents: null,\n inuse: true,\n disabled: false,\n readonly: false,\n type: \"text\",\n placeholder: \"输入关键字搜索\",\n maxlength: \"\",\n debounceTime: 300,\n autofocus: false\n },\n requiredPermissions: null,\n triggeEvents: null,\n inuse: true,\n style: {\n width: \"250px\",\n height: \"35px\"\n },\n name: \"keywords\",\n label: \"搜索\",\n labelWidth: \"40px\"\n }, {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\"),\n requiredPermissions: null,\n triggeEvents: {\n buttonClick: [\n {\n name: \"resetForm\",\n disabled: false,\n id: componentIdBuilder?.(\"axis-components/form\"),\n data: null,\n target: \"component\"\n }\n ]\n },\n inuse: true,\n title: \"\",\n icon: {\n component: \"axis-components/icon\",\n inuse: true,\n lib: \"antdesign\",\n theme: \"outline\",\n icon: \"delete\"\n },\n confirm: false,\n confirmText: \"是否确认?\",\n confirmType: \"modal\",\n disabledBtn: false,\n styleType: \"default\",\n block: false,\n danger: true,\n ghost: false,\n size: \"default\",\n shape: \"circle\"\n }\n ],\n requiredPermissions: null,\n triggeEvents: null,\n inuse: true,\n style: {\n flex: 1\n },\n justify: \"start\",\n align: \"start\",\n wrap: \"wrap\",\n gap: \"20px\"\n },\n {\n component: \"axis-components/flex\",\n id: componentIdBuilder?.(\"axis-components/flex\", 3),\n direction: \"horizontal\",\n children: [\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\", 2),\n inuse: true,\n requiredPermissions: null,\n triggeEvents: null,\n title: \"刷新\",\n icon: {\n component: \"axis-components/icon\",\n inuse: true,\n lib: \"antdesign\",\n theme: \"outline\",\n icon: \"reload\"\n },\n confirm: false,\n confirmText: \"是否确认?\",\n confirmType: \"modal\",\n disabledBtn: false,\n styleType: \"default\",\n block: false,\n danger: false,\n ghost: false,\n size: \"default\",\n shape: \"\"\n },\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\", 3),\n inuse: true,\n requiredPermissions: null,\n triggeEvents: null,\n title: \"新增\",\n icon: {\n component: \"axis-components/icon\",\n inuse: true,\n lib: \"antdesign\",\n theme: \"outline\",\n icon: \"plus\"\n },\n confirm: false,\n confirmText: \"是否确认?\",\n confirmType: \"modal\",\n disabledBtn: false,\n styleType: \"dashed\",\n block: false,\n danger: false,\n ghost: false,\n size: \"default\",\n shape: \"\"\n }\n ],\n inuse: true,\n requiredPermissions: null,\n style: {\n width: \"fit-content\"\n },\n triggeEvents: null,\n justify: \"start\",\n align: \"start\",\n wrap: \"nowrap\",\n gap: \"4px\"\n }\n ],\n inuse: true,\n requiredPermissions: null,\n style: {\n padding: \"10px\"\n },\n triggeEvents: null,\n justify: \"start\",\n align: \"center\",\n wrap: \"nowrap\",\n gap: \"20px\"\n }\n })\n }\n ]\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const formItemExampleDesc: ExampleDesc = {\n component: \"表单项\",\n coverImg: \"assets/axis-components-covers/form-item.svg\",\n span: 24,\n height: 60,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/form-item\",\n id: componentIdBuilder?.(\"axis-components/form-item\"),\n inuse: true,\n name: \"field\",\n label: \"字段\",\n labelWidth: \"120px\",\n validators: [],\n child: {\n component: \"axis-components/input\",\n inuse: true,\n id: componentIdBuilder?.(\"axis-components/input\"),\n }\n }),\n },\n moreExamples: [\n {\n name: \"空表单项\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/form-item\",\n id: componentIdBuilder?.(\"axis-components/form-item\"),\n inuse: true,\n name: \"field\",\n label: \"\",\n labelWidth: \"\",\n validators: [],\n }),\n }\n ]\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const flexExampleDesc: ExampleDesc = {\n component: \"响应布局\",\n coverImg: \"assets/axis-components-covers/flex.svg\",\n span: 24,\n height: 120,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/flex\",\n id: componentIdBuilder?.(\"axis-components/flex\"),\n inuse: true,\n direction: \"horizontal\",\n children: []\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const inputExampleDesc: ExampleDesc = {\n component: \"文本输入框\",\n coverImg: \"assets/axis-components-covers/input.svg\",\n span: 12,\n height: 60,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\"),\n inuse: true\n }),\n },\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const tableExampleDesc: ExampleDesc = {\n component: \"表格\",\n coverImg: \"assets/axis-components-covers/table.svg\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/table\",\n id: componentIdBuilder?.(\"axis-components/table\"),\n inuse: true,\n keyField: \"id\",\n fields: [\n {\n field: \"id\",\n exportFn: null,\n groupLevel: null,\n totalAble: false,\n totalFn: null,\n titleGroup: null,\n inuse: true,\n title: \"编码\",\n export: false,\n exportFlowChild: true,\n import: false,\n importRequired: false,\n importCellType: \"text\",\n sortAble: true,\n sortOrder: null,\n filterAble: false,\n filterMultiple: false,\n width: 150,\n align: \"left\",\n freezeMode: \"none\"\n },\n {\n field: \"name\",\n exportFn: null,\n groupLevel: null,\n totalAble: false,\n totalFn: null,\n titleGroup: null,\n inuse: true,\n title: \"名字\",\n export: false,\n exportFlowChild: true,\n import: false,\n importRequired: false,\n importCellType: \"text\",\n sortAble: true,\n sortOrder: null,\n filterAble: false,\n filterMultiple: false,\n width: null,\n align: \"left\",\n freezeMode: \"none\"\n }\n ],\n rowActions: [\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\"),\n inuse: true,\n requiredPermissions: null,\n triggeEvents: null,\n title: \"详情\",\n confirm: false,\n confirmText: \"是否确认?\",\n confirmType: \"modal\",\n disabledBtn: false,\n styleType: \"link\",\n block: false,\n danger: false,\n ghost: false,\n size: \"small\",\n shape: \"\"\n },\n {\n component: \"axis-components/button\",\n id: componentIdBuilder?.(\"axis-components/button\", 2),\n requiredPermissions: null,\n triggeEvents: null,\n inuse: true,\n title: \"删除\",\n confirm: true,\n confirmText: \"确认删除?\",\n confirmType: \"pop\",\n disabledBtn: false,\n styleType: \"link\",\n block: false,\n danger: true,\n ghost: false,\n size: \"small\",\n shape: \"\"\n }\n ],\n data: [\n {\n id: \"001\",\n name: \"小王\",\n },\n {\n id: \"002\",\n name: \"小张\",\n },\n ],\n }),\n },\n moreExamples: [\n {\n name: \"空表格\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/table\",\n id: componentIdBuilder?.(\"axis-components/table\"),\n inuse: true,\n fields: [],\n rowActions: [],\n data: [],\n showOrder: false,\n }),\n }\n ]\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const designExampleDesc: ExampleDesc = {\n component: \"低代码设计器\",\n coverImg: \"assets/axis-components-covers/design.jpg\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/design\",\n id: componentIdBuilder?.(\"axis-components/design\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const textExampleDesc: ExampleDesc = {\n component: \"文本\",\n coverImg: \"assets/axis-components-covers/text.svg\",\n span: 12,\n height: 80,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const treeSelectorExampleDesc: ExampleDesc = {\n component: \"树选择器\",\n coverImg: \"assets/axis-components-covers/tree-selector.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/tree-selector\",\n id: componentIdBuilder?.(\"axis-components/tree-selector\"),\n inuse: true,\n menus: [],\n data: [{\n title: \"节点1\",\n key: \"1\",\n children: [\n {\n title: \"节点1-1\",\n key: \"1-1\"\n }, {\n title: \"节点1-2\",\n key: \"1-2\",\n children: [\n {\n title: \"节点1-2-1\",\n key: \"1-2-1\"\n }\n ]\n }\n ]\n }]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const splitterExampleDesc: ExampleDesc = {\n component: \"分隔面板\",\n coverImg: \"assets/axis-components-covers/splitter.svg\",\n span: 24,\n height: 120,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/splitter\",\n id: componentIdBuilder?.(\"axis-components/splitter\"),\n inuse: true,\n direction: \"horizontal\",\n panels: [\n {\n inuse: true,\n child: {\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\"),\n inuse: true,\n data: \"左面板\"\n }\n }, {\n inuse: true,\n child: {\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\", 2),\n inuse: true,\n data: \"右边面板\"\n }\n }\n ]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const modalExampleDesc: ExampleDesc = {\n component: \"对话框\",\n coverImg: \"assets/axis-components-covers/modal.svg\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/modal\",\n id: componentIdBuilder?.(\"axis-components/modal\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const descExampleDesc: ExampleDesc = {\n component: \"描述\",\n coverImg: \"assets/axis-components-covers/desc.svg\",\n span: 24,\n height: 90,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/desc\",\n id: componentIdBuilder?.(\"axis-components/desc\"),\n inuse: true,\n title: \"未命名\",\n data: {\n field1: \"字段1\",\n field2: \"字段2\"\n },\n items: [\n {\n inuse: true,\n title: \"字段1\",\n field: \"field1\"\n }, {\n inuse: true,\n title: \"字段2\",\n field: \"field2\"\n }\n ]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const badgeExampleDesc: ExampleDesc = {\n component: \"徽标\",\n coverImg: \"assets/axis-components-covers/badge.svg\",\n span: 14,\n height: 70,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/badge\",\n id: componentIdBuilder?.(\"axis-components/badge\"),\n inuse: true,\n standalone: true,\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const imageExampleDesc: ExampleDesc = {\n component: \"图片\",\n coverImg: \"assets/axis-components-covers/image.svg\",\n span: 10,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/image\",\n id: componentIdBuilder?.(\"axis-components/image\"),\n inuse: true,\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const iconExampleDesc: ExampleDesc = {\n component: \"图标\",\n coverImg: \"assets/axis-components-covers/icon.svg\",\n span: 12,\n height: 80,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/icon\",\n id: componentIdBuilder?.(\"axis-components/icon\"),\n inuse: true,\n icon: \"ant-design\"\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const inputIconExampleDesc: ExampleDesc = {\n component: \"图标输入框\",\n coverImg: \"assets/axis-components-covers/input-icon.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/input-icon\",\n id: componentIdBuilder?.(\"axis-components/input-icon\"),\n inuse: true,\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const inputNumberExampleDesc: ExampleDesc = {\n component: \"数值输入框\",\n coverImg: \"assets/axis-components-covers/input-number.svg\",\n span: 12,\n height: 60,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/input-number\",\n id: componentIdBuilder?.(\"axis-components/input-number\"),\n inuse: true\n }),\n },\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const uploadExampleDesc: ExampleDesc = {\n component: \"文件上传\",\n coverImg: \"assets/axis-components-covers/upload.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/upload\",\n id: componentIdBuilder?.(\"axis-components/upload\"),\n inuse: true,\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const textareaExampleDesc: ExampleDesc = {\n component: \"文本输入框\",\n coverImg: \"assets/axis-components-covers/textarea.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/textarea\",\n id: componentIdBuilder?.(\"axis-components/textarea\"),\n inuse: true\n }),\n },\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const dynamicContainerExampleDesc: ExampleDesc = {\n component: \"动态容器\",\n coverImg: \"assets/axis-components-covers/dynamic-container.svg\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/dynamic-container\",\n id: componentIdBuilder?.(\"axis-components/dynamic-container\"),\n inuse: true,\n child: {\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\"),\n inuse: true,\n data: \"动态容器中的文本\"\n }\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const scopeExampleDesc: ExampleDesc = {\n component: \"组件域\",\n coverImg: \"assets/axis-components-covers/scope.svg\",\n span: 12,\n height: 80,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/scope\",\n id: componentIdBuilder?.(\"axis-components/scope\"),\n inuse: true,\n scopeName: \"根\"\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const inputComponentExampleDesc: ExampleDesc = {\n component: \"组件输入框\",\n coverImg: \"assets/axis-components-covers/input-component.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/input-component\",\n id: componentIdBuilder?.(\"axis-components/input-component\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const inputJsonExampleDesc: ExampleDesc = {\n component: \"JSON输入框\",\n coverImg: \"assets/axis-components-covers/input-json.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/input-json\",\n id: componentIdBuilder?.(\"axis-components/input-json\"),\n inuse: true,\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const datePickerExampleDesc: ExampleDesc = {\n component: \"日期选择器\",\n coverImg: \"assets/axis-components-covers/date-picker.svg\",\n span: 12,\n height: 70,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/date-picker\",\n id: componentIdBuilder?.(\"axis-components/date-picker\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const stepsExampleDesc: ExampleDesc = {\n component: \"步骤条\",\n coverImg: \"assets/axis-components-covers/steps.svg\",\n span: 12,\n height: 90,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/steps\",\n id: componentIdBuilder?.(\"axis-components/steps\"),\n inuse: true,\n steps: [\n {\n inuse: true,\n name: \"step1\",\n title: \"步骤一\",\n status: \"finish\",\n desc: \"已完成\"\n }, {\n inuse: true,\n name: \"step2\",\n title: \"步骤二\",\n desc: \"进行中\",\n status: \"process\"\n }, {\n inuse: true,\n name: \"step3\",\n title: \"步骤三\"\n }\n ]\n }),\n },\n moreExamples: [\n {\n name: \"空步骤条\",\n builder: (componentIdBuilder) => ({\n component: \"axis-components/steps\",\n id: componentIdBuilder?.(\"axis-components/steps\"),\n inuse: true,\n steps: []\n }),\n },\n ]\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const editorExampleDesc: ExampleDesc = {\n component: \"编辑器\",\n coverImg: \"assets/axis-components-covers/editor.png\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/editor\",\n id: componentIdBuilder?.(\"axis-components/editor\"),\n inuse: true,\n mode: \"plain_text\",\n style: {\n height: \"300px\"\n }\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const tabsExampleDesc: ExampleDesc = {\n component: \"标签页\",\n coverImg: \"assets/axis-components-covers/tabs.svg\",\n span: 24,\n height: 120,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/tabs\",\n id: componentIdBuilder?.(\"axis-components/tabs\"),\n inuse: true,\n tabs: [\n {\n inuse: true,\n name: \"tab1\",\n title: \"标签1\",\n child: {\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\"),\n inuse: true,\n data: \"标签1的内容\"\n }\n }, {\n inuse: true,\n name: \"tab2\",\n title: \"标签2\",\n child: {\n component: \"axis-components/text\",\n id: componentIdBuilder?.(\"axis-components/text\", 2),\n inuse: true,\n data: \"标签2的内容\"\n }\n }\n ]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const dynamicValueExampleDesc: ExampleDesc = {\n component: \"动态值\",\n coverImg: \"assets/axis-components-covers/dynamic-value.svg\",\n span: 12,\n height: 80,\n tags: [\"wrap\"],\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/dynamic-value\",\n id: componentIdBuilder?.(\"axis-components/dynamic-value\"),\n inuse: true,\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\"),\n inuse: true,\n }\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const editTableExampleDesc: ExampleDesc = {\n component: \"可编辑表格\",\n coverImg: \"assets/axis-components-covers/edit-table.png\",\n span: 24,\n height: 80,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/edit-table\",\n id: componentIdBuilder?.(\"axis-components/edit-table\"),\n inuse: true,\n fields: [\n {\n field: \"id\",\n inuse: true,\n title: \"编码\",\n sortAble: true,\n sortOrder: null,\n filterAble: false,\n filterMultiple: false,\n width: 150,\n align: \"left\",\n freezeMode: \"none\",\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\"),\n inuse: true,\n }\n },\n {\n field: \"name\",\n inuse: true,\n title: \"名称\",\n sortAble: true,\n sortOrder: null,\n filterAble: false,\n filterMultiple: false,\n width: 150,\n align: \"left\",\n freezeMode: \"none\",\n child: {\n component: \"axis-components/input\",\n id: componentIdBuilder?.(\"axis-components/input\", 2),\n inuse: true,\n }\n }\n ]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const colorPickerExampleDesc: ExampleDesc = {\n component: \"颜色选择器\",\n coverImg: \"assets/axis-components-covers/color-picker.svg\",\n span: 12,\n height: 80,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/color-picker\",\n id: componentIdBuilder?.(\"axis-components/color-picker\"),\n inuse: true\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const selectExampleDesc: ExampleDesc = {\n component: \"选择器\",\n coverImg: \"assets/axis-components-covers/select.svg\",\n span: 12,\n height: 60,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/select\",\n id: componentIdBuilder?.(\"axis-components/select\"),\n inuse: true,\n data: [\n {\n title: \"选项1\",\n key: \"1\"\n },\n {\n title: \"选项2\",\n key: \"2\"\n }\n ]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const radioExampleDesc: ExampleDesc = {\n component: \"单选框\",\n coverImg: \"assets/axis-components-covers/radio.svg\",\n span: 12,\n height: 60,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/radio\",\n id: componentIdBuilder?.(\"axis-components/radio\"),\n inuse: true,\n data: [\n {\n title: \"选项1\",\n key: \"1\"\n },\n {\n title: \"选项2\",\n key: \"2\"\n }\n ]\n }),\n }\n};","import { ExampleDesc } from \"ngx-axis-appforge/core\";\n\nexport const switchExampleDesc: ExampleDesc = {\n component: \"开关\",\n coverImg: \"assets/axis-components-covers/switch.svg\",\n span: 12,\n height: 60,\n example: {\n builder: (componentIdBuilder) => ({\n component: \"axis-components/switch\",\n id: componentIdBuilder?.(\"axis-components/switch\"),\n inuse: true,\n initValue: false\n }),\n }\n};","import { ExampleGroup } from \"ngx-axis-appforge/core\";\nimport { buttonExampleDesc } from \"./examples/button\";\nimport { formExampleDesc } from \"./examples/form\";\nimport { formItemExampleDesc } from \"./examples/form-item\";\nimport { flexExampleDesc } from \"./examples/flex\";\nimport { inputExampleDesc } from \"./examples/input\";\nimport { tableExampleDesc } from \"./examples/table\";\nimport { designExampleDesc } from \"./examples/design\";\nimport { textExampleDesc } from \"./examples/text\";\nimport { treeSelectorExampleDesc } from \"./examples/tree-selector\";\nimport { splitterExampleDesc } from \"./examples/splitter\";\nimport { modalExampleDesc } from \"./examples/modal\";\nimport { descExampleDesc } from \"./examples/desc\";\nimport { badgeExampleDesc } from \"./examples/badge\";\nimport { imageExampleDesc } from \"./examples/image\";\nimport { iconExampleDesc } from \"./examples/icon\";\nimport { inputIconExampleDesc } from \"./examples/input-icon\";\nimport { inputNumberExampleDesc } from \"./examples/input-number\";\nimport { uploadExampleDesc } from \"./examples/upload\";\nimport { textareaExampleDesc } from \"./examples/textarea\";\nimport { dynamicContainerExampleDesc } from \"./examples/dynamic-container\";\nimport { scopeExampleDesc } from \"./examples/scope\";\nimport { inputComponentExampleDesc } from \"./examples/input-component\";\nimport { inputJsonExampleDesc } from \"./examples/input-json\";\nimport { datePickerExampleDesc } from \"./examples/date-picker\";\nimport { stepsExampleDesc } from \"./examples/steps\";\nimport { editorExampleDesc } from \"./examples/editor\";\nimport { tabsExampleDesc } from \"./examples/tabs\";\nimport { dynamicValueExampleDesc } from \"./examples/dynamic-value\";\nimport { editTableExampleDesc } from \"./examples/edit-table\";\nimport { colorPickerExampleDesc } from \"./examples/color-picker\";\nimport { selectExampleDesc } from \"./examples/select\";\nimport { radioExampleDesc } from \"./examples/radio\";\nimport { switchExampleDesc } from \"./examples/switch\";\n\nexport const examples: ExampleGroup[] = [\n {\n groupName: \"通用\",\n children: [\n scopeExampleDesc,\n buttonExampleDesc,\n textExampleDesc,\n iconExampleDesc,\n modalExampleDesc,\n ]\n }, {\n groupName: \"布局\",\n children: [\n flexExampleDesc,\n splitterExampleDesc,\n tabsExampleDesc,\n ]\n }, {\n groupName: \"录入\",\n children: [\n formExampleDesc,\n formItemExampleDesc,\n inputExampleDesc,\n inputNumberExampleDesc,\n selectExampleDesc,\n treeSelectorExampleDesc,\n radioExampleDesc,\n switchExampleDesc,\n inputIconExampleDesc,\n textareaExampleDesc,\n uploadExampleDesc,\n inputComponentExampleDesc,\n inputJsonExampleDesc,\n datePickerExampleDesc,\n editorExampleDesc,\n dynamicValueExampleDesc,\n colorPickerExampleDesc,\n editTableExampleDesc,\n ]\n }, {\n groupName: \"数据\",\n children: [\n tableExampleDesc,\n descExampleDesc,\n badgeExampleDesc,\n imageExampleDesc,\n stepsExampleDesc,\n ]\n }, {\n groupName: \"其他\",\n children: [\n designExampleDesc,\n dynamicContainerExampleDesc,\n ]\n }\n];","import { Cmplib } from \"ngx-axis-appforge/core\";\nimport { cmpMap } from \"./cmp-map\";\nimport { examples } from \"./examples/examples\";\n\nexport const axisCmplib: Cmplib = {\n name: \"标准组件库\",\n cmpMap: cmpMap,\n examples: examples\n}","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './cmplib';\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.25",
|
|
4
4
|
"author": "ZengCheng <zengc694623467@gmail.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"dependencies": {
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"types": "./axis-components/index.d.ts",
|
|
32
32
|
"default": "./fesm2022/ngx-axis-appforge-axis-components.mjs"
|
|
33
33
|
},
|
|
34
|
-
"./core": {
|
|
35
|
-
"types": "./core/index.d.ts",
|
|
36
|
-
"default": "./fesm2022/ngx-axis-appforge-core.mjs"
|
|
37
|
-
},
|
|
38
34
|
"./providers": {
|
|
39
35
|
"types": "./providers/index.d.ts",
|
|
40
36
|
"default": "./fesm2022/ngx-axis-appforge-providers.mjs"
|
|
41
37
|
},
|
|
38
|
+
"./core": {
|
|
39
|
+
"types": "./core/index.d.ts",
|
|
40
|
+
"default": "./fesm2022/ngx-axis-appforge-core.mjs"
|
|
41
|
+
},
|
|
42
42
|
"./axis-components/badge": {
|
|
43
43
|
"types": "./axis-components/badge/index.d.ts",
|
|
44
44
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-badge.mjs"
|
|
@@ -47,6 +47,10 @@
|
|
|
47
47
|
"types": "./axis-components/button/index.d.ts",
|
|
48
48
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-button.mjs"
|
|
49
49
|
},
|
|
50
|
+
"./axis-components/date-picker": {
|
|
51
|
+
"types": "./axis-components/date-picker/index.d.ts",
|
|
52
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-date-picker.mjs"
|
|
53
|
+
},
|
|
50
54
|
"./axis-components/color-picker": {
|
|
51
55
|
"types": "./axis-components/color-picker/index.d.ts",
|
|
52
56
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-color-picker.mjs"
|
|
@@ -55,14 +59,6 @@
|
|
|
55
59
|
"types": "./axis-components/desc/index.d.ts",
|
|
56
60
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-desc.mjs"
|
|
57
61
|
},
|
|
58
|
-
"./axis-components/dynamic-container": {
|
|
59
|
-
"types": "./axis-components/dynamic-container/index.d.ts",
|
|
60
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-container.mjs"
|
|
61
|
-
},
|
|
62
|
-
"./axis-components/date-picker": {
|
|
63
|
-
"types": "./axis-components/date-picker/index.d.ts",
|
|
64
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-date-picker.mjs"
|
|
65
|
-
},
|
|
66
62
|
"./axis-components/design": {
|
|
67
63
|
"types": "./axis-components/design/index.d.ts",
|
|
68
64
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-design.mjs"
|
|
@@ -71,14 +67,18 @@
|
|
|
71
67
|
"types": "./axis-components/dynamic-value/index.d.ts",
|
|
72
68
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-value.mjs"
|
|
73
69
|
},
|
|
74
|
-
"./axis-components/
|
|
75
|
-
"types": "./axis-components/
|
|
76
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
70
|
+
"./axis-components/dynamic-container": {
|
|
71
|
+
"types": "./axis-components/dynamic-container/index.d.ts",
|
|
72
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-container.mjs"
|
|
77
73
|
},
|
|
78
74
|
"./axis-components/editor": {
|
|
79
75
|
"types": "./axis-components/editor/index.d.ts",
|
|
80
76
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-editor.mjs"
|
|
81
77
|
},
|
|
78
|
+
"./axis-components/flex": {
|
|
79
|
+
"types": "./axis-components/flex/index.d.ts",
|
|
80
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-flex.mjs"
|
|
81
|
+
},
|
|
82
82
|
"./axis-components/form": {
|
|
83
83
|
"types": "./axis-components/form/index.d.ts",
|
|
84
84
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-form.mjs"
|
|
@@ -87,30 +87,26 @@
|
|
|
87
87
|
"types": "./axis-components/form-item/index.d.ts",
|
|
88
88
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-form-item.mjs"
|
|
89
89
|
},
|
|
90
|
-
"./axis-components/flex": {
|
|
91
|
-
"types": "./axis-components/flex/index.d.ts",
|
|
92
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-flex.mjs"
|
|
93
|
-
},
|
|
94
90
|
"./axis-components/icon": {
|
|
95
91
|
"types": "./axis-components/icon/index.d.ts",
|
|
96
92
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-icon.mjs"
|
|
97
93
|
},
|
|
98
|
-
"./axis-components/input": {
|
|
99
|
-
"types": "./axis-components/input/index.d.ts",
|
|
100
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-input.mjs"
|
|
101
|
-
},
|
|
102
94
|
"./axis-components/image": {
|
|
103
95
|
"types": "./axis-components/image/index.d.ts",
|
|
104
96
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-image.mjs"
|
|
105
97
|
},
|
|
106
|
-
"./axis-components/input
|
|
107
|
-
"types": "./axis-components/input
|
|
108
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-input
|
|
98
|
+
"./axis-components/input": {
|
|
99
|
+
"types": "./axis-components/input/index.d.ts",
|
|
100
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-input.mjs"
|
|
109
101
|
},
|
|
110
102
|
"./axis-components/input-icon": {
|
|
111
103
|
"types": "./axis-components/input-icon/index.d.ts",
|
|
112
104
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-icon.mjs"
|
|
113
105
|
},
|
|
106
|
+
"./axis-components/input-component": {
|
|
107
|
+
"types": "./axis-components/input-component/index.d.ts",
|
|
108
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-component.mjs"
|
|
109
|
+
},
|
|
114
110
|
"./axis-components/input-json": {
|
|
115
111
|
"types": "./axis-components/input-json/index.d.ts",
|
|
116
112
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-json.mjs"
|
|
@@ -119,14 +115,14 @@
|
|
|
119
115
|
"types": "./axis-components/input-number/index.d.ts",
|
|
120
116
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-number.mjs"
|
|
121
117
|
},
|
|
122
|
-
"./axis-components/radio": {
|
|
123
|
-
"types": "./axis-components/radio/index.d.ts",
|
|
124
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-radio.mjs"
|
|
125
|
-
},
|
|
126
118
|
"./axis-components/modal": {
|
|
127
119
|
"types": "./axis-components/modal/index.d.ts",
|
|
128
120
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-modal.mjs"
|
|
129
121
|
},
|
|
122
|
+
"./axis-components/radio": {
|
|
123
|
+
"types": "./axis-components/radio/index.d.ts",
|
|
124
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-radio.mjs"
|
|
125
|
+
},
|
|
130
126
|
"./axis-components/scope": {
|
|
131
127
|
"types": "./axis-components/scope/index.d.ts",
|
|
132
128
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-scope.mjs"
|
|
@@ -143,26 +139,30 @@
|
|
|
143
139
|
"types": "./axis-components/splitter/index.d.ts",
|
|
144
140
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-splitter.mjs"
|
|
145
141
|
},
|
|
146
|
-
"./axis-components/table": {
|
|
147
|
-
"types": "./axis-components/table/index.d.ts",
|
|
148
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-table.mjs"
|
|
142
|
+
"./axis-components/edit-table": {
|
|
143
|
+
"types": "./axis-components/edit-table/index.d.ts",
|
|
144
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-edit-table.mjs"
|
|
149
145
|
},
|
|
150
146
|
"./axis-components/steps": {
|
|
151
147
|
"types": "./axis-components/steps/index.d.ts",
|
|
152
148
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-steps.mjs"
|
|
153
149
|
},
|
|
150
|
+
"./axis-components/switch": {
|
|
151
|
+
"types": "./axis-components/switch/index.d.ts",
|
|
152
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-switch.mjs"
|
|
153
|
+
},
|
|
154
154
|
"./axis-components/text": {
|
|
155
155
|
"types": "./axis-components/text/index.d.ts",
|
|
156
156
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-text.mjs"
|
|
157
157
|
},
|
|
158
|
+
"./axis-components/table": {
|
|
159
|
+
"types": "./axis-components/table/index.d.ts",
|
|
160
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-table.mjs"
|
|
161
|
+
},
|
|
158
162
|
"./axis-components/tabs": {
|
|
159
163
|
"types": "./axis-components/tabs/index.d.ts",
|
|
160
164
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-tabs.mjs"
|
|
161
165
|
},
|
|
162
|
-
"./axis-components/textarea": {
|
|
163
|
-
"types": "./axis-components/textarea/index.d.ts",
|
|
164
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-textarea.mjs"
|
|
165
|
-
},
|
|
166
166
|
"./axis-components/tree-selector": {
|
|
167
167
|
"types": "./axis-components/tree-selector/index.d.ts",
|
|
168
168
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-tree-selector.mjs"
|
|
@@ -179,33 +179,37 @@
|
|
|
179
179
|
"types": "./axis-components/button/design/index.d.ts",
|
|
180
180
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-button-design.mjs"
|
|
181
181
|
},
|
|
182
|
+
"./axis-components/date-picker/design": {
|
|
183
|
+
"types": "./axis-components/date-picker/design/index.d.ts",
|
|
184
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-date-picker-design.mjs"
|
|
185
|
+
},
|
|
182
186
|
"./axis-components/color-picker/design": {
|
|
183
187
|
"types": "./axis-components/color-picker/design/index.d.ts",
|
|
184
188
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-color-picker-design.mjs"
|
|
185
189
|
},
|
|
186
|
-
"./axis-components/
|
|
187
|
-
"types": "./axis-components/
|
|
188
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
189
|
-
},
|
|
190
|
-
"./axis-components/dynamic-container/design": {
|
|
191
|
-
"types": "./axis-components/dynamic-container/design/index.d.ts",
|
|
192
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-container-design.mjs"
|
|
193
|
-
},
|
|
194
|
-
"./axis-components/date-picker/design": {
|
|
195
|
-
"types": "./axis-components/date-picker/design/index.d.ts",
|
|
196
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-date-picker-design.mjs"
|
|
190
|
+
"./axis-components/textarea": {
|
|
191
|
+
"types": "./axis-components/textarea/index.d.ts",
|
|
192
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-textarea.mjs"
|
|
197
193
|
},
|
|
198
194
|
"./axis-components/design/design": {
|
|
199
195
|
"types": "./axis-components/design/design/index.d.ts",
|
|
200
196
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-design-design.mjs"
|
|
201
197
|
},
|
|
198
|
+
"./axis-components/desc/design": {
|
|
199
|
+
"types": "./axis-components/desc/design/index.d.ts",
|
|
200
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-desc-design.mjs"
|
|
201
|
+
},
|
|
202
202
|
"./axis-components/dynamic-value/design": {
|
|
203
203
|
"types": "./axis-components/dynamic-value/design/index.d.ts",
|
|
204
204
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-value-design.mjs"
|
|
205
205
|
},
|
|
206
|
-
"./axis-components/
|
|
207
|
-
"types": "./axis-components/
|
|
208
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
206
|
+
"./axis-components/dynamic-container/design": {
|
|
207
|
+
"types": "./axis-components/dynamic-container/design/index.d.ts",
|
|
208
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-dynamic-container-design.mjs"
|
|
209
|
+
},
|
|
210
|
+
"./axis-components/flex/design": {
|
|
211
|
+
"types": "./axis-components/flex/design/index.d.ts",
|
|
212
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-flex-design.mjs"
|
|
209
213
|
},
|
|
210
214
|
"./axis-components/editor/design": {
|
|
211
215
|
"types": "./axis-components/editor/design/index.d.ts",
|
|
@@ -215,26 +219,26 @@
|
|
|
215
219
|
"types": "./axis-components/form/design/index.d.ts",
|
|
216
220
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-form-design.mjs"
|
|
217
221
|
},
|
|
222
|
+
"./axis-components/icon/design": {
|
|
223
|
+
"types": "./axis-components/icon/design/index.d.ts",
|
|
224
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-icon-design.mjs"
|
|
225
|
+
},
|
|
218
226
|
"./axis-components/form-item/design": {
|
|
219
227
|
"types": "./axis-components/form-item/design/index.d.ts",
|
|
220
228
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-form-item-design.mjs"
|
|
221
229
|
},
|
|
222
|
-
"./axis-components/
|
|
223
|
-
"types": "./axis-components/
|
|
224
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
230
|
+
"./axis-components/image/design": {
|
|
231
|
+
"types": "./axis-components/image/design/index.d.ts",
|
|
232
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-image-design.mjs"
|
|
225
233
|
},
|
|
226
|
-
"./axis-components/
|
|
227
|
-
"types": "./axis-components/
|
|
228
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
234
|
+
"./axis-components/input-component/design": {
|
|
235
|
+
"types": "./axis-components/input-component/design/index.d.ts",
|
|
236
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-component-design.mjs"
|
|
229
237
|
},
|
|
230
238
|
"./axis-components/input/design": {
|
|
231
239
|
"types": "./axis-components/input/design/index.d.ts",
|
|
232
240
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-design.mjs"
|
|
233
241
|
},
|
|
234
|
-
"./axis-components/image/design": {
|
|
235
|
-
"types": "./axis-components/image/design/index.d.ts",
|
|
236
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-image-design.mjs"
|
|
237
|
-
},
|
|
238
242
|
"./axis-components/input-icon/design": {
|
|
239
243
|
"types": "./axis-components/input-icon/design/index.d.ts",
|
|
240
244
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-icon-design.mjs"
|
|
@@ -243,65 +247,69 @@
|
|
|
243
247
|
"types": "./axis-components/input-json/design/index.d.ts",
|
|
244
248
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-json-design.mjs"
|
|
245
249
|
},
|
|
246
|
-
"./axis-components/
|
|
247
|
-
"types": "./axis-components/
|
|
248
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
250
|
+
"./axis-components/modal/design": {
|
|
251
|
+
"types": "./axis-components/modal/design/index.d.ts",
|
|
252
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-modal-design.mjs"
|
|
249
253
|
},
|
|
250
254
|
"./axis-components/input-number/design": {
|
|
251
255
|
"types": "./axis-components/input-number/design/index.d.ts",
|
|
252
256
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-input-number-design.mjs"
|
|
253
257
|
},
|
|
254
|
-
"./axis-components/scope/design": {
|
|
255
|
-
"types": "./axis-components/scope/design/index.d.ts",
|
|
256
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-scope-design.mjs"
|
|
257
|
-
},
|
|
258
258
|
"./axis-components/radio/design": {
|
|
259
259
|
"types": "./axis-components/radio/design/index.d.ts",
|
|
260
260
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-radio-design.mjs"
|
|
261
261
|
},
|
|
262
|
-
"./axis-components/
|
|
263
|
-
"types": "./axis-components/
|
|
264
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
262
|
+
"./axis-components/scope/design": {
|
|
263
|
+
"types": "./axis-components/scope/design/index.d.ts",
|
|
264
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-scope-design.mjs"
|
|
265
265
|
},
|
|
266
266
|
"./axis-components/select/design": {
|
|
267
267
|
"types": "./axis-components/select/design/index.d.ts",
|
|
268
268
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-select-design.mjs"
|
|
269
269
|
},
|
|
270
|
-
"./axis-components/table/design": {
|
|
271
|
-
"types": "./axis-components/table/design/index.d.ts",
|
|
272
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-table-design.mjs"
|
|
273
|
-
},
|
|
274
270
|
"./axis-components/single-selector/design": {
|
|
275
271
|
"types": "./axis-components/single-selector/design/index.d.ts",
|
|
276
272
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-single-selector-design.mjs"
|
|
277
273
|
},
|
|
278
|
-
"./axis-components/
|
|
279
|
-
"types": "./axis-components/
|
|
280
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
274
|
+
"./axis-components/edit-table/design": {
|
|
275
|
+
"types": "./axis-components/edit-table/design/index.d.ts",
|
|
276
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-edit-table-design.mjs"
|
|
281
277
|
},
|
|
282
278
|
"./axis-components/steps/design": {
|
|
283
279
|
"types": "./axis-components/steps/design/index.d.ts",
|
|
284
280
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-steps-design.mjs"
|
|
285
281
|
},
|
|
282
|
+
"./axis-components/switch/design": {
|
|
283
|
+
"types": "./axis-components/switch/design/index.d.ts",
|
|
284
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-switch-design.mjs"
|
|
285
|
+
},
|
|
286
286
|
"./axis-components/text/design": {
|
|
287
287
|
"types": "./axis-components/text/design/index.d.ts",
|
|
288
288
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-text-design.mjs"
|
|
289
289
|
},
|
|
290
|
+
"./axis-components/splitter/design": {
|
|
291
|
+
"types": "./axis-components/splitter/design/index.d.ts",
|
|
292
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-splitter-design.mjs"
|
|
293
|
+
},
|
|
294
|
+
"./axis-components/table/design": {
|
|
295
|
+
"types": "./axis-components/table/design/index.d.ts",
|
|
296
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-table-design.mjs"
|
|
297
|
+
},
|
|
290
298
|
"./axis-components/tabs/design": {
|
|
291
299
|
"types": "./axis-components/tabs/design/index.d.ts",
|
|
292
300
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-tabs-design.mjs"
|
|
293
301
|
},
|
|
294
|
-
"./axis-components/
|
|
295
|
-
"types": "./axis-components/
|
|
296
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
302
|
+
"./axis-components/tree-selector/design": {
|
|
303
|
+
"types": "./axis-components/tree-selector/design/index.d.ts",
|
|
304
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-tree-selector-design.mjs"
|
|
297
305
|
},
|
|
298
306
|
"./axis-components/upload/design": {
|
|
299
307
|
"types": "./axis-components/upload/design/index.d.ts",
|
|
300
308
|
"default": "./fesm2022/ngx-axis-appforge-axis-components-upload-design.mjs"
|
|
301
309
|
},
|
|
302
|
-
"./axis-components/
|
|
303
|
-
"types": "./axis-components/
|
|
304
|
-
"default": "./fesm2022/ngx-axis-appforge-axis-components-
|
|
310
|
+
"./axis-components/textarea/design": {
|
|
311
|
+
"types": "./axis-components/textarea/design/index.d.ts",
|
|
312
|
+
"default": "./fesm2022/ngx-axis-appforge-axis-components-textarea-design.mjs"
|
|
305
313
|
}
|
|
306
314
|
},
|
|
307
315
|
"module": "fesm2022/ngx-axis-appforge.mjs",
|