@indigina/ui-kit 1.1.91 → 1.1.93
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/cross.svg +2 -3
- package/assets/icons/filter.svg +3 -0
- package/assets/icons/plus.svg +2 -3
- package/esm2022/lib/components/kit-button/kit-button.component.mjs +9 -3
- package/esm2022/lib/components/kit-card/kit-card.component.mjs +2 -2
- package/esm2022/lib/components/kit-cta-panel-action/kit-cta-panel-action.component.mjs +1 -1
- package/esm2022/lib/components/kit-datepicker/kit-datepicker.component.mjs +2 -2
- package/esm2022/lib/components/kit-daterange/kit-daterange.component.mjs +2 -2
- package/esm2022/lib/components/kit-datetimepicker/kit-datetimepicker.component.mjs +2 -2
- package/esm2022/lib/components/kit-file-card/kit-file-card.component.mjs +1 -1
- package/esm2022/lib/components/kit-file-upload/kit-file-upload.component.mjs +1 -1
- package/esm2022/lib/components/kit-pill/kit-pill.component.mjs +38 -6
- package/esm2022/lib/components/kit-pill/kit-pill.const.mjs +6 -0
- package/esm2022/lib/components/kit-popup/kit-popup.component.mjs +27 -16
- package/esm2022/lib/components/kit-profile-menu/kit-profile-menu.component.mjs +16 -8
- package/esm2022/lib/components/kit-scroll-navigation/kit-scroll-navigation.component.mjs +1 -1
- package/esm2022/lib/components/kit-search-bar/kit-search-bar.component.mjs +1 -1
- package/esm2022/lib/components/kit-svg-icon/kit-svg-icon.const.mjs +2 -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/public-api.mjs +2 -5
- package/fesm2022/indigina-ui-kit.mjs +97 -155
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-button/kit-button.component.d.ts +5 -1
- package/lib/components/kit-pill/kit-pill.component.d.ts +32 -3
- package/lib/components/kit-pill/kit-pill.const.d.ts +4 -0
- package/lib/components/kit-popup/kit-popup.component.d.ts +8 -7
- package/lib/components/kit-profile-menu/kit-profile-menu.component.d.ts +1 -1
- package/lib/components/kit-svg-icon/kit-svg-icon.const.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -4
- package/esm2022/lib/components/kit-pill/kit-pill.module.mjs +0 -28
- package/esm2022/lib/components/kit-popup/kit-popup.directive.mjs +0 -37
- package/esm2022/lib/components/kit-popup/kit-popup.module.mjs +0 -33
- package/esm2022/lib/components/kit-profile-menu/kit-profile-menu.module.mjs +0 -39
- package/lib/components/kit-pill/kit-pill.module.d.ts +0 -9
- package/lib/components/kit-popup/kit-popup.directive.d.ts +0 -14
- package/lib/components/kit-popup/kit-popup.module.d.ts +0 -10
- package/lib/components/kit-profile-menu/kit-profile-menu.module.d.ts +0 -12
|
@@ -35,11 +35,15 @@ export declare class KitButtonComponent {
|
|
|
35
35
|
* A CSS class which will be applied to the HTML button component
|
|
36
36
|
*/
|
|
37
37
|
buttonClass: string;
|
|
38
|
+
/**
|
|
39
|
+
* Defines an active state of the button
|
|
40
|
+
*/
|
|
41
|
+
active: boolean;
|
|
38
42
|
/**
|
|
39
43
|
* An action which is emitted as soon as user clicked the button
|
|
40
44
|
*/
|
|
41
45
|
clicked: EventEmitter<void>;
|
|
42
46
|
readonly KitSvgIconType: typeof KitSvgIconType;
|
|
43
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitButtonComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitButtonComponent, "kit-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; "kind": { "alias": "kind"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; }, { "clicked": "clicked"; }, never, never, false, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitButtonComponent, "kit-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; "kind": { "alias": "kind"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "active": { "alias": "active"; "required": false; }; }, { "clicked": "clicked"; }, never, never, false, never>;
|
|
45
49
|
}
|
|
@@ -1,14 +1,43 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { KitSvgIcon } from '../kit-svg-icon/kit-svg-icon.const';
|
|
2
|
+
import { KitSvgIcon, KitSvgIconType } from '../kit-svg-icon/kit-svg-icon.const';
|
|
3
|
+
import { KitPillType } from './kit-pill.const';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class KitPillComponent {
|
|
6
|
+
/**
|
|
7
|
+
* Defines if the pill will be removable. If set to true pill renders a remove button
|
|
8
|
+
*/
|
|
5
9
|
removable: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* Defines if the pill will be selectable
|
|
12
|
+
*/
|
|
6
13
|
selectable: boolean;
|
|
14
|
+
/**
|
|
15
|
+
* Defines the selected state of the pill
|
|
16
|
+
*/
|
|
7
17
|
selected: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Defines the pill type
|
|
20
|
+
*/
|
|
21
|
+
type: KitPillType;
|
|
22
|
+
/**
|
|
23
|
+
* Defines the icon which will be used in a pill with icon
|
|
24
|
+
*/
|
|
25
|
+
icon?: KitSvgIcon;
|
|
26
|
+
/**
|
|
27
|
+
* Defines the icon type
|
|
28
|
+
*/
|
|
29
|
+
iconType?: KitSvgIconType;
|
|
30
|
+
/**
|
|
31
|
+
* An action which is emitted when the pill is clicked
|
|
32
|
+
*/
|
|
8
33
|
clicked: EventEmitter<boolean>;
|
|
34
|
+
/**
|
|
35
|
+
* An action which is emitted when the close button is clicked
|
|
36
|
+
*/
|
|
9
37
|
removed: EventEmitter<void>;
|
|
10
|
-
onComponentClick(): void;
|
|
11
38
|
readonly closeIcon: KitSvgIcon;
|
|
39
|
+
readonly kitSvgIconType: typeof KitSvgIconType;
|
|
40
|
+
onComponentClick(): void;
|
|
12
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitPillComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitPillComponent, "kit-pill", never, { "removable": { "alias": "removable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "clicked": "clicked"; "removed": "removed"; }, never, ["*"],
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitPillComponent, "kit-pill", never, { "removable": { "alias": "removable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconType": { "alias": "iconType"; "required": false; }; }, { "clicked": "clicked"; "removed": "removed"; }, never, ["*"], true, never>;
|
|
14
43
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ElementRef, WritableSignal } from '@angular/core';
|
|
1
|
+
import { ElementRef, OnInit, WritableSignal } from '@angular/core';
|
|
2
2
|
import { KitPopupAlign, KitPopupAlignHorizontal } from './kit-popup.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class KitPopupComponent {
|
|
4
|
+
export declare class KitPopupComponent implements OnInit {
|
|
5
5
|
private elementRef;
|
|
6
6
|
/**
|
|
7
7
|
* Specifies the element that will be used as an anchor. The Popup opens next to that element
|
|
@@ -19,14 +19,15 @@ export declare class KitPopupComponent {
|
|
|
19
19
|
* Defines the horizontal position of the popup
|
|
20
20
|
*/
|
|
21
21
|
popupHorizontalAlign: KitPopupAlignHorizontal;
|
|
22
|
-
readonly
|
|
22
|
+
readonly visible: WritableSignal<boolean>;
|
|
23
23
|
readonly anchorAlign: KitPopupAlign;
|
|
24
24
|
readonly popupAlign: KitPopupAlign;
|
|
25
25
|
constructor(elementRef: ElementRef);
|
|
26
|
-
ngOnInit(): void;
|
|
27
26
|
documentClick(event: Event): void;
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
get anchorElement(): HTMLElement;
|
|
29
|
+
toggle(): void;
|
|
30
|
+
hide(): void;
|
|
30
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitPopupComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitPopupComponent, "kit-popup", never, { "anchor": { "alias": "anchor"; "required": false; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; }; "anchorHorizontalAlign": { "alias": "anchorHorizontalAlign"; "required": false; }; "popupHorizontalAlign": { "alias": "popupHorizontalAlign"; "required": false; }; }, {}, never, ["*"],
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitPopupComponent, "kit-popup", never, { "anchor": { "alias": "anchor"; "required": false; }; "closeOnOutsideClick": { "alias": "closeOnOutsideClick"; "required": false; }; "anchorHorizontalAlign": { "alias": "anchorHorizontalAlign"; "required": false; }; "popupHorizontalAlign": { "alias": "popupHorizontalAlign"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
32
33
|
}
|
|
@@ -28,5 +28,5 @@ export declare class KitProfileMenuComponent {
|
|
|
28
28
|
readonly KitSvgIconType: typeof KitSvgIconType;
|
|
29
29
|
onClick(item: KitProfileMenuItem): void;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitProfileMenuComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitProfileMenuComponent, "kit-profile-menu", never, { "menuItems": { "alias": "menuItems"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; "companyName": { "alias": "companyName"; "required": false; }; "avatarImageSrc": { "alias": "avatarImageSrc"; "required": false; }; }, {}, never, never,
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitProfileMenuComponent, "kit-profile-menu", never, { "menuItems": { "alias": "menuItems"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; "companyName": { "alias": "companyName"; "required": false; }; "avatarImageSrc": { "alias": "avatarImageSrc"; "required": false; }; }, {}, never, never, true, never>;
|
|
32
32
|
}
|
|
@@ -132,7 +132,8 @@ export declare enum KitSvgIcon {
|
|
|
132
132
|
PRODUCT = "product",
|
|
133
133
|
NOTIFICATION = "notification",
|
|
134
134
|
COLUMNS = "columns",
|
|
135
|
-
DETAILS = "details"
|
|
135
|
+
DETAILS = "details",
|
|
136
|
+
FILTER = "filter"
|
|
136
137
|
}
|
|
137
138
|
export declare enum KitSvgIconType {
|
|
138
139
|
FILL = "fill",
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ export { KitCheckboxModule } from './lib/components/kit-checkbox/kit-checkbox.mo
|
|
|
44
44
|
export { KitToggleComponent } from './lib/components/kit-toggle/kit-toggle.component';
|
|
45
45
|
export { KitToggleModule } from './lib/components/kit-toggle/kit-toggle.module';
|
|
46
46
|
export { KitPillComponent } from './lib/components/kit-pill/kit-pill.component';
|
|
47
|
-
export {
|
|
47
|
+
export { KitPillType } from './lib/components/kit-pill/kit-pill.const';
|
|
48
48
|
export { KitTooltipDirective, KitTooltipPosition } from './lib/directives/kit-tooltip/kit-tooltip.directive';
|
|
49
49
|
export { KitTooltipModule } from './lib/directives/kit-tooltip/kit-tooltip.module';
|
|
50
50
|
export { KitToastrModule } from './lib/components/kit-toastr/kit-toastr.module';
|
|
@@ -103,14 +103,11 @@ export { KitAvatarSize } from './lib/components/kit-avatar/kit-avatar.const';
|
|
|
103
103
|
export { KitMultiselectModule } from './lib/components/kit-multiselect/kit-multiselect.module';
|
|
104
104
|
export { KitMultiselectComponent } from './lib/components/kit-multiselect/kit-multiselect.component';
|
|
105
105
|
export { KitMultiselectItem } from './lib/components/kit-multiselect/kit-multiselect.model';
|
|
106
|
-
export { KitPopupModule } from './lib/components/kit-popup/kit-popup.module';
|
|
107
106
|
export { KitPopupComponent } from './lib/components/kit-popup/kit-popup.component';
|
|
108
|
-
export { KitPopupDirective } from './lib/components/kit-popup/kit-popup.directive';
|
|
109
107
|
export { KitInputLabelModule } from './lib/components/kit-input-label/kit-input-label.module';
|
|
110
108
|
export { KitInputLabelComponent } from './lib/components/kit-input-label/kit-input-label.component';
|
|
111
109
|
export { KitDatepickerModule } from './lib/components/kit-datepicker/kit-datepicker.module';
|
|
112
110
|
export { KitDatepickerComponent } from './lib/components/kit-datepicker/kit-datepicker.component';
|
|
113
|
-
export { KitProfileMenuModule } from './lib/components/kit-profile-menu/kit-profile-menu.module';
|
|
114
111
|
export { KitProfileMenuComponent } from './lib/components/kit-profile-menu/kit-profile-menu.component';
|
|
115
112
|
export { KitProfileMenuItem } from './lib/components/kit-profile-menu/kit-profile-menu.model';
|
|
116
113
|
export { KitTabsModule } from './lib/components/kit-tabs/kit-tabs.module';
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { KitPillComponent } from './kit-pill.component';
|
|
3
|
-
import { CommonModule } from '@angular/common';
|
|
4
|
-
import { KitSvgIconModule } from '../kit-svg-icon/kit-svg-icon.module';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class KitPillModule {
|
|
7
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitPillModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: KitPillModule, declarations: [KitPillComponent], imports: [KitSvgIconModule,
|
|
9
|
-
CommonModule], exports: [KitPillComponent] }); }
|
|
10
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitPillModule, imports: [KitSvgIconModule,
|
|
11
|
-
CommonModule] }); }
|
|
12
|
-
}
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitPillModule, decorators: [{
|
|
14
|
-
type: NgModule,
|
|
15
|
-
args: [{
|
|
16
|
-
declarations: [
|
|
17
|
-
KitPillComponent,
|
|
18
|
-
],
|
|
19
|
-
exports: [
|
|
20
|
-
KitPillComponent,
|
|
21
|
-
],
|
|
22
|
-
imports: [
|
|
23
|
-
KitSvgIconModule,
|
|
24
|
-
CommonModule,
|
|
25
|
-
],
|
|
26
|
-
}]
|
|
27
|
-
}] });
|
|
28
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia2l0LXBpbGwubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdWkta2l0L3NyYy9saWIvY29tcG9uZW50cy9raXQtcGlsbC9raXQtcGlsbC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN4RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0scUNBQXFDLENBQUM7O0FBY3ZFLE1BQU0sT0FBTyxhQUFhOzhHQUFiLGFBQWE7K0dBQWIsYUFBYSxpQkFWdEIsZ0JBQWdCLGFBTWhCLGdCQUFnQjtZQUNoQixZQUFZLGFBSlosZ0JBQWdCOytHQU9QLGFBQWEsWUFKdEIsZ0JBQWdCO1lBQ2hCLFlBQVk7OzJGQUdILGFBQWE7a0JBWnpCLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFO3dCQUNaLGdCQUFnQjtxQkFDakI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLGdCQUFnQjtxQkFDakI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLGdCQUFnQjt3QkFDaEIsWUFBWTtxQkFDYjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBLaXRQaWxsQ29tcG9uZW50IH0gZnJvbSAnLi9raXQtcGlsbC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEtpdFN2Z0ljb25Nb2R1bGUgfSBmcm9tICcuLi9raXQtc3ZnLWljb24va2l0LXN2Zy1pY29uLm1vZHVsZSc7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIEtpdFBpbGxDb21wb25lbnQsXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBLaXRQaWxsQ29tcG9uZW50LFxuICBdLFxuICBpbXBvcnRzOiBbXG4gICAgS2l0U3ZnSWNvbk1vZHVsZSxcbiAgICBDb21tb25Nb2R1bGUsXG4gIF0sXG59KVxuZXhwb3J0IGNsYXNzIEtpdFBpbGxNb2R1bGUge1xufVxuIl19
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { Directive, HostListener, Input } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class KitPopupDirective {
|
|
4
|
-
constructor(elementRef) {
|
|
5
|
-
this.elementRef = elementRef;
|
|
6
|
-
/**
|
|
7
|
-
* Defines a reference of the KitPopupComponent component
|
|
8
|
-
*/
|
|
9
|
-
this.popup = null;
|
|
10
|
-
}
|
|
11
|
-
onClick() {
|
|
12
|
-
const element = this.elementRef.nativeElement;
|
|
13
|
-
if (this.popup?.isPopupOpen()) {
|
|
14
|
-
this.popup.closePopup();
|
|
15
|
-
element.classList.remove('popup-active');
|
|
16
|
-
}
|
|
17
|
-
else {
|
|
18
|
-
this.popup?.openPopup();
|
|
19
|
-
element.classList.add('popup-active');
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitPopupDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
23
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.6", type: KitPopupDirective, selector: "[kitPopupTrigger]", inputs: { popup: ["kitPopupTrigger", "popup"] }, host: { listeners: { "click": "onClick()" } }, ngImport: i0 }); }
|
|
24
|
-
}
|
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitPopupDirective, decorators: [{
|
|
26
|
-
type: Directive,
|
|
27
|
-
args: [{
|
|
28
|
-
selector: '[kitPopupTrigger]',
|
|
29
|
-
}]
|
|
30
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { popup: [{
|
|
31
|
-
type: Input,
|
|
32
|
-
args: ['kitPopupTrigger']
|
|
33
|
-
}], onClick: [{
|
|
34
|
-
type: HostListener,
|
|
35
|
-
args: ['click']
|
|
36
|
-
}] } });
|
|
37
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia2l0LXBvcHVwLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpLWtpdC9zcmMvbGliL2NvbXBvbmVudHMva2l0LXBvcHVwL2tpdC1wb3B1cC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBYyxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU0zRSxNQUFNLE9BQU8saUJBQWlCO0lBTTVCLFlBQ1UsVUFBc0I7UUFBdEIsZUFBVSxHQUFWLFVBQVUsQ0FBWTtRQU5oQzs7V0FFRztRQUN1QixVQUFLLEdBQTZCLElBQUksQ0FBQztJQUtqRSxDQUFDO0lBR0QsT0FBTztRQUNMLE1BQU0sT0FBTyxHQUFnQixJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQztRQUMzRCxJQUFJLElBQUksQ0FBQyxLQUFLLEVBQUUsV0FBVyxFQUFFLEVBQUUsQ0FBQztZQUM5QixJQUFJLENBQUMsS0FBSyxDQUFDLFVBQVUsRUFBRSxDQUFDO1lBQ3hCLE9BQU8sQ0FBQyxTQUFTLENBQUMsTUFBTSxDQUFDLGNBQWMsQ0FBQyxDQUFDO1FBQzNDLENBQUM7YUFBTSxDQUFDO1lBQ04sSUFBSSxDQUFDLEtBQUssRUFBRSxTQUFTLEVBQUUsQ0FBQztZQUN4QixPQUFPLENBQUMsU0FBUyxDQUFDLEdBQUcsQ0FBQyxjQUFjLENBQUMsQ0FBQztRQUN4QyxDQUFDO0lBQ0gsQ0FBQzs4R0FyQlUsaUJBQWlCO2tHQUFqQixpQkFBaUI7OzJGQUFqQixpQkFBaUI7a0JBSDdCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLG1CQUFtQjtpQkFDOUI7K0VBSzJCLEtBQUs7c0JBQTlCLEtBQUs7dUJBQUMsaUJBQWlCO2dCQVF4QixPQUFPO3NCQUROLFlBQVk7dUJBQUMsT0FBTyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiwgSG9zdExpc3RlbmVyLCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgS2l0UG9wdXBDb21wb25lbnQgfSBmcm9tICcuL2tpdC1wb3B1cC5jb21wb25lbnQnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdba2l0UG9wdXBUcmlnZ2VyXScsXG59KVxuZXhwb3J0IGNsYXNzIEtpdFBvcHVwRGlyZWN0aXZlIHtcbiAgLyoqXG4gICAqIERlZmluZXMgYSByZWZlcmVuY2Ugb2YgdGhlIEtpdFBvcHVwQ29tcG9uZW50IGNvbXBvbmVudFxuICAgKi9cbiAgQElucHV0KCdraXRQb3B1cFRyaWdnZXInKSBwb3B1cDogS2l0UG9wdXBDb21wb25lbnQgfCBudWxsID0gbnVsbDtcblxuICBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIGVsZW1lbnRSZWY6IEVsZW1lbnRSZWYsXG4gICkge1xuICB9XG5cbiAgQEhvc3RMaXN0ZW5lcignY2xpY2snKVxuICBvbkNsaWNrKCk6IHZvaWQge1xuICAgIGNvbnN0IGVsZW1lbnQ6IEhUTUxFbGVtZW50ID0gdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQ7XG4gICAgaWYgKHRoaXMucG9wdXA/LmlzUG9wdXBPcGVuKCkpIHtcbiAgICAgIHRoaXMucG9wdXAuY2xvc2VQb3B1cCgpO1xuICAgICAgZWxlbWVudC5jbGFzc0xpc3QucmVtb3ZlKCdwb3B1cC1hY3RpdmUnKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5wb3B1cD8ub3BlblBvcHVwKCk7XG4gICAgICBlbGVtZW50LmNsYXNzTGlzdC5hZGQoJ3BvcHVwLWFjdGl2ZScpO1xuICAgIH1cbiAgfVxufVxuIl19
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { KitPopupComponent } from './kit-popup.component';
|
|
4
|
-
import { PopupModule } from '@progress/kendo-angular-popup';
|
|
5
|
-
import { KitPopupDirective } from './kit-popup.directive';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export class KitPopupModule {
|
|
8
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitPopupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
9
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: KitPopupModule, declarations: [KitPopupComponent,
|
|
10
|
-
KitPopupDirective], imports: [CommonModule,
|
|
11
|
-
PopupModule], exports: [KitPopupComponent,
|
|
12
|
-
KitPopupDirective] }); }
|
|
13
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitPopupModule, imports: [CommonModule,
|
|
14
|
-
PopupModule] }); }
|
|
15
|
-
}
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitPopupModule, decorators: [{
|
|
17
|
-
type: NgModule,
|
|
18
|
-
args: [{
|
|
19
|
-
declarations: [
|
|
20
|
-
KitPopupComponent,
|
|
21
|
-
KitPopupDirective,
|
|
22
|
-
],
|
|
23
|
-
imports: [
|
|
24
|
-
CommonModule,
|
|
25
|
-
PopupModule,
|
|
26
|
-
],
|
|
27
|
-
exports: [
|
|
28
|
-
KitPopupComponent,
|
|
29
|
-
KitPopupDirective,
|
|
30
|
-
],
|
|
31
|
-
}]
|
|
32
|
-
}] });
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia2l0LXBvcHVwLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpLWtpdC9zcmMvbGliL2NvbXBvbmVudHMva2l0LXBvcHVwL2tpdC1wb3B1cC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDMUQsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQzVELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDOztBQWdCMUQsTUFBTSxPQUFPLGNBQWM7OEdBQWQsY0FBYzsrR0FBZCxjQUFjLGlCQVp2QixpQkFBaUI7WUFDakIsaUJBQWlCLGFBR2pCLFlBQVk7WUFDWixXQUFXLGFBR1gsaUJBQWlCO1lBQ2pCLGlCQUFpQjsrR0FHUixjQUFjLFlBUnZCLFlBQVk7WUFDWixXQUFXOzsyRkFPRixjQUFjO2tCQWQxQixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWixpQkFBaUI7d0JBQ2pCLGlCQUFpQjtxQkFDbEI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osV0FBVztxQkFDWjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsaUJBQWlCO3dCQUNqQixpQkFBaUI7cUJBQ2xCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBLaXRQb3B1cENvbXBvbmVudCB9IGZyb20gJy4va2l0LXBvcHVwLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBQb3B1cE1vZHVsZSB9IGZyb20gJ0Bwcm9ncmVzcy9rZW5kby1hbmd1bGFyLXBvcHVwJztcbmltcG9ydCB7IEtpdFBvcHVwRGlyZWN0aXZlIH0gZnJvbSAnLi9raXQtcG9wdXAuZGlyZWN0aXZlJztcblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgS2l0UG9wdXBDb21wb25lbnQsXG4gICAgS2l0UG9wdXBEaXJlY3RpdmUsXG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgUG9wdXBNb2R1bGUsXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBLaXRQb3B1cENvbXBvbmVudCxcbiAgICBLaXRQb3B1cERpcmVjdGl2ZSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgS2l0UG9wdXBNb2R1bGUge1xufVxuIl19
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { KitProfileMenuComponent } from './kit-profile-menu.component';
|
|
4
|
-
import { KitAvatarModule } from '../kit-avatar/kit-avatar.module';
|
|
5
|
-
import { KitPopupModule } from '../kit-popup/kit-popup.module';
|
|
6
|
-
import { KitSvgIconModule } from '../kit-svg-icon/kit-svg-icon.module';
|
|
7
|
-
import { RouterLink } from '@angular/router';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export class KitProfileMenuModule {
|
|
10
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitProfileMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
11
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: KitProfileMenuModule, declarations: [KitProfileMenuComponent], imports: [CommonModule,
|
|
12
|
-
KitAvatarModule,
|
|
13
|
-
KitPopupModule,
|
|
14
|
-
KitSvgIconModule,
|
|
15
|
-
RouterLink], exports: [KitProfileMenuComponent] }); }
|
|
16
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitProfileMenuModule, imports: [CommonModule,
|
|
17
|
-
KitAvatarModule,
|
|
18
|
-
KitPopupModule,
|
|
19
|
-
KitSvgIconModule] }); }
|
|
20
|
-
}
|
|
21
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitProfileMenuModule, decorators: [{
|
|
22
|
-
type: NgModule,
|
|
23
|
-
args: [{
|
|
24
|
-
declarations: [
|
|
25
|
-
KitProfileMenuComponent,
|
|
26
|
-
],
|
|
27
|
-
imports: [
|
|
28
|
-
CommonModule,
|
|
29
|
-
KitAvatarModule,
|
|
30
|
-
KitPopupModule,
|
|
31
|
-
KitSvgIconModule,
|
|
32
|
-
RouterLink,
|
|
33
|
-
],
|
|
34
|
-
exports: [
|
|
35
|
-
KitProfileMenuComponent,
|
|
36
|
-
],
|
|
37
|
-
}]
|
|
38
|
-
}] });
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia2l0LXByb2ZpbGUtbWVudS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy91aS1raXQvc3JjL2xpYi9jb21wb25lbnRzL2tpdC1wcm9maWxlLW1lbnUva2l0LXByb2ZpbGUtbWVudS5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDdkUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLGlDQUFpQyxDQUFDO0FBQ2xFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMvRCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUN2RSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0saUJBQWlCLENBQUM7O0FBaUI3QyxNQUFNLE9BQU8sb0JBQW9COzhHQUFwQixvQkFBb0I7K0dBQXBCLG9CQUFvQixpQkFiN0IsdUJBQXVCLGFBR3ZCLFlBQVk7WUFDWixlQUFlO1lBQ2YsY0FBYztZQUNkLGdCQUFnQjtZQUNoQixVQUFVLGFBR1YsdUJBQXVCOytHQUdkLG9CQUFvQixZQVY3QixZQUFZO1lBQ1osZUFBZTtZQUNmLGNBQWM7WUFDZCxnQkFBZ0I7OzJGQU9QLG9CQUFvQjtrQkFmaEMsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osdUJBQXVCO3FCQUN4QjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixlQUFlO3dCQUNmLGNBQWM7d0JBQ2QsZ0JBQWdCO3dCQUNoQixVQUFVO3FCQUNYO29CQUNELE9BQU8sRUFBRTt3QkFDUCx1QkFBdUI7cUJBQ3hCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBLaXRQcm9maWxlTWVudUNvbXBvbmVudCB9IGZyb20gJy4va2l0LXByb2ZpbGUtbWVudS5jb21wb25lbnQnO1xuaW1wb3J0IHsgS2l0QXZhdGFyTW9kdWxlIH0gZnJvbSAnLi4va2l0LWF2YXRhci9raXQtYXZhdGFyLm1vZHVsZSc7XG5pbXBvcnQgeyBLaXRQb3B1cE1vZHVsZSB9IGZyb20gJy4uL2tpdC1wb3B1cC9raXQtcG9wdXAubW9kdWxlJztcbmltcG9ydCB7IEtpdFN2Z0ljb25Nb2R1bGUgfSBmcm9tICcuLi9raXQtc3ZnLWljb24va2l0LXN2Zy1pY29uLm1vZHVsZSc7XG5pbXBvcnQgeyBSb3V0ZXJMaW5rIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgS2l0UHJvZmlsZU1lbnVDb21wb25lbnQsXG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgS2l0QXZhdGFyTW9kdWxlLFxuICAgIEtpdFBvcHVwTW9kdWxlLFxuICAgIEtpdFN2Z0ljb25Nb2R1bGUsXG4gICAgUm91dGVyTGluayxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIEtpdFByb2ZpbGVNZW51Q29tcG9uZW50LFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBLaXRQcm9maWxlTWVudU1vZHVsZSB7XG59XG4iXX0=
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./kit-pill.component";
|
|
3
|
-
import * as i2 from "../kit-svg-icon/kit-svg-icon.module";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
export declare class KitPillModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KitPillModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KitPillModule, [typeof i1.KitPillComponent], [typeof i2.KitSvgIconModule, typeof i3.CommonModule], [typeof i1.KitPillComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KitPillModule>;
|
|
9
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import { KitPopupComponent } from './kit-popup.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class KitPopupDirective {
|
|
5
|
-
private elementRef;
|
|
6
|
-
/**
|
|
7
|
-
* Defines a reference of the KitPopupComponent component
|
|
8
|
-
*/
|
|
9
|
-
popup: KitPopupComponent | null;
|
|
10
|
-
constructor(elementRef: ElementRef);
|
|
11
|
-
onClick(): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KitPopupDirective, never>;
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<KitPopupDirective, "[kitPopupTrigger]", never, { "popup": { "alias": "kitPopupTrigger"; "required": false; }; }, {}, never, never, false, never>;
|
|
14
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./kit-popup.component";
|
|
3
|
-
import * as i2 from "./kit-popup.directive";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "@progress/kendo-angular-popup";
|
|
6
|
-
export declare class KitPopupModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KitPopupModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KitPopupModule, [typeof i1.KitPopupComponent, typeof i2.KitPopupDirective], [typeof i3.CommonModule, typeof i4.PopupModule], [typeof i1.KitPopupComponent, typeof i2.KitPopupDirective]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KitPopupModule>;
|
|
10
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./kit-profile-menu.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../kit-avatar/kit-avatar.module";
|
|
5
|
-
import * as i4 from "../kit-popup/kit-popup.module";
|
|
6
|
-
import * as i5 from "../kit-svg-icon/kit-svg-icon.module";
|
|
7
|
-
import * as i6 from "@angular/router";
|
|
8
|
-
export declare class KitProfileMenuModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<KitProfileMenuModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<KitProfileMenuModule, [typeof i1.KitProfileMenuComponent], [typeof i2.CommonModule, typeof i3.KitAvatarModule, typeof i4.KitPopupModule, typeof i5.KitSvgIconModule, typeof i6.RouterLink], [typeof i1.KitProfileMenuComponent]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<KitProfileMenuModule>;
|
|
12
|
-
}
|