@dignite-ng/expand.cms 3.0.0-rc.20 → 3.0.0-rc.21
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/esm2022/lib/cms.module.mjs +2 -3
- package/esm2022/lib/components/admin/entries/create-or-edit-entries.component.mjs +11 -11
- package/fesm2022/dignite-ng-expand.cms.mjs +10 -11
- package/fesm2022/dignite-ng-expand.cms.mjs.map +1 -1
- package/lib/components/admin/entries/create-or-edit-entries.component.d.ts +4 -4
- package/package.json +6 -1
|
@@ -28,14 +28,14 @@ export declare class CreateOrEditEntriesComponent {
|
|
|
28
28
|
entryVersionId: any;
|
|
29
29
|
/**版本列表 */
|
|
30
30
|
AllVersionsList: any[];
|
|
31
|
-
isEdit: boolean;
|
|
32
|
-
sectionId: string;
|
|
33
|
-
entryTypeId: string;
|
|
31
|
+
isEdit: boolean | any;
|
|
32
|
+
sectionId: string | any;
|
|
33
|
+
entryTypeId: string | any;
|
|
34
34
|
set select(v: any);
|
|
35
35
|
formEntity: FormGroup | undefined;
|
|
36
36
|
set entity(value: FormGroup | undefined);
|
|
37
37
|
/**是否加载完成 */
|
|
38
|
-
isLoad: boolean;
|
|
38
|
+
isLoad: boolean | any;
|
|
39
39
|
/**语言控件 */
|
|
40
40
|
get cultureInput(): FormControl;
|
|
41
41
|
get slugInput(): FormControl;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dignite-ng/expand.cms",
|
|
3
|
-
"version": "3.0.0-rc.
|
|
3
|
+
"version": "3.0.0-rc.21",
|
|
4
4
|
"homepage": "https://abp.io",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -8,6 +8,11 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"pinyin-pro": "^3.26.0",
|
|
11
|
+
"@dignite-ng/expand.core": "~3.0.0-rc.21",
|
|
12
|
+
"@dignite-ng/expand.dynamic-form": "~3.0.0-rc.21",
|
|
13
|
+
"@dignite-ng/expand.regionalization-management": "~3.0.0-rc.21",
|
|
14
|
+
"@dignite-ng/expand.ck-editor": "~3.0.0-rc.21",
|
|
15
|
+
"@dignite-ng/expand.file-explorer": "~3.0.0-rc.21",
|
|
11
16
|
"tslib": "^2.0.0"
|
|
12
17
|
},
|
|
13
18
|
"publishConfig": {
|