cps-ui-kit 0.151.0 → 0.152.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/README.md +1 -0
- package/esm2020/lib/components/cps-autocomplete/cps-autocomplete.component.mjs +85 -23
- package/esm2020/lib/components/cps-button-toggle/cps-button-toggle.component.mjs +6 -6
- package/esm2020/lib/components/cps-checkbox/cps-checkbox.component.mjs +3 -3
- package/esm2020/lib/components/cps-chip/cps-chip.component.mjs +2 -2
- package/esm2020/lib/components/cps-datepicker/cps-datepicker.component.mjs +6 -6
- package/esm2020/lib/components/cps-expansion-panel/cps-expansion-panel.component.mjs +3 -3
- package/esm2020/lib/components/cps-info-circle/cps-info-circle.component.mjs +2 -2
- package/esm2020/lib/components/cps-input/cps-input.component.mjs +5 -5
- package/esm2020/lib/components/cps-loader/cps-loader.component.mjs +2 -2
- package/esm2020/lib/components/cps-menu/cps-menu.component.mjs +4 -4
- package/esm2020/lib/components/cps-paginator/cps-paginator.component.mjs +3 -3
- package/esm2020/lib/components/cps-radio-group/cps-radio-button/cps-radio-button.component.mjs +3 -3
- package/esm2020/lib/components/cps-radio-group/cps-radio-group.component.mjs +4 -4
- package/esm2020/lib/components/cps-select/cps-select.component.mjs +7 -7
- package/esm2020/lib/components/cps-sidebar-menu/cps-sidebar-menu.component.mjs +2 -2
- package/esm2020/lib/components/cps-tab-group/cps-tab/cps-tab.component.mjs +4 -4
- package/esm2020/lib/components/cps-tab-group/cps-tab-group.component.mjs +2 -2
- package/esm2020/lib/components/cps-table/components/internal/table-column-filter/table-column-filter.component.mjs +9 -9
- package/esm2020/lib/components/cps-table/components/internal/table-column-filter-constraint/table-column-filter-constraint.component.mjs +4 -4
- package/esm2020/lib/components/cps-table/cps-table.component.mjs +30 -30
- package/esm2020/lib/components/cps-table/directives/cps-table-column-filter.directive.mjs +9 -9
- package/esm2020/lib/components/cps-tag/cps-tag.component.mjs +3 -3
- package/esm2020/lib/components/cps-textarea/cps-textarea.component.mjs +6 -6
- package/esm2020/lib/components/cps-timepicker/cps-timepicker.component.mjs +351 -0
- package/esm2020/lib/components/cps-tree-table/cps-tree-table.component.mjs +29 -31
- package/esm2020/lib/components/cps-tree-table/directives/cps-tree-table-column-filter.directive.mjs +9 -9
- package/esm2020/lib/components/internal/cps-base-tree-dropdown/cps-base-tree-dropdown.component.mjs +7 -7
- package/esm2020/lib/directives/cps-tooltip.directive.mjs +3 -3
- package/esm2020/lib/pipes/internal/combine-labels.pipe.mjs +2 -2
- package/esm2020/lib/pipes/internal/label-by-value.pipe.mjs +2 -2
- package/esm2020/lib/services/cps-dialog/utils/cps-dialog-config.mjs +1 -1
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/cps-ui-kit.mjs +582 -169
- package/fesm2015/cps-ui-kit.mjs.map +1 -1
- package/fesm2020/cps-ui-kit.mjs +569 -168
- package/fesm2020/cps-ui-kit.mjs.map +1 -1
- package/lib/components/cps-autocomplete/cps-autocomplete.component.d.ts +38 -11
- package/lib/components/cps-button-toggle/cps-button-toggle.component.d.ts +3 -3
- package/lib/components/cps-checkbox/cps-checkbox.component.d.ts +2 -2
- package/lib/components/cps-chip/cps-chip.component.d.ts +1 -1
- package/lib/components/cps-datepicker/cps-datepicker.component.d.ts +5 -5
- package/lib/components/cps-expansion-panel/cps-expansion-panel.component.d.ts +2 -2
- package/lib/components/cps-info-circle/cps-info-circle.component.d.ts +1 -1
- package/lib/components/cps-input/cps-input.component.d.ts +4 -4
- package/lib/components/cps-loader/cps-loader.component.d.ts +1 -1
- package/lib/components/cps-menu/cps-menu.component.d.ts +3 -3
- package/lib/components/cps-paginator/cps-paginator.component.d.ts +2 -2
- package/lib/components/cps-radio-group/cps-radio-button/cps-radio-button.component.d.ts +2 -2
- package/lib/components/cps-radio-group/cps-radio-group.component.d.ts +3 -3
- package/lib/components/cps-select/cps-select.component.d.ts +6 -6
- package/lib/components/cps-sidebar-menu/cps-sidebar-menu.component.d.ts +1 -1
- package/lib/components/cps-tab-group/cps-tab/cps-tab.component.d.ts +3 -3
- package/lib/components/cps-tab-group/cps-tab-group.component.d.ts +1 -1
- package/lib/components/cps-table/components/internal/table-column-filter/table-column-filter.component.d.ts +8 -8
- package/lib/components/cps-table/components/internal/table-column-filter-constraint/table-column-filter-constraint.component.d.ts +2 -2
- package/lib/components/cps-table/cps-table.component.d.ts +29 -29
- package/lib/components/cps-table/directives/cps-table-column-filter.directive.d.ts +8 -8
- package/lib/components/cps-tag/cps-tag.component.d.ts +2 -2
- package/lib/components/cps-textarea/cps-textarea.component.d.ts +5 -5
- package/lib/components/cps-timepicker/cps-timepicker.component.d.ts +135 -0
- package/lib/components/cps-tree-table/cps-tree-table.component.d.ts +28 -30
- package/lib/components/cps-tree-table/directives/cps-tree-table-column-filter.directive.d.ts +8 -8
- package/lib/components/internal/cps-base-tree-dropdown/cps-base-tree-dropdown.component.d.ts +6 -6
- package/lib/directives/cps-tooltip.directive.d.ts +2 -2
- package/lib/services/cps-dialog/utils/cps-dialog-config.d.ts +7 -7
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
package/lib/components/cps-tree-table/directives/cps-tree-table-column-filter.directive.d.ts
CHANGED
|
@@ -20,27 +20,27 @@ export declare class CpsTreeTableColumnFilterDirective implements OnInit, OnChan
|
|
|
20
20
|
*/
|
|
21
21
|
filterType: CpsColumnFilterType;
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* Determines whether the filter menu should be persistent.
|
|
24
24
|
* @group Props
|
|
25
25
|
*/
|
|
26
26
|
filterPersistent: boolean;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Determines whether the filter should have clear button.
|
|
29
29
|
* @group Props
|
|
30
30
|
*/
|
|
31
31
|
filterShowClearButton: boolean;
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* Determines whether the filter should have apply button.
|
|
34
34
|
* @group Props
|
|
35
35
|
*/
|
|
36
36
|
filterShowApplyButton: boolean;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Determines whether the filter should have close button.
|
|
39
39
|
* @group Props
|
|
40
40
|
*/
|
|
41
41
|
filterShowCloseButton: boolean;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Determines whether the filter should have match modes.
|
|
44
44
|
* @group Props
|
|
45
45
|
*/
|
|
46
46
|
filterShowMatchModes: boolean;
|
|
@@ -50,7 +50,7 @@ export declare class CpsTreeTableColumnFilterDirective implements OnInit, OnChan
|
|
|
50
50
|
*/
|
|
51
51
|
filterMatchModes: CpsColumnFilterMatchMode[];
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* Determines whether the filter should have operator.
|
|
54
54
|
* @group Props
|
|
55
55
|
*/
|
|
56
56
|
filterShowOperator: boolean;
|
|
@@ -60,7 +60,7 @@ export declare class CpsTreeTableColumnFilterDirective implements OnInit, OnChan
|
|
|
60
60
|
*/
|
|
61
61
|
filterHeaderTitle: string;
|
|
62
62
|
/**
|
|
63
|
-
*
|
|
63
|
+
* Determines whether the filter should hide on clear.
|
|
64
64
|
* @group Props
|
|
65
65
|
*/
|
|
66
66
|
filterHideOnClear: boolean;
|
|
@@ -70,7 +70,7 @@ export declare class CpsTreeTableColumnFilterDirective implements OnInit, OnChan
|
|
|
70
70
|
*/
|
|
71
71
|
filterCategoryOptions: CpsColumnFilterCategoryOption[] | string[];
|
|
72
72
|
/**
|
|
73
|
-
*
|
|
73
|
+
* Determines whether to show category filter as button toggles.
|
|
74
74
|
* @group Props
|
|
75
75
|
*/
|
|
76
76
|
filterAsButtonToggle: boolean;
|
package/lib/components/internal/cps-base-tree-dropdown/cps-base-tree-dropdown.component.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export declare class CpsBaseTreeDropdownComponent implements ControlValueAccesso
|
|
|
29
29
|
*/
|
|
30
30
|
multiple: boolean;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Determines whether the component is disabled.
|
|
33
33
|
* @group Props
|
|
34
34
|
*/
|
|
35
35
|
disabled: boolean;
|
|
@@ -44,7 +44,7 @@ export declare class CpsBaseTreeDropdownComponent implements ControlValueAccesso
|
|
|
44
44
|
*/
|
|
45
45
|
chips: boolean;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* Determines whether the chips can be directly removed.
|
|
48
48
|
* @group Props
|
|
49
49
|
*/
|
|
50
50
|
closableChips: boolean;
|
|
@@ -54,7 +54,7 @@ export declare class CpsBaseTreeDropdownComponent implements ControlValueAccesso
|
|
|
54
54
|
*/
|
|
55
55
|
clearable: boolean;
|
|
56
56
|
/**
|
|
57
|
-
*
|
|
57
|
+
* Determines whether the dropdown should open on clear.
|
|
58
58
|
* @group Props
|
|
59
59
|
*/
|
|
60
60
|
openOnClear: boolean;
|
|
@@ -74,7 +74,7 @@ export declare class CpsBaseTreeDropdownComponent implements ControlValueAccesso
|
|
|
74
74
|
*/
|
|
75
75
|
hideDetails: boolean;
|
|
76
76
|
/**
|
|
77
|
-
*
|
|
77
|
+
* Determines whether the component should have persistent clear icon.
|
|
78
78
|
* @group Props
|
|
79
79
|
*/
|
|
80
80
|
persistentClear: boolean;
|
|
@@ -94,7 +94,7 @@ export declare class CpsBaseTreeDropdownComponent implements ControlValueAccesso
|
|
|
94
94
|
*/
|
|
95
95
|
loading: boolean;
|
|
96
96
|
/**
|
|
97
|
-
*
|
|
97
|
+
* Determines whether only the elements within scrollable area should be added into the DOM.
|
|
98
98
|
* @group Props
|
|
99
99
|
*/
|
|
100
100
|
virtualScroll: boolean;
|
|
@@ -119,7 +119,7 @@ export declare class CpsBaseTreeDropdownComponent implements ControlValueAccesso
|
|
|
119
119
|
*/
|
|
120
120
|
infoTooltipMaxWidth: number | string;
|
|
121
121
|
/**
|
|
122
|
-
*
|
|
122
|
+
* Determines whether the infoTooltip is persistent.
|
|
123
123
|
* @group Props
|
|
124
124
|
*/
|
|
125
125
|
infoTooltipPersistent: boolean;
|
|
@@ -24,7 +24,7 @@ export declare class CpsTooltipDirective implements OnDestroy {
|
|
|
24
24
|
*/
|
|
25
25
|
tooltipCloseDelay: string | number;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Determines whether the tooltip should open on hover, click or focus.
|
|
28
28
|
* @group Props
|
|
29
29
|
*/
|
|
30
30
|
tooltipOpenOn: CpsTooltipOpenOn;
|
|
@@ -34,7 +34,7 @@ export declare class CpsTooltipDirective implements OnDestroy {
|
|
|
34
34
|
*/
|
|
35
35
|
tooltipPosition: CpsTooltipPosition;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Determines whether the tooltip is persistent.
|
|
38
38
|
* @group Props
|
|
39
39
|
*/
|
|
40
40
|
tooltipPersistent: boolean;
|
|
@@ -5,7 +5,7 @@ export declare class CpsDialogConfig<T = any> {
|
|
|
5
5
|
*/
|
|
6
6
|
data?: T;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Determines whether to show the header or not.
|
|
9
9
|
*/
|
|
10
10
|
showHeader?: boolean;
|
|
11
11
|
/**
|
|
@@ -29,11 +29,11 @@ export declare class CpsDialogConfig<T = any> {
|
|
|
29
29
|
*/
|
|
30
30
|
headerIconColor?: string;
|
|
31
31
|
/**
|
|
32
|
-
*
|
|
32
|
+
* Determines whether to show the header left border.
|
|
33
33
|
*/
|
|
34
34
|
showHeaderLeftBorder?: boolean;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Determines whether to show the header bottom border.
|
|
37
37
|
*/
|
|
38
38
|
showHeaderBottomBorder?: boolean;
|
|
39
39
|
/**
|
|
@@ -73,7 +73,7 @@ export declare class CpsDialogConfig<T = any> {
|
|
|
73
73
|
*/
|
|
74
74
|
baseZIndex?: number;
|
|
75
75
|
/**
|
|
76
|
-
*
|
|
76
|
+
* Determines whether to automatically manage layering.
|
|
77
77
|
*/
|
|
78
78
|
autoZIndex?: boolean;
|
|
79
79
|
/**
|
|
@@ -113,7 +113,7 @@ export declare class CpsDialogConfig<T = any> {
|
|
|
113
113
|
*/
|
|
114
114
|
modal?: boolean;
|
|
115
115
|
/**
|
|
116
|
-
* When modal dialog is displayed,
|
|
116
|
+
* When modal dialog is displayed, determines whether background should be blurred.
|
|
117
117
|
*/
|
|
118
118
|
blurredBackground?: boolean;
|
|
119
119
|
/**
|
|
@@ -141,11 +141,11 @@ export declare class CpsDialogConfig<T = any> {
|
|
|
141
141
|
*/
|
|
142
142
|
minY?: number;
|
|
143
143
|
/**
|
|
144
|
-
*
|
|
144
|
+
* Determines whether the dialog can be displayed full screen.
|
|
145
145
|
*/
|
|
146
146
|
maximizable?: boolean;
|
|
147
147
|
/**
|
|
148
|
-
*
|
|
148
|
+
* Determines whether the dialog is initially opened as full screen.
|
|
149
149
|
*/
|
|
150
150
|
maximized?: boolean;
|
|
151
151
|
/**
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export * from './lib/components/cps-textarea/cps-textarea.component';
|
|
|
36
36
|
export * from './lib/components/cps-button-toggle/cps-button-toggle.component';
|
|
37
37
|
export * from './lib/components/cps-tab-group/cps-tab-group.component';
|
|
38
38
|
export * from './lib/components/cps-tab-group/cps-tab/cps-tab.component';
|
|
39
|
+
export * from './lib/components/cps-timepicker/cps-timepicker.component';
|
|
39
40
|
export * from './lib/directives/cps-tooltip.directive';
|
|
40
41
|
export * from './lib/services/cps-dialog/cps-dialog.service';
|
|
41
42
|
export * from './lib/services/cps-dialog/utils/cps-dialog-config';
|