ps-toolkit-ui 0.0.20 → 0.0.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/bundles/ps-toolkit-ui.umd.js +16 -12
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/enum.class.js +9 -8
- package/esm2015/lib/components/sidebar/sidebar.component.js +9 -6
- package/fesm2015/ps-toolkit-ui.js +15 -12
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/enum.class.d.ts +8 -7
- package/lib/components/sidebar/sidebar.component.d.ts +1 -0
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -120,13 +120,14 @@ export declare enum ResultStatusEnum {
|
|
|
120
120
|
}
|
|
121
121
|
export declare enum PermissionTypeEnum {
|
|
122
122
|
Form = -1,
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
123
|
+
Item = 0,
|
|
124
|
+
Access = 1,
|
|
125
|
+
OptionLink = 2,
|
|
126
|
+
OptionLinkNewTab = 3,
|
|
127
|
+
OptionReport = 4,
|
|
128
|
+
OptionFile = 5,
|
|
129
|
+
OptionModal = 6,
|
|
130
|
+
OptionConfirm = 7
|
|
130
131
|
}
|
|
131
132
|
export declare enum VehicleType {
|
|
132
133
|
Car = 1,
|
|
@@ -14,5 +14,6 @@ export declare class SidebarComponent implements OnInit {
|
|
|
14
14
|
constructor(config: PsToolkitUiConfigService, router: Router);
|
|
15
15
|
setActive(): void;
|
|
16
16
|
ngOnInit(): void;
|
|
17
|
+
getSidebar(parentId?: string): SidebarClass[];
|
|
17
18
|
getSidebarActive(item: SidebarClass[], active: any): SidebarClass;
|
|
18
19
|
}
|