@royalinvest/dto 0.32.3 → 0.32.4
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/dist/enum/index.d.ts +6 -1
- package/dist/enum/index.js +7 -1
- package/dist/placeholder-date.d.ts +2 -1
- package/package.json +2 -2
package/dist/enum/index.d.ts
CHANGED
|
@@ -44,7 +44,8 @@ export declare enum SignActionEnum {
|
|
|
44
44
|
signed = "signed"
|
|
45
45
|
}
|
|
46
46
|
export declare enum SignatureDateTypeEnum {
|
|
47
|
-
equalDayMonthYearBoxes = "equalDayMonthYearBoxes"
|
|
47
|
+
equalDayMonthYearBoxes = "equalDayMonthYearBoxes",
|
|
48
|
+
dayMonthYearStringWithSlashes = "dayMonthYearStringWithSlashes"
|
|
48
49
|
}
|
|
49
50
|
export declare enum LeaseNoticeTypeEnum {
|
|
50
51
|
Modification = "modification",
|
|
@@ -83,3 +84,7 @@ export declare enum LeaseDurationEnum {
|
|
|
83
84
|
HalfYearOrLonger = "halfYearOrLonger",
|
|
84
85
|
LessThanHalfYear = "lessThanHalfYear"
|
|
85
86
|
}
|
|
87
|
+
export declare enum TextAlignmentEnum {
|
|
88
|
+
left = "left",
|
|
89
|
+
center = "center"
|
|
90
|
+
}
|
package/dist/enum/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LeaseDurationEnum = exports.LeaseTermTypeEnum = exports.LeaseCategoryEnum = exports.LeaseTypeEnum = exports.LeaseNoticeTypeEnum = exports.SignatureDateTypeEnum = exports.SignActionEnum = exports.NotificationTypeEnum = exports.SignStatusEnum = exports.SignatureType = exports.LeaseStatusEnum = exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
|
|
3
|
+
exports.TextAlignmentEnum = exports.LeaseDurationEnum = exports.LeaseTermTypeEnum = exports.LeaseCategoryEnum = exports.LeaseTypeEnum = exports.LeaseNoticeTypeEnum = exports.SignatureDateTypeEnum = exports.SignActionEnum = exports.NotificationTypeEnum = exports.SignStatusEnum = exports.SignatureType = exports.LeaseStatusEnum = exports.RentTypeEnum = exports.PartyTypeEnum = void 0;
|
|
4
4
|
var PartyTypeEnum;
|
|
5
5
|
(function (PartyTypeEnum) {
|
|
6
6
|
PartyTypeEnum["default"] = "";
|
|
@@ -56,6 +56,7 @@ var SignActionEnum;
|
|
|
56
56
|
var SignatureDateTypeEnum;
|
|
57
57
|
(function (SignatureDateTypeEnum) {
|
|
58
58
|
SignatureDateTypeEnum["equalDayMonthYearBoxes"] = "equalDayMonthYearBoxes";
|
|
59
|
+
SignatureDateTypeEnum["dayMonthYearStringWithSlashes"] = "dayMonthYearStringWithSlashes";
|
|
59
60
|
})(SignatureDateTypeEnum || (exports.SignatureDateTypeEnum = SignatureDateTypeEnum = {}));
|
|
60
61
|
var LeaseNoticeTypeEnum;
|
|
61
62
|
(function (LeaseNoticeTypeEnum) {
|
|
@@ -89,3 +90,8 @@ var LeaseDurationEnum;
|
|
|
89
90
|
LeaseDurationEnum["HalfYearOrLonger"] = "halfYearOrLonger";
|
|
90
91
|
LeaseDurationEnum["LessThanHalfYear"] = "lessThanHalfYear";
|
|
91
92
|
})(LeaseDurationEnum || (exports.LeaseDurationEnum = LeaseDurationEnum = {}));
|
|
93
|
+
var TextAlignmentEnum;
|
|
94
|
+
(function (TextAlignmentEnum) {
|
|
95
|
+
TextAlignmentEnum["left"] = "left";
|
|
96
|
+
TextAlignmentEnum["center"] = "center";
|
|
97
|
+
})(TextAlignmentEnum || (exports.TextAlignmentEnum = TextAlignmentEnum = {}));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ILayout } from "./layout";
|
|
2
|
-
import { SignatureDateTypeEnum } from "./enum";
|
|
2
|
+
import { SignatureDateTypeEnum, TextAlignmentEnum } from "./enum";
|
|
3
3
|
export interface IDatePlaceholder extends ILayout {
|
|
4
4
|
signatureIds: string[];
|
|
5
5
|
page: number;
|
|
@@ -15,4 +15,5 @@ export interface IDatePlaceholderMarkers {
|
|
|
15
15
|
export interface IDatePlaceholderStyle {
|
|
16
16
|
padding: number;
|
|
17
17
|
fontSize: number;
|
|
18
|
+
textAlignment: TextAlignmentEnum;
|
|
18
19
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@royalinvest/dto",
|
|
3
|
-
"version": "0.32.
|
|
3
|
+
"version": "0.32.4",
|
|
4
4
|
"description": "Data Transfer Objects (DTOs) to carry data between frontend and backend processes.",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -57,4 +57,4 @@
|
|
|
57
57
|
"prettier": "^3.3.3",
|
|
58
58
|
"typescript-eslint": "^8.7.0"
|
|
59
59
|
}
|
|
60
|
-
}
|
|
60
|
+
}
|