@neutron.co.id/operasional-interfaces 1.17.28 → 1.17.29
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/build/@office/models/personalia/submission/SubmissionAudit.vue +8 -0
- package/build/@office/models/personalia/submission/SubmissionFollowUp.vue +5 -0
- package/build/@office/models/personalia/submission/SubmissionForDecision.vue +5 -0
- package/build/@office/models/personalia/submission/SubmissionStaff.vue +8 -0
- package/build/@office/models/personalia/submission/SubmissionSupervisor.vue +5 -0
- package/build/mock/index.cjs +41 -10
- package/build/mock/index.mjs +41 -10
- package/build/mock/style.css +14 -14
- package/build/module.json +1 -1
- package/build/nuxt.json +1 -1
- package/package.json +2 -2
|
@@ -207,6 +207,7 @@
|
|
|
207
207
|
<OfficeRelation
|
|
208
208
|
v-model="values"
|
|
209
209
|
:field="fields.submissionStaffs"
|
|
210
|
+
:columns="['nik', 'name']"
|
|
210
211
|
:fragment="{
|
|
211
212
|
nik: 1,
|
|
212
213
|
name: 1,
|
|
@@ -238,6 +239,7 @@
|
|
|
238
239
|
<OfficeRelation
|
|
239
240
|
v-model="values"
|
|
240
241
|
:field="fields.raiseStaffs"
|
|
242
|
+
:columns="['nik', 'name']"
|
|
241
243
|
:fragment="{
|
|
242
244
|
nik: 1,
|
|
243
245
|
name: 1,
|
|
@@ -268,6 +270,7 @@
|
|
|
268
270
|
<OfficeRelation
|
|
269
271
|
v-model="values"
|
|
270
272
|
:field="fields.decideStaffs"
|
|
273
|
+
:columns="['nik', 'name']"
|
|
271
274
|
:fragment="{
|
|
272
275
|
nik: 1,
|
|
273
276
|
name: 1,
|
|
@@ -296,6 +299,11 @@
|
|
|
296
299
|
<OfficeRelation
|
|
297
300
|
v-model="values"
|
|
298
301
|
:field="fields.followUpStaffs"
|
|
302
|
+
:columns="['nik', 'name']"
|
|
303
|
+
:fragment="{
|
|
304
|
+
nik: 1,
|
|
305
|
+
name: 1,
|
|
306
|
+
}"
|
|
299
307
|
/>
|
|
300
308
|
</NeonFields>
|
|
301
309
|
</div>
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
v-model="values"
|
|
120
120
|
:field="fields.submissionStaffs"
|
|
121
121
|
:query="Query.define(submissionStaffOptions)"
|
|
122
|
+
:columns="['nik', 'name']"
|
|
122
123
|
:fragment="{
|
|
123
124
|
nik: 1,
|
|
124
125
|
name: 1,
|
|
@@ -149,6 +150,7 @@
|
|
|
149
150
|
v-model="values"
|
|
150
151
|
:field="fields.raiseStaffs"
|
|
151
152
|
:query="Query.define(roleStaffOptions)"
|
|
153
|
+
:columns="['nik', 'name']"
|
|
152
154
|
:fragment="{
|
|
153
155
|
nik: 1,
|
|
154
156
|
name: 1,
|
|
@@ -176,6 +178,7 @@
|
|
|
176
178
|
v-model="values"
|
|
177
179
|
:field="fields.decideStaffs"
|
|
178
180
|
:query="Query.define(roleDecideStaffOptions)"
|
|
181
|
+
:columns="['nik', 'name']"
|
|
179
182
|
:fragment="{
|
|
180
183
|
nik: 1,
|
|
181
184
|
name: 1,
|
|
@@ -202,6 +205,11 @@
|
|
|
202
205
|
<OfficeRelation
|
|
203
206
|
v-model="values"
|
|
204
207
|
:field="fields.followUpStaffs"
|
|
208
|
+
:columns="['nik', 'name']"
|
|
209
|
+
:fragment="{
|
|
210
|
+
nik: 1,
|
|
211
|
+
name: 1,
|
|
212
|
+
}"
|
|
205
213
|
/>
|
|
206
214
|
</NeonFields>
|
|
207
215
|
</div>
|
package/build/mock/index.cjs
CHANGED
|
@@ -21460,6 +21460,7 @@ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
|
21460
21460
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
21461
21461
|
field: vue.unref(fields).submissionStaffs,
|
|
21462
21462
|
query: vue.unref(query.Query).define(submissionStaffOptions.value),
|
|
21463
|
+
columns: ["nik", "name"],
|
|
21463
21464
|
fragment: {
|
|
21464
21465
|
nik: 1,
|
|
21465
21466
|
name: 1
|
|
@@ -21488,6 +21489,7 @@ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
|
21488
21489
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
21489
21490
|
field: vue.unref(fields).raiseStaffs,
|
|
21490
21491
|
query: vue.unref(query.Query).define(roleStaffOptions.value),
|
|
21492
|
+
columns: ["nik", "name"],
|
|
21491
21493
|
fragment: {
|
|
21492
21494
|
nik: 1,
|
|
21493
21495
|
name: 1
|
|
@@ -21515,6 +21517,7 @@ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
|
21515
21517
|
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
21516
21518
|
field: vue.unref(fields).decideStaffs,
|
|
21517
21519
|
query: vue.unref(query.Query).define(roleDecideStaffOptions.value),
|
|
21520
|
+
columns: ["nik", "name"],
|
|
21518
21521
|
fragment: {
|
|
21519
21522
|
nik: 1,
|
|
21520
21523
|
name: 1
|
|
@@ -21540,7 +21543,12 @@ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
|
21540
21543
|
vue.createVNode(vue.unref(office$1.OfficeRelation), {
|
|
21541
21544
|
modelValue: vue.unref(values),
|
|
21542
21545
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
21543
|
-
field: vue.unref(fields).followUpStaffs
|
|
21546
|
+
field: vue.unref(fields).followUpStaffs,
|
|
21547
|
+
columns: ["nik", "name"],
|
|
21548
|
+
fragment: {
|
|
21549
|
+
nik: 1,
|
|
21550
|
+
name: 1
|
|
21551
|
+
}
|
|
21544
21552
|
}, null, 8, ["modelValue", "field"])
|
|
21545
21553
|
]),
|
|
21546
21554
|
_: 1
|
|
@@ -21681,7 +21689,7 @@ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
|
21681
21689
|
};
|
|
21682
21690
|
}
|
|
21683
21691
|
});
|
|
21684
|
-
const SubmissionStaff = /* @__PURE__ */ _export_sfc$1(_sfc_main$B, [["__scopeId", "data-v-
|
|
21692
|
+
const SubmissionStaff = /* @__PURE__ */ _export_sfc$1(_sfc_main$B, [["__scopeId", "data-v-03f44c24"]]);
|
|
21685
21693
|
const _hoisted_1$c = { class: "flex items-right" };
|
|
21686
21694
|
const _hoisted_2$a = { class: "flex-grow" };
|
|
21687
21695
|
const _hoisted_3$9 = { class: "ml-2 flex items-end pb-1" };
|
|
@@ -21842,7 +21850,12 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
21842
21850
|
vue.createVNode(vue.unref(office$1.OfficeRelation), {
|
|
21843
21851
|
modelValue: vue.unref(values),
|
|
21844
21852
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
21845
|
-
field: vue.unref(fields).followUpStaffs
|
|
21853
|
+
field: vue.unref(fields).followUpStaffs,
|
|
21854
|
+
columns: ["nik", "name"],
|
|
21855
|
+
fragment: {
|
|
21856
|
+
nik: 1,
|
|
21857
|
+
name: 1
|
|
21858
|
+
}
|
|
21846
21859
|
}, null, 8, ["modelValue", "field"])
|
|
21847
21860
|
]),
|
|
21848
21861
|
_: 1
|
|
@@ -21969,7 +21982,7 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
21969
21982
|
};
|
|
21970
21983
|
}
|
|
21971
21984
|
});
|
|
21972
|
-
const SubmissionFollowUp = /* @__PURE__ */ _export_sfc$1(_sfc_main$A, [["__scopeId", "data-v-
|
|
21985
|
+
const SubmissionFollowUp = /* @__PURE__ */ _export_sfc$1(_sfc_main$A, [["__scopeId", "data-v-291a482c"]]);
|
|
21973
21986
|
const _hoisted_1$b = { class: "flex flex-wrap" };
|
|
21974
21987
|
const _hoisted_2$9 = { class: "mt-2" };
|
|
21975
21988
|
const _hoisted_3$8 = { class: "mt-2" };
|
|
@@ -22307,6 +22320,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
22307
22320
|
modelValue: vue.unref(values),
|
|
22308
22321
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
22309
22322
|
field: vue.unref(fields).submissionStaffs,
|
|
22323
|
+
columns: ["nik", "name"],
|
|
22310
22324
|
fragment: {
|
|
22311
22325
|
nik: 1,
|
|
22312
22326
|
name: 1
|
|
@@ -22337,6 +22351,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
22337
22351
|
modelValue: vue.unref(values),
|
|
22338
22352
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
22339
22353
|
field: vue.unref(fields).raiseStaffs,
|
|
22354
|
+
columns: ["nik", "name"],
|
|
22340
22355
|
fragment: {
|
|
22341
22356
|
nik: 1,
|
|
22342
22357
|
name: 1
|
|
@@ -22365,6 +22380,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
22365
22380
|
modelValue: vue.unref(values),
|
|
22366
22381
|
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
22367
22382
|
field: vue.unref(fields).decideStaffs,
|
|
22383
|
+
columns: ["nik", "name"],
|
|
22368
22384
|
fragment: {
|
|
22369
22385
|
nik: 1,
|
|
22370
22386
|
name: 1
|
|
@@ -22391,7 +22407,12 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
22391
22407
|
vue.createVNode(vue.unref(office$1.OfficeRelation), {
|
|
22392
22408
|
modelValue: vue.unref(values),
|
|
22393
22409
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
22394
|
-
field: vue.unref(fields).followUpStaffs
|
|
22410
|
+
field: vue.unref(fields).followUpStaffs,
|
|
22411
|
+
columns: ["nik", "name"],
|
|
22412
|
+
fragment: {
|
|
22413
|
+
nik: 1,
|
|
22414
|
+
name: 1
|
|
22415
|
+
}
|
|
22395
22416
|
}, null, 8, ["modelValue", "field"])
|
|
22396
22417
|
]),
|
|
22397
22418
|
_: 1
|
|
@@ -22562,7 +22583,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
22562
22583
|
};
|
|
22563
22584
|
}
|
|
22564
22585
|
});
|
|
22565
|
-
const SubmissionAudit = /* @__PURE__ */ _export_sfc$1(_sfc_main$z, [["__scopeId", "data-v-
|
|
22586
|
+
const SubmissionAudit = /* @__PURE__ */ _export_sfc$1(_sfc_main$z, [["__scopeId", "data-v-38186f15"]]);
|
|
22566
22587
|
const _hoisted_1$a = { class: "flex flex-wrap" };
|
|
22567
22588
|
const _hoisted_2$8 = { class: "mt-2" };
|
|
22568
22589
|
const _hoisted_3$7 = { class: "mt-2" };
|
|
@@ -23842,7 +23863,12 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
23842
23863
|
vue.createVNode(vue.unref(office$1.OfficeRelation), {
|
|
23843
23864
|
modelValue: vue.unref(values),
|
|
23844
23865
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
23845
|
-
field: vue.unref(fields).followUpStaffs
|
|
23866
|
+
field: vue.unref(fields).followUpStaffs,
|
|
23867
|
+
columns: ["nik", "name"],
|
|
23868
|
+
fragment: {
|
|
23869
|
+
nik: 1,
|
|
23870
|
+
name: 1
|
|
23871
|
+
}
|
|
23846
23872
|
}, null, 8, ["modelValue", "field"])
|
|
23847
23873
|
]),
|
|
23848
23874
|
_: 1
|
|
@@ -23902,7 +23928,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
23902
23928
|
};
|
|
23903
23929
|
}
|
|
23904
23930
|
});
|
|
23905
|
-
const SubmissionForDecision = /* @__PURE__ */ _export_sfc$1(_sfc_main$w, [["__scopeId", "data-v-
|
|
23931
|
+
const SubmissionForDecision = /* @__PURE__ */ _export_sfc$1(_sfc_main$w, [["__scopeId", "data-v-31bf765e"]]);
|
|
23906
23932
|
const _hoisted_1$7 = { class: "flex items-right" };
|
|
23907
23933
|
const _hoisted_2$5 = { class: "flex-grow" };
|
|
23908
23934
|
const _hoisted_3$4 = { class: "ml-2 flex items-end pb-1" };
|
|
@@ -24063,7 +24089,12 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
24063
24089
|
vue.createVNode(vue.unref(office$1.OfficeRelation), {
|
|
24064
24090
|
modelValue: vue.unref(values),
|
|
24065
24091
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
24066
|
-
field: vue.unref(fields).followUpStaffs
|
|
24092
|
+
field: vue.unref(fields).followUpStaffs,
|
|
24093
|
+
columns: ["nik", "name"],
|
|
24094
|
+
fragment: {
|
|
24095
|
+
nik: 1,
|
|
24096
|
+
name: 1
|
|
24097
|
+
}
|
|
24067
24098
|
}, null, 8, ["modelValue", "field"])
|
|
24068
24099
|
]),
|
|
24069
24100
|
_: 1
|
|
@@ -24190,7 +24221,7 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
24190
24221
|
};
|
|
24191
24222
|
}
|
|
24192
24223
|
});
|
|
24193
|
-
const SubmissionSupervisor = /* @__PURE__ */ _export_sfc$1(_sfc_main$v, [["__scopeId", "data-v-
|
|
24224
|
+
const SubmissionSupervisor = /* @__PURE__ */ _export_sfc$1(_sfc_main$v, [["__scopeId", "data-v-da8b354a"]]);
|
|
24194
24225
|
const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
|
|
24195
24226
|
...{
|
|
24196
24227
|
name: "SubmissionCollection"
|
package/build/mock/index.mjs
CHANGED
|
@@ -21441,6 +21441,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
21441
21441
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => isRef(values) ? values.value = $event : null),
|
|
21442
21442
|
field: unref(fields).submissionStaffs,
|
|
21443
21443
|
query: unref(Query).define(submissionStaffOptions.value),
|
|
21444
|
+
columns: ["nik", "name"],
|
|
21444
21445
|
fragment: {
|
|
21445
21446
|
nik: 1,
|
|
21446
21447
|
name: 1
|
|
@@ -21469,6 +21470,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
21469
21470
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => isRef(values) ? values.value = $event : null),
|
|
21470
21471
|
field: unref(fields).raiseStaffs,
|
|
21471
21472
|
query: unref(Query).define(roleStaffOptions.value),
|
|
21473
|
+
columns: ["nik", "name"],
|
|
21472
21474
|
fragment: {
|
|
21473
21475
|
nik: 1,
|
|
21474
21476
|
name: 1
|
|
@@ -21496,6 +21498,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
21496
21498
|
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => isRef(values) ? values.value = $event : null),
|
|
21497
21499
|
field: unref(fields).decideStaffs,
|
|
21498
21500
|
query: unref(Query).define(roleDecideStaffOptions.value),
|
|
21501
|
+
columns: ["nik", "name"],
|
|
21499
21502
|
fragment: {
|
|
21500
21503
|
nik: 1,
|
|
21501
21504
|
name: 1
|
|
@@ -21521,7 +21524,12 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
21521
21524
|
createVNode(unref(OfficeRelation), {
|
|
21522
21525
|
modelValue: unref(values),
|
|
21523
21526
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => isRef(values) ? values.value = $event : null),
|
|
21524
|
-
field: unref(fields).followUpStaffs
|
|
21527
|
+
field: unref(fields).followUpStaffs,
|
|
21528
|
+
columns: ["nik", "name"],
|
|
21529
|
+
fragment: {
|
|
21530
|
+
nik: 1,
|
|
21531
|
+
name: 1
|
|
21532
|
+
}
|
|
21525
21533
|
}, null, 8, ["modelValue", "field"])
|
|
21526
21534
|
]),
|
|
21527
21535
|
_: 1
|
|
@@ -21662,7 +21670,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
21662
21670
|
};
|
|
21663
21671
|
}
|
|
21664
21672
|
});
|
|
21665
|
-
const SubmissionStaff = /* @__PURE__ */ _export_sfc$1(_sfc_main$B, [["__scopeId", "data-v-
|
|
21673
|
+
const SubmissionStaff = /* @__PURE__ */ _export_sfc$1(_sfc_main$B, [["__scopeId", "data-v-03f44c24"]]);
|
|
21666
21674
|
const _hoisted_1$c = { class: "flex items-right" };
|
|
21667
21675
|
const _hoisted_2$a = { class: "flex-grow" };
|
|
21668
21676
|
const _hoisted_3$9 = { class: "ml-2 flex items-end pb-1" };
|
|
@@ -21823,7 +21831,12 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
|
21823
21831
|
createVNode(unref(OfficeRelation), {
|
|
21824
21832
|
modelValue: unref(values),
|
|
21825
21833
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => isRef(values) ? values.value = $event : null),
|
|
21826
|
-
field: unref(fields).followUpStaffs
|
|
21834
|
+
field: unref(fields).followUpStaffs,
|
|
21835
|
+
columns: ["nik", "name"],
|
|
21836
|
+
fragment: {
|
|
21837
|
+
nik: 1,
|
|
21838
|
+
name: 1
|
|
21839
|
+
}
|
|
21827
21840
|
}, null, 8, ["modelValue", "field"])
|
|
21828
21841
|
]),
|
|
21829
21842
|
_: 1
|
|
@@ -21950,7 +21963,7 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
|
21950
21963
|
};
|
|
21951
21964
|
}
|
|
21952
21965
|
});
|
|
21953
|
-
const SubmissionFollowUp = /* @__PURE__ */ _export_sfc$1(_sfc_main$A, [["__scopeId", "data-v-
|
|
21966
|
+
const SubmissionFollowUp = /* @__PURE__ */ _export_sfc$1(_sfc_main$A, [["__scopeId", "data-v-291a482c"]]);
|
|
21954
21967
|
const _hoisted_1$b = { class: "flex flex-wrap" };
|
|
21955
21968
|
const _hoisted_2$9 = { class: "mt-2" };
|
|
21956
21969
|
const _hoisted_3$8 = { class: "mt-2" };
|
|
@@ -22288,6 +22301,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
22288
22301
|
modelValue: unref(values),
|
|
22289
22302
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => isRef(values) ? values.value = $event : null),
|
|
22290
22303
|
field: unref(fields).submissionStaffs,
|
|
22304
|
+
columns: ["nik", "name"],
|
|
22291
22305
|
fragment: {
|
|
22292
22306
|
nik: 1,
|
|
22293
22307
|
name: 1
|
|
@@ -22318,6 +22332,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
22318
22332
|
modelValue: unref(values),
|
|
22319
22333
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => isRef(values) ? values.value = $event : null),
|
|
22320
22334
|
field: unref(fields).raiseStaffs,
|
|
22335
|
+
columns: ["nik", "name"],
|
|
22321
22336
|
fragment: {
|
|
22322
22337
|
nik: 1,
|
|
22323
22338
|
name: 1
|
|
@@ -22346,6 +22361,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
22346
22361
|
modelValue: unref(values),
|
|
22347
22362
|
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => isRef(values) ? values.value = $event : null),
|
|
22348
22363
|
field: unref(fields).decideStaffs,
|
|
22364
|
+
columns: ["nik", "name"],
|
|
22349
22365
|
fragment: {
|
|
22350
22366
|
nik: 1,
|
|
22351
22367
|
name: 1
|
|
@@ -22372,7 +22388,12 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
22372
22388
|
createVNode(unref(OfficeRelation), {
|
|
22373
22389
|
modelValue: unref(values),
|
|
22374
22390
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => isRef(values) ? values.value = $event : null),
|
|
22375
|
-
field: unref(fields).followUpStaffs
|
|
22391
|
+
field: unref(fields).followUpStaffs,
|
|
22392
|
+
columns: ["nik", "name"],
|
|
22393
|
+
fragment: {
|
|
22394
|
+
nik: 1,
|
|
22395
|
+
name: 1
|
|
22396
|
+
}
|
|
22376
22397
|
}, null, 8, ["modelValue", "field"])
|
|
22377
22398
|
]),
|
|
22378
22399
|
_: 1
|
|
@@ -22543,7 +22564,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
22543
22564
|
};
|
|
22544
22565
|
}
|
|
22545
22566
|
});
|
|
22546
|
-
const SubmissionAudit = /* @__PURE__ */ _export_sfc$1(_sfc_main$z, [["__scopeId", "data-v-
|
|
22567
|
+
const SubmissionAudit = /* @__PURE__ */ _export_sfc$1(_sfc_main$z, [["__scopeId", "data-v-38186f15"]]);
|
|
22547
22568
|
const _hoisted_1$a = { class: "flex flex-wrap" };
|
|
22548
22569
|
const _hoisted_2$8 = { class: "mt-2" };
|
|
22549
22570
|
const _hoisted_3$7 = { class: "mt-2" };
|
|
@@ -23823,7 +23844,12 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
23823
23844
|
createVNode(unref(OfficeRelation), {
|
|
23824
23845
|
modelValue: unref(values),
|
|
23825
23846
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => isRef(values) ? values.value = $event : null),
|
|
23826
|
-
field: unref(fields).followUpStaffs
|
|
23847
|
+
field: unref(fields).followUpStaffs,
|
|
23848
|
+
columns: ["nik", "name"],
|
|
23849
|
+
fragment: {
|
|
23850
|
+
nik: 1,
|
|
23851
|
+
name: 1
|
|
23852
|
+
}
|
|
23827
23853
|
}, null, 8, ["modelValue", "field"])
|
|
23828
23854
|
]),
|
|
23829
23855
|
_: 1
|
|
@@ -23883,7 +23909,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
23883
23909
|
};
|
|
23884
23910
|
}
|
|
23885
23911
|
});
|
|
23886
|
-
const SubmissionForDecision = /* @__PURE__ */ _export_sfc$1(_sfc_main$w, [["__scopeId", "data-v-
|
|
23912
|
+
const SubmissionForDecision = /* @__PURE__ */ _export_sfc$1(_sfc_main$w, [["__scopeId", "data-v-31bf765e"]]);
|
|
23887
23913
|
const _hoisted_1$7 = { class: "flex items-right" };
|
|
23888
23914
|
const _hoisted_2$5 = { class: "flex-grow" };
|
|
23889
23915
|
const _hoisted_3$4 = { class: "ml-2 flex items-end pb-1" };
|
|
@@ -24044,7 +24070,12 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
24044
24070
|
createVNode(unref(OfficeRelation), {
|
|
24045
24071
|
modelValue: unref(values),
|
|
24046
24072
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => isRef(values) ? values.value = $event : null),
|
|
24047
|
-
field: unref(fields).followUpStaffs
|
|
24073
|
+
field: unref(fields).followUpStaffs,
|
|
24074
|
+
columns: ["nik", "name"],
|
|
24075
|
+
fragment: {
|
|
24076
|
+
nik: 1,
|
|
24077
|
+
name: 1
|
|
24078
|
+
}
|
|
24048
24079
|
}, null, 8, ["modelValue", "field"])
|
|
24049
24080
|
]),
|
|
24050
24081
|
_: 1
|
|
@@ -24171,7 +24202,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
24171
24202
|
};
|
|
24172
24203
|
}
|
|
24173
24204
|
});
|
|
24174
|
-
const SubmissionSupervisor = /* @__PURE__ */ _export_sfc$1(_sfc_main$v, [["__scopeId", "data-v-
|
|
24205
|
+
const SubmissionSupervisor = /* @__PURE__ */ _export_sfc$1(_sfc_main$v, [["__scopeId", "data-v-da8b354a"]]);
|
|
24175
24206
|
const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
24176
24207
|
...{
|
|
24177
24208
|
name: "SubmissionCollection"
|
package/build/mock/style.css
CHANGED
|
@@ -373,15 +373,15 @@
|
|
|
373
373
|
display: block
|
|
374
374
|
}
|
|
375
375
|
|
|
376
|
-
.neu-submission-single[data-v-
|
|
376
|
+
.neu-submission-single[data-v-03f44c24] {
|
|
377
377
|
display: block
|
|
378
378
|
}
|
|
379
379
|
|
|
380
|
-
.neu-submission-single[data-v-
|
|
380
|
+
.neu-submission-single[data-v-291a482c] {
|
|
381
381
|
display: block
|
|
382
382
|
}
|
|
383
383
|
|
|
384
|
-
.neu-submission-single[data-v-
|
|
384
|
+
.neu-submission-single[data-v-38186f15] {
|
|
385
385
|
display: block
|
|
386
386
|
}
|
|
387
387
|
|
|
@@ -393,13 +393,13 @@
|
|
|
393
393
|
display: block
|
|
394
394
|
}
|
|
395
395
|
|
|
396
|
-
.neu-submission-single[data-v-
|
|
396
|
+
.neu-submission-single[data-v-31bf765e] {
|
|
397
397
|
|
|
398
398
|
display: block;
|
|
399
399
|
|
|
400
400
|
height: 100%
|
|
401
401
|
}
|
|
402
|
-
.single-wrapper[data-v-
|
|
402
|
+
.single-wrapper[data-v-31bf765e] {
|
|
403
403
|
|
|
404
404
|
display: flex;
|
|
405
405
|
|
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
|
|
410
410
|
flex-direction: column
|
|
411
411
|
}
|
|
412
|
-
.submission-header[data-v-
|
|
412
|
+
.submission-header[data-v-31bf765e] {
|
|
413
413
|
|
|
414
414
|
display: flex;
|
|
415
415
|
|
|
@@ -433,20 +433,20 @@
|
|
|
433
433
|
|
|
434
434
|
font-size: 0.875rem
|
|
435
435
|
}
|
|
436
|
-
.single-wrapper[data-v-
|
|
437
|
-
.single-wrapper[data-v-
|
|
436
|
+
.single-wrapper[data-v-31bf765e] > .office-tabs,
|
|
437
|
+
.single-wrapper[data-v-31bf765e] > .neon-tabs {
|
|
438
438
|
|
|
439
439
|
min-height: 0px;
|
|
440
440
|
|
|
441
441
|
flex: 1 1 0%
|
|
442
442
|
}
|
|
443
|
-
.header-segment[data-v-
|
|
443
|
+
.header-segment[data-v-31bf765e] {
|
|
444
444
|
|
|
445
445
|
--tw-text-opacity: 1;
|
|
446
446
|
|
|
447
447
|
color: rgb(161 161 170 / var(--tw-text-opacity))
|
|
448
448
|
}
|
|
449
|
-
.header-brand[data-v-
|
|
449
|
+
.header-brand[data-v-31bf765e] {
|
|
450
450
|
|
|
451
451
|
font-weight: 500;
|
|
452
452
|
|
|
@@ -454,7 +454,7 @@
|
|
|
454
454
|
|
|
455
455
|
color: rgb(39 39 42 / var(--tw-text-opacity))
|
|
456
456
|
}
|
|
457
|
-
.header-department[data-v-
|
|
457
|
+
.header-department[data-v-31bf765e] {
|
|
458
458
|
|
|
459
459
|
font-weight: 500;
|
|
460
460
|
|
|
@@ -462,7 +462,7 @@
|
|
|
462
462
|
|
|
463
463
|
color: rgb(39 39 42 / var(--tw-text-opacity))
|
|
464
464
|
}
|
|
465
|
-
.header-title[data-v-
|
|
465
|
+
.header-title[data-v-31bf765e] {
|
|
466
466
|
|
|
467
467
|
font-weight: 700;
|
|
468
468
|
|
|
@@ -470,7 +470,7 @@
|
|
|
470
470
|
|
|
471
471
|
color: rgb(39 39 42 / var(--tw-text-opacity))
|
|
472
472
|
}
|
|
473
|
-
.header-sep[data-v-
|
|
473
|
+
.header-sep[data-v-31bf765e] {
|
|
474
474
|
|
|
475
475
|
--tw-text-opacity: 1;
|
|
476
476
|
|
|
@@ -479,7 +479,7 @@
|
|
|
479
479
|
--neon-icon-size: 12px
|
|
480
480
|
}
|
|
481
481
|
|
|
482
|
-
.neu-submission-single[data-v-
|
|
482
|
+
.neu-submission-single[data-v-da8b354a] {
|
|
483
483
|
display: block
|
|
484
484
|
}
|
|
485
485
|
|
package/build/module.json
CHANGED
package/build/nuxt.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neutron.co.id/operasional-interfaces",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.29",
|
|
4
4
|
"description": "Interface library of Neutron Operasional.",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css"
|
|
@@ -164,5 +164,5 @@
|
|
|
164
164
|
"publishConfig": {
|
|
165
165
|
"access": "public"
|
|
166
166
|
},
|
|
167
|
-
"build":
|
|
167
|
+
"build": 211
|
|
168
168
|
}
|