@indigina/ui-kit 1.1.78 → 1.1.80

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,14 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class KitDataFieldComponent {
3
+ /**
4
+ * Defines a value that is going to be applied as a label text
5
+ */
6
+ label: string;
7
+ /**
8
+ * Defines a value that is going to be applied as a value text
9
+ */
10
+ value?: string | number | null;
11
+ readonly defaultValue: string;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<KitDataFieldComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitDataFieldComponent, "kit-data-field", never, { "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
14
+ }
@@ -0,0 +1,30 @@
1
+ import { EventEmitter, ElementRef } from '@angular/core';
2
+ import { KitButtonKind, KitButtonType, KitButtonIconPosition } from '../kit-button/kit-button.const';
3
+ import { KitTextboxState } from '../kit-textbox/kit-textbox.const';
4
+ import { KitSvgIcon, KitSvgIconType } from '../kit-svg-icon/kit-svg-icon.const';
5
+ import * as i0 from "@angular/core";
6
+ export declare class KitSearchBarComponent {
7
+ placeholder: string;
8
+ searchButtonLabel: string;
9
+ closeButtonLabel: string;
10
+ state: KitTextboxState;
11
+ icon: KitSvgIcon;
12
+ clearIcon: KitSvgIcon;
13
+ buttonType: KitButtonType;
14
+ buttonCloseType: KitButtonType;
15
+ buttonKind: KitButtonKind;
16
+ buttonIcon: KitSvgIcon;
17
+ buttonIconType: KitSvgIconType;
18
+ buttonIconPosition: KitButtonIconPosition;
19
+ changed: EventEmitter<string>;
20
+ searchButtonClick: EventEmitter<void>;
21
+ closeButtonClick: EventEmitter<void>;
22
+ searchTextboxElementRef: ElementRef;
23
+ isSearchVisible: boolean;
24
+ onSearchChange(value: string): void;
25
+ onSearchButtonClick(): void;
26
+ clearSearch(): void;
27
+ onCloseButtonClick(): void;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<KitSearchBarComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<KitSearchBarComponent, "kit-search-bar", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "searchButtonLabel": { "alias": "searchButtonLabel"; "required": false; }; "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; }; }, { "changed": "changed"; "searchButtonClick": "searchButtonClick"; "closeButtonClick": "closeButtonClick"; }, never, never, false, never>;
30
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./kit-search-bar.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../kit-button/kit-button.module";
5
+ import * as i4 from "../kit-textbox/kit-textbox.module";
6
+ import * as i5 from "../kit-svg-icon/kit-svg-icon.module";
7
+ export declare class KitSearchBarModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<KitSearchBarModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KitSearchBarModule, [typeof i1.KitSearchBarComponent], [typeof i2.CommonModule, typeof i3.KitButtonModule, typeof i4.KitTextboxModule, typeof i5.KitSvgIconModule], [typeof i1.KitSearchBarComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<KitSearchBarModule>;
11
+ }
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.1.78",
10
+ "version": "1.1.80",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "^18.2.6",
13
13
  "@angular/core": "^18.2.6"
package/public-api.d.ts CHANGED
@@ -150,3 +150,6 @@ export { KitTimelineCardComponent } from './lib/components/kit-timeline/kit-time
150
150
  export { KitFileCardComponent } from './lib/components/kit-file-card/kit-file-card.component';
151
151
  export { KitFileCardModule } from './lib/components/kit-file-card/kit-file-card.module';
152
152
  export { KitFileCardMessagesComponent } from './lib/components/kit-file-card/kit-file-card-messages.component';
153
+ export { KitDataFieldComponent } from './lib/components/kit-data-field/kit-data-field.component';
154
+ export { KitSearchBarModule } from './lib/components/kit-search-bar/kit-search-bar.module';
155
+ export { KitSearchBarComponent } from './lib/components/kit-search-bar/kit-search-bar.component';