@elite.framework/ng.core 1.0.32 → 1.0.33
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/index.d.ts
CHANGED
|
@@ -9,7 +9,6 @@ import * as rxjs from 'rxjs';
|
|
|
9
9
|
import { Observable } from 'rxjs';
|
|
10
10
|
import { HttpParameterCodec, HttpParams, HttpHeaders, HttpClient, HttpRequest } from '@angular/common/http';
|
|
11
11
|
import { MessageService, MenuItem, SortEvent } from 'primeng/api';
|
|
12
|
-
import { AttachmentDto as AttachmentDto$1 } from '@framework/ng.core';
|
|
13
12
|
import * as i5$1 from '@ngx-translate/core';
|
|
14
13
|
import { TranslateService } from '@ngx-translate/core';
|
|
15
14
|
import { DynamicDialogRef, DynamicDialogConfig, DialogService } from 'primeng/dynamicdialog';
|
|
@@ -252,6 +251,17 @@ declare class FormlyFieldButton extends FieldType$1 {
|
|
|
252
251
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyFieldButton, "formly-field-button", never, {}, {}, never, never, true, never>;
|
|
253
252
|
}
|
|
254
253
|
|
|
254
|
+
declare class AttachmentDto {
|
|
255
|
+
id?: number;
|
|
256
|
+
binaryObjectId?: string;
|
|
257
|
+
description?: string;
|
|
258
|
+
mimeType?: string | any;
|
|
259
|
+
fileName?: string;
|
|
260
|
+
base64?: string;
|
|
261
|
+
caption?: string;
|
|
262
|
+
link?: string;
|
|
263
|
+
}
|
|
264
|
+
|
|
255
265
|
declare class AttachmentTypeComponent extends FieldType$1 {
|
|
256
266
|
private messageService;
|
|
257
267
|
defaultAcceptTypes: string;
|
|
@@ -260,10 +270,10 @@ declare class AttachmentTypeComponent extends FieldType$1 {
|
|
|
260
270
|
tenantId: number;
|
|
261
271
|
private env;
|
|
262
272
|
constructor(messageService: MessageService);
|
|
263
|
-
get attachments(): AttachmentDto
|
|
264
|
-
set attachments(value: AttachmentDto
|
|
265
|
-
get attachment(): AttachmentDto
|
|
266
|
-
set attachment(value: AttachmentDto
|
|
273
|
+
get attachments(): AttachmentDto[];
|
|
274
|
+
set attachments(value: AttachmentDto[]);
|
|
275
|
+
get attachment(): AttachmentDto | null;
|
|
276
|
+
set attachment(value: AttachmentDto | null);
|
|
267
277
|
onUpload(event: any): Promise<void>;
|
|
268
278
|
remove(index: number): void;
|
|
269
279
|
choose(event: any, callback: any): void;
|
|
@@ -1281,17 +1291,6 @@ declare class RtlLang implements OnChanges {
|
|
|
1281
1291
|
static ɵdir: i0.ɵɵDirectiveDeclaration<RtlLang, "[appRtlLang]", never, { "lang": { "alias": "appRtlLang"; "required": false; }; }, {}, never, never, true, never>;
|
|
1282
1292
|
}
|
|
1283
1293
|
|
|
1284
|
-
declare class AttachmentDto {
|
|
1285
|
-
id?: number;
|
|
1286
|
-
binaryObjectId?: string;
|
|
1287
|
-
description?: string;
|
|
1288
|
-
mimeType?: string | any;
|
|
1289
|
-
fileName?: string;
|
|
1290
|
-
base64?: string;
|
|
1291
|
-
caption?: string;
|
|
1292
|
-
link?: string;
|
|
1293
|
-
}
|
|
1294
|
-
|
|
1295
1294
|
type FilterType = 'text' | 'number' | 'select' | 'date';
|
|
1296
1295
|
interface FilterDef<T> {
|
|
1297
1296
|
/** اسم الحقل في بياناتك */
|