ngx-material-entity 15.2.5 → 15.2.7
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/components/edit-page/edit-data.route.d.ts +13 -0
- package/components/edit-page/edit-page.component.d.ts +3 -12
- package/components/input/input.component.d.ts +36 -1
- package/components/input/number/number-dropdown-input/number-dropdown-input.component.d.ts +4 -1
- package/components/input/string/string-dropdown-input/string-dropdown-input.component.d.ts +4 -1
- package/components/table/edit-dialog/edit-entity-dialog.component.d.ts +1 -0
- package/components/table/table.component.d.ts +14 -0
- package/decorators/base/decorator-types.enum.d.ts +4 -2
- package/decorators/base/property-decorator-internal.data.d.ts +2 -2
- package/decorators/base/property-decorator.data.d.ts +1 -1
- package/decorators/number/number-decorator-internal.data.d.ts +2 -1
- package/decorators/number/number-decorator.data.d.ts +2 -1
- package/decorators/references-many/references-many-decorator-internal.data.d.ts +8 -0
- package/decorators/references-one/references-one-decorator-internal.data.d.ts +14 -0
- package/decorators/references-one/references-one-decorator.data.d.ts +24 -0
- package/decorators/references-one/references-one.decorator.d.ts +9 -0
- package/decorators/string/string-decorator-internal.data.d.ts +2 -1
- package/decorators/string/string-decorator.data.d.ts +2 -1
- package/esm2020/components/edit-page/edit-data.route.mjs +8 -0
- package/esm2020/components/edit-page/edit-page.component.mjs +7 -9
- package/esm2020/components/input/input.component.mjs +112 -50
- package/esm2020/components/input/number/number-dropdown-input/number-dropdown-input.component.mjs +11 -3
- package/esm2020/components/input/string/string-dropdown-input/string-dropdown-input.component.mjs +11 -3
- package/esm2020/components/input/string/string-password-input/string-password-input.component.mjs +2 -2
- package/esm2020/components/table/edit-dialog/edit-entity-dialog.component.mjs +7 -4
- package/esm2020/components/table/table.component.mjs +41 -15
- package/esm2020/decorators/base/decorator-types.enum.mjs +2 -1
- package/esm2020/decorators/base/property-decorator-internal.data.mjs +4 -7
- package/esm2020/decorators/base/property-decorator.data.mjs +1 -1
- package/esm2020/decorators/number/number-decorator-internal.data.mjs +10 -2
- package/esm2020/decorators/number/number-decorator.data.mjs +1 -1
- package/esm2020/decorators/object/object-decorator-internal.data.mjs +2 -1
- package/esm2020/decorators/references-many/references-many-decorator-internal.data.mjs +2 -2
- package/esm2020/decorators/references-one/references-one-decorator-internal.data.mjs +16 -0
- package/esm2020/decorators/references-one/references-one-decorator.data.mjs +2 -0
- package/esm2020/decorators/references-one/references-one.decorator.mjs +13 -0
- package/esm2020/decorators/string/string-decorator-internal.data.mjs +10 -2
- package/esm2020/decorators/string/string-decorator.data.mjs +1 -1
- package/esm2020/public-api.mjs +4 -1
- package/esm2020/utilities/entity.utilities.mjs +18 -6
- package/fesm2015/ngx-material-entity.mjs +271 -93
- package/fesm2015/ngx-material-entity.mjs.map +1 -1
- package/fesm2020/ngx-material-entity.mjs +258 -89
- package/fesm2020/ngx-material-entity.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
- package/utilities/entity.utilities.d.ts +1 -0
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
export * from './classes/entity.model';
|
|
5
5
|
export * from './components/confirm-dialog/confirm-dialog-data';
|
|
6
6
|
export * from './components/confirm-dialog/confirm-dialog.component';
|
|
7
|
+
export * from './components/edit-page/edit-data.route';
|
|
7
8
|
export * from './components/edit-page/edit-page.component';
|
|
8
9
|
export * from './components/get-validation-error-message.function';
|
|
9
10
|
export * from './components/input/base-input.component';
|
|
@@ -38,6 +39,8 @@ export * from './decorators/object/object-decorator.data';
|
|
|
38
39
|
export * from './decorators/object/object.decorator';
|
|
39
40
|
export * from './decorators/references-many/references-many-decorator.data';
|
|
40
41
|
export * from './decorators/references-many/references-many.decorator';
|
|
42
|
+
export * from './decorators/references-one/references-one-decorator.data';
|
|
43
|
+
export * from './decorators/references-one/references-one.decorator';
|
|
41
44
|
export * from './decorators/string/string-decorator.data';
|
|
42
45
|
export * from './decorators/string/string.decorator';
|
|
43
46
|
export * from './services/entity.service';
|
|
@@ -223,6 +223,7 @@ export declare abstract class EntityUtilities {
|
|
|
223
223
|
* @returns An array of keys of the entity.
|
|
224
224
|
*/
|
|
225
225
|
static keysOf<EntityType extends BaseEntityType<EntityType>>(entity: EntityType, hideOmitForCreate?: boolean, hideOmitForEdit?: boolean): (keyof EntityType)[];
|
|
226
|
+
private static getDontDisplayKeys;
|
|
226
227
|
}
|
|
227
228
|
/**
|
|
228
229
|
* A row that contains information about how to display an entity.
|