@skyux/code-examples 13.11.5 → 13.13.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/index.d.ts CHANGED
@@ -131,7 +131,7 @@ interface AgGridDemoRow$4 {
131
131
 
132
132
  declare class SalesModalComponent$2 implements SkyFilterItemModal {
133
133
  #private;
134
- readonly modalInstance: SkyFilterItemModalInstance<any>;
134
+ readonly modalInstance: SkyFilterItemModalInstance<any, any>;
135
135
  protected hideSales: boolean;
136
136
  protected modalLabel: string;
137
137
  constructor();
@@ -326,7 +326,7 @@ interface AgGridDemoRow$1 {
326
326
 
327
327
  declare class SalesModalComponent$1 implements SkyFilterItemModal {
328
328
  #private;
329
- readonly modalInstance: SkyFilterItemModalInstance<any>;
329
+ readonly modalInstance: SkyFilterItemModalInstance<any, any>;
330
330
  protected hideSales: boolean;
331
331
  protected modalLabel: string;
332
332
  constructor();
@@ -367,7 +367,7 @@ interface AgGridDemoRow {
367
367
 
368
368
  declare class SalesModalComponent implements SkyFilterItemModal {
369
369
  #private;
370
- readonly modalInstance: SkyFilterItemModalInstance<any>;
370
+ readonly modalInstance: SkyFilterItemModalInstance<any, any>;
371
371
  protected hideSales: boolean;
372
372
  protected modalLabel: string;
373
373
  constructor();
@@ -850,7 +850,7 @@ interface DataManagerDemoRow {
850
850
  }
851
851
 
852
852
  declare class OrangeModalComponent implements SkyFilterItemModal {
853
- readonly modalInstance: SkyFilterItemModalInstance<any>;
853
+ readonly modalInstance: SkyFilterItemModalInstance<any, any>;
854
854
  protected hideOrange: _angular_forms.FormControl<boolean | null>;
855
855
  protected modalLabel: string;
856
856
  protected applyFilters(): void;
@@ -1014,7 +1014,7 @@ declare class ErrorsErrorModalExampleComponent {
1014
1014
  */
1015
1015
  declare class FilterBarLookupExampleComponent {
1016
1016
  #private;
1017
- protected readonly appliedFilters: i0.WritableSignal<SkyFilterBarFilterItem[] | undefined>;
1017
+ protected readonly appliedFilters: i0.WritableSignal<SkyFilterBarFilterItem<unknown>[] | undefined>;
1018
1018
  protected onSearchAsync(args: SkyFilterItemLookupSearchAsyncArgs): void;
1019
1019
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterBarLookupExampleComponent, never>;
1020
1020
  static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarLookupExampleComponent, "app-filter-bar-lookup-example", never, {}, {}, never, never, true, never>;
@@ -1022,7 +1022,7 @@ declare class FilterBarLookupExampleComponent {
1022
1022
 
1023
1023
  declare class FilterModalComponent implements SkyFilterItemModal {
1024
1024
  #private;
1025
- readonly modalInstance: SkyFilterItemModalInstance<any>;
1025
+ readonly modalInstance: SkyFilterItemModalInstance<any, any>;
1026
1026
  protected headingText: string;
1027
1027
  protected options: ({
1028
1028
  value: null;
@@ -1031,7 +1031,7 @@ declare class FilterModalComponent implements SkyFilterItemModal {
1031
1031
  value: boolean;
1032
1032
  displayValue: string;
1033
1033
  })[];
1034
- protected selectedValue: _skyux_filter_bar.SkyFilterBarFilterValue | undefined;
1034
+ protected selectedValue: _skyux_filter_bar.SkyFilterBarFilterValue<any> | undefined;
1035
1035
  protected formGroup: FormGroup;
1036
1036
  protected save(): void;
1037
1037
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterModalComponent, never>;
@@ -1042,7 +1042,7 @@ declare class FilterModalComponent implements SkyFilterItemModal {
1042
1042
  * @title Filter bar with modal filter example
1043
1043
  */
1044
1044
  declare class FilterBarModalExampleComponent {
1045
- protected readonly appliedFilters: i0.WritableSignal<SkyFilterBarFilterItem[] | undefined>;
1045
+ protected readonly appliedFilters: i0.WritableSignal<SkyFilterBarFilterItem<unknown>[] | undefined>;
1046
1046
  protected modalComponent: typeof FilterModalComponent;
1047
1047
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterBarModalExampleComponent, never>;
1048
1048
  static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarModalExampleComponent, "app-filter-bar-modal-example", never, {}, {}, never, never, true, never>;
@@ -1050,7 +1050,7 @@ declare class FilterBarModalExampleComponent {
1050
1050
 
1051
1051
  declare class ApplicationFeeFilterModalComponent implements SkyFilterItemModal {
1052
1052
  #private;
1053
- readonly modalInstance: SkyFilterItemModalInstance<any>;
1053
+ readonly modalInstance: SkyFilterItemModalInstance<any, any>;
1054
1054
  protected headingText: string;
1055
1055
  protected options: ({
1056
1056
  value: null;
@@ -1059,7 +1059,7 @@ declare class ApplicationFeeFilterModalComponent implements SkyFilterItemModal {
1059
1059
  value: boolean;
1060
1060
  displayValue: string;
1061
1061
  })[];
1062
- protected selectedValue: _skyux_filter_bar.SkyFilterBarFilterValue | undefined;
1062
+ protected selectedValue: _skyux_filter_bar.SkyFilterBarFilterValue<any> | undefined;
1063
1063
  protected formGroup: FormGroup;
1064
1064
  protected save(): void;
1065
1065
  static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationFeeFilterModalComponent, never>;
@@ -1070,7 +1070,7 @@ declare class ApplicationFeeFilterModalComponent implements SkyFilterItemModal {
1070
1070
  * @title Filter bar with selectable filters example
1071
1071
  */
1072
1072
  declare class FilterBarSelectableExampleComponent {
1073
- protected readonly appliedFilters: i0.WritableSignal<SkyFilterBarFilterItem[] | undefined>;
1073
+ protected readonly appliedFilters: i0.WritableSignal<SkyFilterBarFilterItem<unknown>[] | undefined>;
1074
1074
  protected readonly selectedFilterIds: i0.WritableSignal<string[] | undefined>;
1075
1075
  protected applicationFeeModal: typeof ApplicationFeeFilterModalComponent;
1076
1076
  protected onSearchAsync(args: SkyFilterItemLookupSearchAsyncArgs): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/code-examples",
3
- "version": "13.11.5",
3
+ "version": "13.13.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.15",
24
24
  "@angular/router": "^20.3.15",
25
25
  "@blackbaud/angular-tree-component": "^1.0.0",
26
- "@skyux/action-bars": "13.11.5",
27
- "@skyux/ag-grid": "13.11.5",
28
- "@skyux/angular-tree-component": "13.11.5",
29
- "@skyux/autonumeric": "13.11.5",
30
- "@skyux/avatar": "13.11.5",
31
- "@skyux/colorpicker": "13.11.5",
32
- "@skyux/core": "13.11.5",
33
- "@skyux/data-manager": "13.11.5",
34
- "@skyux/datetime": "13.11.5",
35
- "@skyux/errors": "13.11.5",
36
- "@skyux/filter-bar": "13.11.5",
37
- "@skyux/flyout": "13.11.5",
38
- "@skyux/forms": "13.11.5",
39
- "@skyux/help-inline": "13.11.5",
40
- "@skyux/icon": "13.11.5",
41
- "@skyux/indicators": "13.11.5",
42
- "@skyux/inline-form": "13.11.5",
43
- "@skyux/layout": "13.11.5",
44
- "@skyux/lists": "13.11.5",
45
- "@skyux/lookup": "13.11.5",
46
- "@skyux/modals": "13.11.5",
47
- "@skyux/navbar": "13.11.5",
48
- "@skyux/pages": "13.11.5",
49
- "@skyux/phone-field": "13.11.5",
50
- "@skyux/popovers": "13.11.5",
51
- "@skyux/progress-indicator": "13.11.5",
52
- "@skyux/router": "13.11.5",
53
- "@skyux/split-view": "13.11.5",
54
- "@skyux/tabs": "13.11.5",
55
- "@skyux/text-editor": "13.11.5",
56
- "@skyux/tiles": "13.11.5",
57
- "@skyux/toast": "13.11.5",
58
- "@skyux/validation": "13.11.5",
26
+ "@skyux/action-bars": "13.13.0",
27
+ "@skyux/ag-grid": "13.13.0",
28
+ "@skyux/angular-tree-component": "13.13.0",
29
+ "@skyux/autonumeric": "13.13.0",
30
+ "@skyux/avatar": "13.13.0",
31
+ "@skyux/colorpicker": "13.13.0",
32
+ "@skyux/core": "13.13.0",
33
+ "@skyux/data-manager": "13.13.0",
34
+ "@skyux/datetime": "13.13.0",
35
+ "@skyux/errors": "13.13.0",
36
+ "@skyux/filter-bar": "13.13.0",
37
+ "@skyux/flyout": "13.13.0",
38
+ "@skyux/forms": "13.13.0",
39
+ "@skyux/help-inline": "13.13.0",
40
+ "@skyux/icon": "13.13.0",
41
+ "@skyux/indicators": "13.13.0",
42
+ "@skyux/inline-form": "13.13.0",
43
+ "@skyux/layout": "13.13.0",
44
+ "@skyux/lists": "13.13.0",
45
+ "@skyux/lookup": "13.13.0",
46
+ "@skyux/modals": "13.13.0",
47
+ "@skyux/navbar": "13.13.0",
48
+ "@skyux/pages": "13.13.0",
49
+ "@skyux/phone-field": "13.13.0",
50
+ "@skyux/popovers": "13.13.0",
51
+ "@skyux/progress-indicator": "13.13.0",
52
+ "@skyux/router": "13.13.0",
53
+ "@skyux/split-view": "13.13.0",
54
+ "@skyux/tabs": "13.13.0",
55
+ "@skyux/text-editor": "13.13.0",
56
+ "@skyux/tiles": "13.13.0",
57
+ "@skyux/toast": "13.13.0",
58
+ "@skyux/validation": "13.13.0",
59
59
  "ag-grid-angular": "^34.3.1",
60
60
  "ag-grid-community": "^34.3.1"
61
61
  },
@@ -72,6 +72,10 @@
72
72
  ".": {
73
73
  "types": "./index.d.ts",
74
74
  "default": "./fesm2022/skyux-code-examples.mjs"
75
+ },
76
+ "./routes": {
77
+ "types": "./routes/index.d.ts",
78
+ "default": "./fesm2022/skyux-code-examples-routes.mjs"
75
79
  }
76
80
  }
77
81
  }
@@ -0,0 +1,15 @@
1
+ import { Routes } from '@angular/router';
2
+
3
+ /**
4
+ *
5
+ * AUTO-GENERATED FILE, DO NOT MODIFY
6
+ *
7
+ * This file is generated by the code-examples prebuild step. It can be regenerated manually using the command:
8
+ *
9
+ * # npx nx run code-examples:prebuild
10
+ *
11
+ */
12
+
13
+ declare const routes: Routes;
14
+
15
+ export { routes };