@indigina/ui-kit 1.1.90 → 1.1.92

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.
Files changed (33) hide show
  1. package/assets/icons/details.svg +10 -0
  2. package/assets/icons/filter.svg +3 -0
  3. package/esm2022/lib/components/kit-button/kit-button.component.mjs +9 -3
  4. package/esm2022/lib/components/kit-card/kit-card.component.mjs +2 -2
  5. package/esm2022/lib/components/kit-cta-panel-action/kit-cta-panel-action.component.mjs +1 -1
  6. package/esm2022/lib/components/kit-datepicker/kit-datepicker.component.mjs +2 -2
  7. package/esm2022/lib/components/kit-daterange/kit-daterange.component.mjs +2 -2
  8. package/esm2022/lib/components/kit-datetimepicker/kit-datetimepicker.component.mjs +2 -2
  9. package/esm2022/lib/components/kit-file-card/kit-file-card.component.mjs +1 -1
  10. package/esm2022/lib/components/kit-file-upload/kit-file-upload.component.mjs +1 -1
  11. package/esm2022/lib/components/kit-grid/kit-grid.component.mjs +12 -14
  12. package/esm2022/lib/components/kit-popup/kit-popup.component.mjs +27 -16
  13. package/esm2022/lib/components/kit-profile-menu/kit-profile-menu.component.mjs +16 -8
  14. package/esm2022/lib/components/kit-scroll-navigation/kit-scroll-navigation.component.mjs +1 -1
  15. package/esm2022/lib/components/kit-search-bar/kit-search-bar.component.mjs +1 -1
  16. package/esm2022/lib/components/kit-svg-icon/kit-svg-icon.const.mjs +3 -1
  17. package/esm2022/lib/components/kit-svg-sprite/kit-svg-sprite.component.mjs +3 -3
  18. package/esm2022/public-api.mjs +1 -4
  19. package/fesm2022/indigina-ui-kit.mjs +70 -141
  20. package/fesm2022/indigina-ui-kit.mjs.map +1 -1
  21. package/lib/components/kit-button/kit-button.component.d.ts +5 -1
  22. package/lib/components/kit-grid/kit-grid.component.d.ts +5 -5
  23. package/lib/components/kit-popup/kit-popup.component.d.ts +8 -7
  24. package/lib/components/kit-profile-menu/kit-profile-menu.component.d.ts +1 -1
  25. package/lib/components/kit-svg-icon/kit-svg-icon.const.d.ts +3 -1
  26. package/package.json +1 -1
  27. package/public-api.d.ts +0 -3
  28. package/esm2022/lib/components/kit-popup/kit-popup.directive.mjs +0 -37
  29. package/esm2022/lib/components/kit-popup/kit-popup.module.mjs +0 -33
  30. package/esm2022/lib/components/kit-profile-menu/kit-profile-menu.module.mjs +0 -39
  31. package/lib/components/kit-popup/kit-popup.directive.d.ts +0 -14
  32. package/lib/components/kit-popup/kit-popup.module.d.ts +0 -10
  33. 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
  }
@@ -42,6 +42,10 @@ export declare class KitGridComponent<T> {
42
42
  * Function to determine if the detail template should be visible
43
43
  */
44
44
  detailTemplateShowIf: (dataItem: T) => boolean;
45
+ /**
46
+ * Function to determine if the caret of detail template should be disabled
47
+ */
48
+ detailTemplateExpandDisableIf: (dataItem: T) => boolean;
45
49
  /**
46
50
  * Flag to show or hide the footer row
47
51
  */
@@ -54,10 +58,6 @@ export declare class KitGridComponent<T> {
54
58
  * Data to display in the footer row
55
59
  */
56
60
  footerData?: Partial<Record<keyof T, T[keyof T]>>;
57
- /**
58
- * Method to add additional logic to the row class
59
- */
60
- addRowClass?: (context?: RowClassArgs) => Record<string, boolean>;
61
61
  /**
62
62
  * An action which is emitted when the page of the grid is changed
63
63
  */
@@ -99,5 +99,5 @@ export declare class KitGridComponent<T> {
99
99
  getPagerSettings(): boolean | PagerSettings;
100
100
  private collapseAllRows;
101
101
  static ɵfac: i0.ɵɵFactoryDeclaration<KitGridComponent<any>, never>;
102
- static ɵcmp: i0.ɵɵComponentDeclaration<KitGridComponent<any>, "kit-grid", never, { "data": { "alias": "data"; "required": false; }; "gridDataBinding": { "alias": "gridDataBinding"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "detailTemplateShowIf": { "alias": "detailTemplateShowIf"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "footerTitle": { "alias": "footerTitle"; "required": false; }; "footerData": { "alias": "footerData"; "required": false; }; "addRowClass": { "alias": "addRowClass"; "required": false; }; }, { "pageChanged": "pageChanged"; "sortChanged": "sortChanged"; "dataStateChanged": "dataStateChanged"; "detailExpanded": "detailExpanded"; "detailCollapsed": "detailCollapsed"; "cellClicked": "cellClicked"; }, ["columns", "kitGridDetailTemplate"], never, false, never>;
102
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitGridComponent<any>, "kit-grid", never, { "data": { "alias": "data"; "required": false; }; "gridDataBinding": { "alias": "gridDataBinding"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "detailTemplateShowIf": { "alias": "detailTemplateShowIf"; "required": false; }; "detailTemplateExpandDisableIf": { "alias": "detailTemplateExpandDisableIf"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "footerTitle": { "alias": "footerTitle"; "required": false; }; "footerData": { "alias": "footerData"; "required": false; }; }, { "pageChanged": "pageChanged"; "sortChanged": "sortChanged"; "dataStateChanged": "dataStateChanged"; "detailExpanded": "detailExpanded"; "detailCollapsed": "detailCollapsed"; "cellClicked": "cellClicked"; }, ["columns", "kitGridDetailTemplate"], never, false, never>;
103
103
  }
@@ -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 isPopupOpen: WritableSignal<boolean>;
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
- openPopup(): void;
29
- closePopup(): void;
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, ["*"], 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, false, 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
  }
@@ -131,7 +131,9 @@ export declare enum KitSvgIcon {
131
131
  EMPTY = "empty",
132
132
  PRODUCT = "product",
133
133
  NOTIFICATION = "notification",
134
- COLUMNS = "columns"
134
+ COLUMNS = "columns",
135
+ DETAILS = "details",
136
+ FILTER = "filter"
135
137
  }
136
138
  export declare enum KitSvgIconType {
137
139
  FILL = "fill",
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.90",
10
+ "version": "1.1.92",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^18.2.6",
13
13
  "@angular/core": "^18.2.6"
package/public-api.d.ts CHANGED
@@ -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,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,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
- }