@coreui/angular-pro 5.7.18 → 5.7.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/coreui-angular-pro.mjs +1814 -1431
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/package.json +2 -2
- package/types/coreui-angular-pro.d.ts +743 -516
|
@@ -72,6 +72,10 @@ declare class ElementRefDirective {
|
|
|
72
72
|
|
|
73
73
|
declare class HtmlAttributesDirective {
|
|
74
74
|
#private;
|
|
75
|
+
/**
|
|
76
|
+
* A map of HTML attributes (including `class` and `style`) to set on the host element.
|
|
77
|
+
* @returns Record<string, any>
|
|
78
|
+
*/
|
|
75
79
|
readonly cHtmlAttr: _angular_core.InputSignal<Record<string, any> | undefined>;
|
|
76
80
|
private setStyle;
|
|
77
81
|
private addClass;
|
|
@@ -82,6 +86,10 @@ declare class HtmlAttributesDirective {
|
|
|
82
86
|
|
|
83
87
|
declare class TemplateIdDirective {
|
|
84
88
|
readonly templateRef: TemplateRef<any>;
|
|
89
|
+
/**
|
|
90
|
+
* Predefined template name (id) for optional slots
|
|
91
|
+
* @returns string
|
|
92
|
+
*/
|
|
85
93
|
readonly cTemplateId: _angular_core.InputSignal<string>;
|
|
86
94
|
get id(): string;
|
|
87
95
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TemplateIdDirective, never>;
|
|
@@ -92,12 +100,12 @@ declare class ThemeDirective {
|
|
|
92
100
|
#private;
|
|
93
101
|
/**
|
|
94
102
|
* Add dark theme attribute.
|
|
95
|
-
* @
|
|
103
|
+
* @returns 'dark' | 'light' | undefined
|
|
96
104
|
*/
|
|
97
105
|
readonly colorScheme: _angular_core.InputSignal<"dark" | "light" | undefined>;
|
|
98
106
|
/**
|
|
99
107
|
* Add darker controls, indicators, and captions.
|
|
100
|
-
* @
|
|
108
|
+
* @returns boolean
|
|
101
109
|
* @default false
|
|
102
110
|
*/
|
|
103
111
|
readonly dark: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -116,13 +124,13 @@ declare class SharedModule {
|
|
|
116
124
|
|
|
117
125
|
declare class AccordionButtonDirective {
|
|
118
126
|
/**
|
|
119
|
-
* Toggles an accordion button collapsed state. Use in accordionHeaderTemplate.
|
|
120
|
-
* @
|
|
127
|
+
* Toggles an accordion button collapsed state. Use in accordionHeaderTemplate.
|
|
128
|
+
* @returns boolean
|
|
121
129
|
*/
|
|
122
130
|
readonly collapsed: _angular_core.InputSignal<boolean | undefined>;
|
|
123
131
|
/**
|
|
124
|
-
* Default type for cAccordionButton
|
|
125
|
-
* @
|
|
132
|
+
* Default type for cAccordionButton
|
|
133
|
+
* @returns string
|
|
126
134
|
* @default 'button'
|
|
127
135
|
*/
|
|
128
136
|
readonly type: _angular_core.InputSignal<string>;
|
|
@@ -136,12 +144,12 @@ declare class AccordionComponent {
|
|
|
136
144
|
#private;
|
|
137
145
|
/**
|
|
138
146
|
* Removes the default background-color, some borders, and some rounded corners to render accordions edge-to-edge with their parent container.
|
|
139
|
-
* @
|
|
147
|
+
* @returns boolean
|
|
140
148
|
*/
|
|
141
149
|
readonly flush: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
142
150
|
/**
|
|
143
151
|
* Make accordion items stay open when another item is opened
|
|
144
|
-
* @
|
|
152
|
+
* @returns boolean
|
|
145
153
|
*/
|
|
146
154
|
readonly alwaysOpen: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
147
155
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -153,7 +161,7 @@ declare class AccordionItemComponent implements OnInit, OnDestroy {
|
|
|
153
161
|
#private;
|
|
154
162
|
/**
|
|
155
163
|
* Toggle an accordion item programmatically
|
|
156
|
-
* @
|
|
164
|
+
* @returns boolean
|
|
157
165
|
* @default false
|
|
158
166
|
*/
|
|
159
167
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -224,7 +232,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
|
224
232
|
static ngAcceptInputType_visibleItems: NumberInput$1;
|
|
225
233
|
/**
|
|
226
234
|
* Optional popper Options object
|
|
227
|
-
* @
|
|
235
|
+
* @returns Partial<Options>
|
|
228
236
|
*/
|
|
229
237
|
readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
|
|
230
238
|
readonly popperOptions: _angular_core.Signal<Partial<Options>>;
|
|
@@ -237,13 +245,13 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
|
237
245
|
readonly allowOnlyDefinedOptions: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
238
246
|
/**
|
|
239
247
|
* Sets the accessible label (`aria-label`) for the button that clears the current selection. This improves accessibility for screen readers.
|
|
240
|
-
* @
|
|
248
|
+
* @returns string
|
|
241
249
|
* @since 5.7.7
|
|
242
250
|
*/
|
|
243
251
|
readonly ariaCleanerLabel: _angular_core.InputSignal<string>;
|
|
244
252
|
/**
|
|
245
253
|
* Sets the accessible label (`aria-label`) for the dropdown toggle indicator button. This improves accessibility for screen readers.
|
|
246
|
-
* @
|
|
254
|
+
* @returns string
|
|
247
255
|
* @since 5.7.7
|
|
248
256
|
*/
|
|
249
257
|
readonly ariaIndicatorLabel: _angular_core.InputSignal<string>;
|
|
@@ -290,14 +298,14 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
|
290
298
|
/**
|
|
291
299
|
* Unique identifier for the Autocomplete component.
|
|
292
300
|
* If not provided, a default ID will be generated.
|
|
293
|
-
* @
|
|
301
|
+
* @returns string
|
|
294
302
|
* @default 'autocomplete-<nextId>'
|
|
295
303
|
*/
|
|
296
304
|
readonly idInput: _angular_core.InputSignal<string | undefined>;
|
|
297
305
|
/**
|
|
298
306
|
* Unique identifier for the Autocomplete component.
|
|
299
307
|
* If `idInput` is not provided, a default ID will be generated.
|
|
300
|
-
* @
|
|
308
|
+
* @returns string
|
|
301
309
|
*/
|
|
302
310
|
readonly id: _angular_core.Signal<string>;
|
|
303
311
|
/**
|
|
@@ -308,7 +316,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
|
308
316
|
readonly indicator: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
309
317
|
/**
|
|
310
318
|
* The size of the option item in the list (in pixels).
|
|
311
|
-
* @
|
|
319
|
+
* @returns number
|
|
312
320
|
* @default 40
|
|
313
321
|
*/
|
|
314
322
|
readonly itemSize: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
@@ -450,7 +458,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
|
450
458
|
readonly optionChange: _angular_core.OutputEmitterRef<IAutocompleteOption | null>;
|
|
451
459
|
/**
|
|
452
460
|
* Event emitted on `value` change.
|
|
453
|
-
* @
|
|
461
|
+
* @returns string | null
|
|
454
462
|
*/
|
|
455
463
|
readonly valueChange: _angular_core.OutputEmitterRef<string | null>;
|
|
456
464
|
/**
|
|
@@ -492,41 +500,44 @@ declare class AlertComponent {
|
|
|
492
500
|
#private;
|
|
493
501
|
/**
|
|
494
502
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
495
|
-
* @
|
|
503
|
+
* @returns Colors
|
|
496
504
|
* @default 'primary'
|
|
497
505
|
*/
|
|
498
506
|
readonly color: _angular_core.InputSignal<string>;
|
|
499
507
|
/**
|
|
500
|
-
* Default role for alert
|
|
501
|
-
* @
|
|
508
|
+
* Default role for alert
|
|
509
|
+
* @returns string
|
|
502
510
|
* @default 'alert'
|
|
503
511
|
*/
|
|
504
512
|
readonly role: _angular_core.InputSignal<string>;
|
|
505
513
|
/**
|
|
506
514
|
* Set the alert variant to a solid.
|
|
507
|
-
* @
|
|
515
|
+
* @returns string
|
|
516
|
+
* @default 'solid'
|
|
508
517
|
*/
|
|
509
518
|
readonly variant: _angular_core.InputSignal<"solid" | undefined>;
|
|
510
519
|
/**
|
|
511
520
|
* Optionally adds a close button to the alert and allow it to self-dismiss.
|
|
512
|
-
* @
|
|
521
|
+
* @returns boolean
|
|
513
522
|
* @default false
|
|
514
523
|
*/
|
|
515
524
|
readonly dismissible: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
516
525
|
/**
|
|
517
526
|
* Adds animation for dismissible alert.
|
|
518
|
-
* @
|
|
527
|
+
* @returns boolean
|
|
528
|
+
* @default false
|
|
519
529
|
*/
|
|
520
530
|
readonly fade: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
521
531
|
/**
|
|
522
532
|
* Toggle the visibility of the alert component.
|
|
523
|
-
* @
|
|
533
|
+
* @returns boolean
|
|
534
|
+
* @default true
|
|
524
535
|
*/
|
|
525
536
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
526
537
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
527
538
|
/**
|
|
528
539
|
* Event triggered on the alert visibility change.
|
|
529
|
-
* @
|
|
540
|
+
* @returns boolean
|
|
530
541
|
*/
|
|
531
542
|
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
532
543
|
protected readonly hide: _angular_core.WritableSignal<boolean>;
|
|
@@ -549,7 +560,7 @@ declare class AlertModule {
|
|
|
549
560
|
declare class TextColorDirective {
|
|
550
561
|
/**
|
|
551
562
|
* Set text-color of element
|
|
552
|
-
* @
|
|
563
|
+
* @returns TextColors
|
|
553
564
|
*/
|
|
554
565
|
readonly color: InputSignal<TextColors>;
|
|
555
566
|
readonly hostClasses: _angular_core.Signal<{
|
|
@@ -562,38 +573,39 @@ declare class TextColorDirective {
|
|
|
562
573
|
declare class AvatarComponent {
|
|
563
574
|
/**
|
|
564
575
|
* Sets the background color context of the component to one of CoreUI’s themed colors.
|
|
565
|
-
* @
|
|
576
|
+
* @returns Colors
|
|
566
577
|
*/
|
|
567
578
|
readonly color: _angular_core.InputSignal<string | undefined>;
|
|
568
579
|
/**
|
|
569
580
|
* Select the shape of the component.
|
|
570
|
-
* @
|
|
581
|
+
* @returns Shapes
|
|
571
582
|
*/
|
|
572
583
|
readonly shape: _angular_core.InputSignal<string | undefined>;
|
|
573
584
|
/**
|
|
574
585
|
* Size the component small, large, or extra large.
|
|
586
|
+
* @returns Omit<Sizes, 'xxl'>
|
|
575
587
|
* @default 'md'
|
|
576
588
|
*/
|
|
577
589
|
readonly size: _angular_core.InputSignal<Omit<string, "xxl">>;
|
|
578
590
|
/**
|
|
579
591
|
* The alt attribute for the img element alternate text.
|
|
580
|
-
* @
|
|
592
|
+
* @returns string
|
|
581
593
|
*/
|
|
582
594
|
readonly alt: _angular_core.InputSignal<string>;
|
|
583
595
|
/**
|
|
584
596
|
* The src attribute for the img element.
|
|
585
|
-
* @
|
|
597
|
+
* @returns string
|
|
586
598
|
*/
|
|
587
599
|
readonly src: _angular_core.InputSignal<string | undefined>;
|
|
588
600
|
/**
|
|
589
601
|
* Sets the color context of the status indicator to one of CoreUI’s themed colors.
|
|
590
|
-
* @
|
|
602
|
+
* @returns Colors
|
|
591
603
|
*/
|
|
592
604
|
readonly status: _angular_core.InputSignal<string | undefined>;
|
|
593
605
|
/**
|
|
594
|
-
* Sets the text color of the component to one of CoreUI’s themed colors
|
|
606
|
+
* Sets the text color of the component to one of CoreUI’s themed colors
|
|
595
607
|
* via TextColorDirective
|
|
596
|
-
* @
|
|
608
|
+
* @returns TextColors
|
|
597
609
|
*/
|
|
598
610
|
readonly textColor: _angular_core.InputSignal<string | undefined>;
|
|
599
611
|
readonly statusClass: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -611,7 +623,7 @@ declare class AvatarModule {
|
|
|
611
623
|
declare class TextBgColorDirective {
|
|
612
624
|
/**
|
|
613
625
|
* Set text-bg-color of element
|
|
614
|
-
* @
|
|
626
|
+
* @returns Colors
|
|
615
627
|
*/
|
|
616
628
|
readonly textBgColor: InputSignal<Colors>;
|
|
617
629
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -622,17 +634,17 @@ declare class TextBgColorDirective {
|
|
|
622
634
|
declare class BadgeComponent {
|
|
623
635
|
/**
|
|
624
636
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
625
|
-
* @
|
|
637
|
+
* @returns Colors
|
|
626
638
|
*/
|
|
627
639
|
readonly color: InputSignal<Colors | undefined>;
|
|
628
640
|
/**
|
|
629
641
|
* Position badge in one of the corners of a link or button.
|
|
630
|
-
* @
|
|
642
|
+
* @returns BadgePositions
|
|
631
643
|
*/
|
|
632
644
|
readonly position: InputSignal<BadgePositions | undefined>;
|
|
633
645
|
/**
|
|
634
646
|
* Select the shape of the component.
|
|
635
|
-
* @
|
|
647
|
+
* @returns Shapes
|
|
636
648
|
*/
|
|
637
649
|
readonly shape: InputSignal<Shapes | undefined>;
|
|
638
650
|
/**
|
|
@@ -642,13 +654,13 @@ declare class BadgeComponent {
|
|
|
642
654
|
/**
|
|
643
655
|
* Sets the text color of the component to one of CoreUI’s themed colors.
|
|
644
656
|
* via TextColorDirective
|
|
645
|
-
* @
|
|
657
|
+
* @returns TextColors
|
|
646
658
|
*/
|
|
647
659
|
readonly textColor: InputSignal<TextColors | undefined>;
|
|
648
660
|
/**
|
|
649
661
|
* Sets the component's color scheme to one of CoreUI's themed colors, ensuring the text color contrast adheres to the WCAG 4.5:1 contrast ratio standard for accessibility.
|
|
650
662
|
* via TextBgColorDirective
|
|
651
|
-
* @
|
|
663
|
+
* @returns Colors
|
|
652
664
|
* @since 5.0.0
|
|
653
665
|
*/
|
|
654
666
|
readonly textBgColor: InputSignal<Colors | undefined>;
|
|
@@ -691,24 +703,27 @@ interface IBreadcrumbItem {
|
|
|
691
703
|
declare class BreadcrumbItemComponent {
|
|
692
704
|
#private;
|
|
693
705
|
/**
|
|
694
|
-
* Toggle the active state for the component
|
|
695
|
-
* @
|
|
706
|
+
* Toggle the active state for the component
|
|
707
|
+
* @returns boolean
|
|
696
708
|
*/
|
|
697
709
|
readonly active: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
698
710
|
/**
|
|
699
|
-
* The `url` prop for the inner `[routerLink]` directive
|
|
700
|
-
* @
|
|
711
|
+
* The `url` prop for the inner `[routerLink]` directive
|
|
712
|
+
* @returns string
|
|
701
713
|
*/
|
|
702
714
|
readonly url: _angular_core.InputSignal<string | any[] | undefined>;
|
|
703
715
|
/**
|
|
704
|
-
* Additional html attributes for link
|
|
705
|
-
* @
|
|
716
|
+
* Additional html attributes for link
|
|
717
|
+
* @returns INavAttributes
|
|
706
718
|
*/
|
|
707
719
|
readonly attribs: _angular_core.InputSignal<INavAttributes$1 | undefined>;
|
|
720
|
+
/**
|
|
721
|
+
* @deprecated The `attributes` prop is deprecated, use `attribs` instead
|
|
722
|
+
*/
|
|
708
723
|
protected readonly _attributes: _angular_core.InputSignal<INavAttributes$1 | undefined>;
|
|
709
724
|
/**
|
|
710
|
-
* Some `NavigationExtras` props for the inner `[routerLink]` directive and `routerLinkActiveOptions
|
|
711
|
-
* @
|
|
725
|
+
* Some `NavigationExtras` props for the inner `[routerLink]` directive and `routerLinkActiveOptions`
|
|
726
|
+
* @returns INavLinkProps
|
|
712
727
|
*/
|
|
713
728
|
readonly linkProps: _angular_core.InputSignal<INavLinkProps$1 | undefined>;
|
|
714
729
|
readonly ariaCurrent: _angular_core.Signal<string | null>;
|
|
@@ -719,14 +734,14 @@ declare class BreadcrumbItemComponent {
|
|
|
719
734
|
|
|
720
735
|
declare class BreadcrumbComponent {
|
|
721
736
|
/**
|
|
722
|
-
* Default aria-label for breadcrumb
|
|
723
|
-
* @
|
|
737
|
+
* Default aria-label for breadcrumb
|
|
738
|
+
* @returns string
|
|
724
739
|
* @default 'breadcrumb'
|
|
725
740
|
*/
|
|
726
741
|
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
727
742
|
/**
|
|
728
|
-
* Default role for breadcrumb
|
|
729
|
-
* @
|
|
743
|
+
* Default role for breadcrumb
|
|
744
|
+
* @returns string
|
|
730
745
|
* @default 'navigation'
|
|
731
746
|
*/
|
|
732
747
|
readonly role: _angular_core.InputSignal<string>;
|
|
@@ -737,8 +752,8 @@ declare class BreadcrumbComponent {
|
|
|
737
752
|
declare class BreadcrumbRouterComponent {
|
|
738
753
|
#private;
|
|
739
754
|
/**
|
|
740
|
-
* Optional array of IBreadcrumbItem to override default BreadcrumbRouter behavior
|
|
741
|
-
* @
|
|
755
|
+
* Optional array of IBreadcrumbItem to override default BreadcrumbRouter behavior
|
|
756
|
+
* @returns IBreadcrumbItem[]
|
|
742
757
|
*/
|
|
743
758
|
readonly items: _angular_core.InputSignal<IBreadcrumbItem[] | undefined>;
|
|
744
759
|
readonly breadcrumbs: _angular_core.Signal<IBreadcrumbItem[]>;
|
|
@@ -765,28 +780,28 @@ declare class ButtonDirective {
|
|
|
765
780
|
static ngAcceptInputType_active: BooleanInput;
|
|
766
781
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
767
782
|
/**
|
|
768
|
-
* Toggle the active state for the component
|
|
769
|
-
* @
|
|
783
|
+
* Toggle the active state for the component
|
|
784
|
+
* @returns boolean
|
|
770
785
|
*/
|
|
771
786
|
readonly active: InputSignalWithTransform<boolean, unknown>;
|
|
772
787
|
/**
|
|
773
|
-
* Sets the color context of the component to one of CoreUI’s themed colors
|
|
774
|
-
* @
|
|
788
|
+
* Sets the color context of the component to one of CoreUI’s themed colors
|
|
789
|
+
* @returns Colors
|
|
775
790
|
*/
|
|
776
|
-
readonly color: InputSignal<
|
|
791
|
+
readonly color: InputSignal<string>;
|
|
777
792
|
/**
|
|
778
793
|
* Toggle the disabled state for the component.
|
|
779
|
-
* @
|
|
794
|
+
* @returns boolean
|
|
780
795
|
*/
|
|
781
796
|
readonly disabled: InputSignalWithTransform<boolean, unknown>;
|
|
782
797
|
/**
|
|
783
798
|
* Select the shape of the component.
|
|
784
|
-
* @
|
|
799
|
+
* @returns Shapes
|
|
785
800
|
*/
|
|
786
801
|
readonly shape: InputSignal<string | undefined>;
|
|
787
802
|
/**
|
|
788
803
|
* Size the component small or large.
|
|
789
|
-
* @
|
|
804
|
+
* @returns 'sm' | 'lg' | ''
|
|
790
805
|
*/
|
|
791
806
|
readonly size: InputSignal<string>;
|
|
792
807
|
/**
|
|
@@ -796,15 +811,15 @@ declare class ButtonDirective {
|
|
|
796
811
|
/**
|
|
797
812
|
* Specifies the type of button. Always specify the type attribute for the `<button>` element.
|
|
798
813
|
* Different browsers may use different default types for the `<button>` element.
|
|
799
|
-
* @
|
|
814
|
+
* @returns ButtonType
|
|
800
815
|
* @default 'button'
|
|
801
816
|
*/
|
|
802
817
|
readonly type: InputSignal<ButtonType>;
|
|
803
818
|
/**
|
|
804
819
|
* Set the button variant to an outlined button or a ghost button.
|
|
805
|
-
* @
|
|
820
|
+
* @returns 'ghost' | 'outline' | undefined
|
|
806
821
|
*/
|
|
807
|
-
readonly variant: InputSignal<
|
|
822
|
+
readonly variant: InputSignal<"outline" | "ghost" | undefined>;
|
|
808
823
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
809
824
|
readonly _disabled: _angular_core.Signal<boolean>;
|
|
810
825
|
readonly ariaDisabled: _angular_core.Signal<true | null>;
|
|
@@ -818,7 +833,7 @@ declare class ButtonDirective {
|
|
|
818
833
|
declare class ButtonCloseDirective extends ButtonDirective {
|
|
819
834
|
/**
|
|
820
835
|
* Change the default color to white.
|
|
821
|
-
* @
|
|
836
|
+
* @returns boolean
|
|
822
837
|
* @deprecated 5.0.0. Use `cButtonClose.dark` instead.
|
|
823
838
|
*/
|
|
824
839
|
readonly white: InputSignalWithTransform<boolean, unknown>;
|
|
@@ -836,17 +851,17 @@ declare class ButtonModule {
|
|
|
836
851
|
declare class ButtonGroupComponent {
|
|
837
852
|
/**
|
|
838
853
|
* Size the component small or large.
|
|
839
|
-
* @
|
|
854
|
+
* @returns '' | 'sm' | 'lg' | string
|
|
840
855
|
*/
|
|
841
856
|
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
842
857
|
/**
|
|
843
858
|
* Create a set of buttons that appear vertically stacked rather than horizontally. Split button dropdowns are not supported here.
|
|
844
|
-
* @
|
|
859
|
+
* @returns boolean
|
|
845
860
|
*/
|
|
846
861
|
readonly vertical: InputSignalWithTransform<boolean, unknown>;
|
|
847
862
|
/**
|
|
848
|
-
* Default role attr for ButtonGroup
|
|
849
|
-
* @
|
|
863
|
+
* Default role attr for ButtonGroup
|
|
864
|
+
* @returns string
|
|
850
865
|
* @default 'group'
|
|
851
866
|
*/
|
|
852
867
|
readonly role: _angular_core.InputSignal<string>;
|
|
@@ -857,8 +872,8 @@ declare class ButtonGroupComponent {
|
|
|
857
872
|
|
|
858
873
|
declare class ButtonToolbarComponent {
|
|
859
874
|
/**
|
|
860
|
-
* Default role attr for ButtonToolbar
|
|
861
|
-
* @
|
|
875
|
+
* Default role attr for ButtonToolbar
|
|
876
|
+
* @returns string
|
|
862
877
|
* @default 'toolbar'
|
|
863
878
|
*/
|
|
864
879
|
readonly role: InputSignal<string>;
|
|
@@ -987,18 +1002,18 @@ declare class CalendarMonthComponent {
|
|
|
987
1002
|
readonly addMonths: _angular_core.Signal<number>;
|
|
988
1003
|
/**
|
|
989
1004
|
* Initial selected date.
|
|
990
|
-
* @
|
|
1005
|
+
* @returns (Date | null)
|
|
991
1006
|
*/
|
|
992
1007
|
readonly startDate: _angular_core.WritableSignal<Date | null>;
|
|
993
1008
|
/**
|
|
994
1009
|
* Initial selected to date (range).
|
|
995
|
-
* @
|
|
1010
|
+
* @returns Date | null
|
|
996
1011
|
*/
|
|
997
1012
|
readonly endDate: _angular_core.WritableSignal<Date | null>;
|
|
998
1013
|
readonly datesEffect: _angular_core.EffectRef;
|
|
999
1014
|
/**
|
|
1000
1015
|
* Specify the list of dates that cannot be selected.
|
|
1001
|
-
* @
|
|
1016
|
+
* @returns Date[] | Date[][]
|
|
1002
1017
|
*/
|
|
1003
1018
|
readonly disabledDates: _angular_core.WritableSignal<(Date | Date[])[]>;
|
|
1004
1019
|
/**
|
|
@@ -1019,19 +1034,19 @@ declare class CalendarMonthComponent {
|
|
|
1019
1034
|
readonly locale: _angular_core.WritableSignal<string>;
|
|
1020
1035
|
/**
|
|
1021
1036
|
* Allow range selection.
|
|
1022
|
-
* @
|
|
1037
|
+
* @returns boolean
|
|
1023
1038
|
* @default false
|
|
1024
1039
|
*/
|
|
1025
1040
|
readonly range: _angular_core.WritableSignal<boolean>;
|
|
1026
1041
|
/**
|
|
1027
1042
|
* Set length or format of day name.
|
|
1028
|
-
* @
|
|
1043
|
+
* @returns number | 'long' | 'narrow' | 'short'
|
|
1029
1044
|
* @default 'short'
|
|
1030
1045
|
*/
|
|
1031
1046
|
readonly weekdayFormat: _angular_core.WritableSignal<number | "long" | "short" | "narrow">;
|
|
1032
1047
|
/**
|
|
1033
1048
|
* Set calendar view.
|
|
1034
|
-
* @
|
|
1049
|
+
* @returns 'days' | 'months' | 'years'
|
|
1035
1050
|
* @default 'days'
|
|
1036
1051
|
*/
|
|
1037
1052
|
readonly view: _angular_core.WritableSignal<"days" | "months" | "years">;
|
|
@@ -1050,7 +1065,7 @@ declare class CalendarMonthComponent {
|
|
|
1050
1065
|
readonly listOfYears: _angular_core.Signal<number[][]>;
|
|
1051
1066
|
/**
|
|
1052
1067
|
* Default date of the component
|
|
1053
|
-
* @
|
|
1068
|
+
* @returns Date
|
|
1054
1069
|
*/
|
|
1055
1070
|
readonly calendarDate: _angular_core.WritableSignal<Date>;
|
|
1056
1071
|
readonly date: _angular_core.Signal<Date>;
|
|
@@ -1102,7 +1117,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1102
1117
|
static ngAcceptInputType_showWeekNumber: BooleanInput$1;
|
|
1103
1118
|
/**
|
|
1104
1119
|
* Event emitted on calendar month change.
|
|
1105
|
-
* @
|
|
1120
|
+
* @returns Date
|
|
1106
1121
|
*/
|
|
1107
1122
|
readonly calendarDateChange: _angular_core.OutputEmitterRef<Date>;
|
|
1108
1123
|
/**
|
|
@@ -1123,24 +1138,24 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1123
1138
|
/**
|
|
1124
1139
|
* Set the format of day name.
|
|
1125
1140
|
* @default 'numeric'
|
|
1126
|
-
* @
|
|
1141
|
+
* @returns DayFormatType
|
|
1127
1142
|
*/
|
|
1128
1143
|
readonly dayFormat: _angular_core.InputSignal<DayFormatType>;
|
|
1129
1144
|
readonly dayFormatEffect: _angular_core.EffectRef;
|
|
1130
1145
|
/**
|
|
1131
1146
|
* Specify the list of dates that cannot be selected.
|
|
1132
|
-
* @
|
|
1147
|
+
* @returns (Date | Date[])[]
|
|
1133
1148
|
*/
|
|
1134
1149
|
readonly disabledDates: _angular_core.InputSignal<(Date | Date[])[]>;
|
|
1135
1150
|
readonly disabledDatesEffect: _angular_core.EffectRef;
|
|
1136
1151
|
/**
|
|
1137
1152
|
* Event emitted on `endDate` change.
|
|
1138
|
-
* @
|
|
1153
|
+
* @returns Date | null
|
|
1139
1154
|
*/
|
|
1140
1155
|
readonly endDateChange: _angular_core.OutputEmitterRef<Date | null>;
|
|
1141
1156
|
/**
|
|
1142
1157
|
* Event emitted on `startDate` change.
|
|
1143
|
-
* @
|
|
1158
|
+
* @returns Date | null
|
|
1144
1159
|
*/
|
|
1145
1160
|
readonly startDateChange: _angular_core.OutputEmitterRef<Date | null>;
|
|
1146
1161
|
/**
|
|
@@ -1167,7 +1182,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1167
1182
|
* - 5 - Friday,
|
|
1168
1183
|
* - 6 - Saturday,
|
|
1169
1184
|
*
|
|
1170
|
-
* @
|
|
1185
|
+
* @returns number
|
|
1171
1186
|
* @default 1
|
|
1172
1187
|
*/
|
|
1173
1188
|
readonly firstDayOfWeek: _angular_core.InputSignal<DaysOfWeek>;
|
|
@@ -1190,45 +1205,45 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1190
1205
|
readonly minDateEffect: _angular_core.EffectRef;
|
|
1191
1206
|
/**
|
|
1192
1207
|
* Show navigation.
|
|
1193
|
-
* @
|
|
1208
|
+
* @returns boolean
|
|
1194
1209
|
*/
|
|
1195
1210
|
readonly navigation: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1196
1211
|
/**
|
|
1197
1212
|
* Reorder year-month navigation, and render year first.
|
|
1198
|
-
* @
|
|
1213
|
+
* @returns boolean
|
|
1199
1214
|
* @default false
|
|
1200
1215
|
*/
|
|
1201
1216
|
readonly navYearFirst: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1202
1217
|
readonly navYearFirstEffect: _angular_core.EffectRef;
|
|
1203
1218
|
/**
|
|
1204
1219
|
* Allow range selection.
|
|
1205
|
-
* @
|
|
1220
|
+
* @returns boolean
|
|
1206
1221
|
* @default false
|
|
1207
1222
|
*/
|
|
1208
1223
|
readonly range: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1209
1224
|
readonly rangeEffect: _angular_core.EffectRef;
|
|
1210
1225
|
/**
|
|
1211
1226
|
* Set calendar view.
|
|
1212
|
-
* @
|
|
1227
|
+
* @returns 'days' | 'months' | 'years'
|
|
1213
1228
|
* @default 'days'
|
|
1214
1229
|
*/
|
|
1215
1230
|
readonly view: _angular_core.ModelSignal<"days" | "months" | "years">;
|
|
1216
1231
|
/**
|
|
1217
1232
|
* Set length or format of day name.
|
|
1218
|
-
* @
|
|
1233
|
+
* @returns number | 'long' | 'narrow' | 'short'
|
|
1219
1234
|
* @default 'short'
|
|
1220
1235
|
*/
|
|
1221
1236
|
readonly weekdayFormat: _angular_core.InputSignal<WeekdayFormatType>;
|
|
1222
1237
|
readonly weekdayFormatEffect: _angular_core.EffectRef;
|
|
1223
1238
|
/**
|
|
1224
1239
|
* Custom function to determine selectable dates.
|
|
1225
|
-
* @
|
|
1240
|
+
* @returns DateFilterType
|
|
1226
1241
|
*/
|
|
1227
1242
|
readonly dateFilter: _angular_core.InputSignal<DateFilterType | undefined>;
|
|
1228
1243
|
readonly dateFilterEffect: _angular_core.EffectRef;
|
|
1229
1244
|
/**
|
|
1230
1245
|
* Set whether days in adjacent months shown before or after the current month are selectable. This only applies if the `showAdjacentDays` option is set to true.
|
|
1231
|
-
* @
|
|
1246
|
+
* @returns boolean
|
|
1232
1247
|
* @default false
|
|
1233
1248
|
* @since 4.4.10
|
|
1234
1249
|
*/
|
|
@@ -1236,7 +1251,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1236
1251
|
readonly selectAdjacentDaysEffect: _angular_core.EffectRef;
|
|
1237
1252
|
/**
|
|
1238
1253
|
* Set whether to display dates in adjacent months (non-selectable) at the start and end of the current month.
|
|
1239
|
-
* @
|
|
1254
|
+
* @returns boolean
|
|
1240
1255
|
* @default true
|
|
1241
1256
|
* @since 4.4.10
|
|
1242
1257
|
*/
|
|
@@ -1244,7 +1259,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1244
1259
|
readonly showAdjacentDaysEffect: _angular_core.EffectRef;
|
|
1245
1260
|
/**
|
|
1246
1261
|
* Specify the type of date selection as day, week, month, or year.
|
|
1247
|
-
* @
|
|
1262
|
+
* @returns 'day' | 'week' | 'month' | 'year'
|
|
1248
1263
|
* @default 'day'
|
|
1249
1264
|
* @since 5.0.0
|
|
1250
1265
|
*/
|
|
@@ -1252,7 +1267,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1252
1267
|
readonly selectionTypeEffect: _angular_core.EffectRef;
|
|
1253
1268
|
/**
|
|
1254
1269
|
* Set whether to display week numbers in the calendar.
|
|
1255
|
-
* @
|
|
1270
|
+
* @returns boolean
|
|
1256
1271
|
* @default false
|
|
1257
1272
|
* @since 5.0.0
|
|
1258
1273
|
*/
|
|
@@ -1260,7 +1275,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1260
1275
|
readonly showWeekNumberEffect: _angular_core.EffectRef;
|
|
1261
1276
|
/**
|
|
1262
1277
|
* Label displayed over week numbers in the calendar.
|
|
1263
|
-
* @
|
|
1278
|
+
* @returns string
|
|
1264
1279
|
* @default undefined
|
|
1265
1280
|
* @since 5.0.0
|
|
1266
1281
|
*/
|
|
@@ -1268,22 +1283,22 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1268
1283
|
readonly weekNumbersLabelEffect: _angular_core.EffectRef;
|
|
1269
1284
|
/**
|
|
1270
1285
|
* A string that provides an accessible label for the button that moves to the next month.
|
|
1271
|
-
* @
|
|
1286
|
+
* @returns string
|
|
1272
1287
|
*/
|
|
1273
1288
|
readonly ariaNextMonthLabel: _angular_core.InputSignal<string>;
|
|
1274
1289
|
/**
|
|
1275
1290
|
* A string that provides an accessible label for the button that moves to the next year.
|
|
1276
|
-
* @
|
|
1291
|
+
* @returns string
|
|
1277
1292
|
*/
|
|
1278
1293
|
readonly ariaNextYearLabel: _angular_core.InputSignal<string>;
|
|
1279
1294
|
/**
|
|
1280
1295
|
* A string that provides an accessible label for the button that moves to the previous month.
|
|
1281
|
-
* @
|
|
1296
|
+
* @returns string
|
|
1282
1297
|
*/
|
|
1283
1298
|
readonly ariaPrevMonthLabel: _angular_core.InputSignal<string>;
|
|
1284
1299
|
/**
|
|
1285
1300
|
* A string that provides an accessible label for the button that moves to the previous year.
|
|
1286
|
-
* @
|
|
1301
|
+
* @returns string
|
|
1287
1302
|
*/
|
|
1288
1303
|
readonly ariaPrevYearLabel: _angular_core.InputSignal<string>;
|
|
1289
1304
|
readonly calendarCellHover: _angular_core.OutputEmitterRef<Date | null>;
|
|
@@ -1297,7 +1312,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
|
|
|
1297
1312
|
handleNavigationClick(direction: 'prev' | 'next', years?: boolean): void;
|
|
1298
1313
|
/**
|
|
1299
1314
|
* Clear startDate and endDate
|
|
1300
|
-
* @
|
|
1315
|
+
* @returns void
|
|
1301
1316
|
*/
|
|
1302
1317
|
clearDates(): void;
|
|
1303
1318
|
handleFocusChange($event: FocusOrigin): void;
|
|
@@ -1386,7 +1401,7 @@ declare class CalendarModule {
|
|
|
1386
1401
|
declare class CalloutComponent {
|
|
1387
1402
|
/**
|
|
1388
1403
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
1389
|
-
* @
|
|
1404
|
+
* @returns Colors
|
|
1390
1405
|
*/
|
|
1391
1406
|
readonly color: _angular_core.InputSignal<string | undefined>;
|
|
1392
1407
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -1403,19 +1418,19 @@ declare class CalloutModule {
|
|
|
1403
1418
|
declare class CardComponent {
|
|
1404
1419
|
/**
|
|
1405
1420
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
1406
|
-
* @
|
|
1421
|
+
* @returns Colors
|
|
1407
1422
|
*/
|
|
1408
1423
|
readonly color: InputSignal<Colors | undefined>;
|
|
1409
1424
|
/**
|
|
1410
1425
|
* Sets the text color context of the component to one of CoreUI’s themed colors.
|
|
1411
1426
|
* via TextColorDirective
|
|
1412
|
-
* @
|
|
1427
|
+
* @returns TextColors
|
|
1413
1428
|
*/
|
|
1414
1429
|
readonly textColor: InputSignal<TextColors | undefined>;
|
|
1415
1430
|
/**
|
|
1416
1431
|
* Sets the component's color scheme to one of CoreUI themed colors, ensuring the text color contrast adheres to the WCAG 4.5:1 contrast ratio standard for accessibility.
|
|
1417
1432
|
* via TextBgColorDirective
|
|
1418
|
-
* @
|
|
1433
|
+
* @returns Colors
|
|
1419
1434
|
* @since 5.0.0
|
|
1420
1435
|
*/
|
|
1421
1436
|
readonly textBgColor: InputSignal<Colors | undefined>;
|
|
@@ -1452,7 +1467,7 @@ declare class CardHeaderActionsComponent {
|
|
|
1452
1467
|
declare class CardImgDirective {
|
|
1453
1468
|
/**
|
|
1454
1469
|
* Optionally orientate the image to the top, bottom, or make it overlaid across the card.
|
|
1455
|
-
* @
|
|
1470
|
+
* @returns {'top | 'bottom'}
|
|
1456
1471
|
*/
|
|
1457
1472
|
readonly orientation: _angular_core.InputSignal<"start" | "end" | "top" | "bottom" | undefined>;
|
|
1458
1473
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -1498,55 +1513,55 @@ declare class CarouselComponent implements OnInit, OnDestroy, AfterContentInit {
|
|
|
1498
1513
|
loadConfig(): void;
|
|
1499
1514
|
/**
|
|
1500
1515
|
* Index of the active item.
|
|
1501
|
-
* @
|
|
1516
|
+
* @returns number
|
|
1502
1517
|
*/
|
|
1503
1518
|
readonly activeIndexInput: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
1504
1519
|
readonly activeIndex: _angular_core.WritableSignal<number>;
|
|
1505
1520
|
/**
|
|
1506
1521
|
* Carousel automatically starts cycle items.
|
|
1507
|
-
* @
|
|
1522
|
+
* @returns boolean
|
|
1508
1523
|
*/
|
|
1509
1524
|
readonly animateInput: _angular_core.InputSignal<boolean>;
|
|
1510
1525
|
readonly animate: _angular_core.WritableSignal<boolean>;
|
|
1511
1526
|
/**
|
|
1512
|
-
* Carousel direction
|
|
1513
|
-
* @
|
|
1527
|
+
* Carousel direction
|
|
1528
|
+
* @returns 'next' | 'prev'
|
|
1514
1529
|
*/
|
|
1515
1530
|
readonly directionInput: _angular_core.InputSignal<"next" | "prev">;
|
|
1516
1531
|
readonly direction: _angular_core.WritableSignal<"next" | "prev">;
|
|
1517
1532
|
/**
|
|
1518
1533
|
* The amount of time to delay between automatically cycling an item. If false, carousel will not automatically cycle.
|
|
1519
|
-
* @
|
|
1534
|
+
* @returns number
|
|
1520
1535
|
* @default 0
|
|
1521
1536
|
*/
|
|
1522
1537
|
readonly intervalInput: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
1523
1538
|
readonly interval: _angular_core.WritableSignal<number>;
|
|
1524
1539
|
/**
|
|
1525
1540
|
* Sets which event handlers you’d like provided to your pause prop. You can specify one trigger or an array of them.
|
|
1526
|
-
* @
|
|
1541
|
+
* @returns 'hover' | 'focus' | 'click'
|
|
1527
1542
|
*/
|
|
1528
1543
|
readonly pause: _angular_core.InputSignal<false | Triggers | Triggers[]>;
|
|
1529
1544
|
/**
|
|
1530
1545
|
* Support left/right swipe interactions on touchscreen devices.
|
|
1531
|
-
* @
|
|
1546
|
+
* @returns boolean
|
|
1532
1547
|
* @default true
|
|
1533
1548
|
*/
|
|
1534
1549
|
readonly touch: _angular_core.InputSignal<boolean>;
|
|
1535
1550
|
/**
|
|
1536
1551
|
* Set the type of the transition.
|
|
1537
|
-
* @
|
|
1552
|
+
* @returns 'slide' | 'crossfade'
|
|
1538
1553
|
* @default 'slide'
|
|
1539
1554
|
*/
|
|
1540
1555
|
readonly transition: _angular_core.InputSignal<"slide" | "crossfade">;
|
|
1541
1556
|
/**
|
|
1542
1557
|
* Set whether the carousel should cycle continuously or have hard stops.
|
|
1543
|
-
* @
|
|
1558
|
+
* @returns boolean
|
|
1544
1559
|
* @default true
|
|
1545
1560
|
*/
|
|
1546
1561
|
readonly wrap: _angular_core.InputSignal<boolean>;
|
|
1547
1562
|
/**
|
|
1548
|
-
* Event emitted on carousel item change
|
|
1549
|
-
* @
|
|
1563
|
+
* Event emitted on carousel item change
|
|
1564
|
+
* @returns number
|
|
1550
1565
|
*/
|
|
1551
1566
|
readonly itemChange: _angular_core.OutputEmitterRef<number>;
|
|
1552
1567
|
private timerId;
|
|
@@ -1576,19 +1591,19 @@ declare class CarouselCaptionComponent {
|
|
|
1576
1591
|
declare class CarouselControlComponent {
|
|
1577
1592
|
#private;
|
|
1578
1593
|
/**
|
|
1579
|
-
* Carousel control caption
|
|
1580
|
-
* @
|
|
1594
|
+
* Carousel control caption
|
|
1595
|
+
* @returns string
|
|
1581
1596
|
*/
|
|
1582
1597
|
readonly captionInput: _angular_core.InputSignal<string | undefined>;
|
|
1583
1598
|
readonly caption: _angular_core.WritableSignal<string>;
|
|
1584
1599
|
/**
|
|
1585
1600
|
* Carousel control direction.
|
|
1586
|
-
* @
|
|
1601
|
+
* @returns 'next' | 'prev'
|
|
1587
1602
|
*/
|
|
1588
1603
|
readonly direction: _angular_core.InputSignal<"next" | "prev">;
|
|
1589
1604
|
/**
|
|
1590
1605
|
* Carousel control role.
|
|
1591
|
-
* @
|
|
1606
|
+
* @returns string
|
|
1592
1607
|
*/
|
|
1593
1608
|
readonly role: _angular_core.InputSignal<string>;
|
|
1594
1609
|
readonly hostClasses: _angular_core.Signal<string>;
|
|
@@ -1621,13 +1636,13 @@ declare class CarouselItemComponent implements OnInit {
|
|
|
1621
1636
|
readonly active: _angular_core.WritableSignal<boolean>;
|
|
1622
1637
|
/**
|
|
1623
1638
|
* Time delay before cycling to the next item. If -1, uses carousel interval value.
|
|
1624
|
-
* @
|
|
1639
|
+
* @returns number
|
|
1625
1640
|
* @default -1
|
|
1626
1641
|
*/
|
|
1627
1642
|
readonly interval: _angular_core.InputSignal<number>;
|
|
1628
1643
|
/**
|
|
1629
1644
|
* Carousel item role.
|
|
1630
|
-
* @
|
|
1645
|
+
* @returns string
|
|
1631
1646
|
* @default 'group'
|
|
1632
1647
|
*/
|
|
1633
1648
|
readonly role: _angular_core.InputSignal<string>;
|
|
@@ -1697,31 +1712,31 @@ declare class CollapseDirective implements OnDestroy {
|
|
|
1697
1712
|
readonly animate: _angular_core.WritableSignal<boolean>;
|
|
1698
1713
|
/**
|
|
1699
1714
|
* Set horizontal collapsing to transition the width instead of height.
|
|
1700
|
-
* @
|
|
1715
|
+
* @returns boolean
|
|
1701
1716
|
* @default false
|
|
1702
1717
|
*/
|
|
1703
1718
|
readonly horizontal: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1704
1719
|
/**
|
|
1705
1720
|
* Toggle the visibility of a collapsible element.
|
|
1706
|
-
* @
|
|
1721
|
+
* @returns boolean
|
|
1707
1722
|
* @default false
|
|
1708
1723
|
*/
|
|
1709
1724
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1710
1725
|
/**
|
|
1711
|
-
* Event emitted on visibility change
|
|
1712
|
-
* @
|
|
1726
|
+
* Event emitted on visibility change
|
|
1727
|
+
* @returns boolean
|
|
1713
1728
|
*/
|
|
1714
1729
|
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
1715
1730
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
1716
1731
|
/**
|
|
1717
1732
|
* Add a `navbar` prop for grouping and hiding navbar contents by a parent breakpoint.
|
|
1718
|
-
* @
|
|
1733
|
+
* @returns boolean
|
|
1719
1734
|
* @default false
|
|
1720
1735
|
*/
|
|
1721
1736
|
readonly navbar: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1722
1737
|
/**
|
|
1723
|
-
* Event emitted on visibility change
|
|
1724
|
-
* @
|
|
1738
|
+
* Event emitted on visibility change
|
|
1739
|
+
* @returns string
|
|
1725
1740
|
*/
|
|
1726
1741
|
readonly collapseChange: _angular_core.OutputEmitterRef<string>;
|
|
1727
1742
|
protected readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -1768,24 +1783,24 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1768
1783
|
/**
|
|
1769
1784
|
* Set the format of day name.
|
|
1770
1785
|
* @default 'numeric'
|
|
1771
|
-
* @
|
|
1786
|
+
* @returns DayFormatType
|
|
1772
1787
|
*/
|
|
1773
1788
|
readonly dayFormat: _angular_core.InputSignal<DayFormatType>;
|
|
1774
1789
|
/**
|
|
1775
1790
|
* The number of calendars that render on desktop devices.
|
|
1776
|
-
* @
|
|
1791
|
+
* @returns number
|
|
1777
1792
|
* @default 2
|
|
1778
1793
|
*/
|
|
1779
1794
|
readonly calendars: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
1780
1795
|
/**
|
|
1781
1796
|
* Toggle visibility or set the content of the cleaner button.
|
|
1782
|
-
* @
|
|
1797
|
+
* @returns boolean
|
|
1783
1798
|
* @default true
|
|
1784
1799
|
*/
|
|
1785
1800
|
readonly cleaner: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1786
1801
|
/**
|
|
1787
1802
|
* Determine if the dropdown should be closed after value setting.
|
|
1788
|
-
* @
|
|
1803
|
+
* @returns boolean
|
|
1789
1804
|
* @default false
|
|
1790
1805
|
*/
|
|
1791
1806
|
readonly closeOnSelect: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -1798,7 +1813,7 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1798
1813
|
readonly format: _angular_core.InputSignal<string | undefined>;
|
|
1799
1814
|
/**
|
|
1800
1815
|
* Toggle visibility or set the content of the input indicator.
|
|
1801
|
-
* @
|
|
1816
|
+
* @returns boolean
|
|
1802
1817
|
* @default true
|
|
1803
1818
|
*/
|
|
1804
1819
|
readonly indicator: _angular_core.InputSignal<boolean>;
|
|
@@ -1814,14 +1829,14 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1814
1829
|
readonly inputDateParse: _angular_core.InputSignal<((date: string | Date) => Date) | undefined>;
|
|
1815
1830
|
/**
|
|
1816
1831
|
* Toggle the readonly state for the component.
|
|
1817
|
-
* @
|
|
1832
|
+
* @returns boolean
|
|
1818
1833
|
* @default false
|
|
1819
1834
|
*/
|
|
1820
1835
|
readonly inputReadOnlyInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1821
1836
|
readonly inputReadOnly: _angular_core.Signal<boolean>;
|
|
1822
1837
|
/**
|
|
1823
1838
|
* Reorder year-month navigation, and render year first.
|
|
1824
|
-
* @
|
|
1839
|
+
* @returns boolean
|
|
1825
1840
|
* @default false
|
|
1826
1841
|
*/
|
|
1827
1842
|
readonly navYearFirst: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -1832,66 +1847,66 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1832
1847
|
readonly placeholder: _angular_core.InputSignal<string | string[]>;
|
|
1833
1848
|
/**
|
|
1834
1849
|
* Predefined date ranges the user can select from.
|
|
1835
|
-
* @
|
|
1850
|
+
* @returns ICalendarRanges
|
|
1836
1851
|
*/
|
|
1837
1852
|
readonly ranges: _angular_core.InputSignal<ICalendarRanges | undefined>;
|
|
1838
1853
|
/**
|
|
1839
1854
|
* Sets the color context of the cancel button to one of CoreUI’s themed colors.
|
|
1840
|
-
* @
|
|
1855
|
+
* @returns 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
|
|
1841
1856
|
* @default 'secondary'
|
|
1842
1857
|
*/
|
|
1843
1858
|
readonly rangesButtonsColor: _angular_core.InputSignal<string>;
|
|
1844
1859
|
/**
|
|
1845
1860
|
* Size the ranges button small or large.
|
|
1846
|
-
* @
|
|
1861
|
+
* @returns 'sm' | 'lg' | ''
|
|
1847
1862
|
*/
|
|
1848
1863
|
readonly rangesButtonsSize: _angular_core.InputSignal<"" | "sm" | "lg">;
|
|
1849
1864
|
/**
|
|
1850
1865
|
* Set the ranges button variant to an outlined button or a ghost button.
|
|
1851
|
-
* @
|
|
1866
|
+
* @returns 'outline' | 'ghost' | undefined
|
|
1852
1867
|
*/
|
|
1853
1868
|
readonly rangesButtonsVariant: _angular_core.InputSignal<"outline" | "ghost">;
|
|
1854
1869
|
/**
|
|
1855
1870
|
* Default icon or character that separates two dates.
|
|
1856
|
-
* @
|
|
1871
|
+
* @returns boolean
|
|
1857
1872
|
* @default true
|
|
1858
1873
|
*/
|
|
1859
1874
|
readonly separator: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1860
1875
|
/**
|
|
1861
1876
|
* Size the component small or large.
|
|
1862
|
-
* @
|
|
1877
|
+
* @returns 'sm' | 'lg' | undefined
|
|
1863
1878
|
* @default undefined
|
|
1864
1879
|
*/
|
|
1865
1880
|
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
1866
1881
|
/**
|
|
1867
1882
|
* Keep track of the time with the date value.
|
|
1868
|
-
* @
|
|
1883
|
+
* @returns boolean
|
|
1869
1884
|
* @default false
|
|
1870
1885
|
*/
|
|
1871
1886
|
readonly withTime: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1872
1887
|
/**
|
|
1873
1888
|
* Provide an additional time selection by adding select boxes to choose time.
|
|
1874
|
-
* @
|
|
1889
|
+
* @returns boolean
|
|
1875
1890
|
* @default false
|
|
1876
1891
|
*/
|
|
1877
1892
|
readonly timepickerInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1878
1893
|
get timepicker(): boolean;
|
|
1879
1894
|
/**
|
|
1880
1895
|
* Toggle visual validation feedback.
|
|
1881
|
-
* @
|
|
1896
|
+
* @returns boolean | undefined
|
|
1882
1897
|
* @default undefined
|
|
1883
1898
|
*/
|
|
1884
1899
|
readonly valid: _angular_core.InputSignal<boolean | undefined>;
|
|
1885
1900
|
/**
|
|
1886
1901
|
* Toggle the visibility of the dropdown date-picker component.
|
|
1887
|
-
* @
|
|
1902
|
+
* @returns boolean
|
|
1888
1903
|
* @default false
|
|
1889
1904
|
*/
|
|
1890
1905
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1891
1906
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
1892
1907
|
/**
|
|
1893
1908
|
* Initial selected start date.
|
|
1894
|
-
* @
|
|
1909
|
+
* @returns Date | null
|
|
1895
1910
|
* @default null
|
|
1896
1911
|
*/
|
|
1897
1912
|
readonly startDateModel: _angular_core.ModelSignal<Date | null>;
|
|
@@ -1902,7 +1917,7 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1902
1917
|
readonly startDateChange: rxjs.Observable<Date | null>;
|
|
1903
1918
|
/**
|
|
1904
1919
|
* Initial selected end date.
|
|
1905
|
-
* @
|
|
1920
|
+
* @returns Date | null
|
|
1906
1921
|
* @default null
|
|
1907
1922
|
*/
|
|
1908
1923
|
readonly endDateModel: _angular_core.ModelSignal<Date | null>;
|
|
@@ -1910,19 +1925,19 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1910
1925
|
readonly endDateChange: rxjs.Observable<Date | null>;
|
|
1911
1926
|
/**
|
|
1912
1927
|
* Default date month of the component.
|
|
1913
|
-
* @
|
|
1928
|
+
* @returns Date
|
|
1914
1929
|
* @default new Date()
|
|
1915
1930
|
*/
|
|
1916
1931
|
readonly calendarDateInput: _angular_core.InputSignalWithTransform<Date, number | Date>;
|
|
1917
1932
|
readonly calendarDate: _angular_core.WritableSignal<Date>;
|
|
1918
1933
|
/**
|
|
1919
1934
|
* Specify the list of dates that cannot be selected.
|
|
1920
|
-
* @
|
|
1935
|
+
* @returns (Date | Date[])[]
|
|
1921
1936
|
*/
|
|
1922
1937
|
readonly disabledDates: _angular_core.InputSignal<(Date | Date[])[]>;
|
|
1923
1938
|
/**
|
|
1924
1939
|
* Set the first day of the week.
|
|
1925
|
-
* @
|
|
1940
|
+
* @returns DaysOfWeek
|
|
1926
1941
|
* @default 1 (Monday)
|
|
1927
1942
|
*/
|
|
1928
1943
|
readonly firstDayOfWeek: _angular_core.InputSignal<DaysOfWeek>;
|
|
@@ -1933,37 +1948,37 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1933
1948
|
readonly locale: _angular_core.InputSignal<string>;
|
|
1934
1949
|
/**
|
|
1935
1950
|
* Max selectable date.
|
|
1936
|
-
* @
|
|
1951
|
+
* @returns Date | null
|
|
1937
1952
|
* @default null
|
|
1938
1953
|
*/
|
|
1939
1954
|
readonly maxDate: _angular_core.InputSignal<Date | null>;
|
|
1940
1955
|
/**
|
|
1941
1956
|
* Min selectable date.
|
|
1942
|
-
* @
|
|
1957
|
+
* @returns Date | null
|
|
1943
1958
|
* @default null
|
|
1944
1959
|
*/
|
|
1945
1960
|
readonly minDate: _angular_core.InputSignal<Date | null>;
|
|
1946
1961
|
/**
|
|
1947
1962
|
* Show calendar navigation.
|
|
1948
|
-
* @
|
|
1963
|
+
* @returns boolean
|
|
1949
1964
|
* @default true
|
|
1950
1965
|
*/
|
|
1951
1966
|
readonly navigation: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1952
1967
|
/**
|
|
1953
1968
|
* Allow range selection.
|
|
1954
|
-
* @
|
|
1969
|
+
* @returns boolean
|
|
1955
1970
|
* @default true
|
|
1956
1971
|
*/
|
|
1957
1972
|
readonly rangeInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1958
1973
|
readonly range: _angular_core.Signal<boolean>;
|
|
1959
1974
|
/**
|
|
1960
1975
|
* Custom function to determine selectable dates.
|
|
1961
|
-
* @
|
|
1976
|
+
* @returns DateFilterType
|
|
1962
1977
|
*/
|
|
1963
1978
|
readonly dateFilter: _angular_core.InputSignal<DateFilterType | undefined>;
|
|
1964
1979
|
/**
|
|
1965
1980
|
* Toggle the disabled state for the component.
|
|
1966
|
-
* @
|
|
1981
|
+
* @returns boolean
|
|
1967
1982
|
* @default false
|
|
1968
1983
|
*/
|
|
1969
1984
|
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -1986,53 +2001,53 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1986
2001
|
} | null;
|
|
1987
2002
|
/**
|
|
1988
2003
|
* Set the length or format of the day name.
|
|
1989
|
-
* @
|
|
2004
|
+
* @returns WeekdayFormatType
|
|
1990
2005
|
* @default 'short'
|
|
1991
2006
|
*/
|
|
1992
2007
|
readonly weekdayFormat: _angular_core.InputSignal<WeekdayFormatType>;
|
|
1993
2008
|
/**
|
|
1994
2009
|
* Optional popper Options object
|
|
1995
|
-
* @
|
|
2010
|
+
* @returns Partial<Options>
|
|
1996
2011
|
*/
|
|
1997
2012
|
readonly popperjsOptions: _angular_core.InputSignal<Partial<Options>>;
|
|
1998
2013
|
/**
|
|
1999
2014
|
* Set whether days in adjacent months shown before or after the current month are selectable. This only applies if the `showAdjacentDays` option is set to true.
|
|
2000
|
-
* @
|
|
2015
|
+
* @returns boolean
|
|
2001
2016
|
* @default false
|
|
2002
2017
|
* @since 4.4.10
|
|
2003
2018
|
*/
|
|
2004
2019
|
readonly selectAdjacentDays: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2005
2020
|
/**
|
|
2006
2021
|
* Set whether to display dates in adjacent months (non-selectable) at the start and end of the current month.
|
|
2007
|
-
* @
|
|
2022
|
+
* @returns boolean
|
|
2008
2023
|
* @default true
|
|
2009
2024
|
* @since 4.4.10
|
|
2010
2025
|
*/
|
|
2011
2026
|
readonly showAdjacentDays: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2012
2027
|
/**
|
|
2013
2028
|
* Specify the type of date selection as day, week, month, or year.
|
|
2014
|
-
* @
|
|
2029
|
+
* @returns 'day' | 'week' | 'month' | 'year'
|
|
2015
2030
|
* @default 'day'
|
|
2016
2031
|
* @since 5.0.0
|
|
2017
2032
|
*/
|
|
2018
2033
|
readonly selectionType: _angular_core.InputSignal<SelectionType>;
|
|
2019
2034
|
/**
|
|
2020
2035
|
* Set whether to display week numbers in the calendar.
|
|
2021
|
-
* @
|
|
2036
|
+
* @returns boolean
|
|
2022
2037
|
* @default false
|
|
2023
2038
|
* @since 5.0.0
|
|
2024
2039
|
*/
|
|
2025
2040
|
readonly showWeekNumber: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2026
2041
|
/**
|
|
2027
2042
|
* Label displayed over week numbers in the calendar.
|
|
2028
|
-
* @
|
|
2043
|
+
* @returns string
|
|
2029
2044
|
* @default undefined
|
|
2030
2045
|
* @since 5.0.0
|
|
2031
2046
|
*/
|
|
2032
2047
|
readonly weekNumbersLabel: _angular_core.InputSignal<string | undefined>;
|
|
2033
2048
|
/**
|
|
2034
2049
|
* Event emitted on `value` change.
|
|
2035
|
-
* @
|
|
2050
|
+
* @returns Date | { startDate, endDate } | undefined
|
|
2036
2051
|
*/
|
|
2037
2052
|
readonly valueChange: _angular_core.OutputEmitterRef<Date | {
|
|
2038
2053
|
startDate?: Date | null;
|
|
@@ -2040,12 +2055,12 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
2040
2055
|
} | null | undefined>;
|
|
2041
2056
|
/**
|
|
2042
2057
|
* Event emitted on calendar cell hover.
|
|
2043
|
-
* @
|
|
2058
|
+
* @returns Date | null
|
|
2044
2059
|
*/
|
|
2045
2060
|
readonly calendarCellHover: _angular_core.OutputEmitterRef<Date | null>;
|
|
2046
2061
|
/**
|
|
2047
2062
|
* Event emitted on calendar month change.
|
|
2048
|
-
* @
|
|
2063
|
+
* @returns Date
|
|
2049
2064
|
*/
|
|
2050
2065
|
readonly calendarDateChange: _angular_core.OutputEmitterRef<Date>;
|
|
2051
2066
|
readonly startDateElementRef: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
@@ -2134,12 +2149,12 @@ declare class DropdownMenuDirective implements OnInit, AfterContentInit {
|
|
|
2134
2149
|
readonly elementRef: ElementRef;
|
|
2135
2150
|
/**
|
|
2136
2151
|
* Set alignment of dropdown menu.
|
|
2137
|
-
* @
|
|
2152
|
+
* @returns 'start' | 'end'
|
|
2138
2153
|
*/
|
|
2139
2154
|
readonly alignment: _angular_core.InputSignal<string | undefined>;
|
|
2140
2155
|
/**
|
|
2141
2156
|
* Toggle the visibility of dropdown menu component.
|
|
2142
|
-
* @
|
|
2157
|
+
* @returns boolean
|
|
2143
2158
|
*/
|
|
2144
2159
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2145
2160
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
@@ -2176,25 +2191,26 @@ declare class DropdownToggleDirective implements AfterViewInit {
|
|
|
2176
2191
|
dropdown: DropdownToken | null;
|
|
2177
2192
|
/**
|
|
2178
2193
|
* Reference to dropdown component.
|
|
2179
|
-
* @
|
|
2194
|
+
* @returns DropdownComponent | undefined
|
|
2180
2195
|
* @default undefined
|
|
2181
2196
|
*/
|
|
2182
2197
|
readonly dropdownComponent: _angular_core.InputSignal<DropdownComponent | undefined>;
|
|
2183
2198
|
/**
|
|
2184
2199
|
* Disables the toggler.
|
|
2185
|
-
* @
|
|
2200
|
+
* @returns boolean
|
|
2186
2201
|
* @default false
|
|
2187
2202
|
*/
|
|
2188
2203
|
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2189
2204
|
/**
|
|
2190
2205
|
* Enables pseudo-element caret on toggler.
|
|
2191
|
-
* @
|
|
2206
|
+
* @returns boolean
|
|
2207
|
+
* @default true
|
|
2192
2208
|
*/
|
|
2193
2209
|
readonly caret: _angular_core.InputSignal<boolean>;
|
|
2194
2210
|
/**
|
|
2195
2211
|
* Create split button dropdowns with virtually the same markup as single button dropdowns,
|
|
2196
2212
|
* but with the addition of `.dropdown-toggle-split` class for proper spacing around the dropdown caret.
|
|
2197
|
-
* @
|
|
2213
|
+
* @returns boolean
|
|
2198
2214
|
* @default false
|
|
2199
2215
|
*/
|
|
2200
2216
|
readonly split: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -2211,33 +2227,36 @@ declare class DropdownComponent implements OnDestroy, OnInit {
|
|
|
2211
2227
|
constructor();
|
|
2212
2228
|
/**
|
|
2213
2229
|
* Set alignment of dropdown menu.
|
|
2214
|
-
* @
|
|
2230
|
+
* @returns {'start' | 'end' | { xs: 'start' | 'end' } | { sm: 'start' | 'end' } | { md: 'start' | 'end' } | { lg: 'start' | 'end' } | { xl: 'start' | 'end'} | { xxl: 'start' | 'end'}}
|
|
2215
2231
|
*/
|
|
2216
2232
|
readonly alignment: _angular_core.InputSignal<string | undefined>;
|
|
2217
2233
|
/**
|
|
2218
2234
|
* Automatically close dropdown when clicking outside the dropdown menu.
|
|
2235
|
+
* @returns boolean | 'inside' | 'outside'
|
|
2236
|
+
* @default true
|
|
2219
2237
|
*/
|
|
2220
2238
|
readonly autoClose: _angular_core.InputSignal<boolean | "inside" | "outside">;
|
|
2221
2239
|
/**
|
|
2222
2240
|
* Sets a specified direction and location of the dropdown menu.
|
|
2223
|
-
* @
|
|
2241
|
+
* @returns 'dropup' | 'dropend' | 'dropstart'
|
|
2224
2242
|
*/
|
|
2225
2243
|
readonly direction: _angular_core.InputSignal<"center" | "dropup" | "dropup-center" | "dropend" | "dropstart" | undefined>;
|
|
2226
2244
|
/**
|
|
2227
2245
|
* Describes the placement of your component after Popper.js has applied all the modifiers
|
|
2228
2246
|
* that may have flipped or altered the originally provided placement property.
|
|
2229
|
-
* @
|
|
2247
|
+
* @returns Placement
|
|
2248
|
+
* @default 'bottom-start'
|
|
2230
2249
|
*/
|
|
2231
2250
|
readonly placement: _angular_core.InputSignal<Placement>;
|
|
2232
2251
|
/**
|
|
2233
2252
|
* If you want to disable dynamic positioning set this property to `false`.
|
|
2234
|
-
* @
|
|
2253
|
+
* @returns boolean
|
|
2235
2254
|
* @default true
|
|
2236
2255
|
*/
|
|
2237
2256
|
readonly popper: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2238
2257
|
/**
|
|
2239
|
-
* Optional popper Options object, placement prop takes precedence over
|
|
2240
|
-
* @
|
|
2258
|
+
* Optional popper Options object, `placement` prop takes precedence over
|
|
2259
|
+
* @returns Partial<Options>
|
|
2241
2260
|
*/
|
|
2242
2261
|
readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
|
|
2243
2262
|
set popperOptions(value: Partial<Options>);
|
|
@@ -2248,11 +2267,15 @@ declare class DropdownComponent implements OnDestroy, OnInit {
|
|
|
2248
2267
|
readonly variant: _angular_core.InputSignal<"btn-group" | "dropdown" | "input-group" | "nav-item" | undefined>;
|
|
2249
2268
|
/**
|
|
2250
2269
|
* Toggle the visibility of dropdown menu component.
|
|
2251
|
-
* @
|
|
2270
|
+
* @returns boolean
|
|
2252
2271
|
* @default false
|
|
2253
2272
|
*/
|
|
2254
2273
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2255
2274
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
2275
|
+
/**
|
|
2276
|
+
* Event emitted on `visible` change.
|
|
2277
|
+
* @returns boolean
|
|
2278
|
+
*/
|
|
2256
2279
|
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
2257
2280
|
dropdownContext: {
|
|
2258
2281
|
$implicit: boolean;
|
|
@@ -2290,25 +2313,35 @@ declare class DropdownItemDirective implements FocusableOption {
|
|
|
2290
2313
|
dropdown?: DropdownComponent | null | undefined;
|
|
2291
2314
|
/**
|
|
2292
2315
|
* Set active state to a dropdown-item.
|
|
2293
|
-
* @
|
|
2316
|
+
* @returns boolean
|
|
2294
2317
|
* @default undefined
|
|
2295
2318
|
*/
|
|
2296
2319
|
readonly active: _angular_core.InputSignal<boolean | undefined>;
|
|
2297
2320
|
/**
|
|
2298
2321
|
* Configure dropdown-item close dropdown behavior.
|
|
2299
|
-
* @
|
|
2322
|
+
* @returns boolean
|
|
2300
2323
|
* @default true
|
|
2301
2324
|
*/
|
|
2302
2325
|
readonly autoClose: _angular_core.InputSignal<boolean>;
|
|
2303
2326
|
/**
|
|
2304
2327
|
* Disables a dropdown-item.
|
|
2305
|
-
* @
|
|
2328
|
+
* @returns boolean
|
|
2306
2329
|
* @default undefined
|
|
2307
2330
|
*/
|
|
2308
2331
|
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2309
2332
|
set disabled(value: boolean);
|
|
2310
2333
|
get disabled(): boolean;
|
|
2334
|
+
/**
|
|
2335
|
+
* Default role for dropdown-item.
|
|
2336
|
+
* @returns string
|
|
2337
|
+
* @default 'list-item'
|
|
2338
|
+
*/
|
|
2311
2339
|
readonly role: _angular_core.InputSignal<string>;
|
|
2340
|
+
/**
|
|
2341
|
+
* Tab index of the dropdown-item.
|
|
2342
|
+
* @returns string | number | null
|
|
2343
|
+
* @default '0'
|
|
2344
|
+
*/
|
|
2312
2345
|
readonly tabIndexInput: _angular_core.InputSignal<string | number | null>;
|
|
2313
2346
|
readonly tabIndex: _angular_core.WritableSignal<string | number | null>;
|
|
2314
2347
|
focus(origin?: FocusOrigin | undefined): void;
|
|
@@ -2332,13 +2365,22 @@ declare class DropdownCloseDirective implements AfterViewInit {
|
|
|
2332
2365
|
dropdown?: DropdownComponent | null | undefined;
|
|
2333
2366
|
/**
|
|
2334
2367
|
* Disables a dropdown-close directive.
|
|
2335
|
-
* @
|
|
2368
|
+
* @returns boolean
|
|
2336
2369
|
* @default false
|
|
2337
2370
|
*/
|
|
2338
2371
|
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2339
2372
|
readonly disabled: _angular_core.WritableSignal<true | null>;
|
|
2373
|
+
/**
|
|
2374
|
+
* The dropdown component instance this cDropdownClose belongs to.
|
|
2375
|
+
* @returns DropdownComponent
|
|
2376
|
+
*/
|
|
2340
2377
|
readonly dropdownComponent: _angular_core.InputSignal<DropdownComponent | undefined>;
|
|
2341
2378
|
ngAfterViewInit(): void;
|
|
2379
|
+
/**
|
|
2380
|
+
* Tab index of the dropdown-close element.
|
|
2381
|
+
* @returns string | number | null
|
|
2382
|
+
* @default null
|
|
2383
|
+
*/
|
|
2342
2384
|
readonly tabIndexInput: _angular_core.InputSignal<string | number | null>;
|
|
2343
2385
|
readonly tabIndex: _angular_core.WritableSignal<string | number | null>;
|
|
2344
2386
|
onClick($event: MouseEvent): void;
|
|
@@ -2362,16 +2404,16 @@ declare class ElementCoverComponent {
|
|
|
2362
2404
|
/**
|
|
2363
2405
|
* Array of custom boundaries. Use to create custom cover area (instead of parent element area). Area is defined by four sides: 'top', 'bottom', 'right', 'left'. If side is not defined by any custom boundary it is equal to parent element boundary. Each custom boundary is object with keys:
|
|
2364
2406
|
* - sides (array) - select boundaries of element to define boundaries. Side names: 'top', 'bottom', 'right', 'left'.
|
|
2365
|
-
* - query (string) - query used to get element which define boundaries. Search will be done only inside parent element, by parent.querySelector(query) function.
|
|
2366
|
-
* @
|
|
2407
|
+
* - query (string) - query used to get element which define boundaries. Search will be done only inside parent element, by parent.querySelector(query) function.
|
|
2408
|
+
* @returns {sides: string[], query: string}[]
|
|
2367
2409
|
*/
|
|
2368
2410
|
readonly boundaries: _angular_core.InputSignal<{
|
|
2369
2411
|
sides: ("top" | "bottom" | "right" | "left")[];
|
|
2370
2412
|
query: string;
|
|
2371
2413
|
}[] | undefined>;
|
|
2372
2414
|
/**
|
|
2373
|
-
* Opacity of cover.
|
|
2374
|
-
* @
|
|
2415
|
+
* Opacity of cover.
|
|
2416
|
+
* @returns <number>
|
|
2375
2417
|
*/
|
|
2376
2418
|
readonly opacity: _angular_core.InputSignal<number>;
|
|
2377
2419
|
readonly hostStyles: _angular_core.Signal<Record<string, unknown>>;
|
|
@@ -2387,13 +2429,13 @@ declare class ElementCoverModule {
|
|
|
2387
2429
|
|
|
2388
2430
|
declare class FooterComponent {
|
|
2389
2431
|
/**
|
|
2390
|
-
* Place footer in non-static positions
|
|
2391
|
-
* @
|
|
2432
|
+
* Place footer in non-static positions
|
|
2433
|
+
* @returns Positions
|
|
2392
2434
|
*/
|
|
2393
2435
|
readonly position: InputSignal<Positions | undefined>;
|
|
2394
2436
|
/**
|
|
2395
|
-
* Default role for footer
|
|
2396
|
-
* @
|
|
2437
|
+
* Default role for footer
|
|
2438
|
+
* @returns string
|
|
2397
2439
|
* @default 'contentinfo'
|
|
2398
2440
|
*/
|
|
2399
2441
|
readonly role: InputSignal<string>;
|
|
@@ -2410,8 +2452,8 @@ declare class FooterModule {
|
|
|
2410
2452
|
|
|
2411
2453
|
declare class FormDirective {
|
|
2412
2454
|
/**
|
|
2413
|
-
* Mark a form as validated. If you set it `true`, all validation styles will be applied to the form
|
|
2414
|
-
* @
|
|
2455
|
+
* Mark a form as validated. If you set it `true`, all validation styles will be applied to the form
|
|
2456
|
+
* @returns boolean
|
|
2415
2457
|
* @default false
|
|
2416
2458
|
*/
|
|
2417
2459
|
readonly validated: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -2440,7 +2482,7 @@ declare class FormCheckComponent {
|
|
|
2440
2482
|
*/
|
|
2441
2483
|
readonly reverse: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2442
2484
|
/**
|
|
2443
|
-
* Size the component large or extra large. Works only with `[switch]="true"`
|
|
2485
|
+
* Size the component large or extra large. Works only with `[switch]="true"`
|
|
2444
2486
|
* @default undefined
|
|
2445
2487
|
*/
|
|
2446
2488
|
readonly sizing: _angular_core.InputSignal<string | undefined>;
|
|
@@ -2648,11 +2690,14 @@ declare class FormModule {
|
|
|
2648
2690
|
declare class ContainerComponent {
|
|
2649
2691
|
/**
|
|
2650
2692
|
* Set container 100% wide until a breakpoint.
|
|
2693
|
+
* @returns 'sm' | 'md' | 'lg' | 'xl' | 'xxl'
|
|
2694
|
+
* @default ''
|
|
2651
2695
|
*/
|
|
2652
2696
|
readonly breakpoint: _angular_core.InputSignal<string>;
|
|
2653
2697
|
/**
|
|
2654
2698
|
* Set container 100% wide, spanning the entire width of the viewport.
|
|
2655
|
-
* @
|
|
2699
|
+
* @returns boolean
|
|
2700
|
+
* @default false
|
|
2656
2701
|
*/
|
|
2657
2702
|
readonly fluid: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2658
2703
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -2688,46 +2733,55 @@ declare class ColDirective {
|
|
|
2688
2733
|
static ngAcceptInputType_xxl: BooleanInput$1 | NumberInput$1;
|
|
2689
2734
|
/**
|
|
2690
2735
|
* The number of columns/offset/order on extra small devices (<576px).
|
|
2691
|
-
* @
|
|
2736
|
+
* @returns 'auto' | number | boolean
|
|
2737
|
+
* @default false
|
|
2692
2738
|
*/
|
|
2693
2739
|
readonly cCol: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
|
|
2694
2740
|
/**
|
|
2695
2741
|
* The number of columns on extra small devices (<576px).
|
|
2696
|
-
* @
|
|
2742
|
+
* @returns { 'auto' | number | boolean }
|
|
2743
|
+
* @default false
|
|
2697
2744
|
*/
|
|
2698
2745
|
readonly xs: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
|
|
2699
2746
|
/**
|
|
2700
2747
|
* The number of columns/offset/order on small devices (<768px).
|
|
2701
|
-
* @
|
|
2748
|
+
* @returns 'auto' | number | boolean
|
|
2749
|
+
* @default false
|
|
2702
2750
|
*/
|
|
2703
2751
|
readonly sm: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
|
|
2704
2752
|
/**
|
|
2705
2753
|
* The number of columns/offset/order on medium devices (<992px).
|
|
2706
|
-
* @
|
|
2754
|
+
* @returns 'auto' | number | boolean
|
|
2755
|
+
* @default false
|
|
2707
2756
|
*/
|
|
2708
2757
|
readonly md: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
|
|
2709
2758
|
/**
|
|
2710
2759
|
* The number of columns/offset/order on large devices (<1200px).
|
|
2711
|
-
* @
|
|
2760
|
+
* @returns 'auto' | number | boolean
|
|
2761
|
+
* @default false
|
|
2712
2762
|
*/
|
|
2713
2763
|
readonly lg: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
|
|
2714
2764
|
/**
|
|
2715
2765
|
* The number of columns/offset/order on X-Large devices (<1400px).
|
|
2716
|
-
* @
|
|
2766
|
+
* @returns 'auto' | number | boolean
|
|
2767
|
+
* @default false
|
|
2717
2768
|
*/
|
|
2718
2769
|
readonly xl: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
|
|
2719
2770
|
/**
|
|
2720
2771
|
* The number of columns/offset/order on XX-Large devices (≥1400px).
|
|
2721
|
-
* @
|
|
2772
|
+
* @returns 'auto' | number | boolean
|
|
2773
|
+
* @default false
|
|
2722
2774
|
*/
|
|
2723
2775
|
readonly xxl: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
|
|
2724
2776
|
readonly breakpoints: _angular_core.Signal<Record<string, any>>;
|
|
2725
2777
|
/**
|
|
2726
2778
|
* Offset grid columns.
|
|
2779
|
+
* @returns ColOffsetType
|
|
2727
2780
|
*/
|
|
2728
2781
|
readonly offset: _angular_core.InputSignal<ColOffsetType | undefined>;
|
|
2729
2782
|
/**
|
|
2730
2783
|
* Controls the visual order of your columns. Includes support for `1` through `5` across all breakpoints.
|
|
2784
|
+
* @returns ColOrderType
|
|
2731
2785
|
*/
|
|
2732
2786
|
readonly order: _angular_core.InputSignal<ColOrderType | undefined>;
|
|
2733
2787
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -2746,32 +2800,32 @@ type NumberOfColumns = number | 'auto';
|
|
|
2746
2800
|
declare class RowDirective {
|
|
2747
2801
|
/**
|
|
2748
2802
|
* The number of columns/offset/order on extra small devices (<576px).
|
|
2749
|
-
* @
|
|
2803
|
+
* @returns NumberOfColumns
|
|
2750
2804
|
*/
|
|
2751
2805
|
readonly xs: _angular_core.InputSignal<NumberOfColumns | undefined>;
|
|
2752
2806
|
/**
|
|
2753
2807
|
* The number of columns/offset/order on small devices (<768px).
|
|
2754
|
-
* @
|
|
2808
|
+
* @returns NumberOfColumns
|
|
2755
2809
|
*/
|
|
2756
2810
|
readonly sm: _angular_core.InputSignal<NumberOfColumns | undefined>;
|
|
2757
2811
|
/**
|
|
2758
2812
|
* The number of columns/offset/order on medium devices (<992px).
|
|
2759
|
-
* @
|
|
2813
|
+
* @returns NumberOfColumns
|
|
2760
2814
|
*/
|
|
2761
2815
|
readonly md: _angular_core.InputSignal<NumberOfColumns | undefined>;
|
|
2762
2816
|
/**
|
|
2763
2817
|
* The number of columns/offset/order on large devices (<1200px).
|
|
2764
|
-
* @
|
|
2818
|
+
* @returns NumberOfColumns
|
|
2765
2819
|
*/
|
|
2766
2820
|
readonly lg: _angular_core.InputSignal<NumberOfColumns | undefined>;
|
|
2767
2821
|
/**
|
|
2768
2822
|
* The number of columns/offset/order on X-Large devices (<1400px).
|
|
2769
|
-
* @
|
|
2823
|
+
* @returns NumberOfColumns
|
|
2770
2824
|
*/
|
|
2771
2825
|
readonly xl: _angular_core.InputSignal<NumberOfColumns | undefined>;
|
|
2772
2826
|
/**
|
|
2773
2827
|
* The number of columns/offset/order on XX-Large devices (≥1400px).
|
|
2774
|
-
* @
|
|
2828
|
+
* @returns NumberOfColumns
|
|
2775
2829
|
*/
|
|
2776
2830
|
readonly xxl: _angular_core.InputSignal<NumberOfColumns | undefined>;
|
|
2777
2831
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -2817,16 +2871,18 @@ declare class GridModule {
|
|
|
2817
2871
|
type Container = boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'fluid';
|
|
2818
2872
|
declare class HeaderComponent {
|
|
2819
2873
|
/**
|
|
2820
|
-
* Defines optional container wrapping children elements
|
|
2874
|
+
* Defines optional container wrapping children elements
|
|
2875
|
+
* @returns Container
|
|
2821
2876
|
*/
|
|
2822
2877
|
readonly container: InputSignal<Container | undefined>;
|
|
2823
2878
|
/**
|
|
2824
|
-
* Place header in non-static positions
|
|
2879
|
+
* Place header in non-static positions
|
|
2880
|
+
* @returns Positions
|
|
2825
2881
|
*/
|
|
2826
2882
|
readonly position: InputSignal<Positions | undefined>;
|
|
2827
2883
|
/**
|
|
2828
|
-
* Default role for header
|
|
2829
|
-
* @
|
|
2884
|
+
* Default role for header
|
|
2885
|
+
* @returns string
|
|
2830
2886
|
* @default 'banner'
|
|
2831
2887
|
*/
|
|
2832
2888
|
readonly role: InputSignal<string>;
|
|
@@ -2839,8 +2895,8 @@ declare class HeaderComponent {
|
|
|
2839
2895
|
|
|
2840
2896
|
declare class HeaderBrandComponent {
|
|
2841
2897
|
/**
|
|
2842
|
-
* Default role for header-brand
|
|
2843
|
-
* @
|
|
2898
|
+
* Default role for header-brand
|
|
2899
|
+
* @returns string
|
|
2844
2900
|
* @default 'button'
|
|
2845
2901
|
*/
|
|
2846
2902
|
readonly role: _angular_core.InputSignal<string>;
|
|
@@ -2855,8 +2911,8 @@ declare class HeaderDividerComponent {
|
|
|
2855
2911
|
|
|
2856
2912
|
declare class HeaderNavComponent {
|
|
2857
2913
|
/**
|
|
2858
|
-
* Default role for header-nav
|
|
2859
|
-
* @
|
|
2914
|
+
* Default role for header-nav
|
|
2915
|
+
* @returns string
|
|
2860
2916
|
* @default 'navigation'
|
|
2861
2917
|
*/
|
|
2862
2918
|
readonly role: _angular_core.InputSignal<string>;
|
|
@@ -2872,14 +2928,14 @@ declare class HeaderTextComponent {
|
|
|
2872
2928
|
declare class HeaderTogglerDirective implements AfterContentInit {
|
|
2873
2929
|
#private;
|
|
2874
2930
|
/**
|
|
2875
|
-
* Default type for header-toggler button
|
|
2876
|
-
* @
|
|
2931
|
+
* Default type for header-toggler button
|
|
2932
|
+
* @returns string
|
|
2877
2933
|
* @default 'button'
|
|
2878
2934
|
*/
|
|
2879
2935
|
readonly type: _angular_core.InputSignal<string>;
|
|
2880
2936
|
/**
|
|
2881
|
-
* Default aria-label attr for header-toggler
|
|
2882
|
-
* @
|
|
2937
|
+
* Default aria-label attr for header-toggler
|
|
2938
|
+
* @returns string
|
|
2883
2939
|
* @default 'Toggle navigation'
|
|
2884
2940
|
*/
|
|
2885
2941
|
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
@@ -2898,22 +2954,22 @@ declare class HeaderModule {
|
|
|
2898
2954
|
declare class ImgDirective {
|
|
2899
2955
|
/**
|
|
2900
2956
|
* Set the horizontal aligment.
|
|
2901
|
-
* @
|
|
2957
|
+
* @returns {'' | 'start' | 'end' | 'center'}
|
|
2902
2958
|
*/
|
|
2903
2959
|
readonly align: InputSignal<'' | 'start' | 'end' | 'center'>;
|
|
2904
2960
|
/**
|
|
2905
2961
|
* Make image responsive.
|
|
2906
|
-
* @
|
|
2962
|
+
* @returns boolean
|
|
2907
2963
|
*/
|
|
2908
2964
|
readonly fluid: InputSignalWithTransform<boolean, unknown>;
|
|
2909
2965
|
/**
|
|
2910
2966
|
* Make image rounded.
|
|
2911
|
-
* @
|
|
2967
|
+
* @returns boolean
|
|
2912
2968
|
*/
|
|
2913
2969
|
readonly rounded: InputSignalWithTransform<boolean, unknown>;
|
|
2914
2970
|
/**
|
|
2915
2971
|
* Give an image a rounded 1px border appearance.
|
|
2916
|
-
* @
|
|
2972
|
+
* @returns boolean
|
|
2917
2973
|
*/
|
|
2918
2974
|
readonly thumbnail: InputSignalWithTransform<boolean, unknown>;
|
|
2919
2975
|
/**
|
|
@@ -2938,7 +2994,7 @@ declare class ListGroupDirective {
|
|
|
2938
2994
|
static ngAcceptInputType_flush: BooleanInput;
|
|
2939
2995
|
/**
|
|
2940
2996
|
* Remove some borders and rounded corners to render list group items edge-to-edge in a parent component (e.g., `<CCard>`).
|
|
2941
|
-
* @
|
|
2997
|
+
* @returns boolean
|
|
2942
2998
|
*/
|
|
2943
2999
|
readonly flush: InputSignalWithTransform<boolean, unknown>;
|
|
2944
3000
|
/**
|
|
@@ -2956,21 +3012,22 @@ declare class ListGroupItemDirective {
|
|
|
2956
3012
|
readonly hostElement: ElementRef<any>;
|
|
2957
3013
|
/**
|
|
2958
3014
|
* Toggle the active state for the component.
|
|
2959
|
-
* @
|
|
3015
|
+
* @returns boolean
|
|
2960
3016
|
*/
|
|
2961
3017
|
readonly active: InputSignalWithTransform<boolean, unknown>;
|
|
2962
3018
|
/**
|
|
2963
3019
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
2964
|
-
* @
|
|
3020
|
+
* @returns InputSignal<Colors | undefined>
|
|
2965
3021
|
*/
|
|
2966
|
-
readonly color: InputSignal<
|
|
3022
|
+
readonly color: InputSignal<string | undefined>;
|
|
2967
3023
|
/**
|
|
2968
|
-
* Set disabled attr for the host element
|
|
2969
|
-
* @
|
|
3024
|
+
* Set disabled attr for the host element
|
|
3025
|
+
* @returns boolean
|
|
2970
3026
|
*/
|
|
2971
3027
|
readonly disabled: InputSignalWithTransform<boolean, unknown>;
|
|
2972
3028
|
/**
|
|
2973
3029
|
* The tabindex attribute specifies the tab order of an element (when the "tab" button is used for navigating).
|
|
3030
|
+
* @returns number | undefined
|
|
2974
3031
|
*/
|
|
2975
3032
|
readonly tabindex: InputSignalWithTransform<number | undefined, unknown>;
|
|
2976
3033
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -2992,24 +3049,24 @@ declare class ListGroupModule {
|
|
|
2992
3049
|
declare class LoadingButtonComponent extends ButtonDirective {
|
|
2993
3050
|
/**
|
|
2994
3051
|
* Makes a button disabled when loading.
|
|
2995
|
-
* @
|
|
3052
|
+
* @returns boolean
|
|
2996
3053
|
* @default false
|
|
2997
3054
|
*/
|
|
2998
3055
|
disabledOnLoading: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
2999
3056
|
/**
|
|
3000
3057
|
* Loading state (set to true to start animation).
|
|
3001
|
-
* @
|
|
3058
|
+
* @returns boolean
|
|
3002
3059
|
*/
|
|
3003
3060
|
loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3004
3061
|
/**
|
|
3005
3062
|
* Event emitted on loading change
|
|
3006
|
-
* @
|
|
3063
|
+
* @returns boolean
|
|
3007
3064
|
*/
|
|
3008
3065
|
loadingChange: _angular_core.OutputEmitterRef<boolean>;
|
|
3009
3066
|
loadingEffect: _angular_core.EffectRef;
|
|
3010
3067
|
/**
|
|
3011
3068
|
* Sets a type of spinner.
|
|
3012
|
-
* @
|
|
3069
|
+
* @returns {'border' | 'grow'}
|
|
3013
3070
|
*/
|
|
3014
3071
|
spinnerType: _angular_core.InputSignal<"border" | "grow">;
|
|
3015
3072
|
constructor();
|
|
@@ -3035,51 +3092,51 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
|
|
|
3035
3092
|
readonly elementRef: ElementRef<any>;
|
|
3036
3093
|
/**
|
|
3037
3094
|
* Option style
|
|
3038
|
-
* @
|
|
3095
|
+
* @returns ('checkbox' | 'text')
|
|
3039
3096
|
* @default 'checkbox'
|
|
3040
3097
|
*/
|
|
3041
3098
|
readonly optionsStyleInput: _angular_core.InputSignal<string | undefined>;
|
|
3042
3099
|
readonly optionsStyle: WritableSignal<string>;
|
|
3043
3100
|
/**
|
|
3044
3101
|
* Option label
|
|
3045
|
-
* @
|
|
3102
|
+
* @returns string
|
|
3046
3103
|
* @default undefined
|
|
3047
3104
|
*/
|
|
3048
3105
|
label?: string;
|
|
3049
3106
|
/**
|
|
3050
3107
|
* Option inner text
|
|
3051
|
-
* @
|
|
3108
|
+
* @returns string
|
|
3052
3109
|
* @default undefined
|
|
3053
3110
|
*/
|
|
3054
3111
|
text?: string;
|
|
3055
3112
|
/**
|
|
3056
3113
|
* Option visible.
|
|
3057
|
-
* @
|
|
3114
|
+
* @returns boolean
|
|
3058
3115
|
* @default true
|
|
3059
3116
|
*/
|
|
3060
3117
|
set visible(value: boolean);
|
|
3061
3118
|
get visible(): boolean;
|
|
3062
3119
|
/**
|
|
3063
3120
|
* Option disabled.
|
|
3064
|
-
* @
|
|
3121
|
+
* @returns boolean
|
|
3065
3122
|
* @default false
|
|
3066
3123
|
*/
|
|
3067
3124
|
disabled: boolean;
|
|
3068
3125
|
/**
|
|
3069
3126
|
* Option selected.
|
|
3070
|
-
* @
|
|
3127
|
+
* @returns boolean
|
|
3071
3128
|
* @default false
|
|
3072
3129
|
*/
|
|
3073
3130
|
set selected(value: boolean | undefined);
|
|
3074
3131
|
get selected(): boolean | undefined;
|
|
3075
3132
|
/**
|
|
3076
3133
|
* Emits option selected change
|
|
3077
|
-
* @
|
|
3134
|
+
* @returns boolean
|
|
3078
3135
|
*/
|
|
3079
3136
|
readonly selectedChange: _angular_core.OutputEmitterRef<boolean>;
|
|
3080
3137
|
/**
|
|
3081
3138
|
* Option value.
|
|
3082
|
-
* @
|
|
3139
|
+
* @returns string | number
|
|
3083
3140
|
* @default undefined
|
|
3084
3141
|
*/
|
|
3085
3142
|
set value(value: string | number);
|
|
@@ -3088,7 +3145,7 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
|
|
|
3088
3145
|
get active(): boolean;
|
|
3089
3146
|
/**
|
|
3090
3147
|
* Role for the option element.
|
|
3091
|
-
* @
|
|
3148
|
+
* @returns string
|
|
3092
3149
|
*/
|
|
3093
3150
|
readonly role: _angular_core.InputSignal<string>;
|
|
3094
3151
|
readonly focusChange: _angular_core.OutputEmitterRef<MultiSelectOptionComponent>;
|
|
@@ -3119,12 +3176,12 @@ declare class MultiSelectOptgroupComponent implements AfterContentInit {
|
|
|
3119
3176
|
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
3120
3177
|
/**
|
|
3121
3178
|
* Options group label.
|
|
3122
|
-
* @
|
|
3179
|
+
* @returns string
|
|
3123
3180
|
*/
|
|
3124
3181
|
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
3125
3182
|
/**
|
|
3126
3183
|
* Disables all options in the group.
|
|
3127
|
-
* @
|
|
3184
|
+
* @returns boolean
|
|
3128
3185
|
* @default false
|
|
3129
3186
|
*/
|
|
3130
3187
|
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -3218,46 +3275,46 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3218
3275
|
setDisabledState(isDisabled: boolean): void;
|
|
3219
3276
|
/**
|
|
3220
3277
|
* Allow users to create options if they are not in the list of options.
|
|
3221
|
-
* @
|
|
3278
|
+
* @returns boolean
|
|
3222
3279
|
* @default false
|
|
3223
3280
|
* @since 4.5.11
|
|
3224
3281
|
*/
|
|
3225
3282
|
readonly allowCreateOptions: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3226
3283
|
/**
|
|
3227
3284
|
* Sets the accessible label (`aria-label`) for the button that clears the current selection. This label is read by screen readers.
|
|
3228
|
-
* @
|
|
3285
|
+
* @returns string
|
|
3229
3286
|
* @since 5.7.7
|
|
3230
3287
|
*/
|
|
3231
3288
|
readonly ariaCleanerLabel: _angular_core.InputSignal<string>;
|
|
3232
3289
|
/**
|
|
3233
3290
|
* Sets the accessible label (`aria-label`) for the indicator button that toggles the options menu. This label is read by screen readers.
|
|
3234
|
-
* @
|
|
3291
|
+
* @returns string
|
|
3235
3292
|
* @since 5.7.7
|
|
3236
3293
|
*/
|
|
3237
3294
|
readonly ariaIndicatorLabel: _angular_core.InputSignal<string>;
|
|
3238
3295
|
/**
|
|
3239
3296
|
* Enables selection cleaner element
|
|
3240
|
-
* @
|
|
3297
|
+
* @returns boolean
|
|
3241
3298
|
* @default true | 'active'
|
|
3242
3299
|
*/
|
|
3243
3300
|
readonly cleaner: _angular_core.InputSignal<boolean | "active">;
|
|
3244
3301
|
/**
|
|
3245
3302
|
* Clear current search on selecting an item
|
|
3246
|
-
* @
|
|
3303
|
+
* @returns boolean
|
|
3247
3304
|
* @default false
|
|
3248
3305
|
* @since 4.5.11
|
|
3249
3306
|
*/
|
|
3250
3307
|
readonly clearSearchOnSelect: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3251
3308
|
/**
|
|
3252
3309
|
* Disables multi-select component
|
|
3253
|
-
* @
|
|
3310
|
+
* @returns boolean
|
|
3254
3311
|
* @default false
|
|
3255
3312
|
*/
|
|
3256
3313
|
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3257
3314
|
readonly disabled: _angular_core.WritableSignal<boolean>;
|
|
3258
3315
|
/**
|
|
3259
3316
|
* Add loading spinner and reduced opacity.
|
|
3260
|
-
* @
|
|
3317
|
+
* @returns boolean
|
|
3261
3318
|
* @default false
|
|
3262
3319
|
* @since 4.5.2
|
|
3263
3320
|
*/
|
|
@@ -3270,27 +3327,27 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3270
3327
|
readonly multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3271
3328
|
/**
|
|
3272
3329
|
* List of option elements
|
|
3273
|
-
* @
|
|
3330
|
+
* @returns IOption[]
|
|
3274
3331
|
* @default []
|
|
3275
3332
|
*/
|
|
3276
3333
|
set options(options: IOption[]);
|
|
3277
3334
|
get options(): IOption[];
|
|
3278
3335
|
/**
|
|
3279
3336
|
* Sets maxHeight of options list in px
|
|
3280
|
-
* @
|
|
3337
|
+
* @returns string | number
|
|
3281
3338
|
* @default 'auto'
|
|
3282
3339
|
*/
|
|
3283
3340
|
readonly optionsMaxHeightInput: _angular_core.InputSignal<string | number>;
|
|
3284
3341
|
readonly optionsMaxHeight: _angular_core.WritableSignal<string | number>;
|
|
3285
3342
|
/**
|
|
3286
3343
|
* Sets option style
|
|
3287
|
-
* @
|
|
3344
|
+
* @returns 'checkbox' | 'text'
|
|
3288
3345
|
* @default 'checkbox'
|
|
3289
3346
|
*/
|
|
3290
3347
|
readonly optionsStyle: _angular_core.InputSignal<"text" | "checkbox">;
|
|
3291
3348
|
/**
|
|
3292
3349
|
* Specifies a short hint that is visible in the search input
|
|
3293
|
-
* @
|
|
3350
|
+
* @returns string
|
|
3294
3351
|
* @default 'Select...'
|
|
3295
3352
|
*/
|
|
3296
3353
|
readonly placeholder: _angular_core.InputSignal<string>;
|
|
@@ -3303,19 +3360,19 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3303
3360
|
readonly resetSelectionOnOptionsChange: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3304
3361
|
/**
|
|
3305
3362
|
* Enables search input element
|
|
3306
|
-
* @
|
|
3363
|
+
* @returns boolean | SearchFn | 'external'
|
|
3307
3364
|
* @default true
|
|
3308
3365
|
*/
|
|
3309
3366
|
readonly search: _angular_core.InputSignal<boolean | "external" | SearchFn>;
|
|
3310
3367
|
/**
|
|
3311
3368
|
* Sets the label for no results when filtering
|
|
3312
|
-
* @
|
|
3369
|
+
* @returns string
|
|
3313
3370
|
* @default 'no items'
|
|
3314
3371
|
*/
|
|
3315
3372
|
readonly searchNoResultsLabel: _angular_core.InputSignal<string>;
|
|
3316
3373
|
/**
|
|
3317
3374
|
* Sets initial search string
|
|
3318
|
-
* @
|
|
3375
|
+
* @returns string
|
|
3319
3376
|
* @default ''
|
|
3320
3377
|
*/
|
|
3321
3378
|
set searchValue(value: string);
|
|
@@ -3323,83 +3380,83 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3323
3380
|
private _searchValue;
|
|
3324
3381
|
/**
|
|
3325
3382
|
* Emits searchValue string for external filtering
|
|
3326
|
-
* @
|
|
3383
|
+
* @returns string
|
|
3327
3384
|
*/
|
|
3328
3385
|
readonly searchValueChange: _angular_core.OutputEmitterRef<string>;
|
|
3329
3386
|
/**
|
|
3330
3387
|
* Enables select all button
|
|
3331
|
-
* @
|
|
3388
|
+
* @returns boolean
|
|
3332
3389
|
* @default true
|
|
3333
3390
|
*/
|
|
3334
3391
|
readonly selectAll: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3335
3392
|
/**
|
|
3336
3393
|
* Sets the select all button label
|
|
3337
|
-
* @
|
|
3394
|
+
* @returns string
|
|
3338
3395
|
* @default 'Select all options'
|
|
3339
3396
|
*/
|
|
3340
3397
|
readonly selectAllLabel: _angular_core.InputSignal<string>;
|
|
3341
3398
|
/**
|
|
3342
3399
|
* Selection type
|
|
3343
|
-
* @
|
|
3400
|
+
* @returns 'counter' | 'tags' | 'text'
|
|
3344
3401
|
* @default 'tags'
|
|
3345
3402
|
*/
|
|
3346
3403
|
readonly selectionType: _angular_core.InputSignal<"text" | "counter" | "tags">;
|
|
3347
3404
|
/**
|
|
3348
3405
|
* Counter selection label value
|
|
3349
|
-
* @
|
|
3406
|
+
* @returns string
|
|
3350
3407
|
* @default 'item(s) selected'
|
|
3351
3408
|
*/
|
|
3352
3409
|
readonly selectionTypeCounterText: _angular_core.InputSignal<string>;
|
|
3353
3410
|
/**
|
|
3354
3411
|
* Counter selection label plural map for I18nPluralPipe
|
|
3355
|
-
* @
|
|
3412
|
+
* @returns IPluralMap
|
|
3356
3413
|
* @default { '=1': 'item selected', 'other': 'items selected' }
|
|
3357
3414
|
*/
|
|
3358
3415
|
readonly selectionTypeCounterTextPluralMap: _angular_core.InputSignal<IPluralMap | undefined>;
|
|
3359
3416
|
/**
|
|
3360
3417
|
* Size the component small or large.
|
|
3361
|
-
* @
|
|
3418
|
+
* @returns 'sm' | 'lg' | undefined
|
|
3362
3419
|
*/
|
|
3363
3420
|
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
3364
3421
|
/**
|
|
3365
3422
|
* Initial value of multi-select
|
|
3366
|
-
* @
|
|
3423
|
+
* @returns (TValue | TValue[])
|
|
3367
3424
|
*/
|
|
3368
3425
|
set value(value: TValue | TValue[]);
|
|
3369
3426
|
get value(): TValue | TValue[];
|
|
3370
3427
|
/**
|
|
3371
3428
|
* Emits valueChange
|
|
3372
|
-
* @
|
|
3429
|
+
* @returns TValue | TValue[]
|
|
3373
3430
|
*/
|
|
3374
3431
|
readonly valueChange: _angular_core.OutputEmitterRef<TValue | TValue[]>;
|
|
3375
3432
|
/**
|
|
3376
3433
|
* Toggle visual validation feedback.
|
|
3377
|
-
* @
|
|
3434
|
+
* @returns boolean | undefined
|
|
3378
3435
|
* @default undefined
|
|
3379
3436
|
*/
|
|
3380
3437
|
readonly valid: _angular_core.InputSignal<boolean | undefined>;
|
|
3381
3438
|
/**
|
|
3382
3439
|
* Enable virtual scroller for options list.
|
|
3383
|
-
* @
|
|
3440
|
+
* @returns boolean
|
|
3384
3441
|
* @default false
|
|
3385
3442
|
*/
|
|
3386
3443
|
readonly virtualScroller: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3387
3444
|
/**
|
|
3388
3445
|
* Amount of visible options, if set - overwrites optionsMaxHeight
|
|
3389
|
-
* @
|
|
3446
|
+
* @returns number
|
|
3390
3447
|
* @default 8
|
|
3391
3448
|
*/
|
|
3392
3449
|
readonly visibleItemsInput: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
3393
3450
|
readonly visibleItems: _angular_core.Signal<number>;
|
|
3394
3451
|
/**
|
|
3395
3452
|
* The size of the option item in the list (in pixels).
|
|
3396
|
-
* @
|
|
3453
|
+
* @returns number
|
|
3397
3454
|
* @default 40
|
|
3398
3455
|
*/
|
|
3399
3456
|
readonly itemSize: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
3400
3457
|
/**
|
|
3401
3458
|
* Min width of the options list (in pixels).
|
|
3402
|
-
* @
|
|
3459
|
+
* @returns number
|
|
3403
3460
|
* @default 196
|
|
3404
3461
|
*/
|
|
3405
3462
|
readonly itemMinWidthInput: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
@@ -3407,19 +3464,19 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3407
3464
|
readonly minWidth: _angular_core.WritableSignal<number>;
|
|
3408
3465
|
/**
|
|
3409
3466
|
* Toggle the visibility of the dropdown select component.
|
|
3410
|
-
* @
|
|
3467
|
+
* @returns boolean
|
|
3411
3468
|
* @default false
|
|
3412
3469
|
*/
|
|
3413
3470
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3414
3471
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
3415
3472
|
/**
|
|
3416
3473
|
* Emits visibleChange
|
|
3417
|
-
* @
|
|
3474
|
+
* @returns boolean
|
|
3418
3475
|
*/
|
|
3419
3476
|
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
3420
3477
|
/**
|
|
3421
3478
|
* Optional popper Options object
|
|
3422
|
-
* @
|
|
3479
|
+
* @returns Partial<Options>
|
|
3423
3480
|
*/
|
|
3424
3481
|
readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
|
|
3425
3482
|
readonly popperOptions: _angular_core.Signal<{
|
|
@@ -3508,22 +3565,26 @@ declare class NavLinkDirective {
|
|
|
3508
3565
|
#private;
|
|
3509
3566
|
static ngAcceptInputType_disabled: BooleanInput;
|
|
3510
3567
|
/**
|
|
3511
|
-
* Sets .nav-link class to the host
|
|
3568
|
+
* Sets .nav-link class to the host
|
|
3569
|
+
* @returns boolean
|
|
3512
3570
|
* @default true
|
|
3513
3571
|
*/
|
|
3514
3572
|
readonly cNavLink: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3515
3573
|
/**
|
|
3516
|
-
* Toggle the active state for the component
|
|
3574
|
+
* Toggle the active state for the component
|
|
3575
|
+
* @returns boolean
|
|
3517
3576
|
* @default undefined
|
|
3518
3577
|
*/
|
|
3519
3578
|
readonly active: _angular_core.InputSignal<boolean | undefined>;
|
|
3520
3579
|
/**
|
|
3521
|
-
* Set disabled attr for the host element
|
|
3580
|
+
* Set disabled attr for the host element
|
|
3581
|
+
* @returns boolean
|
|
3522
3582
|
* @default false
|
|
3523
3583
|
*/
|
|
3524
3584
|
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3525
3585
|
/**
|
|
3526
3586
|
* The tabindex attribute specifies the tab order of an element (when the "tab" button is used for navigating).
|
|
3587
|
+
* @returns number | undefined
|
|
3527
3588
|
*/
|
|
3528
3589
|
readonly tabindex: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
|
|
3529
3590
|
readonly ariaCurrent: _angular_core.Signal<"page" | null>;
|
|
@@ -3567,7 +3628,7 @@ declare class NavbarComponent {
|
|
|
3567
3628
|
#private;
|
|
3568
3629
|
/**
|
|
3569
3630
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
3570
|
-
* @
|
|
3631
|
+
* @returns Colors
|
|
3571
3632
|
*/
|
|
3572
3633
|
readonly color: _angular_core.InputSignal<string | undefined>;
|
|
3573
3634
|
/**
|
|
@@ -3584,7 +3645,7 @@ declare class NavbarComponent {
|
|
|
3584
3645
|
readonly placement: _angular_core.InputSignal<"fixed-top" | "fixed-bottom" | "sticky-top" | undefined>;
|
|
3585
3646
|
/**
|
|
3586
3647
|
* HTML element role.
|
|
3587
|
-
* @
|
|
3648
|
+
* @returns string
|
|
3588
3649
|
*/
|
|
3589
3650
|
readonly role: _angular_core.InputSignal<string>;
|
|
3590
3651
|
readonly collapse: _angular_core.Signal<CollapseDirective | undefined>;
|
|
@@ -3597,6 +3658,11 @@ declare class NavbarComponent {
|
|
|
3597
3658
|
}
|
|
3598
3659
|
|
|
3599
3660
|
declare class NavbarBrandDirective {
|
|
3661
|
+
/**
|
|
3662
|
+
* Default role for navbar-brand.
|
|
3663
|
+
* @returns string
|
|
3664
|
+
* @default 'button'
|
|
3665
|
+
*/
|
|
3600
3666
|
readonly role: _angular_core.InputSignal<string>;
|
|
3601
3667
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavbarBrandDirective, never>;
|
|
3602
3668
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<NavbarBrandDirective, "[cNavbarBrand]", never, { "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -3605,7 +3671,7 @@ declare class NavbarBrandDirective {
|
|
|
3605
3671
|
declare class NavbarNavComponent {
|
|
3606
3672
|
/**
|
|
3607
3673
|
* Enable vertical scrolling of a collapsed navbar toggleable contents.
|
|
3608
|
-
* @
|
|
3674
|
+
* @returns boolean
|
|
3609
3675
|
*/
|
|
3610
3676
|
readonly scroll: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3611
3677
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -3622,20 +3688,20 @@ declare class NavbarTogglerDirective {
|
|
|
3622
3688
|
#private;
|
|
3623
3689
|
constructor();
|
|
3624
3690
|
/**
|
|
3625
|
-
* Reference to navbar collapse element (via # template variable)
|
|
3626
|
-
* @
|
|
3691
|
+
* Reference to navbar collapse element (via # template variable)
|
|
3692
|
+
* @returns string
|
|
3627
3693
|
* @default 'button'
|
|
3628
3694
|
*/
|
|
3629
3695
|
readonly collapseRef: _angular_core.InputSignal<CollapseDirective | undefined>;
|
|
3630
3696
|
/**
|
|
3631
|
-
* Default type for navbar-toggler
|
|
3632
|
-
* @
|
|
3697
|
+
* Default type for navbar-toggler
|
|
3698
|
+
* @returns string
|
|
3633
3699
|
* @default 'button'
|
|
3634
3700
|
*/
|
|
3635
3701
|
readonly type: _angular_core.InputSignal<string>;
|
|
3636
3702
|
/**
|
|
3637
|
-
* Default aria-label attr for navbar-toggler
|
|
3638
|
-
* @
|
|
3703
|
+
* Default aria-label attr for navbar-toggler
|
|
3704
|
+
* @returns string
|
|
3639
3705
|
* @default 'Toggle navigation'
|
|
3640
3706
|
*/
|
|
3641
3707
|
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
@@ -3669,19 +3735,19 @@ declare class ModalDialogComponent {
|
|
|
3669
3735
|
readonly alignment: _angular_core.InputSignal<"top" | "center" | undefined>;
|
|
3670
3736
|
/**
|
|
3671
3737
|
* Set modal to covers the entire user viewport.
|
|
3672
|
-
* @
|
|
3738
|
+
* @returns {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
|
|
3673
3739
|
*/
|
|
3674
3740
|
readonly fullscreen: _angular_core.InputSignal<boolean | "sm" | "md" | "lg" | "xl" | "xxl" | undefined>;
|
|
3675
3741
|
/**
|
|
3676
3742
|
* Does the modal dialog itself scroll, or does the whole dialog scroll within the window.
|
|
3677
3743
|
* @default false
|
|
3678
|
-
* @
|
|
3744
|
+
* @returns {boolean}
|
|
3679
3745
|
*/
|
|
3680
3746
|
readonly scrollable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3681
3747
|
/**
|
|
3682
3748
|
* Size the component small, large, or extra large.
|
|
3683
3749
|
* @default undefined
|
|
3684
|
-
* @
|
|
3750
|
+
* @returns {'sm' | 'lg' | 'xl'}
|
|
3685
3751
|
*/
|
|
3686
3752
|
readonly size: _angular_core.InputSignal<"sm" | "lg" | "xl" | undefined>;
|
|
3687
3753
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -3723,37 +3789,37 @@ declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
|
3723
3789
|
static ngAcceptInputType_visibleInput: BooleanInput$1;
|
|
3724
3790
|
/**
|
|
3725
3791
|
* Align the modal in the center or top of the screen.
|
|
3726
|
-
* @
|
|
3792
|
+
* @returns {'top' | 'center'}
|
|
3727
3793
|
* @default 'top'
|
|
3728
3794
|
*/
|
|
3729
3795
|
readonly alignment: _angular_core.InputSignal<"top" | "center">;
|
|
3730
3796
|
/**
|
|
3731
3797
|
* Apply a backdrop on the body while the modal is open.
|
|
3732
|
-
* @
|
|
3798
|
+
* @returns boolean | 'static'
|
|
3733
3799
|
* @default true
|
|
3734
3800
|
*/
|
|
3735
3801
|
readonly backdrop: _angular_core.InputSignal<boolean | "static">;
|
|
3736
3802
|
/**
|
|
3737
3803
|
* Set modal to cover the entire user viewport.
|
|
3738
|
-
* @
|
|
3804
|
+
* @returns {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
|
|
3739
3805
|
* @default undefined
|
|
3740
3806
|
*/
|
|
3741
3807
|
readonly fullscreen: _angular_core.InputSignal<boolean | "sm" | "md" | "lg" | "xl" | "xxl" | undefined>;
|
|
3742
3808
|
/**
|
|
3743
3809
|
* Closes the modal when the escape key is pressed.
|
|
3744
|
-
* @
|
|
3810
|
+
* @returns boolean
|
|
3745
3811
|
* @default true
|
|
3746
3812
|
*/
|
|
3747
3813
|
readonly keyboard: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3748
3814
|
/**
|
|
3749
3815
|
* Html id attribute, required for programmatic visibility change.
|
|
3750
|
-
* @
|
|
3816
|
+
* @returns string
|
|
3751
3817
|
*/
|
|
3752
3818
|
readonly attrId: _angular_core.InputSignal<string | undefined>;
|
|
3753
3819
|
get id(): string | undefined;
|
|
3754
3820
|
/**
|
|
3755
3821
|
* Size the component small, large, or extra large.
|
|
3756
|
-
* @
|
|
3822
|
+
* @returns {'sm' | 'lg' | 'xl'}
|
|
3757
3823
|
* @default undefined
|
|
3758
3824
|
*/
|
|
3759
3825
|
readonly size: _angular_core.InputSignal<"sm" | "lg" | "xl" | undefined>;
|
|
@@ -3763,33 +3829,33 @@ declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
|
3763
3829
|
readonly transition: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3764
3830
|
/**
|
|
3765
3831
|
* Default role for modal
|
|
3766
|
-
* @
|
|
3832
|
+
* @returns string
|
|
3767
3833
|
* @default 'dialog'
|
|
3768
3834
|
*/
|
|
3769
3835
|
readonly role: _angular_core.InputSignal<string>;
|
|
3770
3836
|
/**
|
|
3771
3837
|
* Set aria-modal html attr for modal
|
|
3772
|
-
* @
|
|
3838
|
+
* @returns boolean
|
|
3773
3839
|
* @default null
|
|
3774
3840
|
*/
|
|
3775
3841
|
readonly ariaModalInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3776
3842
|
readonly ariaModal: _angular_core.Signal<true | null>;
|
|
3777
3843
|
/**
|
|
3778
3844
|
* Create a scrollable modal that allows scrolling the modal body.
|
|
3779
|
-
* @
|
|
3845
|
+
* @returns boolean
|
|
3780
3846
|
* @default false
|
|
3781
3847
|
*/
|
|
3782
3848
|
readonly scrollable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3783
3849
|
/**
|
|
3784
3850
|
* Toggle the visibility of modal component.
|
|
3785
|
-
* @
|
|
3851
|
+
* @returns boolean
|
|
3786
3852
|
* @default false
|
|
3787
3853
|
*/
|
|
3788
3854
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3789
3855
|
readonly visible: _angular_core.WritableSignal<boolean>;
|
|
3790
3856
|
/**
|
|
3791
3857
|
* Event triggered on modal dismiss.
|
|
3792
|
-
* @
|
|
3858
|
+
* @returns boolean
|
|
3793
3859
|
*/
|
|
3794
3860
|
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
3795
3861
|
readonly modalContentRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
@@ -3841,55 +3907,55 @@ declare class OffcanvasComponent implements OnInit, OnDestroy {
|
|
|
3841
3907
|
static ngAcceptInputType_visible: BooleanInput$1;
|
|
3842
3908
|
/**
|
|
3843
3909
|
* Apply a backdrop on the body while offcanvas is open.
|
|
3844
|
-
* @
|
|
3910
|
+
* @returns boolean | 'static'
|
|
3845
3911
|
* @default true
|
|
3846
3912
|
*/
|
|
3847
3913
|
readonly backdrop: _angular_core.InputSignal<boolean | "static">;
|
|
3848
3914
|
/**
|
|
3849
3915
|
* Closes the offcanvas when the escape key is pressed
|
|
3850
|
-
* @
|
|
3916
|
+
* @returns boolean
|
|
3851
3917
|
* @default true
|
|
3852
3918
|
*/
|
|
3853
3919
|
readonly keyboard: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3854
3920
|
/**
|
|
3855
3921
|
* Component placement
|
|
3856
|
-
* @
|
|
3922
|
+
* @returns string | 'start' | 'end' | 'top' | 'bottom'
|
|
3857
3923
|
* @default 'start'
|
|
3858
3924
|
*/
|
|
3859
3925
|
readonly placement: _angular_core.InputSignal<string>;
|
|
3860
3926
|
/**
|
|
3861
3927
|
* Responsive offcanvas property hides content outside the viewport from a specified breakpoint and down.
|
|
3862
|
-
* @
|
|
3928
|
+
* @returns boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
|
3863
3929
|
* @default true
|
|
3864
3930
|
* @since 4.3.10
|
|
3865
3931
|
*/
|
|
3866
3932
|
readonly responsive: _angular_core.InputSignal<boolean | "sm" | "md" | "lg" | "xl" | "xxl" | undefined>;
|
|
3867
3933
|
/**
|
|
3868
3934
|
* Html id attribute, required for programmatic visibility change.
|
|
3869
|
-
* @
|
|
3935
|
+
* @returns string
|
|
3870
3936
|
*/
|
|
3871
3937
|
readonly id: _angular_core.InputSignal<string>;
|
|
3872
3938
|
/**
|
|
3873
|
-
* Default role for offcanvas
|
|
3874
|
-
* @
|
|
3939
|
+
* Default role for offcanvas
|
|
3940
|
+
* @returns string
|
|
3875
3941
|
* @default 'dialog'
|
|
3876
3942
|
*/
|
|
3877
3943
|
readonly role: _angular_core.InputSignal<string>;
|
|
3878
3944
|
/**
|
|
3879
|
-
* Set aria-modal html attr for offcanvas
|
|
3880
|
-
* @
|
|
3945
|
+
* Set aria-modal html attr for offcanvas
|
|
3946
|
+
* @returns boolean
|
|
3881
3947
|
* @default true
|
|
3882
3948
|
*/
|
|
3883
3949
|
readonly ariaModal: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3884
3950
|
/**
|
|
3885
3951
|
* Allow body scrolling while offcanvas is visible.
|
|
3886
|
-
* @
|
|
3952
|
+
* @returns boolean
|
|
3887
3953
|
* @default false
|
|
3888
3954
|
*/
|
|
3889
3955
|
readonly scroll: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3890
3956
|
/**
|
|
3891
3957
|
* Toggle the visibility of offcanvas component.
|
|
3892
|
-
* @
|
|
3958
|
+
* @returns boolean
|
|
3893
3959
|
* @default false
|
|
3894
3960
|
*/
|
|
3895
3961
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -3897,7 +3963,7 @@ declare class OffcanvasComponent implements OnInit, OnDestroy {
|
|
|
3897
3963
|
readonly visibleEffect: _angular_core.EffectRef;
|
|
3898
3964
|
/**
|
|
3899
3965
|
* Event triggered on visible change.
|
|
3900
|
-
* @
|
|
3966
|
+
* @returns boolean
|
|
3901
3967
|
*/
|
|
3902
3968
|
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
3903
3969
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -3938,7 +4004,7 @@ declare class OffcanvasToggleDirective {
|
|
|
3938
4004
|
#private;
|
|
3939
4005
|
/**
|
|
3940
4006
|
* Html id attr of offcanvas to toggle.
|
|
3941
|
-
* @
|
|
4007
|
+
* @returns string
|
|
3942
4008
|
*/
|
|
3943
4009
|
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
3944
4010
|
protected toggleOpen($event: MouseEvent): void;
|
|
@@ -4099,6 +4165,10 @@ declare class OneTimePasswordModule {
|
|
|
4099
4165
|
|
|
4100
4166
|
declare class PageLinkDirective {
|
|
4101
4167
|
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
4168
|
+
/**
|
|
4169
|
+
* Toggle the disabled state for the component.
|
|
4170
|
+
* @returns boolean
|
|
4171
|
+
*/
|
|
4102
4172
|
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4103
4173
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
4104
4174
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PageLinkDirective, never>;
|
|
@@ -4110,12 +4180,12 @@ declare class PageItemDirective {
|
|
|
4110
4180
|
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
4111
4181
|
/**
|
|
4112
4182
|
* Toggle the active state for the component.
|
|
4113
|
-
* @
|
|
4183
|
+
* @returns boolean
|
|
4114
4184
|
*/
|
|
4115
4185
|
readonly active: _angular_core.InputSignal<boolean | undefined>;
|
|
4116
4186
|
/**
|
|
4117
4187
|
* Toggle the disabled state for the component.
|
|
4118
|
-
* @
|
|
4188
|
+
* @returns boolean
|
|
4119
4189
|
*/
|
|
4120
4190
|
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4121
4191
|
readonly ariaCurrent: _angular_core.Signal<"page" | null>;
|
|
@@ -4134,17 +4204,17 @@ declare class PageItemComponent extends PageItemDirective {
|
|
|
4134
4204
|
declare class PaginationComponent {
|
|
4135
4205
|
/**
|
|
4136
4206
|
* Set the alignment of pagination components.
|
|
4137
|
-
* @
|
|
4207
|
+
* @returns 'start' | 'center' | 'end' | ''
|
|
4138
4208
|
*/
|
|
4139
4209
|
readonly align: _angular_core.InputSignal<"" | "start" | "end" | "center">;
|
|
4140
4210
|
/**
|
|
4141
4211
|
* Size the component small or large.
|
|
4142
|
-
* @
|
|
4212
|
+
* @returns '' | 'sm' | 'lg' | string
|
|
4143
4213
|
*/
|
|
4144
4214
|
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
4145
4215
|
/**
|
|
4146
|
-
* Default role for pagination
|
|
4147
|
-
* @
|
|
4216
|
+
* Default role for pagination
|
|
4217
|
+
* @returns string
|
|
4148
4218
|
* @default 'navigation'
|
|
4149
4219
|
*/
|
|
4150
4220
|
readonly role: _angular_core.InputSignal<string>;
|
|
@@ -4162,7 +4232,7 @@ declare class PaginationModule {
|
|
|
4162
4232
|
declare class PlaceholderDirective {
|
|
4163
4233
|
/**
|
|
4164
4234
|
* placeholder toggler
|
|
4165
|
-
* @
|
|
4235
|
+
* @returns boolean
|
|
4166
4236
|
* @default false
|
|
4167
4237
|
*/
|
|
4168
4238
|
readonly visible: InputSignalWithTransform<boolean, unknown>;
|
|
@@ -4179,7 +4249,7 @@ declare class PlaceholderDirective {
|
|
|
4179
4249
|
declare class PlaceholderAnimationDirective {
|
|
4180
4250
|
/**
|
|
4181
4251
|
* Animation type for placeholder
|
|
4182
|
-
* @
|
|
4252
|
+
* @returns 'glow' | 'wave'
|
|
4183
4253
|
* @default undefined
|
|
4184
4254
|
*/
|
|
4185
4255
|
readonly animation: InputSignal<'glow' | 'wave' | undefined>;
|
|
@@ -4200,15 +4270,24 @@ declare class PopoverComponent implements OnDestroy {
|
|
|
4200
4270
|
readonly renderer: Renderer2;
|
|
4201
4271
|
/**
|
|
4202
4272
|
* Content of popover
|
|
4203
|
-
* @
|
|
4273
|
+
* @returns {string | TemplateRef}
|
|
4204
4274
|
*/
|
|
4205
4275
|
readonly content: _angular_core.InputSignal<string | TemplateRef<any>>;
|
|
4206
4276
|
/**
|
|
4207
4277
|
* Toggle the visibility of popover component.
|
|
4208
|
-
* @
|
|
4278
|
+
* @returns boolean
|
|
4209
4279
|
*/
|
|
4210
4280
|
readonly visible: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4281
|
+
/**
|
|
4282
|
+
* The `id` HTML attribute of the popover.
|
|
4283
|
+
* @returns string
|
|
4284
|
+
*/
|
|
4211
4285
|
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
4286
|
+
/**
|
|
4287
|
+
* Default role for popover.
|
|
4288
|
+
* @returns string
|
|
4289
|
+
* @default 'tooltip'
|
|
4290
|
+
*/
|
|
4212
4291
|
readonly role: _angular_core.InputSignal<string>;
|
|
4213
4292
|
readonly viewContainerRef: _angular_core.Signal<ViewContainerRef | undefined>;
|
|
4214
4293
|
private textNode;
|
|
@@ -4224,12 +4303,12 @@ declare class PopoverDirective implements OnDestroy, OnInit, AfterViewInit {
|
|
|
4224
4303
|
#private;
|
|
4225
4304
|
/**
|
|
4226
4305
|
* Content of popover
|
|
4227
|
-
* @
|
|
4306
|
+
* @returns {string | TemplateRef}
|
|
4228
4307
|
*/
|
|
4229
4308
|
readonly content: _angular_core.InputSignal<string | TemplateRef<any> | undefined>;
|
|
4230
4309
|
/**
|
|
4231
4310
|
* Optional popper Options object, takes precedence over cPopoverPlacement prop
|
|
4232
|
-
* @
|
|
4311
|
+
* @returns Partial<Options>
|
|
4233
4312
|
*/
|
|
4234
4313
|
readonly popperOptions: _angular_core.InputSignal<Partial<Options>>;
|
|
4235
4314
|
readonly popperOptionsComputed: _angular_core.Signal<{
|
|
@@ -4258,7 +4337,7 @@ declare class PopoverDirective implements OnDestroy, OnInit, AfterViewInit {
|
|
|
4258
4337
|
readonly trigger: _angular_core.InputSignal<Triggers | Triggers[]>;
|
|
4259
4338
|
/**
|
|
4260
4339
|
* Toggle the visibility of popover component.
|
|
4261
|
-
* @
|
|
4340
|
+
* @returns boolean
|
|
4262
4341
|
*/
|
|
4263
4342
|
readonly visible: _angular_core.ModelSignal<boolean>;
|
|
4264
4343
|
get ariaDescribedBy(): string | null;
|
|
@@ -4310,7 +4389,7 @@ declare class ProgressBarDirective {
|
|
|
4310
4389
|
#private;
|
|
4311
4390
|
/**
|
|
4312
4391
|
* Use to animate the stripes right to left via CSS3 animations.
|
|
4313
|
-
* @
|
|
4392
|
+
* @returns boolean
|
|
4314
4393
|
*/
|
|
4315
4394
|
readonly animated: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
4316
4395
|
/**
|
|
@@ -4318,10 +4397,15 @@ declare class ProgressBarDirective {
|
|
|
4318
4397
|
* @values 'primary', 'secondary', 'success', 'danger', 'warning', 'info', 'dark', 'light'
|
|
4319
4398
|
*/
|
|
4320
4399
|
readonly color: _angular_core.InputSignal<string | undefined>;
|
|
4400
|
+
/**
|
|
4401
|
+
* Number of decimal places to round the computed percent value to.
|
|
4402
|
+
* @returns number
|
|
4403
|
+
* @default 0
|
|
4404
|
+
*/
|
|
4321
4405
|
readonly precision: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
4322
4406
|
/**
|
|
4323
4407
|
* The percent value the ProgressBar.
|
|
4324
|
-
* @
|
|
4408
|
+
* @returns number
|
|
4325
4409
|
* @default 0
|
|
4326
4410
|
*/
|
|
4327
4411
|
readonly value: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
@@ -4333,13 +4417,13 @@ declare class ProgressBarDirective {
|
|
|
4333
4417
|
readonly variant: _angular_core.InputSignal<"striped" | undefined>;
|
|
4334
4418
|
/**
|
|
4335
4419
|
* The max value of the ProgressBar.
|
|
4336
|
-
* @
|
|
4420
|
+
* @returns number
|
|
4337
4421
|
* @default 100
|
|
4338
4422
|
*/
|
|
4339
4423
|
readonly max: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
4340
4424
|
/**
|
|
4341
4425
|
* Set default html role attribute.
|
|
4342
|
-
* @
|
|
4426
|
+
* @returns string
|
|
4343
4427
|
*/
|
|
4344
4428
|
readonly role: _angular_core.InputSignal<string>;
|
|
4345
4429
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProgressBarDirective, never>;
|
|
@@ -4363,17 +4447,17 @@ declare class ProgressComponent {
|
|
|
4363
4447
|
readonly contentProgressBars: _angular_core.Signal<readonly ProgressBarComponent[]>;
|
|
4364
4448
|
/**
|
|
4365
4449
|
* Sets the height of the component. If you set that value the inner `<CProgressBar>` will automatically resize accordingly.
|
|
4366
|
-
* @
|
|
4450
|
+
* @returns number
|
|
4367
4451
|
*/
|
|
4368
4452
|
readonly height: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
4369
4453
|
/**
|
|
4370
4454
|
* Displays thin progress.
|
|
4371
|
-
* @
|
|
4455
|
+
* @returns boolean
|
|
4372
4456
|
*/
|
|
4373
4457
|
readonly thin: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4374
4458
|
/**
|
|
4375
4459
|
* Change the default color to white.
|
|
4376
|
-
* @
|
|
4460
|
+
* @returns boolean
|
|
4377
4461
|
*/
|
|
4378
4462
|
readonly white: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4379
4463
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -4383,6 +4467,11 @@ declare class ProgressComponent {
|
|
|
4383
4467
|
}
|
|
4384
4468
|
|
|
4385
4469
|
declare class ProgressStackedComponent {
|
|
4470
|
+
/**
|
|
4471
|
+
* Toggle the `progress-stacked` class on the host element.
|
|
4472
|
+
* @returns boolean
|
|
4473
|
+
* @default true
|
|
4474
|
+
*/
|
|
4386
4475
|
readonly stacked: _angular_core.InputSignal<boolean>;
|
|
4387
4476
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProgressStackedComponent, never>;
|
|
4388
4477
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProgressStackedComponent, "c-progress-stacked", ["cProgressStacked"], { "stacked": { "alias": "stacked"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -4500,7 +4589,7 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
4500
4589
|
readonly hoverValue: _angular_core.WritableSignal<number | null>;
|
|
4501
4590
|
/**
|
|
4502
4591
|
* Event emitted on `mouseenter` and `mouseleave`.
|
|
4503
|
-
* @
|
|
4592
|
+
* @returns number | null
|
|
4504
4593
|
*/
|
|
4505
4594
|
readonly hoverValueChange: _angular_core.OutputEmitterRef<number | null>;
|
|
4506
4595
|
readonly hoverValueEffect: _angular_core.EffectRef;
|
|
@@ -4647,7 +4736,7 @@ declare class RangeSliderComponent implements ControlValueAccessor, OnInit {
|
|
|
4647
4736
|
readonly value: _angular_core.WritableSignal<number | number[]>;
|
|
4648
4737
|
/**
|
|
4649
4738
|
* Event emitted on `value` change.
|
|
4650
|
-
* @
|
|
4739
|
+
* @returns number | number[]
|
|
4651
4740
|
*/
|
|
4652
4741
|
readonly valueChange: _angular_core.OutputEmitterRef<number | number[]>;
|
|
4653
4742
|
readonly currentValue: _angular_core.Signal<number[]>;
|
|
@@ -4697,6 +4786,68 @@ declare class RangeSliderModule {
|
|
|
4697
4786
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<RangeSliderModule>;
|
|
4698
4787
|
}
|
|
4699
4788
|
|
|
4789
|
+
declare class SearchButtonComponent {
|
|
4790
|
+
#private;
|
|
4791
|
+
/**
|
|
4792
|
+
* Toggle the disabled state for the component.
|
|
4793
|
+
* @returns boolean
|
|
4794
|
+
* @default false
|
|
4795
|
+
*/
|
|
4796
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4797
|
+
/**
|
|
4798
|
+
* Placeholder content rendered inside `.search-button-placeholder`.
|
|
4799
|
+
* @returns string
|
|
4800
|
+
* @default 'Search'
|
|
4801
|
+
*/
|
|
4802
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
4803
|
+
/**
|
|
4804
|
+
* Prevent the browser's default behavior when the configured shortcut matches.
|
|
4805
|
+
* @returns boolean
|
|
4806
|
+
* @default true
|
|
4807
|
+
*/
|
|
4808
|
+
readonly preventDefault: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4809
|
+
/**
|
|
4810
|
+
* Comma-separated shortcut list. The component matches all configured shortcuts and renders the platform-preferred one.
|
|
4811
|
+
* @returns string
|
|
4812
|
+
* @default 'meta+/,ctrl+/'
|
|
4813
|
+
*/
|
|
4814
|
+
readonly shortcut: _angular_core.InputSignal<string>;
|
|
4815
|
+
/**
|
|
4816
|
+
* Event emitted when the component is activated by click or keyboard shortcut.
|
|
4817
|
+
*/
|
|
4818
|
+
readonly trigger: _angular_core.OutputEmitterRef<void>;
|
|
4819
|
+
protected readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
4820
|
+
protected readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
|
|
4821
|
+
protected readonly activeKeys: _angular_core.WritableSignal<string[]>;
|
|
4822
|
+
protected readonly shortcuts: _angular_core.Signal<_coreui_angular_pro.SearchButtonShortcut[]>;
|
|
4823
|
+
protected readonly preferredShortcut: _angular_core.Signal<_coreui_angular_pro.SearchButtonShortcut>;
|
|
4824
|
+
protected readonly shortcutTokens: _angular_core.Signal<string[]>;
|
|
4825
|
+
protected onClick(): void;
|
|
4826
|
+
protected onDocumentKeydown(event: KeyboardEvent): void;
|
|
4827
|
+
protected onDocumentKeyup(event: KeyboardEvent): void;
|
|
4828
|
+
protected onWindowBlur(): void;
|
|
4829
|
+
private handleShortcut;
|
|
4830
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchButtonComponent, never>;
|
|
4831
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchButtonComponent, "c-search-button", ["cSearchButton"], { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "preventDefault": { "alias": "preventDefault"; "required": false; "isSignal": true; }; "shortcut": { "alias": "shortcut"; "required": false; "isSignal": true; }; }, { "trigger": "trigger"; }, ["contentTemplates"], ["ng-template", "*"], true, never>;
|
|
4832
|
+
}
|
|
4833
|
+
|
|
4834
|
+
declare class SearchButtonModule {
|
|
4835
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchButtonModule, never>;
|
|
4836
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<SearchButtonModule, never, [typeof SearchButtonComponent], [typeof SearchButtonComponent]>;
|
|
4837
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<SearchButtonModule>;
|
|
4838
|
+
}
|
|
4839
|
+
|
|
4840
|
+
type SearchButtonShortcut = {
|
|
4841
|
+
key: string;
|
|
4842
|
+
modifiers: {
|
|
4843
|
+
alt: boolean;
|
|
4844
|
+
ctrl: boolean;
|
|
4845
|
+
meta: boolean;
|
|
4846
|
+
shift: boolean;
|
|
4847
|
+
};
|
|
4848
|
+
shortcut: string;
|
|
4849
|
+
};
|
|
4850
|
+
|
|
4700
4851
|
interface IIntersectionObserverInit {
|
|
4701
4852
|
root?: Element | null;
|
|
4702
4853
|
rootMargin?: string;
|
|
@@ -4822,17 +4973,17 @@ declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
|
|
|
4822
4973
|
readonly state: _angular_core.WritableSignal<ISidebarAction>;
|
|
4823
4974
|
/**
|
|
4824
4975
|
* Sets if the color of text should be colored for a light or dark background.
|
|
4825
|
-
* @
|
|
4976
|
+
* @returns 'dark' | 'light'
|
|
4826
4977
|
*/
|
|
4827
4978
|
readonly colorScheme: _angular_core.InputSignal<"dark" | "light" | undefined>;
|
|
4828
4979
|
/**
|
|
4829
4980
|
* Sets html attribute id.
|
|
4830
|
-
* @
|
|
4981
|
+
* @returns string
|
|
4831
4982
|
*/
|
|
4832
4983
|
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
4833
4984
|
/**
|
|
4834
4985
|
* Make sidebar narrow.
|
|
4835
|
-
* @
|
|
4986
|
+
* @returns boolean
|
|
4836
4987
|
* @default false
|
|
4837
4988
|
*/
|
|
4838
4989
|
readonly narrowInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -4840,36 +4991,36 @@ declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
|
|
|
4840
4991
|
get narrow(): boolean;
|
|
4841
4992
|
/**
|
|
4842
4993
|
* Set sidebar to overlaid variant.
|
|
4843
|
-
* @
|
|
4994
|
+
* @returns boolean
|
|
4844
4995
|
* @default false
|
|
4845
4996
|
*/
|
|
4846
4997
|
readonly overlaid: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4847
4998
|
/**
|
|
4848
4999
|
* Components placement, there’s no default placement.
|
|
4849
|
-
* @
|
|
5000
|
+
* @returns 'start' | 'end'
|
|
4850
5001
|
*/
|
|
4851
5002
|
readonly placement: _angular_core.InputSignal<"start" | "end" | undefined>;
|
|
4852
5003
|
/**
|
|
4853
5004
|
* Place sidebar in non-static positions.
|
|
4854
|
-
* @
|
|
5005
|
+
* @returns 'fixed' | 'sticky'
|
|
4855
5006
|
* @default 'fixed'
|
|
4856
5007
|
*/
|
|
4857
5008
|
readonly position: _angular_core.InputSignal<"fixed" | "sticky">;
|
|
4858
5009
|
/**
|
|
4859
5010
|
* Size the component small, large, or extra large.
|
|
4860
|
-
* @
|
|
5011
|
+
* @returns 'sm' | 'lg' | 'xl'
|
|
4861
5012
|
*/
|
|
4862
5013
|
readonly size: _angular_core.InputSignal<"sm" | "lg" | "xl" | undefined>;
|
|
4863
5014
|
/**
|
|
4864
5015
|
* Expand narrowed sidebar on hover.
|
|
4865
|
-
* @
|
|
5016
|
+
* @returns boolean
|
|
4866
5017
|
* @default false
|
|
4867
5018
|
*/
|
|
4868
5019
|
readonly unfoldableInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4869
5020
|
readonly unfoldable: _angular_core.WritableSignal<boolean>;
|
|
4870
5021
|
/**
|
|
4871
5022
|
* Toggle the visibility of sidebar component.
|
|
4872
|
-
* @
|
|
5023
|
+
* @returns boolean
|
|
4873
5024
|
* @default false
|
|
4874
5025
|
*/
|
|
4875
5026
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -4877,7 +5028,7 @@ declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
|
|
|
4877
5028
|
get visible(): boolean;
|
|
4878
5029
|
/**
|
|
4879
5030
|
* Event emitted on visibility change.
|
|
4880
|
-
* @
|
|
5031
|
+
* @returns boolean
|
|
4881
5032
|
*/
|
|
4882
5033
|
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
4883
5034
|
set sidebarState(value: ISidebarAction);
|
|
@@ -4929,13 +5080,13 @@ declare class SidebarToggleDirective {
|
|
|
4929
5080
|
#private;
|
|
4930
5081
|
/**
|
|
4931
5082
|
* Id of sidebar for toggle action.
|
|
4932
|
-
* @
|
|
5083
|
+
* @returns string
|
|
4933
5084
|
*/
|
|
4934
5085
|
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
4935
5086
|
/**
|
|
4936
5087
|
* Sidebar property name for toggle action.
|
|
4937
5088
|
*
|
|
4938
|
-
* @
|
|
5089
|
+
* @returns 'visible' | 'unfoldable'
|
|
4939
5090
|
* @default 'visible'
|
|
4940
5091
|
*/
|
|
4941
5092
|
readonly toggle: _angular_core.InputSignal<"visible" | "unfoldable">;
|
|
@@ -4945,6 +5096,11 @@ declare class SidebarToggleDirective {
|
|
|
4945
5096
|
}
|
|
4946
5097
|
|
|
4947
5098
|
declare class SidebarTogglerDirective {
|
|
5099
|
+
/**
|
|
5100
|
+
* Default role for sidebar toggler.
|
|
5101
|
+
* @returns string
|
|
5102
|
+
* @default 'button'
|
|
5103
|
+
*/
|
|
4948
5104
|
readonly role: _angular_core.InputSignal<string>;
|
|
4949
5105
|
get getStyles(): any;
|
|
4950
5106
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarTogglerDirective, never>;
|
|
@@ -5029,6 +5185,10 @@ declare class SidebarNavGroupComponent implements OnInit, OnDestroy {
|
|
|
5029
5185
|
#private;
|
|
5030
5186
|
readonly helper: SidebarNavHelper;
|
|
5031
5187
|
constructor();
|
|
5188
|
+
/**
|
|
5189
|
+
* The nav data item rendered as a sidebar nav group.
|
|
5190
|
+
* @returns INavData
|
|
5191
|
+
*/
|
|
5032
5192
|
readonly item: _angular_core.InputSignal<INavData | undefined>;
|
|
5033
5193
|
/**
|
|
5034
5194
|
* Determines when an inactive `c-sidebar-nav-group` closes.
|
|
@@ -5037,7 +5197,15 @@ declare class SidebarNavGroupComponent implements OnInit, OnDestroy {
|
|
|
5037
5197
|
* - `none`: never, the group stays open
|
|
5038
5198
|
*/
|
|
5039
5199
|
readonly dropdownMode: _angular_core.InputSignal<"path" | "none" | "close">;
|
|
5200
|
+
/**
|
|
5201
|
+
* Sets the group's initial expanded state.
|
|
5202
|
+
* @returns boolean
|
|
5203
|
+
*/
|
|
5040
5204
|
readonly show: _angular_core.InputSignal<boolean | undefined>;
|
|
5205
|
+
/**
|
|
5206
|
+
* Renders the group's nested nav in compact mode.
|
|
5207
|
+
* @returns boolean
|
|
5208
|
+
*/
|
|
5041
5209
|
readonly compact: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
5042
5210
|
readonly hostClasses: _angular_core.Signal<{
|
|
5043
5211
|
'nav-group': boolean;
|
|
@@ -5067,7 +5235,7 @@ declare class SidebarNavComponent implements OnChanges {
|
|
|
5067
5235
|
readonly router: Router;
|
|
5068
5236
|
/**
|
|
5069
5237
|
* Configuration object for sidebar-nav.
|
|
5070
|
-
* @
|
|
5238
|
+
* @returns INavData[]
|
|
5071
5239
|
* @default []
|
|
5072
5240
|
*/
|
|
5073
5241
|
readonly navItems: _angular_core.InputSignal<INavData[] | undefined>;
|
|
@@ -5078,8 +5246,21 @@ declare class SidebarNavComponent implements OnChanges {
|
|
|
5078
5246
|
* - `none`: never, the group stays open
|
|
5079
5247
|
*/
|
|
5080
5248
|
readonly dropdownMode: _angular_core.InputSignal<"path" | "none" | "close">;
|
|
5249
|
+
/**
|
|
5250
|
+
* Renders `c-sidebar-nav` as a nested group's item list rather than the top-level sidebar nav.
|
|
5251
|
+
* @returns boolean
|
|
5252
|
+
*/
|
|
5081
5253
|
readonly groupItems: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
5254
|
+
/**
|
|
5255
|
+
* Renders the nav in compact mode.
|
|
5256
|
+
* @returns boolean
|
|
5257
|
+
*/
|
|
5082
5258
|
readonly compact: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
|
|
5259
|
+
/**
|
|
5260
|
+
* Default role for sidebar nav.
|
|
5261
|
+
* @returns string
|
|
5262
|
+
* @default 'navigation'
|
|
5263
|
+
*/
|
|
5083
5264
|
readonly role: _angular_core.InputSignal<string>;
|
|
5084
5265
|
readonly hostClasses: _angular_core.Signal<{
|
|
5085
5266
|
'sidebar-nav': boolean;
|
|
@@ -5094,6 +5275,10 @@ declare class SidebarNavComponent implements OnChanges {
|
|
|
5094
5275
|
}
|
|
5095
5276
|
|
|
5096
5277
|
declare class SidebarNavDividerComponent {
|
|
5278
|
+
/**
|
|
5279
|
+
* The nav data item rendered as a sidebar nav divider.
|
|
5280
|
+
* @returns INavData
|
|
5281
|
+
*/
|
|
5097
5282
|
readonly item: _angular_core.InputSignal<INavData | undefined>;
|
|
5098
5283
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarNavDividerComponent, never>;
|
|
5099
5284
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavDividerComponent, "c-sidebar-nav-divider", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -5101,13 +5286,26 @@ declare class SidebarNavDividerComponent {
|
|
|
5101
5286
|
|
|
5102
5287
|
declare class SidebarNavLinkContentComponent {
|
|
5103
5288
|
readonly helper: SidebarNavHelper;
|
|
5289
|
+
/**
|
|
5290
|
+
* The nav data item rendered as the link content.
|
|
5291
|
+
* @returns INavData
|
|
5292
|
+
* @default {}
|
|
5293
|
+
*/
|
|
5104
5294
|
readonly item: _angular_core.InputSignal<INavData>;
|
|
5105
5295
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarNavLinkContentComponent, never>;
|
|
5106
5296
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavLinkContentComponent, "c-sidebar-nav-link-content", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
5107
5297
|
}
|
|
5108
5298
|
declare class SidebarNavLinkComponent implements OnInit, OnDestroy {
|
|
5109
5299
|
readonly router: Router;
|
|
5300
|
+
/**
|
|
5301
|
+
* The nav data item rendered as a sidebar nav link.
|
|
5302
|
+
* @returns INavData
|
|
5303
|
+
*/
|
|
5110
5304
|
readonly item: _angular_core.InputSignal<INavData | undefined>;
|
|
5305
|
+
/**
|
|
5306
|
+
* Event emitted when the sidebar nav link is clicked.
|
|
5307
|
+
* @returns void
|
|
5308
|
+
*/
|
|
5111
5309
|
readonly linkClick: _angular_core.OutputEmitterRef<void>;
|
|
5112
5310
|
linkType: string;
|
|
5113
5311
|
href: string;
|
|
@@ -5128,6 +5326,10 @@ declare class SidebarNavLinkComponent implements OnInit, OnDestroy {
|
|
|
5128
5326
|
|
|
5129
5327
|
declare class SidebarNavTitleComponent {
|
|
5130
5328
|
#private;
|
|
5329
|
+
/**
|
|
5330
|
+
* The nav data item rendered as a sidebar nav title.
|
|
5331
|
+
* @returns INavData
|
|
5332
|
+
*/
|
|
5131
5333
|
readonly item: _angular_core.InputSignal<INavData | undefined>;
|
|
5132
5334
|
private addAttribs;
|
|
5133
5335
|
private setStyle;
|
|
@@ -5139,6 +5341,11 @@ declare class SidebarNavTitleComponent {
|
|
|
5139
5341
|
|
|
5140
5342
|
declare class SidebarNavLabelComponent {
|
|
5141
5343
|
readonly helper: SidebarNavHelper;
|
|
5344
|
+
/**
|
|
5345
|
+
* The nav data item rendered as a sidebar nav label.
|
|
5346
|
+
* @returns INavData
|
|
5347
|
+
* @default {}
|
|
5348
|
+
*/
|
|
5142
5349
|
readonly item: _angular_core.InputSignal<INavData>;
|
|
5143
5350
|
readonly itemClass: _angular_core.Signal<Record<string, boolean>>;
|
|
5144
5351
|
readonly labelIconClass: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -5190,7 +5397,7 @@ declare class SmartPaginationComponent {
|
|
|
5190
5397
|
readonly activePage: _angular_core.WritableSignal<number>;
|
|
5191
5398
|
/**
|
|
5192
5399
|
* Event triggered on activePage change.
|
|
5193
|
-
* @
|
|
5400
|
+
* @returns number
|
|
5194
5401
|
*/
|
|
5195
5402
|
readonly activePageChange: _angular_core.OutputEmitterRef<number>;
|
|
5196
5403
|
/**
|
|
@@ -5214,13 +5421,13 @@ declare class SmartPaginationComponent {
|
|
|
5214
5421
|
/**
|
|
5215
5422
|
* Maximum items number.
|
|
5216
5423
|
* @default 5
|
|
5217
|
-
* @
|
|
5424
|
+
* @returns number
|
|
5218
5425
|
*/
|
|
5219
5426
|
readonly limit: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
5220
5427
|
/**
|
|
5221
5428
|
* Number of pages.
|
|
5222
5429
|
* @default 1
|
|
5223
|
-
* @
|
|
5430
|
+
* @returns number
|
|
5224
5431
|
*/
|
|
5225
5432
|
readonly pages: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
5226
5433
|
/**
|
|
@@ -5259,7 +5466,7 @@ declare class SmartPaginationComponent {
|
|
|
5259
5466
|
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
5260
5467
|
/**
|
|
5261
5468
|
* Default role for pagination.
|
|
5262
|
-
* @
|
|
5469
|
+
* @returns string
|
|
5263
5470
|
* @default 'navigation'
|
|
5264
5471
|
*/
|
|
5265
5472
|
readonly role: _angular_core.InputSignal<string>;
|
|
@@ -5299,23 +5506,23 @@ declare class SmartTableFilterComponent {
|
|
|
5299
5506
|
interface ITable {
|
|
5300
5507
|
/**
|
|
5301
5508
|
* Set the vertical alignment.
|
|
5302
|
-
* @
|
|
5509
|
+
* @returns string
|
|
5303
5510
|
* @values 'bottom' | 'middle' | 'top'
|
|
5304
5511
|
*/
|
|
5305
5512
|
align?: 'bottom' | 'middle' | 'top';
|
|
5306
5513
|
/**
|
|
5307
5514
|
* Sets the border color of the component to one of CoreUI’s themed colors.
|
|
5308
|
-
* @
|
|
5515
|
+
* @returns Colors
|
|
5309
5516
|
*/
|
|
5310
5517
|
borderColor?: Colors;
|
|
5311
5518
|
/**
|
|
5312
5519
|
* Add borders on all sides of the table and cells.
|
|
5313
|
-
* @
|
|
5520
|
+
* @returns boolean
|
|
5314
5521
|
*/
|
|
5315
5522
|
bordered?: boolean | string;
|
|
5316
5523
|
/**
|
|
5317
5524
|
* Remove borders on all sides of the table and cells.
|
|
5318
|
-
* @
|
|
5525
|
+
* @returns boolean
|
|
5319
5526
|
*/
|
|
5320
5527
|
borderless?: boolean | string;
|
|
5321
5528
|
/**
|
|
@@ -5325,12 +5532,12 @@ interface ITable {
|
|
|
5325
5532
|
caption?: 'top';
|
|
5326
5533
|
/**
|
|
5327
5534
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
5328
|
-
* @
|
|
5535
|
+
* @returns Colors
|
|
5329
5536
|
*/
|
|
5330
5537
|
color?: Colors;
|
|
5331
5538
|
/**
|
|
5332
5539
|
* Enable a hover state on table rows within table body.
|
|
5333
|
-
* @
|
|
5540
|
+
* @returns boolean
|
|
5334
5541
|
*/
|
|
5335
5542
|
hover?: boolean | string;
|
|
5336
5543
|
/**
|
|
@@ -5340,12 +5547,12 @@ interface ITable {
|
|
|
5340
5547
|
responsive?: boolean | Omit<Breakpoints, 'xs'>;
|
|
5341
5548
|
/**
|
|
5342
5549
|
* Make table more compact by cutting all cell `padding` in half.
|
|
5343
|
-
* @
|
|
5550
|
+
* @returns boolean
|
|
5344
5551
|
*/
|
|
5345
5552
|
small?: boolean | string;
|
|
5346
5553
|
/**
|
|
5347
5554
|
* Add zebra-striping to any table row within the table body`.
|
|
5348
|
-
* @
|
|
5555
|
+
* @returns boolean
|
|
5349
5556
|
*/
|
|
5350
5557
|
striped?: boolean | string;
|
|
5351
5558
|
attributes?: Partial<HTMLTableElement>;
|
|
@@ -5353,12 +5560,12 @@ interface ITable {
|
|
|
5353
5560
|
interface ITableElementProps {
|
|
5354
5561
|
/**
|
|
5355
5562
|
* Set the vertical alignment.
|
|
5356
|
-
@
|
|
5563
|
+
@returns 'bottom' | 'middle' | 'top'
|
|
5357
5564
|
*/
|
|
5358
5565
|
align?: ('bottom' | 'middle' | 'top');
|
|
5359
5566
|
/**
|
|
5360
5567
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
5361
|
-
* @
|
|
5568
|
+
* @returns Colors
|
|
5362
5569
|
*/
|
|
5363
5570
|
color?: Colors;
|
|
5364
5571
|
/** @deprecated */
|
|
@@ -5367,7 +5574,7 @@ interface ITableElementProps {
|
|
|
5367
5574
|
interface ITableRowCellProps extends ITableElementProps {
|
|
5368
5575
|
/**
|
|
5369
5576
|
* Highlight a table row or cell
|
|
5370
|
-
@
|
|
5577
|
+
@returns boolean
|
|
5371
5578
|
*/
|
|
5372
5579
|
active?: boolean;
|
|
5373
5580
|
/** @deprecated */
|
|
@@ -5377,7 +5584,7 @@ interface ITableRowCellProps extends ITableElementProps {
|
|
|
5377
5584
|
interface ISmartTable {
|
|
5378
5585
|
/**
|
|
5379
5586
|
* Sets active page. If 'pagination' prop is enabled, activePage is set only initially.
|
|
5380
|
-
* @
|
|
5587
|
+
* @returns number
|
|
5381
5588
|
* @default 1
|
|
5382
5589
|
*/
|
|
5383
5590
|
activePage?: number;
|
|
@@ -5386,12 +5593,12 @@ interface ISmartTable {
|
|
|
5386
5593
|
* Cleaner resets `tableFilterValue`, `columnFilterValue`, `sorterValue`.
|
|
5387
5594
|
* If clean is possible it is clickable (`tabIndex="0"` `role="button"`, `color="danger"`), otherwise it is not clickable and transparent.
|
|
5388
5595
|
* Cleaner can be customized through the `cleaner` slot.
|
|
5389
|
-
* @
|
|
5596
|
+
* @returns boolean
|
|
5390
5597
|
*/
|
|
5391
5598
|
cleaner?: boolean;
|
|
5392
5599
|
/**
|
|
5393
5600
|
* Style table items as clickable.
|
|
5394
|
-
* @
|
|
5601
|
+
* @returns boolean
|
|
5395
5602
|
*/
|
|
5396
5603
|
clickableRows?: boolean;
|
|
5397
5604
|
/**
|
|
@@ -5399,7 +5606,7 @@ interface ISmartTable {
|
|
|
5399
5606
|
* Column filter can be customized, by passing prop as object with additional options as keys. Available options:
|
|
5400
5607
|
* - external (Boolean) - Disables automatic filtering inside component.
|
|
5401
5608
|
* - lazy (Boolean) - Set to true to trigger filter updates only on change event.
|
|
5402
|
-
* @
|
|
5609
|
+
* @returns boolean | ColumnFilter
|
|
5403
5610
|
*/
|
|
5404
5611
|
columnFilter?: boolean | IColumnFilter;
|
|
5405
5612
|
/**
|
|
@@ -5427,13 +5634,13 @@ interface ISmartTable {
|
|
|
5427
5634
|
* Sorter can be customized, by passing prop as object with additional options as keys. Available options:
|
|
5428
5635
|
* - external (Boolean) - Disables automatic sorting inside component.
|
|
5429
5636
|
* - resettable (Boolean) - If set to true clicking on sorter have three states: ascending, descending and null. That means that third click on sorter will reset sorting, and restore table to original order.
|
|
5430
|
-
* @
|
|
5637
|
+
* @returns boolean | Sorter
|
|
5431
5638
|
*/
|
|
5432
5639
|
columnSorter: InputSignal<boolean | ISorter>;
|
|
5433
5640
|
/**
|
|
5434
5641
|
* Displays table footer, which mirrors table header. (without column filter).
|
|
5435
5642
|
* @default false
|
|
5436
|
-
* @
|
|
5643
|
+
* @returns boolean
|
|
5437
5644
|
*/
|
|
5438
5645
|
footer?: boolean;
|
|
5439
5646
|
/**
|
|
@@ -5447,25 +5654,25 @@ interface ISmartTable {
|
|
|
5447
5654
|
* Example item:
|
|
5448
5655
|
* { name: 'John' , age: 12, _props: { color: 'success' }, _cellProps: { age: { class: 'fw-bold'}}}
|
|
5449
5656
|
* For column generation description see columns prop.
|
|
5450
|
-
* @
|
|
5657
|
+
* @returns Array<IItem>
|
|
5451
5658
|
*/
|
|
5452
5659
|
items?: IItem[];
|
|
5453
5660
|
/**
|
|
5454
5661
|
* Number of items per site, when pagination is enabled.
|
|
5455
5662
|
* @default 10
|
|
5456
|
-
* @
|
|
5663
|
+
* @returns number
|
|
5457
5664
|
*/
|
|
5458
5665
|
itemsPerPage?: number;
|
|
5459
5666
|
/**
|
|
5460
5667
|
* Label for items per page selector.
|
|
5461
5668
|
* @default 'Items per page:'
|
|
5462
|
-
* @
|
|
5669
|
+
* @returns string
|
|
5463
5670
|
*/
|
|
5464
5671
|
itemsPerPageLabel?: string;
|
|
5465
5672
|
/**
|
|
5466
5673
|
* Items per page selector options.
|
|
5467
5674
|
* @default [5, 10, 20, 50]
|
|
5468
|
-
* @
|
|
5675
|
+
* @returns number[]
|
|
5469
5676
|
*/
|
|
5470
5677
|
itemsPerPageOptions?: number[];
|
|
5471
5678
|
/**
|
|
@@ -5477,7 +5684,7 @@ interface ISmartTable {
|
|
|
5477
5684
|
/**
|
|
5478
5685
|
* When set, table will have loading style: loading spinner and reduced opacity.
|
|
5479
5686
|
* When 'small' prop is enabled spinner will be also smaller.
|
|
5480
|
-
* @
|
|
5687
|
+
* @returns boolean
|
|
5481
5688
|
*/
|
|
5482
5689
|
loading?: boolean;
|
|
5483
5690
|
/**
|
|
@@ -5499,22 +5706,22 @@ interface ISmartTable {
|
|
|
5499
5706
|
*/
|
|
5500
5707
|
/**
|
|
5501
5708
|
* Scoped columns.
|
|
5502
|
-
// * @
|
|
5709
|
+
// * @returns ScopedColumns
|
|
5503
5710
|
* todo or remove?
|
|
5504
5711
|
*/
|
|
5505
5712
|
/**
|
|
5506
5713
|
* Add checkboxes to make table rows selectable.
|
|
5507
|
-
* @
|
|
5714
|
+
* @returns boolean
|
|
5508
5715
|
*/
|
|
5509
5716
|
selectable?: boolean;
|
|
5510
5717
|
/**
|
|
5511
5718
|
* Enables select all checkbox displayed in the header of the table.
|
|
5512
|
-
* @
|
|
5719
|
+
* @returns boolean
|
|
5513
5720
|
*/
|
|
5514
5721
|
selectAll?: boolean;
|
|
5515
5722
|
/**
|
|
5516
5723
|
* State of the sorter. Name key is column name, direction can be 'asc' or 'desc'.
|
|
5517
|
-
* @
|
|
5724
|
+
* @returns ISorterValue
|
|
5518
5725
|
*/
|
|
5519
5726
|
sorterValue?: ISorterValue;
|
|
5520
5727
|
/**
|
|
@@ -5566,7 +5773,7 @@ interface ISmartTable {
|
|
|
5566
5773
|
tableFilterPlaceholder?: string;
|
|
5567
5774
|
/**
|
|
5568
5775
|
* Value of table filter. Set .sync modifier to track changes.
|
|
5569
|
-
* @
|
|
5776
|
+
* @returns string
|
|
5570
5777
|
*/
|
|
5571
5778
|
tableFilterValue?: string;
|
|
5572
5779
|
/**
|
|
@@ -5644,7 +5851,7 @@ interface ITableHeaderCellProps {
|
|
|
5644
5851
|
/**
|
|
5645
5852
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
5646
5853
|
*
|
|
5647
|
-
* @
|
|
5854
|
+
* @returns 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
|
|
5648
5855
|
*/
|
|
5649
5856
|
color?: Colors;
|
|
5650
5857
|
[key: string]: any;
|
|
@@ -5764,12 +5971,12 @@ declare class SmartTableComponent implements ISmartTable, AfterContentInit, OnCh
|
|
|
5764
5971
|
readonly sorterValueChange: _angular_core.OutputEmitterRef<ISorterValue>;
|
|
5765
5972
|
/**
|
|
5766
5973
|
* Event emitted on `activePage` change.
|
|
5767
|
-
* @
|
|
5974
|
+
* @returns number
|
|
5768
5975
|
*/
|
|
5769
5976
|
readonly activePageChange: _angular_core.OutputEmitterRef<number>;
|
|
5770
5977
|
/**
|
|
5771
5978
|
* Event emitted on `itemsPerPage` change.
|
|
5772
|
-
* @
|
|
5979
|
+
* @returns number
|
|
5773
5980
|
*/
|
|
5774
5981
|
readonly itemsPerPageChange: _angular_core.OutputEmitterRef<number>;
|
|
5775
5982
|
/**
|
|
@@ -5866,30 +6073,30 @@ declare class SmartTableModule {
|
|
|
5866
6073
|
declare class SpinnerComponent {
|
|
5867
6074
|
/**
|
|
5868
6075
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
5869
|
-
* @
|
|
6076
|
+
* @returns Colors
|
|
5870
6077
|
*/
|
|
5871
6078
|
readonly color: _angular_core.InputSignal<string | undefined>;
|
|
5872
6079
|
/**
|
|
5873
6080
|
* Label for accessibility.
|
|
5874
|
-
* @
|
|
6081
|
+
* @returns string
|
|
5875
6082
|
* @default 'Loading...'
|
|
5876
6083
|
*/
|
|
5877
6084
|
readonly label: _angular_core.InputSignal<string>;
|
|
5878
6085
|
/**
|
|
5879
6086
|
* Size the component small.
|
|
5880
|
-
* @
|
|
6087
|
+
* @returns string
|
|
5881
6088
|
* @values 'sm'
|
|
5882
6089
|
*/
|
|
5883
6090
|
readonly size: _angular_core.InputSignal<"sm" | undefined>;
|
|
5884
6091
|
/**
|
|
5885
6092
|
* Set the button variant to an outlined button or a ghost button.
|
|
5886
|
-
* @
|
|
6093
|
+
* @returns 'border' | 'grow'
|
|
5887
6094
|
* @default 'border'
|
|
5888
6095
|
*/
|
|
5889
6096
|
readonly variant: _angular_core.InputSignal<"border" | "grow">;
|
|
5890
6097
|
/**
|
|
5891
|
-
* Default role attr for
|
|
5892
|
-
* @
|
|
6098
|
+
* Default role attr for spinner
|
|
6099
|
+
* @returns string
|
|
5893
6100
|
* @default 'status'
|
|
5894
6101
|
*/
|
|
5895
6102
|
readonly role: _angular_core.InputSignal<string>;
|
|
@@ -5940,54 +6147,54 @@ declare class StepperStepComponent {
|
|
|
5940
6147
|
readonly viewContainerRef: ViewContainerRef;
|
|
5941
6148
|
/**
|
|
5942
6149
|
* Whether the step is disabled.
|
|
5943
|
-
* @
|
|
6150
|
+
* @returns boolean
|
|
5944
6151
|
* @default false
|
|
5945
6152
|
*/
|
|
5946
6153
|
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5947
6154
|
/**
|
|
5948
6155
|
* Unique identifier for the step.
|
|
5949
|
-
* @
|
|
6156
|
+
* @returns string
|
|
5950
6157
|
* @default undefined
|
|
5951
6158
|
*/
|
|
5952
6159
|
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
5953
6160
|
/**
|
|
5954
6161
|
* Optional indicator to display in the step.
|
|
5955
6162
|
* Can be a string or a TemplateRef for custom icons.
|
|
5956
|
-
* @
|
|
6163
|
+
* @returns string | TemplateRef<any>
|
|
5957
6164
|
* @default (step index will be used if not provided)
|
|
5958
6165
|
*/
|
|
5959
6166
|
readonly indicator: _angular_core.InputSignal<string | TemplateRef<any> | undefined>;
|
|
5960
6167
|
/**
|
|
5961
6168
|
* Context for the indicator template.
|
|
5962
6169
|
* If `indicator` is a TemplateRef, this context will be passed to it.
|
|
5963
|
-
* @
|
|
6170
|
+
* @returns unknown
|
|
5964
6171
|
* @default undefined
|
|
5965
6172
|
*/
|
|
5966
6173
|
readonly indicatorCtx: _angular_core.InputSignal<unknown>;
|
|
5967
6174
|
/**
|
|
5968
6175
|
* Label for the step, which is required.
|
|
5969
6176
|
* Can be a string or a TemplateRef for custom labels.
|
|
5970
|
-
* @
|
|
6177
|
+
* @returns string | TemplateRef<any>
|
|
5971
6178
|
*/
|
|
5972
6179
|
readonly label: _angular_core.InputSignal<string | TemplateRef<any>>;
|
|
5973
6180
|
/**
|
|
5974
6181
|
* Context for the label template.
|
|
5975
6182
|
* If `label` is a TemplateRef, this context will be passed to it.
|
|
5976
|
-
* @
|
|
6183
|
+
* @returns unknown
|
|
5977
6184
|
* @default undefined
|
|
5978
6185
|
*/
|
|
5979
6186
|
readonly labelCtx: _angular_core.InputSignal<unknown>;
|
|
5980
6187
|
/**
|
|
5981
6188
|
* Whether the step is valid.
|
|
5982
6189
|
* This can be used to indicate if the step has been completed successfully.
|
|
5983
|
-
* @
|
|
6190
|
+
* @returns boolean | undefined | null
|
|
5984
6191
|
* @default undefined
|
|
5985
6192
|
*/
|
|
5986
6193
|
readonly valid: _angular_core.InputSignal<boolean | null | undefined>;
|
|
5987
6194
|
/**
|
|
5988
6195
|
* Whether the step is editable.
|
|
5989
6196
|
* If true, the step can be modified by the user.
|
|
5990
|
-
* @
|
|
6197
|
+
* @returns boolean
|
|
5991
6198
|
* @default true
|
|
5992
6199
|
* todo - implement editable functionality
|
|
5993
6200
|
*/
|
|
@@ -5995,7 +6202,7 @@ declare class StepperStepComponent {
|
|
|
5995
6202
|
/**
|
|
5996
6203
|
* Whether the step is optional.
|
|
5997
6204
|
* If true, the step does not need to be completed for the overall process to succeed.
|
|
5998
|
-
* @
|
|
6205
|
+
* @returns boolean
|
|
5999
6206
|
* @default false
|
|
6000
6207
|
* todo - implement optional functionality
|
|
6001
6208
|
*/
|
|
@@ -6028,21 +6235,21 @@ declare class StepperComponent {
|
|
|
6028
6235
|
readonly activeStepIndex: _angular_core.WritableSignal<number>;
|
|
6029
6236
|
/**
|
|
6030
6237
|
* Initial active step index
|
|
6031
|
-
* @
|
|
6238
|
+
* @returns number
|
|
6032
6239
|
* @default 0
|
|
6033
6240
|
*/
|
|
6034
6241
|
readonly defaultActiveStepIndex: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
6035
6242
|
/**
|
|
6036
6243
|
* Unique identifier for the Stepper component.
|
|
6037
6244
|
* If not provided, a default ID will be generated.
|
|
6038
|
-
* @
|
|
6245
|
+
* @returns string
|
|
6039
6246
|
* @default 'stepper-<nextId>'
|
|
6040
6247
|
*/
|
|
6041
6248
|
readonly idInput: _angular_core.InputSignal<string | undefined>;
|
|
6042
6249
|
/**
|
|
6043
6250
|
* Unique identifier for the Stepper component.
|
|
6044
6251
|
* If `idInput` is not provided, a default ID will be generated.
|
|
6045
|
-
* @
|
|
6252
|
+
* @returns string
|
|
6046
6253
|
*/
|
|
6047
6254
|
readonly id: _angular_core.Signal<string>;
|
|
6048
6255
|
/**
|
|
@@ -6051,7 +6258,7 @@ declare class StepperComponent {
|
|
|
6051
6258
|
* - `'vertical'`: Step indicators and content are stacked vertically.
|
|
6052
6259
|
*
|
|
6053
6260
|
* Choose `'vertical'` layout for mobile or narrow designs.
|
|
6054
|
-
* @
|
|
6261
|
+
* @returns 'horizontal' | 'vertical'
|
|
6055
6262
|
* @default 'horizontal'
|
|
6056
6263
|
*/
|
|
6057
6264
|
readonly layout: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
@@ -6059,7 +6266,7 @@ declare class StepperComponent {
|
|
|
6059
6266
|
* Enforces linear progression (cannot skip steps).
|
|
6060
6267
|
* - `true`: Users must complete steps sequentially.
|
|
6061
6268
|
* - `false`: Users can jump freely between steps.
|
|
6062
|
-
* @
|
|
6269
|
+
* @returns boolean
|
|
6063
6270
|
* @default true
|
|
6064
6271
|
*/
|
|
6065
6272
|
readonly linear: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -6068,38 +6275,38 @@ declare class StepperComponent {
|
|
|
6068
6275
|
* - `'vertical'` – Places the label below the indicator icon.
|
|
6069
6276
|
* - `'horizontal'` – Places the label beside the indicator icon (default).
|
|
6070
6277
|
* This prop has no effect when `layout="vertical"` is used.
|
|
6071
|
-
* @
|
|
6278
|
+
* @returns 'vertical' | 'horizontal'
|
|
6072
6279
|
* @default 'horizontal'
|
|
6073
6280
|
*/
|
|
6074
6281
|
readonly stepButtonLayout: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
6075
6282
|
/**
|
|
6076
6283
|
* Enforces validation of steps.
|
|
6077
6284
|
* Each step must be valid before advancing to the next.
|
|
6078
|
-
* @
|
|
6285
|
+
* @returns boolean
|
|
6079
6286
|
* @default false
|
|
6080
6287
|
*/
|
|
6081
6288
|
readonly validation: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6082
6289
|
/**
|
|
6083
6290
|
* Event fired when the user completes the last step of the Form Wizard.
|
|
6084
6291
|
* Use this to trigger a submit action or redirect after the final step.
|
|
6085
|
-
* @
|
|
6292
|
+
* @returns boolean
|
|
6086
6293
|
*/
|
|
6087
6294
|
readonly finished: _angular_core.OutputEmitterRef<boolean>;
|
|
6088
6295
|
/**
|
|
6089
6296
|
* Event fired when the user triggers the reset() action.
|
|
6090
6297
|
* Use this to reset or clear related form data.
|
|
6091
|
-
* @
|
|
6298
|
+
* @returns void
|
|
6092
6299
|
*/
|
|
6093
6300
|
readonly onReset: _angular_core.OutputEmitterRef<void>;
|
|
6094
6301
|
/**
|
|
6095
6302
|
* Indicates if the Stepper is currently resetting.
|
|
6096
6303
|
* This is set to `true` when the reset() method is called.
|
|
6097
|
-
* @
|
|
6304
|
+
* @returns boolean
|
|
6098
6305
|
*/
|
|
6099
6306
|
readonly resetting: _angular_core.WritableSignal<boolean>;
|
|
6100
6307
|
/**
|
|
6101
6308
|
* Event fired when the active step changes in the Angular Stepper component.
|
|
6102
|
-
* @
|
|
6309
|
+
* @returns number
|
|
6103
6310
|
*/
|
|
6104
6311
|
readonly activeStepIndexChange: _angular_core.OutputEmitterRef<number>;
|
|
6105
6312
|
/**
|
|
@@ -6113,13 +6320,13 @@ declare class StepperComponent {
|
|
|
6113
6320
|
/**
|
|
6114
6321
|
* Returns the number of steps in the Stepper.
|
|
6115
6322
|
* This is useful for determining how many steps are available.
|
|
6116
|
-
* @
|
|
6323
|
+
* @returns number
|
|
6117
6324
|
*/
|
|
6118
6325
|
readonly stepsCount: _angular_core.Signal<number>;
|
|
6119
6326
|
/**
|
|
6120
6327
|
* Indicates if the Stepper is currently finishing.
|
|
6121
6328
|
* This is set to `true` when the finish() method is called and all steps are valid.
|
|
6122
|
-
* @
|
|
6329
|
+
* @returns boolean
|
|
6123
6330
|
*/
|
|
6124
6331
|
readonly finishing: _angular_core.WritableSignal<boolean>;
|
|
6125
6332
|
private readonly stepButtons;
|
|
@@ -6176,7 +6383,7 @@ declare class StepperModule {
|
|
|
6176
6383
|
declare class TableColorDirective {
|
|
6177
6384
|
/**
|
|
6178
6385
|
* Use contextual color for tables, table rows or individual cells.
|
|
6179
|
-
* @
|
|
6386
|
+
* @returns Colors
|
|
6180
6387
|
*/
|
|
6181
6388
|
readonly color: _angular_core.InputSignal<string | undefined>;
|
|
6182
6389
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -6187,7 +6394,7 @@ declare class TableColorDirective {
|
|
|
6187
6394
|
declare class TableActiveDirective {
|
|
6188
6395
|
/**
|
|
6189
6396
|
* Highlight a table row or cell
|
|
6190
|
-
* @
|
|
6397
|
+
* @returns boolean
|
|
6191
6398
|
*/
|
|
6192
6399
|
readonly active: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6193
6400
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableActiveDirective, never>;
|
|
@@ -6204,39 +6411,39 @@ declare class TableDirective {
|
|
|
6204
6411
|
static ngAcceptInputType_stripedColumns: BooleanInput$1;
|
|
6205
6412
|
/**
|
|
6206
6413
|
* Set the vertical alignment.
|
|
6207
|
-
* @
|
|
6414
|
+
* @returns string
|
|
6208
6415
|
* @values 'bottom' | 'middle' | 'top'
|
|
6209
6416
|
*/
|
|
6210
6417
|
readonly align: _angular_core.InputSignal<"top" | "middle" | "bottom" | undefined>;
|
|
6211
6418
|
/**
|
|
6212
6419
|
* Sets the border color of the component to one of CoreUI’s themed colors.
|
|
6213
|
-
* @
|
|
6420
|
+
* @returns Colors
|
|
6214
6421
|
*/
|
|
6215
6422
|
readonly borderColor: _angular_core.InputSignal<string | undefined>;
|
|
6216
6423
|
/**
|
|
6217
6424
|
* Add borders on all sides of the table and cells.
|
|
6218
|
-
* @
|
|
6425
|
+
* @returns boolean
|
|
6219
6426
|
*/
|
|
6220
6427
|
readonly bordered: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6221
6428
|
/**
|
|
6222
6429
|
* Remove borders on all sides of the table and cells.
|
|
6223
|
-
* @
|
|
6430
|
+
* @returns boolean
|
|
6224
6431
|
*/
|
|
6225
6432
|
readonly borderless: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6226
6433
|
/**
|
|
6227
6434
|
* Put the `<caption>` on the top of the table.
|
|
6228
|
-
* @
|
|
6435
|
+
* @returns 'top'
|
|
6229
6436
|
* @values 'top'
|
|
6230
6437
|
*/
|
|
6231
6438
|
readonly caption: _angular_core.InputSignal<"top" | undefined>;
|
|
6232
6439
|
/**
|
|
6233
6440
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
6234
|
-
* @
|
|
6441
|
+
* @returns Colors
|
|
6235
6442
|
*/
|
|
6236
6443
|
readonly color: _angular_core.InputSignal<string | undefined>;
|
|
6237
6444
|
/**
|
|
6238
6445
|
* Enable a hover state on table rows within table body.
|
|
6239
|
-
* @
|
|
6446
|
+
* @returns boolean
|
|
6240
6447
|
*/
|
|
6241
6448
|
readonly hover: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6242
6449
|
/**
|
|
@@ -6246,17 +6453,17 @@ declare class TableDirective {
|
|
|
6246
6453
|
readonly responsive: _angular_core.InputSignal<boolean | Omit<string, "xs"> | undefined>;
|
|
6247
6454
|
/**
|
|
6248
6455
|
* Make table more compact by cutting all cell `padding` in half.
|
|
6249
|
-
* @
|
|
6456
|
+
* @returns boolean
|
|
6250
6457
|
*/
|
|
6251
6458
|
readonly small: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6252
6459
|
/**
|
|
6253
6460
|
* Add zebra-striping to any table row within the table body.
|
|
6254
|
-
* @
|
|
6461
|
+
* @returns boolean
|
|
6255
6462
|
*/
|
|
6256
6463
|
readonly striped: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6257
6464
|
/**
|
|
6258
6465
|
* Add zebra-striping to any table column.
|
|
6259
|
-
* @
|
|
6466
|
+
* @returns boolean
|
|
6260
6467
|
* @since 4.2.4
|
|
6261
6468
|
*/
|
|
6262
6469
|
readonly stripedColumns: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -6275,12 +6482,13 @@ declare class TabContentComponent implements AfterContentChecked, AfterContentIn
|
|
|
6275
6482
|
#private;
|
|
6276
6483
|
/**
|
|
6277
6484
|
* Set active tabPane index
|
|
6278
|
-
* @
|
|
6485
|
+
* @returns number
|
|
6279
6486
|
*/
|
|
6280
6487
|
set activeTabPaneIdx(value: number);
|
|
6281
6488
|
get activeTabPaneIdx(): number;
|
|
6282
6489
|
/**
|
|
6283
6490
|
* Event emitted on the active tab pane index change.
|
|
6491
|
+
* @returns number
|
|
6284
6492
|
*/
|
|
6285
6493
|
readonly activeTabPaneIdxChange: _angular_core.OutputEmitterRef<number>;
|
|
6286
6494
|
panes: QueryList<TabPaneComponent>;
|
|
@@ -6320,25 +6528,25 @@ declare class TabContentRefDirective implements OnChanges, OnDestroy {
|
|
|
6320
6528
|
constructor();
|
|
6321
6529
|
/**
|
|
6322
6530
|
* Template Ref
|
|
6323
|
-
* @
|
|
6531
|
+
* @returns TemplateRef
|
|
6324
6532
|
*/
|
|
6325
6533
|
tabContentRef: any;
|
|
6326
6534
|
/**
|
|
6327
6535
|
* Set active state of tab content
|
|
6328
|
-
* @
|
|
6536
|
+
* @returns boolean
|
|
6329
6537
|
* @default false
|
|
6330
6538
|
*/
|
|
6331
6539
|
set active(value: boolean);
|
|
6332
6540
|
get active(): boolean;
|
|
6333
6541
|
/**
|
|
6334
6542
|
* Set disabled state of tab content
|
|
6335
|
-
* @
|
|
6543
|
+
* @returns boolean
|
|
6336
6544
|
*/
|
|
6337
6545
|
set disabled(value: boolean);
|
|
6338
6546
|
get disabled(): boolean;
|
|
6339
6547
|
/**
|
|
6340
6548
|
* c-tab-pane index respectively
|
|
6341
|
-
* @
|
|
6549
|
+
* @returns number
|
|
6342
6550
|
*/
|
|
6343
6551
|
tabPaneIdx: number;
|
|
6344
6552
|
get hostClasses(): {
|
|
@@ -6393,17 +6601,17 @@ declare class TabsComponent {
|
|
|
6393
6601
|
readonly tabsService: TabsService;
|
|
6394
6602
|
/**
|
|
6395
6603
|
* The active item key.
|
|
6396
|
-
* @
|
|
6604
|
+
* @returns <string | number | undefined>
|
|
6397
6605
|
*/
|
|
6398
6606
|
readonly activeItemKey: _angular_core.ModelSignal<string | number | undefined>;
|
|
6399
6607
|
/**
|
|
6400
6608
|
* The id attribute
|
|
6401
|
-
* @
|
|
6609
|
+
* @returns string
|
|
6402
6610
|
*/
|
|
6403
6611
|
tabsId: string;
|
|
6404
6612
|
/**
|
|
6405
6613
|
* HTML id attribute.
|
|
6406
|
-
* @
|
|
6614
|
+
* @returns string
|
|
6407
6615
|
* @default `tabs-{n}`
|
|
6408
6616
|
*/
|
|
6409
6617
|
readonly id: _angular_core.InputSignal<string>;
|
|
@@ -6415,7 +6623,7 @@ declare class TabDirective implements FocusableOption, OnInit {
|
|
|
6415
6623
|
#private;
|
|
6416
6624
|
/**
|
|
6417
6625
|
* Disabled attribute
|
|
6418
|
-
* @
|
|
6626
|
+
* @returns boolean
|
|
6419
6627
|
* @default false
|
|
6420
6628
|
*/
|
|
6421
6629
|
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -6424,19 +6632,19 @@ declare class TabDirective implements FocusableOption, OnInit {
|
|
|
6424
6632
|
get disabled(): boolean;
|
|
6425
6633
|
/**
|
|
6426
6634
|
* Item key.
|
|
6427
|
-
* @
|
|
6635
|
+
* @returns string | number
|
|
6428
6636
|
* @required
|
|
6429
6637
|
*/
|
|
6430
6638
|
readonly itemKey: InputSignal<string | number>;
|
|
6431
6639
|
/**
|
|
6432
6640
|
* Element id attribute
|
|
6433
|
-
* @
|
|
6641
|
+
* @returns string
|
|
6434
6642
|
* @default undefined
|
|
6435
6643
|
*/
|
|
6436
6644
|
readonly id: InputSignal<string | undefined>;
|
|
6437
6645
|
/**
|
|
6438
6646
|
* aria-controls attribute
|
|
6439
|
-
* @
|
|
6647
|
+
* @returns string
|
|
6440
6648
|
* @default undefined
|
|
6441
6649
|
*/
|
|
6442
6650
|
readonly ariaControls: InputSignal<string | undefined>;
|
|
@@ -6456,13 +6664,13 @@ declare class TabsListComponent {
|
|
|
6456
6664
|
constructor();
|
|
6457
6665
|
/**
|
|
6458
6666
|
* Specify a layout type for component.
|
|
6459
|
-
* @
|
|
6667
|
+
* @returns 'fill' | 'justified' | undefined
|
|
6460
6668
|
* @default undefined
|
|
6461
6669
|
*/
|
|
6462
6670
|
readonly layout: InputSignal<'fill' | 'justified' | undefined>;
|
|
6463
6671
|
/**
|
|
6464
6672
|
* Set the variant to tabs, pills or underline.
|
|
6465
|
-
* @
|
|
6673
|
+
* @returns 'pills' | 'tabs' | 'underline' | 'underline-border' | undefined
|
|
6466
6674
|
* @default undefined
|
|
6467
6675
|
*/
|
|
6468
6676
|
readonly variant: InputSignal<'pills' | 'tabs' | 'underline' | 'underline-border' | undefined>;
|
|
@@ -6491,43 +6699,43 @@ declare class TabPanelComponent {
|
|
|
6491
6699
|
#private;
|
|
6492
6700
|
/**
|
|
6493
6701
|
* aria-labelledby attribute
|
|
6494
|
-
* @
|
|
6702
|
+
* @returns string
|
|
6495
6703
|
* @default undefined
|
|
6496
6704
|
*/
|
|
6497
6705
|
readonly ariaLabelledBy: _angular_core.InputSignal<string | undefined>;
|
|
6498
6706
|
/**
|
|
6499
6707
|
* Element id attribute
|
|
6500
|
-
* @
|
|
6708
|
+
* @returns string
|
|
6501
6709
|
* @default undefined
|
|
6502
6710
|
*/
|
|
6503
6711
|
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
6504
6712
|
/**
|
|
6505
6713
|
* Item key.
|
|
6506
|
-
* @
|
|
6714
|
+
* @returns string | number
|
|
6507
6715
|
* @required
|
|
6508
6716
|
*/
|
|
6509
6717
|
readonly itemKey: _angular_core.InputSignal<string | number>;
|
|
6510
6718
|
/**
|
|
6511
6719
|
* Element role.
|
|
6512
|
-
* @
|
|
6720
|
+
* @returns string
|
|
6513
6721
|
* @default 'tabpanel'
|
|
6514
6722
|
*/
|
|
6515
6723
|
readonly role: _angular_core.InputSignal<string>;
|
|
6516
6724
|
/**
|
|
6517
6725
|
* tabindex attribute.
|
|
6518
|
-
* @
|
|
6726
|
+
* @returns number
|
|
6519
6727
|
* @default 0
|
|
6520
6728
|
*/
|
|
6521
6729
|
readonly tabindex: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
6522
6730
|
/**
|
|
6523
6731
|
* Enable fade in transition.
|
|
6524
|
-
* @
|
|
6732
|
+
* @returns boolean
|
|
6525
6733
|
* @default true
|
|
6526
6734
|
*/
|
|
6527
6735
|
readonly transition: _angular_core.InputSignal<boolean>;
|
|
6528
6736
|
/**
|
|
6529
6737
|
* visible change output
|
|
6530
|
-
* @
|
|
6738
|
+
* @returns VisibleChangeEvent
|
|
6531
6739
|
*/
|
|
6532
6740
|
readonly visibleChange: _angular_core.OutputEmitterRef<VisibleChangeEvent>;
|
|
6533
6741
|
protected readonly show: _angular_core.WritableSignal<boolean>;
|
|
@@ -6577,20 +6785,20 @@ declare class TimePickerComponent implements OnChanges, OnInit, AfterViewInit, C
|
|
|
6577
6785
|
static ngAcceptInputType_visible: BooleanInput$1;
|
|
6578
6786
|
/**
|
|
6579
6787
|
* Toggle visibility or set the content of the cleaner button.
|
|
6580
|
-
* @
|
|
6788
|
+
* @returns boolean
|
|
6581
6789
|
* @default true
|
|
6582
6790
|
*/
|
|
6583
6791
|
readonly cleaner: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6584
6792
|
/**
|
|
6585
6793
|
* Sets DateTime format options including timeZone
|
|
6586
|
-
* @
|
|
6794
|
+
* @returns DateTimeFormatOptions
|
|
6587
6795
|
* @default {}
|
|
6588
6796
|
* @note The date object doesn't store timeZone, it keeps the local timezone of the browser, regardless if you parsed UTC dates.
|
|
6589
6797
|
*/
|
|
6590
6798
|
readonly dateTimeFormatOptions: _angular_core.InputSignal<DateTimeFormatOptions>;
|
|
6591
6799
|
/**
|
|
6592
6800
|
* Toggle the disabled state for the component.
|
|
6593
|
-
* @
|
|
6801
|
+
* @returns boolean
|
|
6594
6802
|
* @default false
|
|
6595
6803
|
*/
|
|
6596
6804
|
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -6598,61 +6806,61 @@ declare class TimePickerComponent implements OnChanges, OnInit, AfterViewInit, C
|
|
|
6598
6806
|
readonly disabledEffect: _angular_core.EffectRef;
|
|
6599
6807
|
/**
|
|
6600
6808
|
* Filter available hours to pick.
|
|
6601
|
-
* @
|
|
6809
|
+
* @returns (value: number) => boolean;
|
|
6602
6810
|
* @default undefined
|
|
6603
6811
|
*/
|
|
6604
6812
|
readonly filterHours: _angular_core.InputSignal<((value: number) => boolean) | undefined>;
|
|
6605
6813
|
/**
|
|
6606
6814
|
* Filter available minutes to pick.
|
|
6607
|
-
* @
|
|
6815
|
+
* @returns (value: number) => boolean;
|
|
6608
6816
|
* @default undefined
|
|
6609
6817
|
*/
|
|
6610
6818
|
readonly filterMinutes: _angular_core.InputSignal<((value: number) => boolean) | undefined>;
|
|
6611
6819
|
/**
|
|
6612
6820
|
* Filter available seconds to pick.
|
|
6613
|
-
* @
|
|
6821
|
+
* @returns (value: number) => boolean;
|
|
6614
6822
|
* @default undefined
|
|
6615
6823
|
*/
|
|
6616
6824
|
readonly filterSeconds: _angular_core.InputSignal<((value: number) => boolean) | undefined>;
|
|
6617
6825
|
/**
|
|
6618
6826
|
* Toggle visibility or set the content of the input indicator.
|
|
6619
|
-
* @
|
|
6827
|
+
* @returns boolean
|
|
6620
6828
|
* @default true
|
|
6621
6829
|
*/
|
|
6622
6830
|
readonly indicator: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6623
6831
|
/**
|
|
6624
6832
|
* Toggle the readonly state for the component.
|
|
6625
|
-
* @
|
|
6833
|
+
* @returns boolean
|
|
6626
6834
|
* @default false
|
|
6627
6835
|
*/
|
|
6628
6836
|
readonly inputReadOnly: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6629
6837
|
/**
|
|
6630
6838
|
* Sets the default locale for components. If not set, it is inherited from the browser.
|
|
6631
|
-
* @
|
|
6839
|
+
* @returns string
|
|
6632
6840
|
* @default default
|
|
6633
6841
|
*/
|
|
6634
6842
|
readonly locale: _angular_core.InputSignal<string>;
|
|
6635
6843
|
/**
|
|
6636
6844
|
* Specifies a short hint visible in time input.
|
|
6637
|
-
* @
|
|
6845
|
+
* @returns string
|
|
6638
6846
|
* @default 'Select time'
|
|
6639
6847
|
*/
|
|
6640
6848
|
readonly placeholder: _angular_core.InputSignal<string>;
|
|
6641
6849
|
/**
|
|
6642
6850
|
* Toggle seconds visibility.
|
|
6643
|
-
* @
|
|
6851
|
+
* @returns boolean
|
|
6644
6852
|
* @default false
|
|
6645
6853
|
*/
|
|
6646
6854
|
readonly seconds: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6647
6855
|
/**
|
|
6648
6856
|
* Size the component small or large.
|
|
6649
|
-
* @
|
|
6857
|
+
* @returns 'sm' | 'lg' | undefined
|
|
6650
6858
|
* @default undefined
|
|
6651
6859
|
*/
|
|
6652
6860
|
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
6653
6861
|
/**
|
|
6654
6862
|
* Initially selected time.
|
|
6655
|
-
* @
|
|
6863
|
+
* @returns Date | string | null | number
|
|
6656
6864
|
* @default undefined
|
|
6657
6865
|
*/
|
|
6658
6866
|
set time(value: Date | string | undefined);
|
|
@@ -6661,19 +6869,19 @@ declare class TimePickerComponent implements OnChanges, OnInit, AfterViewInit, C
|
|
|
6661
6869
|
private _timeInternal?;
|
|
6662
6870
|
/**
|
|
6663
6871
|
* Set the time picker variant to a roll or select.
|
|
6664
|
-
* @
|
|
6872
|
+
* @returns 'roll' | 'select'
|
|
6665
6873
|
* @default 'roll'
|
|
6666
6874
|
*/
|
|
6667
6875
|
readonly variant: _angular_core.InputSignal<"select" | "roll">;
|
|
6668
6876
|
/**
|
|
6669
6877
|
* Toggle visual validation feedback.
|
|
6670
|
-
* @
|
|
6878
|
+
* @returns boolean | undefined
|
|
6671
6879
|
* @default undefined
|
|
6672
6880
|
*/
|
|
6673
6881
|
readonly valid: _angular_core.InputSignal<boolean | undefined>;
|
|
6674
6882
|
/**
|
|
6675
6883
|
* Toggle the visibility of dropdown timepicker menu component.
|
|
6676
|
-
* @
|
|
6884
|
+
* @returns boolean
|
|
6677
6885
|
* @default false
|
|
6678
6886
|
*/
|
|
6679
6887
|
readonly visible: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -6781,13 +6989,13 @@ declare class ToasterComponent implements OnInit {
|
|
|
6781
6989
|
toastsDynamic: ComponentRef<any>[];
|
|
6782
6990
|
/**
|
|
6783
6991
|
* Toaster placement
|
|
6784
|
-
* @
|
|
6992
|
+
* @returns TToasterPlacement
|
|
6785
6993
|
*/
|
|
6786
6994
|
readonly placementInput: _angular_core.InputSignal<string>;
|
|
6787
6995
|
get placement(): string;
|
|
6788
6996
|
/**
|
|
6789
6997
|
* Toaster position
|
|
6790
|
-
* @
|
|
6998
|
+
* @returns (string | 'absolute' | 'fixed' | 'static')
|
|
6791
6999
|
*/
|
|
6792
7000
|
readonly position: _angular_core.InputSignal<string>;
|
|
6793
7001
|
readonly toasterHost: _angular_core.Signal<ToasterHostDirective>;
|
|
@@ -6826,37 +7034,45 @@ declare class ToastComponent implements OnInit, OnDestroy {
|
|
|
6826
7034
|
readonly hostElement: ElementRef<any>;
|
|
6827
7035
|
readonly renderer: Renderer2;
|
|
6828
7036
|
readonly toasterService: ToasterService;
|
|
7037
|
+
/**
|
|
7038
|
+
* Marks the toast as dynamically created by `ToasterService`, rather than declared in the template.
|
|
7039
|
+
* @returns boolean
|
|
7040
|
+
*/
|
|
6829
7041
|
readonly dynamic: _angular_core.InputSignal<boolean | undefined>;
|
|
7042
|
+
/**
|
|
7043
|
+
* Placement of the toast within its toaster, set by `ToasterComponent`.
|
|
7044
|
+
* @returns TToasterPlacement
|
|
7045
|
+
*/
|
|
6830
7046
|
readonly placementInput: _angular_core.InputSignal<string | undefined>;
|
|
6831
7047
|
get placement(): string | undefined;
|
|
6832
7048
|
/**
|
|
6833
7049
|
* Auto hide the toast.
|
|
6834
|
-
* @
|
|
7050
|
+
* @returns boolean
|
|
6835
7051
|
*/
|
|
6836
7052
|
readonly autohide: _angular_core.InputSignal<boolean>;
|
|
6837
7053
|
/**
|
|
6838
7054
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
6839
|
-
* @
|
|
7055
|
+
* @returns Colors
|
|
6840
7056
|
*/
|
|
6841
7057
|
readonly color: _angular_core.InputSignal<string>;
|
|
6842
7058
|
/**
|
|
6843
7059
|
* Delay hiding the toast (ms).
|
|
6844
|
-
* @
|
|
7060
|
+
* @returns number
|
|
6845
7061
|
*/
|
|
6846
7062
|
readonly delay: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
6847
7063
|
/**
|
|
6848
7064
|
* Apply fade transition to the toast.
|
|
6849
|
-
* @
|
|
7065
|
+
* @returns boolean
|
|
6850
7066
|
*/
|
|
6851
7067
|
readonly fade: _angular_core.InputSignal<boolean>;
|
|
6852
7068
|
/**
|
|
6853
7069
|
* ARIA role attribute.
|
|
6854
|
-
* @
|
|
7070
|
+
* @returns string
|
|
6855
7071
|
*/
|
|
6856
7072
|
readonly role: _angular_core.InputSignal<string>;
|
|
6857
7073
|
/**
|
|
6858
7074
|
* Toggle the visibility of component.
|
|
6859
|
-
* @
|
|
7075
|
+
* @returns boolean
|
|
6860
7076
|
*/
|
|
6861
7077
|
readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6862
7078
|
set visible(value: boolean);
|
|
@@ -6866,13 +7082,13 @@ declare class ToastComponent implements OnInit, OnDestroy {
|
|
|
6866
7082
|
*/
|
|
6867
7083
|
readonly index: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
6868
7084
|
/**
|
|
6869
|
-
* Event emitted on visibility change
|
|
6870
|
-
* @
|
|
7085
|
+
* Event emitted on visibility change
|
|
7086
|
+
* @returns boolean
|
|
6871
7087
|
*/
|
|
6872
7088
|
readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
|
|
6873
7089
|
/**
|
|
6874
|
-
* Event emitted on timer tick
|
|
6875
|
-
* @
|
|
7090
|
+
* Event emitted on timer tick
|
|
7091
|
+
* @returns number
|
|
6876
7092
|
*/
|
|
6877
7093
|
readonly timer: _angular_core.OutputEmitterRef<number>;
|
|
6878
7094
|
private timerId;
|
|
@@ -6911,7 +7127,7 @@ declare class ToastHeaderComponent {
|
|
|
6911
7127
|
readonly toast: _angular_core.WritableSignal<ToastComponent | undefined>;
|
|
6912
7128
|
/**
|
|
6913
7129
|
* Add close button to a toast header
|
|
6914
|
-
* @
|
|
7130
|
+
* @returns boolean
|
|
6915
7131
|
*/
|
|
6916
7132
|
readonly closeButton: _angular_core.InputSignal<boolean>;
|
|
6917
7133
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastHeaderComponent, never>;
|
|
@@ -6922,7 +7138,7 @@ declare class ToastCloseDirective {
|
|
|
6922
7138
|
#private;
|
|
6923
7139
|
/**
|
|
6924
7140
|
* Toast to close.
|
|
6925
|
-
* @
|
|
7141
|
+
* @returns ToastComponent
|
|
6926
7142
|
*/
|
|
6927
7143
|
readonly cToastClose: _angular_core.InputSignal<ToastComponent | undefined>;
|
|
6928
7144
|
toggleOpen($event: MouseEvent): void;
|
|
@@ -6941,15 +7157,24 @@ declare class TooltipComponent implements OnDestroy {
|
|
|
6941
7157
|
readonly renderer: Renderer2;
|
|
6942
7158
|
/**
|
|
6943
7159
|
* Content of tooltip
|
|
6944
|
-
* @
|
|
7160
|
+
* @returns {string | TemplateRef}
|
|
6945
7161
|
*/
|
|
6946
7162
|
readonly content: _angular_core.InputSignal<string | TemplateRef<any>>;
|
|
6947
7163
|
/**
|
|
6948
7164
|
* Toggle the visibility of popover component.
|
|
6949
|
-
* @
|
|
7165
|
+
* @returns boolean
|
|
6950
7166
|
*/
|
|
6951
7167
|
readonly visible: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
7168
|
+
/**
|
|
7169
|
+
* The `id` HTML attribute of the tooltip.
|
|
7170
|
+
* @returns string
|
|
7171
|
+
*/
|
|
6952
7172
|
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
7173
|
+
/**
|
|
7174
|
+
* Default role for tooltip.
|
|
7175
|
+
* @returns string
|
|
7176
|
+
* @default 'tooltip'
|
|
7177
|
+
*/
|
|
6953
7178
|
readonly role: _angular_core.InputSignal<string>;
|
|
6954
7179
|
readonly viewContainerRef: _angular_core.Signal<ViewContainerRef | undefined>;
|
|
6955
7180
|
private textNode;
|
|
@@ -6965,12 +7190,12 @@ declare class TooltipDirective implements OnDestroy, OnInit, AfterViewInit {
|
|
|
6965
7190
|
#private;
|
|
6966
7191
|
/**
|
|
6967
7192
|
* Content of tooltip
|
|
6968
|
-
* @
|
|
7193
|
+
* @returns {string | TemplateRef}
|
|
6969
7194
|
*/
|
|
6970
7195
|
readonly content: _angular_core.InputSignal<string | TemplateRef<any> | undefined>;
|
|
6971
7196
|
/**
|
|
6972
7197
|
* Optional popper Options object, takes precedence over cPopoverPlacement prop
|
|
6973
|
-
* @
|
|
7198
|
+
* @returns Partial<Options>
|
|
6974
7199
|
*/
|
|
6975
7200
|
readonly popperOptions: _angular_core.InputSignal<Partial<Options>>;
|
|
6976
7201
|
readonly popperOptionsComputed: _angular_core.Signal<{
|
|
@@ -6999,7 +7224,7 @@ declare class TooltipDirective implements OnDestroy, OnInit, AfterViewInit {
|
|
|
6999
7224
|
readonly trigger: _angular_core.InputSignal<Triggers | Triggers[]>;
|
|
7000
7225
|
/**
|
|
7001
7226
|
* Toggle the visibility of tooltip component.
|
|
7002
|
-
* @
|
|
7227
|
+
* @returns boolean
|
|
7003
7228
|
*/
|
|
7004
7229
|
readonly visible: _angular_core.ModelSignal<boolean>;
|
|
7005
7230
|
get ariaDescribedBy(): string | null;
|
|
@@ -7032,7 +7257,7 @@ declare class TooltipModule {
|
|
|
7032
7257
|
declare class AlignDirective {
|
|
7033
7258
|
/**
|
|
7034
7259
|
* Set vertical alignment of inline, inline-block, inline-table, and table cell elements
|
|
7035
|
-
* @
|
|
7260
|
+
* @returns Alignment
|
|
7036
7261
|
*/
|
|
7037
7262
|
readonly align: _angular_core.InputSignal<Alignment | undefined>;
|
|
7038
7263
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -7047,7 +7272,7 @@ declare class BgColorDirective {
|
|
|
7047
7272
|
readonly cBgColor: _angular_core.InputSignal<string>;
|
|
7048
7273
|
/**
|
|
7049
7274
|
* Add linear gradient as background image to the backgrounds.
|
|
7050
|
-
* @
|
|
7275
|
+
* @returns boolean
|
|
7051
7276
|
*/
|
|
7052
7277
|
readonly gradient: _angular_core.InputSignal<boolean | undefined>;
|
|
7053
7278
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -7073,7 +7298,7 @@ interface IBorderElement {
|
|
|
7073
7298
|
declare class BorderDirective {
|
|
7074
7299
|
/**
|
|
7075
7300
|
* Add or remove an element’s borders
|
|
7076
|
-
* @
|
|
7301
|
+
* @returns Border
|
|
7077
7302
|
*/
|
|
7078
7303
|
readonly cBorder: _angular_core.InputSignal<Border>;
|
|
7079
7304
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -7097,7 +7322,7 @@ type RoundedElement = 'top' | 'end' | 'bottom' | 'start' | 'circle' | 'pill';
|
|
|
7097
7322
|
declare class RoundedDirective {
|
|
7098
7323
|
/**
|
|
7099
7324
|
* Set border radius variant and radius size
|
|
7100
|
-
* @
|
|
7325
|
+
* @returns Rounded
|
|
7101
7326
|
*/
|
|
7102
7327
|
readonly cRounded: _angular_core.InputSignal<Rounded>;
|
|
7103
7328
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -7108,6 +7333,11 @@ declare class RoundedDirective {
|
|
|
7108
7333
|
declare class ShadowOnScrollDirective {
|
|
7109
7334
|
#private;
|
|
7110
7335
|
constructor();
|
|
7336
|
+
/**
|
|
7337
|
+
* Shadow size applied to the host element once the document has been scrolled; `false`/`'none'` disables it.
|
|
7338
|
+
* @returns 'sm' | 'lg' | 'none' | boolean
|
|
7339
|
+
* @default true
|
|
7340
|
+
*/
|
|
7111
7341
|
readonly cShadowOnScroll: _angular_core.InputSignal<boolean | "sm" | "lg" | "none">;
|
|
7112
7342
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShadowOnScrollDirective, never>;
|
|
7113
7343
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ShadowOnScrollDirective, "[cShadowOnScroll]", ["cShadowOnScroll"], { "cShadowOnScroll": { "alias": "cShadowOnScroll"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -7120,23 +7350,22 @@ declare class UtilitiesModule {
|
|
|
7120
7350
|
}
|
|
7121
7351
|
|
|
7122
7352
|
declare class WidgetStatAComponent extends CardComponent {
|
|
7123
|
-
#private;
|
|
7124
7353
|
/**
|
|
7125
7354
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
7126
|
-
* @
|
|
7355
|
+
* @returns Colors
|
|
7127
7356
|
*/
|
|
7128
7357
|
/**
|
|
7129
7358
|
* Title of the widget to display
|
|
7130
|
-
* @
|
|
7359
|
+
* @returns string
|
|
7131
7360
|
*/
|
|
7132
7361
|
readonly title: InputSignal<string | undefined>;
|
|
7133
7362
|
/**
|
|
7134
7363
|
* Value for your widget to display
|
|
7135
|
-
* @
|
|
7364
|
+
* @returns string
|
|
7136
7365
|
*/
|
|
7137
7366
|
readonly value: InputSignal<string | undefined>;
|
|
7138
|
-
templates: Record<string, TemplateRef<any>>;
|
|
7139
7367
|
readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
7368
|
+
readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
|
|
7140
7369
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
7141
7370
|
get bodyClasses(): {
|
|
7142
7371
|
'pb-0': boolean;
|
|
@@ -7152,31 +7381,31 @@ declare class WidgetStatBComponent extends CardComponent {
|
|
|
7152
7381
|
constructor();
|
|
7153
7382
|
/**
|
|
7154
7383
|
* Sets the color context of the component to one of CoreUI themed colors.
|
|
7155
|
-
* @
|
|
7384
|
+
* @returns Colors
|
|
7156
7385
|
*/
|
|
7157
7386
|
/**
|
|
7158
7387
|
* Sets the text-color context of the component to one of CoreUI themed colors.
|
|
7159
7388
|
* via TextColorDirective
|
|
7160
|
-
* @
|
|
7389
|
+
* @returns TextColors
|
|
7161
7390
|
*/
|
|
7162
7391
|
/**
|
|
7163
7392
|
* Title of the widget to display
|
|
7164
|
-
* @
|
|
7393
|
+
* @returns string
|
|
7165
7394
|
*/
|
|
7166
7395
|
readonly title: InputSignal<string | undefined>;
|
|
7167
7396
|
/**
|
|
7168
7397
|
* Helper text for your widget.
|
|
7169
|
-
* @
|
|
7398
|
+
* @returns string
|
|
7170
7399
|
*/
|
|
7171
7400
|
readonly text: InputSignal<string | undefined>;
|
|
7172
7401
|
/**
|
|
7173
7402
|
* Value for your widget to display
|
|
7174
|
-
* @
|
|
7403
|
+
* @returns string
|
|
7175
7404
|
*/
|
|
7176
7405
|
readonly value: InputSignal<string | undefined>;
|
|
7177
7406
|
/**
|
|
7178
7407
|
* Invert colors from their default dark shade.
|
|
7179
|
-
* @
|
|
7408
|
+
* @returns boolean
|
|
7180
7409
|
*/
|
|
7181
7410
|
readonly inverse: InputSignalWithTransform<boolean, unknown>;
|
|
7182
7411
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -7185,30 +7414,29 @@ declare class WidgetStatBComponent extends CardComponent {
|
|
|
7185
7414
|
}
|
|
7186
7415
|
|
|
7187
7416
|
declare class WidgetStatCComponent extends CardComponent {
|
|
7188
|
-
#private;
|
|
7189
7417
|
constructor();
|
|
7190
7418
|
/**
|
|
7191
7419
|
* Icon for your component.
|
|
7192
|
-
* @
|
|
7420
|
+
* @returns string
|
|
7193
7421
|
*/
|
|
7194
7422
|
readonly icon: _angular_core.InputSignal<string | undefined>;
|
|
7195
7423
|
/**
|
|
7196
7424
|
* Title of the widget to display
|
|
7197
|
-
* @
|
|
7425
|
+
* @returns string
|
|
7198
7426
|
*/
|
|
7199
7427
|
readonly title: _angular_core.InputSignal<string | undefined>;
|
|
7200
7428
|
/**
|
|
7201
7429
|
* Value for your widget to display
|
|
7202
|
-
* @
|
|
7430
|
+
* @returns string|number
|
|
7203
7431
|
*/
|
|
7204
7432
|
readonly value: _angular_core.InputSignal<string | number | undefined>;
|
|
7205
7433
|
/**
|
|
7206
7434
|
* Invert colors from their default dark shade.
|
|
7207
|
-
* @
|
|
7435
|
+
* @returns boolean
|
|
7208
7436
|
*/
|
|
7209
7437
|
readonly inverse: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
7210
|
-
templates: Record<string, TemplateRef<any>>;
|
|
7211
7438
|
readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
7439
|
+
readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
|
|
7212
7440
|
readonly hostExtendedClass: _angular_core.Signal<Record<string, boolean>>;
|
|
7213
7441
|
readonly titleClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
7214
7442
|
readonly valueClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -7224,11 +7452,11 @@ type WidgetStatDValue = {
|
|
|
7224
7452
|
declare class WidgetStatDComponent extends CardComponent {
|
|
7225
7453
|
/**
|
|
7226
7454
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
7227
|
-
* @
|
|
7455
|
+
* @returns Colors
|
|
7228
7456
|
*/
|
|
7229
7457
|
/**
|
|
7230
7458
|
* Values and subtitles for your component.
|
|
7231
|
-
* @
|
|
7459
|
+
* @returns WidgetStatDValue
|
|
7232
7460
|
*/
|
|
7233
7461
|
readonly values: _angular_core.InputSignal<WidgetStatDValue[] | undefined>;
|
|
7234
7462
|
readonly headerClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -7240,12 +7468,12 @@ declare class WidgetStatEComponent extends CardComponent {
|
|
|
7240
7468
|
constructor();
|
|
7241
7469
|
/**
|
|
7242
7470
|
* Title of the widget to display
|
|
7243
|
-
* @
|
|
7471
|
+
* @returns string
|
|
7244
7472
|
*/
|
|
7245
7473
|
readonly title: _angular_core.InputSignal<string | undefined>;
|
|
7246
7474
|
/**
|
|
7247
7475
|
* Value for your widget to display
|
|
7248
|
-
* @
|
|
7476
|
+
* @returns string | number
|
|
7249
7477
|
*/
|
|
7250
7478
|
readonly value: _angular_core.InputSignal<string | number | undefined>;
|
|
7251
7479
|
readonly titleClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -7254,42 +7482,41 @@ declare class WidgetStatEComponent extends CardComponent {
|
|
|
7254
7482
|
}
|
|
7255
7483
|
|
|
7256
7484
|
declare class WidgetStatFComponent extends CardComponent {
|
|
7257
|
-
#private;
|
|
7258
7485
|
/**
|
|
7259
7486
|
* Sets the color context of the component to one of CoreUI’s themed colors.
|
|
7260
|
-
* @
|
|
7487
|
+
* @returns Colors
|
|
7261
7488
|
*/
|
|
7262
7489
|
/**
|
|
7263
7490
|
* Sets the text-color context of the component to one of CoreUI’s themed colors.
|
|
7264
|
-
* @
|
|
7491
|
+
* @returns Colors
|
|
7265
7492
|
*/
|
|
7266
7493
|
/**
|
|
7267
7494
|
* Footer for your widget
|
|
7268
|
-
* @
|
|
7495
|
+
* @returns string
|
|
7269
7496
|
*/
|
|
7270
7497
|
readonly footer: _angular_core.InputSignal<string | undefined>;
|
|
7271
7498
|
/**
|
|
7272
7499
|
* Icon for your widget
|
|
7273
|
-
* @
|
|
7500
|
+
* @returns string
|
|
7274
7501
|
*/
|
|
7275
7502
|
readonly icon: _angular_core.InputSignal<string | undefined>;
|
|
7276
7503
|
/**
|
|
7277
7504
|
* Set padding of your component.
|
|
7278
|
-
* @
|
|
7505
|
+
* @returns boolean
|
|
7279
7506
|
*/
|
|
7280
7507
|
readonly padding: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
7281
7508
|
/**
|
|
7282
7509
|
* Title of the widget to display
|
|
7283
|
-
* @
|
|
7510
|
+
* @returns string
|
|
7284
7511
|
*/
|
|
7285
7512
|
readonly title: _angular_core.InputSignal<string | undefined>;
|
|
7286
7513
|
/**
|
|
7287
7514
|
* Value for your widget to display
|
|
7288
|
-
* @
|
|
7515
|
+
* @returns string
|
|
7289
7516
|
*/
|
|
7290
7517
|
readonly value: _angular_core.InputSignal<string | number | undefined>;
|
|
7291
|
-
templates: Record<string, TemplateRef<any>>;
|
|
7292
7518
|
readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
|
|
7519
|
+
readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
|
|
7293
7520
|
readonly cardBodyClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
7294
7521
|
readonly iconClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
7295
7522
|
readonly titleClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
@@ -7304,5 +7531,5 @@ declare class WidgetModule {
|
|
|
7304
7531
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<WidgetModule>;
|
|
7305
7532
|
}
|
|
7306
7533
|
|
|
7307
|
-
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 };
|
|
7308
|
-
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 };
|
|
7534
|
+
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 };
|
|
7535
|
+
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 };
|