@awc-ui/angular 1.0.0-beta → 1.0.0-beta.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/awc-ui.module.d.ts +30 -25
- package/directives/boolean-value-accessor.d.ts +1 -1
- package/directives/number-value-accessor.d.ts +1 -1
- package/directives/proxies.d.ts +125 -125
- package/directives/radio-value-accessor.d.ts +1 -1
- package/directives/select-value-accessor.d.ts +1 -1
- package/directives/switch-value-accessor.d.ts +1 -1
- package/directives/text-value-accessor.d.ts +1 -1
- package/esm2022/awc-ui.module.mjs +25 -21
- package/esm2022/directives/boolean-value-accessor.mjs +3 -3
- package/esm2022/directives/number-value-accessor.mjs +3 -3
- package/esm2022/directives/proxies.mjs +331 -85
- package/esm2022/directives/radio-value-accessor.mjs +3 -3
- package/esm2022/directives/select-value-accessor.mjs +3 -3
- package/esm2022/directives/switch-value-accessor.mjs +5 -2
- package/esm2022/directives/text-value-accessor.mjs +3 -3
- package/fesm2022/awc-ui-angular.mjs +368 -115
- package/fesm2022/awc-ui-angular.mjs.map +1 -1
- package/package.json +13 -2
package/awc-ui.module.d.ts
CHANGED
|
@@ -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 "
|
|
5
|
-
import * as i2 from "./directives/
|
|
6
|
-
import * as i3 from "./directives/
|
|
7
|
-
import * as i4 from "./directives/
|
|
8
|
-
import * as i5 from "./directives/
|
|
9
|
-
import * as i6 from "./directives/
|
|
10
|
-
import * as i7 from "./directives/
|
|
11
|
-
import * as i8 from "
|
|
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
|
|
21
|
-
* application bootstrap.
|
|
22
|
-
*
|
|
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
|
-
*
|
|
44
|
-
*
|
|
50
|
+
* Convenience module exporting ALL AWC UI component proxies (typed inputs,
|
|
51
|
+
* outputs and methods) plus the form value accessors.
|
|
45
52
|
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
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
|
-
* //
|
|
52
|
-
* import {
|
|
53
|
-
*
|
|
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
|
-
* //
|
|
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
|
|
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,
|
|
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,
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NumericValueAccessor, "md-rating, md-slider, md-number-field", never, {}, {}, never, never, true, never>;
|
|
9
9
|
}
|