@coreui/angular-pro 5.4.6 → 5.4.8
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/fesm2022/coreui-angular-pro.mjs +893 -908
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/lib/form/form-check/form-check-input.directive.d.ts +3 -6
- package/lib/form/form-check/form-check.component.d.ts +5 -2
- package/lib/range-slider/range-slider.component.d.ts +3 -0
- package/lib/rating/rating.component.d.ts +11 -6
- package/package.json +3 -3
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class FormCheckInputDirective {
|
|
3
4
|
#private;
|
|
5
|
+
static ngAcceptInputType_indeterminate: BooleanInput;
|
|
4
6
|
/**
|
|
5
7
|
* Specifies the type of component.
|
|
6
8
|
* @default 'checkbox'
|
|
@@ -18,12 +20,7 @@ export declare class FormCheckInputDirective {
|
|
|
18
20
|
*/
|
|
19
21
|
readonly valid: import("@angular/core").InputSignal<boolean | undefined>;
|
|
20
22
|
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
21
|
-
/**
|
|
22
|
-
* Set component checked state.
|
|
23
|
-
* @default false
|
|
24
|
-
*/
|
|
25
|
-
readonly checkedInput: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
26
23
|
get checked(): boolean;
|
|
27
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormCheckInputDirective, never>;
|
|
28
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FormCheckInputDirective, "input[cFormCheckInput]", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "indeterminateInput": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; };
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FormCheckInputDirective, "input[cFormCheckInput]", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "indeterminateInput": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
29
26
|
}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
1
2
|
import { FormCheckLabelDirective } from './form-check-label.directive';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class FormCheckComponent {
|
|
5
|
+
static ngAcceptInputType_inline: BooleanInput;
|
|
6
|
+
static ngAcceptInputType_reverse: BooleanInput;
|
|
7
|
+
static ngAcceptInputType_switch: BooleanInput;
|
|
4
8
|
/**
|
|
5
9
|
* Group checkboxes or radios on the same horizontal row.
|
|
6
10
|
* @default false
|
|
@@ -19,12 +23,11 @@ export declare class FormCheckComponent {
|
|
|
19
23
|
readonly sizing: import("@angular/core").InputSignal<string | undefined>;
|
|
20
24
|
/**
|
|
21
25
|
* Render a toggle switch on for checkbox.
|
|
22
|
-
* @
|
|
26
|
+
* @returns boolean
|
|
23
27
|
* @default false
|
|
24
28
|
*/
|
|
25
29
|
readonly switch: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
26
30
|
readonly formCheckLabel: import("@angular/core").Signal<FormCheckLabelDirective | undefined>;
|
|
27
|
-
readonly formCheckClass: import("@angular/core").Signal<boolean>;
|
|
28
31
|
readonly hostClasses: import("@angular/core").Signal<Record<string, boolean>>;
|
|
29
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormCheckComponent, never>;
|
|
30
33
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormCheckComponent, "c-form-check", ["cFormCheck"], { "inline": { "alias": "inline"; "required": false; "isSignal": true; }; "reverse": { "alias": "reverse"; "required": false; "isSignal": true; }; "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; "switch": { "alias": "switch"; "required": false; "isSignal": true; }; }, {}, ["formCheckLabel"], ["*"], true, never>;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
1
2
|
import { ElementRef, OnInit } from '@angular/core';
|
|
2
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
4
|
import { Label, ThumbSize } from './range-slider.type';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class RangeSliderComponent implements ControlValueAccessor, OnInit {
|
|
6
7
|
#private;
|
|
8
|
+
static ngAcceptInputType_disabled: BooleanInput;
|
|
9
|
+
static ngAcceptInputType_vertical: BooleanInput;
|
|
7
10
|
/**
|
|
8
11
|
* Enable or disable clickable labels in the Angular Range Slider.
|
|
9
12
|
* When set to `true`, users can click on labels to adjust the slider's value directly, enhancing interactivity and user experience.
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
1
2
|
import { InputSignalWithTransform } from '@angular/core';
|
|
2
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
4
|
import { TemplateIdDirective } from '../shared';
|
|
@@ -8,6 +9,10 @@ export declare const coerceRatingPrecision: (value: number | string) => number;
|
|
|
8
9
|
export declare const coerceNumber: (value: number | string | null) => number;
|
|
9
10
|
export declare class RatingComponent implements ControlValueAccessor {
|
|
10
11
|
#private;
|
|
12
|
+
static ngAcceptInputType_allowClear: BooleanInput;
|
|
13
|
+
static ngAcceptInputType_disabled: BooleanInput;
|
|
14
|
+
static ngAcceptInputType_highlightOnlySelected: BooleanInput;
|
|
15
|
+
static ngAcceptInputType_readOnly: BooleanInput;
|
|
11
16
|
/**
|
|
12
17
|
* The default icon to display when the item is selected.
|
|
13
18
|
* @type: string | string[]
|
|
@@ -15,19 +20,19 @@ export declare class RatingComponent implements ControlValueAccessor {
|
|
|
15
20
|
readonly activeIcon: InputSignalWithTransform<string[], string | string[]>;
|
|
16
21
|
/**
|
|
17
22
|
* Enables the clearing upon clicking the selected item again.
|
|
18
|
-
* @
|
|
23
|
+
* @returns: boolean
|
|
19
24
|
* @default: false
|
|
20
25
|
*/
|
|
21
26
|
readonly allowClear: InputSignalWithTransform<boolean, unknown>;
|
|
22
27
|
/**
|
|
23
28
|
* Toggle the disabled state for the component.
|
|
24
|
-
* @
|
|
29
|
+
* @return: boolean
|
|
25
30
|
* @default: false
|
|
26
31
|
*/
|
|
27
32
|
readonly disabled: InputSignalWithTransform<boolean, unknown>;
|
|
28
33
|
/**
|
|
29
34
|
* If enabled, only the currently selected icon will be visibly highlighted.
|
|
30
|
-
* @
|
|
35
|
+
* @returns: boolean
|
|
31
36
|
* @default: false
|
|
32
37
|
*/
|
|
33
38
|
readonly highlightOnlySelected: InputSignalWithTransform<boolean, unknown>;
|
|
@@ -39,13 +44,13 @@ export declare class RatingComponent implements ControlValueAccessor {
|
|
|
39
44
|
/**
|
|
40
45
|
* Specifies the total number of stars to be displayed in the star rating component. This property determines the scale of the rating,
|
|
41
46
|
* such as out of 5 stars, 10 stars, etc.
|
|
42
|
-
* @
|
|
47
|
+
* @returns: number
|
|
43
48
|
* @default: 5
|
|
44
49
|
*/
|
|
45
50
|
readonly itemCount: InputSignalWithTransform<number, unknown>;
|
|
46
51
|
/**
|
|
47
52
|
* Minimum increment value change allowed.
|
|
48
|
-
* @
|
|
53
|
+
* @returns: number
|
|
49
54
|
* @default: 1
|
|
50
55
|
*/
|
|
51
56
|
readonly precision: InputSignalWithTransform<number, unknown>;
|
|
@@ -56,7 +61,7 @@ export declare class RatingComponent implements ControlValueAccessor {
|
|
|
56
61
|
*/
|
|
57
62
|
/**
|
|
58
63
|
* Toggle the readonly state for the component.
|
|
59
|
-
* @
|
|
64
|
+
* @returns: boolean
|
|
60
65
|
* @default: false
|
|
61
66
|
*/
|
|
62
67
|
readonly readOnly: InputSignalWithTransform<boolean, unknown>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.8",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"@angular/core": "^19.2.0",
|
|
29
29
|
"@angular/forms": "^19.2.0",
|
|
30
30
|
"@angular/router": "^19.2.0",
|
|
31
|
-
"@coreui/coreui-pro": "~5.10.0",
|
|
32
|
-
"@coreui/icons-angular": "~5.4.
|
|
31
|
+
"@coreui/coreui-pro": "~5.9.0 || ~5.10.0",
|
|
32
|
+
"@coreui/icons-angular": "~5.4.8",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|