@indigina/ui-kit 1.1.76 → 1.1.77

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.
@@ -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.77",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^18.2.6",
13
13
  "@angular/core": "^18.2.6"
package/public-api.d.ts CHANGED
@@ -147,3 +147,6 @@ export { KitTimelineComponent } from './lib/components/kit-timeline/kit-timeline
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';