@indigina/ui-kit 1.1.13 → 1.1.15
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/assets/icons/chart.svg +3 -0
- package/assets/icons/clip.svg +3 -0
- package/assets/icons/gear-1.svg +5 -0
- package/assets/icons/house.svg +5 -0
- package/assets/icons/mail.svg +5 -0
- package/assets/icons/menu.svg +3 -0
- package/assets/icons/message.svg +5 -0
- package/assets/icons/reload.svg +3 -0
- package/assets/icons/window-restore.svg +3 -0
- package/esm2022/lib/components/kit-autocomplete/kit-autocomplete.component.mjs +2 -2
- package/esm2022/lib/components/kit-button/kit-button.component.mjs +2 -2
- package/esm2022/lib/components/kit-dropdown/kit-dropdown.component.mjs +2 -2
- package/esm2022/lib/components/kit-navigation-menu/kit-navigation-menu.component.mjs +53 -0
- package/esm2022/lib/components/kit-navigation-menu/kit-navigation-menu.model.mjs +2 -0
- package/esm2022/lib/components/kit-navigation-menu/kit-navigation-menu.module.mjs +36 -0
- package/esm2022/lib/components/kit-numeric-textbox/kit-numeric-textbox.component.mjs +1 -1
- package/esm2022/lib/components/kit-svg-icon/kit-svg-icon.const.mjs +10 -1
- package/esm2022/lib/components/kit-svg-sprite/kit-svg-sprite.component.mjs +3 -3
- package/esm2022/lib/components/kit-switch/kit-switch.component.mjs +2 -2
- package/esm2022/lib/components/kit-text-label/kit-text-label.component.mjs +2 -2
- package/esm2022/lib/components/kit-units-textbox/kit-units-textbox.component.mjs +1 -1
- package/esm2022/public-api.mjs +4 -1
- package/fesm2022/indigina-ui-kit.mjs +100 -17
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-navigation-menu/kit-navigation-menu.component.d.ts +24 -0
- package/lib/components/kit-navigation-menu/kit-navigation-menu.model.d.ts +9 -0
- package/lib/components/kit-navigation-menu/kit-navigation-menu.module.d.ts +11 -0
- package/lib/components/kit-svg-icon/kit-svg-icon.const.d.ts +10 -1
- package/package.json +20 -20
- package/public-api.d.ts +3 -0
- package/styles/styles.scss +2 -0
- package/styles/theming.scss +1 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { KitNavigationMenuItem } from './kit-navigation-menu.model';
|
|
2
|
+
import { KitSvgIcon } from '../kit-svg-icon/kit-svg-icon.const';
|
|
3
|
+
import { Router } from '@angular/router';
|
|
4
|
+
import { PanelBarExpandMode } from '@progress/kendo-angular-layout';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class KitNavigationMenuComponent {
|
|
7
|
+
private router;
|
|
8
|
+
/**
|
|
9
|
+
* An items list which is going to be rendered as menu items
|
|
10
|
+
*/
|
|
11
|
+
items: KitNavigationMenuItem[];
|
|
12
|
+
/**
|
|
13
|
+
* Defines whether the component will have an animation when collapsing/expanding the menu
|
|
14
|
+
*/
|
|
15
|
+
animate: boolean;
|
|
16
|
+
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
17
|
+
readonly PanelBarExpandMode: typeof PanelBarExpandMode;
|
|
18
|
+
constructor(router: Router);
|
|
19
|
+
ngOnInit(): void;
|
|
20
|
+
private setExpandedStateOnRouterChange;
|
|
21
|
+
private setExpandedState;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitNavigationMenuComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitNavigationMenuComponent, "kit-navigation-menu", never, { "items": { "alias": "items"; "required": false; }; "animate": { "alias": "animate"; "required": false; }; }, {}, never, never, false, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kit-navigation-menu.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@progress/kendo-angular-layout";
|
|
5
|
+
import * as i4 from "../kit-svg-icon/kit-svg-icon.module";
|
|
6
|
+
import * as i5 from "@angular/router";
|
|
7
|
+
export declare class KitNavigationMenuModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitNavigationMenuModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KitNavigationMenuModule, [typeof i1.KitNavigationMenuComponent], [typeof i2.CommonModule, typeof i3.PanelBarModule, typeof i4.KitSvgIconModule, typeof i5.RouterModule], [typeof i1.KitNavigationMenuComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KitNavigationMenuModule>;
|
|
11
|
+
}
|
|
@@ -67,5 +67,14 @@ export declare enum KitSvgIcon {
|
|
|
67
67
|
SHIP = "ship",
|
|
68
68
|
CLOCK = "clock",
|
|
69
69
|
FACTORY = "factory",
|
|
70
|
-
COPY = "copy"
|
|
70
|
+
COPY = "copy",
|
|
71
|
+
GEAR_1 = "gear-1",
|
|
72
|
+
HOUSE = "house",
|
|
73
|
+
CHART = "chart",
|
|
74
|
+
CLIP = "clip",
|
|
75
|
+
MAIL = "mail",
|
|
76
|
+
MENU = "menu",
|
|
77
|
+
MESSAGE = "message",
|
|
78
|
+
RELOAD = "reload",
|
|
79
|
+
WINDOW_RESTORE = "window-restore"
|
|
71
80
|
}
|
package/package.json
CHANGED
|
@@ -7,31 +7,31 @@
|
|
|
7
7
|
"components",
|
|
8
8
|
"shared"
|
|
9
9
|
],
|
|
10
|
-
"version": "1.1.
|
|
10
|
+
"version": "1.1.15",
|
|
11
11
|
"peerDependencies": {
|
|
12
12
|
"@angular/common": "^17.0.7",
|
|
13
13
|
"@angular/core": "^17.0.7"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@progress/kendo-angular-buttons": "
|
|
17
|
-
"@progress/kendo-angular-common": "
|
|
18
|
-
"@progress/kendo-angular-dateinputs": "
|
|
19
|
-
"@progress/kendo-angular-dropdowns": "
|
|
20
|
-
"@progress/kendo-angular-icons": "
|
|
21
|
-
"@progress/kendo-angular-indicators": "
|
|
22
|
-
"@progress/kendo-angular-inputs": "
|
|
23
|
-
"@progress/kendo-angular-intl": "
|
|
24
|
-
"@progress/kendo-angular-l10n": "
|
|
25
|
-
"@progress/kendo-angular-label": "
|
|
26
|
-
"@progress/kendo-angular-layout": "
|
|
27
|
-
"@progress/kendo-angular-menu": "
|
|
28
|
-
"@progress/kendo-angular-navigation": "
|
|
29
|
-
"@progress/kendo-angular-popup": "
|
|
30
|
-
"@progress/kendo-angular-progressbar": "
|
|
31
|
-
"@progress/kendo-angular-treeview": "
|
|
32
|
-
"@progress/kendo-angular-tooltip": "
|
|
33
|
-
"@progress/kendo-angular-dialog": "
|
|
34
|
-
"@progress/kendo-angular-upload": "
|
|
16
|
+
"@progress/kendo-angular-buttons": "15.0.1",
|
|
17
|
+
"@progress/kendo-angular-common": "15.0.1",
|
|
18
|
+
"@progress/kendo-angular-dateinputs": "15.0.1",
|
|
19
|
+
"@progress/kendo-angular-dropdowns": "15.0.1",
|
|
20
|
+
"@progress/kendo-angular-icons": "15.0.1",
|
|
21
|
+
"@progress/kendo-angular-indicators": "15.0.1",
|
|
22
|
+
"@progress/kendo-angular-inputs": "15.0.1",
|
|
23
|
+
"@progress/kendo-angular-intl": "15.0.1",
|
|
24
|
+
"@progress/kendo-angular-l10n": "15.0.1",
|
|
25
|
+
"@progress/kendo-angular-label": "15.0.1",
|
|
26
|
+
"@progress/kendo-angular-layout": "15.0.1",
|
|
27
|
+
"@progress/kendo-angular-menu": "15.0.1",
|
|
28
|
+
"@progress/kendo-angular-navigation": "15.0.1",
|
|
29
|
+
"@progress/kendo-angular-popup": "15.0.1",
|
|
30
|
+
"@progress/kendo-angular-progressbar": "15.0.1",
|
|
31
|
+
"@progress/kendo-angular-treeview": "15.0.1",
|
|
32
|
+
"@progress/kendo-angular-tooltip": "15.0.1",
|
|
33
|
+
"@progress/kendo-angular-dialog": "15.0.1",
|
|
34
|
+
"@progress/kendo-angular-upload": "15.0.1",
|
|
35
35
|
"@progress/kendo-drawing": "1.19.0",
|
|
36
36
|
"@progress/kendo-licensing": "1.3.5",
|
|
37
37
|
"@progress/kendo-svg-icons": "2.1.0",
|
package/public-api.d.ts
CHANGED
|
@@ -83,3 +83,6 @@ export { KitPermissionModule } from './lib/directives/kit-permission/kit-permiss
|
|
|
83
83
|
export { KitPermissionDirective } from './lib/directives/kit-permission/kit-permission.directive';
|
|
84
84
|
export { KitCopyTextModule } from './lib/components/kit-copy-text/kit-copy-text.module';
|
|
85
85
|
export { KitCopyTextComponent } from './lib/components/kit-copy-text/kit-copy-text.component';
|
|
86
|
+
export { KitNavigationMenuModule } from './lib/components/kit-navigation-menu/kit-navigation-menu.module';
|
|
87
|
+
export { KitNavigationMenuComponent } from './lib/components/kit-navigation-menu/kit-navigation-menu.component';
|
|
88
|
+
export { KitNavigationMenuItem } from './lib/components/kit-navigation-menu/kit-navigation-menu.model';
|
package/styles/styles.scss
CHANGED
|
@@ -11,9 +11,11 @@
|
|
|
11
11
|
@import "@progress/kendo-theme-default/scss/dialog";
|
|
12
12
|
@import "@progress/kendo-theme-default/scss/skeleton";
|
|
13
13
|
@import "@progress/kendo-theme-default/scss/upload";
|
|
14
|
+
@import "@progress/kendo-theme-default/scss/panelbar";
|
|
14
15
|
@import "ngx-toastr/toastr";
|
|
15
16
|
|
|
16
17
|
/* styles which need to be included by default into app styles */
|
|
17
18
|
@import "common";
|
|
19
|
+
@import "theming";
|
|
18
20
|
@import "components/tooltip";
|
|
19
21
|
@import "components/toastr";
|