@indigina/ui-kit 1.1.34 → 1.1.36
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/kit-input-label/kit-input-label.component.mjs +6 -3
- package/esm2022/lib/components/kit-input-label/kit-input-label.module.mjs +7 -3
- package/esm2022/lib/components/kit-navigation-menu/kit-navigation-menu.component.mjs +9 -3
- package/esm2022/lib/directives/kit-tooltip/kit-tooltip.directive.mjs +4 -4
- package/fesm2022/indigina-ui-kit.mjs +81 -71
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-input-label/kit-input-label.component.d.ts +2 -0
- package/lib/components/kit-input-label/kit-input-label.module.d.ts +2 -1
- package/lib/components/kit-navigation-menu/kit-navigation-menu.component.d.ts +5 -1
- package/package.json +1 -1
- package/styles/components/tooltip.scss +21 -7
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
2
|
import { KitSvgIcon } from '../kit-svg-icon/kit-svg-icon.const';
|
|
3
|
+
import { KitTooltipPosition } from '../../directives/kit-tooltip/kit-tooltip.directive';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class KitInputLabelComponent {
|
|
5
6
|
/**
|
|
@@ -15,6 +16,7 @@ export declare class KitInputLabelComponent {
|
|
|
15
16
|
*/
|
|
16
17
|
tooltip?: string;
|
|
17
18
|
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
19
|
+
readonly KitTooltipPosition: typeof KitTooltipPosition;
|
|
18
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitInputLabelComponent, never>;
|
|
19
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitInputLabelComponent, "kit-input-label", never, { "text": { "alias": "text"; "required": false; }; "for": { "alias": "for"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
22
|
}
|
|
@@ -3,8 +3,9 @@ import * as i1 from "./kit-input-label.component";
|
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "@progress/kendo-angular-label";
|
|
5
5
|
import * as i4 from "../kit-svg-icon/kit-svg-icon.module";
|
|
6
|
+
import * as i5 from "../../directives/kit-tooltip/kit-tooltip.module";
|
|
6
7
|
export declare class KitInputLabelModule {
|
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitInputLabelModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KitInputLabelModule, [typeof i1.KitInputLabelComponent], [typeof i2.CommonModule, typeof i3.LabelModule, typeof i4.KitSvgIconModule], [typeof i1.KitInputLabelComponent]>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KitInputLabelModule, [typeof i1.KitInputLabelComponent], [typeof i2.CommonModule, typeof i3.LabelModule, typeof i4.KitSvgIconModule, typeof i5.KitTooltipModule], [typeof i1.KitInputLabelComponent]>;
|
|
9
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<KitInputLabelModule>;
|
|
10
11
|
}
|
|
@@ -13,6 +13,10 @@ export declare class KitNavigationMenuComponent {
|
|
|
13
13
|
* Defines whether the component will have an animation when collapsing/expanding the menu
|
|
14
14
|
*/
|
|
15
15
|
animate: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Defines whether menu will be collapsed
|
|
18
|
+
*/
|
|
19
|
+
collapsed: boolean;
|
|
16
20
|
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
17
21
|
readonly PanelBarExpandMode: typeof PanelBarExpandMode;
|
|
18
22
|
constructor(router: Router);
|
|
@@ -20,5 +24,5 @@ export declare class KitNavigationMenuComponent {
|
|
|
20
24
|
private setExpandedStateOnRouterChange;
|
|
21
25
|
private setExpandedState;
|
|
22
26
|
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>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitNavigationMenuComponent, "kit-navigation-menu", never, { "items": { "alias": "items"; "required": false; }; "animate": { "alias": "animate"; "required": false; }; "collapsed": { "alias": "collapsed"; "required": false; }; }, {}, never, never, false, never>;
|
|
24
28
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
.kit-tooltip {
|
|
2
|
+
.k-popup {
|
|
3
|
+
max-width: 250px;
|
|
4
|
+
border: none;
|
|
5
|
+
box-shadow: none;
|
|
6
|
+
}
|
|
3
7
|
|
|
4
|
-
.k-tooltip-wrapper {
|
|
5
8
|
.k-tooltip {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
padding: 6px 10px;
|
|
10
|
+
color: var(--ui-kit-color-grey-10);
|
|
11
|
+
font-size: 12px;
|
|
12
|
+
font-weight: 500;
|
|
13
|
+
line-height: 14px;
|
|
14
|
+
border-radius: 4px;
|
|
15
|
+
border: 1px solid var(--ui-kit-color-grey-11);
|
|
16
|
+
background: var(--ui-kit-color-white);
|
|
17
|
+
box-shadow:
|
|
18
|
+
0 1px 3px 0 rgba(0 0 0 / 0.10),
|
|
19
|
+
0 1px 2px 0 rgba(0 0 0 / 0.06);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.k-callout {
|
|
23
|
+
display: none;
|
|
10
24
|
}
|
|
11
25
|
}
|