@pksep/yui 0.1.145 → 0.1.146

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.
@@ -1,5 +1,5 @@
1
1
  import { ICheckboxProps } from './interface/interface';
2
- import { CheckboxSizeEnum, CheckboxCircularEnum } from './enum/enum';
2
+ import { CheckboxSizeEnum, CheckboxCircularEnum, CheckboxColorEnum } from './enum/enum';
3
3
 
4
4
  declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ICheckboxProps>, {
5
5
  size: CheckboxSizeEnum;
@@ -7,6 +7,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
7
7
  modelValue: boolean;
8
8
  disabled: boolean;
9
9
  dataTestid: string;
10
+ color: CheckboxColorEnum;
10
11
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
12
  change: (isChecked: boolean) => void;
12
13
  "update:modelValue": (value: boolean) => void;
@@ -16,10 +17,12 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
16
17
  modelValue: boolean;
17
18
  disabled: boolean;
18
19
  dataTestid: string;
20
+ color: CheckboxColorEnum;
19
21
  }>>> & Readonly<{
20
22
  onChange?: ((isChecked: boolean) => any) | undefined;
21
23
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
22
24
  }>, {
25
+ color: CheckboxColorEnum;
23
26
  dataTestid: string;
24
27
  disabled: boolean;
25
28
  size: CheckboxSizeEnum;
@@ -7,3 +7,7 @@ export declare enum CheckboxCircularEnum {
7
7
  circled = "circled",
8
8
  rounded = "rounded"
9
9
  }
10
+ export declare enum CheckboxColorEnum {
11
+ blue = "blue",
12
+ red = "red"
13
+ }
@@ -1,9 +1,10 @@
1
- import { CheckboxSizeEnum, CheckboxCircularEnum } from '../enum/enum';
1
+ import { CheckboxSizeEnum, CheckboxCircularEnum, CheckboxColorEnum } from '../enum/enum';
2
2
  import { IDataTestIdProp } from '../../../common/dataTestidProps';
3
3
 
4
4
  export interface ICheckboxProps extends IDataTestIdProp {
5
5
  size?: CheckboxSizeEnum;
6
6
  circular?: CheckboxCircularEnum;
7
+ color?: CheckboxColorEnum;
7
8
  checked?: boolean;
8
9
  modelValue?: boolean;
9
10
  disabled?: boolean;