@bizdoc/core 1.11.0-next.9 → 1.11.0
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/assets/themes/brown.min.css +18 -16
- package/assets/themes/dark.min.css +17 -15
- package/assets/themes/deep-purple-teal.min.css +92 -0
- package/assets/themes/default.min.css +18 -16
- package/assets/themes/green.min.css +18 -16
- package/assets/themes/indigo.min.css +18 -16
- package/esm2020/lib/compose/form.component.mjs +2 -2
- package/esm2020/lib/compose/trace/trace.component.mjs +2 -2
- package/esm2020/lib/core/controls/address.input.mjs +4 -3
- package/esm2020/lib/core/mailbox.service.mjs +1 -1
- package/esm2020/lib/cube/cube.service.mjs +8 -9
- package/esm2020/lib/cube/matrix/table.component.mjs +9 -9
- package/esm2020/lib/views/cube/cube-base.mjs +7 -9
- package/fesm2015/bizdoc-core.mjs +25 -28
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +25 -28
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/core/mailbox.service.d.ts +1 -1
- package/lib/cube/cube.service.d.ts +0 -1
- package/package.json +1 -1
@@ -36,7 +36,7 @@ export declare class MailboxService {
|
|
36
36
|
*/
|
37
37
|
changeState(documentId: number, stateId: string, userId?: string): Observable<any>;
|
38
38
|
move(id: number, folderId: string): Observable<any>;
|
39
|
-
checkOut(recipientId: number, version: number, attachmentId: number): Observable<
|
39
|
+
checkOut(recipientId: number, version: number, attachmentId: number): Observable<Attachment>;
|
40
40
|
checkIn(recipientId: number, version: number, attachmentId: number, file: File): Observable<Attachment>;
|
41
41
|
upload(recipientId: number, formId: string, version: number, file: File, options?: {
|
42
42
|
isPrivate?: boolean;
|
@@ -23,7 +23,6 @@ export declare class CubeService {
|
|
23
23
|
private _type;
|
24
24
|
private _session;
|
25
25
|
private readonly _cache;
|
26
|
-
private readonly _exchangeRates;
|
27
26
|
constructor(_config: BizDocConfig, _http: HttpClient, _type: DatasourceService, _session: SessionService);
|
28
27
|
private _cacheOr;
|
29
28
|
/** system currency */
|
package/package.json
CHANGED