@sd-angular/core 1.0.87 → 1.0.88
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/bundles/sd-angular-core-common.umd.js +7 -4
- package/bundles/sd-angular-core-common.umd.js.map +1 -1
- package/bundles/sd-angular-core-common.umd.min.js +2 -2
- package/bundles/sd-angular-core-common.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-db.umd.js +429 -0
- package/bundles/sd-angular-core-db.umd.js.map +1 -0
- package/bundles/sd-angular-core-db.umd.min.js +16 -0
- package/bundles/sd-angular-core-db.umd.min.js.map +1 -0
- package/bundles/sd-angular-core.umd.js +4 -4
- package/bundles/sd-angular-core.umd.min.js +1 -1
- package/bundles/sd-angular-core.umd.min.js.map +1 -1
- package/common/sd-angular-core-common.metadata.json +1 -1
- package/common/src/lib/configurations/firebase.configuration.d.ts +6 -0
- package/common/src/public-api.d.ts +1 -0
- package/db/index.d.ts +1 -0
- package/db/package.json +12 -0
- package/db/sd-angular-core-db.d.ts +4 -0
- package/db/sd-angular-core-db.metadata.json +1 -0
- package/db/src/lib/db.model.d.ts +11 -0
- package/db/src/lib/db.service.d.ts +13 -0
- package/db/src/public-api.d.ts +2 -0
- package/esm2015/common/src/lib/configurations/firebase.configuration.js +3 -0
- package/esm2015/common/src/public-api.js +2 -1
- package/esm2015/db/index.js +2 -0
- package/esm2015/db/sd-angular-core-db.js +5 -0
- package/esm2015/db/src/lib/db.model.js +2 -0
- package/esm2015/db/src/lib/db.service.js +61 -0
- package/esm2015/db/src/public-api.js +6 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/sd-angular-core-common.js +4 -2
- package/fesm2015/sd-angular-core-common.js.map +1 -1
- package/fesm2015/sd-angular-core-db.js +68 -0
- package/fesm2015/sd-angular-core-db.js.map +1 -0
- package/fesm2015/sd-angular-core.js +1 -0
- package/fesm2015/sd-angular-core.js.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/{sd-angular-core-1.0.87.tgz → sd-angular-core-1.0.88.tgz} +0 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { __awaiter } from 'tslib';
|
|
2
|
+
import { ɵɵdefineInjectable, ɵɵinject, Injectable, Inject, Optional } from '@angular/core';
|
|
3
|
+
import { SdApiService } from '@sd-angular/core/api';
|
|
4
|
+
import { FIREBASE_CONFIG } from '@sd-angular/core/common';
|
|
5
|
+
|
|
6
|
+
class SdExportService {
|
|
7
|
+
constructor(apiService, firebaseConfiguration) {
|
|
8
|
+
this.apiService = apiService;
|
|
9
|
+
this.firebaseConfiguration = firebaseConfiguration;
|
|
10
|
+
this.get = (collection, id) => __awaiter(this, void 0, void 0, function* () {
|
|
11
|
+
if (!this.hasConfiguration) {
|
|
12
|
+
throw new Error('No firebase function configuration');
|
|
13
|
+
}
|
|
14
|
+
const { functionUrl, env } = this.firebaseConfiguration;
|
|
15
|
+
const url = `${functionUrl}/db/get/${env}-${collection}/${id}`;
|
|
16
|
+
return yield this.apiService.get(url);
|
|
17
|
+
});
|
|
18
|
+
this.set = (collection, id, data) => __awaiter(this, void 0, void 0, function* () {
|
|
19
|
+
if (!this.hasConfiguration) {
|
|
20
|
+
throw new Error('No firebase function configuration');
|
|
21
|
+
}
|
|
22
|
+
const { functionUrl, env } = this.firebaseConfiguration;
|
|
23
|
+
const url = `${functionUrl}/db/set/${env}-${collection}/${id}`;
|
|
24
|
+
yield this.apiService.post(url, data);
|
|
25
|
+
});
|
|
26
|
+
this.remove = (collection, id) => __awaiter(this, void 0, void 0, function* () {
|
|
27
|
+
if (!this.hasConfiguration) {
|
|
28
|
+
throw new Error('No firebase function configuration');
|
|
29
|
+
}
|
|
30
|
+
const { functionUrl, env } = this.firebaseConfiguration;
|
|
31
|
+
const url = `${functionUrl}/db/remove/${env}-${collection}/${id}`;
|
|
32
|
+
yield this.apiService.delete(url);
|
|
33
|
+
});
|
|
34
|
+
this.find = (collection, id, query) => __awaiter(this, void 0, void 0, function* () {
|
|
35
|
+
if (!this.hasConfiguration) {
|
|
36
|
+
throw new Error('No firebase function configuration');
|
|
37
|
+
}
|
|
38
|
+
const { functionUrl, env } = this.firebaseConfiguration;
|
|
39
|
+
const url = `${functionUrl}/db/find/${env}-${collection}/${id}`;
|
|
40
|
+
return yield this.apiService.post(url, query);
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
get hasConfiguration() {
|
|
44
|
+
var _a, _b;
|
|
45
|
+
return !!((_a = this.firebaseConfiguration) === null || _a === void 0 ? void 0 : _a.functionUrl) && !!((_b = this.firebaseConfiguration) === null || _b === void 0 ? void 0 : _b.env);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
SdExportService.ɵprov = ɵɵdefineInjectable({ factory: function SdExportService_Factory() { return new SdExportService(ɵɵinject(SdApiService), ɵɵinject(FIREBASE_CONFIG, 8)); }, token: SdExportService, providedIn: "root" });
|
|
49
|
+
SdExportService.decorators = [
|
|
50
|
+
{ type: Injectable, args: [{
|
|
51
|
+
providedIn: 'root'
|
|
52
|
+
},] }
|
|
53
|
+
];
|
|
54
|
+
SdExportService.ctorParameters = () => [
|
|
55
|
+
{ type: SdApiService },
|
|
56
|
+
{ type: undefined, decorators: [{ type: Inject, args: [FIREBASE_CONFIG,] }, { type: Optional }] }
|
|
57
|
+
];
|
|
58
|
+
|
|
59
|
+
/*
|
|
60
|
+
* Public API Surface of superdev-angular-core
|
|
61
|
+
*/
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Generated bundle index. Do not edit.
|
|
65
|
+
*/
|
|
66
|
+
|
|
67
|
+
export { SdExportService };
|
|
68
|
+
//# sourceMappingURL=sd-angular-core-db.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sd-angular-core-db.js","sources":["../../../../projects/sd-core/db/src/lib/db.service.ts","../../../../projects/sd-core/db/src/public-api.ts","../../../../projects/sd-core/db/sd-angular-core-db.ts"],"sourcesContent":["import { Optional } from '@angular/core';\r\nimport { Injectable, Inject } from '@angular/core';\r\nimport { SdApiService } from '@sd-angular/core/api';\r\nimport { FIREBASE_CONFIG, IFirebaseConfiguration } from '@sd-angular/core/common';\r\nimport { DbQuery, DbRes } from './db.model';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class SdExportService {\r\n private get hasConfiguration() {\r\n return !!this.firebaseConfiguration?.functionUrl && !!this.firebaseConfiguration?.env;\r\n }\r\n constructor(\r\n private apiService: SdApiService,\r\n @Inject(FIREBASE_CONFIG) @Optional() private firebaseConfiguration: IFirebaseConfiguration) {\r\n }\r\n\r\n get = async <T = any>(collection: string, id: string): Promise<DbRes<T>> => {\r\n if (!this.hasConfiguration) {\r\n throw new Error('No firebase function configuration');\r\n }\r\n const { functionUrl, env } = this.firebaseConfiguration;\r\n const url = `${functionUrl}/db/get/${env}-${collection}/${id}`;\r\n return await this.apiService.get(url);\r\n }\r\n\r\n set = async <T = any>(collection: string, id: string, data: T): Promise<void> => {\r\n if (!this.hasConfiguration) {\r\n throw new Error('No firebase function configuration');\r\n }\r\n const { functionUrl, env } = this.firebaseConfiguration;\r\n const url = `${functionUrl}/db/set/${env}-${collection}/${id}`;\r\n await this.apiService.post(url, data);\r\n }\r\n\r\n remove = async <T = any>(collection: string, id: string): Promise<void> => {\r\n if (!this.hasConfiguration) {\r\n throw new Error('No firebase function configuration');\r\n }\r\n const { functionUrl, env } = this.firebaseConfiguration;\r\n const url = `${functionUrl}/db/remove/${env}-${collection}/${id}`;\r\n await this.apiService.delete(url);\r\n }\r\n\r\n find = async <T = any>(collection: string, id: string, query: DbQuery): Promise<DbRes<T[]>> => {\r\n if (!this.hasConfiguration) {\r\n throw new Error('No firebase function configuration');\r\n }\r\n const { functionUrl, env } = this.firebaseConfiguration;\r\n const url = `${functionUrl}/db/find/${env}-${collection}/${id}`;\r\n return await this.apiService.post(url, query);\r\n }\r\n}\r\n","/*\r\n * Public API Surface of superdev-angular-core\r\n */\r\n\r\nexport * from './lib/db.model';\r\nexport * from './lib/db.service';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":";;;;;MASa,eAAe;IAI1B,YACU,UAAwB,EACa,qBAA6C;QADlF,eAAU,GAAV,UAAU,CAAc;QACa,0BAAqB,GAArB,qBAAqB,CAAwB;QAG5F,QAAG,GAAG,CAAgB,UAAkB,EAAE,EAAU;YAClD,IAAI,CAAC,IAAI,CAAC,gBAAgB,EAAE;gBAC1B,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACvD;YACD,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,qBAAqB,CAAC;YACxD,MAAM,GAAG,GAAG,GAAG,WAAW,WAAW,GAAG,IAAI,UAAU,IAAI,EAAE,EAAE,CAAC;YAC/D,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;SACvC,CAAA,CAAA;QAED,QAAG,GAAG,CAAgB,UAAkB,EAAE,EAAU,EAAE,IAAO;YAC3D,IAAI,CAAC,IAAI,CAAC,gBAAgB,EAAE;gBAC1B,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACvD;YACD,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,qBAAqB,CAAC;YACxD,MAAM,GAAG,GAAG,GAAG,WAAW,WAAW,GAAG,IAAI,UAAU,IAAI,EAAE,EAAE,CAAC;YAC/D,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,EAAE,IAAI,CAAC,CAAC;SACvC,CAAA,CAAA;QAED,WAAM,GAAG,CAAgB,UAAkB,EAAE,EAAU;YACrD,IAAI,CAAC,IAAI,CAAC,gBAAgB,EAAE;gBAC1B,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACvD;YACD,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,qBAAqB,CAAC;YACxD,MAAM,GAAG,GAAG,GAAG,WAAW,cAAc,GAAG,IAAI,UAAU,IAAI,EAAE,EAAE,CAAC;YAClE,MAAM,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;SACnC,CAAA,CAAA;QAED,SAAI,GAAG,CAAgB,UAAkB,EAAE,EAAU,EAAE,KAAc;YACnE,IAAI,CAAC,IAAI,CAAC,gBAAgB,EAAE;gBAC1B,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACvD;YACD,MAAM,EAAE,WAAW,EAAE,GAAG,EAAE,GAAG,IAAI,CAAC,qBAAqB,CAAC;YACxD,MAAM,GAAG,GAAG,GAAG,WAAW,YAAY,GAAG,IAAI,UAAU,IAAI,EAAE,EAAE,CAAC;YAChE,OAAO,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;SAC/C,CAAA,CAAA;KApCA;IAND,IAAY,gBAAgB;;QAC1B,OAAO,CAAC,QAAC,IAAI,CAAC,qBAAqB,0CAAE,WAAW,CAAA,IAAI,CAAC,QAAC,IAAI,CAAC,qBAAqB,0CAAE,GAAG,CAAA,CAAC;KACvF;;;;YANF,UAAU,SAAC;gBACV,UAAU,EAAE,MAAM;aACnB;;;YANQ,YAAY;4CAahB,MAAM,SAAC,eAAe,cAAG,QAAQ;;;ACftC;;;;ACAA;;;;;;"}
|
|
@@ -15,6 +15,7 @@ import '@sd-angular/core/image-preview';
|
|
|
15
15
|
import '@sd-angular/core/comment';
|
|
16
16
|
import '@sd-angular/core/filter';
|
|
17
17
|
import '@sd-angular/core/modal-resizable';
|
|
18
|
+
import '@sd-angular/core/db';
|
|
18
19
|
import { NgModule } from '@angular/core';
|
|
19
20
|
import { CommonModule } from '@angular/common';
|
|
20
21
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sd-angular-core.js","sources":["../../../../projects/sd-core/src/lib/material.module.ts","../../../../projects/sd-core/src/lib/core.module.ts","../../../../projects/sd-core/src/sd-angular-core.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\r\nimport { MatFormFieldModule } from '@angular/material/form-field';\r\nimport { MatTooltipModule } from '@angular/material/tooltip';\r\n\r\nimport { MatInputModule } from '@angular/material/input';\r\nimport { MatCheckboxModule } from '@angular/material/checkbox';\r\nimport { MatSlideToggleModule } from '@angular/material/slide-toggle';\r\nimport { MatSelectModule } from '@angular/material/select';\r\nimport { MatRadioModule } from '@angular/material/radio';\r\nimport { MatAutocompleteModule } from '@angular/material/autocomplete';\r\nimport { MatIconModule } from '@angular/material/icon';\r\nimport { MatMenuModule } from '@angular/material/menu';\r\nimport { MatChipsModule } from '@angular/material/chips';\r\nimport { MatButtonModule } from '@angular/material/button';\r\nimport { MatDialogModule } from '@angular/material/dialog';\r\nimport { MatBottomSheetModule } from '@angular/material/bottom-sheet';\r\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\r\nimport { MatExpansionModule } from '@angular/material/expansion';\r\nimport { MatTabsModule } from '@angular/material/tabs';\r\nimport { DragDropModule } from '@angular/cdk/drag-drop';\r\nimport { MatPaginatorModule } from '@angular/material/paginator';\r\n\r\n@NgModule({\r\n imports: [\r\n MatTooltipModule,\r\n MatFormFieldModule,\r\n MatInputModule,\r\n MatSelectModule,\r\n MatAutocompleteModule,\r\n MatCheckboxModule,\r\n MatSlideToggleModule,\r\n MatRadioModule,\r\n MatIconModule,\r\n MatMenuModule,\r\n MatChipsModule,\r\n MatButtonModule,\r\n MatDialogModule,\r\n MatBottomSheetModule,\r\n MatProgressSpinnerModule,\r\n DragDropModule,\r\n MatExpansionModule,\r\n MatTabsModule,\r\n MatPaginatorModule\r\n ],\r\n exports: [\r\n MatTooltipModule,\r\n MatFormFieldModule,\r\n MatInputModule,\r\n MatSelectModule,\r\n MatAutocompleteModule,\r\n MatCheckboxModule,\r\n MatSlideToggleModule,\r\n MatRadioModule,\r\n MatIconModule,\r\n MatMenuModule,\r\n MatChipsModule,\r\n MatButtonModule,\r\n MatDialogModule,\r\n MatBottomSheetModule,\r\n MatProgressSpinnerModule,\r\n DragDropModule,\r\n MatExpansionModule,\r\n MatTabsModule,\r\n MatPaginatorModule\r\n ]\r\n})\r\nexport class MaterialModule { }\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { MaterialModule } from './material.module';\r\n\r\nimport { SdServiceModule } from '@sd-angular/core/service';\r\nimport { SdChartModule } from '@sd-angular/core/chart';\r\nimport { SdGridMaterialModule } from '@sd-angular/core/grid-material';\r\nimport { SdEditorModule } from '@sd-angular/core/editor';\r\nimport { SdKonvaModule } from '@sd-angular/core/konva';\r\nimport { SdUploadExcelModule } from '@sd-angular/core/upload-excel';\r\nimport { SdGridModule } from '@sd-angular/core/grid';\r\nimport { SdFormModule } from '@sd-angular/core/form';\r\n\r\n@NgModule({\r\n imports: [\r\n CommonModule,\r\n MaterialModule,\r\n SdChartModule,\r\n SdKonvaModule,\r\n SdGridMaterialModule,\r\n SdUploadExcelModule,\r\n SdGridModule,\r\n SdFormModule,\r\n SdServiceModule\r\n ],\r\n declarations: [\r\n ],\r\n exports: [\r\n SdChartModule,\r\n SdKonvaModule,\r\n SdGridMaterialModule,\r\n SdEditorModule,\r\n SdUploadExcelModule,\r\n SdGridModule,\r\n SdFormModule,\r\n SdServiceModule,\r\n MaterialModule,\r\n ],\r\n providers: [\r\n ]\r\n})\r\nexport class SdCoreModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sd-angular-core.js","sources":["../../../../projects/sd-core/src/lib/material.module.ts","../../../../projects/sd-core/src/lib/core.module.ts","../../../../projects/sd-core/src/sd-angular-core.ts"],"sourcesContent":["import { NgModule } from '@angular/core';\r\nimport { MatFormFieldModule } from '@angular/material/form-field';\r\nimport { MatTooltipModule } from '@angular/material/tooltip';\r\n\r\nimport { MatInputModule } from '@angular/material/input';\r\nimport { MatCheckboxModule } from '@angular/material/checkbox';\r\nimport { MatSlideToggleModule } from '@angular/material/slide-toggle';\r\nimport { MatSelectModule } from '@angular/material/select';\r\nimport { MatRadioModule } from '@angular/material/radio';\r\nimport { MatAutocompleteModule } from '@angular/material/autocomplete';\r\nimport { MatIconModule } from '@angular/material/icon';\r\nimport { MatMenuModule } from '@angular/material/menu';\r\nimport { MatChipsModule } from '@angular/material/chips';\r\nimport { MatButtonModule } from '@angular/material/button';\r\nimport { MatDialogModule } from '@angular/material/dialog';\r\nimport { MatBottomSheetModule } from '@angular/material/bottom-sheet';\r\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\r\nimport { MatExpansionModule } from '@angular/material/expansion';\r\nimport { MatTabsModule } from '@angular/material/tabs';\r\nimport { DragDropModule } from '@angular/cdk/drag-drop';\r\nimport { MatPaginatorModule } from '@angular/material/paginator';\r\n\r\n@NgModule({\r\n imports: [\r\n MatTooltipModule,\r\n MatFormFieldModule,\r\n MatInputModule,\r\n MatSelectModule,\r\n MatAutocompleteModule,\r\n MatCheckboxModule,\r\n MatSlideToggleModule,\r\n MatRadioModule,\r\n MatIconModule,\r\n MatMenuModule,\r\n MatChipsModule,\r\n MatButtonModule,\r\n MatDialogModule,\r\n MatBottomSheetModule,\r\n MatProgressSpinnerModule,\r\n DragDropModule,\r\n MatExpansionModule,\r\n MatTabsModule,\r\n MatPaginatorModule\r\n ],\r\n exports: [\r\n MatTooltipModule,\r\n MatFormFieldModule,\r\n MatInputModule,\r\n MatSelectModule,\r\n MatAutocompleteModule,\r\n MatCheckboxModule,\r\n MatSlideToggleModule,\r\n MatRadioModule,\r\n MatIconModule,\r\n MatMenuModule,\r\n MatChipsModule,\r\n MatButtonModule,\r\n MatDialogModule,\r\n MatBottomSheetModule,\r\n MatProgressSpinnerModule,\r\n DragDropModule,\r\n MatExpansionModule,\r\n MatTabsModule,\r\n MatPaginatorModule\r\n ]\r\n})\r\nexport class MaterialModule { }\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { MaterialModule } from './material.module';\r\n\r\nimport { SdServiceModule } from '@sd-angular/core/service';\r\nimport { SdChartModule } from '@sd-angular/core/chart';\r\nimport { SdGridMaterialModule } from '@sd-angular/core/grid-material';\r\nimport { SdEditorModule } from '@sd-angular/core/editor';\r\nimport { SdKonvaModule } from '@sd-angular/core/konva';\r\nimport { SdUploadExcelModule } from '@sd-angular/core/upload-excel';\r\nimport { SdGridModule } from '@sd-angular/core/grid';\r\nimport { SdFormModule } from '@sd-angular/core/form';\r\n\r\n@NgModule({\r\n imports: [\r\n CommonModule,\r\n MaterialModule,\r\n SdChartModule,\r\n SdKonvaModule,\r\n SdGridMaterialModule,\r\n SdUploadExcelModule,\r\n SdGridModule,\r\n SdFormModule,\r\n SdServiceModule\r\n ],\r\n declarations: [\r\n ],\r\n exports: [\r\n SdChartModule,\r\n SdKonvaModule,\r\n SdGridMaterialModule,\r\n SdEditorModule,\r\n SdUploadExcelModule,\r\n SdGridModule,\r\n SdFormModule,\r\n SdServiceModule,\r\n MaterialModule,\r\n ],\r\n providers: [\r\n ]\r\n})\r\nexport class SdCoreModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAkEa,cAAc;;;YA5C1B,QAAQ,SAAC;gBACR,OAAO,EAAE;oBACP,gBAAgB;oBAChB,kBAAkB;oBAClB,cAAc;oBACd,eAAe;oBACf,qBAAqB;oBACrB,iBAAiB;oBACjB,oBAAoB;oBACpB,cAAc;oBACd,aAAa;oBACb,aAAa;oBACb,cAAc;oBACd,eAAe;oBACf,eAAe;oBACf,oBAAoB;oBACpB,wBAAwB;oBACxB,cAAc;oBACd,kBAAkB;oBAClB,aAAa;oBACb,kBAAkB;iBACnB;gBACD,OAAO,EAAE;oBACP,gBAAgB;oBAChB,kBAAkB;oBAClB,cAAc;oBACd,eAAe;oBACf,qBAAqB;oBACrB,iBAAiB;oBACjB,oBAAoB;oBACpB,cAAc;oBACd,aAAa;oBACb,aAAa;oBACb,cAAc;oBACd,eAAe;oBACf,eAAe;oBACf,oBAAoB;oBACpB,wBAAwB;oBACxB,cAAc;oBACd,kBAAkB;oBAClB,aAAa;oBACb,kBAAkB;iBACnB;aACF;;;MCxBY,YAAY;;;YA5BxB,QAAQ,SAAC;gBACR,OAAO,EAAE;oBACP,YAAY;oBACZ,cAAc;oBACd,aAAa;oBACb,aAAa;oBACb,oBAAoB;oBACpB,mBAAmB;oBACnB,YAAY;oBACZ,YAAY;oBACZ,eAAe;iBAChB;gBACD,YAAY,EAAE,EACb;gBACD,OAAO,EAAE;oBACP,aAAa;oBACb,aAAa;oBACb,oBAAoB;oBACpB,cAAc;oBACd,mBAAmB;oBACnB,YAAY;oBACZ,YAAY;oBACZ,eAAe;oBACf,cAAc;iBACf;gBACD,SAAS,EAAE,EACV;aACF;;;ACxCD;;;;;;"}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ import '@sd-angular/core/image-preview';
|
|
|
15
15
|
import '@sd-angular/core/comment';
|
|
16
16
|
import '@sd-angular/core/filter';
|
|
17
17
|
import '@sd-angular/core/modal-resizable';
|
|
18
|
+
import '@sd-angular/core/db';
|
|
18
19
|
export { SdCoreModule } from './lib/core.module';
|
|
19
20
|
export { MaterialModule } from './lib/material.module';
|
|
20
21
|
export * from './lib/material.module';
|
|
index 0496527..fbd8919 100644
|
|
|
Binary file
|