cps-ui-kit 0.4.0 → 0.5.0

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.
@@ -26,6 +26,7 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
26
26
  persistentClear: boolean;
27
27
  prefixIcon: string;
28
28
  prefixIconSize: iconSizeType;
29
+ loading: boolean;
29
30
  _value: any;
30
31
  set value(value: any);
31
32
  get value(): any;
@@ -77,5 +78,5 @@ export declare class CpsAutocompleteComponent implements ControlValueAccessor, O
77
78
  focusInput(): void;
78
79
  focus(): void;
79
80
  static ɵfac: i0.ɵɵFactoryDeclaration<CpsAutocompleteComponent, [{ optional: true; self: true; }, null]>;
80
- static ɵcmp: i0.ɵɵComponentDeclaration<CpsAutocompleteComponent, "cps-autocomplete", never, { "label": "label"; "placeholder": "placeholder"; "hint": "hint"; "returnObject": "returnObject"; "multiple": "multiple"; "disabled": "disabled"; "width": "width"; "selectAll": "selectAll"; "chips": "chips"; "closableChips": "closableChips"; "clearable": "clearable"; "openOnClear": "openOnClear"; "options": "options"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "optionInfo": "optionInfo"; "hideDetails": "hideDetails"; "persistentClear": "persistentClear"; "prefixIcon": "prefixIcon"; "prefixIconSize": "prefixIconSize"; "_value": "value"; }, { "valueChanged": "valueChanged"; }, never, never, true, never>;
81
+ static ɵcmp: i0.ɵɵComponentDeclaration<CpsAutocompleteComponent, "cps-autocomplete", never, { "label": "label"; "placeholder": "placeholder"; "hint": "hint"; "returnObject": "returnObject"; "multiple": "multiple"; "disabled": "disabled"; "width": "width"; "selectAll": "selectAll"; "chips": "chips"; "closableChips": "closableChips"; "clearable": "clearable"; "openOnClear": "openOnClear"; "options": "options"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "optionInfo": "optionInfo"; "hideDetails": "hideDetails"; "persistentClear": "persistentClear"; "prefixIcon": "prefixIcon"; "prefixIconSize": "prefixIconSize"; "loading": "loading"; "_value": "value"; }, { "valueChanged": "valueChanged"; }, never, never, true, never>;
81
82
  }
@@ -0,0 +1,17 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CpsProgressLinearComponent {
3
+ width: number | string;
4
+ height: number | string;
5
+ color: string;
6
+ bgColor: string;
7
+ opacity: number | string;
8
+ radius: number | string;
9
+ cvtWidth: string;
10
+ cvtHeight: string;
11
+ cvtRadius: string;
12
+ cvtColor: string;
13
+ cvtBgColor: string;
14
+ ngOnInit(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<CpsProgressLinearComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<CpsProgressLinearComponent, "cps-progress-linear", never, { "width": "width"; "height": "height"; "color": "color"; "bgColor": "bgColor"; "opacity": "opacity"; "radius": "radius"; }, {}, never, never, true, never>;
17
+ }
@@ -24,6 +24,7 @@ export declare class CpsSelectComponent implements ControlValueAccessor, OnInit,
24
24
  persistentClear: boolean;
25
25
  prefixIcon: string;
26
26
  prefixIconSize: iconSizeType;
27
+ loading: boolean;
27
28
  _value: any;
28
29
  set value(value: any);
29
30
  get value(): any;
@@ -63,5 +64,5 @@ export declare class CpsSelectComponent implements ControlValueAccessor, OnInit,
63
64
  onBlur(): void;
64
65
  focus(): void;
65
66
  static ɵfac: i0.ɵɵFactoryDeclaration<CpsSelectComponent, [{ optional: true; self: true; }]>;
66
- static ɵcmp: i0.ɵɵComponentDeclaration<CpsSelectComponent, "cps-select", never, { "label": "label"; "placeholder": "placeholder"; "hint": "hint"; "returnObject": "returnObject"; "multiple": "multiple"; "disabled": "disabled"; "width": "width"; "selectAll": "selectAll"; "chips": "chips"; "closableChips": "closableChips"; "clearable": "clearable"; "openOnClear": "openOnClear"; "options": "options"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "optionInfo": "optionInfo"; "hideDetails": "hideDetails"; "persistentClear": "persistentClear"; "prefixIcon": "prefixIcon"; "prefixIconSize": "prefixIconSize"; "_value": "value"; }, { "valueChanged": "valueChanged"; }, never, never, true, never>;
67
+ static ɵcmp: i0.ɵɵComponentDeclaration<CpsSelectComponent, "cps-select", never, { "label": "label"; "placeholder": "placeholder"; "hint": "hint"; "returnObject": "returnObject"; "multiple": "multiple"; "disabled": "disabled"; "width": "width"; "selectAll": "selectAll"; "chips": "chips"; "closableChips": "closableChips"; "clearable": "clearable"; "openOnClear": "openOnClear"; "options": "options"; "optionLabel": "optionLabel"; "optionValue": "optionValue"; "optionInfo": "optionInfo"; "hideDetails": "hideDetails"; "persistentClear": "persistentClear"; "prefixIcon": "prefixIcon"; "prefixIconSize": "prefixIconSize"; "loading": "loading"; "_value": "value"; }, { "valueChanged": "valueChanged"; }, never, never, true, never>;
67
68
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cps-ui-kit",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "15 - 16",
6
6
  "@angular/core": "15 - 16",
package/public-api.d.ts CHANGED
@@ -7,4 +7,5 @@ export * from './lib/components/cps-checkbox/cps-checkbox.component';
7
7
  export * from './lib/components/cps-radio/cps-radio.component';
8
8
  export * from './lib/components/cps-tag/cps-tag.component';
9
9
  export * from './lib/components/cps-chip/cps-chip.component';
10
+ export * from './lib/components/cps-progress-linear/cps-progress-linear.component';
10
11
  export * from './lib/utils/colors-utils';