@updevs/components 1.0.0-alpha.36 → 1.0.0-alpha.38
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/layout/layouts/vertical-sidebar-layout/vertical-sidebar-layout.module.mjs +5 -10
- package/esm2022/layout/partials/footer/footer.component.mjs +6 -9
- package/esm2022/layout/partials/footer/public-api.mjs +1 -2
- package/esm2022/layout/partials/sidebar/sidebar.component.mjs +14 -6
- package/esm2022/table/directives/table-column.directive.mjs +2 -1
- package/esm2022/table/table.component.mjs +32 -2
- package/fesm2022/updevs-components-layout.mjs +22 -31
- package/fesm2022/updevs-components-layout.mjs.map +1 -1
- package/fesm2022/updevs-components-table.mjs +25 -1
- package/fesm2022/updevs-components-table.mjs.map +1 -1
- package/layout/layouts/vertical-sidebar-layout/vertical-sidebar-layout.module.d.ts +11 -12
- package/layout/partials/footer/footer.component.d.ts +4 -4
- package/layout/partials/footer/public-api.d.ts +0 -1
- package/layout/partials/sidebar/sidebar.component.d.ts +1 -0
- package/package.json +24 -24
- package/table/table.component.d.ts +1 -0
- package/esm2022/layout/partials/footer/footer-copyright.directive.mjs +0 -13
- package/layout/partials/footer/footer-copyright.directive.d.ts +0 -5
|
@@ -3,20 +3,19 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
import * as i1 from "./vertical-sidebar-layout.component";
|
|
4
4
|
import * as i2 from "../../partials/sidebar/sidebar.component";
|
|
5
5
|
import * as i3 from "../../partials/page-header/page-header.component";
|
|
6
|
-
import * as i4 from "
|
|
7
|
-
import * as i5 from "@angular/
|
|
8
|
-
import * as i6 from "@
|
|
9
|
-
import * as i7 from "@
|
|
10
|
-
import * as i8 from "@updevs/
|
|
11
|
-
import * as i9 from "@updevs/
|
|
12
|
-
import * as i10 from "@updevs/components/
|
|
13
|
-
import * as i11 from "@updevs/components/
|
|
14
|
-
import * as i12 from "
|
|
15
|
-
import * as i13 from "../../partials/
|
|
16
|
-
import * as i14 from "../../partials/header/header.module";
|
|
6
|
+
import * as i4 from "@angular/common";
|
|
7
|
+
import * as i5 from "@angular/router";
|
|
8
|
+
import * as i6 from "@jsverse/transloco";
|
|
9
|
+
import * as i7 from "@updevs/icons";
|
|
10
|
+
import * as i8 from "@updevs/sdk/layout";
|
|
11
|
+
import * as i9 from "@updevs/components/button";
|
|
12
|
+
import * as i10 from "@updevs/components/link";
|
|
13
|
+
import * as i11 from "@updevs/components/dropdown";
|
|
14
|
+
import * as i12 from "../../partials/footer/footer.module";
|
|
15
|
+
import * as i13 from "../../partials/header/header.module";
|
|
17
16
|
export declare class VerticalSidebarLayoutModule {
|
|
18
17
|
constructor(translocoService: TranslocoService);
|
|
19
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<VerticalSidebarLayoutModule, never>;
|
|
20
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<VerticalSidebarLayoutModule, [typeof i1.VerticalSidebarLayoutComponent, typeof i2.SidebarComponent, typeof i3.PageHeaderComponent
|
|
19
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<VerticalSidebarLayoutModule, [typeof i1.VerticalSidebarLayoutComponent, typeof i2.SidebarComponent, typeof i3.PageHeaderComponent], [typeof i4.CommonModule, typeof i5.RouterModule, typeof i6.TranslocoModule, typeof i7.UpdIconsModule, typeof i8.UpdCoreLayoutModule, typeof i9.UpdButtonModule, typeof i10.UpdLinkModule, typeof i11.UpdDropdownModule, typeof i12.FooterModule, typeof i13.HeaderModule], [typeof i1.VerticalSidebarLayoutComponent, typeof i2.SidebarComponent, typeof i3.PageHeaderComponent]>;
|
|
21
20
|
static ɵinj: i0.ɵɵInjectorDeclaration<VerticalSidebarLayoutModule>;
|
|
22
21
|
}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { LinkModel } from '@updevs/sdk/core';
|
|
3
|
-
import { BaseComponent } from '@updevs/sdk/layout';
|
|
3
|
+
import { BaseComponent, LayoutService } from '@updevs/sdk/layout';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class FooterComponent extends BaseComponent implements OnInit, OnChanges {
|
|
6
6
|
wrapperClasses: string;
|
|
7
|
-
footerCopyrightTemplate?: TemplateRef<any>;
|
|
8
7
|
/**
|
|
9
8
|
* Whether the footer will always be shown.
|
|
10
9
|
*/
|
|
@@ -25,10 +24,11 @@ export declare class FooterComponent extends BaseComponent implements OnInit, On
|
|
|
25
24
|
* Version of the application.
|
|
26
25
|
*/
|
|
27
26
|
version?: string;
|
|
27
|
+
readonly layoutService: LayoutService;
|
|
28
28
|
private baseWrapperClasses;
|
|
29
29
|
ngOnInit(): void;
|
|
30
30
|
ngOnChanges(changes: SimpleChanges): void;
|
|
31
31
|
private updateWrapperClasses;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "upd-footer", never, {}, {},
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "upd-footer", never, {}, {}, never, never, false, never>;
|
|
34
34
|
}
|
|
@@ -8,6 +8,7 @@ export declare class SidebarComponent extends BaseComponent implements OnInit {
|
|
|
8
8
|
theme: string;
|
|
9
9
|
menuItems: RouteDataModel[];
|
|
10
10
|
readonly textService: TextService;
|
|
11
|
+
private currentRoute;
|
|
11
12
|
private readonly router;
|
|
12
13
|
private readonly menuService;
|
|
13
14
|
ngOnInit(): void;
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@updevs/components",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.38",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^18.0.1",
|
|
6
6
|
"@angular/core": "^18.0.1",
|
|
7
7
|
"@jsverse/transloco": "^7.4.2",
|
|
8
8
|
"@jsverse/transloco-messageformat": "^7.0.1",
|
|
9
9
|
"@updevs/icons": "^1.0.9",
|
|
10
|
-
"@updevs/sdk": "^1.0.0-alpha.
|
|
10
|
+
"@updevs/sdk": "^1.0.0-alpha.36"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"tslib": "^2.3.0"
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"esm": "./esm2022/badge/updevs-components-badge.mjs",
|
|
35
35
|
"default": "./fesm2022/updevs-components-badge.mjs"
|
|
36
36
|
},
|
|
37
|
-
"./
|
|
38
|
-
"types": "./
|
|
39
|
-
"esm2022": "./esm2022/
|
|
40
|
-
"esm": "./esm2022/
|
|
41
|
-
"default": "./fesm2022/updevs-components-
|
|
37
|
+
"./card": {
|
|
38
|
+
"types": "./card/index.d.ts",
|
|
39
|
+
"esm2022": "./esm2022/card/updevs-components-card.mjs",
|
|
40
|
+
"esm": "./esm2022/card/updevs-components-card.mjs",
|
|
41
|
+
"default": "./fesm2022/updevs-components-card.mjs"
|
|
42
42
|
},
|
|
43
43
|
"./button": {
|
|
44
44
|
"types": "./button/index.d.ts",
|
|
@@ -46,17 +46,11 @@
|
|
|
46
46
|
"esm": "./esm2022/button/updevs-components-button.mjs",
|
|
47
47
|
"default": "./fesm2022/updevs-components-button.mjs"
|
|
48
48
|
},
|
|
49
|
-
"./
|
|
50
|
-
"types": "./
|
|
51
|
-
"esm2022": "./esm2022/
|
|
52
|
-
"esm": "./esm2022/
|
|
53
|
-
"default": "./fesm2022/updevs-components-
|
|
54
|
-
},
|
|
55
|
-
"./card": {
|
|
56
|
-
"types": "./card/index.d.ts",
|
|
57
|
-
"esm2022": "./esm2022/card/updevs-components-card.mjs",
|
|
58
|
-
"esm": "./esm2022/card/updevs-components-card.mjs",
|
|
59
|
-
"default": "./fesm2022/updevs-components-card.mjs"
|
|
49
|
+
"./calendar": {
|
|
50
|
+
"types": "./calendar/index.d.ts",
|
|
51
|
+
"esm2022": "./esm2022/calendar/updevs-components-calendar.mjs",
|
|
52
|
+
"esm": "./esm2022/calendar/updevs-components-calendar.mjs",
|
|
53
|
+
"default": "./fesm2022/updevs-components-calendar.mjs"
|
|
60
54
|
},
|
|
61
55
|
"./drag-and-drop": {
|
|
62
56
|
"types": "./drag-and-drop/index.d.ts",
|
|
@@ -64,6 +58,12 @@
|
|
|
64
58
|
"esm": "./esm2022/drag-and-drop/updevs-components-drag-and-drop.mjs",
|
|
65
59
|
"default": "./fesm2022/updevs-components-drag-and-drop.mjs"
|
|
66
60
|
},
|
|
61
|
+
"./dropdown": {
|
|
62
|
+
"types": "./dropdown/index.d.ts",
|
|
63
|
+
"esm2022": "./esm2022/dropdown/updevs-components-dropdown.mjs",
|
|
64
|
+
"esm": "./esm2022/dropdown/updevs-components-dropdown.mjs",
|
|
65
|
+
"default": "./fesm2022/updevs-components-dropdown.mjs"
|
|
66
|
+
},
|
|
67
67
|
"./form": {
|
|
68
68
|
"types": "./form/index.d.ts",
|
|
69
69
|
"esm2022": "./esm2022/form/updevs-components-form.mjs",
|
|
@@ -154,17 +154,17 @@
|
|
|
154
154
|
"esm": "./esm2022/form-controls/select/updevs-components-form-controls-select.mjs",
|
|
155
155
|
"default": "./fesm2022/updevs-components-form-controls-select.mjs"
|
|
156
156
|
},
|
|
157
|
-
"./form-controls/textarea": {
|
|
158
|
-
"types": "./form-controls/textarea/index.d.ts",
|
|
159
|
-
"esm2022": "./esm2022/form-controls/textarea/updevs-components-form-controls-textarea.mjs",
|
|
160
|
-
"esm": "./esm2022/form-controls/textarea/updevs-components-form-controls-textarea.mjs",
|
|
161
|
-
"default": "./fesm2022/updevs-components-form-controls-textarea.mjs"
|
|
162
|
-
},
|
|
163
157
|
"./form-controls/time-picker": {
|
|
164
158
|
"types": "./form-controls/time-picker/index.d.ts",
|
|
165
159
|
"esm2022": "./esm2022/form-controls/time-picker/updevs-components-form-controls-time-picker.mjs",
|
|
166
160
|
"esm": "./esm2022/form-controls/time-picker/updevs-components-form-controls-time-picker.mjs",
|
|
167
161
|
"default": "./fesm2022/updevs-components-form-controls-time-picker.mjs"
|
|
162
|
+
},
|
|
163
|
+
"./form-controls/textarea": {
|
|
164
|
+
"types": "./form-controls/textarea/index.d.ts",
|
|
165
|
+
"esm2022": "./esm2022/form-controls/textarea/updevs-components-form-controls-textarea.mjs",
|
|
166
|
+
"esm": "./esm2022/form-controls/textarea/updevs-components-form-controls-textarea.mjs",
|
|
167
|
+
"default": "./fesm2022/updevs-components-form-controls-textarea.mjs"
|
|
168
168
|
}
|
|
169
169
|
}
|
|
170
170
|
}
|
|
@@ -70,6 +70,7 @@ export declare class TableComponent<T> extends BaseComponent implements OnInit {
|
|
|
70
70
|
reload(): void;
|
|
71
71
|
adaptCustomAction(btn: ButtonModel, item: T): ButtonModel;
|
|
72
72
|
private updateColumns;
|
|
73
|
+
private createColumnModel;
|
|
73
74
|
private getColumnByName;
|
|
74
75
|
private setupPreSelected;
|
|
75
76
|
private setupSearchResults;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { Directive } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class FooterCopyrightDirective {
|
|
4
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: FooterCopyrightDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.1.0", type: FooterCopyrightDirective, selector: "[updFooterCopyright]", ngImport: i0 }); }
|
|
6
|
-
}
|
|
7
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.0", ngImport: i0, type: FooterCopyrightDirective, decorators: [{
|
|
8
|
-
type: Directive,
|
|
9
|
-
args: [{
|
|
10
|
-
selector: '[updFooterCopyright]'
|
|
11
|
-
}]
|
|
12
|
-
}] });
|
|
13
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9vdGVyLWNvcHlyaWdodC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbGF5b3V0L3NyYy9wYXJ0aWFscy9mb290ZXIvZm9vdGVyLWNvcHlyaWdodC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFLMUMsTUFBTSxPQUFPLHdCQUF3Qjs4R0FBeEIsd0JBQXdCO2tHQUF4Qix3QkFBd0I7OzJGQUF4Qix3QkFBd0I7a0JBSHBDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLHNCQUFzQjtpQkFDbkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbdXBkRm9vdGVyQ29weXJpZ2h0XSdcbn0pXG5leHBvcnQgY2xhc3MgRm9vdGVyQ29weXJpZ2h0RGlyZWN0aXZlIHt9XG4iXX0=
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class FooterCopyrightDirective {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FooterCopyrightDirective, never>;
|
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FooterCopyrightDirective, "[updFooterCopyright]", never, {}, {}, never, never, false, never>;
|
|
5
|
-
}
|