cps-ui-kit 17.24.0 → 17.26.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/README.md +1 -0
- package/assets/icons.svg +1 -0
- package/esm2022/lib/components/cps-divider/cps-divider.component.mjs +46 -0
- package/esm2022/lib/components/cps-icon/cps-icon.component.mjs +2 -1
- package/esm2022/lib/components/cps-table/cps-table.component.mjs +3 -3
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/cps-ui-kit.mjs +47 -4
- package/fesm2022/cps-ui-kit.mjs.map +1 -1
- package/lib/components/cps-divider/cps-divider.component.d.ts +26 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* CpsDividerComponent is a component that can be used to separate content.
|
|
4
|
+
* @group Components
|
|
5
|
+
*/
|
|
6
|
+
export declare class CpsDividerComponent {
|
|
7
|
+
/**
|
|
8
|
+
* Determines whether the divider is vertically aligned.
|
|
9
|
+
* @group Props
|
|
10
|
+
*/
|
|
11
|
+
vertical: import("@angular/core").InputSignal<boolean>;
|
|
12
|
+
/**
|
|
13
|
+
* Color of the divider.
|
|
14
|
+
* @group Props
|
|
15
|
+
*/
|
|
16
|
+
color: import("@angular/core").InputSignal<string>;
|
|
17
|
+
/**
|
|
18
|
+
* Thickness of the divider, a number denoting pixels or a string.
|
|
19
|
+
* @group Props
|
|
20
|
+
*/
|
|
21
|
+
thickness: import("@angular/core").InputSignal<string | number>;
|
|
22
|
+
private _dividerColor;
|
|
23
|
+
private _dividerThickness;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CpsDividerComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CpsDividerComponent, "cps-divider", never, { "vertical": { "alias": "vertical"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "thickness": { "alias": "thickness"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
26
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export * from './lib/components/cps-timepicker/cps-timepicker.component';
|
|
|
40
40
|
export * from './lib/components/cps-file-upload/cps-file-upload.component';
|
|
41
41
|
export * from './lib/components/cps-scheduler/cps-scheduler.component';
|
|
42
42
|
export * from './lib/components/cps-switch/cps-switch.component';
|
|
43
|
+
export * from './lib/components/cps-divider/cps-divider.component';
|
|
43
44
|
export * from './lib/directives/cps-tooltip/cps-tooltip.directive';
|
|
44
45
|
export * from './lib/services/cps-dialog/cps-dialog.service';
|
|
45
46
|
export * from './lib/services/cps-dialog/utils/cps-dialog-config';
|