cps-ui-kit 21.26.0 → 21.27.0
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/cps-ui-kit.mjs +623 -290
- package/fesm2022/cps-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cps-ui-kit.d.ts +147 -22
package/package.json
CHANGED
package/types/cps-ui-kit.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnChanges, InjectionToken, PipeTransform, OnDestroy, AfterViewInit, ElementRef, Renderer2, ChangeDetectorRef, EventEmitter, NgZone,
|
|
2
|
+
import { OnInit, OnChanges, SimpleChanges, InjectionToken, PipeTransform, OnDestroy, AfterViewInit, ElementRef, Renderer2, ChangeDetectorRef, EventEmitter, NgZone, QueryList, TemplateRef, AfterContentInit, AfterViewChecked, ComponentRef, ViewContainerRef, Type, ApplicationRef, EnvironmentInjector, Injector, Signal } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor, NgControl, FormGroup } from '@angular/forms';
|
|
4
4
|
import { AnimationEvent, AnimationBuilder } from '@angular/animations';
|
|
5
5
|
import { OverlayService, SortEvent, FilterMetadata, SelectItem, TreeNode } from 'primeng/api';
|
|
@@ -32,8 +32,7 @@ type iconSizeType = number | string | 'fill' | 'xsmall' | 'small' | 'normal' | '
|
|
|
32
32
|
* CpsIconComponent is a component that is used for icons.
|
|
33
33
|
* @group Components
|
|
34
34
|
*/
|
|
35
|
-
declare class CpsIconComponent implements OnChanges {
|
|
36
|
-
private document;
|
|
35
|
+
declare class CpsIconComponent implements OnInit, OnChanges {
|
|
37
36
|
/**
|
|
38
37
|
* Name of the icon.
|
|
39
38
|
* @group Props
|
|
@@ -49,15 +48,31 @@ declare class CpsIconComponent implements OnChanges {
|
|
|
49
48
|
* @group Props
|
|
50
49
|
*/
|
|
51
50
|
color: string;
|
|
51
|
+
/**
|
|
52
|
+
* Accessible label for the icon.
|
|
53
|
+
* When provided the icon is treated as informative (role="img", aria-hidden removed).
|
|
54
|
+
* When omitted the icon is treated as decorative (aria-hidden="true", role removed).
|
|
55
|
+
* @group Props
|
|
56
|
+
* @default ''
|
|
57
|
+
*/
|
|
58
|
+
set ariaLabel(v: string);
|
|
59
|
+
get ariaLabel(): string;
|
|
60
|
+
private _ariaLabel;
|
|
61
|
+
hasAriaLabel(): boolean;
|
|
52
62
|
iconColor: string;
|
|
53
63
|
url: string;
|
|
54
64
|
cvtSize: string;
|
|
55
65
|
classesList: string[];
|
|
56
|
-
|
|
57
|
-
|
|
66
|
+
private _document;
|
|
67
|
+
private _elementRef;
|
|
68
|
+
private _renderer;
|
|
69
|
+
private _staticAriaLabel;
|
|
70
|
+
ngOnInit(): void;
|
|
71
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
72
|
+
private _syncAriaLabel;
|
|
58
73
|
setClasses(): void;
|
|
59
74
|
static ɵfac: i0.ɵɵFactoryDeclaration<CpsIconComponent, never>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CpsIconComponent, "cps-icon", never, { "icon": { "alias": "icon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
75
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CpsIconComponent, "cps-icon", never, { "icon": { "alias": "icon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
61
76
|
}
|
|
62
77
|
|
|
63
78
|
declare class LabelByValuePipe implements PipeTransform {
|
|
@@ -1825,8 +1840,7 @@ declare class CpsInfoCircleComponent {
|
|
|
1825
1840
|
* CpsLoaderComponent is a fetch data indicator.
|
|
1826
1841
|
* @group Components
|
|
1827
1842
|
*/
|
|
1828
|
-
declare class CpsLoaderComponent implements OnInit {
|
|
1829
|
-
private document;
|
|
1843
|
+
declare class CpsLoaderComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy {
|
|
1830
1844
|
/**
|
|
1831
1845
|
* Option for loader component to take up the whole screen.
|
|
1832
1846
|
* @group Props
|
|
@@ -1847,19 +1861,39 @@ declare class CpsLoaderComponent implements OnInit {
|
|
|
1847
1861
|
* @group Props
|
|
1848
1862
|
*/
|
|
1849
1863
|
showLabel: boolean;
|
|
1864
|
+
/**
|
|
1865
|
+
* Text shown visually when showLabel is true.
|
|
1866
|
+
* @group Props
|
|
1867
|
+
*/
|
|
1868
|
+
label: string;
|
|
1869
|
+
/**
|
|
1870
|
+
* Text announced by screen readers. Used when showLabel is false or label
|
|
1871
|
+
* is empty.
|
|
1872
|
+
* @group Props
|
|
1873
|
+
*/
|
|
1874
|
+
ariaLabel: string;
|
|
1875
|
+
/**
|
|
1876
|
+
* Text announced by screen readers when the loader is destroyed.
|
|
1877
|
+
* @group Props
|
|
1878
|
+
*/
|
|
1879
|
+
doneAriaLabel: string;
|
|
1850
1880
|
backgroundColor: string;
|
|
1851
|
-
|
|
1881
|
+
cvtLabelColor: string;
|
|
1882
|
+
private _document;
|
|
1883
|
+
private _announcer;
|
|
1852
1884
|
ngOnInit(): void;
|
|
1885
|
+
ngAfterViewInit(): void;
|
|
1886
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1887
|
+
ngOnDestroy(): void;
|
|
1853
1888
|
static ɵfac: i0.ɵɵFactoryDeclaration<CpsLoaderComponent, never>;
|
|
1854
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CpsLoaderComponent, "cps-loader", never, { "fullScreen": { "alias": "fullScreen"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "labelColor": { "alias": "labelColor"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
1889
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CpsLoaderComponent, "cps-loader", never, { "fullScreen": { "alias": "fullScreen"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "labelColor": { "alias": "labelColor"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "doneAriaLabel": { "alias": "doneAriaLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
1855
1890
|
}
|
|
1856
1891
|
|
|
1857
1892
|
/**
|
|
1858
1893
|
* CpsPaginatorComponent is a generic component to display content in paged format.
|
|
1859
1894
|
* @group Components
|
|
1860
1895
|
*/
|
|
1861
|
-
declare class CpsPaginatorComponent implements OnInit {
|
|
1862
|
-
private document;
|
|
1896
|
+
declare class CpsPaginatorComponent implements OnInit, OnChanges {
|
|
1863
1897
|
/**
|
|
1864
1898
|
* Zero-relative number of the first row to be displayed.
|
|
1865
1899
|
* @group Props
|
|
@@ -1895,6 +1929,13 @@ declare class CpsPaginatorComponent implements OnInit {
|
|
|
1895
1929
|
* @group Props
|
|
1896
1930
|
*/
|
|
1897
1931
|
resetPageOnRowsChange: boolean;
|
|
1932
|
+
/**
|
|
1933
|
+
* Accessible label for the paginator component.
|
|
1934
|
+
* Falls back to "Pagination" when empty value is provided.
|
|
1935
|
+
* @group Props
|
|
1936
|
+
* @default Pagination
|
|
1937
|
+
*/
|
|
1938
|
+
ariaLabel: string;
|
|
1898
1939
|
/**
|
|
1899
1940
|
* Callback to invoke when page changes, the event object contains information about the new state.
|
|
1900
1941
|
* @param {any} any - page changed.
|
|
@@ -1902,16 +1943,34 @@ declare class CpsPaginatorComponent implements OnInit {
|
|
|
1902
1943
|
*/
|
|
1903
1944
|
pageChanged: EventEmitter<any>;
|
|
1904
1945
|
paginator: Paginator;
|
|
1946
|
+
cvtBackgroundColor: string;
|
|
1947
|
+
computedAriaLabel: string;
|
|
1948
|
+
paginatorPt: {
|
|
1949
|
+
first: {
|
|
1950
|
+
'aria-disabled': string | null;
|
|
1951
|
+
tabindex: number;
|
|
1952
|
+
};
|
|
1953
|
+
};
|
|
1905
1954
|
rowOptions: {
|
|
1906
1955
|
label: string;
|
|
1907
1956
|
value: number;
|
|
1908
1957
|
}[];
|
|
1909
|
-
|
|
1958
|
+
private _currentRowsPerPageOptions;
|
|
1959
|
+
private readonly _document;
|
|
1960
|
+
private readonly _elementRef;
|
|
1961
|
+
private readonly _staticAriaLabel;
|
|
1910
1962
|
ngOnInit(): void;
|
|
1963
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1964
|
+
private _syncRows;
|
|
1965
|
+
private _updateAriaLabel;
|
|
1966
|
+
private _buildPaginatorPt;
|
|
1911
1967
|
onPageChange(event: any): void;
|
|
1968
|
+
onKeydown(event: KeyboardEvent): void;
|
|
1969
|
+
private _getPageButtons;
|
|
1970
|
+
private _focusSelectedPageButton;
|
|
1912
1971
|
onRowsPerPageChange(rows: number): void;
|
|
1913
1972
|
static ɵfac: i0.ɵɵFactoryDeclaration<CpsPaginatorComponent, never>;
|
|
1914
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CpsPaginatorComponent, "cps-paginator", never, { "first": { "alias": "first"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "alwaysShow": { "alias": "alwaysShow"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "resetPageOnRowsChange": { "alias": "resetPageOnRowsChange"; "required": false; }; }, { "pageChanged": "pageChanged"; }, never, never, true, never>;
|
|
1973
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CpsPaginatorComponent, "cps-paginator", never, { "first": { "alias": "first"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "rowsPerPageOptions": { "alias": "rowsPerPageOptions"; "required": false; }; "alwaysShow": { "alias": "alwaysShow"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "resetPageOnRowsChange": { "alias": "resetPageOnRowsChange"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, { "pageChanged": "pageChanged"; }, never, never, true, never>;
|
|
1915
1974
|
}
|
|
1916
1975
|
|
|
1917
1976
|
/**
|
|
@@ -1931,8 +1990,7 @@ declare class CpsPaginatePipe implements PipeTransform {
|
|
|
1931
1990
|
* CpsProgressCircularComponent is a process status indicator in a form of a spinner.
|
|
1932
1991
|
* @group Components
|
|
1933
1992
|
*/
|
|
1934
|
-
declare class CpsProgressCircularComponent implements OnInit {
|
|
1935
|
-
private document;
|
|
1993
|
+
declare class CpsProgressCircularComponent implements OnInit, OnChanges {
|
|
1936
1994
|
/**
|
|
1937
1995
|
* Diameter of the progress bar, of type number denoting pixels or string.
|
|
1938
1996
|
* @group Props
|
|
@@ -1948,10 +2006,24 @@ declare class CpsProgressCircularComponent implements OnInit {
|
|
|
1948
2006
|
* @group Props
|
|
1949
2007
|
*/
|
|
1950
2008
|
color: string;
|
|
1951
|
-
|
|
2009
|
+
/**
|
|
2010
|
+
* Accessible label announced by screen readers to describe what is loading.
|
|
2011
|
+
* Falls back to "Loading" when empty value is provided.
|
|
2012
|
+
* @group Props
|
|
2013
|
+
* @default Loading
|
|
2014
|
+
*/
|
|
2015
|
+
ariaLabel: string;
|
|
2016
|
+
private readonly _document;
|
|
2017
|
+
private readonly _staticAriaLabel;
|
|
2018
|
+
cvtDiameter: string;
|
|
2019
|
+
cvtStrokeWidth: string;
|
|
2020
|
+
cvtColor: string;
|
|
2021
|
+
computedAriaLabel: string;
|
|
1952
2022
|
ngOnInit(): void;
|
|
2023
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2024
|
+
private _updateAriaLabel;
|
|
1953
2025
|
static ɵfac: i0.ɵɵFactoryDeclaration<CpsProgressCircularComponent, never>;
|
|
1954
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CpsProgressCircularComponent, "cps-progress-circular", never, { "diameter": { "alias": "diameter"; "required": false; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
2026
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CpsProgressCircularComponent, "cps-progress-circular", never, { "diameter": { "alias": "diameter"; "required": false; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
1955
2027
|
}
|
|
1956
2028
|
|
|
1957
2029
|
/**
|
|
@@ -1995,14 +2067,23 @@ declare class CpsProgressLinearComponent {
|
|
|
1995
2067
|
* @default 0
|
|
1996
2068
|
*/
|
|
1997
2069
|
radius: i0.InputSignal<string | number>;
|
|
1998
|
-
|
|
2070
|
+
/**
|
|
2071
|
+
* Accessible label announced by screen readers to describe what is loading.
|
|
2072
|
+
* Falls back to "Loading" when empty value is provided.
|
|
2073
|
+
* @group Props
|
|
2074
|
+
* @default Loading
|
|
2075
|
+
*/
|
|
2076
|
+
ariaLabel: i0.InputSignal<string>;
|
|
2077
|
+
private readonly _document;
|
|
2078
|
+
private readonly _staticAriaLabel;
|
|
1999
2079
|
cvtWidth: i0.Signal<string>;
|
|
2000
2080
|
cvtHeight: i0.Signal<string>;
|
|
2001
2081
|
cvtRadius: i0.Signal<string>;
|
|
2002
2082
|
cssColor: i0.Signal<string>;
|
|
2003
2083
|
cssBgColor: i0.Signal<string>;
|
|
2084
|
+
computedAriaLabel: i0.Signal<string>;
|
|
2004
2085
|
static ɵfac: i0.ɵɵFactoryDeclaration<CpsProgressLinearComponent, never>;
|
|
2005
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CpsProgressLinearComponent, "cps-progress-linear", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "bgColor": { "alias": "bgColor"; "required": false; "isSignal": true; }; "opacity": { "alias": "opacity"; "required": false; "isSignal": true; }; "radius": { "alias": "radius"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2086
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CpsProgressLinearComponent, "cps-progress-linear", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "bgColor": { "alias": "bgColor"; "required": false; "isSignal": true; }; "opacity": { "alias": "opacity"; "required": false; "isSignal": true; }; "radius": { "alias": "radius"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2006
2087
|
}
|
|
2007
2088
|
|
|
2008
2089
|
/**
|
|
@@ -6516,6 +6597,50 @@ declare class CpsCronValidationService {
|
|
|
6516
6597
|
*/
|
|
6517
6598
|
declare const CPS_CRON_VALIDATION_SERVICE: InjectionToken<CpsCronValidationService | null>;
|
|
6518
6599
|
|
|
6600
|
+
type CpsLiveAnnouncerPoliteness = 'polite' | 'assertive';
|
|
6601
|
+
/**
|
|
6602
|
+
* Service for making accessible live-region announcements without relying on a
|
|
6603
|
+
* specific component's live region. Creates two persistent hidden elements in
|
|
6604
|
+
* document.body (one polite, one assertive) that screen readers monitor for
|
|
6605
|
+
* content changes.
|
|
6606
|
+
*/
|
|
6607
|
+
declare class CpsLiveAnnouncerService implements OnDestroy {
|
|
6608
|
+
private _document;
|
|
6609
|
+
private _ngZone;
|
|
6610
|
+
private _platformId;
|
|
6611
|
+
private _isBrowser;
|
|
6612
|
+
private _regions;
|
|
6613
|
+
/**
|
|
6614
|
+
* Announces a message through the appropriate live region. Clears any
|
|
6615
|
+
* existing text first so the same message can be re-announced, then writes
|
|
6616
|
+
* the new text on the next tick so screen readers observe the content change.
|
|
6617
|
+
* After `duration` ms the region is cleared automatically; pass `0` to keep
|
|
6618
|
+
* the message indefinitely. Defaults to 5000ms.
|
|
6619
|
+
*/
|
|
6620
|
+
announce(message: string, politeness?: CpsLiveAnnouncerPoliteness, durationMs?: number): void;
|
|
6621
|
+
/**
|
|
6622
|
+
* Clears the live region without making a new announcement.
|
|
6623
|
+
*/
|
|
6624
|
+
clear(politeness?: CpsLiveAnnouncerPoliteness): void;
|
|
6625
|
+
ngOnDestroy(): void;
|
|
6626
|
+
private _createElement;
|
|
6627
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CpsLiveAnnouncerService, never>;
|
|
6628
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CpsLiveAnnouncerService>;
|
|
6629
|
+
}
|
|
6630
|
+
/**
|
|
6631
|
+
* Injection token for the live-announcer service.
|
|
6632
|
+
*
|
|
6633
|
+
* By default it resolves to the singleton {@link CpsLiveAnnouncerService}.
|
|
6634
|
+
* Consumer applications can override it to supply a custom implementation or
|
|
6635
|
+
* provide `null` to disable all live-region announcements.
|
|
6636
|
+
*
|
|
6637
|
+
* @example Disable announcements:
|
|
6638
|
+
* ```typescript
|
|
6639
|
+
* providers: [{ provide: CPS_LIVE_ANNOUNCER_SERVICE, useValue: null }]
|
|
6640
|
+
* ```
|
|
6641
|
+
*/
|
|
6642
|
+
declare const CPS_LIVE_ANNOUNCER_SERVICE: InjectionToken<CpsLiveAnnouncerService | null>;
|
|
6643
|
+
|
|
6519
6644
|
/**
|
|
6520
6645
|
* Collects all --cps-color-* CSS custom properties from :root rules only.
|
|
6521
6646
|
* Theme overrides (e.g. [data-theme='dark']) are excluded to avoid duplicates,
|
|
@@ -6525,5 +6650,5 @@ declare const getCpsColors: (_document: Document) => [string, string][];
|
|
|
6525
6650
|
declare const getCSSColor: (val: string, _document: Document) => string;
|
|
6526
6651
|
declare const getTextColor: (backgroundColor: string) => string;
|
|
6527
6652
|
|
|
6528
|
-
export { CPS_CRON_VALIDATION_SERVICE, CPS_FOCUS_SERVICE, CPS_RADIO_GROUP, CPS_ROOT_FONT_SIZE_SERVICE, CpsAutocompleteComponent, CpsButtonComponent, CpsButtonToggleComponent, CpsCheckboxComponent, CpsChipComponent, CpsColumnFilterMatchMode, CpsCronValidationService, CpsDatepickerComponent, CpsDialogConfig, CpsDialogRef, CpsDialogService, CpsDividerComponent, CpsExpansionPanelComponent, CpsFileUploadComponent, CpsFocusService, CpsIconComponent, CpsInfoCircleComponent, CpsInputComponent, CpsLoaderComponent, CpsMenuComponent, CpsMenuHideReason, CpsNotificationAppearance, CpsNotificationPosition, CpsNotificationService, CpsPaginatePipe, CpsPaginatorComponent, CpsProgressCircularComponent, CpsProgressLinearComponent, CpsRadioComponent, CpsRadioGroupComponent, CpsRootFontSizeService, CpsSchedulerComponent, CpsSelectComponent, CpsSidebarMenuComponent, CpsSwitchComponent, CpsTabComponent, CpsTabGroupComponent, CpsTableColumnFilterDirective, CpsTableColumnResizableDirective, CpsTableColumnSortableDirective, CpsTableComponent, CpsTableDetectFilterTypePipe, CpsTableHeaderSelectableDirective, CpsTableRowSelectableDirective, CpsTagComponent, CpsTextareaComponent, CpsThemeService, CpsTimepickerComponent, CpsTooltipDirective, CpsTreeAutocompleteComponent, CpsTreeSelectComponent, CpsTreeTableColumnFilterDirective, CpsTreeTableColumnResizableDirective, CpsTreeTableColumnSortableDirective, CpsTreeTableComponent, CpsTreeTableDetectFilterTypePipe, CpsTreeTableHeaderSelectableDirective, CpsTreeTableRowSelectableDirective, CpsTreetableRowTogglerDirective, ICONS_PATH, getCSSColor, getCpsColors, getTextColor, iconNames, tableFactory, treeTableFactory };
|
|
6529
|
-
export type { CpsAutocompleteAppearanceType, CpsBaseTheme, CpsButtonToggleOption, CpsColorTheme, CpsColumnFilterCategoryOption, CpsColumnFilterType, CpsDatepickerAppearanceType, CpsDatepickerDateFormat, CpsDialogAutoFocusTarget, CpsDividerType, CpsInputAppearanceType, CpsMenuAttachPosition, CpsMenuItem, CpsNotificationConfig, CpsRadioOption, CpsRadiusTheme, CpsSelectAppearanceType, CpsSidebarMenuItem, CpsTabChangeEvent, CpsTableExportFormat, CpsTableSize, CpsTableSortMode, CpsTableToolbarSize, CpsTabsAlignmentType, CpsTabsAnimationType, CpsTheme, CpsTime, CpsTooltipOpenOn, CpsTooltipPosition, CpsTreeAutocompleteAppearanceType, CpsTreeSelectAppearanceType, CpsTreeTableSize, CpsTreeTableSortMode, CpsTreeTableToolbarSize, IconType, iconSizeType };
|
|
6653
|
+
export { CPS_CRON_VALIDATION_SERVICE, CPS_FOCUS_SERVICE, CPS_LIVE_ANNOUNCER_SERVICE, CPS_RADIO_GROUP, CPS_ROOT_FONT_SIZE_SERVICE, CpsAutocompleteComponent, CpsButtonComponent, CpsButtonToggleComponent, CpsCheckboxComponent, CpsChipComponent, CpsColumnFilterMatchMode, CpsCronValidationService, CpsDatepickerComponent, CpsDialogConfig, CpsDialogRef, CpsDialogService, CpsDividerComponent, CpsExpansionPanelComponent, CpsFileUploadComponent, CpsFocusService, CpsIconComponent, CpsInfoCircleComponent, CpsInputComponent, CpsLiveAnnouncerService, CpsLoaderComponent, CpsMenuComponent, CpsMenuHideReason, CpsNotificationAppearance, CpsNotificationPosition, CpsNotificationService, CpsPaginatePipe, CpsPaginatorComponent, CpsProgressCircularComponent, CpsProgressLinearComponent, CpsRadioComponent, CpsRadioGroupComponent, CpsRootFontSizeService, CpsSchedulerComponent, CpsSelectComponent, CpsSidebarMenuComponent, CpsSwitchComponent, CpsTabComponent, CpsTabGroupComponent, CpsTableColumnFilterDirective, CpsTableColumnResizableDirective, CpsTableColumnSortableDirective, CpsTableComponent, CpsTableDetectFilterTypePipe, CpsTableHeaderSelectableDirective, CpsTableRowSelectableDirective, CpsTagComponent, CpsTextareaComponent, CpsThemeService, CpsTimepickerComponent, CpsTooltipDirective, CpsTreeAutocompleteComponent, CpsTreeSelectComponent, CpsTreeTableColumnFilterDirective, CpsTreeTableColumnResizableDirective, CpsTreeTableColumnSortableDirective, CpsTreeTableComponent, CpsTreeTableDetectFilterTypePipe, CpsTreeTableHeaderSelectableDirective, CpsTreeTableRowSelectableDirective, CpsTreetableRowTogglerDirective, ICONS_PATH, getCSSColor, getCpsColors, getTextColor, iconNames, tableFactory, treeTableFactory };
|
|
6654
|
+
export type { CpsAutocompleteAppearanceType, CpsBaseTheme, CpsButtonToggleOption, CpsColorTheme, CpsColumnFilterCategoryOption, CpsColumnFilterType, CpsDatepickerAppearanceType, CpsDatepickerDateFormat, CpsDialogAutoFocusTarget, CpsDividerType, CpsInputAppearanceType, CpsLiveAnnouncerPoliteness, CpsMenuAttachPosition, CpsMenuItem, CpsNotificationConfig, CpsRadioOption, CpsRadiusTheme, CpsSelectAppearanceType, CpsSidebarMenuItem, CpsTabChangeEvent, CpsTableExportFormat, CpsTableSize, CpsTableSortMode, CpsTableToolbarSize, CpsTabsAlignmentType, CpsTabsAnimationType, CpsTheme, CpsTime, CpsTooltipOpenOn, CpsTooltipPosition, CpsTreeAutocompleteAppearanceType, CpsTreeSelectAppearanceType, CpsTreeTableSize, CpsTreeTableSortMode, CpsTreeTableToolbarSize, IconType, iconSizeType };
|