@indigina/ui-kit 1.1.76 → 1.1.78

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 (23) hide show
  1. package/assets/icons/download.svg +2 -4
  2. package/assets/icons/pdf.svg +9 -0
  3. package/assets/icons/xls.svg +13 -0
  4. package/esm2022/lib/components/kit-entity-section/kit-entity-section.component.mjs +3 -3
  5. package/esm2022/lib/components/kit-entity-section-container/kit-entity-section-container.component.mjs +11 -0
  6. package/esm2022/lib/components/kit-file-card/kit-file-card-messages.component.mjs +35 -0
  7. package/esm2022/lib/components/kit-file-card/kit-file-card.component.mjs +66 -0
  8. package/esm2022/lib/components/kit-file-card/kit-file-card.module.mjs +39 -0
  9. package/esm2022/lib/components/kit-svg-icon/kit-svg-icon.const.mjs +3 -1
  10. package/esm2022/lib/components/kit-svg-sprite/kit-svg-sprite.component.mjs +3 -3
  11. package/esm2022/public-api.mjs +7 -2
  12. package/fesm2022/indigina-ui-kit.mjs +136 -22
  13. package/fesm2022/indigina-ui-kit.mjs.map +1 -1
  14. package/lib/components/kit-entity-section/kit-entity-section.component.d.ts +1 -1
  15. package/lib/components/kit-entity-section-container/kit-entity-section-container.component.d.ts +5 -0
  16. package/lib/components/kit-file-card/kit-file-card-messages.component.d.ts +17 -0
  17. package/lib/components/kit-file-card/kit-file-card.component.d.ts +41 -0
  18. package/lib/components/kit-file-card/kit-file-card.module.d.ts +11 -0
  19. package/lib/components/kit-svg-icon/kit-svg-icon.const.d.ts +3 -1
  20. package/package.json +1 -1
  21. package/public-api.d.ts +4 -1
  22. package/esm2022/lib/components/kit-entity-section/kit-entity-section.module.mjs +0 -24
  23. package/lib/components/kit-entity-section/kit-entity-section.module.d.ts +0 -8
@@ -1,5 +1,5 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class KitEntitySectionComponent {
3
3
  static ɵfac: i0.ɵɵFactoryDeclaration<KitEntitySectionComponent, never>;
4
- static ɵcmp: i0.ɵɵComponentDeclaration<KitEntitySectionComponent, "kit-entity-section", never, {}, {}, never, ["[header]", "[content]"], false, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitEntitySectionComponent, "kit-entity-section", never, {}, {}, never, ["[header]", "[content]"], true, never>;
5
5
  }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class KitEntitySectionContainerComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<KitEntitySectionContainerComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitEntitySectionContainerComponent, "kit-entity-section-container", never, {}, {}, never, ["[title]", "*"], true, never>;
5
+ }
@@ -0,0 +1,17 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class KitFileCardMessagesComponent {
3
+ /**
4
+ * Defines a value to use as "Create Date" label
5
+ */
6
+ createDate: string;
7
+ /**
8
+ * Defines a value to use as "Created By" label
9
+ */
10
+ createdBy: string;
11
+ /**
12
+ * Defines a value to use as "Download" button label
13
+ */
14
+ downloadButtonLabel: string;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<KitFileCardMessagesComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitFileCardMessagesComponent, "kit-file-card-custom-messages", never, { "createDate": { "alias": "createDate"; "required": false; }; "createdBy": { "alias": "createdBy"; "required": false; }; "downloadButtonLabel": { "alias": "downloadButtonLabel"; "required": false; }; }, {}, never, never, false, never>;
17
+ }
@@ -0,0 +1,41 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { KitSvgIcon } from '../kit-svg-icon/kit-svg-icon.const';
3
+ import { KitButtonIconPosition, KitButtonType } from '../kit-button/kit-button.const';
4
+ import { KitFileCardMessagesComponent } from './kit-file-card-messages.component';
5
+ import * as i0 from "@angular/core";
6
+ export declare class KitFileCardComponent {
7
+ /**
8
+ * Defines a value that will be used as a card title
9
+ */
10
+ title: string;
11
+ /**
12
+ * Defines a value that will be used as a card type label
13
+ */
14
+ type: string;
15
+ /**
16
+ * Defines a value that will be used to render card icon
17
+ */
18
+ fileType: string;
19
+ /**
20
+ * Defines a value that will be used as a card date
21
+ */
22
+ date: string;
23
+ /**
24
+ * Defines a value that will be used as a card name
25
+ */
26
+ name: string;
27
+ /**
28
+ * An action which is emitted when download button clicked
29
+ */
30
+ downloadButtonClicked: EventEmitter<void>;
31
+ customMessages: KitFileCardMessagesComponent | null;
32
+ readonly kitSvgIcon: typeof KitSvgIcon;
33
+ readonly kitButtonType: typeof KitButtonType;
34
+ readonly kitButtonIconPosition: typeof KitButtonIconPosition;
35
+ readonly dateFormat: string;
36
+ readonly createDateLabel: string;
37
+ readonly createdByLabel: string;
38
+ readonly downloadButtonLabel: string;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<KitFileCardComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitFileCardComponent, "kit-file-card", never, { "title": { "alias": "title"; "required": false; }; "type": { "alias": "type"; "required": false; }; "fileType": { "alias": "fileType"; "required": false; }; "date": { "alias": "date"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, { "downloadButtonClicked": "downloadButtonClicked"; }, ["customMessages"], ["*"], false, never>;
41
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./kit-file-card.component";
3
+ import * as i2 from "./kit-file-card-messages.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "../kit-button/kit-button.module";
6
+ import * as i5 from "../kit-svg-icon/kit-svg-icon.module";
7
+ export declare class KitFileCardModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<KitFileCardModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KitFileCardModule, [typeof i1.KitFileCardComponent, typeof i2.KitFileCardMessagesComponent], [typeof i3.CommonModule, typeof i4.KitButtonModule, typeof i5.KitSvgIconModule, typeof i3.DatePipe], [typeof i1.KitFileCardComponent, typeof i2.KitFileCardMessagesComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<KitFileCardModule>;
11
+ }
@@ -122,7 +122,9 @@ export declare enum KitSvgIcon {
122
122
  TMS = "tms",
123
123
  NSS = "nss",
124
124
  DMS = "dms",
125
- PMS = "pms"
125
+ PMS = "pms",
126
+ XLS = "xls",
127
+ PDF = "pdf"
126
128
  }
127
129
  export declare enum KitSvgIconType {
128
130
  FILL = "fill",
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.76",
10
+ "version": "1.1.78",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^18.2.6",
13
13
  "@angular/core": "^18.2.6"
package/public-api.d.ts CHANGED
@@ -139,11 +139,14 @@ export { KitTileLayoutColumnsConfig } from './lib/components/kit-tilelayout/kit-
139
139
  export { KitScrollNavigationModule } from './lib/components/kit-scroll-navigation/kit-scroll-navigation.module';
140
140
  export { KitScrollNavigationComponent } from './lib/components/kit-scroll-navigation/kit-scroll-navigation.component';
141
141
  export { KitScrollNavigationSectionComponent, } from './lib/components/kit-scroll-navigation/kit-scroll-navigation-section/kit-scroll-navigation-section.component';
142
- export { KitEntitySectionModule } from './lib/components/kit-entity-section/kit-entity-section.module';
143
142
  export { KitEntitySectionComponent } from './lib/components/kit-entity-section/kit-entity-section.component';
143
+ export { KitEntitySectionContainerComponent } from './lib/components/kit-entity-section-container/kit-entity-section-container.component';
144
144
  export { KitEntityTitleModule } from './lib/components/kit-entity-title/kit-entity-title.module';
145
145
  export { KitEntityTitleComponent } from './lib/components/kit-entity-title/kit-entity-title.component';
146
146
  export { KitTimelineComponent } from './lib/components/kit-timeline/kit-timeline.component';
147
147
  export { KitTimelineModule } from './lib/components/kit-timeline/kit-timeline.module';
148
148
  export { KitTimelineItem } from './lib/components/kit-timeline/kit-timeline.model';
149
149
  export { KitTimelineCardComponent } from './lib/components/kit-timeline/kit-timeline-card/kit-timeline-card.component';
150
+ export { KitFileCardComponent } from './lib/components/kit-file-card/kit-file-card.component';
151
+ export { KitFileCardModule } from './lib/components/kit-file-card/kit-file-card.module';
152
+ export { KitFileCardMessagesComponent } from './lib/components/kit-file-card/kit-file-card-messages.component';
@@ -1,24 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { KitEntitySectionComponent } from './kit-entity-section.component';
4
- import * as i0 from "@angular/core";
5
- export class KitEntitySectionModule {
6
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitEntitySectionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
7
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.6", ngImport: i0, type: KitEntitySectionModule, declarations: [KitEntitySectionComponent], imports: [CommonModule], exports: [KitEntitySectionComponent] }); }
8
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitEntitySectionModule, imports: [CommonModule] }); }
9
- }
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.6", ngImport: i0, type: KitEntitySectionModule, decorators: [{
11
- type: NgModule,
12
- args: [{
13
- declarations: [
14
- KitEntitySectionComponent,
15
- ],
16
- imports: [
17
- CommonModule,
18
- ],
19
- exports: [
20
- KitEntitySectionComponent,
21
- ],
22
- }]
23
- }] });
24
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoia2l0LWVudGl0eS1zZWN0aW9uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpLWtpdC9zcmMvbGliL2NvbXBvbmVudHMva2l0LWVudGl0eS1zZWN0aW9uL2tpdC1lbnRpdHktc2VjdGlvbi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sZ0NBQWdDLENBQUM7O0FBYTNFLE1BQU0sT0FBTyxzQkFBc0I7OEdBQXRCLHNCQUFzQjsrR0FBdEIsc0JBQXNCLGlCQVQvQix5QkFBeUIsYUFHekIsWUFBWSxhQUdaLHlCQUF5QjsrR0FHaEIsc0JBQXNCLFlBTi9CLFlBQVk7OzJGQU1ILHNCQUFzQjtrQkFYbEMsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1oseUJBQXlCO3FCQUMxQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsWUFBWTtxQkFDYjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AseUJBQXlCO3FCQUMxQjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgS2l0RW50aXR5U2VjdGlvbkNvbXBvbmVudCB9IGZyb20gJy4va2l0LWVudGl0eS1zZWN0aW9uLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIEtpdEVudGl0eVNlY3Rpb25Db21wb25lbnQsXG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBLaXRFbnRpdHlTZWN0aW9uQ29tcG9uZW50LFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBLaXRFbnRpdHlTZWN0aW9uTW9kdWxlIHtcbn1cbiJdfQ==
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./kit-entity-section.component";
3
- import * as i2 from "@angular/common";
4
- export declare class KitEntitySectionModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<KitEntitySectionModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<KitEntitySectionModule, [typeof i1.KitEntitySectionComponent], [typeof i2.CommonModule], [typeof i1.KitEntitySectionComponent]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<KitEntitySectionModule>;
8
- }