@skyux/code-examples 13.0.0-alpha.11 → 13.0.0-alpha.12
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 +343 -45
- package/fesm2022/skyux-code-examples.mjs.map +1 -1
- package/index.d.ts +83 -1
- package/package.json +36 -35
package/index.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ import * as rxjs from 'rxjs';
|
|
|
12
12
|
import { Subject } from 'rxjs';
|
|
13
13
|
import { SkyNumericOptions } from '@skyux/core';
|
|
14
14
|
import { SkyDateRangeCalculation, SkyDateRangeCalculatorId, SkyDateRangeCalculator, SkyDatepickerCalendarChange, SkyTimepickerTimeOutput } from '@skyux/datetime';
|
|
15
|
+
import * as _skyux_filter_bar from '@skyux/filter-bar';
|
|
16
|
+
import { SkyFilterBarFilterValue, SkyFilterItemModal, SkyFilterItemModalInstance, SkyFilterBarFilterItem, SkyFilterItemModalOpenedArgs } from '@skyux/filter-bar';
|
|
15
17
|
import { SkyKeyInfoLayoutType, SkyIndicatorDescriptionType, SkyLabelType, SkyToken, SkyTokensMessage, SkyTokenSelectedEventArgs } from '@skyux/indicators';
|
|
16
18
|
import { SkyInlineFormConfig, SkyInlineFormCloseArgs } from '@skyux/inline-form';
|
|
17
19
|
import { SkyActionButtonPermalink, SkyFluidGridGutterSizeType } from '@skyux/layout';
|
|
@@ -938,6 +940,86 @@ declare class ErrorsErrorModalExampleComponent {
|
|
|
938
940
|
static ɵcmp: i0.ɵɵComponentDeclaration<ErrorsErrorModalExampleComponent, "app-errors-error-modal-example", never, {}, {}, never, never, true, never>;
|
|
939
941
|
}
|
|
940
942
|
|
|
943
|
+
interface FilterItems {
|
|
944
|
+
items: SkyFilterBarFilterValue[];
|
|
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> {
|
|
960
|
+
#private;
|
|
961
|
+
readonly modalInstance: SkyFilterItemModalInstance<FilterItems>;
|
|
962
|
+
protected headingText: string;
|
|
963
|
+
protected items: _skyux_filter_bar.SkyFilterBarFilterValue[];
|
|
964
|
+
protected selectedValue: _skyux_filter_bar.SkyFilterBarFilterValue | undefined;
|
|
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>;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
declare class EnteringGradeFilterModalComponent implements SkyFilterItemModal<FilterItems> {
|
|
972
|
+
#private;
|
|
973
|
+
readonly modalInstance: SkyFilterItemModalInstance<FilterItems>;
|
|
974
|
+
protected headingText: string;
|
|
975
|
+
protected items: _skyux_filter_bar.SkyFilterBarFilterValue[];
|
|
976
|
+
protected selectedValue: _skyux_filter_bar.SkyFilterBarFilterValue | undefined;
|
|
977
|
+
protected formGroup: FormGroup;
|
|
978
|
+
protected save(): void;
|
|
979
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnteringGradeFilterModalComponent, never>;
|
|
980
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EnteringGradeFilterModalComponent, "app-entering-grade-filter-modal", never, {}, {}, never, never, true, never>;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
declare class RoleFilterModalComponent implements SkyFilterItemModal<FilterItems> {
|
|
984
|
+
#private;
|
|
985
|
+
readonly modalInstance: SkyFilterItemModalInstance<FilterItems>;
|
|
986
|
+
protected headingText: string;
|
|
987
|
+
protected items: _skyux_filter_bar.SkyFilterBarFilterValue[];
|
|
988
|
+
protected selectedValue: _skyux_filter_bar.SkyFilterBarFilterValue | undefined;
|
|
989
|
+
protected formGroup: FormGroup;
|
|
990
|
+
protected save(): void;
|
|
991
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RoleFilterModalComponent, never>;
|
|
992
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RoleFilterModalComponent, "app-role-filter-modal", never, {}, {}, never, never, true, never>;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
declare class StaffAssignedFilterModalComponent implements SkyFilterItemModal<FilterItems> {
|
|
996
|
+
#private;
|
|
997
|
+
readonly modalInstance: SkyFilterItemModalInstance<FilterItems>;
|
|
998
|
+
protected headingText: string;
|
|
999
|
+
protected items: _skyux_filter_bar.SkyFilterBarFilterValue[];
|
|
1000
|
+
protected selectedValue: _skyux_filter_bar.SkyFilterBarFilterValue | undefined;
|
|
1001
|
+
protected formGroup: FormGroup;
|
|
1002
|
+
protected save(): void;
|
|
1003
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StaffAssignedFilterModalComponent, never>;
|
|
1004
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StaffAssignedFilterModalComponent, "app-staff-assigned-filter-modal", never, {}, {}, never, never, true, never>;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
/**
|
|
1008
|
+
* @title Filter bar basic example
|
|
1009
|
+
*/
|
|
1010
|
+
declare class FilterBarBasicExampleComponent {
|
|
1011
|
+
protected readonly appliedFilters: i0.ModelSignal<SkyFilterBarFilterItem[] | undefined>;
|
|
1012
|
+
protected readonly selectedFilterIds: i0.ModelSignal<string[] | undefined>;
|
|
1013
|
+
protected communityConnectionModal: typeof CommunityConnectionFilterModalComponent;
|
|
1014
|
+
protected currentGradeModal: typeof CurrentGradeFilterModalComponent;
|
|
1015
|
+
protected enteringGradeModal: typeof EnteringGradeFilterModalComponent;
|
|
1016
|
+
protected roleModal: typeof RoleFilterModalComponent;
|
|
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>;
|
|
1021
|
+
}
|
|
1022
|
+
|
|
941
1023
|
/**
|
|
942
1024
|
* @title Flyout with basic setup
|
|
943
1025
|
*/
|
|
@@ -2835,4 +2917,4 @@ declare class ValidationUrlValidationDirectiveExampleComponent {
|
|
|
2835
2917
|
static ɵcmp: i0.ɵɵComponentDeclaration<ValidationUrlValidationDirectiveExampleComponent, "app-validation-url-validation-directive-example", never, {}, {}, never, never, true, never>;
|
|
2836
2918
|
}
|
|
2837
2919
|
|
|
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 };
|
|
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, FilterBarBasicExampleComponent, 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.
|
|
3
|
+
"version": "13.0.0-alpha.12",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"description": "Internal SKY UX use only",
|
|
6
6
|
"keywords": [
|
|
@@ -23,40 +23,41 @@
|
|
|
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.
|
|
27
|
-
"@skyux/ag-grid": "13.0.0-alpha.
|
|
28
|
-
"@skyux/angular-tree-component": "13.0.0-alpha.
|
|
29
|
-
"@skyux/autonumeric": "13.0.0-alpha.
|
|
30
|
-
"@skyux/avatar": "13.0.0-alpha.
|
|
31
|
-
"@skyux/colorpicker": "13.0.0-alpha.
|
|
32
|
-
"@skyux/core": "13.0.0-alpha.
|
|
33
|
-
"@skyux/data-manager": "13.0.0-alpha.
|
|
34
|
-
"@skyux/datetime": "13.0.0-alpha.
|
|
35
|
-
"@skyux/errors": "13.0.0-alpha.
|
|
36
|
-
"@skyux/
|
|
37
|
-
"@skyux/
|
|
38
|
-
"@skyux/
|
|
39
|
-
"@skyux/
|
|
40
|
-
"@skyux/
|
|
41
|
-
"@skyux/
|
|
42
|
-
"@skyux/
|
|
43
|
-
"@skyux/
|
|
44
|
-
"@skyux/
|
|
45
|
-
"@skyux/
|
|
46
|
-
"@skyux/
|
|
47
|
-
"@skyux/
|
|
48
|
-
"@skyux/
|
|
49
|
-
"@skyux/
|
|
50
|
-
"@skyux/
|
|
51
|
-
"@skyux/
|
|
52
|
-
"@skyux/
|
|
53
|
-
"@skyux/
|
|
54
|
-
"@skyux/
|
|
55
|
-
"@skyux/
|
|
56
|
-
"@skyux/
|
|
57
|
-
"@skyux/
|
|
58
|
-
"
|
|
59
|
-
"ag-grid-
|
|
26
|
+
"@skyux/action-bars": "13.0.0-alpha.12",
|
|
27
|
+
"@skyux/ag-grid": "13.0.0-alpha.12",
|
|
28
|
+
"@skyux/angular-tree-component": "13.0.0-alpha.12",
|
|
29
|
+
"@skyux/autonumeric": "13.0.0-alpha.12",
|
|
30
|
+
"@skyux/avatar": "13.0.0-alpha.12",
|
|
31
|
+
"@skyux/colorpicker": "13.0.0-alpha.12",
|
|
32
|
+
"@skyux/core": "13.0.0-alpha.12",
|
|
33
|
+
"@skyux/data-manager": "13.0.0-alpha.12",
|
|
34
|
+
"@skyux/datetime": "13.0.0-alpha.12",
|
|
35
|
+
"@skyux/errors": "13.0.0-alpha.12",
|
|
36
|
+
"@skyux/filter-bar": "13.0.0-alpha.12",
|
|
37
|
+
"@skyux/flyout": "13.0.0-alpha.12",
|
|
38
|
+
"@skyux/forms": "13.0.0-alpha.12",
|
|
39
|
+
"@skyux/help-inline": "13.0.0-alpha.12",
|
|
40
|
+
"@skyux/icon": "13.0.0-alpha.12",
|
|
41
|
+
"@skyux/indicators": "13.0.0-alpha.12",
|
|
42
|
+
"@skyux/inline-form": "13.0.0-alpha.12",
|
|
43
|
+
"@skyux/layout": "13.0.0-alpha.12",
|
|
44
|
+
"@skyux/lists": "13.0.0-alpha.12",
|
|
45
|
+
"@skyux/lookup": "13.0.0-alpha.12",
|
|
46
|
+
"@skyux/modals": "13.0.0-alpha.12",
|
|
47
|
+
"@skyux/navbar": "13.0.0-alpha.12",
|
|
48
|
+
"@skyux/pages": "13.0.0-alpha.12",
|
|
49
|
+
"@skyux/phone-field": "13.0.0-alpha.12",
|
|
50
|
+
"@skyux/popovers": "13.0.0-alpha.12",
|
|
51
|
+
"@skyux/progress-indicator": "13.0.0-alpha.12",
|
|
52
|
+
"@skyux/router": "13.0.0-alpha.12",
|
|
53
|
+
"@skyux/split-view": "13.0.0-alpha.12",
|
|
54
|
+
"@skyux/tabs": "13.0.0-alpha.12",
|
|
55
|
+
"@skyux/text-editor": "13.0.0-alpha.12",
|
|
56
|
+
"@skyux/tiles": "13.0.0-alpha.12",
|
|
57
|
+
"@skyux/toast": "13.0.0-alpha.12",
|
|
58
|
+
"@skyux/validation": "13.0.0-alpha.12",
|
|
59
|
+
"ag-grid-angular": "^34.2.0",
|
|
60
|
+
"ag-grid-community": "^34.2.0"
|
|
60
61
|
},
|
|
61
62
|
"dependencies": {
|
|
62
63
|
"tslib": "^2.8.1"
|