@skyux/code-examples 13.3.1 → 13.4.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 +101 -2
- package/fesm2022/skyux-code-examples.mjs.map +1 -1
- package/index.d.ts +83 -1
- package/package.json +34 -34
package/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ 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 { ITreeState, ITreeOptions } from '@blackbaud/angular-tree-component';
|
|
8
9
|
import { SkyAutonumericOptions } from '@skyux/autonumeric';
|
|
9
10
|
import { SkyFileItem, SkyFileAttachmentClick, SkyFileLink, SkyFileDropChange } from '@skyux/forms';
|
|
10
11
|
import { SkyColorpickerOutput, SkyColorpickerMessage } from '@skyux/colorpicker';
|
|
@@ -637,6 +638,48 @@ declare class AngularTreeComponentAngularTreeHelpKeyExampleComponent {
|
|
|
637
638
|
static ɵcmp: i0.ɵɵComponentDeclaration<AngularTreeComponentAngularTreeHelpKeyExampleComponent, "app-angular-tree-component-angular-tree-help-key-example", never, {}, {}, never, never, true, never>;
|
|
638
639
|
}
|
|
639
640
|
|
|
641
|
+
/**
|
|
642
|
+
* @title Tree view with pre selected nodes example
|
|
643
|
+
*/
|
|
644
|
+
declare class AngularTreeComponentAngularTreePreselectedNodesExampleComponent {
|
|
645
|
+
protected nodes: {
|
|
646
|
+
id: string;
|
|
647
|
+
name: string;
|
|
648
|
+
isExpanded: boolean;
|
|
649
|
+
helpPopoverContent: string;
|
|
650
|
+
children: ({
|
|
651
|
+
id: string;
|
|
652
|
+
name: string;
|
|
653
|
+
isExpanded: boolean;
|
|
654
|
+
helpPopoverContent: string;
|
|
655
|
+
helpPopoverTitle: string;
|
|
656
|
+
children: {
|
|
657
|
+
id: string;
|
|
658
|
+
name: string;
|
|
659
|
+
}[];
|
|
660
|
+
} | {
|
|
661
|
+
id: string;
|
|
662
|
+
name: string;
|
|
663
|
+
isExpanded: boolean;
|
|
664
|
+
children: ({
|
|
665
|
+
id: string;
|
|
666
|
+
name: string;
|
|
667
|
+
helpPopoverContent: string;
|
|
668
|
+
} | {
|
|
669
|
+
id: string;
|
|
670
|
+
name: string;
|
|
671
|
+
helpPopoverContent?: undefined;
|
|
672
|
+
})[];
|
|
673
|
+
helpPopoverContent?: undefined;
|
|
674
|
+
helpPopoverTitle?: undefined;
|
|
675
|
+
})[];
|
|
676
|
+
}[];
|
|
677
|
+
protected state: ITreeState;
|
|
678
|
+
protected options: ITreeOptions;
|
|
679
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AngularTreeComponentAngularTreePreselectedNodesExampleComponent, never>;
|
|
680
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AngularTreeComponentAngularTreePreselectedNodesExampleComponent, "app-angular-tree-component-angular-tree-preselected-nodes-example", never, {}, {}, never, never, true, never>;
|
|
681
|
+
}
|
|
682
|
+
|
|
640
683
|
/**
|
|
641
684
|
* @title Currency
|
|
642
685
|
*/
|
|
@@ -1934,6 +1977,45 @@ declare class ListsInfiniteScrollRepeaterExampleComponent implements OnInit {
|
|
|
1934
1977
|
static ɵcmp: i0.ɵɵComponentDeclaration<ListsInfiniteScrollRepeaterExampleComponent, "app-lists-infinite-scroll-repeater-example", never, {}, {}, never, never, true, never>;
|
|
1935
1978
|
}
|
|
1936
1979
|
|
|
1980
|
+
/**
|
|
1981
|
+
* @title List summary with basic setup
|
|
1982
|
+
*/
|
|
1983
|
+
declare class ListsListSummaryBasicExampleComponent {
|
|
1984
|
+
protected summaryItems: ({
|
|
1985
|
+
label: string;
|
|
1986
|
+
value: number;
|
|
1987
|
+
helpPopoverContent: string;
|
|
1988
|
+
helpPopoverTitle: string;
|
|
1989
|
+
valueFormat?: undefined;
|
|
1990
|
+
} | {
|
|
1991
|
+
label: string;
|
|
1992
|
+
value: number;
|
|
1993
|
+
helpPopoverContent: string;
|
|
1994
|
+
helpPopoverTitle?: undefined;
|
|
1995
|
+
valueFormat?: undefined;
|
|
1996
|
+
} | {
|
|
1997
|
+
label: string;
|
|
1998
|
+
value: number;
|
|
1999
|
+
valueFormat: {
|
|
2000
|
+
format: string;
|
|
2001
|
+
digitsInfo?: undefined;
|
|
2002
|
+
};
|
|
2003
|
+
helpPopoverContent: string;
|
|
2004
|
+
helpPopoverTitle?: undefined;
|
|
2005
|
+
} | {
|
|
2006
|
+
label: string;
|
|
2007
|
+
value: number;
|
|
2008
|
+
valueFormat: {
|
|
2009
|
+
format: string;
|
|
2010
|
+
digitsInfo: string;
|
|
2011
|
+
};
|
|
2012
|
+
helpPopoverContent?: undefined;
|
|
2013
|
+
helpPopoverTitle?: undefined;
|
|
2014
|
+
})[];
|
|
2015
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListsListSummaryBasicExampleComponent, never>;
|
|
2016
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListsListSummaryBasicExampleComponent, "app-lists-list-summary-basic-example", never, {}, {}, never, never, true, never>;
|
|
2017
|
+
}
|
|
2018
|
+
|
|
1937
2019
|
/**
|
|
1938
2020
|
* @title Paging with basic setup
|
|
1939
2021
|
*/
|
|
@@ -2952,4 +3034,4 @@ declare class ValidationUrlValidationDirectiveExampleComponent {
|
|
|
2952
3034
|
static ɵcmp: i0.ɵɵComponentDeclaration<ValidationUrlValidationDirectiveExampleComponent, "app-validation-url-validation-directive-example", never, {}, {}, never, never, true, never>;
|
|
2953
3035
|
}
|
|
2954
3036
|
|
|
2955
|
-
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, PagesPageDataManagerSplitViewFitLayoutExampleComponent, 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 };
|
|
3037
|
+
export { ActionBarsSummaryActionBarBasicExampleComponent, ActionBarsSummaryActionBarErrorExampleComponent, ActionBarsSummaryActionBarModalExampleComponent, ActionBarsSummaryActionBarTabExampleComponent, AgGridDataEntryGridBasicExampleComponent, AgGridDataEntryGridDataManagerAddedExampleComponent, AgGridDataEntryGridFocusExampleComponent, AgGridDataEntryGridInlineHelpExampleComponent, AgGridDataGridBasicExampleComponent, AgGridDataGridBasicMultiselectExampleComponent, AgGridDataGridDataManagerExampleComponent, AgGridDataGridDataManagerMultiselectExampleComponent, AgGridDataGridInlineHelpExampleComponent, AgGridDataGridPagingExampleComponent, AgGridDataGridTemplateRefColumnExampleComponent, AgGridDataGridTopScrollExampleComponent, AngularTreeComponentAngularTreeBasicExampleComponent, AngularTreeComponentAngularTreeHelpKeyExampleComponent, AngularTreeComponentAngularTreePreselectedNodesExampleComponent, 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, ListsListSummaryBasicExampleComponent, 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, PagesPageDataManagerSplitViewFitLayoutExampleComponent, 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.4.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.4.0",
|
|
27
|
+
"@skyux/ag-grid": "13.4.0",
|
|
28
|
+
"@skyux/angular-tree-component": "13.4.0",
|
|
29
|
+
"@skyux/autonumeric": "13.4.0",
|
|
30
|
+
"@skyux/avatar": "13.4.0",
|
|
31
|
+
"@skyux/colorpicker": "13.4.0",
|
|
32
|
+
"@skyux/core": "13.4.0",
|
|
33
|
+
"@skyux/data-manager": "13.4.0",
|
|
34
|
+
"@skyux/datetime": "13.4.0",
|
|
35
|
+
"@skyux/errors": "13.4.0",
|
|
36
|
+
"@skyux/filter-bar": "13.4.0",
|
|
37
|
+
"@skyux/flyout": "13.4.0",
|
|
38
|
+
"@skyux/forms": "13.4.0",
|
|
39
|
+
"@skyux/help-inline": "13.4.0",
|
|
40
|
+
"@skyux/icon": "13.4.0",
|
|
41
|
+
"@skyux/indicators": "13.4.0",
|
|
42
|
+
"@skyux/inline-form": "13.4.0",
|
|
43
|
+
"@skyux/layout": "13.4.0",
|
|
44
|
+
"@skyux/lists": "13.4.0",
|
|
45
|
+
"@skyux/lookup": "13.4.0",
|
|
46
|
+
"@skyux/modals": "13.4.0",
|
|
47
|
+
"@skyux/navbar": "13.4.0",
|
|
48
|
+
"@skyux/pages": "13.4.0",
|
|
49
|
+
"@skyux/phone-field": "13.4.0",
|
|
50
|
+
"@skyux/popovers": "13.4.0",
|
|
51
|
+
"@skyux/progress-indicator": "13.4.0",
|
|
52
|
+
"@skyux/router": "13.4.0",
|
|
53
|
+
"@skyux/split-view": "13.4.0",
|
|
54
|
+
"@skyux/tabs": "13.4.0",
|
|
55
|
+
"@skyux/text-editor": "13.4.0",
|
|
56
|
+
"@skyux/tiles": "13.4.0",
|
|
57
|
+
"@skyux/toast": "13.4.0",
|
|
58
|
+
"@skyux/validation": "13.4.0",
|
|
59
59
|
"ag-grid-angular": "^34.1.2",
|
|
60
60
|
"ag-grid-community": "^34.1.2"
|
|
61
61
|
},
|