@indigina/ui-kit 1.1.79 → 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.
- package/esm2022/lib/components/kit-search-bar/kit-search-bar.component.mjs +76 -0
- package/esm2022/lib/components/kit-search-bar/kit-search-bar.module.mjs +32 -0
- package/esm2022/lib/components/kit-tilelayout/kit-tilelayout.component.mjs +1 -2
- package/esm2022/public-api.mjs +4 -1
- package/fesm2022/indigina-ui-kit.mjs +94 -2
- package/fesm2022/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-search-bar/kit-search-bar.component.d.ts +30 -0
- package/lib/components/kit-search-bar/kit-search-bar.module.d.ts +11 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -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
package/public-api.d.ts
CHANGED
|
@@ -151,3 +151,5 @@ export { KitFileCardComponent } from './lib/components/kit-file-card/kit-file-ca
|
|
|
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
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';
|