@skyux/code-examples 13.1.0 → 13.2.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 +131 -150
- package/fesm2022/skyux-code-examples.mjs.map +1 -1
- package/index.d.ts +46 -57
- package/package.json +34 -34
package/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import { Subject } from 'rxjs';
|
|
|
13
13
|
import { SkyNumericOptions } from '@skyux/core';
|
|
14
14
|
import { SkyDateRangeCalculation, SkyDateRangeCalculatorId, SkyDateRangeCalculator, SkyDatepickerCalendarChange, SkyTimepickerTimeOutput } from '@skyux/datetime';
|
|
15
15
|
import * as _skyux_filter_bar from '@skyux/filter-bar';
|
|
16
|
-
import {
|
|
16
|
+
import { SkyFilterBarFilterItem, SkyFilterItemLookupSearchAsyncArgs, SkyFilterItemModal, SkyFilterItemModalInstance } from '@skyux/filter-bar';
|
|
17
17
|
import { SkyKeyInfoLayoutType, SkyIndicatorDescriptionType, SkyLabelType, SkyToken, SkyTokensMessage, SkyTokenSelectedEventArgs } from '@skyux/indicators';
|
|
18
18
|
import { SkyInlineFormConfig, SkyInlineFormCloseArgs } from '@skyux/inline-form';
|
|
19
19
|
import { SkyActionButtonPermalink, SkyFluidGridGutterSizeType } from '@skyux/layout';
|
|
@@ -940,84 +940,73 @@ declare class ErrorsErrorModalExampleComponent {
|
|
|
940
940
|
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorsErrorModalExampleComponent, "app-errors-error-modal-example", never, {}, {}, never, never, true, never>;
|
|
941
941
|
}
|
|
942
942
|
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
declare class CommunityConnectionFilterModalComponent implements SkyFilterItemModal<FilterItems> {
|
|
948
|
-
#private;
|
|
949
|
-
readonly modalInstance: SkyFilterItemModalInstance<FilterItems>;
|
|
950
|
-
protected headingText: string;
|
|
951
|
-
protected items: _skyux_filter_bar.SkyFilterBarFilterValue[];
|
|
952
|
-
protected selectedValue: _skyux_filter_bar.SkyFilterBarFilterValue | undefined;
|
|
953
|
-
protected formGroup: FormGroup;
|
|
954
|
-
protected save(): void;
|
|
955
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CommunityConnectionFilterModalComponent, never>;
|
|
956
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CommunityConnectionFilterModalComponent, "app-community-connection-filter-modal", never, {}, {}, never, never, true, never>;
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
declare class CurrentGradeFilterModalComponent implements SkyFilterItemModal<FilterItems> {
|
|
943
|
+
/**
|
|
944
|
+
* @title Filter bar with lookup filter example
|
|
945
|
+
*/
|
|
946
|
+
declare class FilterBarLookupExampleComponent {
|
|
960
947
|
#private;
|
|
961
|
-
readonly
|
|
962
|
-
protected
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
protected formGroup: FormGroup;
|
|
966
|
-
protected save(): void;
|
|
967
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CurrentGradeFilterModalComponent, never>;
|
|
968
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CurrentGradeFilterModalComponent, "app-current-grade-filter-modal", never, {}, {}, never, never, true, never>;
|
|
948
|
+
protected readonly appliedFilters: i0.ModelSignal<SkyFilterBarFilterItem[] | undefined>;
|
|
949
|
+
protected onSearchAsync(args: SkyFilterItemLookupSearchAsyncArgs): void;
|
|
950
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterBarLookupExampleComponent, never>;
|
|
951
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarLookupExampleComponent, "app-filter-bar-lookup-example", never, { "appliedFilters": { "alias": "appliedFilters"; "required": false; "isSignal": true; }; }, { "appliedFilters": "appliedFiltersChange"; }, never, never, true, never>;
|
|
969
952
|
}
|
|
970
953
|
|
|
971
|
-
declare class
|
|
954
|
+
declare class FilterModalComponent implements SkyFilterItemModal {
|
|
972
955
|
#private;
|
|
973
|
-
readonly modalInstance: SkyFilterItemModalInstance<
|
|
956
|
+
readonly modalInstance: SkyFilterItemModalInstance<any>;
|
|
974
957
|
protected headingText: string;
|
|
975
|
-
protected
|
|
958
|
+
protected options: ({
|
|
959
|
+
value: null;
|
|
960
|
+
displayValue: string;
|
|
961
|
+
} | {
|
|
962
|
+
value: boolean;
|
|
963
|
+
displayValue: string;
|
|
964
|
+
})[];
|
|
976
965
|
protected selectedValue: _skyux_filter_bar.SkyFilterBarFilterValue | undefined;
|
|
977
966
|
protected formGroup: FormGroup;
|
|
978
967
|
protected save(): void;
|
|
979
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
980
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
968
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterModalComponent, never>;
|
|
969
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterModalComponent, "app-filter-modal", never, {}, {}, never, never, true, never>;
|
|
981
970
|
}
|
|
982
971
|
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
protected
|
|
988
|
-
protected
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RoleFilterModalComponent, never>;
|
|
992
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RoleFilterModalComponent, "app-role-filter-modal", never, {}, {}, never, never, true, never>;
|
|
972
|
+
/**
|
|
973
|
+
* @title Filter bar with modal filter example
|
|
974
|
+
*/
|
|
975
|
+
declare class FilterBarModalExampleComponent {
|
|
976
|
+
protected readonly appliedFilters: i0.ModelSignal<SkyFilterBarFilterItem[] | undefined>;
|
|
977
|
+
protected modalComponent: typeof FilterModalComponent;
|
|
978
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterBarModalExampleComponent, never>;
|
|
979
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarModalExampleComponent, "app-filter-bar-modal-example", never, { "appliedFilters": { "alias": "appliedFilters"; "required": false; "isSignal": true; }; }, { "appliedFilters": "appliedFiltersChange"; }, never, never, true, never>;
|
|
993
980
|
}
|
|
994
981
|
|
|
995
|
-
declare class
|
|
982
|
+
declare class ApplicationFeeFilterModalComponent implements SkyFilterItemModal {
|
|
996
983
|
#private;
|
|
997
|
-
readonly modalInstance: SkyFilterItemModalInstance<
|
|
984
|
+
readonly modalInstance: SkyFilterItemModalInstance<any>;
|
|
998
985
|
protected headingText: string;
|
|
999
|
-
protected
|
|
986
|
+
protected options: ({
|
|
987
|
+
value: null;
|
|
988
|
+
displayValue: string;
|
|
989
|
+
} | {
|
|
990
|
+
value: boolean;
|
|
991
|
+
displayValue: string;
|
|
992
|
+
})[];
|
|
1000
993
|
protected selectedValue: _skyux_filter_bar.SkyFilterBarFilterValue | undefined;
|
|
1001
994
|
protected formGroup: FormGroup;
|
|
1002
995
|
protected save(): void;
|
|
1003
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
1004
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
996
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationFeeFilterModalComponent, never>;
|
|
997
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ApplicationFeeFilterModalComponent, "app-application-fee-filter-modal", never, {}, {}, never, never, true, never>;
|
|
1005
998
|
}
|
|
1006
999
|
|
|
1007
1000
|
/**
|
|
1008
|
-
* @title Filter bar
|
|
1001
|
+
* @title Filter bar with selectable filters example
|
|
1009
1002
|
*/
|
|
1010
|
-
declare class
|
|
1003
|
+
declare class FilterBarSelectableExampleComponent {
|
|
1011
1004
|
protected readonly appliedFilters: i0.ModelSignal<SkyFilterBarFilterItem[] | undefined>;
|
|
1012
1005
|
protected readonly selectedFilterIds: i0.ModelSignal<string[] | undefined>;
|
|
1013
|
-
protected
|
|
1014
|
-
protected
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
protected staffAssignedModal: typeof StaffAssignedFilterModalComponent;
|
|
1018
|
-
protected onModalOpened(args: SkyFilterItemModalOpenedArgs<FilterItems>): void;
|
|
1019
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FilterBarBasicExampleComponent, never>;
|
|
1020
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarBasicExampleComponent, "app-filter-bar-basic-example", never, { "appliedFilters": { "alias": "appliedFilters"; "required": false; "isSignal": true; }; "selectedFilterIds": { "alias": "selectedFilterIds"; "required": false; "isSignal": true; }; }, { "appliedFilters": "appliedFiltersChange"; "selectedFilterIds": "selectedFilterIdsChange"; }, never, never, true, never>;
|
|
1006
|
+
protected applicationFeeModal: typeof ApplicationFeeFilterModalComponent;
|
|
1007
|
+
protected onSearchAsync(args: SkyFilterItemLookupSearchAsyncArgs): void;
|
|
1008
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterBarSelectableExampleComponent, never>;
|
|
1009
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterBarSelectableExampleComponent, "app-filter-bar-selectable-example", never, { "appliedFilters": { "alias": "appliedFilters"; "required": false; "isSignal": true; }; "selectedFilterIds": { "alias": "selectedFilterIds"; "required": false; "isSignal": true; }; }, { "appliedFilters": "appliedFiltersChange"; "selectedFilterIds": "selectedFilterIdsChange"; }, never, never, true, never>;
|
|
1021
1010
|
}
|
|
1022
1011
|
|
|
1023
1012
|
/**
|
|
@@ -2917,4 +2906,4 @@ declare class ValidationUrlValidationDirectiveExampleComponent {
|
|
|
2917
2906
|
static ɵcmp: i0.ɵɵComponentDeclaration<ValidationUrlValidationDirectiveExampleComponent, "app-validation-url-validation-directive-example", never, {}, {}, never, never, true, never>;
|
|
2918
2907
|
}
|
|
2919
2908
|
|
|
2920
|
-
export { ActionBarsSummaryActionBarBasicExampleComponent, ActionBarsSummaryActionBarErrorExampleComponent, ActionBarsSummaryActionBarModalExampleComponent, ActionBarsSummaryActionBarTabExampleComponent, AgGridDataEntryGridBasicExampleComponent, AgGridDataEntryGridDataManagerAddedExampleComponent, AgGridDataEntryGridFocusExampleComponent, AgGridDataEntryGridInlineHelpExampleComponent, AgGridDataGridBasicExampleComponent, AgGridDataGridBasicMultiselectExampleComponent, AgGridDataGridDataManagerExampleComponent, AgGridDataGridDataManagerMultiselectExampleComponent, AgGridDataGridInlineHelpExampleComponent, AgGridDataGridPagingExampleComponent, AgGridDataGridTemplateRefColumnExampleComponent, AgGridDataGridTopScrollExampleComponent, AngularTreeComponentAngularTreeBasicExampleComponent, AngularTreeComponentAngularTreeHelpKeyExampleComponent, AutonumericCurrencyExampleComponent, AutonumericInternationalFormattingExampleComponent, AutonumericOptionsProviderExampleComponent, AutonumericPresetExampleComponent, AvatarExampleComponent, ColorpickerBasicExampleComponent, ColorpickerHelpKeyExampleComponent, ColorpickerProgrammaticExampleComponent, CoreIdExampleComponent, CoreMediaQueryBasicExampleComponent, CoreMediaQueryResponsiveHostExampleComponent, CoreNumericBasicExampleComponent, DataManagerBasicExampleComponent, DatetimeDatePipeBasicExampleComponent, DatetimeDateRangePickerBasicExampleComponent, DatetimeDateRangePickerCustomCalculatorExampleComponent, DatetimeDateRangePickerHelpKeyExampleComponent, DatetimeDatepickerBasicExampleComponent, DatetimeDatepickerCustomDatesExampleComponent, DatetimeDatepickerFuzzyExampleComponent, DatetimeTimepickerBasicExampleComponent, ErrorsErrorEmbeddedExampleComponent, ErrorsErrorModalExampleComponent,
|
|
2909
|
+
export { ActionBarsSummaryActionBarBasicExampleComponent, ActionBarsSummaryActionBarErrorExampleComponent, ActionBarsSummaryActionBarModalExampleComponent, ActionBarsSummaryActionBarTabExampleComponent, AgGridDataEntryGridBasicExampleComponent, AgGridDataEntryGridDataManagerAddedExampleComponent, AgGridDataEntryGridFocusExampleComponent, AgGridDataEntryGridInlineHelpExampleComponent, AgGridDataGridBasicExampleComponent, AgGridDataGridBasicMultiselectExampleComponent, AgGridDataGridDataManagerExampleComponent, AgGridDataGridDataManagerMultiselectExampleComponent, AgGridDataGridInlineHelpExampleComponent, AgGridDataGridPagingExampleComponent, AgGridDataGridTemplateRefColumnExampleComponent, AgGridDataGridTopScrollExampleComponent, AngularTreeComponentAngularTreeBasicExampleComponent, AngularTreeComponentAngularTreeHelpKeyExampleComponent, AutonumericCurrencyExampleComponent, AutonumericInternationalFormattingExampleComponent, AutonumericOptionsProviderExampleComponent, AutonumericPresetExampleComponent, AvatarExampleComponent, ColorpickerBasicExampleComponent, ColorpickerHelpKeyExampleComponent, ColorpickerProgrammaticExampleComponent, CoreIdExampleComponent, CoreMediaQueryBasicExampleComponent, CoreMediaQueryResponsiveHostExampleComponent, CoreNumericBasicExampleComponent, DataManagerBasicExampleComponent, DatetimeDatePipeBasicExampleComponent, DatetimeDateRangePickerBasicExampleComponent, DatetimeDateRangePickerCustomCalculatorExampleComponent, DatetimeDateRangePickerHelpKeyExampleComponent, DatetimeDatepickerBasicExampleComponent, DatetimeDatepickerCustomDatesExampleComponent, DatetimeDatepickerFuzzyExampleComponent, DatetimeTimepickerBasicExampleComponent, ErrorsErrorEmbeddedExampleComponent, ErrorsErrorModalExampleComponent, FilterBarLookupExampleComponent, FilterBarModalExampleComponent, FilterBarSelectableExampleComponent, FlyoutBasicExampleComponent, FlyoutCustomHeadersExampleComponent, FormsCharacterCountExampleComponent, FormsCheckboxBasicExampleComponent, FormsCheckboxHelpKeyExampleComponent, FormsCheckboxIconGroupExampleComponent, FormsFieldGroupBasicExampleComponent, FormsFieldGroupHelpKeyExampleComponent, FormsFileAttachmentBasicExampleComponent, FormsFileAttachmentHelpKeyExampleComponent, FormsFileDropBasicExampleComponent, FormsFileDropHelpKeyExampleComponent, FormsInputBoxBasicExampleComponent, FormsInputBoxWithCustomFormErrorsExampleComponent, FormsRadioHelpKeyExampleComponent, FormsRadioIconExampleComponent, FormsRadioStandardExampleComponent, FormsSelectionBoxCheckboxExampleComponent, FormsSelectionBoxRadioExampleComponent, FormsToggleSwitchBasicExampleComponent, FormsToggleSwitchHelpKeyExampleComponent, HelpInlineActionClickExampleComponent, HelpInlineHelpKeyExampleComponent, HelpInlinePopoverExampleComponent, IconBasicExampleComponent, IconIconButtonExampleComponent, IndicatorsAlertBasicExampleComponent, IndicatorsIllustrationBasicExampleComponent, IndicatorsKeyInfoBasicExampleComponent, IndicatorsKeyInfoHelpKeyExampleComponent, IndicatorsLabelBasicExampleComponent, IndicatorsStatusIndicatorBasicExampleComponent, IndicatorsStatusIndicatorHelpKeyExampleComponent, IndicatorsTextHighlightBasicExampleComponent, IndicatorsTokensBasicExampleComponent, IndicatorsTokensCustomExampleComponent, IndicatorsWaitElementExampleComponent, IndicatorsWaitPageExampleComponent, InlineFormBasicExampleComponent, InlineFormCustomButtonsExampleComponent, InlineFormRepeatersExampleComponent, LayoutActionButtonBasicExampleComponent, LayoutActionButtonPermalinkExampleComponent, LayoutBackToTopInfiniteScrollExampleComponent, LayoutBackToTopRepeaterExampleComponent, LayoutBoxBasicExampleComponent, LayoutBoxHelpKeyExampleComponent, LayoutCardBasicExampleComponent, LayoutDefinitionListBasicExampleComponent, LayoutDescriptionListHelpKeyExampleComponent, LayoutDescriptionListHorizontalExampleComponent, LayoutDescriptionListInlineHelpExampleComponent, LayoutDescriptionListLongDescriptionExampleComponent, LayoutDescriptionListVerticalExampleComponent, LayoutFluidGridExampleComponent, LayoutFormatExampleComponent, LayoutInlineDeleteCustomExampleComponent, LayoutInlineDeleteRepeaterExampleComponent, LayoutPageSummaryBasicExampleComponent, LayoutTextExpandInlineExampleComponent, LayoutTextExpandModalExampleComponent, LayoutTextExpandNewlineExampleComponent, LayoutTextExpandRepeaterExampleComponent, LayoutToolbarBasicExampleComponent, LayoutToolbarSectionedExampleComponent, ListsFilterInlineExampleComponent, ListsFilterModalExampleComponent, ListsInfiniteScrollRepeaterExampleComponent, ListsPagingBasicExampleComponent, ListsPagingWithContentExampleComponent, ListsRepeaterAddRemoveExampleComponent, ListsRepeaterBasicExampleComponent, ListsRepeaterInlineFormExampleComponent, ListsSortBasicExampleComponent, LookupAddItemExampleComponent, LookupAutocompleteAdvancedExampleComponent, LookupAutocompleteAnyValueExampleComponent, LookupAutocompleteBasicExampleComponent, LookupAutocompleteCustomSearchExampleComponent, LookupAutocompleteSearchFiltersExampleComponent, LookupCountryFieldBasicExampleComponent, LookupCustomPickerExampleComponent, LookupMultiSelectExampleComponent, LookupResultTemplatesExampleComponent, LookupSearchBasicExampleComponent, LookupSelectionModalAddItemExampleComponent, LookupSelectionModalBasicExampleComponent, LookupSingleSelectExampleComponent, ModalsConfirmBasicWithControllerExampleComponent, ModalsConfirmBasicWithHarnessExampleComponent, ModalsModalBasicWithControllerExampleComponent, ModalsModalBasicWithHarnessExampleComponent, ModalsModalBasicWithHarnessHelpKeyExampleComponent, ModalsModalWithErrorExampleComponent, NavbarExampleComponent, PagesActionHubExampleComponent, PagesPageHomePageBlocksLayoutExampleComponent, PagesPageListPageListLayoutExampleComponent, PagesPageListPageTabsLayoutExampleComponent, PagesPageRecordPageBlocksLayoutExampleComponent, PagesPageRecordPageTabsLayoutExampleComponent, PagesPageSplitViewPageFitLayoutExampleComponent, PhoneFieldBasicExampleComponent, PopoversDropdownBasicExampleComponent, PopoversPopoverBasicExampleComponent, PopoversPopoverProgrammaticExampleComponent, ProgressIndicatorPassiveIndicatorBasicExampleComponent, ProgressIndicatorWaterfallIndicatorBasicExampleComponent, ProgressIndicatorWizardBasicExampleComponent, RouterHrefBasicExampleComponent, SplitViewBasicExampleComponent, SplitViewPageBoundExampleComponent, TabsDynamicAddCloseExampleComponent, TabsDynamicExampleComponent, TabsSectionedFormModalExampleComponent, TabsStaticAddCloseExampleComponent, TabsStaticExampleComponent, TabsVerticalTabsBasicExampleComponent, TabsVerticalTabsGroupedExampleComponent, TabsVerticalTabsMixedExampleComponent, TabsWizardBasicExampleComponent, TextEditorExampleComponent, TextEditorHelpKeyExampleComponent, TextEditorRichTextDisplayExampleComponent, TilesBasicExampleComponent, ToastBasicExampleComponent, ToastCustomComponentExampleComponent, ValidationEmailValidationControlValidatorExampleComponent, ValidationEmailValidationDirectiveExampleComponent, ValidationUrlValidationControlValidatorExampleComponent, ValidationUrlValidationDirectiveExampleComponent };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/code-examples",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.2.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.2.0",
|
|
27
|
+
"@skyux/ag-grid": "13.2.0",
|
|
28
|
+
"@skyux/angular-tree-component": "13.2.0",
|
|
29
|
+
"@skyux/autonumeric": "13.2.0",
|
|
30
|
+
"@skyux/avatar": "13.2.0",
|
|
31
|
+
"@skyux/colorpicker": "13.2.0",
|
|
32
|
+
"@skyux/core": "13.2.0",
|
|
33
|
+
"@skyux/data-manager": "13.2.0",
|
|
34
|
+
"@skyux/datetime": "13.2.0",
|
|
35
|
+
"@skyux/errors": "13.2.0",
|
|
36
|
+
"@skyux/filter-bar": "13.2.0",
|
|
37
|
+
"@skyux/flyout": "13.2.0",
|
|
38
|
+
"@skyux/forms": "13.2.0",
|
|
39
|
+
"@skyux/help-inline": "13.2.0",
|
|
40
|
+
"@skyux/icon": "13.2.0",
|
|
41
|
+
"@skyux/indicators": "13.2.0",
|
|
42
|
+
"@skyux/inline-form": "13.2.0",
|
|
43
|
+
"@skyux/layout": "13.2.0",
|
|
44
|
+
"@skyux/lists": "13.2.0",
|
|
45
|
+
"@skyux/lookup": "13.2.0",
|
|
46
|
+
"@skyux/modals": "13.2.0",
|
|
47
|
+
"@skyux/navbar": "13.2.0",
|
|
48
|
+
"@skyux/pages": "13.2.0",
|
|
49
|
+
"@skyux/phone-field": "13.2.0",
|
|
50
|
+
"@skyux/popovers": "13.2.0",
|
|
51
|
+
"@skyux/progress-indicator": "13.2.0",
|
|
52
|
+
"@skyux/router": "13.2.0",
|
|
53
|
+
"@skyux/split-view": "13.2.0",
|
|
54
|
+
"@skyux/tabs": "13.2.0",
|
|
55
|
+
"@skyux/text-editor": "13.2.0",
|
|
56
|
+
"@skyux/tiles": "13.2.0",
|
|
57
|
+
"@skyux/toast": "13.2.0",
|
|
58
|
+
"@skyux/validation": "13.2.0",
|
|
59
59
|
"ag-grid-angular": "^34.1.2",
|
|
60
60
|
"ag-grid-community": "^34.1.2"
|
|
61
61
|
},
|