@ldquocc/dynamic-form 0.0.3 → 0.0.5
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.
|
@@ -6398,57 +6398,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
6398
6398
|
type: Output
|
|
6399
6399
|
}] } });
|
|
6400
6400
|
|
|
6401
|
-
var TableCellTypeEnum;
|
|
6402
|
-
(function (TableCellTypeEnum) {
|
|
6403
|
-
TableCellTypeEnum["ACTION"] = "action";
|
|
6404
|
-
TableCellTypeEnum["CHECK"] = "check";
|
|
6405
|
-
TableCellTypeEnum["SUBTEXT"] = "subtext";
|
|
6406
|
-
TableCellTypeEnum["IMAGE"] = "image";
|
|
6407
|
-
TableCellTypeEnum["BADGE"] = "badge";
|
|
6408
|
-
TableCellTypeEnum["INDEX"] = "index";
|
|
6409
|
-
TableCellTypeEnum["TEXT"] = "text";
|
|
6410
|
-
TableCellTypeEnum["ICON_TEXT"] = "icon-text";
|
|
6411
|
-
TableCellTypeEnum["SWAP_FUNC"] = "swap";
|
|
6412
|
-
TableCellTypeEnum["EMPTY"] = "empty";
|
|
6413
|
-
})(TableCellTypeEnum || (TableCellTypeEnum = {}));
|
|
6414
|
-
|
|
6415
|
-
// Loại select.
|
|
6416
|
-
class SelectOption {
|
|
6417
|
-
constructor(init) {
|
|
6418
|
-
this.options = [];
|
|
6419
|
-
Object.assign(this, init);
|
|
6420
|
-
}
|
|
6421
|
-
}
|
|
6422
|
-
// Loại date.
|
|
6423
|
-
class DateOptions {
|
|
6424
|
-
constructor(init) {
|
|
6425
|
-
Object.assign(this, init);
|
|
6426
|
-
}
|
|
6427
|
-
}
|
|
6428
|
-
// Gom detail vào chung ReminderOption
|
|
6429
|
-
class ReminderOption {
|
|
6430
|
-
constructor(init) {
|
|
6431
|
-
Object.assign(this, init);
|
|
6432
|
-
// Nếu cần tự động khởi tạo detail theo type
|
|
6433
|
-
if (this.type === 'select' && !(this.detail instanceof SelectOption)) {
|
|
6434
|
-
this.detail = new SelectOption(this.detail);
|
|
6435
|
-
}
|
|
6436
|
-
if (this.type === 'date' && !(this.detail instanceof DateOptions)) {
|
|
6437
|
-
this.detail = new DateOptions(this.detail);
|
|
6438
|
-
}
|
|
6439
|
-
}
|
|
6440
|
-
}
|
|
6441
|
-
|
|
6442
6401
|
/*
|
|
6443
6402
|
* Public API Surface of dynamic-form
|
|
6403
|
+
* v0.0.5 - TEST: Comment het model exports de verify loi bundle circular dependency
|
|
6444
6404
|
*/
|
|
6445
6405
|
// ==========================================
|
|
6446
|
-
// 1. MODULE & COMPONENT & SERVICE
|
|
6406
|
+
// 1. MODULE & COMPONENT & SERVICE CHINH
|
|
6407
|
+
// ==========================================
|
|
6408
|
+
// ==========================================
|
|
6409
|
+
// 4-6. MODELS - COMMENTED FOR v0.0.5 TEST
|
|
6447
6410
|
// ==========================================
|
|
6411
|
+
// export * from "./lib/shared/models/common/index";
|
|
6412
|
+
// export * from "./lib/shared/models/common/table-models";
|
|
6413
|
+
// export * from "./lib/shared/models/fields/field.model";
|
|
6414
|
+
// export * from "./lib/shared/models/fields/field-grid.model";
|
|
6415
|
+
// export * from "./lib/shared/models/fields/field-group.model";
|
|
6416
|
+
// export * from "./lib/shared/models/fields/index.model";
|
|
6417
|
+
// export * from "./lib/shared/models/fields/input/index";
|
|
6418
|
+
// export * from "./lib/shared/models/fields/textarea/textarea-field.model";
|
|
6419
|
+
// export * from "./lib/shared/models/fields/date/index";
|
|
6420
|
+
// export * from "./lib/shared/models/fields/select/select-base-field.model";
|
|
6421
|
+
// export * from "./lib/shared/models/fields/select/single-select-field.model";
|
|
6422
|
+
// export * from "./lib/shared/models/fields/select/multi-select-field.model";
|
|
6423
|
+
// export * from "./lib/shared/models/fields/select/tree-select-field.model";
|
|
6424
|
+
// export * from "./lib/shared/models/fields/upload/index";
|
|
6425
|
+
// export * from "./lib/shared/models/fields/radio/radio-base-field.model";
|
|
6426
|
+
// export * from "./lib/shared/models/fields/radio/custom/reminder-type-radio/reminder-type-radio-field.model";
|
|
6427
|
+
// export * from "./lib/shared/models/fields/radio/custom/reminder-type-radio/reminder-value.model";
|
|
6428
|
+
// export * from "./lib/shared/models/fields/radio/custom/reminder-type-radio/reminder-option.model";
|
|
6429
|
+
// export * from "./lib/shared/models/fields/radio/custom/reminder-type-radio/reminder-type.model";
|
|
6448
6430
|
|
|
6449
6431
|
/**
|
|
6450
6432
|
* Generated bundle index. Do not edit.
|
|
6451
6433
|
*/
|
|
6452
6434
|
|
|
6453
|
-
export {
|
|
6435
|
+
export { CombineDependTypeEnum, CommonValidaterEnum, ControlTypeEnum, CustomValidaterEnum, DYNAMIC_FORM_CONFIG, DateFieldTypeEnum, DatePickerOutputValueTypeEnum, DateRangeOutputValueTypeEnum, DependTypeEnum, DynamicFormComponent, DynamicFormService, FieldTypeEnum, FileSizeTypeEnum, FormConfigService, FormDataService, FormModeEnum, InputFieldTypeEnum, SelectFieldTypeEnum, SelectOutputValueTypeEnum, UploadFieldTypeEnum, UploadOutputValueTypeEnum, ViewModeEnum };
|
|
6454
6436
|
//# sourceMappingURL=ldquocc-dynamic-form.mjs.map
|