keevo-components 2.0.254 → 2.0.256
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/kv-inputs/kv-chips/kv-chips.component.mjs +57 -0
- package/esm2022/lib/components/kv-inputs/kv-select-buttons/kv-select-buttons.component.mjs +3 -3
- package/esm2022/lib/components/kv-instruction-page/components/cards-instruction/kv-cards-instruction.component.mjs +3 -3
- package/esm2022/lib/components/kv-instruction-page/kv-instruction-page.component.mjs +3 -3
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/keevo-components.mjs +62 -7
- package/fesm2022/keevo-components.mjs.map +1 -1
- package/lib/components/kv-inputs/kv-chips/kv-chips.component.d.ts +16 -0
- package/lib/components/kv-instruction-page/components/cards-instruction/kv-cards-instruction.component.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export interface ChipOption {
|
|
3
|
+
label: string;
|
|
4
|
+
value: any;
|
|
5
|
+
}
|
|
6
|
+
export declare class KvChipsComponent {
|
|
7
|
+
options: import("@angular/core").InputSignal<ChipOption[]>;
|
|
8
|
+
multiple: import("@angular/core").InputSignal<boolean>;
|
|
9
|
+
selection: import("@angular/core").ModelSignal<any>;
|
|
10
|
+
selectionChange: import("@angular/core").OutputEmitterRef<any>;
|
|
11
|
+
toggle(option: ChipOption): void;
|
|
12
|
+
isActive(option: ChipOption): boolean;
|
|
13
|
+
private updateSelection;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KvChipsComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KvChipsComponent, "kv-chips", never, { "options": { "alias": "options"; "required": true; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "selection": { "alias": "selection"; "required": false; "isSignal": true; }; }, { "selection": "selectionChange"; "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
16
|
+
}
|
|
@@ -4,6 +4,7 @@ export declare class KvCardsInstructionComponent {
|
|
|
4
4
|
title: string;
|
|
5
5
|
icon: string;
|
|
6
6
|
height: number;
|
|
7
|
+
color?: "blue" | "gray" | "green" | "orange" | "red" | "purple" | "yellow" | "teal" | "pink" | "indigo" | "cyan" | "bluegray" | undefined;
|
|
7
8
|
} | undefined>;
|
|
8
9
|
blackCard: import("@angular/core").InputSignal<{
|
|
9
10
|
title: string;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -332,3 +332,4 @@ export * from './lib/components/kv-kanban/kv-kanban.component';
|
|
|
332
332
|
export * from './lib/components/kv-kanban/kv-kanban-models.model';
|
|
333
333
|
export * from './lib/components/kv-instruction-page/kv-instruction-page.component';
|
|
334
334
|
export * from './lib/components/kv-instruction-page/components/cards-instruction/kv-cards-instruction.component';
|
|
335
|
+
export * from './lib/components/kv-inputs/kv-chips/kv-chips.component';
|