@skyux/code-examples 13.2.0 → 13.3.1
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 +189 -12
- package/fesm2022/skyux-code-examples.mjs.map +1 -1
- package/index.d.ts +74 -28
- package/package.json +34 -34
package/index.d.ts
CHANGED
|
@@ -21,9 +21,10 @@ import { SkyPagingContentChangeArgs } from '@skyux/lists';
|
|
|
21
21
|
import { SkyAutocompleteSearchFunctionFilter, SkyAutocompleteSelectionChange, SkyAutocompleteSearchAsyncArgs, SkyAutocompleteSearchFunction, SkyCountryFieldCountry, SkyLookupShowMoreConfig, SkyLookupAddClickEventArgs } from '@skyux/lookup';
|
|
22
22
|
import { SkyModalError } from '@skyux/modals';
|
|
23
23
|
import { SkyPageModalLinksInput, SkyRecentLink } from '@skyux/pages';
|
|
24
|
+
import { SkyDataManagerDockType } from '@skyux/data-manager';
|
|
25
|
+
import { SkySplitViewMessage } from '@skyux/split-view';
|
|
24
26
|
import { SkyPopoverAlignment, SkyPopoverPlacement, SkyPopoverMessage } from '@skyux/popovers';
|
|
25
27
|
import { SkyProgressIndicatorMessage, SkyProgressIndicatorMessageType, SkyProgressIndicatorChange } from '@skyux/progress-indicator';
|
|
26
|
-
import { SkySplitViewMessage } from '@skyux/split-view';
|
|
27
28
|
import { SkyTileDashboardConfig } from '@skyux/tiles';
|
|
28
29
|
import { SkyUrlValidationOptions } from '@skyux/validation';
|
|
29
30
|
|
|
@@ -693,7 +694,7 @@ declare class AvatarExampleComponent {
|
|
|
693
694
|
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarExampleComponent, "app-avatar-example", never, {}, {}, never, never, true, never>;
|
|
694
695
|
}
|
|
695
696
|
|
|
696
|
-
interface DemoForm$
|
|
697
|
+
interface DemoForm$e {
|
|
697
698
|
favoriteColor: FormControl<SkyColorpickerOutput | string>;
|
|
698
699
|
}
|
|
699
700
|
/**
|
|
@@ -701,7 +702,7 @@ interface DemoForm$d {
|
|
|
701
702
|
*/
|
|
702
703
|
declare class ColorpickerBasicExampleComponent {
|
|
703
704
|
protected favoriteColor: FormControl<SkyColorpickerOutput | string>;
|
|
704
|
-
protected formGroup: FormGroup<DemoForm$
|
|
705
|
+
protected formGroup: FormGroup<DemoForm$e>;
|
|
705
706
|
protected swatches: string[];
|
|
706
707
|
constructor();
|
|
707
708
|
protected onSelectedColorChanged(args: SkyColorpickerOutput): void;
|
|
@@ -710,7 +711,7 @@ declare class ColorpickerBasicExampleComponent {
|
|
|
710
711
|
static ɵcmp: i0.ɵɵComponentDeclaration<ColorpickerBasicExampleComponent, "app-colorpicker-basic-example", never, {}, {}, never, never, true, never>;
|
|
711
712
|
}
|
|
712
713
|
|
|
713
|
-
interface DemoForm$
|
|
714
|
+
interface DemoForm$d {
|
|
714
715
|
favoriteColor: FormControl<SkyColorpickerOutput | string>;
|
|
715
716
|
}
|
|
716
717
|
/**
|
|
@@ -718,7 +719,7 @@ interface DemoForm$c {
|
|
|
718
719
|
*/
|
|
719
720
|
declare class ColorpickerHelpKeyExampleComponent {
|
|
720
721
|
protected favoriteColor: FormControl<SkyColorpickerOutput | string>;
|
|
721
|
-
protected formGroup: FormGroup<DemoForm$
|
|
722
|
+
protected formGroup: FormGroup<DemoForm$d>;
|
|
722
723
|
protected swatches: string[];
|
|
723
724
|
constructor();
|
|
724
725
|
protected onSelectedColorChanged(args: SkyColorpickerOutput): void;
|
|
@@ -727,7 +728,7 @@ declare class ColorpickerHelpKeyExampleComponent {
|
|
|
727
728
|
static ɵcmp: i0.ɵɵComponentDeclaration<ColorpickerHelpKeyExampleComponent, "app-colorpicker-help-key-example", never, {}, {}, never, never, true, never>;
|
|
728
729
|
}
|
|
729
730
|
|
|
730
|
-
interface DemoForm$
|
|
731
|
+
interface DemoForm$c {
|
|
731
732
|
favoriteColor: FormControl<SkyColorpickerOutput | string>;
|
|
732
733
|
}
|
|
733
734
|
/**
|
|
@@ -737,7 +738,7 @@ declare class ColorpickerProgrammaticExampleComponent {
|
|
|
737
738
|
#private;
|
|
738
739
|
protected colorpickerController: Subject<SkyColorpickerMessage>;
|
|
739
740
|
protected favoriteColor: FormControl<SkyColorpickerOutput | string>;
|
|
740
|
-
protected formGroup: FormGroup<DemoForm$
|
|
741
|
+
protected formGroup: FormGroup<DemoForm$c>;
|
|
741
742
|
protected showResetButton: boolean;
|
|
742
743
|
constructor();
|
|
743
744
|
protected openColorpicker(): void;
|
|
@@ -864,14 +865,14 @@ declare class DatetimeDateRangePickerHelpKeyExampleComponent {
|
|
|
864
865
|
static ɵcmp: i0.ɵɵComponentDeclaration<DatetimeDateRangePickerHelpKeyExampleComponent, "app-datetime-date-range-picker-help-key-example", never, {}, {}, never, never, true, never>;
|
|
865
866
|
}
|
|
866
867
|
|
|
867
|
-
interface DemoForm$
|
|
868
|
+
interface DemoForm$b {
|
|
868
869
|
startDate: FormControl<Date | string | null>;
|
|
869
870
|
}
|
|
870
871
|
/**
|
|
871
872
|
* @title Datepicker with basic setup
|
|
872
873
|
*/
|
|
873
874
|
declare class DatetimeDatepickerBasicExampleComponent {
|
|
874
|
-
protected formGroup: FormGroup<DemoForm$
|
|
875
|
+
protected formGroup: FormGroup<DemoForm$b>;
|
|
875
876
|
protected startDate: FormControl<Date | string | null>;
|
|
876
877
|
protected hintText: string;
|
|
877
878
|
helpPopoverContent: string;
|
|
@@ -905,14 +906,14 @@ declare class DatetimeDatepickerFuzzyExampleComponent {
|
|
|
905
906
|
static ɵcmp: i0.ɵɵComponentDeclaration<DatetimeDatepickerFuzzyExampleComponent, "app-datetime-datepicker-fuzzy-example", never, {}, {}, never, never, true, never>;
|
|
906
907
|
}
|
|
907
908
|
|
|
908
|
-
interface DemoForm$
|
|
909
|
+
interface DemoForm$a {
|
|
909
910
|
time: FormControl<SkyTimepickerTimeOutput | string>;
|
|
910
911
|
}
|
|
911
912
|
/**
|
|
912
913
|
* @title Timepicker with basic setup
|
|
913
914
|
*/
|
|
914
915
|
declare class DatetimeTimepickerBasicExampleComponent {
|
|
915
|
-
protected formGroup: FormGroup<DemoForm$
|
|
916
|
+
protected formGroup: FormGroup<DemoForm$a>;
|
|
916
917
|
protected time: FormControl<SkyTimepickerTimeOutput | string>;
|
|
917
918
|
protected hintText: string;
|
|
918
919
|
helpPopoverContent: string;
|
|
@@ -1209,7 +1210,7 @@ declare class FormsInputBoxWithCustomFormErrorsExampleComponent {
|
|
|
1209
1210
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormsInputBoxWithCustomFormErrorsExampleComponent, "app-forms-input-box-basic-example", never, {}, {}, never, never, true, never>;
|
|
1210
1211
|
}
|
|
1211
1212
|
|
|
1212
|
-
interface DemoForm$
|
|
1213
|
+
interface DemoForm$9 {
|
|
1213
1214
|
paymentMethod: FormControl<string | null>;
|
|
1214
1215
|
}
|
|
1215
1216
|
interface Item$7 {
|
|
@@ -1224,7 +1225,7 @@ interface Item$7 {
|
|
|
1224
1225
|
*/
|
|
1225
1226
|
declare class FormsRadioHelpKeyExampleComponent {
|
|
1226
1227
|
#private;
|
|
1227
|
-
protected formGroup: FormGroup<DemoForm$
|
|
1228
|
+
protected formGroup: FormGroup<DemoForm$9>;
|
|
1228
1229
|
protected hintText: string;
|
|
1229
1230
|
protected paymentMethod: FormControl<string | null>;
|
|
1230
1231
|
protected paymentOptions: Item$7[];
|
|
@@ -1249,7 +1250,7 @@ declare class FormsRadioIconExampleComponent {
|
|
|
1249
1250
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormsRadioIconExampleComponent, "app-forms-radio-icon-example", never, {}, {}, never, never, true, never>;
|
|
1250
1251
|
}
|
|
1251
1252
|
|
|
1252
|
-
interface DemoForm$
|
|
1253
|
+
interface DemoForm$8 {
|
|
1253
1254
|
paymentMethod: FormControl<string | null>;
|
|
1254
1255
|
}
|
|
1255
1256
|
interface Item$5 {
|
|
@@ -1264,7 +1265,7 @@ interface Item$5 {
|
|
|
1264
1265
|
*/
|
|
1265
1266
|
declare class FormsRadioStandardExampleComponent {
|
|
1266
1267
|
#private;
|
|
1267
|
-
protected formGroup: FormGroup<DemoForm$
|
|
1268
|
+
protected formGroup: FormGroup<DemoForm$8>;
|
|
1268
1269
|
protected helpPopoverContent: string;
|
|
1269
1270
|
protected helpPopoverTitle: string;
|
|
1270
1271
|
protected hintText: string;
|
|
@@ -1509,7 +1510,7 @@ declare class IndicatorsWaitPageExampleComponent implements OnDestroy {
|
|
|
1509
1510
|
static ɵcmp: i0.ɵɵComponentDeclaration<IndicatorsWaitPageExampleComponent, "app-indicators-wait-page-example", never, {}, {}, never, never, true, never>;
|
|
1510
1511
|
}
|
|
1511
1512
|
|
|
1512
|
-
interface DemoForm$
|
|
1513
|
+
interface DemoForm$7 {
|
|
1513
1514
|
firstName: FormControl<string>;
|
|
1514
1515
|
}
|
|
1515
1516
|
/**
|
|
@@ -1517,7 +1518,7 @@ interface DemoForm$6 {
|
|
|
1517
1518
|
*/
|
|
1518
1519
|
declare class InlineFormBasicExampleComponent {
|
|
1519
1520
|
protected firstName: string;
|
|
1520
|
-
formGroup: FormGroup<DemoForm$
|
|
1521
|
+
formGroup: FormGroup<DemoForm$7>;
|
|
1521
1522
|
protected inlineFormConfig: SkyInlineFormConfig;
|
|
1522
1523
|
protected showForm: boolean;
|
|
1523
1524
|
constructor();
|
|
@@ -1527,7 +1528,7 @@ declare class InlineFormBasicExampleComponent {
|
|
|
1527
1528
|
static ɵcmp: i0.ɵɵComponentDeclaration<InlineFormBasicExampleComponent, "app-inline-form-basic-example", never, {}, {}, never, never, true, never>;
|
|
1528
1529
|
}
|
|
1529
1530
|
|
|
1530
|
-
interface DemoForm$
|
|
1531
|
+
interface DemoForm$6 {
|
|
1531
1532
|
firstName: FormControl<string>;
|
|
1532
1533
|
}
|
|
1533
1534
|
/**
|
|
@@ -1535,7 +1536,7 @@ interface DemoForm$5 {
|
|
|
1535
1536
|
*/
|
|
1536
1537
|
declare class InlineFormCustomButtonsExampleComponent implements OnInit {
|
|
1537
1538
|
protected firstName: string;
|
|
1538
|
-
formGroup: FormGroup<DemoForm$
|
|
1539
|
+
formGroup: FormGroup<DemoForm$6>;
|
|
1539
1540
|
protected inlineFormConfig: SkyInlineFormConfig;
|
|
1540
1541
|
protected showForm: boolean;
|
|
1541
1542
|
constructor();
|
|
@@ -1546,7 +1547,7 @@ declare class InlineFormCustomButtonsExampleComponent implements OnInit {
|
|
|
1546
1547
|
static ɵcmp: i0.ɵɵComponentDeclaration<InlineFormCustomButtonsExampleComponent, "app-inline-form-custom-buttons-example", never, {}, {}, never, never, true, never>;
|
|
1547
1548
|
}
|
|
1548
1549
|
|
|
1549
|
-
interface DemoForm$
|
|
1550
|
+
interface DemoForm$5 {
|
|
1550
1551
|
id: FormControl<string>;
|
|
1551
1552
|
note: FormControl<string>;
|
|
1552
1553
|
title: FormControl<string>;
|
|
@@ -1561,7 +1562,7 @@ interface Item$4 {
|
|
|
1561
1562
|
*/
|
|
1562
1563
|
declare class InlineFormRepeatersExampleComponent {
|
|
1563
1564
|
protected activeInlineFormId: string | undefined;
|
|
1564
|
-
protected formGroup: FormGroup<DemoForm$
|
|
1565
|
+
protected formGroup: FormGroup<DemoForm$5>;
|
|
1565
1566
|
protected inlineFormConfig: SkyInlineFormConfig;
|
|
1566
1567
|
protected items: Item$4[];
|
|
1567
1568
|
constructor();
|
|
@@ -1970,6 +1971,7 @@ interface Item$3 {
|
|
|
1970
1971
|
note: string;
|
|
1971
1972
|
status: string;
|
|
1972
1973
|
isSelected: boolean;
|
|
1974
|
+
isDisabled?: boolean;
|
|
1973
1975
|
}
|
|
1974
1976
|
|
|
1975
1977
|
/**
|
|
@@ -2000,7 +2002,7 @@ declare class ListsRepeaterBasicExampleComponent {
|
|
|
2000
2002
|
static ɵcmp: i0.ɵɵComponentDeclaration<ListsRepeaterBasicExampleComponent, "app-lists-repeater-basic-example", never, {}, {}, never, never, true, never>;
|
|
2001
2003
|
}
|
|
2002
2004
|
|
|
2003
|
-
interface DemoForm$
|
|
2005
|
+
interface DemoForm$4 {
|
|
2004
2006
|
id: FormControl<string>;
|
|
2005
2007
|
note: FormControl<string>;
|
|
2006
2008
|
title: FormControl<string>;
|
|
@@ -2015,11 +2017,11 @@ interface Item$2 {
|
|
|
2015
2017
|
*/
|
|
2016
2018
|
declare class ListsRepeaterInlineFormExampleComponent {
|
|
2017
2019
|
protected activeInlineFormId: string | undefined;
|
|
2018
|
-
protected formGroup: FormGroup<DemoForm$
|
|
2020
|
+
protected formGroup: FormGroup<DemoForm$4>;
|
|
2019
2021
|
protected inlineFormConfig: SkyInlineFormConfig;
|
|
2020
|
-
|
|
2022
|
+
items: Item$2[];
|
|
2021
2023
|
constructor();
|
|
2022
|
-
|
|
2024
|
+
showInlineForm(item: Item$2): void;
|
|
2023
2025
|
protected onInlineFormClose(args: SkyInlineFormCloseArgs): void;
|
|
2024
2026
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListsRepeaterInlineFormExampleComponent, never>;
|
|
2025
2027
|
static ɵcmp: i0.ɵɵComponentDeclaration<ListsRepeaterInlineFormExampleComponent, "app-lists-repeater-inline-form-example", never, {}, {}, never, never, true, never>;
|
|
@@ -2138,7 +2140,7 @@ declare class LookupAutocompleteSearchFiltersExampleComponent {
|
|
|
2138
2140
|
static ɵcmp: i0.ɵɵComponentDeclaration<LookupAutocompleteSearchFiltersExampleComponent, "app-lookup-autocomplete-search-filters-example", never, {}, {}, never, never, true, never>;
|
|
2139
2141
|
}
|
|
2140
2142
|
|
|
2141
|
-
interface DemoForm$
|
|
2143
|
+
interface DemoForm$3 {
|
|
2142
2144
|
country: FormControl<SkyCountryFieldCountry | undefined>;
|
|
2143
2145
|
}
|
|
2144
2146
|
/**
|
|
@@ -2147,7 +2149,7 @@ interface DemoForm$2 {
|
|
|
2147
2149
|
declare class LookupCountryFieldBasicExampleComponent {
|
|
2148
2150
|
#private;
|
|
2149
2151
|
protected countryControl: FormControl<SkyCountryFieldCountry | undefined>;
|
|
2150
|
-
countryForm: FormGroup<DemoForm$
|
|
2152
|
+
countryForm: FormGroup<DemoForm$3>;
|
|
2151
2153
|
protected helpPopoverContent: string;
|
|
2152
2154
|
constructor();
|
|
2153
2155
|
static ɵfac: i0.ɵɵFactoryDeclaration<LookupCountryFieldBasicExampleComponent, never>;
|
|
@@ -2447,6 +2449,50 @@ declare class PagesActionHubExampleComponent {
|
|
|
2447
2449
|
static ɵcmp: i0.ɵɵComponentDeclaration<PagesActionHubExampleComponent, "app-pages-action-hub-example", never, {}, {}, never, never, true, never>;
|
|
2448
2450
|
}
|
|
2449
2451
|
|
|
2452
|
+
interface Record$3 {
|
|
2453
|
+
id: number;
|
|
2454
|
+
amount: number;
|
|
2455
|
+
date: string;
|
|
2456
|
+
vendor: string;
|
|
2457
|
+
receiptImage: string;
|
|
2458
|
+
approvedAmount: number;
|
|
2459
|
+
comments: string;
|
|
2460
|
+
}
|
|
2461
|
+
|
|
2462
|
+
interface DemoForm$2 {
|
|
2463
|
+
approvedAmount: FormControl<number>;
|
|
2464
|
+
comments: FormControl<string>;
|
|
2465
|
+
}
|
|
2466
|
+
/**
|
|
2467
|
+
* @title Data manager with split view in a fit layout page.
|
|
2468
|
+
* @docsDemoHidden
|
|
2469
|
+
*/
|
|
2470
|
+
declare class PagesPageDataManagerSplitViewFitLayoutExampleComponent implements OnInit {
|
|
2471
|
+
#private;
|
|
2472
|
+
set activeIndex(value: number);
|
|
2473
|
+
get activeIndex(): number;
|
|
2474
|
+
items: {
|
|
2475
|
+
id: number;
|
|
2476
|
+
amount: number;
|
|
2477
|
+
date: string;
|
|
2478
|
+
vendor: string;
|
|
2479
|
+
receiptImage: string;
|
|
2480
|
+
approvedAmount: number;
|
|
2481
|
+
comments: string;
|
|
2482
|
+
}[];
|
|
2483
|
+
activeRecord: Record$3;
|
|
2484
|
+
splitViewDemoForm: FormGroup<DemoForm$2>;
|
|
2485
|
+
splitViewStream: Subject<SkySplitViewMessage>;
|
|
2486
|
+
dock: SkyDataManagerDockType;
|
|
2487
|
+
constructor();
|
|
2488
|
+
ngOnInit(): void;
|
|
2489
|
+
onItemClick(index: number): void;
|
|
2490
|
+
onApprove(): void;
|
|
2491
|
+
onDeny(): void;
|
|
2492
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PagesPageDataManagerSplitViewFitLayoutExampleComponent, never>;
|
|
2493
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PagesPageDataManagerSplitViewFitLayoutExampleComponent, "app-pages-page-split-view-data-manager-example", never, {}, {}, never, never, true, never>;
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2450
2496
|
/**
|
|
2451
2497
|
* @title Home page with blocks layout, using tile dashboard and recently accessed links
|
|
2452
2498
|
* @docsDemoHidden
|
|
@@ -2906,4 +2952,4 @@ declare class ValidationUrlValidationDirectiveExampleComponent {
|
|
|
2906
2952
|
static ɵcmp: i0.ɵɵComponentDeclaration<ValidationUrlValidationDirectiveExampleComponent, "app-validation-url-validation-directive-example", never, {}, {}, never, never, true, never>;
|
|
2907
2953
|
}
|
|
2908
2954
|
|
|
2909
|
-
export { ActionBarsSummaryActionBarBasicExampleComponent, ActionBarsSummaryActionBarErrorExampleComponent, ActionBarsSummaryActionBarModalExampleComponent, ActionBarsSummaryActionBarTabExampleComponent, AgGridDataEntryGridBasicExampleComponent, AgGridDataEntryGridDataManagerAddedExampleComponent, AgGridDataEntryGridFocusExampleComponent, AgGridDataEntryGridInlineHelpExampleComponent, AgGridDataGridBasicExampleComponent, AgGridDataGridBasicMultiselectExampleComponent, AgGridDataGridDataManagerExampleComponent, AgGridDataGridDataManagerMultiselectExampleComponent, AgGridDataGridInlineHelpExampleComponent, AgGridDataGridPagingExampleComponent, AgGridDataGridTemplateRefColumnExampleComponent, AgGridDataGridTopScrollExampleComponent, AngularTreeComponentAngularTreeBasicExampleComponent, AngularTreeComponentAngularTreeHelpKeyExampleComponent, AutonumericCurrencyExampleComponent, AutonumericInternationalFormattingExampleComponent, AutonumericOptionsProviderExampleComponent, AutonumericPresetExampleComponent, AvatarExampleComponent, ColorpickerBasicExampleComponent, ColorpickerHelpKeyExampleComponent, ColorpickerProgrammaticExampleComponent, CoreIdExampleComponent, CoreMediaQueryBasicExampleComponent, CoreMediaQueryResponsiveHostExampleComponent, CoreNumericBasicExampleComponent, DataManagerBasicExampleComponent, DatetimeDatePipeBasicExampleComponent, DatetimeDateRangePickerBasicExampleComponent, DatetimeDateRangePickerCustomCalculatorExampleComponent, DatetimeDateRangePickerHelpKeyExampleComponent, DatetimeDatepickerBasicExampleComponent, DatetimeDatepickerCustomDatesExampleComponent, DatetimeDatepickerFuzzyExampleComponent, DatetimeTimepickerBasicExampleComponent, ErrorsErrorEmbeddedExampleComponent, ErrorsErrorModalExampleComponent, FilterBarLookupExampleComponent, FilterBarModalExampleComponent, FilterBarSelectableExampleComponent, FlyoutBasicExampleComponent, FlyoutCustomHeadersExampleComponent, FormsCharacterCountExampleComponent, FormsCheckboxBasicExampleComponent, FormsCheckboxHelpKeyExampleComponent, FormsCheckboxIconGroupExampleComponent, FormsFieldGroupBasicExampleComponent, FormsFieldGroupHelpKeyExampleComponent, FormsFileAttachmentBasicExampleComponent, FormsFileAttachmentHelpKeyExampleComponent, FormsFileDropBasicExampleComponent, FormsFileDropHelpKeyExampleComponent, FormsInputBoxBasicExampleComponent, FormsInputBoxWithCustomFormErrorsExampleComponent, FormsRadioHelpKeyExampleComponent, FormsRadioIconExampleComponent, FormsRadioStandardExampleComponent, FormsSelectionBoxCheckboxExampleComponent, FormsSelectionBoxRadioExampleComponent, FormsToggleSwitchBasicExampleComponent, FormsToggleSwitchHelpKeyExampleComponent, HelpInlineActionClickExampleComponent, HelpInlineHelpKeyExampleComponent, HelpInlinePopoverExampleComponent, IconBasicExampleComponent, IconIconButtonExampleComponent, IndicatorsAlertBasicExampleComponent, IndicatorsIllustrationBasicExampleComponent, IndicatorsKeyInfoBasicExampleComponent, IndicatorsKeyInfoHelpKeyExampleComponent, IndicatorsLabelBasicExampleComponent, IndicatorsStatusIndicatorBasicExampleComponent, IndicatorsStatusIndicatorHelpKeyExampleComponent, IndicatorsTextHighlightBasicExampleComponent, IndicatorsTokensBasicExampleComponent, IndicatorsTokensCustomExampleComponent, IndicatorsWaitElementExampleComponent, IndicatorsWaitPageExampleComponent, InlineFormBasicExampleComponent, InlineFormCustomButtonsExampleComponent, InlineFormRepeatersExampleComponent, LayoutActionButtonBasicExampleComponent, LayoutActionButtonPermalinkExampleComponent, LayoutBackToTopInfiniteScrollExampleComponent, LayoutBackToTopRepeaterExampleComponent, LayoutBoxBasicExampleComponent, LayoutBoxHelpKeyExampleComponent, LayoutCardBasicExampleComponent, LayoutDefinitionListBasicExampleComponent, LayoutDescriptionListHelpKeyExampleComponent, LayoutDescriptionListHorizontalExampleComponent, LayoutDescriptionListInlineHelpExampleComponent, LayoutDescriptionListLongDescriptionExampleComponent, LayoutDescriptionListVerticalExampleComponent, LayoutFluidGridExampleComponent, LayoutFormatExampleComponent, LayoutInlineDeleteCustomExampleComponent, LayoutInlineDeleteRepeaterExampleComponent, LayoutPageSummaryBasicExampleComponent, LayoutTextExpandInlineExampleComponent, LayoutTextExpandModalExampleComponent, LayoutTextExpandNewlineExampleComponent, LayoutTextExpandRepeaterExampleComponent, LayoutToolbarBasicExampleComponent, LayoutToolbarSectionedExampleComponent, ListsFilterInlineExampleComponent, ListsFilterModalExampleComponent, ListsInfiniteScrollRepeaterExampleComponent, ListsPagingBasicExampleComponent, ListsPagingWithContentExampleComponent, ListsRepeaterAddRemoveExampleComponent, ListsRepeaterBasicExampleComponent, ListsRepeaterInlineFormExampleComponent, ListsSortBasicExampleComponent, LookupAddItemExampleComponent, LookupAutocompleteAdvancedExampleComponent, LookupAutocompleteAnyValueExampleComponent, LookupAutocompleteBasicExampleComponent, LookupAutocompleteCustomSearchExampleComponent, LookupAutocompleteSearchFiltersExampleComponent, LookupCountryFieldBasicExampleComponent, LookupCustomPickerExampleComponent, LookupMultiSelectExampleComponent, LookupResultTemplatesExampleComponent, LookupSearchBasicExampleComponent, LookupSelectionModalAddItemExampleComponent, LookupSelectionModalBasicExampleComponent, LookupSingleSelectExampleComponent, ModalsConfirmBasicWithControllerExampleComponent, ModalsConfirmBasicWithHarnessExampleComponent, ModalsModalBasicWithControllerExampleComponent, ModalsModalBasicWithHarnessExampleComponent, ModalsModalBasicWithHarnessHelpKeyExampleComponent, ModalsModalWithErrorExampleComponent, NavbarExampleComponent, PagesActionHubExampleComponent, PagesPageHomePageBlocksLayoutExampleComponent, PagesPageListPageListLayoutExampleComponent, PagesPageListPageTabsLayoutExampleComponent, PagesPageRecordPageBlocksLayoutExampleComponent, PagesPageRecordPageTabsLayoutExampleComponent, PagesPageSplitViewPageFitLayoutExampleComponent, PhoneFieldBasicExampleComponent, PopoversDropdownBasicExampleComponent, PopoversPopoverBasicExampleComponent, PopoversPopoverProgrammaticExampleComponent, ProgressIndicatorPassiveIndicatorBasicExampleComponent, ProgressIndicatorWaterfallIndicatorBasicExampleComponent, ProgressIndicatorWizardBasicExampleComponent, RouterHrefBasicExampleComponent, SplitViewBasicExampleComponent, SplitViewPageBoundExampleComponent, TabsDynamicAddCloseExampleComponent, TabsDynamicExampleComponent, TabsSectionedFormModalExampleComponent, TabsStaticAddCloseExampleComponent, TabsStaticExampleComponent, TabsVerticalTabsBasicExampleComponent, TabsVerticalTabsGroupedExampleComponent, TabsVerticalTabsMixedExampleComponent, TabsWizardBasicExampleComponent, TextEditorExampleComponent, TextEditorHelpKeyExampleComponent, TextEditorRichTextDisplayExampleComponent, TilesBasicExampleComponent, ToastBasicExampleComponent, ToastCustomComponentExampleComponent, ValidationEmailValidationControlValidatorExampleComponent, ValidationEmailValidationDirectiveExampleComponent, ValidationUrlValidationControlValidatorExampleComponent, ValidationUrlValidationDirectiveExampleComponent };
|
|
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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/code-examples",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.3.1",
|
|
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.3.1",
|
|
27
|
+
"@skyux/ag-grid": "13.3.1",
|
|
28
|
+
"@skyux/angular-tree-component": "13.3.1",
|
|
29
|
+
"@skyux/autonumeric": "13.3.1",
|
|
30
|
+
"@skyux/avatar": "13.3.1",
|
|
31
|
+
"@skyux/colorpicker": "13.3.1",
|
|
32
|
+
"@skyux/core": "13.3.1",
|
|
33
|
+
"@skyux/data-manager": "13.3.1",
|
|
34
|
+
"@skyux/datetime": "13.3.1",
|
|
35
|
+
"@skyux/errors": "13.3.1",
|
|
36
|
+
"@skyux/filter-bar": "13.3.1",
|
|
37
|
+
"@skyux/flyout": "13.3.1",
|
|
38
|
+
"@skyux/forms": "13.3.1",
|
|
39
|
+
"@skyux/help-inline": "13.3.1",
|
|
40
|
+
"@skyux/icon": "13.3.1",
|
|
41
|
+
"@skyux/indicators": "13.3.1",
|
|
42
|
+
"@skyux/inline-form": "13.3.1",
|
|
43
|
+
"@skyux/layout": "13.3.1",
|
|
44
|
+
"@skyux/lists": "13.3.1",
|
|
45
|
+
"@skyux/lookup": "13.3.1",
|
|
46
|
+
"@skyux/modals": "13.3.1",
|
|
47
|
+
"@skyux/navbar": "13.3.1",
|
|
48
|
+
"@skyux/pages": "13.3.1",
|
|
49
|
+
"@skyux/phone-field": "13.3.1",
|
|
50
|
+
"@skyux/popovers": "13.3.1",
|
|
51
|
+
"@skyux/progress-indicator": "13.3.1",
|
|
52
|
+
"@skyux/router": "13.3.1",
|
|
53
|
+
"@skyux/split-view": "13.3.1",
|
|
54
|
+
"@skyux/tabs": "13.3.1",
|
|
55
|
+
"@skyux/text-editor": "13.3.1",
|
|
56
|
+
"@skyux/tiles": "13.3.1",
|
|
57
|
+
"@skyux/toast": "13.3.1",
|
|
58
|
+
"@skyux/validation": "13.3.1",
|
|
59
59
|
"ag-grid-angular": "^34.1.2",
|
|
60
60
|
"ag-grid-community": "^34.1.2"
|
|
61
61
|
},
|