@indigina/ui-kit 1.1.105 → 1.1.107
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/eye-close.svg +12 -0
- package/assets/icons/eye-open.svg +11 -0
- package/assets/icons/system.svg +6 -0
- package/fesm2022/indigina-ui-kit.mjs +19 -9
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-scroll-navigation/kit-scroll-navigation.component.d.ts +3 -2
- package/lib/components/kit-svg-icon/kit-svg-icon.const.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, QueryList, WritableSignal } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ElementRef, InputSignal, QueryList, WritableSignal } from '@angular/core';
|
|
2
2
|
import { KitScrollNavigationSectionComponent } from './kit-scroll-navigation-section/kit-scroll-navigation-section.component';
|
|
3
3
|
import { KitSvgIcon } from '../kit-svg-icon/kit-svg-icon.const';
|
|
4
4
|
import { KitButtonKind, KitButtonType } from '../kit-button/kit-button.const';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class KitScrollNavigationComponent implements AfterViewInit {
|
|
7
|
+
readonly isNavigationBtnDisabled: InputSignal<boolean>;
|
|
7
8
|
items: QueryList<KitScrollNavigationSectionComponent> | null;
|
|
8
9
|
content: ElementRef | null;
|
|
9
10
|
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
@@ -16,5 +17,5 @@ export declare class KitScrollNavigationComponent implements AfterViewInit {
|
|
|
16
17
|
private setLastSectionMinHeight;
|
|
17
18
|
private calculateLastSectionMinHeight;
|
|
18
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitScrollNavigationComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitScrollNavigationComponent, "kit-scroll-navigation", never, {}, {}, ["items"], never, false, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitScrollNavigationComponent, "kit-scroll-navigation", never, { "isNavigationBtnDisabled": { "alias": "isNavigationBtnDisabled"; "required": false; "isSignal": true; }; }, {}, ["items"], never, false, never>;
|
|
20
21
|
}
|
|
@@ -137,7 +137,10 @@ export declare enum KitSvgIcon {
|
|
|
137
137
|
DETAILS = "details",
|
|
138
138
|
FILTER = "filter",
|
|
139
139
|
NOTIFICATION_SUCCESS = "notification-success",
|
|
140
|
-
NOTIFICATION_WARNING = "notification-warning"
|
|
140
|
+
NOTIFICATION_WARNING = "notification-warning",
|
|
141
|
+
EYE_OPEN = "eye-open",
|
|
142
|
+
EYE_CLOSE = "eye-close",
|
|
143
|
+
SYSTEM = "system"
|
|
141
144
|
}
|
|
142
145
|
export declare enum KitSvgIconType {
|
|
143
146
|
FILL = "fill",
|