@skyux/code-examples 13.5.2 → 13.6.1
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 +405 -287
- package/fesm2022/skyux-code-examples.mjs.map +1 -1
- package/index.d.ts +49 -6
- package/package.json +34 -34
package/index.d.ts
CHANGED
|
@@ -5,6 +5,8 @@ import { FormControl, FormGroup, AbstractControl } from '@angular/forms';
|
|
|
5
5
|
import { SkySummaryActionBarError } from '@skyux/action-bars';
|
|
6
6
|
import * as ag_grid_community from 'ag-grid-community';
|
|
7
7
|
import { GridOptions, GridReadyEvent } from 'ag-grid-community';
|
|
8
|
+
import * as _skyux_filter_bar from '@skyux/filter-bar';
|
|
9
|
+
import { SkyFilterItemModal, SkyFilterItemModalInstance, SkyFilterItemLookupSearchAsyncArgs, SkyFilterBarFilterItem } from '@skyux/filter-bar';
|
|
8
10
|
import { ITreeState, ITreeOptions } from '@blackbaud/angular-tree-component';
|
|
9
11
|
import { SkyAutonumericOptions } from '@skyux/autonumeric';
|
|
10
12
|
import { SkyFileItem, SkyFileAttachmentClick, SkyFileLink, SkyFileDropChange } from '@skyux/forms';
|
|
@@ -13,8 +15,6 @@ import * as rxjs from 'rxjs';
|
|
|
13
15
|
import { Subject } from 'rxjs';
|
|
14
16
|
import { SkyNumericOptions } from '@skyux/core';
|
|
15
17
|
import { SkyDateRangeCalculation, SkyDateRangeCalculatorId, SkyDateRangeCalculator, SkyDatepickerCalendarChange, SkyTimepickerTimeOutput } from '@skyux/datetime';
|
|
16
|
-
import * as _skyux_filter_bar from '@skyux/filter-bar';
|
|
17
|
-
import { SkyFilterBarFilterItem, SkyFilterItemLookupSearchAsyncArgs, SkyFilterItemModal, SkyFilterItemModalInstance } from '@skyux/filter-bar';
|
|
18
18
|
import { SkyKeyInfoLayoutType, SkyIndicatorDescriptionType, SkyLabelType, SkyToken, SkyTokensMessage, SkyTokenSelectedEventArgs } from '@skyux/indicators';
|
|
19
19
|
import { SkyInlineFormConfig, SkyInlineFormCloseArgs } from '@skyux/inline-form';
|
|
20
20
|
import { SkyActionButtonPermalink, SkyFluidGridGutterSizeType } from '@skyux/layout';
|
|
@@ -301,8 +301,20 @@ interface AutocompleteOption$4 {
|
|
|
301
301
|
name: string;
|
|
302
302
|
}
|
|
303
303
|
|
|
304
|
+
declare class SalesModalComponent$1 implements SkyFilterItemModal {
|
|
305
|
+
#private;
|
|
306
|
+
readonly modalInstance: SkyFilterItemModalInstance<any>;
|
|
307
|
+
protected hideSales: boolean;
|
|
308
|
+
protected modalLabel: string;
|
|
309
|
+
constructor();
|
|
310
|
+
protected applyFilters(): void;
|
|
311
|
+
protected cancel(): void;
|
|
312
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SalesModalComponent$1, never>;
|
|
313
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SalesModalComponent$1, "app-sales-modal", never, {}, {}, never, never, true, never>;
|
|
314
|
+
}
|
|
315
|
+
|
|
304
316
|
/**
|
|
305
|
-
* @title Data manager
|
|
317
|
+
* @title Data manager setup
|
|
306
318
|
*/
|
|
307
319
|
declare class AgGridDataGridDataManagerMultiselectExampleComponent implements OnInit, OnDestroy {
|
|
308
320
|
#private;
|
|
@@ -329,11 +341,13 @@ declare class AgGridDataGridDataManagerMultiselectExampleComponent implements On
|
|
|
329
341
|
};
|
|
330
342
|
jobTitle: AutocompleteOption$4;
|
|
331
343
|
})[];
|
|
344
|
+
protected salesModal: typeof SalesModalComponent$1;
|
|
332
345
|
constructor();
|
|
333
346
|
ngOnInit(): void;
|
|
334
347
|
ngOnDestroy(): void;
|
|
348
|
+
onJobTitleSearchAsync(args: SkyFilterItemLookupSearchAsyncArgs): void;
|
|
335
349
|
static ɵfac: i0.ɵɵFactoryDeclaration<AgGridDataGridDataManagerMultiselectExampleComponent, never>;
|
|
336
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AgGridDataGridDataManagerMultiselectExampleComponent, "app-ag-grid-data-grid-data-manager-
|
|
350
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AgGridDataGridDataManagerMultiselectExampleComponent, "app-ag-grid-data-grid-data-manager-example", never, {}, {}, never, never, true, never>;
|
|
337
351
|
}
|
|
338
352
|
|
|
339
353
|
interface AutocompleteOption$3 {
|
|
@@ -341,6 +355,18 @@ interface AutocompleteOption$3 {
|
|
|
341
355
|
name: string;
|
|
342
356
|
}
|
|
343
357
|
|
|
358
|
+
declare class SalesModalComponent implements SkyFilterItemModal {
|
|
359
|
+
#private;
|
|
360
|
+
readonly modalInstance: SkyFilterItemModalInstance<any>;
|
|
361
|
+
protected hideSales: boolean;
|
|
362
|
+
protected modalLabel: string;
|
|
363
|
+
constructor();
|
|
364
|
+
protected applyFilters(): void;
|
|
365
|
+
protected cancel(): void;
|
|
366
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SalesModalComponent, never>;
|
|
367
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SalesModalComponent, "app-sales-modal", never, {}, {}, never, never, true, never>;
|
|
368
|
+
}
|
|
369
|
+
|
|
344
370
|
/**
|
|
345
371
|
* @title Data manager setup
|
|
346
372
|
*/
|
|
@@ -367,9 +393,11 @@ declare class AgGridDataGridDataManagerExampleComponent implements OnInit, OnDes
|
|
|
367
393
|
};
|
|
368
394
|
jobTitle: AutocompleteOption$3;
|
|
369
395
|
})[];
|
|
396
|
+
protected salesModal: typeof SalesModalComponent;
|
|
370
397
|
constructor();
|
|
371
398
|
ngOnInit(): void;
|
|
372
399
|
ngOnDestroy(): void;
|
|
400
|
+
onJobTitleSearchAsync(args: SkyFilterItemLookupSearchAsyncArgs): void;
|
|
373
401
|
static ɵfac: i0.ɵɵFactoryDeclaration<AgGridDataGridDataManagerExampleComponent, never>;
|
|
374
402
|
static ɵcmp: i0.ɵɵComponentDeclaration<AgGridDataGridDataManagerExampleComponent, "app-ag-grid-data-grid-data-manager-example", never, {}, {}, never, never, true, never>;
|
|
375
403
|
}
|
|
@@ -837,13 +865,28 @@ interface DataManagerDemoRow {
|
|
|
837
865
|
color: string;
|
|
838
866
|
}
|
|
839
867
|
|
|
868
|
+
declare class OrangeModalComponent implements SkyFilterItemModal, OnInit {
|
|
869
|
+
#private;
|
|
870
|
+
protected hideOrange: boolean | undefined;
|
|
871
|
+
protected modalLabel: string;
|
|
872
|
+
readonly modalInstance: SkyFilterItemModalInstance<any>;
|
|
873
|
+
constructor();
|
|
874
|
+
ngOnInit(): void;
|
|
875
|
+
protected applyFilters(): void;
|
|
876
|
+
protected cancel(): void;
|
|
877
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrangeModalComponent, never>;
|
|
878
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OrangeModalComponent, "app-orange-modal", never, {}, {}, never, never, true, never>;
|
|
879
|
+
}
|
|
880
|
+
|
|
840
881
|
/**
|
|
841
882
|
* @title Data manager with basic setup
|
|
842
883
|
*/
|
|
843
|
-
declare class DataManagerBasicExampleComponent
|
|
884
|
+
declare class DataManagerBasicExampleComponent {
|
|
844
885
|
#private;
|
|
845
886
|
protected items: DataManagerDemoRow[];
|
|
846
|
-
|
|
887
|
+
protected readonly orangeModalComponent: typeof OrangeModalComponent;
|
|
888
|
+
constructor();
|
|
889
|
+
onFruitTypeSearchAsync(args: SkyFilterItemLookupSearchAsyncArgs): void;
|
|
847
890
|
static ɵfac: i0.ɵɵFactoryDeclaration<DataManagerBasicExampleComponent, never>;
|
|
848
891
|
static ɵcmp: i0.ɵɵComponentDeclaration<DataManagerBasicExampleComponent, "app-data-manager-basic-example", never, {}, {}, never, never, true, never>;
|
|
849
892
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/code-examples",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.6.1",
|
|
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.6.1",
|
|
27
|
+
"@skyux/ag-grid": "13.6.1",
|
|
28
|
+
"@skyux/angular-tree-component": "13.6.1",
|
|
29
|
+
"@skyux/autonumeric": "13.6.1",
|
|
30
|
+
"@skyux/avatar": "13.6.1",
|
|
31
|
+
"@skyux/colorpicker": "13.6.1",
|
|
32
|
+
"@skyux/core": "13.6.1",
|
|
33
|
+
"@skyux/data-manager": "13.6.1",
|
|
34
|
+
"@skyux/datetime": "13.6.1",
|
|
35
|
+
"@skyux/errors": "13.6.1",
|
|
36
|
+
"@skyux/filter-bar": "13.6.1",
|
|
37
|
+
"@skyux/flyout": "13.6.1",
|
|
38
|
+
"@skyux/forms": "13.6.1",
|
|
39
|
+
"@skyux/help-inline": "13.6.1",
|
|
40
|
+
"@skyux/icon": "13.6.1",
|
|
41
|
+
"@skyux/indicators": "13.6.1",
|
|
42
|
+
"@skyux/inline-form": "13.6.1",
|
|
43
|
+
"@skyux/layout": "13.6.1",
|
|
44
|
+
"@skyux/lists": "13.6.1",
|
|
45
|
+
"@skyux/lookup": "13.6.1",
|
|
46
|
+
"@skyux/modals": "13.6.1",
|
|
47
|
+
"@skyux/navbar": "13.6.1",
|
|
48
|
+
"@skyux/pages": "13.6.1",
|
|
49
|
+
"@skyux/phone-field": "13.6.1",
|
|
50
|
+
"@skyux/popovers": "13.6.1",
|
|
51
|
+
"@skyux/progress-indicator": "13.6.1",
|
|
52
|
+
"@skyux/router": "13.6.1",
|
|
53
|
+
"@skyux/split-view": "13.6.1",
|
|
54
|
+
"@skyux/tabs": "13.6.1",
|
|
55
|
+
"@skyux/text-editor": "13.6.1",
|
|
56
|
+
"@skyux/tiles": "13.6.1",
|
|
57
|
+
"@skyux/toast": "13.6.1",
|
|
58
|
+
"@skyux/validation": "13.6.1",
|
|
59
59
|
"ag-grid-angular": "^34.1.2",
|
|
60
60
|
"ag-grid-community": "^34.1.2"
|
|
61
61
|
},
|