@skyux/code-examples 13.7.1 → 13.8.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/skyux-code-examples.mjs +283 -137
- package/fesm2022/skyux-code-examples.mjs.map +1 -1
- package/index.d.ts +29 -9
- package/package.json +34 -34
package/index.d.ts
CHANGED
|
@@ -129,16 +129,31 @@ interface AgGridDemoRow$2 {
|
|
|
129
129
|
jobTitle?: AutocompleteOption$9;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
+
declare class SalesModalComponent$2 implements SkyFilterItemModal {
|
|
133
|
+
#private;
|
|
134
|
+
readonly modalInstance: SkyFilterItemModalInstance<any>;
|
|
135
|
+
protected hideSales: boolean;
|
|
136
|
+
protected modalLabel: string;
|
|
137
|
+
constructor();
|
|
138
|
+
protected applyFilters(): void;
|
|
139
|
+
protected cancel(): void;
|
|
140
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SalesModalComponent$2, never>;
|
|
141
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SalesModalComponent$2, "app-sales-modal", never, {}, {}, never, never, true, never>;
|
|
142
|
+
}
|
|
143
|
+
|
|
132
144
|
/**
|
|
133
145
|
* @title Data manager setup
|
|
134
146
|
*/
|
|
135
147
|
declare class AgGridDataEntryGridDataManagerAddedExampleComponent implements OnInit, OnDestroy {
|
|
136
148
|
#private;
|
|
137
149
|
protected items: AgGridDemoRow$2[];
|
|
150
|
+
protected salesModal: typeof SalesModalComponent$2;
|
|
151
|
+
protected readonly recordCount: i0.Signal<number>;
|
|
138
152
|
constructor();
|
|
139
153
|
ngOnInit(): void;
|
|
140
154
|
ngOnDestroy(): void;
|
|
141
155
|
protected openModal(): void;
|
|
156
|
+
onJobTitleSearchAsync(args: SkyFilterItemLookupSearchAsyncArgs): void;
|
|
142
157
|
static ɵfac: i0.ɵɵFactoryDeclaration<AgGridDataEntryGridDataManagerAddedExampleComponent, never>;
|
|
143
158
|
static ɵcmp: i0.ɵɵComponentDeclaration<AgGridDataEntryGridDataManagerAddedExampleComponent, "app-ag-grid-data-entry-grid-data-manager-added-example", never, {}, {}, never, never, true, never>;
|
|
144
159
|
}
|
|
@@ -155,6 +170,8 @@ interface AgGridDemoRow$1 {
|
|
|
155
170
|
endDate?: Date;
|
|
156
171
|
department: AutocompleteOption$8;
|
|
157
172
|
jobTitle?: AutocompleteOption$8;
|
|
173
|
+
validationCurrency?: AutocompleteOption$8;
|
|
174
|
+
validationDate?: AutocompleteOption$8;
|
|
158
175
|
}
|
|
159
176
|
|
|
160
177
|
/**
|
|
@@ -163,7 +180,7 @@ interface AgGridDemoRow$1 {
|
|
|
163
180
|
declare class AgGridDataEntryGridFocusExampleComponent {
|
|
164
181
|
#private;
|
|
165
182
|
protected gridData: AgGridDemoRow$1[];
|
|
166
|
-
protected gridOptions: ag_grid_community.GridOptions<
|
|
183
|
+
protected gridOptions: ag_grid_community.GridOptions<AgGridDemoRow$1>;
|
|
167
184
|
static ɵfac: i0.ɵɵFactoryDeclaration<AgGridDataEntryGridFocusExampleComponent, never>;
|
|
168
185
|
static ɵcmp: i0.ɵɵComponentDeclaration<AgGridDataEntryGridFocusExampleComponent, "app-ag-grid-data-entry-grid-focus-example", never, {}, {}, never, never, true, never>;
|
|
169
186
|
}
|
|
@@ -314,7 +331,7 @@ declare class SalesModalComponent$1 implements SkyFilterItemModal {
|
|
|
314
331
|
}
|
|
315
332
|
|
|
316
333
|
/**
|
|
317
|
-
* @title Data manager setup
|
|
334
|
+
* @title Data manager setup with multiselect
|
|
318
335
|
*/
|
|
319
336
|
declare class AgGridDataGridDataManagerMultiselectExampleComponent implements OnInit, OnDestroy {
|
|
320
337
|
#private;
|
|
@@ -342,6 +359,7 @@ declare class AgGridDataGridDataManagerMultiselectExampleComponent implements On
|
|
|
342
359
|
jobTitle: AutocompleteOption$4;
|
|
343
360
|
})[];
|
|
344
361
|
protected salesModal: typeof SalesModalComponent$1;
|
|
362
|
+
protected readonly recordCount: i0.Signal<number>;
|
|
345
363
|
constructor();
|
|
346
364
|
ngOnInit(): void;
|
|
347
365
|
ngOnDestroy(): void;
|
|
@@ -394,6 +412,7 @@ declare class AgGridDataGridDataManagerExampleComponent implements OnInit, OnDes
|
|
|
394
412
|
jobTitle: AutocompleteOption$3;
|
|
395
413
|
})[];
|
|
396
414
|
protected salesModal: typeof SalesModalComponent;
|
|
415
|
+
protected readonly recordCount: i0.Signal<number>;
|
|
397
416
|
constructor();
|
|
398
417
|
ngOnInit(): void;
|
|
399
418
|
ngOnDestroy(): void;
|
|
@@ -885,6 +904,7 @@ declare class DataManagerBasicExampleComponent {
|
|
|
885
904
|
#private;
|
|
886
905
|
protected items: DataManagerDemoRow[];
|
|
887
906
|
protected readonly orangeModalComponent: typeof OrangeModalComponent;
|
|
907
|
+
protected readonly recordCount: i0.Signal<number>;
|
|
888
908
|
constructor();
|
|
889
909
|
onFruitTypeSearchAsync(args: SkyFilterItemLookupSearchAsyncArgs): void;
|
|
890
910
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataManagerBasicExampleComponent, never>;
|
|
@@ -1032,10 +1052,10 @@ declare class ErrorsErrorModalExampleComponent {
|
|
|
1032
1052
|
*/
|
|
1033
1053
|
declare class FilterBarLookupExampleComponent {
|
|
1034
1054
|
#private;
|
|
1035
|
-
protected readonly appliedFilters: i0.
|
|
1055
|
+
protected readonly appliedFilters: i0.WritableSignal<SkyFilterBarFilterItem[] | undefined>;
|
|
1036
1056
|
protected onSearchAsync(args: SkyFilterItemLookupSearchAsyncArgs): void;
|
|
1037
1057
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterBarLookupExampleComponent, never>;
|
|
1038
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarLookupExampleComponent, "app-filter-bar-lookup-example", never, {
|
|
1058
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarLookupExampleComponent, "app-filter-bar-lookup-example", never, {}, {}, never, never, true, never>;
|
|
1039
1059
|
}
|
|
1040
1060
|
|
|
1041
1061
|
declare class FilterModalComponent implements SkyFilterItemModal {
|
|
@@ -1060,10 +1080,10 @@ declare class FilterModalComponent implements SkyFilterItemModal {
|
|
|
1060
1080
|
* @title Filter bar with modal filter example
|
|
1061
1081
|
*/
|
|
1062
1082
|
declare class FilterBarModalExampleComponent {
|
|
1063
|
-
protected readonly appliedFilters: i0.
|
|
1083
|
+
protected readonly appliedFilters: i0.WritableSignal<SkyFilterBarFilterItem[] | undefined>;
|
|
1064
1084
|
protected modalComponent: typeof FilterModalComponent;
|
|
1065
1085
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterBarModalExampleComponent, never>;
|
|
1066
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarModalExampleComponent, "app-filter-bar-modal-example", never, {
|
|
1086
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarModalExampleComponent, "app-filter-bar-modal-example", never, {}, {}, never, never, true, never>;
|
|
1067
1087
|
}
|
|
1068
1088
|
|
|
1069
1089
|
declare class ApplicationFeeFilterModalComponent implements SkyFilterItemModal {
|
|
@@ -1088,12 +1108,12 @@ declare class ApplicationFeeFilterModalComponent implements SkyFilterItemModal {
|
|
|
1088
1108
|
* @title Filter bar with selectable filters example
|
|
1089
1109
|
*/
|
|
1090
1110
|
declare class FilterBarSelectableExampleComponent {
|
|
1091
|
-
protected readonly appliedFilters: i0.
|
|
1092
|
-
protected readonly selectedFilterIds: i0.
|
|
1111
|
+
protected readonly appliedFilters: i0.WritableSignal<SkyFilterBarFilterItem[] | undefined>;
|
|
1112
|
+
protected readonly selectedFilterIds: i0.WritableSignal<string[] | undefined>;
|
|
1093
1113
|
protected applicationFeeModal: typeof ApplicationFeeFilterModalComponent;
|
|
1094
1114
|
protected onSearchAsync(args: SkyFilterItemLookupSearchAsyncArgs): void;
|
|
1095
1115
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterBarSelectableExampleComponent, never>;
|
|
1096
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarSelectableExampleComponent, "app-filter-bar-selectable-example", never, {
|
|
1116
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarSelectableExampleComponent, "app-filter-bar-selectable-example", never, {}, {}, never, never, true, never>;
|
|
1097
1117
|
}
|
|
1098
1118
|
|
|
1099
1119
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/code-examples",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.8.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"description": "Internal SKY UX use only",
|
|
6
6
|
"keywords": [
|
|
@@ -23,39 +23,39 @@
|
|
|
23
23
|
"@angular/forms": "^20.3.0",
|
|
24
24
|
"@angular/router": "^20.3.0",
|
|
25
25
|
"@blackbaud/angular-tree-component": "^1.0.0",
|
|
26
|
-
"@skyux/action-bars": "13.
|
|
27
|
-
"@skyux/ag-grid": "13.
|
|
28
|
-
"@skyux/angular-tree-component": "13.
|
|
29
|
-
"@skyux/autonumeric": "13.
|
|
30
|
-
"@skyux/avatar": "13.
|
|
31
|
-
"@skyux/colorpicker": "13.
|
|
32
|
-
"@skyux/core": "13.
|
|
33
|
-
"@skyux/data-manager": "13.
|
|
34
|
-
"@skyux/datetime": "13.
|
|
35
|
-
"@skyux/errors": "13.
|
|
36
|
-
"@skyux/filter-bar": "13.
|
|
37
|
-
"@skyux/flyout": "13.
|
|
38
|
-
"@skyux/forms": "13.
|
|
39
|
-
"@skyux/help-inline": "13.
|
|
40
|
-
"@skyux/icon": "13.
|
|
41
|
-
"@skyux/indicators": "13.
|
|
42
|
-
"@skyux/inline-form": "13.
|
|
43
|
-
"@skyux/layout": "13.
|
|
44
|
-
"@skyux/lists": "13.
|
|
45
|
-
"@skyux/lookup": "13.
|
|
46
|
-
"@skyux/modals": "13.
|
|
47
|
-
"@skyux/navbar": "13.
|
|
48
|
-
"@skyux/pages": "13.
|
|
49
|
-
"@skyux/phone-field": "13.
|
|
50
|
-
"@skyux/popovers": "13.
|
|
51
|
-
"@skyux/progress-indicator": "13.
|
|
52
|
-
"@skyux/router": "13.
|
|
53
|
-
"@skyux/split-view": "13.
|
|
54
|
-
"@skyux/tabs": "13.
|
|
55
|
-
"@skyux/text-editor": "13.
|
|
56
|
-
"@skyux/tiles": "13.
|
|
57
|
-
"@skyux/toast": "13.
|
|
58
|
-
"@skyux/validation": "13.
|
|
26
|
+
"@skyux/action-bars": "13.8.0",
|
|
27
|
+
"@skyux/ag-grid": "13.8.0",
|
|
28
|
+
"@skyux/angular-tree-component": "13.8.0",
|
|
29
|
+
"@skyux/autonumeric": "13.8.0",
|
|
30
|
+
"@skyux/avatar": "13.8.0",
|
|
31
|
+
"@skyux/colorpicker": "13.8.0",
|
|
32
|
+
"@skyux/core": "13.8.0",
|
|
33
|
+
"@skyux/data-manager": "13.8.0",
|
|
34
|
+
"@skyux/datetime": "13.8.0",
|
|
35
|
+
"@skyux/errors": "13.8.0",
|
|
36
|
+
"@skyux/filter-bar": "13.8.0",
|
|
37
|
+
"@skyux/flyout": "13.8.0",
|
|
38
|
+
"@skyux/forms": "13.8.0",
|
|
39
|
+
"@skyux/help-inline": "13.8.0",
|
|
40
|
+
"@skyux/icon": "13.8.0",
|
|
41
|
+
"@skyux/indicators": "13.8.0",
|
|
42
|
+
"@skyux/inline-form": "13.8.0",
|
|
43
|
+
"@skyux/layout": "13.8.0",
|
|
44
|
+
"@skyux/lists": "13.8.0",
|
|
45
|
+
"@skyux/lookup": "13.8.0",
|
|
46
|
+
"@skyux/modals": "13.8.0",
|
|
47
|
+
"@skyux/navbar": "13.8.0",
|
|
48
|
+
"@skyux/pages": "13.8.0",
|
|
49
|
+
"@skyux/phone-field": "13.8.0",
|
|
50
|
+
"@skyux/popovers": "13.8.0",
|
|
51
|
+
"@skyux/progress-indicator": "13.8.0",
|
|
52
|
+
"@skyux/router": "13.8.0",
|
|
53
|
+
"@skyux/split-view": "13.8.0",
|
|
54
|
+
"@skyux/tabs": "13.8.0",
|
|
55
|
+
"@skyux/text-editor": "13.8.0",
|
|
56
|
+
"@skyux/tiles": "13.8.0",
|
|
57
|
+
"@skyux/toast": "13.8.0",
|
|
58
|
+
"@skyux/validation": "13.8.0",
|
|
59
59
|
"ag-grid-angular": "^34.1.2",
|
|
60
60
|
"ag-grid-community": "^34.1.2"
|
|
61
61
|
},
|