@coreui/angular-pro 5.7.20 → 5.7.22
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.22",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2026 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@angular/forms": "^22.1.0",
|
|
32
32
|
"@angular/router": "^22.1.0",
|
|
33
33
|
"@coreui/coreui-pro": "^5.27.1",
|
|
34
|
-
"@coreui/icons-angular": "~5.7.
|
|
34
|
+
"@coreui/icons-angular": "~5.7.21",
|
|
35
35
|
"rxjs": "^7.8.2"
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
|
@@ -36,6 +36,8 @@ type BackgroundColors = Colors | 'body' | 'white' | 'transparent';
|
|
|
36
36
|
type Directions = 'down' | 'up' | 'start' | 'end' | '';
|
|
37
37
|
type TextColors = Colors | 'primary-emphasis' | 'secondary-emphasis' | 'success-emphasis' | 'danger-emphasis' | 'warning-emphasis' | 'info-emphasis' | 'light-emphasis' | 'body' | 'body-emphasis' | 'body-secondary' | 'body-tertiary' | 'black' | 'black-50' | 'white' | 'white-50' | string;
|
|
38
38
|
type Alignment = 'baseline' | 'top' | 'middle' | 'bottom' | 'text-top' | 'text-bottom';
|
|
39
|
+
type DropdownDirection = 'start' | 'end';
|
|
40
|
+
type DropdownAlignment = DropdownDirection | Partial<Record<BreakpointInfixStrings, DropdownDirection>>;
|
|
39
41
|
type BadgePositions = 'top-start' | 'top-end' | 'bottom-end' | 'bottom-start' | string | undefined;
|
|
40
42
|
type Placements = 'auto' | 'auto-start' | 'auto-end' | 'top-end' | 'top' | 'top-start' | 'bottom-end' | 'bottom' | 'bottom-start' | 'right-start' | 'right' | 'right-end' | 'left-start' | 'left' | 'left-end' | undefined;
|
|
41
43
|
type Shapes = 'rounded' | 'rounded-top' | 'rounded-end' | 'rounded-bottom' | 'rounded-start' | 'rounded-circle' | 'rounded-pill' | 'rounded-0' | 'rounded-1' | 'rounded-2' | 'rounded-3' | string;
|
|
@@ -407,7 +409,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
|
407
409
|
* - `'lg'`: Large size variant
|
|
408
410
|
* - `undefined`: Default/medium size
|
|
409
411
|
*/
|
|
410
|
-
readonly sizing: _angular_core.InputSignal<
|
|
412
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
411
413
|
/**
|
|
412
414
|
* Set form input validation state to valid.
|
|
413
415
|
* @default undefined
|
|
@@ -710,7 +712,7 @@ declare class BreadcrumbItemComponent {
|
|
|
710
712
|
readonly active: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
711
713
|
/**
|
|
712
714
|
* The `url` prop for the inner `[routerLink]` directive
|
|
713
|
-
* @returns string
|
|
715
|
+
* @returns string | any[]
|
|
714
716
|
*/
|
|
715
717
|
readonly url: _angular_core.InputSignal<string | any[] | undefined>;
|
|
716
718
|
/**
|
|
@@ -804,7 +806,7 @@ declare class ButtonDirective {
|
|
|
804
806
|
* Size the component small or large.
|
|
805
807
|
* @returns 'sm' | 'lg' | ''
|
|
806
808
|
*/
|
|
807
|
-
readonly size: InputSignal<
|
|
809
|
+
readonly size: InputSignal<"" | "sm" | "lg">;
|
|
808
810
|
/**
|
|
809
811
|
* The tabindex attribute specifies the tab order of an element (when the "tab" button is used for navigating).
|
|
810
812
|
*/
|
|
@@ -852,9 +854,9 @@ declare class ButtonModule {
|
|
|
852
854
|
declare class ButtonGroupComponent {
|
|
853
855
|
/**
|
|
854
856
|
* Size the component small or large.
|
|
855
|
-
* @returns '' | 'sm' | 'lg'
|
|
857
|
+
* @returns '' | 'sm' | 'lg'
|
|
856
858
|
*/
|
|
857
|
-
readonly size: _angular_core.InputSignal<
|
|
859
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
858
860
|
/**
|
|
859
861
|
* Create a set of buttons that appear vertically stacked rather than horizontally. Split button dropdowns are not supported here.
|
|
860
862
|
* @returns boolean
|
|
@@ -1302,6 +1304,10 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1302
1304
|
* @returns string
|
|
1303
1305
|
*/
|
|
1304
1306
|
readonly ariaPrevYearLabel: _angular_core.InputSignal<string>;
|
|
1307
|
+
/**
|
|
1308
|
+
* Event emitted on calendar cell hover.
|
|
1309
|
+
* @returns Date | null
|
|
1310
|
+
*/
|
|
1305
1311
|
readonly calendarCellHover: _angular_core.OutputEmitterRef<Date | null>;
|
|
1306
1312
|
readonly hoverDate: _angular_core.WritableSignal<Date | null>;
|
|
1307
1313
|
readonly hoverDateEffect: _angular_core.EffectRef;
|
|
@@ -1468,7 +1474,7 @@ declare class CardHeaderActionsComponent {
|
|
|
1468
1474
|
declare class CardImgDirective {
|
|
1469
1475
|
/**
|
|
1470
1476
|
* Optionally orientate the image to the top, bottom, or make it overlaid across the card.
|
|
1471
|
-
* @returns
|
|
1477
|
+
* @returns 'top' | 'bottom' | 'start' | 'end'
|
|
1472
1478
|
*/
|
|
1473
1479
|
readonly orientation: _angular_core.InputSignal<"start" | "end" | "top" | "bottom" | undefined>;
|
|
1474
1480
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -1539,7 +1545,7 @@ declare class CarouselComponent implements OnInit, OnDestroy, AfterContentInit {
|
|
|
1539
1545
|
readonly interval: _angular_core.WritableSignal<number>;
|
|
1540
1546
|
/**
|
|
1541
1547
|
* Sets which event handlers you’d like provided to your pause prop. You can specify one trigger or an array of them.
|
|
1542
|
-
* @returns
|
|
1548
|
+
* @returns Triggers | Triggers[] | false
|
|
1543
1549
|
*/
|
|
1544
1550
|
readonly pause: _angular_core.InputSignal<false | Triggers | Triggers[]>;
|
|
1545
1551
|
/**
|
|
@@ -1878,7 +1884,7 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1878
1884
|
* @returns 'sm' | 'lg' | undefined
|
|
1879
1885
|
* @default undefined
|
|
1880
1886
|
*/
|
|
1881
|
-
readonly size: _angular_core.InputSignal<
|
|
1887
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
1882
1888
|
/**
|
|
1883
1889
|
* Keep track of the time with the date value.
|
|
1884
1890
|
* @returns boolean
|
|
@@ -2150,9 +2156,9 @@ declare class DropdownMenuDirective implements OnInit, AfterContentInit {
|
|
|
2150
2156
|
readonly elementRef: ElementRef;
|
|
2151
2157
|
/**
|
|
2152
2158
|
* Set alignment of dropdown menu.
|
|
2153
|
-
* @returns
|
|
2159
|
+
* @returns DropdownAlignment
|
|
2154
2160
|
*/
|
|
2155
|
-
readonly alignment: _angular_core.InputSignal<
|
|
2161
|
+
readonly alignment: _angular_core.InputSignal<DropdownAlignment | undefined>;
|
|
2156
2162
|
/**
|
|
2157
2163
|
* Toggle the visibility of dropdown menu component.
|
|
2158
2164
|
* @returns boolean
|
|
@@ -2179,6 +2185,7 @@ interface IDropdownState {
|
|
|
2179
2185
|
declare class DropdownService {
|
|
2180
2186
|
#private;
|
|
2181
2187
|
readonly dropdownState$: rxjs.Observable<any>;
|
|
2188
|
+
readonly alignment: _angular_core.WritableSignal<DropdownAlignment | undefined>;
|
|
2182
2189
|
toggle(state: IDropdownState): void;
|
|
2183
2190
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DropdownService, never>;
|
|
2184
2191
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DropdownService>;
|
|
@@ -2228,18 +2235,21 @@ declare class DropdownComponent implements OnDestroy, OnInit {
|
|
|
2228
2235
|
constructor();
|
|
2229
2236
|
/**
|
|
2230
2237
|
* Set alignment of dropdown menu.
|
|
2231
|
-
* @returns
|
|
2238
|
+
* @returns DropdownAlignment
|
|
2232
2239
|
*/
|
|
2233
|
-
readonly alignment: _angular_core.InputSignal<
|
|
2240
|
+
readonly alignment: _angular_core.InputSignal<DropdownAlignment | undefined>;
|
|
2234
2241
|
/**
|
|
2235
|
-
*
|
|
2242
|
+
* Configure the auto close behavior: `true` closes the dropdown on a click inside or
|
|
2243
|
+
* outside the menu, `false` only on the toggle button or an explicit hide/toggle call
|
|
2244
|
+
* and not on the Esc key, `inside` only on a click inside the menu, `outside` only on
|
|
2245
|
+
* a click outside it.
|
|
2236
2246
|
* @returns boolean | 'inside' | 'outside'
|
|
2237
2247
|
* @default true
|
|
2238
2248
|
*/
|
|
2239
2249
|
readonly autoClose: _angular_core.InputSignal<boolean | "inside" | "outside">;
|
|
2240
2250
|
/**
|
|
2241
2251
|
* Sets a specified direction and location of the dropdown menu.
|
|
2242
|
-
* @returns 'dropup' | 'dropend' | 'dropstart'
|
|
2252
|
+
* @returns 'center' | 'dropup' | 'dropup-center' | 'dropend' | 'dropstart'
|
|
2243
2253
|
*/
|
|
2244
2254
|
readonly direction: _angular_core.InputSignal<"center" | "dropup" | "dropup-center" | "dropend" | "dropstart" | undefined>;
|
|
2245
2255
|
/**
|
|
@@ -2256,8 +2266,10 @@ declare class DropdownComponent implements OnDestroy, OnInit {
|
|
|
2256
2266
|
*/
|
|
2257
2267
|
readonly popper: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2258
2268
|
/**
|
|
2259
|
-
* Optional
|
|
2269
|
+
* Optional Popper.js options object; the `placement` prop takes precedence over the
|
|
2270
|
+
* placement set here. See https://popper.js.org/docs/v2/constructors/#options
|
|
2260
2271
|
* @returns Partial<Options>
|
|
2272
|
+
* @default {}
|
|
2261
2273
|
*/
|
|
2262
2274
|
readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
|
|
2263
2275
|
set popperOptions(value: Partial<Options>);
|
|
@@ -2486,7 +2498,7 @@ declare class FormCheckComponent {
|
|
|
2486
2498
|
* Size the component large or extra large. Works only with `[switch]="true"`
|
|
2487
2499
|
* @default undefined
|
|
2488
2500
|
*/
|
|
2489
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2501
|
+
readonly sizing: _angular_core.InputSignal<"" | "lg" | "xl" | undefined>;
|
|
2490
2502
|
/**
|
|
2491
2503
|
* Render a toggle switch on for checkbox.
|
|
2492
2504
|
* @returns boolean
|
|
@@ -2505,7 +2517,7 @@ declare class FormControlDirective implements OnInit {
|
|
|
2505
2517
|
* Size the component small or large.
|
|
2506
2518
|
* @default undefined
|
|
2507
2519
|
*/
|
|
2508
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2520
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
2509
2521
|
/**
|
|
2510
2522
|
* Set component validation state to valid.
|
|
2511
2523
|
* @default undefined
|
|
@@ -2588,7 +2600,7 @@ declare class FormLabelDirective {
|
|
|
2588
2600
|
* Size the label small or large.
|
|
2589
2601
|
* @default ''
|
|
2590
2602
|
*/
|
|
2591
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2603
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
2592
2604
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
2593
2605
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormLabelDirective, never>;
|
|
2594
2606
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FormLabelDirective, "[cLabel]", never, { "col": { "alias": "cLabel"; "required": false; "isSignal": true; }; "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -2625,7 +2637,7 @@ declare class FormPasswordDirective implements OnDestroy, OnInit {
|
|
|
2625
2637
|
* Size the component small or large.
|
|
2626
2638
|
* @default undefined
|
|
2627
2639
|
*/
|
|
2628
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2640
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
2629
2641
|
/**
|
|
2630
2642
|
* Set component validation state to valid.
|
|
2631
2643
|
* @default undefined
|
|
@@ -2651,7 +2663,7 @@ declare class FormSelectDirective {
|
|
|
2651
2663
|
* Size the component small or large.
|
|
2652
2664
|
* @default undefined
|
|
2653
2665
|
*/
|
|
2654
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2666
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
2655
2667
|
/**
|
|
2656
2668
|
* Set component validation state to valid.
|
|
2657
2669
|
* @default undefined
|
|
@@ -2671,7 +2683,7 @@ declare class InputGroupComponent {
|
|
|
2671
2683
|
/**
|
|
2672
2684
|
* Size the component small or large.
|
|
2673
2685
|
*/
|
|
2674
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2686
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
2675
2687
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
2676
2688
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputGroupComponent, never>;
|
|
2677
2689
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputGroupComponent, "c-input-group", never, { "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -3018,7 +3030,7 @@ declare class ListGroupItemDirective {
|
|
|
3018
3030
|
readonly active: InputSignalWithTransform<boolean, unknown>;
|
|
3019
3031
|
/**
|
|
3020
3032
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
3021
|
-
* @returns
|
|
3033
|
+
* @returns Colors
|
|
3022
3034
|
*/
|
|
3023
3035
|
readonly color: InputSignal<string | undefined>;
|
|
3024
3036
|
/**
|
|
@@ -3418,7 +3430,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3418
3430
|
* Size the component small or large.
|
|
3419
3431
|
* @returns 'sm' | 'lg' | undefined
|
|
3420
3432
|
*/
|
|
3421
|
-
readonly size: _angular_core.InputSignal<
|
|
3433
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
3422
3434
|
/**
|
|
3423
3435
|
* Initial value of multi-select
|
|
3424
3436
|
* @returns (TValue | TValue[])
|
|
@@ -3690,8 +3702,7 @@ declare class NavbarTogglerDirective {
|
|
|
3690
3702
|
constructor();
|
|
3691
3703
|
/**
|
|
3692
3704
|
* Reference to navbar collapse element (via # template variable)
|
|
3693
|
-
* @returns
|
|
3694
|
-
* @default 'button'
|
|
3705
|
+
* @returns CollapseDirective
|
|
3695
3706
|
*/
|
|
3696
3707
|
readonly collapseRef: _angular_core.InputSignal<CollapseDirective | undefined>;
|
|
3697
3708
|
/**
|
|
@@ -3929,6 +3940,13 @@ declare class OffcanvasComponent implements OnInit, OnDestroy {
|
|
|
3929
3940
|
* @default true
|
|
3930
3941
|
*/
|
|
3931
3942
|
readonly backdrop: _angular_core.InputSignal<boolean | "static">;
|
|
3943
|
+
/**
|
|
3944
|
+
* Appends the offcanvas to a specific element. You can pass an HTML element or function that returns a single element. By default, `document.body`.
|
|
3945
|
+
* @since 5.7.21
|
|
3946
|
+
* @returns Element | (() => Element | null) | null
|
|
3947
|
+
* @default document.body
|
|
3948
|
+
*/
|
|
3949
|
+
readonly container: _angular_core.InputSignal<Element | (() => Element | null) | null>;
|
|
3932
3950
|
/**
|
|
3933
3951
|
* Closes the offcanvas when the escape key is pressed
|
|
3934
3952
|
* @returns boolean
|
|
@@ -3941,6 +3959,13 @@ declare class OffcanvasComponent implements OnInit, OnDestroy {
|
|
|
3941
3959
|
* @default 'start'
|
|
3942
3960
|
*/
|
|
3943
3961
|
readonly placement: _angular_core.InputSignal<string>;
|
|
3962
|
+
/**
|
|
3963
|
+
* Generates offcanvas using a portal
|
|
3964
|
+
* @since 5.7.21
|
|
3965
|
+
* @returns boolean
|
|
3966
|
+
* @default false
|
|
3967
|
+
*/
|
|
3968
|
+
readonly portal: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3944
3969
|
/**
|
|
3945
3970
|
* Responsive offcanvas property hides content outside the viewport from a specified breakpoint and down.
|
|
3946
3971
|
* @returns boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
|
@@ -3978,6 +4003,9 @@ declare class OffcanvasComponent implements OnInit, OnDestroy {
|
|
|
3978
4003
|
*/
|
|
3979
4004
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3980
4005
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
4006
|
+
protected readonly domPortal: DomPortal<any>;
|
|
4007
|
+
protected domPortalOutlet: DomPortalOutlet;
|
|
4008
|
+
protected domPortalCleanup: () => void;
|
|
3981
4009
|
readonly visibleEffect: _angular_core.EffectRef;
|
|
3982
4010
|
/**
|
|
3983
4011
|
* Event triggered on visible change.
|
|
@@ -4000,7 +4028,7 @@ declare class OffcanvasComponent implements OnInit, OnDestroy {
|
|
|
4000
4028
|
protected setBackdrop(setBackdrop: boolean | 'static'): void;
|
|
4001
4029
|
private layoutChangeSubscribe;
|
|
4002
4030
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OffcanvasComponent, never>;
|
|
4003
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OffcanvasComponent, "c-offcanvas", ["cOffcanvas"], { "backdrop": { "alias": "backdrop"; "required": false; "isSignal": true; }; "keyboard": { "alias": "keyboard"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "responsive": { "alias": "responsive"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "ariaModal": { "alias": "ariaModal"; "required": false; "isSignal": true; }; "scroll": { "alias": "scroll"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, never, ["*"], true, [{ directive: typeof ThemeDirective; inputs: { "dark": "dark"; }; outputs: {}; }]>;
|
|
4031
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OffcanvasComponent, "c-offcanvas", ["cOffcanvas"], { "backdrop": { "alias": "backdrop"; "required": false; "isSignal": true; }; "container": { "alias": "container"; "required": false; "isSignal": true; }; "keyboard": { "alias": "keyboard"; "required": false; "isSignal": true; }; "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "portal": { "alias": "portal"; "required": false; "isSignal": true; }; "responsive": { "alias": "responsive"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "ariaModal": { "alias": "ariaModal"; "required": false; "isSignal": true; }; "scroll": { "alias": "scroll"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, never, ["*"], true, [{ directive: typeof ThemeDirective; inputs: { "dark": "dark"; }; outputs: {}; }]>;
|
|
4004
4032
|
}
|
|
4005
4033
|
|
|
4006
4034
|
declare class OffcanvasBodyComponent {
|
|
@@ -4134,7 +4162,7 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
|
|
|
4134
4162
|
* Sets the visual size of the Angular one-time password (OTP) input. Use 'sm' for small or 'lg' for large input fields.
|
|
4135
4163
|
* @default: undefined
|
|
4136
4164
|
*/
|
|
4137
|
-
readonly sizing: _angular_core.InputSignal<
|
|
4165
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
4138
4166
|
/**
|
|
4139
4167
|
* Input validation type: 'number' for digits only, or 'text' for free text.
|
|
4140
4168
|
* @default: 'number'
|
|
@@ -4227,9 +4255,9 @@ declare class PaginationComponent {
|
|
|
4227
4255
|
readonly align: _angular_core.InputSignal<"" | "start" | "end" | "center">;
|
|
4228
4256
|
/**
|
|
4229
4257
|
* Size the component small or large.
|
|
4230
|
-
* @returns '' | 'sm' | 'lg'
|
|
4258
|
+
* @returns '' | 'sm' | 'lg'
|
|
4231
4259
|
*/
|
|
4232
|
-
readonly size: _angular_core.InputSignal<
|
|
4260
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
4233
4261
|
/**
|
|
4234
4262
|
* Default role for pagination
|
|
4235
4263
|
* @returns string
|
|
@@ -4585,7 +4613,7 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
4585
4613
|
* @returns: 'sm' | 'lg' | 'custom' | undefined
|
|
4586
4614
|
* @default: undefined
|
|
4587
4615
|
*/
|
|
4588
|
-
readonly size: _angular_core.InputSignal<
|
|
4616
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | "custom" | undefined>;
|
|
4589
4617
|
/**
|
|
4590
4618
|
* Enable tooltips with default values or set specific labels for each icon.
|
|
4591
4619
|
* @returns: boolean | string[] | undefined
|
|
@@ -4620,7 +4648,7 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
4620
4648
|
readonly ratingItems: _angular_core.Signal<number[][]>;
|
|
4621
4649
|
readonly ratingItemLabels: _angular_core.Signal<readonly RatingItemLabelComponent[]>;
|
|
4622
4650
|
readonly hostClasses: _angular_core.Signal<{
|
|
4623
|
-
[x: string]:
|
|
4651
|
+
[x: string]: boolean | "" | "sm" | "lg" | "custom" | undefined;
|
|
4624
4652
|
rating: boolean;
|
|
4625
4653
|
disabled: boolean;
|
|
4626
4654
|
readonly: boolean;
|
|
@@ -5481,7 +5509,7 @@ declare class SmartPaginationComponent {
|
|
|
5481
5509
|
* Size the component small or large.
|
|
5482
5510
|
* @values 'sm', 'lg'
|
|
5483
5511
|
*/
|
|
5484
|
-
readonly size: _angular_core.InputSignal<
|
|
5512
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
5485
5513
|
/**
|
|
5486
5514
|
* Default role for pagination.
|
|
5487
5515
|
* @returns string
|
|
@@ -6534,6 +6562,11 @@ declare class TabPaneComponent implements OnDestroy {
|
|
|
6534
6562
|
show: boolean;
|
|
6535
6563
|
active: boolean;
|
|
6536
6564
|
};
|
|
6565
|
+
/**
|
|
6566
|
+
* Element role.
|
|
6567
|
+
* @returns string
|
|
6568
|
+
* @default 'tabpanel'
|
|
6569
|
+
*/
|
|
6537
6570
|
role: string;
|
|
6538
6571
|
ngOnDestroy(): void;
|
|
6539
6572
|
subscribeTabService(subscribe?: boolean): void;
|
|
@@ -6619,7 +6652,7 @@ declare class TabsComponent {
|
|
|
6619
6652
|
readonly tabsService: TabsService;
|
|
6620
6653
|
/**
|
|
6621
6654
|
* The active item key.
|
|
6622
|
-
* @returns
|
|
6655
|
+
* @returns number | string
|
|
6623
6656
|
*/
|
|
6624
6657
|
readonly activeItemKey: _angular_core.ModelSignal<string | number | undefined>;
|
|
6625
6658
|
/**
|
|
@@ -6875,7 +6908,7 @@ declare class TimePickerComponent implements OnChanges, OnInit, AfterViewInit, C
|
|
|
6875
6908
|
* @returns 'sm' | 'lg' | undefined
|
|
6876
6909
|
* @default undefined
|
|
6877
6910
|
*/
|
|
6878
|
-
readonly size: _angular_core.InputSignal<
|
|
6911
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
6879
6912
|
/**
|
|
6880
6913
|
* Initially selected time.
|
|
6881
6914
|
* @returns Date | string | null | number
|
|
@@ -7530,7 +7563,7 @@ declare class WidgetStatFComponent extends CardComponent {
|
|
|
7530
7563
|
readonly title: _angular_core.InputSignal<string | undefined>;
|
|
7531
7564
|
/**
|
|
7532
7565
|
* Value for your widget to display
|
|
7533
|
-
* @returns string
|
|
7566
|
+
* @returns string | number
|
|
7534
7567
|
*/
|
|
7535
7568
|
readonly value: _angular_core.InputSignal<string | number | undefined>;
|
|
7536
7569
|
readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
@@ -7550,4 +7583,4 @@ declare class WidgetModule {
|
|
|
7550
7583
|
}
|
|
7551
7584
|
|
|
7552
7585
|
export { AccordionButtonDirective, AccordionComponent, AccordionItemComponent, AccordionModule, AlertComponent, AlertHeadingDirective, AlertLinkDirective, AlertModule, AlignDirective, AutocompleteDirective, AutocompleteModule, AvatarComponent, AvatarModule, BackdropService, BadgeComponent, BadgeModule, BgColorDirective, BorderDirective, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, BreadcrumbRouterComponent, BreadcrumbRouterService, BreakpointInfix, ButtonCloseDirective, ButtonDirective, ButtonGroupComponent, ButtonGroupModule, ButtonModule, ButtonToolbarComponent, CalendarComponent, CalendarModule, CalendarMonthComponent, CalendarNavigationComponent, CalloutComponent, CalloutModule, CardBodyComponent, CardComponent, CardFooterComponent, CardGroupComponent, CardHeaderActionsComponent, CardHeaderComponent, CardImgDirective, CardImgOverlayComponent, CardLinkDirective, CardModule, CardSubtitleDirective, CardTextDirective, CardTitleDirective, CarouselCaptionComponent, CarouselComponent, CarouselConfig, CarouselControlComponent, CarouselIndicatorsComponent, CarouselInnerComponent, CarouselItemComponent, CarouselModule, ClassToggleService, ColComponent, ColDirective, CollapseDirective, CollapseModule, ColorModeService, ContainerComponent, DatePickerComponent, DatePickerModule, DateRangePickerComponent, DateRangePickerModule, DropdownCloseDirective, DropdownComponent, DropdownDividerDirective, DropdownHeaderDirective, DropdownItemDirective, DropdownItemPlainDirective, DropdownMenuDirective, DropdownModule, DropdownService, DropdownToggleDirective, ElementCoverComponent, ElementCoverModule, ElementRefDirective, FooterComponent, FooterModule, FormCheckComponent, FormCheckInputDirective, FormCheckLabelDirective, FormControlDirective, FormDirective, FormFeedbackComponent, FormFloatingDirective, FormLabelDirective, FormModule, FormPasswordDirective, FormSelectDirective, FormTextDirective, GridModule, GutterDirective, HeaderBrandComponent, HeaderComponent, HeaderDividerComponent, HeaderModule, HeaderNavComponent, HeaderTextComponent, HeaderTogglerDirective, HtmlAttributesDirective, ImgDirective, ImgModule, InMemoryStorageService, InputGroupComponent, InputGroupTextDirective, IntersectionService, ListGroupDirective, ListGroupItemDirective, ListGroupModule, ListenersService, LoadingButtonComponent, LoadingButtonModule, LocalStorageService, ModalBodyComponent, ModalComponent, ModalContentComponent, ModalDialogComponent, ModalFooterComponent, ModalHeaderComponent, ModalModule, ModalService, ModalTitleDirective, ModalToggleDirective, MultiSelectComponent, MultiSelectModule, MultiSelectOptgroupComponent, MultiSelectOptgroupLabelComponent, MultiSelectOptionComponent, NavComponent, NavItemComponent, NavLinkDirective, NavModule, NavbarBrandDirective, NavbarComponent, NavbarModule, NavbarNavComponent, NavbarTextComponent, NavbarTogglerDirective, OffcanvasBodyComponent, OffcanvasComponent, OffcanvasHeaderComponent, OffcanvasModule, OffcanvasService, OffcanvasTitleDirective, OffcanvasToggleDirective, OneTimePasswordComponent, OneTimePasswordModule, OtpDirective, PageItemComponent, PageItemDirective, PageLinkDirective, PaginationComponent, PaginationModule, PlaceholderAnimationDirective, PlaceholderDirective, PlaceholderModule, PopoverComponent, PopoverDirective, PopoverModule, ProgressBarComponent, ProgressBarDirective, ProgressComponent, ProgressModule, ProgressStackedComponent, RangeSliderComponent, RangeSliderModule, RatingComponent, RatingModule, RoundedDirective, RowComponent, RowDirective, RtlService, SearchButtonComponent, SearchButtonModule, ShadowOnScrollDirective, SharedModule, SidebarBrandComponent, SidebarComponent, SidebarFooterComponent, SidebarHeaderComponent, SidebarModule, SidebarNavComponent, SidebarNavHelper, SidebarService, SidebarToggleDirective, SidebarTogglerDirective, SmartPaginationComponent, SmartPaginationModule, SmartTableComponent, SmartTableFilterComponent, SmartTableModule, SpinnerComponent, SpinnerModule, StepButtonDirective, StepperComponent, StepperModule, StepperStepComponent, TabContentComponent, TabContentRefDirective, TabDirective, TabPaneComponent, TabPanelComponent, TabService, TableActiveDirective, TableColorDirective, TableDirective, TableModule, Tabs2Module, TabsComponent, TabsContentComponent, TabsListComponent, TabsModule, TabsService, TemplateIdDirective, TextBgColorDirective, TextColorDirective, ThemeDirective, TimePickerComponent, TimePickerModule, ToastBodyComponent, ToastCloseDirective, ToastComponent, ToastContentComponent, ToastHeaderComponent, ToastModule, ToasterComponent, ToasterHostDirective, ToasterPlacement, ToasterService, TooltipComponent, TooltipDirective, TooltipModule, UIDService, UtilitiesModule, WidgetModule, WidgetStatAComponent, WidgetStatBComponent, WidgetStatCComponent, WidgetStatDComponent, WidgetStatEComponent, WidgetStatFComponent };
|
|
7553
|
-
export type { Alignment, AutocompleteOption, BackgroundColors, BadgePositions, BooleanInput, BreakpointInfixStrings, Breakpoints, ButtonType, ColorMode, Colors, Directions, IAutocompleteOption, IAutocompleteOptionBase, IAutocompleteOptionNorm, IBreadcrumbItem, ICalendarRanges, IColumn, IColumnFilter, IColumnFilterValue, IGroup, IIntersectionObserverInit, IItem, IItemInternal, IListenersConfig, INavAttributes$1 as INavAttributes, INavData, INavLinkProps$1 as INavLinkProps, IOption, IProgress, IProgressBar, IProgressBarStacked, ISmartTable, ISorter, ISorterValue, ITableCellProps, ITableFilter, ITableHeaderCellProps, ITableSectionProps, InputType, ItemsPerPageSelect, Label, NgCssClass, NumberInput, Placements, Positions, Search, SearchButtonShortcut, SearchFn, Shapes, Sizes, SortOrder, StepperRef, StepperStepData, StepperStepValidationResult, TToasterPlacement, TextColors, ThumbSize, Triggers, ValueOrigin };
|
|
7586
|
+
export type { Alignment, AutocompleteOption, BackgroundColors, BadgePositions, BooleanInput, BreakpointInfixStrings, Breakpoints, ButtonType, ColorMode, Colors, Directions, DropdownAlignment, DropdownDirection, IAutocompleteOption, IAutocompleteOptionBase, IAutocompleteOptionNorm, IBreadcrumbItem, ICalendarRanges, IColumn, IColumnFilter, IColumnFilterValue, IGroup, IIntersectionObserverInit, IItem, IItemInternal, IListenersConfig, INavAttributes$1 as INavAttributes, INavData, INavLinkProps$1 as INavLinkProps, IOption, IProgress, IProgressBar, IProgressBarStacked, ISmartTable, ISorter, ISorterValue, ITableCellProps, ITableFilter, ITableHeaderCellProps, ITableSectionProps, InputType, ItemsPerPageSelect, Label, NgCssClass, NumberInput, Placements, Positions, Search, SearchButtonShortcut, SearchFn, Shapes, Sizes, SortOrder, StepperRef, StepperStepData, StepperStepValidationResult, TToasterPlacement, TextColors, ThumbSize, Triggers, ValueOrigin };
|