@autologix-engineering/shared 1.0.371 → 1.0.372
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/package.json
CHANGED
|
@@ -13,48 +13,48 @@ export const vehicleMasterData = [
|
|
|
13
13
|
name: 'Vehicle Information',
|
|
14
14
|
fields: [
|
|
15
15
|
{
|
|
16
|
-
label: 'Registration
|
|
17
|
-
description: '
|
|
16
|
+
label: 'Registration number',
|
|
17
|
+
description: 'Enter vehicle registration number',
|
|
18
18
|
isHidden: false,
|
|
19
19
|
inputType: CustomInputField.ShortAnswer,
|
|
20
20
|
isMandatory: true,
|
|
21
21
|
order: 1,
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
label: '
|
|
25
|
-
description: '
|
|
24
|
+
label: 'Registration date',
|
|
25
|
+
description: 'Registration date',
|
|
26
26
|
isHidden: false,
|
|
27
27
|
inputType: CustomInputField.Date,
|
|
28
28
|
isMandatory: false,
|
|
29
29
|
order: 2,
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
|
-
label: 'Registration
|
|
33
|
-
description: 'Registration
|
|
32
|
+
label: 'Registration validity',
|
|
33
|
+
description: 'Registration validity',
|
|
34
34
|
isHidden: false,
|
|
35
35
|
inputType: CustomInputField.Date,
|
|
36
36
|
isMandatory: false,
|
|
37
37
|
order: 3,
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
|
-
label: '
|
|
41
|
-
description: '
|
|
40
|
+
label: 'Operational start date',
|
|
41
|
+
description: 'Operational start date',
|
|
42
42
|
isHidden: false,
|
|
43
43
|
inputType: CustomInputField.Date,
|
|
44
44
|
isMandatory: false,
|
|
45
45
|
order: 4,
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
|
-
label: 'Year of
|
|
49
|
-
description: 'Year of
|
|
48
|
+
label: 'Month & Year of manufacture',
|
|
49
|
+
description: 'Month & Year of manufacture',
|
|
50
50
|
isHidden: false,
|
|
51
51
|
inputType: CustomInputField.Date,
|
|
52
52
|
isMandatory: false,
|
|
53
53
|
order: 5,
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
|
-
label: '
|
|
57
|
-
description: '
|
|
56
|
+
label: 'Maker’s name',
|
|
57
|
+
description: 'Enter manufacturer name',
|
|
58
58
|
isHidden: false,
|
|
59
59
|
inputType: CustomInputField.SingleSelect,
|
|
60
60
|
isMandatory: false,
|
|
@@ -66,8 +66,8 @@ export const vehicleMasterData = [
|
|
|
66
66
|
],
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
|
-
label: '
|
|
70
|
-
description: '
|
|
69
|
+
label: 'Model name',
|
|
70
|
+
description: 'Enter model name',
|
|
71
71
|
isHidden: false,
|
|
72
72
|
inputType: CustomInputField.SingleSelect,
|
|
73
73
|
isMandatory: true,
|
|
@@ -75,16 +75,16 @@ export const vehicleMasterData = [
|
|
|
75
75
|
options: ['Dzire', 'Swift', 'Ciaz'],
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
|
-
label: '
|
|
79
|
-
description: '
|
|
78
|
+
label: 'Seating capacity',
|
|
79
|
+
description: 'Select',
|
|
80
80
|
isHidden: false,
|
|
81
81
|
inputType: CustomInputField.Number,
|
|
82
82
|
isMandatory: true,
|
|
83
83
|
order: 8,
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
|
-
label: '
|
|
87
|
-
description: '
|
|
86
|
+
label: 'Color',
|
|
87
|
+
description: 'Select',
|
|
88
88
|
isHidden: false,
|
|
89
89
|
inputType: CustomInputField.SingleSelect,
|
|
90
90
|
isMandatory: false,
|
|
@@ -92,8 +92,8 @@ export const vehicleMasterData = [
|
|
|
92
92
|
options: Object.values(Colour),
|
|
93
93
|
},
|
|
94
94
|
{
|
|
95
|
-
label: '
|
|
96
|
-
description: '
|
|
95
|
+
label: 'Variant',
|
|
96
|
+
description: 'Enter variant',
|
|
97
97
|
isHidden: false,
|
|
98
98
|
inputType: CustomInputField.SingleSelect,
|
|
99
99
|
isMandatory: true,
|
|
@@ -101,8 +101,8 @@ export const vehicleMasterData = [
|
|
|
101
101
|
options: Object.values(VehicleType),
|
|
102
102
|
},
|
|
103
103
|
{
|
|
104
|
-
label: '
|
|
105
|
-
description: '
|
|
104
|
+
label: 'fuel Type',
|
|
105
|
+
description: 'Select',
|
|
106
106
|
isHidden: false,
|
|
107
107
|
inputType: CustomInputField.SingleSelect,
|
|
108
108
|
isMandatory: true,
|
|
@@ -110,32 +110,32 @@ export const vehicleMasterData = [
|
|
|
110
110
|
options: Object.values(FuelType),
|
|
111
111
|
},
|
|
112
112
|
{
|
|
113
|
-
label: 'Emission
|
|
114
|
-
description: '
|
|
113
|
+
label: 'Emission norm',
|
|
114
|
+
description: 'Enter emission norm of vehicle',
|
|
115
115
|
isHidden: false,
|
|
116
116
|
inputType: CustomInputField.ShortAnswer,
|
|
117
117
|
isMandatory: false,
|
|
118
118
|
order: 12,
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
|
-
label: 'Engine
|
|
122
|
-
description: '
|
|
121
|
+
label: 'Engine number',
|
|
122
|
+
description: 'Enter number',
|
|
123
123
|
isHidden: false,
|
|
124
124
|
inputType: CustomInputField.ShortAnswer,
|
|
125
125
|
isMandatory: false,
|
|
126
126
|
order: 13,
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
|
-
label: 'Chassis
|
|
130
|
-
description: '
|
|
129
|
+
label: 'Chassis number',
|
|
130
|
+
description: 'Enter number',
|
|
131
131
|
isHidden: false,
|
|
132
132
|
inputType: CustomInputField.ShortAnswer,
|
|
133
133
|
isMandatory: false,
|
|
134
134
|
order: 14,
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
|
-
label: 'Vehicle
|
|
138
|
-
description: '
|
|
137
|
+
label: 'Vehicle group',
|
|
138
|
+
description: 'Enter vehicle group',
|
|
139
139
|
isHidden: false,
|
|
140
140
|
inputType: CustomInputField.SingleSelect,
|
|
141
141
|
isMandatory: false,
|
|
@@ -143,8 +143,8 @@ export const vehicleMasterData = [
|
|
|
143
143
|
options: [],
|
|
144
144
|
},
|
|
145
145
|
{
|
|
146
|
-
label: 'Estimated average
|
|
147
|
-
description: '
|
|
146
|
+
label: 'Estimated average(km per litres )',
|
|
147
|
+
description: 'Enter value',
|
|
148
148
|
isHidden: false,
|
|
149
149
|
inputType: CustomInputField.Number,
|
|
150
150
|
isMandatory: false,
|
|
@@ -156,8 +156,8 @@ export const vehicleMasterData = [
|
|
|
156
156
|
name: 'Operational Details',
|
|
157
157
|
fields: [
|
|
158
158
|
{
|
|
159
|
-
label: '
|
|
160
|
-
description: '
|
|
159
|
+
label: 'Business Type',
|
|
160
|
+
description: 'Select',
|
|
161
161
|
isHidden: false,
|
|
162
162
|
inputType: CustomInputField.SingleSelect,
|
|
163
163
|
isMandatory: false,
|
|
@@ -165,32 +165,32 @@ export const vehicleMasterData = [
|
|
|
165
165
|
options: Object.values(OwnershipType),
|
|
166
166
|
},
|
|
167
167
|
{
|
|
168
|
-
label: 'Vendor',
|
|
169
|
-
description: '
|
|
168
|
+
label: 'Vendor name',
|
|
169
|
+
description: 'Enter vendor name',
|
|
170
170
|
isHidden: false,
|
|
171
171
|
inputType: CustomInputField.SingleSelect,
|
|
172
172
|
isMandatory: false,
|
|
173
173
|
order: 2,
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
|
-
label: '
|
|
177
|
-
description: '
|
|
176
|
+
label: 'Vehicle owner name',
|
|
177
|
+
description: 'Enter vehicle owner name',
|
|
178
178
|
isHidden: false,
|
|
179
179
|
inputType: CustomInputField.ShortAnswer,
|
|
180
180
|
isMandatory: false,
|
|
181
181
|
order: 3,
|
|
182
182
|
},
|
|
183
183
|
{
|
|
184
|
-
label: 'Owner
|
|
185
|
-
description: '
|
|
184
|
+
label: 'Owner mobile number',
|
|
185
|
+
description: '+91 Enter mobile number',
|
|
186
186
|
isHidden: false,
|
|
187
187
|
inputType: CustomInputField.ShortAnswer,
|
|
188
188
|
isMandatory: false,
|
|
189
189
|
order: 4,
|
|
190
190
|
},
|
|
191
191
|
{
|
|
192
|
-
label: '
|
|
193
|
-
description: '
|
|
192
|
+
label: 'City',
|
|
193
|
+
description: 'Select',
|
|
194
194
|
isHidden: false,
|
|
195
195
|
inputType: CustomInputField.SingleSelect,
|
|
196
196
|
isMandatory: false,
|
|
@@ -198,8 +198,8 @@ export const vehicleMasterData = [
|
|
|
198
198
|
options: Object.values(City),
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
|
-
label: 'Current
|
|
202
|
-
description: 'Current
|
|
201
|
+
label: 'Current odometer reading (km)',
|
|
202
|
+
description: 'Current odometer reading (km)',
|
|
203
203
|
isHidden: false,
|
|
204
204
|
inputType: CustomInputField.Number,
|
|
205
205
|
isMandatory: false,
|
|
@@ -215,16 +215,16 @@ export const vehicleMasterData = [
|
|
|
215
215
|
// options: ['Yes', 'No'],
|
|
216
216
|
// },
|
|
217
217
|
{
|
|
218
|
-
label: 'GPS
|
|
219
|
-
description: 'GPS
|
|
218
|
+
label: 'GPS device ID',
|
|
219
|
+
description: 'Enter GPS device ID',
|
|
220
220
|
isHidden: false,
|
|
221
221
|
inputType: CustomInputField.ShortAnswer,
|
|
222
222
|
isMandatory: false,
|
|
223
223
|
order: 8,
|
|
224
224
|
},
|
|
225
225
|
{
|
|
226
|
-
label: 'Vehicle
|
|
227
|
-
description: '
|
|
226
|
+
label: 'Vehicle status',
|
|
227
|
+
description: 'Select',
|
|
228
228
|
isHidden: false,
|
|
229
229
|
inputType: CustomInputField.SingleSelect,
|
|
230
230
|
isMandatory: false,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vehicle.default.fields.json.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/enums/src/vehicle.default.fields.json.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AACrC,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,MAAM,CAAC,MAAM,iBAAiB,GAcxB;IACL;QACC,OAAO,EAAE,iBAAiB;QAC1B,UAAU,EAAE;YACX;gBACC,IAAI,EAAE,qBAAqB;gBAC3B,MAAM,EAAE;oBACP;wBACC,KAAK,EAAE,qBAAqB;wBAC5B,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"vehicle.default.fields.json.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/enums/src/vehicle.default.fields.json.ts"],"names":[],"mappings":"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"}
|