@coreui/angular-pro 5.6.24 → 5.7.4
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 +10 -11
- package/fesm2022/coreui-angular-pro.mjs +2923 -2000
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/package.json +10 -9
- package/schematics/ng-add/index.js +40 -1
- package/schematics/ng-add/index.js.map +1 -1
- package/types/coreui-angular-pro.d.ts +60 -44
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.7.4",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2026 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -22,14 +22,15 @@
|
|
|
22
22
|
},
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@angular/animations": "^
|
|
26
|
-
"@angular/
|
|
27
|
-
"@angular/
|
|
28
|
-
"@angular/
|
|
29
|
-
"@angular/
|
|
30
|
-
"@angular/
|
|
31
|
-
"@
|
|
32
|
-
"@coreui/
|
|
25
|
+
"@angular/animations": "^22.0.0",
|
|
26
|
+
"@angular/aria": "^22.0.0",
|
|
27
|
+
"@angular/cdk": "^22.0.0",
|
|
28
|
+
"@angular/common": "^22.0.0",
|
|
29
|
+
"@angular/core": "^22.0.0",
|
|
30
|
+
"@angular/forms": "^22.0.0",
|
|
31
|
+
"@angular/router": "^22.0.0",
|
|
32
|
+
"@coreui/coreui-pro": "^5.26.0",
|
|
33
|
+
"@coreui/icons-angular": "~5.7.4",
|
|
33
34
|
"rxjs": "^7.8.2"
|
|
34
35
|
},
|
|
35
36
|
"repository": {
|
|
@@ -1,11 +1,44 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
2
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
36
|
exports.ngAdd = ngAdd;
|
|
4
37
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
5
38
|
const tasks_1 = require("@angular-devkit/schematics/tasks");
|
|
6
39
|
const dependencies_1 = require("@schematics/angular/utility/dependencies");
|
|
7
40
|
const package_config_1 = require("./package-config");
|
|
8
|
-
const pkgJson = require("../../package.json");
|
|
41
|
+
const pkgJson = __importStar(require("../../package.json"));
|
|
9
42
|
function ngAdd() {
|
|
10
43
|
return (tree, context) => {
|
|
11
44
|
const pkg = pkgJson;
|
|
@@ -28,6 +61,12 @@ function ngAdd() {
|
|
|
28
61
|
context.logger.info(`Added dependency: ${dep.name}@${dep.version}`);
|
|
29
62
|
});
|
|
30
63
|
const libraryDeps = [
|
|
64
|
+
{
|
|
65
|
+
name: '@angular/aria',
|
|
66
|
+
type: dependencies_1.NodeDependencyType.Default,
|
|
67
|
+
version: pkg.peerDependencies['@angular/aria'],
|
|
68
|
+
overwrite: false
|
|
69
|
+
},
|
|
31
70
|
{
|
|
32
71
|
name: '@angular/cdk',
|
|
33
72
|
type: dependencies_1.NodeDependencyType.Default,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../projects/coreui-angular/schematics/ng-add/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../projects/coreui-angular/schematics/ng-add/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -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,
|
|
3
|
+
import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, WritableSignal, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, OnChanges, SimpleChanges, Renderer2, ModelSignal, 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';
|
|
@@ -10,6 +10,7 @@ import { AnimationEvent } from '@angular/animations';
|
|
|
10
10
|
import * as rxjs from 'rxjs';
|
|
11
11
|
import { Observable, Subscription, Subject, BehaviorSubject } from 'rxjs';
|
|
12
12
|
import { FocusableOption, FocusMonitor, FocusOrigin } from '@angular/cdk/a11y';
|
|
13
|
+
import * as node_modules_rxjs_dist_types from 'node_modules/rxjs/dist/types';
|
|
13
14
|
import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
|
|
14
15
|
import { SelectionModel, SelectionChange } from '@angular/cdk/collections';
|
|
15
16
|
|
|
@@ -391,7 +392,8 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
|
391
392
|
* Can be a string (matched against option labels) or number (matched against option values).
|
|
392
393
|
* The component will attempt to find and select the matching option on mount.
|
|
393
394
|
*/
|
|
394
|
-
readonly
|
|
395
|
+
readonly valueInput: _angular_core.InputSignal<string | number | undefined>;
|
|
396
|
+
readonly value: WritableSignal<string | number | undefined>;
|
|
395
397
|
protected updateModel(value: number | string | undefined, origin: ValueOrigin): void;
|
|
396
398
|
/**
|
|
397
399
|
* Enable virtual scroller for the options list.
|
|
@@ -446,7 +448,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
|
446
448
|
protected handleDropdownHide(): void;
|
|
447
449
|
protected handleDropdownShow(): void;
|
|
448
450
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutocompleteDirective, never>;
|
|
449
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AutocompleteDirective, "input[cAutocomplete]", ["cAutocomplete"], { "popperOptionsInput": { "alias": "popperOptions"; "required": false; "isSignal": true; }; "allowOnlyDefinedOptions": { "alias": "allowOnlyDefinedOptions"; "required": false; "isSignal": true; }; "cleaner": { "alias": "cleaner"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; "delay": { "alias": "delay"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "highlightOptionsOnSearch": { "alias": "highlightOptionsOnSearch"; "required": false; "isSignal": true; }; "idInput": { "alias": "id"; "required": false; "isSignal": true; }; "indicator": { "alias": "indicator"; "required": false; "isSignal": true; }; "itemSize": { "alias": "itemSize"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "optionsInput": { "alias": "options"; "required": true; "isSignal": true; }; "optionsMaxHeightInput": { "alias": "optionsMaxHeight"; "required": false; "isSignal": true; }; "optionTemplate": { "alias": "optionTemplate"; "required": false; "isSignal": true; }; "optionGroupTemplate": { "alias": "optionGroupTemplate"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "resetSelectionOnOptionsChange": { "alias": "resetSelectionOnOptionsChange"; "required": false; "isSignal": true; }; "search": { "alias": "search"; "required": false; "isSignal": true; }; "searchNoResultsLabel": { "alias": "searchNoResultsLabel"; "required": false; "isSignal": true; }; "showHints": { "alias": "showHints"; "required": false; "isSignal": true; }; "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "
|
|
451
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AutocompleteDirective, "input[cAutocomplete]", ["cAutocomplete"], { "popperOptionsInput": { "alias": "popperOptions"; "required": false; "isSignal": true; }; "allowOnlyDefinedOptions": { "alias": "allowOnlyDefinedOptions"; "required": false; "isSignal": true; }; "cleaner": { "alias": "cleaner"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; "delay": { "alias": "delay"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "highlightOptionsOnSearch": { "alias": "highlightOptionsOnSearch"; "required": false; "isSignal": true; }; "idInput": { "alias": "id"; "required": false; "isSignal": true; }; "indicator": { "alias": "indicator"; "required": false; "isSignal": true; }; "itemSize": { "alias": "itemSize"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "optionsInput": { "alias": "options"; "required": true; "isSignal": true; }; "optionsMaxHeightInput": { "alias": "optionsMaxHeight"; "required": false; "isSignal": true; }; "optionTemplate": { "alias": "optionTemplate"; "required": false; "isSignal": true; }; "optionGroupTemplate": { "alias": "optionGroupTemplate"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "resetSelectionOnOptionsChange": { "alias": "resetSelectionOnOptionsChange"; "required": false; "isSignal": true; }; "search": { "alias": "search"; "required": false; "isSignal": true; }; "searchNoResultsLabel": { "alias": "searchNoResultsLabel"; "required": false; "isSignal": true; }; "showHints": { "alias": "showHints"; "required": false; "isSignal": true; }; "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "valueInput": { "alias": "value"; "required": false; "isSignal": true; }; "virtualScroller": { "alias": "virtualScroller"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; "visibleItemsInput": { "alias": "visibleItems"; "required": false; "isSignal": true; }; }, { "inputChange": "inputChange"; "optionChange": "optionChange"; "valueChange": "valueChange"; "visibleChange": "visibleChange"; }, never, never, true, never>;
|
|
450
452
|
}
|
|
451
453
|
|
|
452
454
|
declare class AutocompleteModule {
|
|
@@ -465,7 +467,7 @@ declare class AlertLinkDirective {
|
|
|
465
467
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AlertLinkDirective, "[cAlertLink]", never, {}, {}, never, never, true, never>;
|
|
466
468
|
}
|
|
467
469
|
|
|
468
|
-
type AnimateType
|
|
470
|
+
type AnimateType = 'hide' | 'show';
|
|
469
471
|
declare class AlertComponent {
|
|
470
472
|
#private;
|
|
471
473
|
/**
|
|
@@ -512,7 +514,7 @@ declare class AlertComponent {
|
|
|
512
514
|
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
513
515
|
readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
514
516
|
readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
|
|
515
|
-
get animateType(): AnimateType
|
|
517
|
+
get animateType(): AnimateType;
|
|
516
518
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
517
519
|
onAnimationStart($event: AnimationEvent): void;
|
|
518
520
|
onAnimationDone($event: AnimationEvent): void;
|
|
@@ -842,7 +844,7 @@ declare class ButtonToolbarComponent {
|
|
|
842
844
|
* @type InputSignal<string>
|
|
843
845
|
* @default 'toolbar'
|
|
844
846
|
*/
|
|
845
|
-
role: InputSignal<string>;
|
|
847
|
+
readonly role: InputSignal<string>;
|
|
846
848
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ButtonToolbarComponent, never>;
|
|
847
849
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonToolbarComponent, "c-button-toolbar", never, { "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
848
850
|
}
|
|
@@ -1077,14 +1079,15 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1077
1079
|
readonly calendarDateChange: _angular_core.OutputEmitterRef<Date>;
|
|
1078
1080
|
/**
|
|
1079
1081
|
* Default date of the component
|
|
1080
|
-
* @
|
|
1082
|
+
* @returns Date | number |string
|
|
1081
1083
|
*/
|
|
1082
|
-
readonly
|
|
1084
|
+
readonly calendarDateInput: _angular_core.InputSignal<string | number | Date>;
|
|
1085
|
+
readonly calendarDateModel: _angular_core.WritableSignal<string | number | Date>;
|
|
1083
1086
|
readonly calendarDate: _angular_core.Signal<Date>;
|
|
1084
1087
|
readonly calendarDateEffect: _angular_core.EffectRef;
|
|
1085
1088
|
/**
|
|
1086
1089
|
* The number of calendars that render on desktop devices.
|
|
1087
|
-
* @
|
|
1090
|
+
* @returns number
|
|
1088
1091
|
* default 1
|
|
1089
1092
|
*/
|
|
1090
1093
|
readonly calendars: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
@@ -1106,15 +1109,17 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1106
1109
|
readonly startDateChange: _angular_core.OutputEmitterRef<Date | null>;
|
|
1107
1110
|
/**
|
|
1108
1111
|
* Initial selected date.
|
|
1109
|
-
* @
|
|
1112
|
+
* @returns (Date | number | string | null)
|
|
1110
1113
|
*/
|
|
1111
|
-
readonly
|
|
1114
|
+
readonly startDateInput: _angular_core.InputSignal<string | number | Date | null>;
|
|
1115
|
+
readonly startDateModel: _angular_core.WritableSignal<string | number | Date | null>;
|
|
1112
1116
|
readonly startDate: _angular_core.Signal<Date | null>;
|
|
1113
1117
|
/**
|
|
1114
1118
|
* Initial selected to date (range).
|
|
1115
|
-
* @
|
|
1119
|
+
* @returns (Date | number | string | null)
|
|
1116
1120
|
*/
|
|
1117
|
-
readonly
|
|
1121
|
+
readonly endDateInput: _angular_core.InputSignal<string | number | Date | null>;
|
|
1122
|
+
readonly endDateModel: _angular_core.WritableSignal<string | number | Date | null>;
|
|
1118
1123
|
readonly endDate: _angular_core.Signal<Date | null>;
|
|
1119
1124
|
/**
|
|
1120
1125
|
* Sets the day of start week.
|
|
@@ -1241,7 +1246,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1241
1246
|
clearDates(): void;
|
|
1242
1247
|
handleFocusChange($event: FocusOrigin): void;
|
|
1243
1248
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
1244
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CalendarComponent, "c-calendar", ["cCalendar"], { "
|
|
1249
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CalendarComponent, "c-calendar", ["cCalendar"], { "calendarDateInput": { "alias": "calendarDate"; "required": false; "isSignal": true; }; "calendars": { "alias": "calendars"; "required": false; "isSignal": true; }; "dayFormat": { "alias": "dayFormat"; "required": false; "isSignal": true; }; "disabledDates": { "alias": "disabledDates"; "required": false; "isSignal": true; }; "startDateInput": { "alias": "startDate"; "required": false; "isSignal": true; }; "endDateInput": { "alias": "endDate"; "required": false; "isSignal": true; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; "maxDateInput": { "alias": "maxDate"; "required": false; "isSignal": true; }; "minDateInput": { "alias": "minDate"; "required": false; "isSignal": true; }; "navigation": { "alias": "navigation"; "required": false; "isSignal": true; }; "navYearFirst": { "alias": "navYearFirst"; "required": false; "isSignal": true; }; "range": { "alias": "range"; "required": false; "isSignal": true; }; "view": { "alias": "view"; "required": false; "isSignal": true; }; "weekdayFormat": { "alias": "weekdayFormat"; "required": false; "isSignal": true; }; "dateFilter": { "alias": "dateFilter"; "required": false; "isSignal": true; }; "selectAdjacentDays": { "alias": "selectAdjacentDays"; "required": false; "isSignal": true; }; "showAdjacentDays": { "alias": "showAdjacentDays"; "required": false; "isSignal": true; }; "selectionType": { "alias": "selectionType"; "required": false; "isSignal": true; }; "showWeekNumber": { "alias": "showWeekNumber"; "required": false; "isSignal": true; }; "weekNumbersLabel": { "alias": "weekNumbersLabel"; "required": false; "isSignal": true; }; "ariaNextMonthLabel": { "alias": "ariaNextMonthLabel"; "required": false; "isSignal": true; }; "ariaNextYearLabel": { "alias": "ariaNextYearLabel"; "required": false; "isSignal": true; }; "ariaPrevMonthLabel": { "alias": "ariaPrevMonthLabel"; "required": false; "isSignal": true; }; "ariaPrevYearLabel": { "alias": "ariaPrevYearLabel"; "required": false; "isSignal": true; }; }, { "calendarDateChange": "calendarDateChange"; "endDateChange": "endDateChange"; "startDateChange": "startDateChange"; "view": "viewChange"; "calendarCellHover": "calendarCellHover"; }, never, never, true, never>;
|
|
1245
1250
|
}
|
|
1246
1251
|
|
|
1247
1252
|
declare class CalendarClassYearPipe implements PipeTransform {
|
|
@@ -1277,13 +1282,13 @@ declare class CalendarClassViewPipe implements PipeTransform {
|
|
|
1277
1282
|
}
|
|
1278
1283
|
|
|
1279
1284
|
declare class CalendarDayPipe implements PipeTransform {
|
|
1280
|
-
transform(date: Date, dayFormat?: DayFormatType, locale?: string):
|
|
1285
|
+
transform(date: Date, dayFormat?: DayFormatType, locale?: string): string | number;
|
|
1281
1286
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CalendarDayPipe, never>;
|
|
1282
1287
|
static ɵpipe: _angular_core.ɵɵPipeDeclaration<CalendarDayPipe, "calendarDay", true>;
|
|
1283
1288
|
}
|
|
1284
1289
|
|
|
1285
1290
|
declare class CalendarWeekdayPipe implements PipeTransform {
|
|
1286
|
-
transform(date: Date, weekdayFormat?: WeekdayFormatType, locale?: string):
|
|
1291
|
+
transform(date: Date, weekdayFormat?: WeekdayFormatType, locale?: string): string | number;
|
|
1287
1292
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CalendarWeekdayPipe, never>;
|
|
1288
1293
|
static ɵpipe: _angular_core.ɵɵPipeDeclaration<CalendarWeekdayPipe, "calendarWeekday", true>;
|
|
1289
1294
|
}
|
|
@@ -1541,7 +1546,7 @@ declare class CarouselControlComponent {
|
|
|
1541
1546
|
declare class CarouselIndicatorsComponent implements OnInit {
|
|
1542
1547
|
#private;
|
|
1543
1548
|
items: (number | undefined)[];
|
|
1544
|
-
active: number
|
|
1549
|
+
readonly active: _angular_core.WritableSignal<number>;
|
|
1545
1550
|
readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
1546
1551
|
readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
|
|
1547
1552
|
ngOnInit(): void;
|
|
@@ -1812,6 +1817,7 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1812
1817
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1813
1818
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
1814
1819
|
readonly startDateModel: _angular_core.ModelSignal<Date | null>;
|
|
1820
|
+
protected updateStartDateModel(startDate: Date | null): void;
|
|
1815
1821
|
readonly startDate: _angular_core.Signal<Date | null>;
|
|
1816
1822
|
readonly startTime: _angular_core.Signal<Record<string, number>>;
|
|
1817
1823
|
readonly endTime: _angular_core.Signal<Record<string, number>>;
|
|
@@ -1847,7 +1853,11 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1847
1853
|
readonly dateFilter: _angular_core.InputSignal<DateFilterType | undefined>;
|
|
1848
1854
|
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1849
1855
|
readonly disabled: _angular_core.Signal<boolean>;
|
|
1850
|
-
readonly
|
|
1856
|
+
readonly valueInput: _angular_core.InputSignal<Date | {
|
|
1857
|
+
startDate?: Date | null;
|
|
1858
|
+
endDate?: Date | null;
|
|
1859
|
+
} | null>;
|
|
1860
|
+
readonly valueModel: _angular_core.WritableSignal<Date | {
|
|
1851
1861
|
startDate?: Date | null;
|
|
1852
1862
|
endDate?: Date | null;
|
|
1853
1863
|
} | null>;
|
|
@@ -1951,10 +1961,10 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1951
1961
|
registerOnTouched(fn: any): void;
|
|
1952
1962
|
setDisabledState(isDisabled: boolean): void;
|
|
1953
1963
|
writeValue(value: any): void;
|
|
1954
|
-
handleStartTimeChange(time: Date | undefined): void;
|
|
1955
|
-
handleEndTimeChange(time: Date | undefined): void;
|
|
1964
|
+
protected handleStartTimeChange(time: Date | undefined): void;
|
|
1965
|
+
protected handleEndTimeChange(time: Date | undefined): void;
|
|
1956
1966
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DateRangePickerComponent, never>;
|
|
1957
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DateRangePickerComponent, "c-date-range-picker", ["cDateRangePicker"], { "dayFormat": { "alias": "dayFormat"; "required": false; "isSignal": true; }; "calendars": { "alias": "calendars"; "required": false; "isSignal": true; }; "cleaner": { "alias": "cleaner"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "indicator": { "alias": "indicator"; "required": false; "isSignal": true; }; "inputDateFormat": { "alias": "inputDateFormat"; "required": false; "isSignal": true; }; "inputDateParse": { "alias": "inputDateParse"; "required": false; "isSignal": true; }; "inputReadOnlyInput": { "alias": "inputReadOnly"; "required": false; "isSignal": true; }; "navYearFirst": { "alias": "navYearFirst"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ranges": { "alias": "ranges"; "required": false; "isSignal": true; }; "rangesButtonsColor": { "alias": "rangesButtonsColor"; "required": false; "isSignal": true; }; "rangesButtonsSize": { "alias": "rangesButtonsSize"; "required": false; "isSignal": true; }; "rangesButtonsVariant": { "alias": "rangesButtonsVariant"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "withTime": { "alias": "withTime"; "required": false; "isSignal": true; }; "timepickerInput": { "alias": "timepicker"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; "startDateModel": { "alias": "startDate"; "required": false; "isSignal": true; }; "endDateModel": { "alias": "endDate"; "required": false; "isSignal": true; }; "calendarDateInput": { "alias": "calendarDate"; "required": false; "isSignal": true; }; "disabledDates": { "alias": "disabledDates"; "required": false; "isSignal": true; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "navigation": { "alias": "navigation"; "required": false; "isSignal": true; }; "rangeInput": { "alias": "range"; "required": false; "isSignal": true; }; "dateFilter": { "alias": "dateFilter"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "
|
|
1967
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DateRangePickerComponent, "c-date-range-picker", ["cDateRangePicker"], { "dayFormat": { "alias": "dayFormat"; "required": false; "isSignal": true; }; "calendars": { "alias": "calendars"; "required": false; "isSignal": true; }; "cleaner": { "alias": "cleaner"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "indicator": { "alias": "indicator"; "required": false; "isSignal": true; }; "inputDateFormat": { "alias": "inputDateFormat"; "required": false; "isSignal": true; }; "inputDateParse": { "alias": "inputDateParse"; "required": false; "isSignal": true; }; "inputReadOnlyInput": { "alias": "inputReadOnly"; "required": false; "isSignal": true; }; "navYearFirst": { "alias": "navYearFirst"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ranges": { "alias": "ranges"; "required": false; "isSignal": true; }; "rangesButtonsColor": { "alias": "rangesButtonsColor"; "required": false; "isSignal": true; }; "rangesButtonsSize": { "alias": "rangesButtonsSize"; "required": false; "isSignal": true; }; "rangesButtonsVariant": { "alias": "rangesButtonsVariant"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "withTime": { "alias": "withTime"; "required": false; "isSignal": true; }; "timepickerInput": { "alias": "timepicker"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; "startDateModel": { "alias": "startDate"; "required": false; "isSignal": true; }; "endDateModel": { "alias": "endDate"; "required": false; "isSignal": true; }; "calendarDateInput": { "alias": "calendarDate"; "required": false; "isSignal": true; }; "disabledDates": { "alias": "disabledDates"; "required": false; "isSignal": true; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "navigation": { "alias": "navigation"; "required": false; "isSignal": true; }; "rangeInput": { "alias": "range"; "required": false; "isSignal": true; }; "dateFilter": { "alias": "dateFilter"; "required": false; "isSignal": true; }; "disabledInput": { "alias": "disabled"; "required": false; "isSignal": true; }; "valueInput": { "alias": "value"; "required": false; "isSignal": true; }; "weekdayFormat": { "alias": "weekdayFormat"; "required": false; "isSignal": true; }; "popperjsOptions": { "alias": "popperOptions"; "required": false; "isSignal": true; }; "selectAdjacentDays": { "alias": "selectAdjacentDays"; "required": false; "isSignal": true; }; "showAdjacentDays": { "alias": "showAdjacentDays"; "required": false; "isSignal": true; }; "selectionType": { "alias": "selectionType"; "required": false; "isSignal": true; }; "showWeekNumber": { "alias": "showWeekNumber"; "required": false; "isSignal": true; }; "weekNumbersLabel": { "alias": "weekNumbersLabel"; "required": false; "isSignal": true; }; }, { "startDateModel": "startDateChange"; "endDateModel": "endDateChange"; "valueChange": "valueChange"; "calendarCellHover": "calendarCellHover"; "calendarDateChange": "calendarDateChange"; }, ["contentTemplates"], ["*"], true, never>;
|
|
1958
1968
|
}
|
|
1959
1969
|
|
|
1960
1970
|
declare class DateRangePickerModule {
|
|
@@ -1964,17 +1974,16 @@ declare class DateRangePickerModule {
|
|
|
1964
1974
|
}
|
|
1965
1975
|
|
|
1966
1976
|
declare class DatePickerComponent extends DateRangePickerComponent {
|
|
1967
|
-
readonly dateChange: _angular_core.OutputEmitterRef<Date | null | undefined>;
|
|
1968
1977
|
readonly calendars: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
1969
1978
|
readonly placeholder: _angular_core.InputSignal<string | string[]>;
|
|
1970
1979
|
readonly range: _angular_core.WritableSignal<boolean>;
|
|
1971
1980
|
readonly endDate: _angular_core.WritableSignal<null>;
|
|
1972
|
-
readonly startDateModel: ModelSignal<Date | null>;
|
|
1981
|
+
readonly startDateModel: _angular_core.ModelSignal<Date | null>;
|
|
1973
1982
|
get date(): Date | null;
|
|
1974
1983
|
writeValue(value: Date | null): void;
|
|
1975
1984
|
subscribeDateChange(subscribe?: boolean): void;
|
|
1976
1985
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DatePickerComponent, never>;
|
|
1977
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DatePickerComponent, "c-date-picker", ["cDatePicker"], { "calendars": { "alias": "calendars"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "startDateModel": { "alias": "date"; "required": false; "isSignal": true; }; }, { "
|
|
1986
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DatePickerComponent, "c-date-picker", ["cDatePicker"], { "calendars": { "alias": "calendars"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "startDateModel": { "alias": "date"; "required": false; "isSignal": true; }; }, { "startDateModel": "dateChange"; }, never, ["*"], true, never>;
|
|
1978
1987
|
}
|
|
1979
1988
|
|
|
1980
1989
|
declare class DatePickerModule {
|
|
@@ -2012,7 +2021,7 @@ declare class DropdownMenuDirective implements OnInit, AfterContentInit {
|
|
|
2012
2021
|
onKeyDown($event: KeyboardEvent): void;
|
|
2013
2022
|
onKeyUp($event: KeyboardEvent): void;
|
|
2014
2023
|
readonly dropdownItemsContent: _angular_core.Signal<readonly DropdownItemDirective[]>;
|
|
2015
|
-
readonly items$:
|
|
2024
|
+
readonly items$: node_modules_rxjs_dist_types.Observable<readonly DropdownItemDirective[]>;
|
|
2016
2025
|
ngAfterContentInit(): void;
|
|
2017
2026
|
ngOnInit(): void;
|
|
2018
2027
|
private focusKeyManagerInit;
|
|
@@ -4211,7 +4220,6 @@ declare class RatingItemLabelComponent implements FocusableOption {
|
|
|
4211
4220
|
readonly label: _angular_core.InputSignal<string>;
|
|
4212
4221
|
readonly value: _angular_core.InputSignal<number>;
|
|
4213
4222
|
readonly focusable: _angular_core.WritableSignal<boolean>;
|
|
4214
|
-
focusableEffect: _angular_core.EffectRef;
|
|
4215
4223
|
focus(origin?: FocusOrigin): void;
|
|
4216
4224
|
getLabel(): string;
|
|
4217
4225
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RatingItemLabelComponent, never>;
|
|
@@ -4306,13 +4314,11 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
4306
4314
|
readonly hoveredItem: _angular_core.WritableSignal<number | undefined>;
|
|
4307
4315
|
readonly tooltipValue: _angular_core.WritableSignal<string | number | null>;
|
|
4308
4316
|
readonly ratingDisabled: _angular_core.Signal<boolean>;
|
|
4309
|
-
readonly ratingDisabledEffect: _angular_core.EffectRef;
|
|
4310
4317
|
readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
4311
4318
|
readonly iconTemplates: _angular_core.Signal<any>;
|
|
4312
4319
|
readonly numberOfSubItems: _angular_core.Signal<number>;
|
|
4313
4320
|
readonly ratingItems: _angular_core.Signal<number[][]>;
|
|
4314
4321
|
readonly ratingItemLabels: _angular_core.Signal<readonly RatingItemLabelComponent[]>;
|
|
4315
|
-
readonly ratingItemLabelsEffect: _angular_core.EffectRef;
|
|
4316
4322
|
readonly hostClasses: _angular_core.Signal<{
|
|
4317
4323
|
[x: string]: string | boolean | undefined;
|
|
4318
4324
|
rating: boolean;
|
|
@@ -4339,7 +4345,6 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
4339
4345
|
handleMouseEnter($event: MouseEvent, value: number): void;
|
|
4340
4346
|
getTooltipValue(index: number): string | undefined;
|
|
4341
4347
|
updateFocusableItems(): void;
|
|
4342
|
-
readonly valueEffect: _angular_core.EffectRef;
|
|
4343
4348
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RatingComponent, never>;
|
|
4344
4349
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RatingComponent, "c-rating", ["cRating"], { "activeIcon": { "alias": "activeIcon"; "required": false; "isSignal": true; }; "allowClear": { "alias": "allowClear"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "highlightOnlySelected": { "alias": "highlightOnlySelected"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "itemCount": { "alias": "itemCount"; "required": false; "isSignal": true; }; "precision": { "alias": "precision"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "tooltips": { "alias": "tooltips"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "hoverValueChange": "hoverValueChange"; }, ["contentTemplates"], never, true, never>;
|
|
4345
4350
|
}
|
|
@@ -4433,7 +4438,8 @@ declare class RangeSliderComponent implements ControlValueAccessor, OnInit {
|
|
|
4433
4438
|
* Set the current value(s) of the Angular Range Slider using the `value` prop.
|
|
4434
4439
|
* Whether you're using a single value or an array for multi-handle sliders, this prop controls the slider's position and ensures it reflects the desired state.
|
|
4435
4440
|
*/
|
|
4436
|
-
readonly
|
|
4441
|
+
readonly valueInput: _angular_core.InputSignal<number | number[]>;
|
|
4442
|
+
readonly value: _angular_core.WritableSignal<number | number[]>;
|
|
4437
4443
|
readonly valueChange: _angular_core.OutputEmitterRef<number | number[]>;
|
|
4438
4444
|
readonly currentValue: _angular_core.Signal<number[]>;
|
|
4439
4445
|
readonly valueEffect: _angular_core.EffectRef;
|
|
@@ -4473,7 +4479,7 @@ declare class RangeSliderComponent implements ControlValueAccessor, OnInit {
|
|
|
4473
4479
|
handleMouseMove($event: MouseEvent): void;
|
|
4474
4480
|
handleMouseUp(): void;
|
|
4475
4481
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RangeSliderComponent, never>;
|
|
4476
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RangeSliderComponent, "c-range-slider", never, { "clickableLabels": { "alias": "clickableLabels"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "distance": { "alias": "distance"; "required": false; "isSignal": true; }; "labels": { "alias": "labels"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "tooltips": { "alias": "tooltips"; "required": false; "isSignal": true; }; "tooltipsFormat": { "alias": "tooltipsFormat"; "required": false; "isSignal": true; }; "track": { "alias": "track"; "required": false; "isSignal": true; }; "
|
|
4482
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RangeSliderComponent, "c-range-slider", never, { "clickableLabels": { "alias": "clickableLabels"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "distance": { "alias": "distance"; "required": false; "isSignal": true; }; "labels": { "alias": "labels"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "tooltips": { "alias": "tooltips"; "required": false; "isSignal": true; }; "tooltipsFormat": { "alias": "tooltipsFormat"; "required": false; "isSignal": true; }; "track": { "alias": "track"; "required": false; "isSignal": true; }; "valueInput": { "alias": "value"; "required": false; "isSignal": true; }; "vertical": { "alias": "vertical"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
4477
4483
|
}
|
|
4478
4484
|
|
|
4479
4485
|
declare class RangeSliderModule {
|
|
@@ -4558,7 +4564,7 @@ declare class ColorModeService {
|
|
|
4558
4564
|
#private;
|
|
4559
4565
|
readonly eventName: WritableSignal<string>;
|
|
4560
4566
|
readonly localStorageItemName: WritableSignal<string | undefined>;
|
|
4561
|
-
readonly localStorageItemName$:
|
|
4567
|
+
readonly localStorageItemName$: node_modules_rxjs_dist_types.Observable<string | undefined>;
|
|
4562
4568
|
readonly colorMode: WritableSignal<ColorMode>;
|
|
4563
4569
|
constructor();
|
|
4564
4570
|
getStoredTheme(localStorageItemName: string): any;
|
|
@@ -6216,37 +6222,37 @@ declare class TabPanelComponent {
|
|
|
6216
6222
|
* @type string
|
|
6217
6223
|
* @default undefined
|
|
6218
6224
|
*/
|
|
6219
|
-
readonly ariaLabelledBy: InputSignal<string | undefined>;
|
|
6225
|
+
readonly ariaLabelledBy: _angular_core.InputSignal<string | undefined>;
|
|
6220
6226
|
/**
|
|
6221
6227
|
* Element id attribute
|
|
6222
6228
|
* @type string
|
|
6223
6229
|
* @default undefined
|
|
6224
6230
|
*/
|
|
6225
|
-
readonly id: InputSignal<string | undefined>;
|
|
6231
|
+
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
6226
6232
|
/**
|
|
6227
6233
|
* Item key.
|
|
6228
6234
|
* @type string | number
|
|
6229
6235
|
* @required
|
|
6230
6236
|
*/
|
|
6231
|
-
readonly itemKey: InputSignal<string | number>;
|
|
6237
|
+
readonly itemKey: _angular_core.InputSignal<string | number>;
|
|
6232
6238
|
/**
|
|
6233
6239
|
* Element role.
|
|
6234
6240
|
* @type string
|
|
6235
6241
|
* @default 'tabpanel'
|
|
6236
6242
|
*/
|
|
6237
|
-
readonly role: InputSignal<string>;
|
|
6243
|
+
readonly role: _angular_core.InputSignal<string>;
|
|
6238
6244
|
/**
|
|
6239
6245
|
* tabindex attribute.
|
|
6240
6246
|
* @type number
|
|
6241
6247
|
* @default 0
|
|
6242
6248
|
*/
|
|
6243
|
-
readonly tabindex: InputSignalWithTransform<number, unknown>;
|
|
6249
|
+
readonly tabindex: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
6244
6250
|
/**
|
|
6245
6251
|
* Enable fade in transition.
|
|
6246
6252
|
* @type boolean
|
|
6247
6253
|
* @default true
|
|
6248
6254
|
*/
|
|
6249
|
-
readonly transition: InputSignal<boolean>;
|
|
6255
|
+
readonly transition: _angular_core.InputSignal<boolean>;
|
|
6250
6256
|
/**
|
|
6251
6257
|
* visible change output
|
|
6252
6258
|
* @type OutputEmitterRef<VisibleChangeEvent>
|
|
@@ -6535,9 +6541,9 @@ declare class ToasterService {
|
|
|
6535
6541
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ToasterService>;
|
|
6536
6542
|
}
|
|
6537
6543
|
|
|
6538
|
-
type AnimateType = 'hide' | 'show';
|
|
6539
6544
|
declare class ToastComponent implements OnInit, OnDestroy {
|
|
6540
6545
|
#private;
|
|
6546
|
+
readonly destroyRef: DestroyRef;
|
|
6541
6547
|
readonly changeDetectorRef: ChangeDetectorRef;
|
|
6542
6548
|
readonly hostElement: ElementRef<any>;
|
|
6543
6549
|
readonly renderer: Renderer2;
|
|
@@ -6565,6 +6571,11 @@ declare class ToastComponent implements OnInit, OnDestroy {
|
|
|
6565
6571
|
* @return boolean
|
|
6566
6572
|
*/
|
|
6567
6573
|
readonly fade: _angular_core.InputSignal<boolean>;
|
|
6574
|
+
/**
|
|
6575
|
+
* ARIA role attribute.
|
|
6576
|
+
* @return string
|
|
6577
|
+
*/
|
|
6578
|
+
readonly role: _angular_core.InputSignal<string>;
|
|
6568
6579
|
/**
|
|
6569
6580
|
* Toggle the visibility of component.
|
|
6570
6581
|
* @return boolean
|
|
@@ -6592,8 +6603,6 @@ declare class ToastComponent implements OnInit, OnDestroy {
|
|
|
6592
6603
|
private _clock;
|
|
6593
6604
|
get clock(): number;
|
|
6594
6605
|
set clock(value: number);
|
|
6595
|
-
readonly animationDisabled: _angular_core.Signal<boolean>;
|
|
6596
|
-
get animateType(): AnimateType;
|
|
6597
6606
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
6598
6607
|
ngOnInit(): void;
|
|
6599
6608
|
ngOnDestroy(): void;
|
|
@@ -6602,8 +6611,15 @@ declare class ToastComponent implements OnInit, OnDestroy {
|
|
|
6602
6611
|
onClose(): void;
|
|
6603
6612
|
setClock(): void;
|
|
6604
6613
|
clearClock(): void;
|
|
6614
|
+
protected handleEnter($event: AnimationCallbackEvent): void;
|
|
6615
|
+
protected handleLeave($event: AnimationCallbackEvent): void;
|
|
6605
6616
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastComponent, never>;
|
|
6606
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToastComponent, "c-toast", ["cToast"], { "dynamic": { "alias": "dynamic"; "required": false; "isSignal": true; }; "placementInput": { "alias": "placement"; "required": false; "isSignal": true; }; "autohide": { "alias": "autohide"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "delay": { "alias": "delay"; "required": false; "isSignal": true; }; "fade": { "alias": "fade"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; "index": { "alias": "index"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; "timer": "timer"; }, never, ["*"], true, never>;
|
|
6617
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToastComponent, "c-toast", ["cToast"], { "dynamic": { "alias": "dynamic"; "required": false; "isSignal": true; }; "placementInput": { "alias": "placement"; "required": false; "isSignal": true; }; "autohide": { "alias": "autohide"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "delay": { "alias": "delay"; "required": false; "isSignal": true; }; "fade": { "alias": "fade"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; "index": { "alias": "index"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; "timer": "timer"; }, never, ["*"], true, never>;
|
|
6618
|
+
}
|
|
6619
|
+
|
|
6620
|
+
declare class ToastContentComponent {
|
|
6621
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastContentComponent, never>;
|
|
6622
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToastContentComponent, "c-toast-content", never, {}, {}, never, ["*"], true, never>;
|
|
6607
6623
|
}
|
|
6608
6624
|
|
|
6609
6625
|
declare class ToastBodyComponent {
|
|
@@ -6634,7 +6650,7 @@ declare class ToastCloseDirective {
|
|
|
6634
6650
|
|
|
6635
6651
|
declare class ToastModule {
|
|
6636
6652
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastModule, never>;
|
|
6637
|
-
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<ToastModule, never, [typeof ToastBodyComponent, typeof ToastComponent, typeof ToastCloseDirective, typeof ToastHeaderComponent, typeof ToasterComponent, typeof ToasterHostDirective], [typeof ToastBodyComponent, typeof ToastComponent, typeof ToastCloseDirective, typeof ToastHeaderComponent, typeof ToasterComponent, typeof ToasterHostDirective]>;
|
|
6653
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<ToastModule, never, [typeof ToastBodyComponent, typeof ToastComponent, typeof ToastContentComponent, typeof ToastCloseDirective, typeof ToastHeaderComponent, typeof ToasterComponent, typeof ToasterHostDirective], [typeof ToastBodyComponent, typeof ToastComponent, typeof ToastContentComponent, typeof ToastCloseDirective, typeof ToastHeaderComponent, typeof ToasterComponent, typeof ToasterHostDirective]>;
|
|
6638
6654
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<ToastModule>;
|
|
6639
6655
|
}
|
|
6640
6656
|
|
|
@@ -7006,5 +7022,5 @@ declare class WidgetModule {
|
|
|
7006
7022
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<WidgetModule>;
|
|
7007
7023
|
}
|
|
7008
7024
|
|
|
7009
|
-
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, 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, ToastHeaderComponent, ToastModule, ToasterComponent, ToasterHostDirective, ToasterPlacement, ToasterService, TooltipComponent, TooltipDirective, TooltipModule, UIDService, UtilitiesModule, WidgetModule, WidgetStatAComponent, WidgetStatBComponent, WidgetStatCComponent, WidgetStatDComponent, WidgetStatEComponent, WidgetStatFComponent };
|
|
7025
|
+
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, 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 };
|
|
7010
7026
|
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, SearchFn, Shapes, Sizes, SortOrder, StepperRef, StepperStepData, StepperStepValidationResult, TToasterPlacement, TextColors, ThumbSize, Triggers, ValueOrigin };
|