@trudb/tru-common-lib 0.0.209 → 0.0.210
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-decimal.mjs +5 -5
- package/esm2020/lib/classes/tru-property-config-foreign-key.mjs +4 -4
- package/esm2020/lib/classes/tru-property-config-integer.mjs +3 -3
- package/esm2020/lib/classes/tru-property-config-password.mjs +2 -2
- package/esm2020/lib/classes/tru-property-config-percentage.mjs +3 -3
- package/esm2020/lib/classes/tru-property-config-scientific.mjs +3 -3
- package/esm2020/lib/classes/tru-property-config-text-choices.mjs +2 -2
- package/esm2020/lib/classes/tru-property-config-text.mjs +4 -4
- package/esm2020/lib/classes/tru-property-config-usa-address.mjs +2 -2
- package/esm2020/lib/classes/tru-property-config-zip-code.mjs +2 -2
- package/fesm2015/trudb-tru-common-lib.mjs +20 -20
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +20 -20
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/lib/classes/tru-property-config-decimal.d.ts +4 -4
- package/lib/classes/tru-property-config-foreign-key.d.ts +3 -3
- package/lib/classes/tru-property-config-integer.d.ts +2 -2
- package/lib/classes/tru-property-config-password.d.ts +1 -1
- package/lib/classes/tru-property-config-percentage.d.ts +2 -2
- package/lib/classes/tru-property-config-scientific.d.ts +2 -2
- package/lib/classes/tru-property-config-text-choices.d.ts +1 -1
- package/lib/classes/tru-property-config-text.d.ts +3 -3
- package/lib/classes/tru-property-config-usa-address.d.ts +1 -1
- package/lib/classes/tru-property-config-zip-code.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { TruPropertyConfigBase } from '../base-classes/tru-property-config-base';
|
|
2
2
|
export declare class TruPropertyConfigDecimal extends TruPropertyConfigBase {
|
|
3
3
|
constructor();
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
decimalPlaces: number | undefined;
|
|
5
|
+
totalDigits: number | undefined;
|
|
6
|
+
minimumValue: number | undefined;
|
|
7
|
+
maximumValue: number | undefined;
|
|
8
8
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TruPropertyConfigBase } from '../base-classes/tru-property-config-base';
|
|
2
2
|
export declare class TruPropertyConfigForeignKey extends TruPropertyConfigBase {
|
|
3
3
|
constructor();
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
table: string | undefined;
|
|
5
|
+
foreignTableName: string | undefined;
|
|
6
|
+
choicesQuery: string | undefined;
|
|
7
7
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TruPropertyConfigBase } from '../base-classes/tru-property-config-base';
|
|
2
2
|
export declare class TruPropertyConfigInteger extends TruPropertyConfigBase {
|
|
3
3
|
constructor();
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
minimumValue: number | undefined;
|
|
5
|
+
maximumValue: number | undefined;
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TruPropertyConfigBase } from '../base-classes/tru-property-config-base';
|
|
2
2
|
export declare class TruPropertyConfigPercentage extends TruPropertyConfigBase {
|
|
3
3
|
constructor();
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
minimumValue: number | undefined;
|
|
5
|
+
maximumValue: number | undefined;
|
|
6
6
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TruPropertyConfigBase } from '../base-classes/tru-property-config-base';
|
|
2
2
|
export declare class TruPropertyConfigScientific extends TruPropertyConfigBase {
|
|
3
3
|
constructor();
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
minimumValue: number | undefined;
|
|
5
|
+
maximumValue: number | undefined;
|
|
6
6
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TruPropertyConfigBase } from '../base-classes/tru-property-config-base';
|
|
2
2
|
export declare class TruPropertyConfigText extends TruPropertyConfigBase {
|
|
3
3
|
constructor();
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
maxLength: number | undefined;
|
|
5
|
+
minLength: number | undefined;
|
|
6
|
+
unbounded: boolean | undefined;
|
|
7
7
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TruPropertyConfigBase } from '../base-classes/tru-property-config-base';
|
|
2
2
|
export declare class TruPropertyConfigUsaAddress extends TruPropertyConfigBase {
|
|
3
3
|
constructor();
|
|
4
|
-
|
|
4
|
+
requireZipPlusFour: boolean | undefined;
|
|
5
5
|
}
|