@skyux/code-examples 13.0.0-alpha.0 → 13.0.0-alpha.10

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
@@ -863,14 +863,14 @@ declare class DatetimeDateRangePickerHelpKeyExampleComponent {
863
863
  }
864
864
 
865
865
  interface DemoForm$a {
866
- startDate: FormControl<Date | null>;
866
+ startDate: FormControl<Date | string | null>;
867
867
  }
868
868
  /**
869
869
  * @title Datepicker with basic setup
870
870
  */
871
871
  declare class DatetimeDatepickerBasicExampleComponent {
872
872
  protected formGroup: FormGroup<DemoForm$a>;
873
- protected startDate: FormControl<Date | null>;
873
+ protected startDate: FormControl<Date | string | null>;
874
874
  protected hintText: string;
875
875
  helpPopoverContent: string;
876
876
  constructor();
@@ -1163,7 +1163,7 @@ declare class FormsRadioHelpKeyExampleComponent {
1163
1163
  }
1164
1164
 
1165
1165
  interface Item$6 {
1166
- icon: string;
1166
+ iconName: string;
1167
1167
  label: string;
1168
1168
  name: string;
1169
1169
  }
@@ -1212,7 +1212,7 @@ declare class FormsSelectionBoxCheckboxExampleComponent {
1212
1212
  protected checkboxControls: FormControl[] | undefined;
1213
1213
  protected selectionBoxes: {
1214
1214
  description: string;
1215
- icon: string;
1215
+ iconName: string;
1216
1216
  name: string;
1217
1217
  selected?: boolean;
1218
1218
  }[];
@@ -1255,12 +1255,28 @@ declare class FormsToggleSwitchHelpKeyExampleComponent {
1255
1255
  }
1256
1256
 
1257
1257
  /**
1258
- * @title Help inline button with basic setup
1258
+ * @title Help inline button with action click
1259
1259
  */
1260
- declare class HelpInlineBasicExampleComponent {
1260
+ declare class HelpInlineActionClickExampleComponent {
1261
1261
  onActionClick(): void;
1262
- static ɵfac: i0.ɵɵFactoryDeclaration<HelpInlineBasicExampleComponent, never>;
1263
- static ɵcmp: i0.ɵɵComponentDeclaration<HelpInlineBasicExampleComponent, "app-help-inline-basic-example", never, {}, {}, never, never, true, never>;
1262
+ static ɵfac: i0.ɵɵFactoryDeclaration<HelpInlineActionClickExampleComponent, never>;
1263
+ static ɵcmp: i0.ɵɵComponentDeclaration<HelpInlineActionClickExampleComponent, "app-help-inline-action-click-example", never, {}, {}, never, never, true, never>;
1264
+ }
1265
+
1266
+ /**
1267
+ * @title Help inline with help key
1268
+ */
1269
+ declare class HelpInlineHelpKeyExampleComponent {
1270
+ static ɵfac: i0.ɵɵFactoryDeclaration<HelpInlineHelpKeyExampleComponent, never>;
1271
+ static ɵcmp: i0.ɵɵComponentDeclaration<HelpInlineHelpKeyExampleComponent, "app-help-inline-help-key-example", never, {}, {}, never, never, true, never>;
1272
+ }
1273
+
1274
+ /**
1275
+ * @title Help inline button with popover
1276
+ */
1277
+ declare class HelpInlinePopoverExampleComponent {
1278
+ static ɵfac: i0.ɵɵFactoryDeclaration<HelpInlinePopoverExampleComponent, never>;
1279
+ static ɵcmp: i0.ɵɵComponentDeclaration<HelpInlinePopoverExampleComponent, "app-help-inline-popover-example", never, {}, {}, never, never, true, never>;
1264
1280
  }
1265
1281
 
1266
1282
  /**
@@ -1717,15 +1733,6 @@ declare class LayoutPageSummaryBasicExampleComponent {
1717
1733
  static ɵcmp: i0.ɵɵComponentDeclaration<LayoutPageSummaryBasicExampleComponent, "app-layout-page-summary-basic-example", never, {}, {}, never, never, true, never>;
1718
1734
  }
1719
1735
 
1720
- /**
1721
- * @title Page with basic setup
1722
- * @docsDemoHidden
1723
- */
1724
- declare class LayoutPageLayoutFitExampleComponent {
1725
- static ɵfac: i0.ɵɵFactoryDeclaration<LayoutPageLayoutFitExampleComponent, never>;
1726
- static ɵcmp: i0.ɵɵComponentDeclaration<LayoutPageLayoutFitExampleComponent, "app-layout-page-layout-fit-example", never, {}, {}, never, never, true, never>;
1727
- }
1728
-
1729
1736
  /**
1730
1737
  * @title Text expand repeater with basic setup
1731
1738
  */
@@ -2665,7 +2672,7 @@ declare class TabsVerticalTabsBasicExampleComponent {
2665
2672
  static ɵcmp: i0.ɵɵComponentDeclaration<TabsVerticalTabsBasicExampleComponent, "app-tabs-vertical-tabs-basic-example", never, {}, {}, never, never, true, never>;
2666
2673
  }
2667
2674
 
2668
- interface TabGroup {
2675
+ interface TabGroup$1 {
2669
2676
  heading: string;
2670
2677
  isOpen: boolean;
2671
2678
  isDisabled: boolean;
@@ -2682,11 +2689,33 @@ interface TabGroup {
2682
2689
  * @title Vertical tabs with grouped tabs
2683
2690
  */
2684
2691
  declare class TabsVerticalTabsGroupedExampleComponent {
2685
- protected groups: TabGroup[];
2692
+ protected groups: TabGroup$1[];
2686
2693
  static ɵfac: i0.ɵɵFactoryDeclaration<TabsVerticalTabsGroupedExampleComponent, never>;
2687
2694
  static ɵcmp: i0.ɵɵComponentDeclaration<TabsVerticalTabsGroupedExampleComponent, "app-tabs-vertical-tabs-grouped-example", never, {}, {}, never, never, true, never>;
2688
2695
  }
2689
2696
 
2697
+ interface TabGroup {
2698
+ heading: string;
2699
+ isOpen: boolean;
2700
+ isDisabled?: boolean;
2701
+ subTabs: {
2702
+ tabHeading: string;
2703
+ content: string;
2704
+ tabHeaderCount?: number;
2705
+ active?: boolean;
2706
+ disabled?: boolean;
2707
+ }[];
2708
+ }
2709
+
2710
+ /**
2711
+ * @title Vertical tabs with grouped and ungrouped tabs
2712
+ */
2713
+ declare class TabsVerticalTabsMixedExampleComponent {
2714
+ protected groupedTabs: TabGroup[];
2715
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabsVerticalTabsMixedExampleComponent, never>;
2716
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabsVerticalTabsMixedExampleComponent, "app-tabs-vertical-tabs-mixed-example", never, {}, {}, never, never, true, never>;
2717
+ }
2718
+
2690
2719
  /**
2691
2720
  * @title Wizard in a modal
2692
2721
  */
@@ -2806,4 +2835,4 @@ declare class ValidationUrlValidationDirectiveExampleComponent {
2806
2835
  static ɵcmp: i0.ɵɵComponentDeclaration<ValidationUrlValidationDirectiveExampleComponent, "app-validation-url-validation-directive-example", never, {}, {}, never, never, true, never>;
2807
2836
  }
2808
2837
 
2809
- 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, FlyoutBasicExampleComponent, FlyoutCustomHeadersExampleComponent, FormsCharacterCountExampleComponent, FormsCheckboxBasicExampleComponent, FormsCheckboxHelpKeyExampleComponent, FormsCheckboxIconGroupExampleComponent, FormsFieldGroupBasicExampleComponent, FormsFieldGroupHelpKeyExampleComponent, FormsFileAttachmentBasicExampleComponent, FormsFileAttachmentHelpKeyExampleComponent, FormsFileDropBasicExampleComponent, FormsFileDropHelpKeyExampleComponent, FormsInputBoxBasicExampleComponent, FormsInputBoxWithCustomFormErrorsExampleComponent, FormsRadioHelpKeyExampleComponent, FormsRadioIconExampleComponent, FormsRadioStandardExampleComponent, FormsSelectionBoxCheckboxExampleComponent, FormsSelectionBoxRadioExampleComponent, FormsToggleSwitchBasicExampleComponent, FormsToggleSwitchHelpKeyExampleComponent, HelpInlineBasicExampleComponent, 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, LayoutPageLayoutFitExampleComponent, 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, TabsWizardBasicExampleComponent, TextEditorExampleComponent, TextEditorHelpKeyExampleComponent, TextEditorRichTextDisplayExampleComponent, TilesBasicExampleComponent, ToastBasicExampleComponent, ToastCustomComponentExampleComponent, ValidationEmailValidationControlValidatorExampleComponent, ValidationEmailValidationDirectiveExampleComponent, ValidationUrlValidationControlValidatorExampleComponent, ValidationUrlValidationDirectiveExampleComponent };
2838
+ 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, 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.0.0-alpha.0",
3
+ "version": "13.0.0-alpha.10",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "description": "Internal SKY UX use only",
6
6
  "keywords": [
@@ -23,40 +23,40 @@
23
23
  "@angular/forms": "^20.0.5",
24
24
  "@angular/router": "^20.0.5",
25
25
  "@blackbaud/angular-tree-component": "^1.0.0",
26
- "@skyux/action-bars": "13.0.0-alpha.0",
27
- "@skyux/ag-grid": "13.0.0-alpha.0",
28
- "@skyux/angular-tree-component": "13.0.0-alpha.0",
29
- "@skyux/autonumeric": "13.0.0-alpha.0",
30
- "@skyux/avatar": "13.0.0-alpha.0",
31
- "@skyux/colorpicker": "13.0.0-alpha.0",
32
- "@skyux/core": "13.0.0-alpha.0",
33
- "@skyux/data-manager": "13.0.0-alpha.0",
34
- "@skyux/datetime": "13.0.0-alpha.0",
35
- "@skyux/errors": "13.0.0-alpha.0",
36
- "@skyux/flyout": "13.0.0-alpha.0",
37
- "@skyux/forms": "13.0.0-alpha.0",
38
- "@skyux/help-inline": "13.0.0-alpha.0",
39
- "@skyux/icon": "13.0.0-alpha.0",
40
- "@skyux/indicators": "13.0.0-alpha.0",
41
- "@skyux/inline-form": "13.0.0-alpha.0",
42
- "@skyux/layout": "13.0.0-alpha.0",
43
- "@skyux/lists": "13.0.0-alpha.0",
44
- "@skyux/lookup": "13.0.0-alpha.0",
45
- "@skyux/modals": "13.0.0-alpha.0",
46
- "@skyux/navbar": "13.0.0-alpha.0",
47
- "@skyux/pages": "13.0.0-alpha.0",
48
- "@skyux/phone-field": "13.0.0-alpha.0",
49
- "@skyux/popovers": "13.0.0-alpha.0",
50
- "@skyux/progress-indicator": "13.0.0-alpha.0",
51
- "@skyux/router": "13.0.0-alpha.0",
52
- "@skyux/split-view": "13.0.0-alpha.0",
53
- "@skyux/tabs": "13.0.0-alpha.0",
54
- "@skyux/text-editor": "13.0.0-alpha.0",
55
- "@skyux/tiles": "13.0.0-alpha.0",
56
- "@skyux/toast": "13.0.0-alpha.0",
57
- "@skyux/validation": "13.0.0-alpha.0",
58
- "ag-grid-angular": "^33.3.2",
59
- "ag-grid-community": "^33.3.2"
26
+ "@skyux/action-bars": "13.0.0-alpha.10",
27
+ "@skyux/ag-grid": "13.0.0-alpha.10",
28
+ "@skyux/angular-tree-component": "13.0.0-alpha.10",
29
+ "@skyux/autonumeric": "13.0.0-alpha.10",
30
+ "@skyux/avatar": "13.0.0-alpha.10",
31
+ "@skyux/colorpicker": "13.0.0-alpha.10",
32
+ "@skyux/core": "13.0.0-alpha.10",
33
+ "@skyux/data-manager": "13.0.0-alpha.10",
34
+ "@skyux/datetime": "13.0.0-alpha.10",
35
+ "@skyux/errors": "13.0.0-alpha.10",
36
+ "@skyux/flyout": "13.0.0-alpha.10",
37
+ "@skyux/forms": "13.0.0-alpha.10",
38
+ "@skyux/help-inline": "13.0.0-alpha.10",
39
+ "@skyux/icon": "13.0.0-alpha.10",
40
+ "@skyux/indicators": "13.0.0-alpha.10",
41
+ "@skyux/inline-form": "13.0.0-alpha.10",
42
+ "@skyux/layout": "13.0.0-alpha.10",
43
+ "@skyux/lists": "13.0.0-alpha.10",
44
+ "@skyux/lookup": "13.0.0-alpha.10",
45
+ "@skyux/modals": "13.0.0-alpha.10",
46
+ "@skyux/navbar": "13.0.0-alpha.10",
47
+ "@skyux/pages": "13.0.0-alpha.10",
48
+ "@skyux/phone-field": "13.0.0-alpha.10",
49
+ "@skyux/popovers": "13.0.0-alpha.10",
50
+ "@skyux/progress-indicator": "13.0.0-alpha.10",
51
+ "@skyux/router": "13.0.0-alpha.10",
52
+ "@skyux/split-view": "13.0.0-alpha.10",
53
+ "@skyux/tabs": "13.0.0-alpha.10",
54
+ "@skyux/text-editor": "13.0.0-alpha.10",
55
+ "@skyux/tiles": "13.0.0-alpha.10",
56
+ "@skyux/toast": "13.0.0-alpha.10",
57
+ "@skyux/validation": "13.0.0-alpha.10",
58
+ "ag-grid-angular": "^34.1.1",
59
+ "ag-grid-community": "^34.1.1"
60
60
  },
61
61
  "dependencies": {
62
62
  "tslib": "^2.8.1"