@awc-ui/angular 1.0.0-beta → 1.0.0-beta.2

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.
@@ -1,14 +1,14 @@
1
1
  import { Provider } from '@angular/core';
2
2
  import { TextValueAccessor } from './directives/text-value-accessor';
3
3
  import * as i0 from "@angular/core";
4
- import * as i1 from "./directives/proxies";
5
- import * as i2 from "./directives/text-value-accessor";
6
- import * as i3 from "./directives/select-value-accessor";
7
- import * as i4 from "./directives/boolean-value-accessor";
8
- import * as i5 from "./directives/radio-value-accessor";
9
- import * as i6 from "./directives/number-value-accessor";
10
- import * as i7 from "./directives/switch-value-accessor";
11
- import * as i8 from "@angular/common";
4
+ import * as i1 from "@angular/common";
5
+ import * as i2 from "./directives/proxies";
6
+ import * as i3 from "./directives/text-value-accessor";
7
+ import * as i4 from "./directives/select-value-accessor";
8
+ import * as i5 from "./directives/boolean-value-accessor";
9
+ import * as i6 from "./directives/radio-value-accessor";
10
+ import * as i7 from "./directives/number-value-accessor";
11
+ import * as i8 from "./directives/switch-value-accessor";
12
12
  /**
13
13
  * ControlValueAccessor directives, so `[(ngModel)]` and `formControlName` bind
14
14
  * to AWC UI inputs. Declared here rather than in `DIRECTIVES` because that
@@ -17,9 +17,16 @@ import * as i8 from "@angular/common";
17
17
  */
18
18
  export declare const VALUE_ACCESSORS: (typeof TextValueAccessor)[];
19
19
  /**
20
- * Registers the AWC UI custom elements (the Stencil lazy loader) during
21
- * application bootstrap. Add it to your root providers instead of calling
22
- * `defineCustomElements()` manually:
20
+ * Registers ALL AWC UI custom elements (the Stencil lazy loader) during
21
+ * application bootstrap.
22
+ *
23
+ * Since the proxies became standalone (each one statically imports and
24
+ * registers its own element), this provider is NO LONGER REQUIRED — importing
25
+ * a proxy is enough. It is kept for backwards compatibility and for apps that
26
+ * use raw `md-*` tags without importing the corresponding proxy. Element
27
+ * definition is idempotent, so using both mechanisms together is harmless —
28
+ * but adding this provider forces the whole lazy-loader registry into the
29
+ * bundle, so prefer omitting it.
23
30
  *
24
31
  * @example
25
32
  * // NgModule app
@@ -40,28 +47,26 @@ export declare function provideAwcUi(): Provider;
40
47
  /**
41
48
  * AwcUiModule
42
49
  *
43
- * Import this module in your Angular application to use all AWC UI
44
- * component proxies (typed inputs, outputs and methods).
50
+ * Convenience module exporting ALL AWC UI component proxies (typed inputs,
51
+ * outputs and methods) plus the form value accessors.
45
52
  *
46
- * The underlying custom elements must be registered once. Either add
47
- * `provideAwcUi()` to your root providers (recommended, see above), or
48
- * call `defineCustomElements()` from `@awc-ui/core/loader` in `main.ts`:
53
+ * NOTE: the proxies are standalone components that register their own custom
54
+ * element on import no loader bootstrap needed. For the smallest bundles,
55
+ * prefer importing individual components over this module: this module
56
+ * references all 81 proxies, so the whole component set ships with your app.
49
57
  *
50
58
  * @example
51
- * // main.ts
52
- * import { defineCustomElements } from '@awc-ui/core/loader';
53
- * defineCustomElements(window);
59
+ * // Smallest bundle — standalone component imports exactly what it uses:
60
+ * import { MdButton } from '@awc-ui/angular';
61
+ * @Component({ standalone: true, imports: [MdButton], ... })
54
62
  *
55
- * // app.module.ts (or standalone component)
63
+ * // Convenience — everything at once (ships all components):
56
64
  * import { AwcUiModule } from '@awc-ui/angular';
57
- *
58
- * @NgModule({
59
- * imports: [AwcUiModule, ...],
60
- * })
65
+ * @NgModule({ imports: [AwcUiModule, ...] })
61
66
  * export class AppModule {}
62
67
  */
63
68
  export declare class AwcUiModule {
64
69
  static ɵfac: i0.ɵɵFactoryDeclaration<AwcUiModule, never>;
65
- static ɵmod: i0.ɵɵNgModuleDeclaration<AwcUiModule, [typeof i1.MdAccordion, typeof i1.MdAccordionItem, typeof i1.MdAppBar, typeof i1.MdAreaChart, typeof i1.MdAutocomplete, typeof i1.MdAvatar, typeof i1.MdBadge, typeof i1.MdBarChart, typeof i1.MdBottomSheet, typeof i1.MdBreadcrumbItem, typeof i1.MdBreadcrumbs, typeof i1.MdButton, typeof i1.MdButtonGroup, typeof i1.MdCard, typeof i1.MdCheckbox, typeof i1.MdChip, typeof i1.MdColorPicker, typeof i1.MdDatePicker, typeof i1.MdDialog, typeof i1.MdDivider, typeof i1.MdFab, typeof i1.MdFabMenu, typeof i1.MdFabMenuItem, typeof i1.MdIconButton, typeof i1.MdLineChart, typeof i1.MdList, typeof i1.MdListItem, typeof i1.MdLoadingIndicator, typeof i1.MdMenu, typeof i1.MdMenuItem, typeof i1.MdMenuItemGroup, typeof i1.MdMeter, typeof i1.MdMultiSelect, typeof i1.MdNavigationBar, typeof i1.MdNavigationRail, typeof i1.MdNavigationRailTab, typeof i1.MdNavigationTab, typeof i1.MdNumberField, typeof i1.MdOrganizationChart, typeof i1.MdOtpField, typeof i1.MdPieChart, typeof i1.MdProgressIndicator, typeof i1.MdRadio, typeof i1.MdRating, typeof i1.MdRipple, typeof i1.MdSearch, typeof i1.MdSegmentedButton, typeof i1.MdSegmentedButtonSet, typeof i1.MdSelect, typeof i1.MdSelectOption, typeof i1.MdSideSheet, typeof i1.MdSkeleton, typeof i1.MdSlider, typeof i1.MdSnackbar, typeof i1.MdSparkline, typeof i1.MdSplitButton, typeof i1.MdStatusDot, typeof i1.MdStep, typeof i1.MdStepper, typeof i1.MdSubMenuItem, typeof i1.MdSwitch, typeof i1.MdTab, typeof i1.MdTabPanel, typeof i1.MdTabPanels, typeof i1.MdTable, typeof i1.MdTableBody, typeof i1.MdTableCell, typeof i1.MdTableContainer, typeof i1.MdTableExpandToggle, typeof i1.MdTableFoot, typeof i1.MdTableHead, typeof i1.MdTablePagination, typeof i1.MdTableRow, typeof i1.MdTableSortLabel, typeof i1.MdTableToolbar, typeof i1.MdTabs, typeof i1.MdTextField, typeof i1.MdTimePicker, typeof i1.MdToolbar, typeof i1.MdTooltip, typeof i1.MdTransferList, typeof i2.TextValueAccessor, typeof i3.SelectValueAccessor, typeof i4.BooleanValueAccessor, typeof i5.RadioValueAccessor, typeof i6.NumericValueAccessor, typeof i7.SwitchValueAccessor], [typeof i8.CommonModule], [typeof i1.MdAccordion, typeof i1.MdAccordionItem, typeof i1.MdAppBar, typeof i1.MdAreaChart, typeof i1.MdAutocomplete, typeof i1.MdAvatar, typeof i1.MdBadge, typeof i1.MdBarChart, typeof i1.MdBottomSheet, typeof i1.MdBreadcrumbItem, typeof i1.MdBreadcrumbs, typeof i1.MdButton, typeof i1.MdButtonGroup, typeof i1.MdCard, typeof i1.MdCheckbox, typeof i1.MdChip, typeof i1.MdColorPicker, typeof i1.MdDatePicker, typeof i1.MdDialog, typeof i1.MdDivider, typeof i1.MdFab, typeof i1.MdFabMenu, typeof i1.MdFabMenuItem, typeof i1.MdIconButton, typeof i1.MdLineChart, typeof i1.MdList, typeof i1.MdListItem, typeof i1.MdLoadingIndicator, typeof i1.MdMenu, typeof i1.MdMenuItem, typeof i1.MdMenuItemGroup, typeof i1.MdMeter, typeof i1.MdMultiSelect, typeof i1.MdNavigationBar, typeof i1.MdNavigationRail, typeof i1.MdNavigationRailTab, typeof i1.MdNavigationTab, typeof i1.MdNumberField, typeof i1.MdOrganizationChart, typeof i1.MdOtpField, typeof i1.MdPieChart, typeof i1.MdProgressIndicator, typeof i1.MdRadio, typeof i1.MdRating, typeof i1.MdRipple, typeof i1.MdSearch, typeof i1.MdSegmentedButton, typeof i1.MdSegmentedButtonSet, typeof i1.MdSelect, typeof i1.MdSelectOption, typeof i1.MdSideSheet, typeof i1.MdSkeleton, typeof i1.MdSlider, typeof i1.MdSnackbar, typeof i1.MdSparkline, typeof i1.MdSplitButton, typeof i1.MdStatusDot, typeof i1.MdStep, typeof i1.MdStepper, typeof i1.MdSubMenuItem, typeof i1.MdSwitch, typeof i1.MdTab, typeof i1.MdTabPanel, typeof i1.MdTabPanels, typeof i1.MdTable, typeof i1.MdTableBody, typeof i1.MdTableCell, typeof i1.MdTableContainer, typeof i1.MdTableExpandToggle, typeof i1.MdTableFoot, typeof i1.MdTableHead, typeof i1.MdTablePagination, typeof i1.MdTableRow, typeof i1.MdTableSortLabel, typeof i1.MdTableToolbar, typeof i1.MdTabs, typeof i1.MdTextField, typeof i1.MdTimePicker, typeof i1.MdToolbar, typeof i1.MdTooltip, typeof i1.MdTransferList, typeof i2.TextValueAccessor, typeof i3.SelectValueAccessor, typeof i4.BooleanValueAccessor, typeof i5.RadioValueAccessor, typeof i6.NumericValueAccessor, typeof i7.SwitchValueAccessor]>;
70
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AwcUiModule, never, [typeof i1.CommonModule, typeof i2.MdAccordion, typeof i2.MdAccordionItem, typeof i2.MdAppBar, typeof i2.MdAreaChart, typeof i2.MdAutocomplete, typeof i2.MdAvatar, typeof i2.MdBadge, typeof i2.MdBarChart, typeof i2.MdBottomSheet, typeof i2.MdBreadcrumbItem, typeof i2.MdBreadcrumbs, typeof i2.MdButton, typeof i2.MdButtonGroup, typeof i2.MdCard, typeof i2.MdCheckbox, typeof i2.MdChip, typeof i2.MdColorPicker, typeof i2.MdDatePicker, typeof i2.MdDialog, typeof i2.MdDivider, typeof i2.MdFab, typeof i2.MdFabMenu, typeof i2.MdFabMenuItem, typeof i2.MdIconButton, typeof i2.MdLineChart, typeof i2.MdList, typeof i2.MdListItem, typeof i2.MdLoadingIndicator, typeof i2.MdMenu, typeof i2.MdMenuItem, typeof i2.MdMenuItemGroup, typeof i2.MdMeter, typeof i2.MdMultiSelect, typeof i2.MdNavigationBar, typeof i2.MdNavigationRail, typeof i2.MdNavigationRailTab, typeof i2.MdNavigationTab, typeof i2.MdNumberField, typeof i2.MdOrganizationChart, typeof i2.MdOtpField, typeof i2.MdPieChart, typeof i2.MdProgressIndicator, typeof i2.MdRadio, typeof i2.MdRating, typeof i2.MdRipple, typeof i2.MdSearch, typeof i2.MdSegmentedButton, typeof i2.MdSegmentedButtonSet, typeof i2.MdSelect, typeof i2.MdSelectOption, typeof i2.MdSideSheet, typeof i2.MdSkeleton, typeof i2.MdSlider, typeof i2.MdSnackbar, typeof i2.MdSparkline, typeof i2.MdSplitButton, typeof i2.MdStatusDot, typeof i2.MdStep, typeof i2.MdStepper, typeof i2.MdSubMenuItem, typeof i2.MdSwitch, typeof i2.MdTab, typeof i2.MdTabPanel, typeof i2.MdTabPanels, typeof i2.MdTable, typeof i2.MdTableBody, typeof i2.MdTableCell, typeof i2.MdTableContainer, typeof i2.MdTableExpandToggle, typeof i2.MdTableFoot, typeof i2.MdTableHead, typeof i2.MdTablePagination, typeof i2.MdTableRow, typeof i2.MdTableSortLabel, typeof i2.MdTableToolbar, typeof i2.MdTabs, typeof i2.MdTextField, typeof i2.MdTimePicker, typeof i2.MdToolbar, typeof i2.MdTooltip, typeof i2.MdTransferList, typeof i3.TextValueAccessor, typeof i4.SelectValueAccessor, typeof i5.BooleanValueAccessor, typeof i6.RadioValueAccessor, typeof i7.NumericValueAccessor, typeof i8.SwitchValueAccessor], [typeof i2.MdAccordion, typeof i2.MdAccordionItem, typeof i2.MdAppBar, typeof i2.MdAreaChart, typeof i2.MdAutocomplete, typeof i2.MdAvatar, typeof i2.MdBadge, typeof i2.MdBarChart, typeof i2.MdBottomSheet, typeof i2.MdBreadcrumbItem, typeof i2.MdBreadcrumbs, typeof i2.MdButton, typeof i2.MdButtonGroup, typeof i2.MdCard, typeof i2.MdCheckbox, typeof i2.MdChip, typeof i2.MdColorPicker, typeof i2.MdDatePicker, typeof i2.MdDialog, typeof i2.MdDivider, typeof i2.MdFab, typeof i2.MdFabMenu, typeof i2.MdFabMenuItem, typeof i2.MdIconButton, typeof i2.MdLineChart, typeof i2.MdList, typeof i2.MdListItem, typeof i2.MdLoadingIndicator, typeof i2.MdMenu, typeof i2.MdMenuItem, typeof i2.MdMenuItemGroup, typeof i2.MdMeter, typeof i2.MdMultiSelect, typeof i2.MdNavigationBar, typeof i2.MdNavigationRail, typeof i2.MdNavigationRailTab, typeof i2.MdNavigationTab, typeof i2.MdNumberField, typeof i2.MdOrganizationChart, typeof i2.MdOtpField, typeof i2.MdPieChart, typeof i2.MdProgressIndicator, typeof i2.MdRadio, typeof i2.MdRating, typeof i2.MdRipple, typeof i2.MdSearch, typeof i2.MdSegmentedButton, typeof i2.MdSegmentedButtonSet, typeof i2.MdSelect, typeof i2.MdSelectOption, typeof i2.MdSideSheet, typeof i2.MdSkeleton, typeof i2.MdSlider, typeof i2.MdSnackbar, typeof i2.MdSparkline, typeof i2.MdSplitButton, typeof i2.MdStatusDot, typeof i2.MdStep, typeof i2.MdStepper, typeof i2.MdSubMenuItem, typeof i2.MdSwitch, typeof i2.MdTab, typeof i2.MdTabPanel, typeof i2.MdTabPanels, typeof i2.MdTable, typeof i2.MdTableBody, typeof i2.MdTableCell, typeof i2.MdTableContainer, typeof i2.MdTableExpandToggle, typeof i2.MdTableFoot, typeof i2.MdTableHead, typeof i2.MdTablePagination, typeof i2.MdTableRow, typeof i2.MdTableSortLabel, typeof i2.MdTableToolbar, typeof i2.MdTabs, typeof i2.MdTextField, typeof i2.MdTimePicker, typeof i2.MdToolbar, typeof i2.MdTooltip, typeof i2.MdTransferList, typeof i3.TextValueAccessor, typeof i4.SelectValueAccessor, typeof i5.BooleanValueAccessor, typeof i6.RadioValueAccessor, typeof i7.NumericValueAccessor, typeof i8.SwitchValueAccessor]>;
66
71
  static ɵinj: i0.ɵɵInjectorDeclaration<AwcUiModule>;
67
72
  }
@@ -5,5 +5,5 @@ export declare class BooleanValueAccessor extends ValueAccessor {
5
5
  constructor(el: ElementRef);
6
6
  writeValue(value: any): void;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<BooleanValueAccessor, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<BooleanValueAccessor, "md-checkbox", never, {}, {}, never, never, false, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BooleanValueAccessor, "md-checkbox", never, {}, {}, never, never, true, never>;
9
9
  }
@@ -5,5 +5,5 @@ export declare class NumericValueAccessor extends ValueAccessor {
5
5
  constructor(el: ElementRef);
6
6
  registerOnChange(fn: (_: number | null) => void): void;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<NumericValueAccessor, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<NumericValueAccessor, "md-rating, md-slider, md-number-field", never, {}, {}, never, never, false, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NumericValueAccessor, "md-rating, md-slider, md-number-field", never, {}, {}, never, never, true, never>;
9
9
  }