@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
|
@@ -34,7 +34,7 @@ import { SkyHelpInlineModule } from '@skyux/help-inline';
|
|
|
34
34
|
import * as i1$c from '@angular/router';
|
|
35
35
|
import { ActivatedRoute, Router, NavigationEnd, RouterModule } from '@angular/router';
|
|
36
36
|
import * as i2$4 from '@skyux/lists';
|
|
37
|
-
import { SkyPagingModule, SkyRepeaterModule, SkyInfiniteScrollModule, SkyFilterModule, SkySortModule } from '@skyux/lists';
|
|
37
|
+
import { SkyPagingModule, SkyRepeaterModule, SkyInfiniteScrollModule, SkyFilterModule, SkyListSummaryModule, SkySortModule } from '@skyux/lists';
|
|
38
38
|
import { map, filter, takeUntil as takeUntil$1, delay as delay$1, take } from 'rxjs/operators';
|
|
39
39
|
import * as i2$5 from '@blackbaud/angular-tree-component';
|
|
40
40
|
import { TreeModule } from '@blackbaud/angular-tree-component';
|
|
@@ -4973,6 +4973,67 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
|
|
|
4973
4973
|
args: [{ selector: 'app-angular-tree-component-angular-tree-help-key-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [SkyAngularTreeModule, SkyHelpInlineModule, TreeModule], template: "<sky-angular-tree-wrapper>\n <tree-root #tree [nodes]=\"nodes\">\n <ng-template\n #treeNodeFullTemplate\n let-index=\"index\"\n let-node\n let-templates=\"templates\"\n >\n <sky-angular-tree-node\n [attr.data-sky-id]=\"'node-' + node.data.name\"\n [helpKey]=\"node.data.helpKey\"\n [helpPopoverContent]=\"node.data.helpPopoverContent\"\n [helpPopoverTitle]=\"node.data.helpPopoverTitle\"\n [index]=\"index\"\n [node]=\"node\"\n [templates]=\"templates\"\n />\n </ng-template>\n </tree-root>\n</sky-angular-tree-wrapper>\n" }]
|
|
4974
4974
|
}] });
|
|
4975
4975
|
|
|
4976
|
+
/**
|
|
4977
|
+
* @title Tree view with pre selected nodes example
|
|
4978
|
+
*/
|
|
4979
|
+
class AngularTreeComponentAngularTreePreselectedNodesExampleComponent {
|
|
4980
|
+
constructor() {
|
|
4981
|
+
this.nodes = [
|
|
4982
|
+
{
|
|
4983
|
+
id: 'animals-node',
|
|
4984
|
+
name: 'Animals',
|
|
4985
|
+
isExpanded: true,
|
|
4986
|
+
helpPopoverContent: 'Example help content for animals.',
|
|
4987
|
+
children: [
|
|
4988
|
+
{
|
|
4989
|
+
id: 'cat-node',
|
|
4990
|
+
name: 'Cats',
|
|
4991
|
+
isExpanded: true,
|
|
4992
|
+
helpPopoverContent: 'Example help content for cats.',
|
|
4993
|
+
helpPopoverTitle: 'What is a cat?',
|
|
4994
|
+
children: [
|
|
4995
|
+
{ id: 'cat-burmese-node', name: 'Burmese' },
|
|
4996
|
+
{ id: 'cat-persian-node', name: 'Persian' },
|
|
4997
|
+
{ id: 'cat-tabby-node', name: 'Tabby' },
|
|
4998
|
+
],
|
|
4999
|
+
},
|
|
5000
|
+
{
|
|
5001
|
+
id: 'dog-node',
|
|
5002
|
+
name: 'Dogs',
|
|
5003
|
+
isExpanded: true,
|
|
5004
|
+
children: [
|
|
5005
|
+
{
|
|
5006
|
+
id: 'dog-beagle-node',
|
|
5007
|
+
name: 'Beagle',
|
|
5008
|
+
helpPopoverContent: 'Example help content for beagles.',
|
|
5009
|
+
},
|
|
5010
|
+
{ id: 'dog-german-shepherd-node', name: 'German shepherd' },
|
|
5011
|
+
{ id: 'dog-labrador-retriever-node', name: 'Labrador retriever' },
|
|
5012
|
+
],
|
|
5013
|
+
},
|
|
5014
|
+
],
|
|
5015
|
+
},
|
|
5016
|
+
];
|
|
5017
|
+
this.state = {
|
|
5018
|
+
selectedLeafNodeIds: {
|
|
5019
|
+
'dog-labrador-retriever-node': true,
|
|
5020
|
+
'cat-burmese-node': true,
|
|
5021
|
+
'cat-persian-node': true,
|
|
5022
|
+
'cat-tabby-node': true,
|
|
5023
|
+
},
|
|
5024
|
+
};
|
|
5025
|
+
this.options = {
|
|
5026
|
+
useCheckbox: true,
|
|
5027
|
+
};
|
|
5028
|
+
}
|
|
5029
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: AngularTreeComponentAngularTreePreselectedNodesExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5030
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.0", type: AngularTreeComponentAngularTreePreselectedNodesExampleComponent, isStandalone: true, selector: "app-angular-tree-component-angular-tree-preselected-nodes-example", ngImport: i0, template: "<sky-angular-tree-wrapper>\n <tree-root #tree [nodes]=\"nodes\" [options]=\"options\" [state]=\"state\">\n <ng-template\n #treeNodeFullTemplate\n let-index=\"index\"\n let-node\n let-templates=\"templates\"\n >\n <sky-angular-tree-node\n [helpPopoverContent]=\"node.data.helpPopoverContent\"\n [helpPopoverTitle]=\"node.data.helpPopoverTitle\"\n [index]=\"index\"\n [node]=\"node\"\n [templates]=\"templates\"\n />\n </ng-template>\n </tree-root>\n</sky-angular-tree-wrapper>\n", dependencies: [{ kind: "ngmodule", type: SkyAngularTreeModule }, { kind: "component", type: i1$7.λ2, selector: "sky-angular-tree-node", inputs: ["index", "node", "templates", "helpKey", "helpPopoverContent", "helpPopoverTitle"] }, { kind: "component", type: i1$7.λ1, selector: "sky-angular-tree-wrapper", inputs: ["readOnly", "selectLeafNodesOnly", "selectSingle", "showToolbar"] }, { kind: "ngmodule", type: SkyHelpInlineModule }, { kind: "ngmodule", type: TreeModule }, { kind: "component", type: i2$5.TreeComponent, selector: "Tree, tree-root", inputs: ["nodes", "options", "focused", "state"], outputs: ["toggleExpanded", "activate", "deactivate", "nodeActivate", "nodeDeactivate", "select", "deselect", "focus", "blur", "updateData", "initialized", "moveNode", "copyNode", "loadNodeChildren", "changeFilter", "event", "stateChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5031
|
+
}
|
|
5032
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: AngularTreeComponentAngularTreePreselectedNodesExampleComponent, decorators: [{
|
|
5033
|
+
type: Component,
|
|
5034
|
+
args: [{ selector: 'app-angular-tree-component-angular-tree-preselected-nodes-example', changeDetection: ChangeDetectionStrategy.OnPush, imports: [SkyAngularTreeModule, SkyHelpInlineModule, TreeModule], template: "<sky-angular-tree-wrapper>\n <tree-root #tree [nodes]=\"nodes\" [options]=\"options\" [state]=\"state\">\n <ng-template\n #treeNodeFullTemplate\n let-index=\"index\"\n let-node\n let-templates=\"templates\"\n >\n <sky-angular-tree-node\n [helpPopoverContent]=\"node.data.helpPopoverContent\"\n [helpPopoverTitle]=\"node.data.helpPopoverTitle\"\n [index]=\"index\"\n [node]=\"node\"\n [templates]=\"templates\"\n />\n </ng-template>\n </tree-root>\n</sky-angular-tree-wrapper>\n" }]
|
|
5035
|
+
}] });
|
|
5036
|
+
|
|
4976
5037
|
/**
|
|
4977
5038
|
* @title Currency
|
|
4978
5039
|
*/
|
|
@@ -9301,6 +9362,44 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
|
|
|
9301
9362
|
args: [{ selector: 'app-lists-infinite-scroll-repeater-example', imports: [SkyInfiniteScrollModule, SkyRepeaterModule], template: "<div class=\"wrapper\">\n <sky-repeater>\n @for (item of items; track item) {\n <sky-repeater-item>\n <sky-repeater-item-title>\n {{ item.name }}\n </sky-repeater-item-title>\n </sky-repeater-item>\n }\n </sky-repeater>\n <sky-infinite-scroll [enabled]=\"itemsHaveMore\" (scrollEnd)=\"onScrollEnd()\" />\n</div>\n", styles: [".wrapper{overflow-y:auto;max-height:500px;position:relative}\n"] }]
|
|
9302
9363
|
}] });
|
|
9303
9364
|
|
|
9365
|
+
/**
|
|
9366
|
+
* @title List summary with basic setup
|
|
9367
|
+
*/
|
|
9368
|
+
class ListsListSummaryBasicExampleComponent {
|
|
9369
|
+
constructor() {
|
|
9370
|
+
this.summaryItems = [
|
|
9371
|
+
{
|
|
9372
|
+
label: 'Total records',
|
|
9373
|
+
value: 1247,
|
|
9374
|
+
helpPopoverContent: 'The total number of records in the current dataset.',
|
|
9375
|
+
helpPopoverTitle: 'Total records help',
|
|
9376
|
+
},
|
|
9377
|
+
{
|
|
9378
|
+
label: 'Active items',
|
|
9379
|
+
value: 892,
|
|
9380
|
+
helpPopoverContent: 'The number of items that are currently active and available for use.',
|
|
9381
|
+
},
|
|
9382
|
+
{
|
|
9383
|
+
label: 'Revenue',
|
|
9384
|
+
value: 1234567.89,
|
|
9385
|
+
valueFormat: { format: 'currency' },
|
|
9386
|
+
helpPopoverContent: 'Total revenue generated from all active items in the current period.',
|
|
9387
|
+
},
|
|
9388
|
+
{
|
|
9389
|
+
label: 'Average score',
|
|
9390
|
+
value: 87.5,
|
|
9391
|
+
valueFormat: { format: 'number', digitsInfo: '1.1-1' },
|
|
9392
|
+
},
|
|
9393
|
+
];
|
|
9394
|
+
}
|
|
9395
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: ListsListSummaryBasicExampleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
9396
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.0", type: ListsListSummaryBasicExampleComponent, isStandalone: true, selector: "app-lists-list-summary-basic-example", ngImport: i0, template: "<sky-list-summary>\n @for (item of summaryItems; track item.label) {\n <sky-list-summary-item\n [labelText]=\"item.label\"\n [value]=\"item.value\"\n [valueFormat]=\"item.valueFormat\"\n [helpPopoverContent]=\"item.helpPopoverContent\"\n [helpPopoverTitle]=\"item.helpPopoverTitle\"\n />\n }\n</sky-list-summary>\n", dependencies: [{ kind: "ngmodule", type: SkyListSummaryModule }, { kind: "component", type: i2$4.λ16, selector: "sky-list-summary" }, { kind: "component", type: i2$4.λ17, selector: "sky-list-summary-item", inputs: ["value", "labelText", "valueFormat", "helpKey", "helpPopoverContent", "helpPopoverTitle"] }] }); }
|
|
9397
|
+
}
|
|
9398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImport: i0, type: ListsListSummaryBasicExampleComponent, decorators: [{
|
|
9399
|
+
type: Component,
|
|
9400
|
+
args: [{ selector: 'app-lists-list-summary-basic-example', imports: [SkyListSummaryModule], template: "<sky-list-summary>\n @for (item of summaryItems; track item.label) {\n <sky-list-summary-item\n [labelText]=\"item.label\"\n [value]=\"item.value\"\n [valueFormat]=\"item.valueFormat\"\n [helpPopoverContent]=\"item.helpPopoverContent\"\n [helpPopoverTitle]=\"item.helpPopoverTitle\"\n />\n }\n</sky-list-summary>\n" }]
|
|
9401
|
+
}] });
|
|
9402
|
+
|
|
9304
9403
|
/**
|
|
9305
9404
|
* @title Paging with basic setup
|
|
9306
9405
|
*/
|
|
@@ -14590,5 +14689,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.0", ngImpor
|
|
|
14590
14689
|
* Generated bundle index. Do not edit.
|
|
14591
14690
|
*/
|
|
14592
14691
|
|
|
14593
|
-
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 };
|
|
14692
|
+
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 };
|
|
14594
14693
|
//# sourceMappingURL=skyux-code-examples.mjs.map
|