@alauda/ui 6.1.3 → 6.1.4-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/alauda-ui.metadata.json +1 -1
- package/bundles/alauda-ui.umd.js +35 -35
- package/bundles/alauda-ui.umd.js.map +1 -1
- package/bundles/alauda-ui.umd.min.js +1 -1
- package/bundles/alauda-ui.umd.min.js.map +1 -1
- package/drawer/{component/drawer.service.d.ts → drawer.service.d.ts} +1 -1
- package/drawer/public-api.d.ts +1 -1
- package/esm2015/drawer/drawer.module.js +2 -2
- package/esm2015/drawer/drawer.module.ngfactory.js +1 -1
- package/esm2015/drawer/drawer.module.ngsummary.json +1 -1
- package/esm2015/drawer/drawer.service.js +46 -0
- package/esm2015/drawer/{component/drawer.service.ngsummary.json → drawer.service.ngsummary.json} +0 -0
- package/esm2015/drawer/public-api.js +2 -2
- package/esm2015/drawer/public-api.ngsummary.json +1 -1
- package/esm2015/message/message.module.js +2 -2
- package/fesm2015/alauda-ui.js +29 -29
- package/fesm2015/alauda-ui.js.map +1 -1
- package/package.json +1 -1
- package/esm2015/drawer/component/drawer.service.js +0 -46
package/bundles/alauda-ui.umd.js
CHANGED
|
@@ -7060,20 +7060,6 @@
|
|
|
7060
7060
|
{ type: i0.ChangeDetectorRef }
|
|
7061
7061
|
]; };
|
|
7062
7062
|
|
|
7063
|
-
var MessageModule = /** @class */ (function () {
|
|
7064
|
-
function MessageModule() {
|
|
7065
|
-
}
|
|
7066
|
-
return MessageModule;
|
|
7067
|
-
}());
|
|
7068
|
-
MessageModule.decorators = [
|
|
7069
|
-
{ type: i0.NgModule, args: [{
|
|
7070
|
-
imports: [common.CommonModule, overlay.OverlayModule, IconModule],
|
|
7071
|
-
declarations: [MessageWrapperComponent, MessageComponent],
|
|
7072
|
-
entryComponents: [MessageWrapperComponent, MessageComponent],
|
|
7073
|
-
providers: [MessageService],
|
|
7074
|
-
},] }
|
|
7075
|
-
];
|
|
7076
|
-
|
|
7077
7063
|
var BaseMessage = /** @class */ (function () {
|
|
7078
7064
|
function BaseMessage(overlay, injector, applicationRef, cfr, overlayPaneClassName, wrapperClass, componentClass, globalConfig) {
|
|
7079
7065
|
this.overlay = overlay;
|
|
@@ -7180,6 +7166,20 @@
|
|
|
7180
7166
|
{ type: undefined, decorators: [{ type: i0.Optional }, { type: i0.Inject, args: [MESSAGE_CONFIG,] }] }
|
|
7181
7167
|
]; };
|
|
7182
7168
|
|
|
7169
|
+
var MessageModule = /** @class */ (function () {
|
|
7170
|
+
function MessageModule() {
|
|
7171
|
+
}
|
|
7172
|
+
return MessageModule;
|
|
7173
|
+
}());
|
|
7174
|
+
MessageModule.decorators = [
|
|
7175
|
+
{ type: i0.NgModule, args: [{
|
|
7176
|
+
imports: [common.CommonModule, overlay.OverlayModule, IconModule],
|
|
7177
|
+
declarations: [MessageWrapperComponent, MessageComponent],
|
|
7178
|
+
entryComponents: [MessageWrapperComponent, MessageComponent],
|
|
7179
|
+
providers: [MessageService],
|
|
7180
|
+
},] }
|
|
7181
|
+
];
|
|
7182
|
+
|
|
7183
7183
|
var NotificationWrapperComponent = /** @class */ (function (_super) {
|
|
7184
7184
|
__extends(NotificationWrapperComponent, _super);
|
|
7185
7185
|
function NotificationWrapperComponent(elementRef) {
|
|
@@ -12185,27 +12185,6 @@
|
|
|
12185
12185
|
footerTemplate: [{ type: i0.ContentChild, args: [DrawerFooterDirective, { read: i0.TemplateRef },] }]
|
|
12186
12186
|
};
|
|
12187
12187
|
|
|
12188
|
-
var COMMON = [
|
|
12189
|
-
DrawerComponent,
|
|
12190
|
-
DrawerHeaderDirective,
|
|
12191
|
-
DrawerContentDirective,
|
|
12192
|
-
DrawerFooterDirective,
|
|
12193
|
-
];
|
|
12194
|
-
var DrawerModule = /** @class */ (function () {
|
|
12195
|
-
function DrawerModule() {
|
|
12196
|
-
}
|
|
12197
|
-
return DrawerModule;
|
|
12198
|
-
}());
|
|
12199
|
-
DrawerModule.decorators = [
|
|
12200
|
-
{ type: i0.NgModule, args: [{
|
|
12201
|
-
imports: [common.CommonModule, IconModule, IconModule, overlay.OverlayModule, portal.PortalModule],
|
|
12202
|
-
declarations: COMMON,
|
|
12203
|
-
exports: COMMON,
|
|
12204
|
-
entryComponents: [DrawerComponent],
|
|
12205
|
-
providers: [DrawerService],
|
|
12206
|
-
},] }
|
|
12207
|
-
];
|
|
12208
|
-
|
|
12209
12188
|
var DrawerService = /** @class */ (function () {
|
|
12210
12189
|
function DrawerService(overlay) {
|
|
12211
12190
|
this.overlay = overlay;
|
|
@@ -12248,6 +12227,27 @@
|
|
|
12248
12227
|
{ type: overlay.Overlay }
|
|
12249
12228
|
]; };
|
|
12250
12229
|
|
|
12230
|
+
var COMMON = [
|
|
12231
|
+
DrawerComponent,
|
|
12232
|
+
DrawerHeaderDirective,
|
|
12233
|
+
DrawerContentDirective,
|
|
12234
|
+
DrawerFooterDirective,
|
|
12235
|
+
];
|
|
12236
|
+
var DrawerModule = /** @class */ (function () {
|
|
12237
|
+
function DrawerModule() {
|
|
12238
|
+
}
|
|
12239
|
+
return DrawerModule;
|
|
12240
|
+
}());
|
|
12241
|
+
DrawerModule.decorators = [
|
|
12242
|
+
{ type: i0.NgModule, args: [{
|
|
12243
|
+
imports: [common.CommonModule, IconModule, IconModule, overlay.OverlayModule, portal.PortalModule],
|
|
12244
|
+
declarations: COMMON,
|
|
12245
|
+
exports: COMMON,
|
|
12246
|
+
entryComponents: [DrawerComponent],
|
|
12247
|
+
providers: [DrawerService],
|
|
12248
|
+
},] }
|
|
12249
|
+
];
|
|
12250
|
+
|
|
12251
12251
|
var StepState = {
|
|
12252
12252
|
Default: 'default',
|
|
12253
12253
|
Done: 'done',
|