@coreui/angular-pro 5.7.9 → 5.7.11
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 -1
- package/fesm2022/coreui-angular-pro.mjs +1155 -949
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/package.json +9 -9
- package/types/coreui-angular-pro.d.ts +229 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.11",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2026 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -23,15 +23,15 @@
|
|
|
23
23
|
},
|
|
24
24
|
"sideEffects": false,
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@angular/animations": "^22.
|
|
27
|
-
"@angular/aria": "^22.
|
|
28
|
-
"@angular/cdk": "^22.
|
|
29
|
-
"@angular/common": "^22.
|
|
30
|
-
"@angular/core": "^22.
|
|
31
|
-
"@angular/forms": "^22.
|
|
32
|
-
"@angular/router": "^22.
|
|
26
|
+
"@angular/animations": "^22.1.0",
|
|
27
|
+
"@angular/aria": "^22.1.0",
|
|
28
|
+
"@angular/cdk": "^22.1.0",
|
|
29
|
+
"@angular/common": "^22.1.0",
|
|
30
|
+
"@angular/core": "^22.1.0",
|
|
31
|
+
"@angular/forms": "^22.1.0",
|
|
32
|
+
"@angular/router": "^22.1.0",
|
|
33
33
|
"@coreui/coreui-pro": "^5.27.0",
|
|
34
|
-
"@coreui/icons-angular": "~5.7.
|
|
34
|
+
"@coreui/icons-angular": "~5.7.11",
|
|
35
35
|
"rxjs": "^7.8.2"
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IsActiveMatchOptions, UrlTree, Router, NavigationEnd } from '@angular/router';
|
|
2
2
|
import * as _angular_core from '@angular/core';
|
|
3
|
-
import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, WritableSignal, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, OnChanges, SimpleChanges, Renderer2,
|
|
3
|
+
import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, WritableSignal, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, OnChanges, SimpleChanges, Renderer2, ComponentRef, Injector, NgModuleRef, DestroyRef, AnimationCallbackEvent } from '@angular/core';
|
|
4
4
|
import * as _coreui_angular_pro from '@coreui/angular-pro';
|
|
5
5
|
import { BooleanInput as BooleanInput$1, NumberInput as NumberInput$1 } from '@angular/cdk/coercion';
|
|
6
6
|
import { ControlValueAccessor, FormGroup, FormControl } from '@angular/forms';
|
|
@@ -95,6 +95,11 @@ declare class ThemeDirective {
|
|
|
95
95
|
* @return 'dark' | 'light' | undefined
|
|
96
96
|
*/
|
|
97
97
|
readonly colorScheme: _angular_core.InputSignal<"dark" | "light" | undefined>;
|
|
98
|
+
/**
|
|
99
|
+
* Add darker controls, indicators, and captions.
|
|
100
|
+
* @return boolean
|
|
101
|
+
* @default false
|
|
102
|
+
*/
|
|
98
103
|
readonly dark: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
99
104
|
setTheme(theme?: string): void;
|
|
100
105
|
unsetTheme(): void;
|
|
@@ -443,6 +448,10 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
|
443
448
|
* @param option - The selected option object, or `undefined` if cleared
|
|
444
449
|
*/
|
|
445
450
|
readonly optionChange: _angular_core.OutputEmitterRef<IAutocompleteOption | null>;
|
|
451
|
+
/**
|
|
452
|
+
* Event emitted on `value` change.
|
|
453
|
+
* @return string | null
|
|
454
|
+
*/
|
|
446
455
|
readonly valueChange: _angular_core.OutputEmitterRef<string | null>;
|
|
447
456
|
/**
|
|
448
457
|
* The callback is fired when the dropdown requests to be hidden.
|
|
@@ -557,40 +566,40 @@ declare class TextColorDirective {
|
|
|
557
566
|
declare class AvatarComponent {
|
|
558
567
|
/**
|
|
559
568
|
* Sets the background color context of the component to one of CoreUI’s themed colors.
|
|
560
|
-
* @
|
|
569
|
+
* @return Colors
|
|
561
570
|
*/
|
|
562
|
-
readonly color: InputSignal<
|
|
571
|
+
readonly color: _angular_core.InputSignal<string | undefined>;
|
|
563
572
|
/**
|
|
564
573
|
* Select the shape of the component.
|
|
565
|
-
* @
|
|
574
|
+
* @return Shapes
|
|
566
575
|
*/
|
|
567
|
-
readonly shape: InputSignal<
|
|
576
|
+
readonly shape: _angular_core.InputSignal<string | undefined>;
|
|
568
577
|
/**
|
|
569
578
|
* Size the component small, large, or extra large.
|
|
570
579
|
* @default 'md'
|
|
571
580
|
*/
|
|
572
|
-
readonly size: InputSignal<Omit<string, "xxl">>;
|
|
581
|
+
readonly size: _angular_core.InputSignal<Omit<string, "xxl">>;
|
|
573
582
|
/**
|
|
574
583
|
* The alt attribute for the img element alternate text.
|
|
575
|
-
* @
|
|
584
|
+
* @return string
|
|
576
585
|
*/
|
|
577
|
-
readonly alt: InputSignal<string>;
|
|
586
|
+
readonly alt: _angular_core.InputSignal<string>;
|
|
578
587
|
/**
|
|
579
588
|
* The src attribute for the img element.
|
|
580
|
-
* @
|
|
589
|
+
* @return string
|
|
581
590
|
*/
|
|
582
|
-
readonly src: InputSignal<string | undefined>;
|
|
591
|
+
readonly src: _angular_core.InputSignal<string | undefined>;
|
|
583
592
|
/**
|
|
584
593
|
* Sets the color context of the status indicator to one of CoreUI’s themed colors.
|
|
585
|
-
* @
|
|
594
|
+
* @return Colors
|
|
586
595
|
*/
|
|
587
|
-
readonly status: InputSignal<
|
|
596
|
+
readonly status: _angular_core.InputSignal<string | undefined>;
|
|
588
597
|
/**
|
|
589
598
|
* Sets the text color of the component to one of CoreUI’s themed colors.
|
|
590
599
|
* via TextColorDirective
|
|
591
|
-
* @
|
|
600
|
+
* @return TextColors
|
|
592
601
|
*/
|
|
593
|
-
readonly textColor: InputSignal<
|
|
602
|
+
readonly textColor: _angular_core.InputSignal<string | undefined>;
|
|
594
603
|
readonly statusClass: _angular_core.Signal<Record<string, boolean>>;
|
|
595
604
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
596
605
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
@@ -1095,6 +1104,10 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1095
1104
|
static ngAcceptInputType_selectAdjacentDays: BooleanInput$1;
|
|
1096
1105
|
static ngAcceptInputType_showAdjacentDays: BooleanInput$1;
|
|
1097
1106
|
static ngAcceptInputType_showWeekNumber: BooleanInput$1;
|
|
1107
|
+
/**
|
|
1108
|
+
* Event emitted on calendar month change.
|
|
1109
|
+
* @return Date
|
|
1110
|
+
*/
|
|
1098
1111
|
readonly calendarDateChange: _angular_core.OutputEmitterRef<Date>;
|
|
1099
1112
|
/**
|
|
1100
1113
|
* Default date of the component
|
|
@@ -1124,7 +1137,15 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1124
1137
|
*/
|
|
1125
1138
|
readonly disabledDates: _angular_core.InputSignal<(Date | Date[])[]>;
|
|
1126
1139
|
readonly disabledDatesEffect: _angular_core.EffectRef;
|
|
1140
|
+
/**
|
|
1141
|
+
* Event emitted on `endDate` change.
|
|
1142
|
+
* @return Date | null
|
|
1143
|
+
*/
|
|
1127
1144
|
readonly endDateChange: _angular_core.OutputEmitterRef<Date | null>;
|
|
1145
|
+
/**
|
|
1146
|
+
* Event emitted on `startDate` change.
|
|
1147
|
+
* @return Date | null
|
|
1148
|
+
*/
|
|
1128
1149
|
readonly startDateChange: _angular_core.OutputEmitterRef<Date | null>;
|
|
1129
1150
|
/**
|
|
1130
1151
|
* Initial selected date.
|
|
@@ -1203,6 +1224,10 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1203
1224
|
*/
|
|
1204
1225
|
readonly weekdayFormat: _angular_core.InputSignal<WeekdayFormatType>;
|
|
1205
1226
|
readonly weekdayFormatEffect: _angular_core.EffectRef;
|
|
1227
|
+
/**
|
|
1228
|
+
* Custom function to determine selectable dates.
|
|
1229
|
+
* @return DateFilterType
|
|
1230
|
+
*/
|
|
1206
1231
|
readonly dateFilter: _angular_core.InputSignal<DateFilterType | undefined>;
|
|
1207
1232
|
readonly dateFilterEffect: _angular_core.EffectRef;
|
|
1208
1233
|
/**
|
|
@@ -1245,9 +1270,25 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1245
1270
|
*/
|
|
1246
1271
|
readonly weekNumbersLabel: _angular_core.InputSignal<string | undefined>;
|
|
1247
1272
|
readonly weekNumbersLabelEffect: _angular_core.EffectRef;
|
|
1273
|
+
/**
|
|
1274
|
+
* A string that provides an accessible label for the button that moves to the next month.
|
|
1275
|
+
* @return string
|
|
1276
|
+
*/
|
|
1248
1277
|
readonly ariaNextMonthLabel: _angular_core.InputSignal<string>;
|
|
1278
|
+
/**
|
|
1279
|
+
* A string that provides an accessible label for the button that moves to the next year.
|
|
1280
|
+
* @return string
|
|
1281
|
+
*/
|
|
1249
1282
|
readonly ariaNextYearLabel: _angular_core.InputSignal<string>;
|
|
1283
|
+
/**
|
|
1284
|
+
* A string that provides an accessible label for the button that moves to the previous month.
|
|
1285
|
+
* @return string
|
|
1286
|
+
*/
|
|
1250
1287
|
readonly ariaPrevMonthLabel: _angular_core.InputSignal<string>;
|
|
1288
|
+
/**
|
|
1289
|
+
* A string that provides an accessible label for the button that moves to the previous year.
|
|
1290
|
+
* @return string
|
|
1291
|
+
*/
|
|
1251
1292
|
readonly ariaPrevYearLabel: _angular_core.InputSignal<string>;
|
|
1252
1293
|
readonly calendarCellHover: _angular_core.OutputEmitterRef<Date | null>;
|
|
1253
1294
|
readonly hoverDate: _angular_core.WritableSignal<Date | null>;
|
|
@@ -1841,26 +1882,59 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1841
1882
|
*/
|
|
1842
1883
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1843
1884
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
1885
|
+
/**
|
|
1886
|
+
* Initial selected start date.
|
|
1887
|
+
* @return Date | null
|
|
1888
|
+
* @default null
|
|
1889
|
+
*/
|
|
1844
1890
|
readonly startDateModel: _angular_core.ModelSignal<Date | null>;
|
|
1845
1891
|
protected updateStartDateModel(startDate: Date | null): void;
|
|
1846
1892
|
readonly startDate: _angular_core.Signal<Date | null>;
|
|
1847
1893
|
readonly startTime: _angular_core.Signal<Record<string, number>>;
|
|
1848
1894
|
readonly endTime: _angular_core.Signal<Record<string, number>>;
|
|
1849
1895
|
readonly startDateChange: rxjs.Observable<Date | null>;
|
|
1896
|
+
/**
|
|
1897
|
+
* Initial selected end date.
|
|
1898
|
+
* @return Date | null
|
|
1899
|
+
* @default null
|
|
1900
|
+
*/
|
|
1850
1901
|
readonly endDateModel: _angular_core.ModelSignal<Date | null>;
|
|
1851
1902
|
readonly endDate: _angular_core.Signal<Date | null>;
|
|
1852
1903
|
readonly endDateChange: rxjs.Observable<Date | null>;
|
|
1904
|
+
/**
|
|
1905
|
+
* Default date month of the component.
|
|
1906
|
+
* @return Date
|
|
1907
|
+
* @default new Date()
|
|
1908
|
+
*/
|
|
1853
1909
|
readonly calendarDateInput: _angular_core.InputSignalWithTransform<Date, number | Date>;
|
|
1854
1910
|
readonly calendarDate: _angular_core.WritableSignal<Date>;
|
|
1911
|
+
/**
|
|
1912
|
+
* Specify the list of dates that cannot be selected.
|
|
1913
|
+
* @return (Date | Date[])[]
|
|
1914
|
+
*/
|
|
1855
1915
|
readonly disabledDates: _angular_core.InputSignal<(Date | Date[])[]>;
|
|
1856
1916
|
/**
|
|
1857
|
-
* Set first day of week.
|
|
1917
|
+
* Set the first day of the week.
|
|
1858
1918
|
* @return DaysOfWeek
|
|
1859
1919
|
* @default 1 (Monday)
|
|
1860
1920
|
*/
|
|
1861
1921
|
readonly firstDayOfWeek: _angular_core.InputSignal<DaysOfWeek>;
|
|
1922
|
+
/**
|
|
1923
|
+
* Sets the default locale for components. If not set, it is inherited from the browser.
|
|
1924
|
+
* @default 'default'
|
|
1925
|
+
*/
|
|
1862
1926
|
readonly locale: _angular_core.InputSignal<string>;
|
|
1927
|
+
/**
|
|
1928
|
+
* Max selectable date.
|
|
1929
|
+
* @return Date | null
|
|
1930
|
+
* @default null
|
|
1931
|
+
*/
|
|
1863
1932
|
readonly maxDate: _angular_core.InputSignal<Date | null>;
|
|
1933
|
+
/**
|
|
1934
|
+
* Min selectable date.
|
|
1935
|
+
* @return Date | null
|
|
1936
|
+
* @default null
|
|
1937
|
+
*/
|
|
1864
1938
|
readonly minDate: _angular_core.InputSignal<Date | null>;
|
|
1865
1939
|
/**
|
|
1866
1940
|
* Show calendar navigation.
|
|
@@ -1875,7 +1949,16 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1875
1949
|
*/
|
|
1876
1950
|
readonly rangeInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1877
1951
|
readonly range: _angular_core.Signal<boolean>;
|
|
1952
|
+
/**
|
|
1953
|
+
* Custom function to determine selectable dates.
|
|
1954
|
+
* @return DateFilterType
|
|
1955
|
+
*/
|
|
1878
1956
|
readonly dateFilter: _angular_core.InputSignal<DateFilterType | undefined>;
|
|
1957
|
+
/**
|
|
1958
|
+
* Toggle the disabled state for the component.
|
|
1959
|
+
* @return boolean
|
|
1960
|
+
* @default false
|
|
1961
|
+
*/
|
|
1879
1962
|
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1880
1963
|
readonly disabled: _angular_core.Signal<boolean>;
|
|
1881
1964
|
readonly valueInput: _angular_core.InputSignal<Date | {
|
|
@@ -1940,11 +2023,23 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1940
2023
|
* @since 5.0.0
|
|
1941
2024
|
*/
|
|
1942
2025
|
readonly weekNumbersLabel: _angular_core.InputSignal<string | undefined>;
|
|
2026
|
+
/**
|
|
2027
|
+
* Event emitted on `value` change.
|
|
2028
|
+
* @return Date | { startDate, endDate } | undefined
|
|
2029
|
+
*/
|
|
1943
2030
|
readonly valueChange: _angular_core.OutputEmitterRef<Date | {
|
|
1944
2031
|
startDate?: Date | null;
|
|
1945
2032
|
endDate?: Date | null;
|
|
1946
2033
|
} | null | undefined>;
|
|
2034
|
+
/**
|
|
2035
|
+
* Event emitted on calendar cell hover.
|
|
2036
|
+
* @return Date | null
|
|
2037
|
+
*/
|
|
1947
2038
|
readonly calendarCellHover: _angular_core.OutputEmitterRef<Date | null>;
|
|
2039
|
+
/**
|
|
2040
|
+
* Event emitted on calendar month change.
|
|
2041
|
+
* @return Date
|
|
2042
|
+
*/
|
|
1948
2043
|
readonly calendarDateChange: _angular_core.OutputEmitterRef<Date>;
|
|
1949
2044
|
readonly startDateElementRef: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
1950
2045
|
readonly endDateElementRef: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
@@ -2589,6 +2684,10 @@ declare class ColDirective {
|
|
|
2589
2684
|
* @return { 'auto' | number | boolean }
|
|
2590
2685
|
*/
|
|
2591
2686
|
readonly cCol: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
|
|
2687
|
+
/**
|
|
2688
|
+
* The number of columns on extra small devices (<576px).
|
|
2689
|
+
* @return { 'auto' | number | boolean }
|
|
2690
|
+
*/
|
|
2592
2691
|
readonly xs: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
|
|
2593
2692
|
/**
|
|
2594
2693
|
* The number of columns/offset/order on small devices (<768px).
|
|
@@ -2616,7 +2715,13 @@ declare class ColDirective {
|
|
|
2616
2715
|
*/
|
|
2617
2716
|
readonly xxl: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
|
|
2618
2717
|
readonly breakpoints: _angular_core.Signal<Record<string, any>>;
|
|
2718
|
+
/**
|
|
2719
|
+
* Offset grid columns.
|
|
2720
|
+
*/
|
|
2619
2721
|
readonly offset: _angular_core.InputSignal<ColOffsetType | undefined>;
|
|
2722
|
+
/**
|
|
2723
|
+
* Controls the visual order of your columns. Includes support for `1` through `5` across all breakpoints.
|
|
2724
|
+
*/
|
|
2620
2725
|
readonly order: _angular_core.InputSignal<ColOrderType | undefined>;
|
|
2621
2726
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
2622
2727
|
coerceInput(value: BooleanInput$1 | NumberInput$1): number | boolean | "auto";
|
|
@@ -2974,6 +3079,10 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
|
|
|
2974
3079
|
get value(): string | number;
|
|
2975
3080
|
set active(value: boolean);
|
|
2976
3081
|
get active(): boolean;
|
|
3082
|
+
/**
|
|
3083
|
+
* Role for the option element.
|
|
3084
|
+
* @return string
|
|
3085
|
+
*/
|
|
2977
3086
|
readonly role: _angular_core.InputSignal<string>;
|
|
2978
3087
|
readonly focusChange: _angular_core.OutputEmitterRef<MultiSelectOptionComponent>;
|
|
2979
3088
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -3001,7 +3110,16 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
|
|
|
3001
3110
|
declare class MultiSelectOptgroupComponent implements AfterContentInit {
|
|
3002
3111
|
#private;
|
|
3003
3112
|
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
3113
|
+
/**
|
|
3114
|
+
* Options group label.
|
|
3115
|
+
* @return string
|
|
3116
|
+
*/
|
|
3004
3117
|
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
3118
|
+
/**
|
|
3119
|
+
* Disables all options in the group.
|
|
3120
|
+
* @return boolean
|
|
3121
|
+
* @default false
|
|
3122
|
+
*/
|
|
3005
3123
|
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3006
3124
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
3007
3125
|
readonly multiSelectOptions: _angular_core.Signal<readonly MultiSelectOptionComponent[]>;
|
|
@@ -3457,6 +3575,10 @@ declare class NavbarComponent {
|
|
|
3457
3575
|
* Place component in non-static positions.
|
|
3458
3576
|
*/
|
|
3459
3577
|
readonly placement: _angular_core.InputSignal<"fixed-top" | "fixed-bottom" | "sticky-top" | undefined>;
|
|
3578
|
+
/**
|
|
3579
|
+
* HTML element role.
|
|
3580
|
+
* @return string
|
|
3581
|
+
*/
|
|
3460
3582
|
readonly role: _angular_core.InputSignal<string>;
|
|
3461
3583
|
readonly collapse: _angular_core.Signal<CollapseDirective | undefined>;
|
|
3462
3584
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -3599,7 +3721,7 @@ declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
|
3599
3721
|
*/
|
|
3600
3722
|
readonly alignment: _angular_core.InputSignal<"top" | "center">;
|
|
3601
3723
|
/**
|
|
3602
|
-
* Apply a backdrop on body while modal is open.
|
|
3724
|
+
* Apply a backdrop on the body while the modal is open.
|
|
3603
3725
|
* @return boolean | 'static'
|
|
3604
3726
|
* @default true
|
|
3605
3727
|
*/
|
|
@@ -3611,11 +3733,15 @@ declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
|
3611
3733
|
*/
|
|
3612
3734
|
readonly fullscreen: _angular_core.InputSignal<boolean | "sm" | "md" | "lg" | "xl" | "xxl" | undefined>;
|
|
3613
3735
|
/**
|
|
3614
|
-
* Closes the modal when escape key is pressed.
|
|
3736
|
+
* Closes the modal when the escape key is pressed.
|
|
3615
3737
|
* @return boolean
|
|
3616
3738
|
* @default true
|
|
3617
3739
|
*/
|
|
3618
3740
|
readonly keyboard: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3741
|
+
/**
|
|
3742
|
+
* Html id attribute, required for programmatic visibility change.
|
|
3743
|
+
* @return string
|
|
3744
|
+
*/
|
|
3619
3745
|
readonly attrId: _angular_core.InputSignal<string | undefined>;
|
|
3620
3746
|
get id(): string | undefined;
|
|
3621
3747
|
/**
|
|
@@ -3625,7 +3751,7 @@ declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
|
3625
3751
|
*/
|
|
3626
3752
|
readonly size: _angular_core.InputSignal<"sm" | "lg" | "xl" | undefined>;
|
|
3627
3753
|
/**
|
|
3628
|
-
* Remove animation to create modal that simply
|
|
3754
|
+
* Remove animation to create a modal that simply appears rather than fades in to view.
|
|
3629
3755
|
*/
|
|
3630
3756
|
readonly transition: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3631
3757
|
/**
|
|
@@ -3707,19 +3833,19 @@ declare class OffcanvasComponent implements OnInit, OnDestroy {
|
|
|
3707
3833
|
static ngAcceptInputType_scroll: BooleanInput$1;
|
|
3708
3834
|
static ngAcceptInputType_visible: BooleanInput$1;
|
|
3709
3835
|
/**
|
|
3710
|
-
* Apply a backdrop on body while offcanvas is open.
|
|
3836
|
+
* Apply a backdrop on the body while offcanvas is open.
|
|
3711
3837
|
* @return boolean | 'static'
|
|
3712
3838
|
* @default true
|
|
3713
3839
|
*/
|
|
3714
3840
|
readonly backdrop: _angular_core.InputSignal<boolean | "static">;
|
|
3715
3841
|
/**
|
|
3716
|
-
* Closes the offcanvas when escape key is pressed
|
|
3842
|
+
* Closes the offcanvas when the escape key is pressed
|
|
3717
3843
|
* @return boolean
|
|
3718
3844
|
* @default true
|
|
3719
3845
|
*/
|
|
3720
3846
|
readonly keyboard: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3721
3847
|
/**
|
|
3722
|
-
*
|
|
3848
|
+
* Component placement
|
|
3723
3849
|
* @return {'start' | 'end' | 'top' | 'bottom'}
|
|
3724
3850
|
* @default 'start'
|
|
3725
3851
|
*/
|
|
@@ -3731,6 +3857,10 @@ declare class OffcanvasComponent implements OnInit, OnDestroy {
|
|
|
3731
3857
|
* @since 4.3.10
|
|
3732
3858
|
*/
|
|
3733
3859
|
readonly responsive: _angular_core.InputSignal<boolean | "sm" | "md" | "lg" | "xl" | "xxl" | undefined>;
|
|
3860
|
+
/**
|
|
3861
|
+
* Html id attribute, required for programmatic visibility change.
|
|
3862
|
+
* @return string
|
|
3863
|
+
*/
|
|
3734
3864
|
readonly id: _angular_core.InputSignal<string>;
|
|
3735
3865
|
/**
|
|
3736
3866
|
* Default role for offcanvas. [docs]
|
|
@@ -4358,6 +4488,10 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
4358
4488
|
* @returns: number | null
|
|
4359
4489
|
*/
|
|
4360
4490
|
readonly hoverValue: _angular_core.WritableSignal<number | null>;
|
|
4491
|
+
/**
|
|
4492
|
+
* Event emitted on `mouseenter` and `mouseleave`.
|
|
4493
|
+
* @return number | null
|
|
4494
|
+
*/
|
|
4361
4495
|
readonly hoverValueChange: _angular_core.OutputEmitterRef<number | null>;
|
|
4362
4496
|
readonly hoverValueEffect: _angular_core.EffectRef;
|
|
4363
4497
|
readonly hoveredItem: _angular_core.WritableSignal<number | undefined>;
|
|
@@ -4501,6 +4635,10 @@ declare class RangeSliderComponent implements ControlValueAccessor, OnInit {
|
|
|
4501
4635
|
*/
|
|
4502
4636
|
readonly valueInput: _angular_core.InputSignal<number | number[]>;
|
|
4503
4637
|
readonly value: _angular_core.WritableSignal<number | number[]>;
|
|
4638
|
+
/**
|
|
4639
|
+
* Event emitted on `value` change.
|
|
4640
|
+
* @return number | number[]
|
|
4641
|
+
*/
|
|
4504
4642
|
readonly valueChange: _angular_core.OutputEmitterRef<number | number[]>;
|
|
4505
4643
|
readonly currentValue: _angular_core.Signal<number[]>;
|
|
4506
4644
|
readonly valueEffect: _angular_core.EffectRef;
|
|
@@ -4757,8 +4895,17 @@ declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
|
|
|
4757
4895
|
}
|
|
4758
4896
|
|
|
4759
4897
|
declare class SidebarBrandComponent {
|
|
4898
|
+
/**
|
|
4899
|
+
* Image for the wide sidebar.
|
|
4900
|
+
*/
|
|
4760
4901
|
readonly brandFull: _angular_core.InputSignal<any>;
|
|
4902
|
+
/**
|
|
4903
|
+
* Image for the narrow sidebar.
|
|
4904
|
+
*/
|
|
4761
4905
|
readonly brandNarrow: _angular_core.InputSignal<any>;
|
|
4906
|
+
/**
|
|
4907
|
+
* Router link for the sidebar brand.
|
|
4908
|
+
*/
|
|
4762
4909
|
readonly routerLink: _angular_core.InputSignal<string | any[] | UrlTree | null | undefined>;
|
|
4763
4910
|
readonly brandImg: _angular_core.Signal<boolean>;
|
|
4764
4911
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarBrandComponent, never>;
|
|
@@ -4873,6 +5020,12 @@ declare class SidebarNavGroupComponent implements OnInit, OnDestroy {
|
|
|
4873
5020
|
readonly helper: SidebarNavHelper;
|
|
4874
5021
|
constructor();
|
|
4875
5022
|
readonly item: _angular_core.InputSignal<INavData | undefined>;
|
|
5023
|
+
/**
|
|
5024
|
+
* Determines when an inactive `c-sidebar-nav-group` closes.
|
|
5025
|
+
* - `path`: on an active route change only
|
|
5026
|
+
* - `close`: when another group is clicked
|
|
5027
|
+
* - `none`: never, the group stays open
|
|
5028
|
+
*/
|
|
4876
5029
|
readonly dropdownMode: _angular_core.InputSignal<"path" | "none" | "close">;
|
|
4877
5030
|
readonly show: _angular_core.InputSignal<boolean | undefined>;
|
|
4878
5031
|
readonly compact: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
@@ -4902,7 +5055,18 @@ declare class SidebarNavComponent implements OnChanges {
|
|
|
4902
5055
|
readonly sidebar: SidebarComponent | null;
|
|
4903
5056
|
readonly helper: SidebarNavHelper;
|
|
4904
5057
|
readonly router: Router;
|
|
5058
|
+
/**
|
|
5059
|
+
* Configuration object for sidebar-nav.
|
|
5060
|
+
* @return INavData[]
|
|
5061
|
+
* @default []
|
|
5062
|
+
*/
|
|
4905
5063
|
readonly navItems: _angular_core.InputSignal<INavData[] | undefined>;
|
|
5064
|
+
/**
|
|
5065
|
+
* Determines when an inactive `c-sidebar-nav-group` closes.
|
|
5066
|
+
* - `path`: on an active route change only
|
|
5067
|
+
* - `close`: when another group is clicked
|
|
5068
|
+
* - `none`: never, the group stays open
|
|
5069
|
+
*/
|
|
4906
5070
|
readonly dropdownMode: _angular_core.InputSignal<"path" | "none" | "close">;
|
|
4907
5071
|
readonly groupItems: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
4908
5072
|
readonly compact: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
@@ -5580,14 +5744,43 @@ declare class SmartTableComponent implements ISmartTable, AfterContentInit, OnCh
|
|
|
5580
5744
|
tableFootProps?: ITableSectionProps;
|
|
5581
5745
|
tableHeadProps?: ITableSectionProps;
|
|
5582
5746
|
tableProps?: ITable;
|
|
5747
|
+
/**
|
|
5748
|
+
* Event emitted on `selectedItems` change.
|
|
5749
|
+
*/
|
|
5583
5750
|
readonly selectedItemsChange: _angular_core.OutputEmitterRef<IItem[]>;
|
|
5751
|
+
/**
|
|
5752
|
+
* Event emitted on `sorterValue` change.
|
|
5753
|
+
*/
|
|
5584
5754
|
readonly sorterValueChange: _angular_core.OutputEmitterRef<ISorterValue>;
|
|
5755
|
+
/**
|
|
5756
|
+
* Event emitted on `activePage` change.
|
|
5757
|
+
* @return number
|
|
5758
|
+
*/
|
|
5585
5759
|
readonly activePageChange: _angular_core.OutputEmitterRef<number>;
|
|
5760
|
+
/**
|
|
5761
|
+
* Event emitted on `itemsPerPage` change.
|
|
5762
|
+
* @return number
|
|
5763
|
+
*/
|
|
5586
5764
|
readonly itemsPerPageChange: _angular_core.OutputEmitterRef<number>;
|
|
5765
|
+
/**
|
|
5766
|
+
* Event emitted on row click.
|
|
5767
|
+
*/
|
|
5587
5768
|
readonly rowClick: _angular_core.OutputEmitterRef<any>;
|
|
5769
|
+
/**
|
|
5770
|
+
* Event emitted on `columnFilterValue` change.
|
|
5771
|
+
*/
|
|
5588
5772
|
readonly columnFilterValueChange: _angular_core.OutputEmitterRef<IColumnFilterValue>;
|
|
5773
|
+
/**
|
|
5774
|
+
* Event emitted on `filteredItems` change.
|
|
5775
|
+
*/
|
|
5589
5776
|
readonly filteredItemsChange: _angular_core.OutputEmitterRef<IItemInternal[]>;
|
|
5777
|
+
/**
|
|
5778
|
+
* Event emitted on `tableFilterValue` change.
|
|
5779
|
+
*/
|
|
5590
5780
|
readonly tableFilterValueChange: _angular_core.OutputEmitterRef<string>;
|
|
5781
|
+
/**
|
|
5782
|
+
* Event emitted on cleaner click.
|
|
5783
|
+
*/
|
|
5591
5784
|
readonly cleanerClick: _angular_core.OutputEmitterRef<void>;
|
|
5592
5785
|
columnTemplates: QueryList<TemplateIdDirective>;
|
|
5593
5786
|
templates: {
|
|
@@ -6190,14 +6383,19 @@ declare class TabsComponent {
|
|
|
6190
6383
|
readonly tabsService: TabsService;
|
|
6191
6384
|
/**
|
|
6192
6385
|
* The active item key.
|
|
6193
|
-
* @
|
|
6386
|
+
* @return <string | number | undefined>
|
|
6194
6387
|
*/
|
|
6195
|
-
readonly activeItemKey: ModelSignal<string | number | undefined>;
|
|
6388
|
+
readonly activeItemKey: _angular_core.ModelSignal<string | number | undefined>;
|
|
6196
6389
|
/**
|
|
6197
6390
|
* The id attribute
|
|
6198
|
-
* @
|
|
6391
|
+
* @return string
|
|
6199
6392
|
*/
|
|
6200
6393
|
tabsId: string;
|
|
6394
|
+
/**
|
|
6395
|
+
* HTML id attribute.
|
|
6396
|
+
* @return string
|
|
6397
|
+
* @default `tabs-{n}`
|
|
6398
|
+
*/
|
|
6201
6399
|
readonly id: _angular_core.InputSignal<string>;
|
|
6202
6400
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
6203
6401
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabsComponent, "c-tabs", ["cTabs"], { "activeItemKey": { "alias": "activeItemKey"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, { "activeItemKey": "activeItemKeyChange"; }, never, ["*"], true, never>;
|
|
@@ -6469,6 +6667,9 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
|
|
|
6469
6667
|
* @default false
|
|
6470
6668
|
*/
|
|
6471
6669
|
readonly visible: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6670
|
+
/**
|
|
6671
|
+
* Event emitted on `time` change.
|
|
6672
|
+
*/
|
|
6472
6673
|
readonly timeChange: _angular_core.OutputEmitterRef<Date | undefined>;
|
|
6473
6674
|
onBlur(): void;
|
|
6474
6675
|
readonly dropdownRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
@@ -6706,6 +6907,10 @@ declare class ToastHeaderComponent {
|
|
|
6706
6907
|
|
|
6707
6908
|
declare class ToastCloseDirective {
|
|
6708
6909
|
#private;
|
|
6910
|
+
/**
|
|
6911
|
+
* Toast to close.
|
|
6912
|
+
* @return ToastComponent
|
|
6913
|
+
*/
|
|
6709
6914
|
readonly cToastClose: _angular_core.InputSignal<ToastComponent | undefined>;
|
|
6710
6915
|
toggleOpen($event: MouseEvent): void;
|
|
6711
6916
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastCloseDirective, never>;
|