@msbci/form-server 1.3.4 → 1.3.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.
package/dist/index.d.mts CHANGED
@@ -196,6 +196,8 @@ declare class FormService {
196
196
  isRequired: boolean;
197
197
  isReadonly: boolean;
198
198
  isHidden: boolean;
199
+ startWithNewLine: boolean | null;
200
+ colSpan: number | null;
199
201
  defaultValue: string | null;
200
202
  placeholder: string | null;
201
203
  options: string | null;
@@ -224,6 +226,8 @@ declare class FormService {
224
226
  isRequired: boolean;
225
227
  isReadonly: boolean;
226
228
  isHidden: boolean;
229
+ startWithNewLine: boolean | null;
230
+ colSpan: number | null;
227
231
  defaultValue: string | null;
228
232
  placeholder: string | null;
229
233
  options: string | null;
@@ -503,6 +507,8 @@ declare class FormService {
503
507
  isRequired?: boolean;
504
508
  isReadonly?: boolean;
505
509
  isHidden?: boolean;
510
+ startWithNewLine?: boolean;
511
+ colSpan?: number;
506
512
  defaultValue?: unknown;
507
513
  placeholder?: string;
508
514
  description?: string;
@@ -530,6 +536,8 @@ declare class FormService {
530
536
  isRequired: boolean;
531
537
  isReadonly: boolean;
532
538
  isHidden: boolean;
539
+ startWithNewLine: boolean | null;
540
+ colSpan: number | null;
533
541
  defaultValue: string | null;
534
542
  placeholder: string | null;
535
543
  options: string | null;
@@ -551,6 +559,8 @@ declare class FormService {
551
559
  isRequired: boolean;
552
560
  isReadonly: boolean;
553
561
  isHidden: boolean;
562
+ startWithNewLine: boolean;
563
+ colSpan: number;
554
564
  defaultValue: unknown;
555
565
  placeholder: string;
556
566
  description: string;
@@ -578,6 +588,8 @@ declare class FormService {
578
588
  isRequired: boolean;
579
589
  isReadonly: boolean;
580
590
  isHidden: boolean;
591
+ startWithNewLine: boolean | null;
592
+ colSpan: number | null;
581
593
  defaultValue: string | null;
582
594
  placeholder: string | null;
583
595
  options: string | null;
@@ -605,6 +617,8 @@ declare class FormService {
605
617
  isRequired: boolean;
606
618
  isReadonly: boolean;
607
619
  isHidden: boolean;
620
+ startWithNewLine: boolean | null;
621
+ colSpan: number | null;
608
622
  defaultValue: string | null;
609
623
  placeholder: string | null;
610
624
  options: string | null;
@@ -1017,6 +1031,8 @@ declare const createFormVariableSchema: z.ZodObject<{
1017
1031
  isRequired: z.ZodDefault<z.ZodBoolean>;
1018
1032
  isReadonly: z.ZodDefault<z.ZodBoolean>;
1019
1033
  isHidden: z.ZodDefault<z.ZodBoolean>;
1034
+ startWithNewLine: z.ZodOptional<z.ZodBoolean>;
1035
+ colSpan: z.ZodOptional<z.ZodNumber>;
1020
1036
  defaultValue: z.ZodOptional<z.ZodUnknown>;
1021
1037
  placeholder: z.ZodOptional<z.ZodString>;
1022
1038
  description: z.ZodOptional<z.ZodString>;
@@ -1065,6 +1081,8 @@ declare const createFormVariableSchema: z.ZodObject<{
1065
1081
  description?: string | undefined;
1066
1082
  metadata?: Record<string, unknown> | undefined;
1067
1083
  conditions?: unknown[] | undefined;
1084
+ startWithNewLine?: boolean | undefined;
1085
+ colSpan?: number | undefined;
1068
1086
  defaultValue?: unknown;
1069
1087
  placeholder?: string | undefined;
1070
1088
  options?: {
@@ -1094,6 +1112,8 @@ declare const createFormVariableSchema: z.ZodObject<{
1094
1112
  isRequired?: boolean | undefined;
1095
1113
  isReadonly?: boolean | undefined;
1096
1114
  isHidden?: boolean | undefined;
1115
+ startWithNewLine?: boolean | undefined;
1116
+ colSpan?: number | undefined;
1097
1117
  defaultValue?: unknown;
1098
1118
  placeholder?: string | undefined;
1099
1119
  options?: {
@@ -1121,6 +1141,8 @@ declare const updateFormVariableSchema: z.ZodObject<{
1121
1141
  isRequired: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1122
1142
  isReadonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1123
1143
  isHidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1144
+ startWithNewLine: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
1145
+ colSpan: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
1124
1146
  defaultValue: z.ZodOptional<z.ZodOptional<z.ZodUnknown>>;
1125
1147
  placeholder: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1126
1148
  description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -1169,6 +1191,8 @@ declare const updateFormVariableSchema: z.ZodObject<{
1169
1191
  isRequired?: boolean | undefined;
1170
1192
  isReadonly?: boolean | undefined;
1171
1193
  isHidden?: boolean | undefined;
1194
+ startWithNewLine?: boolean | undefined;
1195
+ colSpan?: number | undefined;
1172
1196
  defaultValue?: unknown;
1173
1197
  placeholder?: string | undefined;
1174
1198
  options?: {
@@ -1198,6 +1222,8 @@ declare const updateFormVariableSchema: z.ZodObject<{
1198
1222
  isRequired?: boolean | undefined;
1199
1223
  isReadonly?: boolean | undefined;
1200
1224
  isHidden?: boolean | undefined;
1225
+ startWithNewLine?: boolean | undefined;
1226
+ colSpan?: number | undefined;
1201
1227
  defaultValue?: unknown;
1202
1228
  placeholder?: string | undefined;
1203
1229
  options?: {
package/dist/index.d.ts CHANGED
@@ -196,6 +196,8 @@ declare class FormService {
196
196
  isRequired: boolean;
197
197
  isReadonly: boolean;
198
198
  isHidden: boolean;
199
+ startWithNewLine: boolean | null;
200
+ colSpan: number | null;
199
201
  defaultValue: string | null;
200
202
  placeholder: string | null;
201
203
  options: string | null;
@@ -224,6 +226,8 @@ declare class FormService {
224
226
  isRequired: boolean;
225
227
  isReadonly: boolean;
226
228
  isHidden: boolean;
229
+ startWithNewLine: boolean | null;
230
+ colSpan: number | null;
227
231
  defaultValue: string | null;
228
232
  placeholder: string | null;
229
233
  options: string | null;
@@ -503,6 +507,8 @@ declare class FormService {
503
507
  isRequired?: boolean;
504
508
  isReadonly?: boolean;
505
509
  isHidden?: boolean;
510
+ startWithNewLine?: boolean;
511
+ colSpan?: number;
506
512
  defaultValue?: unknown;
507
513
  placeholder?: string;
508
514
  description?: string;
@@ -530,6 +536,8 @@ declare class FormService {
530
536
  isRequired: boolean;
531
537
  isReadonly: boolean;
532
538
  isHidden: boolean;
539
+ startWithNewLine: boolean | null;
540
+ colSpan: number | null;
533
541
  defaultValue: string | null;
534
542
  placeholder: string | null;
535
543
  options: string | null;
@@ -551,6 +559,8 @@ declare class FormService {
551
559
  isRequired: boolean;
552
560
  isReadonly: boolean;
553
561
  isHidden: boolean;
562
+ startWithNewLine: boolean;
563
+ colSpan: number;
554
564
  defaultValue: unknown;
555
565
  placeholder: string;
556
566
  description: string;
@@ -578,6 +588,8 @@ declare class FormService {
578
588
  isRequired: boolean;
579
589
  isReadonly: boolean;
580
590
  isHidden: boolean;
591
+ startWithNewLine: boolean | null;
592
+ colSpan: number | null;
581
593
  defaultValue: string | null;
582
594
  placeholder: string | null;
583
595
  options: string | null;
@@ -605,6 +617,8 @@ declare class FormService {
605
617
  isRequired: boolean;
606
618
  isReadonly: boolean;
607
619
  isHidden: boolean;
620
+ startWithNewLine: boolean | null;
621
+ colSpan: number | null;
608
622
  defaultValue: string | null;
609
623
  placeholder: string | null;
610
624
  options: string | null;
@@ -1017,6 +1031,8 @@ declare const createFormVariableSchema: z.ZodObject<{
1017
1031
  isRequired: z.ZodDefault<z.ZodBoolean>;
1018
1032
  isReadonly: z.ZodDefault<z.ZodBoolean>;
1019
1033
  isHidden: z.ZodDefault<z.ZodBoolean>;
1034
+ startWithNewLine: z.ZodOptional<z.ZodBoolean>;
1035
+ colSpan: z.ZodOptional<z.ZodNumber>;
1020
1036
  defaultValue: z.ZodOptional<z.ZodUnknown>;
1021
1037
  placeholder: z.ZodOptional<z.ZodString>;
1022
1038
  description: z.ZodOptional<z.ZodString>;
@@ -1065,6 +1081,8 @@ declare const createFormVariableSchema: z.ZodObject<{
1065
1081
  description?: string | undefined;
1066
1082
  metadata?: Record<string, unknown> | undefined;
1067
1083
  conditions?: unknown[] | undefined;
1084
+ startWithNewLine?: boolean | undefined;
1085
+ colSpan?: number | undefined;
1068
1086
  defaultValue?: unknown;
1069
1087
  placeholder?: string | undefined;
1070
1088
  options?: {
@@ -1094,6 +1112,8 @@ declare const createFormVariableSchema: z.ZodObject<{
1094
1112
  isRequired?: boolean | undefined;
1095
1113
  isReadonly?: boolean | undefined;
1096
1114
  isHidden?: boolean | undefined;
1115
+ startWithNewLine?: boolean | undefined;
1116
+ colSpan?: number | undefined;
1097
1117
  defaultValue?: unknown;
1098
1118
  placeholder?: string | undefined;
1099
1119
  options?: {
@@ -1121,6 +1141,8 @@ declare const updateFormVariableSchema: z.ZodObject<{
1121
1141
  isRequired: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1122
1142
  isReadonly: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1123
1143
  isHidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1144
+ startWithNewLine: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
1145
+ colSpan: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
1124
1146
  defaultValue: z.ZodOptional<z.ZodOptional<z.ZodUnknown>>;
1125
1147
  placeholder: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1126
1148
  description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -1169,6 +1191,8 @@ declare const updateFormVariableSchema: z.ZodObject<{
1169
1191
  isRequired?: boolean | undefined;
1170
1192
  isReadonly?: boolean | undefined;
1171
1193
  isHidden?: boolean | undefined;
1194
+ startWithNewLine?: boolean | undefined;
1195
+ colSpan?: number | undefined;
1172
1196
  defaultValue?: unknown;
1173
1197
  placeholder?: string | undefined;
1174
1198
  options?: {
@@ -1198,6 +1222,8 @@ declare const updateFormVariableSchema: z.ZodObject<{
1198
1222
  isRequired?: boolean | undefined;
1199
1223
  isReadonly?: boolean | undefined;
1200
1224
  isHidden?: boolean | undefined;
1225
+ startWithNewLine?: boolean | undefined;
1226
+ colSpan?: number | undefined;
1201
1227
  defaultValue?: unknown;
1202
1228
  placeholder?: string | undefined;
1203
1229
  options?: {