keevo-components 2.0.255 → 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.
@@ -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,7 +4,7 @@ export declare class KvCardsInstructionComponent {
4
4
  title: string;
5
5
  icon: string;
6
6
  height: number;
7
- color?: "blue" | "green" | "orange" | "red" | "purple" | "yellow" | "teal" | "pink" | "gray" | "indigo" | "cyan" | "bluegray" | undefined;
7
+ color?: "blue" | "gray" | "green" | "orange" | "red" | "purple" | "yellow" | "teal" | "pink" | "indigo" | "cyan" | "bluegray" | undefined;
8
8
  } | undefined>;
9
9
  blackCard: import("@angular/core").InputSignal<{
10
10
  title: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keevo-components",
3
- "version": "2.0.255",
3
+ "version": "2.0.256",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.8",
6
6
  "@angular/core": "^17.3.8",
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';