cps-ui-kit 0.142.0 → 0.144.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.
- package/esm2020/lib/components/cps-expansion-panel/cps-expansion-panel.component.mjs +15 -7
- package/fesm2015/cps-ui-kit.mjs +14 -6
- package/fesm2015/cps-ui-kit.mjs.map +1 -1
- package/fesm2020/cps-ui-kit.mjs +14 -6
- package/fesm2020/cps-ui-kit.mjs.map +1 -1
- package/lib/components/cps-expansion-panel/cps-expansion-panel.component.d.ts +6 -1
- package/package.json +1 -1
|
@@ -41,6 +41,11 @@ export declare class CpsExpansionPanelComponent implements OnInit {
|
|
|
41
41
|
* @group Props
|
|
42
42
|
*/
|
|
43
43
|
borderRadius: number | string;
|
|
44
|
+
/**
|
|
45
|
+
* Border color of the expansion panel.
|
|
46
|
+
* @group Props
|
|
47
|
+
*/
|
|
48
|
+
borderColor: string;
|
|
44
49
|
/**
|
|
45
50
|
* The width of the expansion panel of type number denoting pixels or string.
|
|
46
51
|
* @group Props
|
|
@@ -66,5 +71,5 @@ export declare class CpsExpansionPanelComponent implements OnInit {
|
|
|
66
71
|
ngOnInit(): void;
|
|
67
72
|
toggleExpansion(): void;
|
|
68
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<CpsExpansionPanelComponent, never>;
|
|
69
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CpsExpansionPanelComponent, "cps-expansion-panel", never, { "headerTitle": "headerTitle"; "backgroundColor": "backgroundColor"; "showChevron": "showChevron"; "isExpanded": "isExpanded"; "disabled": "disabled"; "bordered": "bordered"; "borderRadius": "borderRadius"; "width": "width"; "prefixIcon": "prefixIcon"; }, { "afterCollapse": "afterCollapse"; "afterExpand": "afterExpand"; }, never, ["*"], true, never>;
|
|
74
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CpsExpansionPanelComponent, "cps-expansion-panel", never, { "headerTitle": "headerTitle"; "backgroundColor": "backgroundColor"; "showChevron": "showChevron"; "isExpanded": "isExpanded"; "disabled": "disabled"; "bordered": "bordered"; "borderRadius": "borderRadius"; "borderColor": "borderColor"; "width": "width"; "prefixIcon": "prefixIcon"; }, { "afterCollapse": "afterCollapse"; "afterExpand": "afterExpand"; }, never, ["*"], true, never>;
|
|
70
75
|
}
|