@dignite-ng/expand.cms 3.0.0-rc.22 → 3.0.0-rc.23
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/components/admin/entries/entries.component.mjs +10 -4
- package/esm2022/lib/components/admin/fields/fields.component.mjs +10 -2
- package/esm2022/lib/components/admin/sections/sections.component.mjs +10 -2
- package/fesm2022/dignite-ng-expand.cms.mjs +27 -5
- package/fesm2022/dignite-ng-expand.cms.mjs.map +1 -1
- package/lib/components/admin/entries/entries.component.d.ts +1 -0
- package/lib/components/admin/fields/fields.component.d.ts +1 -0
- package/lib/components/admin/sections/sections.component.d.ts +2 -1
- package/package.json +6 -6
|
@@ -25,12 +25,13 @@ export declare class SectionsComponent implements OnInit {
|
|
|
25
25
|
data: PagedResultDto<SectionDto>;
|
|
26
26
|
filters: GetSectionsInput;
|
|
27
27
|
hookToQuery(): void;
|
|
28
|
+
scrollToTop(): void;
|
|
28
29
|
ngOnInit(): Promise<void>;
|
|
29
30
|
siteIdChange(): void;
|
|
30
31
|
/**表单 */
|
|
31
32
|
formEntity: FormGroup | undefined;
|
|
32
33
|
/**弹窗状态 */
|
|
33
|
-
isVisibleOpen: boolean;
|
|
34
|
+
isVisibleOpen: boolean | any;
|
|
34
35
|
/**弹窗回调 */
|
|
35
36
|
visibleChange(event: any): void;
|
|
36
37
|
/**创建 */
|
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.23",
|
|
4
4
|
"homepage": "https://abp.io",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"pinyin-pro": "^3.26.0",
|
|
11
|
-
"@dignite-ng/expand.core": "~3.0.0-rc.
|
|
12
|
-
"@dignite-ng/expand.dynamic-form": "~3.0.0-rc.
|
|
13
|
-
"@dignite-ng/expand.regionalization-management": "~3.0.0-rc.
|
|
14
|
-
"@dignite-ng/expand.ck-editor": "~3.0.0-rc.
|
|
15
|
-
"@dignite-ng/expand.file-explorer": "~3.0.0-rc.
|
|
11
|
+
"@dignite-ng/expand.core": "~3.0.0-rc.23",
|
|
12
|
+
"@dignite-ng/expand.dynamic-form": "~3.0.0-rc.23",
|
|
13
|
+
"@dignite-ng/expand.regionalization-management": "~3.0.0-rc.23",
|
|
14
|
+
"@dignite-ng/expand.ck-editor": "~3.0.0-rc.23",
|
|
15
|
+
"@dignite-ng/expand.file-explorer": "~3.0.0-rc.23",
|
|
16
16
|
"tslib": "^2.0.0"
|
|
17
17
|
},
|
|
18
18
|
"publishConfig": {
|