@trudb/tru-common-lib 0.0.215 → 0.0.216
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/esm2020/lib/classes/tru-property-config-date.mjs +9 -0
- package/esm2020/lib/classes/tru-property-config-file.mjs +8 -0
- package/esm2020/public-api.mjs +3 -2
- package/fesm2015/trudb-tru-common-lib.mjs +9 -2
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +9 -2
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/lib/classes/{tru-property-config-datetime.d.ts → tru-property-config-date.d.ts} +1 -1
- package/lib/classes/tru-property-config-file.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -1
- package/esm2020/lib/classes/tru-property-config-datetime.mjs +0 -9
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TruPropertyConfigBase } from '../base-classes/tru-property-config-base';
|
|
2
|
-
export declare class
|
|
2
|
+
export declare class TruPropertyConfigDate extends TruPropertyConfigBase {
|
|
3
3
|
constructor();
|
|
4
4
|
minimumValue: number | undefined;
|
|
5
5
|
maximumValue: number | undefined;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -17,8 +17,9 @@ export * from './lib/classes/tru-context-filter-choice';
|
|
|
17
17
|
export * from './lib/classes/tru-formula-eval';
|
|
18
18
|
export * from './lib/classes/tru-predicate';
|
|
19
19
|
export * from './lib/classes/tru-property-config-cloud-file';
|
|
20
|
-
export * from './lib/classes/tru-property-config-
|
|
20
|
+
export * from './lib/classes/tru-property-config-date';
|
|
21
21
|
export * from './lib/classes/tru-property-config-decimal';
|
|
22
|
+
export * from './lib/classes/tru-property-config-file';
|
|
22
23
|
export * from './lib/classes/tru-property-config-foreign-key';
|
|
23
24
|
export * from './lib/classes/tru-property-config-integer';
|
|
24
25
|
export * from './lib/classes/tru-property-config-password';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { TruPropertyConfigBase } from '../base-classes/tru-property-config-base';
|
|
2
|
-
export class TruPropertyConfigDatetime extends TruPropertyConfigBase {
|
|
3
|
-
constructor() {
|
|
4
|
-
super();
|
|
5
|
-
this.minimumValue = undefined;
|
|
6
|
-
this.maximumValue = undefined;
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJ1LXByb3BlcnR5LWNvbmZpZy1kYXRldGltZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RydS1jb21tb24tbGliL3NyYy9saWIvY2xhc3Nlcy90cnUtcHJvcGVydHktY29uZmlnLWRhdGV0aW1lLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLDBDQUEwQyxDQUFDO0FBRWpGLE1BQU0sT0FBTyx5QkFBMEIsU0FBUSxxQkFBcUI7SUFDbEU7UUFBZ0IsS0FBSyxFQUFFLENBQUE7UUFFdkIsaUJBQVksR0FBdUIsU0FBUyxDQUFDO1FBQzdDLGlCQUFZLEdBQXVCLFNBQVMsQ0FBQztJQUhyQixDQUFDO0NBSTFCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVHJ1UHJvcGVydHlDb25maWdCYXNlIH0gZnJvbSAnLi4vYmFzZS1jbGFzc2VzL3RydS1wcm9wZXJ0eS1jb25maWctYmFzZSc7XHJcblxyXG5leHBvcnQgY2xhc3MgVHJ1UHJvcGVydHlDb25maWdEYXRldGltZSBleHRlbmRzIFRydVByb3BlcnR5Q29uZmlnQmFzZSB7XHJcbiAgY29uc3RydWN0b3IoKSB7IHN1cGVyKCkgfVxyXG5cclxuICBtaW5pbXVtVmFsdWU6IG51bWJlciB8IHVuZGVmaW5lZCA9IHVuZGVmaW5lZDtcclxuICBtYXhpbXVtVmFsdWU6IG51bWJlciB8IHVuZGVmaW5lZCA9IHVuZGVmaW5lZDtcclxufVxyXG4iXX0=
|