@ldquocc/dynamic-form 0.0.1 → 0.0.3
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/package.json
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ldquocc/dynamic-form",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^19.2.0",
|
|
6
|
-
"@angular/core": "^19.2.0"
|
|
6
|
+
"@angular/core": "^19.2.0",
|
|
7
|
+
"@angular/forms": "^19.2.0",
|
|
8
|
+
"@angular/router": "^19.2.0",
|
|
9
|
+
"@ngx-translate/core": "^16.0.4",
|
|
10
|
+
"ng-zorro-antd": "^19.2.1",
|
|
11
|
+
"ngx-currency": "^19.0.0",
|
|
12
|
+
"ngx-toastr": "^19.0.0",
|
|
13
|
+
"rxjs": "~7.8.0"
|
|
7
14
|
},
|
|
8
15
|
"dependencies": {
|
|
9
|
-
"tslib": "^2.3.0"
|
|
16
|
+
"tslib": "^2.3.0",
|
|
17
|
+
"date-fns": "^2.30.0",
|
|
18
|
+
"lodash-es": "^4.17.21"
|
|
10
19
|
},
|
|
11
20
|
"sideEffects": false,
|
|
12
21
|
"module": "fesm2022/ldquocc-dynamic-form.mjs",
|
package/public-api.d.ts
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
15
|
-
export * from
|
|
16
|
-
export * from
|
|
17
|
-
export * from
|
|
18
|
-
export * from
|
|
19
|
-
export * from
|
|
20
|
-
export * from
|
|
21
|
-
export * from
|
|
22
|
-
export * from
|
|
23
|
-
export * from
|
|
24
|
-
export * from
|
|
25
|
-
export * from
|
|
26
|
-
export * from
|
|
27
|
-
export * from
|
|
28
|
-
export * from
|
|
1
|
+
export * from "./lib/dynamic-form.component";
|
|
2
|
+
export * from "./lib/shared/config/dynamic-form.config";
|
|
3
|
+
export * from "./lib/shared/services/form-config.service";
|
|
4
|
+
export * from "./lib/shared/services/dynamic-form.service";
|
|
5
|
+
export * from "./lib/shared/services/form-data.service";
|
|
6
|
+
export * from "./lib/shared/enums/controls/index";
|
|
7
|
+
export * from "./lib/shared/enums/fields/index";
|
|
8
|
+
export * from "./lib/shared/enums/validators/index";
|
|
9
|
+
export * from "./lib/shared/enums/common/index";
|
|
10
|
+
export * from "./lib/shared/enums/form/index";
|
|
11
|
+
export * from "./lib/shared/models/common/index";
|
|
12
|
+
export * from "./lib/shared/models/common/table-models";
|
|
13
|
+
export * from "./lib/shared/models/fields/field.model";
|
|
14
|
+
export * from "./lib/shared/models/fields/field-grid.model";
|
|
15
|
+
export * from "./lib/shared/models/fields/field-group.model";
|
|
16
|
+
export * from "./lib/shared/models/fields/index.model";
|
|
17
|
+
export * from "./lib/shared/models/fields/input/index";
|
|
18
|
+
export * from "./lib/shared/models/fields/textarea/textarea-field.model";
|
|
19
|
+
export * from "./lib/shared/models/fields/date/index";
|
|
20
|
+
export * from "./lib/shared/models/fields/select/select-base-field.model";
|
|
21
|
+
export * from "./lib/shared/models/fields/select/single-select-field.model";
|
|
22
|
+
export * from "./lib/shared/models/fields/select/multi-select-field.model";
|
|
23
|
+
export * from "./lib/shared/models/fields/select/tree-select-field.model";
|
|
24
|
+
export * from "./lib/shared/models/fields/upload/index";
|
|
25
|
+
export * from "./lib/shared/models/fields/radio/radio-base-field.model";
|
|
26
|
+
export * from "./lib/shared/models/fields/radio/custom/reminder-type-radio/reminder-type-radio-field.model";
|
|
27
|
+
export * from "./lib/shared/models/fields/radio/custom/reminder-type-radio/reminder-value.model";
|
|
28
|
+
export * from "./lib/shared/models/fields/radio/custom/reminder-type-radio/reminder-option.model";
|
|
29
|
+
export * from "./lib/shared/models/fields/radio/custom/reminder-type-radio/reminder-type.model";
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.w-100 {
|
|
2
|
+
width: 100%;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.h-100 {
|
|
6
|
+
height: 100%;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.flex {
|
|
10
|
+
display: flex;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.justify-center {
|
|
14
|
+
justify-content: center;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.justify-between {
|
|
18
|
+
justify-content: space-between;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.items-center {
|
|
22
|
+
align-items: center;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.mb-0 {
|
|
26
|
+
margin-bottom: 0 !important;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.break-work {
|
|
30
|
+
word-break: break-word;
|
|
31
|
+
}
|
|
Binary file
|