@alauda/ui 8.0.0 → 8.0.1-beta
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/dialog/dialog.module.d.ts +6 -0
- package/drawer/drawer.module.d.ts +3 -0
- package/dropdown/dropdown.module.d.ts +9 -0
- package/esm2022/dialog/dialog.module.mjs +8 -1
- package/esm2022/drawer/component/drawer.component.mjs +2 -2
- package/esm2022/drawer/drawer.module.mjs +7 -1
- package/esm2022/dropdown/dropdown.module.mjs +11 -1
- package/esm2022/radio/radio.module.mjs +6 -1
- package/esm2022/time-picker/time-picker.module.mjs +5 -1
- package/esm2022/tooltip/tooltip.module.mjs +6 -1
- package/fesm2022/alauda-ui.mjs +39 -2
- package/fesm2022/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/radio/radio.module.d.ts +4 -0
- package/time-picker/time-picker.module.d.ts +3 -0
- package/tooltip/tooltip.module.d.ts +4 -0
- package/tsconfig.lib.tsbuildinfo +1 -1
package/package.json
CHANGED
package/radio/radio.module.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { RadioButtonComponent } from './radio-button/radio-button.component';
|
|
2
|
+
import { RadioGroupComponent } from './radio-group/radio-group.component';
|
|
3
|
+
import { RadioComponent } from './radio.component';
|
|
1
4
|
import * as i0 from "@angular/core";
|
|
2
5
|
import * as i1 from "@angular/common";
|
|
3
6
|
import * as i2 from "../icon/icon.module";
|
|
@@ -9,3 +12,4 @@ export declare class RadioModule {
|
|
|
9
12
|
static ɵmod: i0.ɵɵNgModuleDeclaration<RadioModule, never, [typeof i1.CommonModule, typeof i2.IconModule, typeof i3.RadioComponent, typeof i4.RadioGroupComponent, typeof i5.RadioButtonComponent], [typeof i3.RadioComponent, typeof i4.RadioGroupComponent, typeof i5.RadioButtonComponent]>;
|
|
10
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<RadioModule>;
|
|
11
14
|
}
|
|
15
|
+
export declare const RADIO_MODULE: readonly [typeof RadioComponent, typeof RadioGroupComponent, typeof RadioButtonComponent];
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { TimePickerComponent } from './component';
|
|
2
|
+
import { TimePickerPanelComponent } from './panel/panel.component';
|
|
1
3
|
import * as i0 from "@angular/core";
|
|
2
4
|
import * as i1 from "@angular/forms";
|
|
3
5
|
import * as i2 from "@angular/cdk/portal";
|
|
@@ -15,3 +17,4 @@ export declare class TimePickerModule {
|
|
|
15
17
|
static ɵmod: i0.ɵɵNgModuleDeclaration<TimePickerModule, never, [typeof i1.FormsModule, typeof i1.ReactiveFormsModule, typeof i2.PortalModule, typeof i3.OverlayModule, typeof i4.CommonModule, typeof i5.InputModule, typeof i6.TooltipModule, typeof i7.IconModule, typeof i8.ButtonModule, typeof i9.I18nModule, typeof i10.TimePickerComponent, typeof i11.TimePickerPanelComponent], [typeof i10.TimePickerComponent, typeof i11.TimePickerPanelComponent]>;
|
|
16
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<TimePickerModule>;
|
|
17
19
|
}
|
|
20
|
+
export declare const TIME_PICKER_MODULE: readonly [typeof TimePickerComponent, typeof TimePickerPanelComponent];
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { TooltipActiveDirective } from './tooltip-active.directive';
|
|
2
|
+
import { TooltipCopyDirective } from './tooltip-copy.directive';
|
|
3
|
+
import { TooltipDirective } from './tooltip.directive';
|
|
1
4
|
import * as i0 from "@angular/core";
|
|
2
5
|
import * as i1 from "@angular/common";
|
|
3
6
|
import * as i2 from "@angular/cdk/overlay";
|
|
@@ -10,3 +13,4 @@ export declare class TooltipModule {
|
|
|
10
13
|
static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipModule, never, [typeof i1.CommonModule, typeof i2.OverlayModule, typeof i3.TooltipDirective, typeof i4.TooltipComponent, typeof i5.TooltipActiveDirective, typeof i6.TooltipCopyDirective], [typeof i3.TooltipDirective, typeof i5.TooltipActiveDirective, typeof i6.TooltipCopyDirective]>;
|
|
11
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<TooltipModule>;
|
|
12
15
|
}
|
|
16
|
+
export declare const TOOLTIP_MODULE: readonly [typeof TooltipDirective, typeof TooltipActiveDirective, typeof TooltipCopyDirective];
|