@coreui/angular-pro 5.7.21 → 5.7.23
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.23",
|
|
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.23",
|
|
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;
|
|
@@ -78,6 +80,7 @@ declare class HtmlAttributesDirective {
|
|
|
78
80
|
* @returns Record<string, any>
|
|
79
81
|
*/
|
|
80
82
|
readonly cHtmlAttr: _angular_core.InputSignal<Record<string, any> | undefined>;
|
|
83
|
+
constructor();
|
|
81
84
|
private setStyle;
|
|
82
85
|
private addClass;
|
|
83
86
|
private setAttrib;
|
|
@@ -407,7 +410,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
|
407
410
|
* - `'lg'`: Large size variant
|
|
408
411
|
* - `undefined`: Default/medium size
|
|
409
412
|
*/
|
|
410
|
-
readonly sizing: _angular_core.InputSignal<
|
|
413
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
411
414
|
/**
|
|
412
415
|
* Set form input validation state to valid.
|
|
413
416
|
* @default undefined
|
|
@@ -710,7 +713,7 @@ declare class BreadcrumbItemComponent {
|
|
|
710
713
|
readonly active: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
711
714
|
/**
|
|
712
715
|
* The `url` prop for the inner `[routerLink]` directive
|
|
713
|
-
* @returns string
|
|
716
|
+
* @returns string | any[]
|
|
714
717
|
*/
|
|
715
718
|
readonly url: _angular_core.InputSignal<string | any[] | undefined>;
|
|
716
719
|
/**
|
|
@@ -804,7 +807,7 @@ declare class ButtonDirective {
|
|
|
804
807
|
* Size the component small or large.
|
|
805
808
|
* @returns 'sm' | 'lg' | ''
|
|
806
809
|
*/
|
|
807
|
-
readonly size: InputSignal<
|
|
810
|
+
readonly size: InputSignal<"" | "sm" | "lg">;
|
|
808
811
|
/**
|
|
809
812
|
* The tabindex attribute specifies the tab order of an element (when the "tab" button is used for navigating).
|
|
810
813
|
*/
|
|
@@ -852,9 +855,9 @@ declare class ButtonModule {
|
|
|
852
855
|
declare class ButtonGroupComponent {
|
|
853
856
|
/**
|
|
854
857
|
* Size the component small or large.
|
|
855
|
-
* @returns '' | 'sm' | 'lg'
|
|
858
|
+
* @returns '' | 'sm' | 'lg'
|
|
856
859
|
*/
|
|
857
|
-
readonly size: _angular_core.InputSignal<
|
|
860
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
858
861
|
/**
|
|
859
862
|
* Create a set of buttons that appear vertically stacked rather than horizontally. Split button dropdowns are not supported here.
|
|
860
863
|
* @returns boolean
|
|
@@ -1302,6 +1305,10 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1302
1305
|
* @returns string
|
|
1303
1306
|
*/
|
|
1304
1307
|
readonly ariaPrevYearLabel: _angular_core.InputSignal<string>;
|
|
1308
|
+
/**
|
|
1309
|
+
* Event emitted on calendar cell hover.
|
|
1310
|
+
* @returns Date | null
|
|
1311
|
+
*/
|
|
1305
1312
|
readonly calendarCellHover: _angular_core.OutputEmitterRef<Date | null>;
|
|
1306
1313
|
readonly hoverDate: _angular_core.WritableSignal<Date | null>;
|
|
1307
1314
|
readonly hoverDateEffect: _angular_core.EffectRef;
|
|
@@ -1468,7 +1475,7 @@ declare class CardHeaderActionsComponent {
|
|
|
1468
1475
|
declare class CardImgDirective {
|
|
1469
1476
|
/**
|
|
1470
1477
|
* Optionally orientate the image to the top, bottom, or make it overlaid across the card.
|
|
1471
|
-
* @returns
|
|
1478
|
+
* @returns 'top' | 'bottom' | 'start' | 'end'
|
|
1472
1479
|
*/
|
|
1473
1480
|
readonly orientation: _angular_core.InputSignal<"start" | "end" | "top" | "bottom" | undefined>;
|
|
1474
1481
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -1539,7 +1546,7 @@ declare class CarouselComponent implements OnInit, OnDestroy, AfterContentInit {
|
|
|
1539
1546
|
readonly interval: _angular_core.WritableSignal<number>;
|
|
1540
1547
|
/**
|
|
1541
1548
|
* Sets which event handlers you’d like provided to your pause prop. You can specify one trigger or an array of them.
|
|
1542
|
-
* @returns
|
|
1549
|
+
* @returns Triggers | Triggers[] | false
|
|
1543
1550
|
*/
|
|
1544
1551
|
readonly pause: _angular_core.InputSignal<false | Triggers | Triggers[]>;
|
|
1545
1552
|
/**
|
|
@@ -1878,7 +1885,7 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1878
1885
|
* @returns 'sm' | 'lg' | undefined
|
|
1879
1886
|
* @default undefined
|
|
1880
1887
|
*/
|
|
1881
|
-
readonly size: _angular_core.InputSignal<
|
|
1888
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
1882
1889
|
/**
|
|
1883
1890
|
* Keep track of the time with the date value.
|
|
1884
1891
|
* @returns boolean
|
|
@@ -2150,9 +2157,9 @@ declare class DropdownMenuDirective implements OnInit, AfterContentInit {
|
|
|
2150
2157
|
readonly elementRef: ElementRef;
|
|
2151
2158
|
/**
|
|
2152
2159
|
* Set alignment of dropdown menu.
|
|
2153
|
-
* @returns
|
|
2160
|
+
* @returns DropdownAlignment
|
|
2154
2161
|
*/
|
|
2155
|
-
readonly alignment: _angular_core.InputSignal<
|
|
2162
|
+
readonly alignment: _angular_core.InputSignal<DropdownAlignment | undefined>;
|
|
2156
2163
|
/**
|
|
2157
2164
|
* Toggle the visibility of dropdown menu component.
|
|
2158
2165
|
* @returns boolean
|
|
@@ -2161,6 +2168,7 @@ declare class DropdownMenuDirective implements OnInit, AfterContentInit {
|
|
|
2161
2168
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
2162
2169
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
2163
2170
|
readonly hostStyles: _angular_core.Signal<Record<string, any>>;
|
|
2171
|
+
readonly dataPopper: _angular_core.Signal<"static" | null>;
|
|
2164
2172
|
onKeyDown($event: KeyboardEvent): void;
|
|
2165
2173
|
onKeyUp($event: KeyboardEvent): void;
|
|
2166
2174
|
readonly dropdownItemsContent: _angular_core.Signal<readonly DropdownItemDirective[]>;
|
|
@@ -2179,6 +2187,8 @@ interface IDropdownState {
|
|
|
2179
2187
|
declare class DropdownService {
|
|
2180
2188
|
#private;
|
|
2181
2189
|
readonly dropdownState$: rxjs.Observable<any>;
|
|
2190
|
+
readonly alignment: _angular_core.WritableSignal<DropdownAlignment | undefined>;
|
|
2191
|
+
readonly popper: _angular_core.WritableSignal<boolean>;
|
|
2182
2192
|
toggle(state: IDropdownState): void;
|
|
2183
2193
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DropdownService, never>;
|
|
2184
2194
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DropdownService>;
|
|
@@ -2228,18 +2238,21 @@ declare class DropdownComponent implements OnDestroy, OnInit {
|
|
|
2228
2238
|
constructor();
|
|
2229
2239
|
/**
|
|
2230
2240
|
* Set alignment of dropdown menu.
|
|
2231
|
-
* @returns
|
|
2241
|
+
* @returns DropdownAlignment
|
|
2232
2242
|
*/
|
|
2233
|
-
readonly alignment: _angular_core.InputSignal<
|
|
2243
|
+
readonly alignment: _angular_core.InputSignal<DropdownAlignment | undefined>;
|
|
2234
2244
|
/**
|
|
2235
|
-
*
|
|
2245
|
+
* Configure the auto close behavior: `true` closes the dropdown on a click inside or
|
|
2246
|
+
* outside the menu, `false` only on the toggle button or an explicit hide/toggle call
|
|
2247
|
+
* and not on the Esc key, `inside` only on a click inside the menu, `outside` only on
|
|
2248
|
+
* a click outside it.
|
|
2236
2249
|
* @returns boolean | 'inside' | 'outside'
|
|
2237
2250
|
* @default true
|
|
2238
2251
|
*/
|
|
2239
2252
|
readonly autoClose: _angular_core.InputSignal<boolean | "inside" | "outside">;
|
|
2240
2253
|
/**
|
|
2241
2254
|
* Sets a specified direction and location of the dropdown menu.
|
|
2242
|
-
* @returns 'dropup' | 'dropend' | 'dropstart'
|
|
2255
|
+
* @returns 'center' | 'dropup' | 'dropup-center' | 'dropend' | 'dropstart'
|
|
2243
2256
|
*/
|
|
2244
2257
|
readonly direction: _angular_core.InputSignal<"center" | "dropup" | "dropup-center" | "dropend" | "dropstart" | undefined>;
|
|
2245
2258
|
/**
|
|
@@ -2256,8 +2269,10 @@ declare class DropdownComponent implements OnDestroy, OnInit {
|
|
|
2256
2269
|
*/
|
|
2257
2270
|
readonly popper: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2258
2271
|
/**
|
|
2259
|
-
* Optional
|
|
2272
|
+
* Optional Popper.js options object; the `placement` prop takes precedence over the
|
|
2273
|
+
* placement set here. See https://popper.js.org/docs/v2/constructors/#options
|
|
2260
2274
|
* @returns Partial<Options>
|
|
2275
|
+
* @default {}
|
|
2261
2276
|
*/
|
|
2262
2277
|
readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
|
|
2263
2278
|
set popperOptions(value: Partial<Options>);
|
|
@@ -2486,7 +2501,7 @@ declare class FormCheckComponent {
|
|
|
2486
2501
|
* Size the component large or extra large. Works only with `[switch]="true"`
|
|
2487
2502
|
* @default undefined
|
|
2488
2503
|
*/
|
|
2489
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2504
|
+
readonly sizing: _angular_core.InputSignal<"" | "lg" | "xl" | undefined>;
|
|
2490
2505
|
/**
|
|
2491
2506
|
* Render a toggle switch on for checkbox.
|
|
2492
2507
|
* @returns boolean
|
|
@@ -2505,7 +2520,7 @@ declare class FormControlDirective implements OnInit {
|
|
|
2505
2520
|
* Size the component small or large.
|
|
2506
2521
|
* @default undefined
|
|
2507
2522
|
*/
|
|
2508
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2523
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
2509
2524
|
/**
|
|
2510
2525
|
* Set component validation state to valid.
|
|
2511
2526
|
* @default undefined
|
|
@@ -2588,7 +2603,7 @@ declare class FormLabelDirective {
|
|
|
2588
2603
|
* Size the label small or large.
|
|
2589
2604
|
* @default ''
|
|
2590
2605
|
*/
|
|
2591
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2606
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
2592
2607
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
2593
2608
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormLabelDirective, never>;
|
|
2594
2609
|
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 +2640,7 @@ declare class FormPasswordDirective implements OnDestroy, OnInit {
|
|
|
2625
2640
|
* Size the component small or large.
|
|
2626
2641
|
* @default undefined
|
|
2627
2642
|
*/
|
|
2628
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2643
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
2629
2644
|
/**
|
|
2630
2645
|
* Set component validation state to valid.
|
|
2631
2646
|
* @default undefined
|
|
@@ -2651,7 +2666,7 @@ declare class FormSelectDirective {
|
|
|
2651
2666
|
* Size the component small or large.
|
|
2652
2667
|
* @default undefined
|
|
2653
2668
|
*/
|
|
2654
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2669
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
2655
2670
|
/**
|
|
2656
2671
|
* Set component validation state to valid.
|
|
2657
2672
|
* @default undefined
|
|
@@ -2671,7 +2686,7 @@ declare class InputGroupComponent {
|
|
|
2671
2686
|
/**
|
|
2672
2687
|
* Size the component small or large.
|
|
2673
2688
|
*/
|
|
2674
|
-
readonly sizing: _angular_core.InputSignal<
|
|
2689
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
2675
2690
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
2676
2691
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputGroupComponent, never>;
|
|
2677
2692
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputGroupComponent, "c-input-group", never, { "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -3018,7 +3033,7 @@ declare class ListGroupItemDirective {
|
|
|
3018
3033
|
readonly active: InputSignalWithTransform<boolean, unknown>;
|
|
3019
3034
|
/**
|
|
3020
3035
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
3021
|
-
* @returns
|
|
3036
|
+
* @returns Colors
|
|
3022
3037
|
*/
|
|
3023
3038
|
readonly color: InputSignal<string | undefined>;
|
|
3024
3039
|
/**
|
|
@@ -3418,7 +3433,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3418
3433
|
* Size the component small or large.
|
|
3419
3434
|
* @returns 'sm' | 'lg' | undefined
|
|
3420
3435
|
*/
|
|
3421
|
-
readonly size: _angular_core.InputSignal<
|
|
3436
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
3422
3437
|
/**
|
|
3423
3438
|
* Initial value of multi-select
|
|
3424
3439
|
* @returns (TValue | TValue[])
|
|
@@ -3690,8 +3705,7 @@ declare class NavbarTogglerDirective {
|
|
|
3690
3705
|
constructor();
|
|
3691
3706
|
/**
|
|
3692
3707
|
* Reference to navbar collapse element (via # template variable)
|
|
3693
|
-
* @returns
|
|
3694
|
-
* @default 'button'
|
|
3708
|
+
* @returns CollapseDirective
|
|
3695
3709
|
*/
|
|
3696
3710
|
readonly collapseRef: _angular_core.InputSignal<CollapseDirective | undefined>;
|
|
3697
3711
|
/**
|
|
@@ -4151,7 +4165,7 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
|
|
|
4151
4165
|
* Sets the visual size of the Angular one-time password (OTP) input. Use 'sm' for small or 'lg' for large input fields.
|
|
4152
4166
|
* @default: undefined
|
|
4153
4167
|
*/
|
|
4154
|
-
readonly sizing: _angular_core.InputSignal<
|
|
4168
|
+
readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
4155
4169
|
/**
|
|
4156
4170
|
* Input validation type: 'number' for digits only, or 'text' for free text.
|
|
4157
4171
|
* @default: 'number'
|
|
@@ -4244,9 +4258,9 @@ declare class PaginationComponent {
|
|
|
4244
4258
|
readonly align: _angular_core.InputSignal<"" | "start" | "end" | "center">;
|
|
4245
4259
|
/**
|
|
4246
4260
|
* Size the component small or large.
|
|
4247
|
-
* @returns '' | 'sm' | 'lg'
|
|
4261
|
+
* @returns '' | 'sm' | 'lg'
|
|
4248
4262
|
*/
|
|
4249
|
-
readonly size: _angular_core.InputSignal<
|
|
4263
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
4250
4264
|
/**
|
|
4251
4265
|
* Default role for pagination
|
|
4252
4266
|
* @returns string
|
|
@@ -4602,7 +4616,7 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
4602
4616
|
* @returns: 'sm' | 'lg' | 'custom' | undefined
|
|
4603
4617
|
* @default: undefined
|
|
4604
4618
|
*/
|
|
4605
|
-
readonly size: _angular_core.InputSignal<
|
|
4619
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | "custom" | undefined>;
|
|
4606
4620
|
/**
|
|
4607
4621
|
* Enable tooltips with default values or set specific labels for each icon.
|
|
4608
4622
|
* @returns: boolean | string[] | undefined
|
|
@@ -4637,7 +4651,7 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
4637
4651
|
readonly ratingItems: _angular_core.Signal<number[][]>;
|
|
4638
4652
|
readonly ratingItemLabels: _angular_core.Signal<readonly RatingItemLabelComponent[]>;
|
|
4639
4653
|
readonly hostClasses: _angular_core.Signal<{
|
|
4640
|
-
[x: string]:
|
|
4654
|
+
[x: string]: boolean | "" | "sm" | "lg" | "custom" | undefined;
|
|
4641
4655
|
rating: boolean;
|
|
4642
4656
|
disabled: boolean;
|
|
4643
4657
|
readonly: boolean;
|
|
@@ -5498,7 +5512,7 @@ declare class SmartPaginationComponent {
|
|
|
5498
5512
|
* Size the component small or large.
|
|
5499
5513
|
* @values 'sm', 'lg'
|
|
5500
5514
|
*/
|
|
5501
|
-
readonly size: _angular_core.InputSignal<
|
|
5515
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
5502
5516
|
/**
|
|
5503
5517
|
* Default role for pagination.
|
|
5504
5518
|
* @returns string
|
|
@@ -6551,6 +6565,11 @@ declare class TabPaneComponent implements OnDestroy {
|
|
|
6551
6565
|
show: boolean;
|
|
6552
6566
|
active: boolean;
|
|
6553
6567
|
};
|
|
6568
|
+
/**
|
|
6569
|
+
* Element role.
|
|
6570
|
+
* @returns string
|
|
6571
|
+
* @default 'tabpanel'
|
|
6572
|
+
*/
|
|
6554
6573
|
role: string;
|
|
6555
6574
|
ngOnDestroy(): void;
|
|
6556
6575
|
subscribeTabService(subscribe?: boolean): void;
|
|
@@ -6636,7 +6655,7 @@ declare class TabsComponent {
|
|
|
6636
6655
|
readonly tabsService: TabsService;
|
|
6637
6656
|
/**
|
|
6638
6657
|
* The active item key.
|
|
6639
|
-
* @returns
|
|
6658
|
+
* @returns number | string
|
|
6640
6659
|
*/
|
|
6641
6660
|
readonly activeItemKey: _angular_core.ModelSignal<string | number | undefined>;
|
|
6642
6661
|
/**
|
|
@@ -6892,7 +6911,7 @@ declare class TimePickerComponent implements OnChanges, OnInit, AfterViewInit, C
|
|
|
6892
6911
|
* @returns 'sm' | 'lg' | undefined
|
|
6893
6912
|
* @default undefined
|
|
6894
6913
|
*/
|
|
6895
|
-
readonly size: _angular_core.InputSignal<
|
|
6914
|
+
readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
|
|
6896
6915
|
/**
|
|
6897
6916
|
* Initially selected time.
|
|
6898
6917
|
* @returns Date | string | null | number
|
|
@@ -7547,7 +7566,7 @@ declare class WidgetStatFComponent extends CardComponent {
|
|
|
7547
7566
|
readonly title: _angular_core.InputSignal<string | undefined>;
|
|
7548
7567
|
/**
|
|
7549
7568
|
* Value for your widget to display
|
|
7550
|
-
* @returns string
|
|
7569
|
+
* @returns string | number
|
|
7551
7570
|
*/
|
|
7552
7571
|
readonly value: _angular_core.InputSignal<string | number | undefined>;
|
|
7553
7572
|
readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
@@ -7567,4 +7586,4 @@ declare class WidgetModule {
|
|
|
7567
7586
|
}
|
|
7568
7587
|
|
|
7569
7588
|
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 };
|
|
7570
|
-
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 };
|
|
7589
|
+
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 };
|