@stemy/ngx-utils 19.7.14 → 19.7.16

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.
@@ -209,11 +209,12 @@ export interface TabOption extends Omit<Partial<ButtonProps>, "size" | "state" |
209
209
  export type ChipValue = string | number;
210
210
  export type ChipStatus = "valid" | "invalid";
211
211
  export interface ChipOption {
212
- value: ChipValue;
213
212
  label: string;
213
+ value?: ChipValue;
214
214
  classes?: string;
215
215
  disabled?: boolean;
216
216
  picture?: string;
217
+ group?: ChipOption[];
217
218
  }
218
219
  export type DropdownAttachTo = "root" | HTMLElement | ElementRef<HTMLElement> | null;
219
220
  export interface UnorderedListTemplate {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stemy/ngx-utils",
3
- "version": "19.7.14",
3
+ "version": "19.7.16",
4
4
  "license": "MIT",
5
5
  "public": true,
6
6
  "repository": "https://github.com/stemyke/ngx-utils.git",