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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cps-ui-kit",
3
- "version": "17.24.0",
3
+ "version": "17.26.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",
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';