@neutron.co.id/operasional-interfaces 1.4.2 → 1.4.3-beta.1
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/index.cjs +116 -111
- package/build/index.mjs +116 -111
- package/build/style.css +11 -11
- package/package.json +44 -44
package/build/index.cjs
CHANGED
|
@@ -3292,103 +3292,108 @@ var getOperationName = (r2) => {
|
|
|
3292
3292
|
}
|
|
3293
3293
|
};
|
|
3294
3294
|
"undefined" != typeof TextDecoder ? new TextDecoder() : null;
|
|
3295
|
+
var b = /* @__PURE__ */ new WeakMap();
|
|
3295
3296
|
function useClient() {
|
|
3296
|
-
|
|
3297
|
+
var e3 = vue.getCurrentInstance();
|
|
3298
|
+
if ("production" !== process.env.NODE_ENV && !e3) {
|
|
3297
3299
|
throw new Error("use* functions may only be called during the `setup()` or other lifecycle hooks.");
|
|
3298
3300
|
}
|
|
3299
|
-
var
|
|
3300
|
-
if (
|
|
3301
|
+
var r2 = vue.inject("$urql");
|
|
3302
|
+
if (!r2 && e3) {
|
|
3303
|
+
r2 = b.get(e3);
|
|
3304
|
+
}
|
|
3305
|
+
if ("production" !== process.env.NODE_ENV && !r2) {
|
|
3301
3306
|
throw new Error("No urql Client was provided. Did you forget to install the plugin or call `provideClient` in a parent?");
|
|
3302
3307
|
}
|
|
3303
|
-
return
|
|
3308
|
+
return r2;
|
|
3304
3309
|
}
|
|
3305
3310
|
function unwrapPossibleProxy(e3) {
|
|
3306
3311
|
return e3 && vue.isRef(e3) ? e3.value : e3;
|
|
3307
3312
|
}
|
|
3308
|
-
var
|
|
3313
|
+
var P = {
|
|
3309
3314
|
flush: "pre"
|
|
3310
3315
|
};
|
|
3311
|
-
function callUseQuery(e3, l2 = useClient(),
|
|
3312
|
-
var
|
|
3313
|
-
var
|
|
3316
|
+
function callUseQuery(e3, l2 = useClient(), n = []) {
|
|
3317
|
+
var s4 = vue.reactive(e3);
|
|
3318
|
+
var i3 = vue.ref();
|
|
3314
3319
|
var v2 = vue.ref(false);
|
|
3315
3320
|
var f2 = vue.ref(false);
|
|
3316
3321
|
var y3 = vue.ref();
|
|
3322
|
+
var b3 = vue.ref();
|
|
3317
3323
|
var d4 = vue.ref();
|
|
3318
|
-
var h3 = vue.ref();
|
|
3319
|
-
var x2 = vue.
|
|
3320
|
-
var w2 = vue.ref(
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
...n.context
|
|
3324
|
+
var h3 = vue.isRef(e3.pause) ? e3.pause : vue.ref(!!e3.pause);
|
|
3325
|
+
var x2 = vue.ref(createRequest(unwrapPossibleProxy(s4.query), unwrapPossibleProxy(s4.variables)));
|
|
3326
|
+
var w2 = vue.ref();
|
|
3327
|
+
n.push(vue.watchEffect(() => {
|
|
3328
|
+
var e4 = createRequest(unwrapPossibleProxy(s4.query), unwrapPossibleProxy(s4.variables));
|
|
3329
|
+
if (x2.value.key !== e4.key) {
|
|
3330
|
+
x2.value = e4;
|
|
3331
|
+
}
|
|
3332
|
+
}, P));
|
|
3333
|
+
n.push(vue.watchEffect(() => {
|
|
3334
|
+
w2.value = !h3.value ? l2.value.executeQuery(x2.value, {
|
|
3335
|
+
requestPolicy: unwrapPossibleProxy(s4.requestPolicy),
|
|
3336
|
+
...unwrapPossibleProxy(s4.context)
|
|
3332
3337
|
}) : void 0;
|
|
3333
|
-
},
|
|
3338
|
+
}, P));
|
|
3334
3339
|
var q2 = {
|
|
3335
|
-
data:
|
|
3340
|
+
data: i3,
|
|
3336
3341
|
stale: v2,
|
|
3337
3342
|
error: y3,
|
|
3338
|
-
operation:
|
|
3339
|
-
extensions:
|
|
3343
|
+
operation: b3,
|
|
3344
|
+
extensions: d4,
|
|
3340
3345
|
fetching: f2,
|
|
3341
|
-
isPaused:
|
|
3346
|
+
isPaused: h3,
|
|
3342
3347
|
executeQuery(e4) {
|
|
3343
|
-
var
|
|
3344
|
-
requestPolicy:
|
|
3345
|
-
...
|
|
3348
|
+
var r2 = w2.value = l2.value.executeQuery(x2.value, {
|
|
3349
|
+
requestPolicy: unwrapPossibleProxy(s4.requestPolicy),
|
|
3350
|
+
...s4.context,
|
|
3346
3351
|
...e4
|
|
3347
3352
|
});
|
|
3348
3353
|
return {
|
|
3349
3354
|
...E2,
|
|
3350
|
-
then(e5,
|
|
3355
|
+
then(e5, u2) {
|
|
3351
3356
|
var a3;
|
|
3352
3357
|
return new Promise((e6) => {
|
|
3353
|
-
var
|
|
3358
|
+
var u3 = false;
|
|
3354
3359
|
a3 = subscribe(() => {
|
|
3355
3360
|
if (!q2.fetching.value && !q2.stale.value) {
|
|
3356
3361
|
if (a3) {
|
|
3357
3362
|
a3.unsubscribe();
|
|
3358
3363
|
}
|
|
3359
|
-
|
|
3364
|
+
u3 = true;
|
|
3360
3365
|
e6(q2);
|
|
3361
3366
|
}
|
|
3362
|
-
})(
|
|
3363
|
-
if (
|
|
3367
|
+
})(r2);
|
|
3368
|
+
if (u3) {
|
|
3364
3369
|
a3.unsubscribe();
|
|
3365
3370
|
}
|
|
3366
|
-
}).then(e5,
|
|
3371
|
+
}).then(e5, u2);
|
|
3367
3372
|
}
|
|
3368
3373
|
};
|
|
3369
3374
|
},
|
|
3370
3375
|
pause() {
|
|
3371
|
-
|
|
3376
|
+
h3.value = true;
|
|
3372
3377
|
},
|
|
3373
3378
|
resume() {
|
|
3374
|
-
|
|
3379
|
+
h3.value = false;
|
|
3375
3380
|
}
|
|
3376
3381
|
};
|
|
3377
|
-
|
|
3378
|
-
if (
|
|
3382
|
+
n.push(vue.watchEffect((e4) => {
|
|
3383
|
+
if (w2.value) {
|
|
3379
3384
|
f2.value = true;
|
|
3380
3385
|
v2.value = false;
|
|
3381
3386
|
e4(subscribe((e5) => {
|
|
3382
|
-
|
|
3387
|
+
i3.value = e5.data;
|
|
3383
3388
|
v2.value = !!e5.stale;
|
|
3384
3389
|
f2.value = false;
|
|
3385
3390
|
y3.value = e5.error;
|
|
3386
|
-
|
|
3387
|
-
|
|
3391
|
+
b3.value = e5.operation;
|
|
3392
|
+
d4.value = e5.extensions;
|
|
3388
3393
|
})(onEnd(() => {
|
|
3389
3394
|
f2.value = false;
|
|
3390
3395
|
v2.value = false;
|
|
3391
|
-
})(
|
|
3396
|
+
})(w2.value)).unsubscribe);
|
|
3392
3397
|
} else {
|
|
3393
3398
|
f2.value = false;
|
|
3394
3399
|
v2.value = false;
|
|
@@ -3398,53 +3403,53 @@ function callUseQuery(e3, l2 = useClient(), t3 = []) {
|
|
|
3398
3403
|
}));
|
|
3399
3404
|
var E2 = {
|
|
3400
3405
|
...q2,
|
|
3401
|
-
then(e4,
|
|
3402
|
-
var
|
|
3406
|
+
then(e4, r2) {
|
|
3407
|
+
var u2;
|
|
3403
3408
|
return new Promise((e5) => {
|
|
3404
|
-
if (!
|
|
3409
|
+
if (!w2.value) {
|
|
3405
3410
|
return e5(q2);
|
|
3406
3411
|
}
|
|
3407
|
-
var
|
|
3408
|
-
|
|
3412
|
+
var r3 = false;
|
|
3413
|
+
u2 = subscribe(() => {
|
|
3409
3414
|
if (!q2.fetching.value && !q2.stale.value) {
|
|
3410
|
-
if (
|
|
3411
|
-
|
|
3415
|
+
if (u2) {
|
|
3416
|
+
u2.unsubscribe();
|
|
3412
3417
|
}
|
|
3413
|
-
|
|
3418
|
+
r3 = true;
|
|
3414
3419
|
e5(q2);
|
|
3415
3420
|
}
|
|
3416
|
-
})(
|
|
3417
|
-
if (
|
|
3418
|
-
|
|
3421
|
+
})(w2.value);
|
|
3422
|
+
if (r3) {
|
|
3423
|
+
u2.unsubscribe();
|
|
3419
3424
|
}
|
|
3420
|
-
}).then(e4,
|
|
3425
|
+
}).then(e4, r2);
|
|
3421
3426
|
}
|
|
3422
3427
|
};
|
|
3423
3428
|
return E2;
|
|
3424
3429
|
}
|
|
3425
|
-
function callUseMutation(e3,
|
|
3430
|
+
function callUseMutation(e3, u2 = useClient()) {
|
|
3426
3431
|
var l2 = vue.ref();
|
|
3427
|
-
var t3 = vue.ref(false);
|
|
3428
3432
|
var n = vue.ref(false);
|
|
3429
|
-
var s4 = vue.ref();
|
|
3430
|
-
var
|
|
3433
|
+
var s4 = vue.ref(false);
|
|
3434
|
+
var t3 = vue.ref();
|
|
3431
3435
|
var o2 = vue.ref();
|
|
3436
|
+
var i3 = vue.ref();
|
|
3432
3437
|
return {
|
|
3433
3438
|
data: l2,
|
|
3434
|
-
stale:
|
|
3435
|
-
fetching:
|
|
3436
|
-
error:
|
|
3437
|
-
operation:
|
|
3438
|
-
extensions:
|
|
3439
|
+
stale: n,
|
|
3440
|
+
fetching: s4,
|
|
3441
|
+
error: t3,
|
|
3442
|
+
operation: o2,
|
|
3443
|
+
extensions: i3,
|
|
3439
3444
|
executeMutation(a3, v2) {
|
|
3440
|
-
|
|
3441
|
-
return toPromise(take(1)(
|
|
3445
|
+
s4.value = true;
|
|
3446
|
+
return toPromise(take(1)(u2.value.executeMutation(createRequest(e3, unwrapPossibleProxy(a3)), v2 || {}))).then((e4) => {
|
|
3442
3447
|
l2.value = e4.data;
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
+
n.value = !!e4.stale;
|
|
3449
|
+
s4.value = false;
|
|
3450
|
+
t3.value = e4.error;
|
|
3451
|
+
o2.value = e4.operation;
|
|
3452
|
+
i3.value = e4.extensions;
|
|
3448
3453
|
return e4;
|
|
3449
3454
|
});
|
|
3450
3455
|
}
|
|
@@ -3453,38 +3458,38 @@ function callUseMutation(e3, r2 = useClient()) {
|
|
|
3453
3458
|
var d = {
|
|
3454
3459
|
flush: "pre"
|
|
3455
3460
|
};
|
|
3456
|
-
function callUseSubscription(e3, l2,
|
|
3457
|
-
var
|
|
3461
|
+
function callUseSubscription(e3, l2, n = useClient(), s4 = []) {
|
|
3462
|
+
var i3 = vue.reactive(e3);
|
|
3458
3463
|
var v2 = vue.ref();
|
|
3459
3464
|
var f2 = vue.ref(false);
|
|
3460
3465
|
var y3 = vue.ref(false);
|
|
3461
3466
|
var b3 = vue.ref();
|
|
3467
|
+
var P2 = vue.ref();
|
|
3462
3468
|
var h3 = vue.ref();
|
|
3463
|
-
var x2 = vue.ref();
|
|
3464
|
-
var w2 = vue.ref(
|
|
3465
|
-
var
|
|
3466
|
-
var q2 = vue.ref(createRequest(o2.query, unwrapPossibleProxy(o2.variables)));
|
|
3469
|
+
var x2 = vue.ref(l2);
|
|
3470
|
+
var w2 = vue.isRef(e3.pause) ? e3.pause : vue.ref(!!e3.pause);
|
|
3471
|
+
var q2 = vue.ref(createRequest(unwrapPossibleProxy(i3.query), unwrapPossibleProxy(i3.variables)));
|
|
3467
3472
|
var E2 = vue.ref();
|
|
3468
|
-
|
|
3469
|
-
var e4 = createRequest(
|
|
3473
|
+
s4.push(vue.watchEffect(() => {
|
|
3474
|
+
var e4 = createRequest(unwrapPossibleProxy(i3.query), unwrapPossibleProxy(i3.variables));
|
|
3470
3475
|
if (q2.value.key !== e4.key) {
|
|
3471
3476
|
q2.value = e4;
|
|
3472
3477
|
}
|
|
3473
3478
|
}, d));
|
|
3474
|
-
|
|
3475
|
-
E2.value = !
|
|
3476
|
-
...
|
|
3479
|
+
s4.push(vue.watchEffect(() => {
|
|
3480
|
+
E2.value = !w2.value ? n.value.executeSubscription(q2.value, {
|
|
3481
|
+
...unwrapPossibleProxy(i3.context)
|
|
3477
3482
|
}) : void 0;
|
|
3478
3483
|
}, d));
|
|
3479
|
-
|
|
3484
|
+
s4.push(vue.watchEffect((e4) => {
|
|
3480
3485
|
if (E2.value) {
|
|
3481
3486
|
y3.value = true;
|
|
3482
3487
|
e4(subscribe((e5) => {
|
|
3483
3488
|
y3.value = true;
|
|
3484
|
-
v2.value = void 0 !== e5.data ? "function" == typeof
|
|
3485
|
-
|
|
3489
|
+
v2.value = void 0 !== e5.data ? "function" == typeof x2.value ? x2.value(v2.value, e5.data) : e5.data : e5.data, b3.value = e5.error;
|
|
3490
|
+
h3.value = e5.extensions;
|
|
3486
3491
|
f2.value = !!e5.stale;
|
|
3487
|
-
|
|
3492
|
+
P2.value = e5.operation;
|
|
3488
3493
|
})(onEnd(() => {
|
|
3489
3494
|
y3.value = false;
|
|
3490
3495
|
})(E2.value)).unsubscribe);
|
|
@@ -3496,60 +3501,60 @@ function callUseSubscription(e3, l2, t3 = useClient(), n = []) {
|
|
|
3496
3501
|
data: v2,
|
|
3497
3502
|
stale: f2,
|
|
3498
3503
|
error: b3,
|
|
3499
|
-
operation:
|
|
3500
|
-
extensions:
|
|
3504
|
+
operation: P2,
|
|
3505
|
+
extensions: h3,
|
|
3501
3506
|
fetching: y3,
|
|
3502
|
-
isPaused:
|
|
3507
|
+
isPaused: w2,
|
|
3503
3508
|
executeSubscription(e4) {
|
|
3504
|
-
E2.value =
|
|
3505
|
-
...
|
|
3509
|
+
E2.value = n.value.executeSubscription(q2.value, {
|
|
3510
|
+
...unwrapPossibleProxy(i3.context),
|
|
3506
3511
|
...e4
|
|
3507
3512
|
});
|
|
3508
3513
|
return m3;
|
|
3509
3514
|
},
|
|
3510
3515
|
pause() {
|
|
3511
|
-
|
|
3516
|
+
w2.value = true;
|
|
3512
3517
|
},
|
|
3513
3518
|
resume() {
|
|
3514
|
-
|
|
3519
|
+
w2.value = false;
|
|
3515
3520
|
}
|
|
3516
3521
|
};
|
|
3517
3522
|
return m3;
|
|
3518
3523
|
}
|
|
3519
3524
|
function useClientHandle() {
|
|
3520
3525
|
var e3 = useClient();
|
|
3521
|
-
var
|
|
3526
|
+
var r2 = [];
|
|
3522
3527
|
vue.onBeforeUnmount(() => {
|
|
3523
3528
|
var e4;
|
|
3524
|
-
while (e4 =
|
|
3529
|
+
while (e4 = r2.shift()) {
|
|
3525
3530
|
e4();
|
|
3526
3531
|
}
|
|
3527
3532
|
});
|
|
3528
|
-
var
|
|
3533
|
+
var u2 = {
|
|
3529
3534
|
client: e3.value,
|
|
3530
|
-
useQuery: (
|
|
3531
|
-
useSubscription: (
|
|
3532
|
-
useMutation: (
|
|
3535
|
+
useQuery: (u3) => callUseQuery(u3, e3, r2),
|
|
3536
|
+
useSubscription: (u3, a3) => callUseSubscription(u3, a3, e3, r2),
|
|
3537
|
+
useMutation: (r3) => callUseMutation(r3, e3)
|
|
3533
3538
|
};
|
|
3534
3539
|
if ("production" !== process.env.NODE_ENV) {
|
|
3535
3540
|
vue.onMounted(() => {
|
|
3536
|
-
Object.assign(
|
|
3537
|
-
useQuery(
|
|
3541
|
+
Object.assign(u2, {
|
|
3542
|
+
useQuery(u3) {
|
|
3538
3543
|
if ("production" !== process.env.NODE_ENV && !vue.getCurrentInstance()) {
|
|
3539
3544
|
throw new Error("`handle.useQuery()` should only be called in the `setup()` or a lifecycle hook.");
|
|
3540
3545
|
}
|
|
3541
|
-
return callUseQuery(
|
|
3546
|
+
return callUseQuery(u3, e3, r2);
|
|
3542
3547
|
},
|
|
3543
|
-
useSubscription(
|
|
3548
|
+
useSubscription(u3, a3) {
|
|
3544
3549
|
if ("production" !== process.env.NODE_ENV && !vue.getCurrentInstance()) {
|
|
3545
3550
|
throw new Error("`handle.useSubscription()` should only be called in the `setup()` or a lifecycle hook.");
|
|
3546
3551
|
}
|
|
3547
|
-
return callUseSubscription(
|
|
3552
|
+
return callUseSubscription(u3, a3, e3, r2);
|
|
3548
3553
|
}
|
|
3549
3554
|
});
|
|
3550
3555
|
});
|
|
3551
3556
|
}
|
|
3552
|
-
return
|
|
3557
|
+
return u2;
|
|
3553
3558
|
}
|
|
3554
3559
|
function toInteger(dirtyNumber) {
|
|
3555
3560
|
if (dirtyNumber === null || dirtyNumber === true || dirtyNumber === false) {
|
|
@@ -5457,7 +5462,7 @@ const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
|
5457
5462
|
};
|
|
5458
5463
|
}
|
|
5459
5464
|
});
|
|
5460
|
-
const
|
|
5465
|
+
const OperasionalIdentitas_vue_vue_type_style_index_0_scoped_780f9c83_lang = "";
|
|
5461
5466
|
const _export_sfc = (sfc, props) => {
|
|
5462
5467
|
const target = sfc.__vccOpts || sfc;
|
|
5463
5468
|
for (const [key, val] of props) {
|
|
@@ -5465,7 +5470,7 @@ const _export_sfc = (sfc, props) => {
|
|
|
5465
5470
|
}
|
|
5466
5471
|
return target;
|
|
5467
5472
|
};
|
|
5468
|
-
const OperasionalIdentitas = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-
|
|
5473
|
+
const OperasionalIdentitas = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-780f9c83"]]);
|
|
5469
5474
|
const CheckInModel = tempatModels.models.CheckInModel;
|
|
5470
5475
|
const useOperasionalStore = pinia.defineStore("neu:operasional", () => {
|
|
5471
5476
|
const isLoading = vue.ref(false);
|
|
@@ -5606,7 +5611,7 @@ function mitt(n) {
|
|
|
5606
5611
|
} };
|
|
5607
5612
|
}
|
|
5608
5613
|
const bus = mitt();
|
|
5609
|
-
const _withScopeId$2 = (n) => (vue.pushScopeId("data-v-
|
|
5614
|
+
const _withScopeId$2 = (n) => (vue.pushScopeId("data-v-6c1902ac"), n = n(), vue.popScopeId(), n);
|
|
5610
5615
|
const _hoisted_1$7 = { id: "view-checkIns" };
|
|
5611
5616
|
const _hoisted_2$4 = { class: "summary" };
|
|
5612
5617
|
const _hoisted_3$1 = { class: "wrapper" };
|
|
@@ -5926,8 +5931,8 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
5926
5931
|
};
|
|
5927
5932
|
}
|
|
5928
5933
|
});
|
|
5929
|
-
const
|
|
5930
|
-
const CheckInPresenceCollection = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-
|
|
5934
|
+
const CheckInPresenceCollection_vue_vue_type_style_index_0_scoped_6c1902ac_lang = "";
|
|
5935
|
+
const CheckInPresenceCollection = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-6c1902ac"]]);
|
|
5931
5936
|
const _hoisted_1$6 = { class: "grid gap-4 sm:grid-cols-2" };
|
|
5932
5937
|
const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
5933
5938
|
__name: "CheckInSingle",
|
package/build/index.mjs
CHANGED
|
@@ -3290,103 +3290,108 @@ var getOperationName = (r2) => {
|
|
|
3290
3290
|
}
|
|
3291
3291
|
};
|
|
3292
3292
|
"undefined" != typeof TextDecoder ? new TextDecoder() : null;
|
|
3293
|
+
var b = /* @__PURE__ */ new WeakMap();
|
|
3293
3294
|
function useClient() {
|
|
3294
|
-
|
|
3295
|
+
var e3 = getCurrentInstance();
|
|
3296
|
+
if ("production" !== process.env.NODE_ENV && !e3) {
|
|
3295
3297
|
throw new Error("use* functions may only be called during the `setup()` or other lifecycle hooks.");
|
|
3296
3298
|
}
|
|
3297
|
-
var
|
|
3298
|
-
if (
|
|
3299
|
+
var r2 = inject("$urql");
|
|
3300
|
+
if (!r2 && e3) {
|
|
3301
|
+
r2 = b.get(e3);
|
|
3302
|
+
}
|
|
3303
|
+
if ("production" !== process.env.NODE_ENV && !r2) {
|
|
3299
3304
|
throw new Error("No urql Client was provided. Did you forget to install the plugin or call `provideClient` in a parent?");
|
|
3300
3305
|
}
|
|
3301
|
-
return
|
|
3306
|
+
return r2;
|
|
3302
3307
|
}
|
|
3303
3308
|
function unwrapPossibleProxy(e3) {
|
|
3304
3309
|
return e3 && isRef(e3) ? e3.value : e3;
|
|
3305
3310
|
}
|
|
3306
|
-
var
|
|
3311
|
+
var P = {
|
|
3307
3312
|
flush: "pre"
|
|
3308
3313
|
};
|
|
3309
|
-
function callUseQuery(e3, l2 = useClient(),
|
|
3310
|
-
var
|
|
3311
|
-
var
|
|
3314
|
+
function callUseQuery(e3, l2 = useClient(), n = []) {
|
|
3315
|
+
var s4 = reactive(e3);
|
|
3316
|
+
var i3 = ref();
|
|
3312
3317
|
var v2 = ref(false);
|
|
3313
3318
|
var f2 = ref(false);
|
|
3314
3319
|
var y3 = ref();
|
|
3320
|
+
var b3 = ref();
|
|
3315
3321
|
var d4 = ref();
|
|
3316
|
-
var h4 = ref();
|
|
3317
|
-
var x2 =
|
|
3318
|
-
var w2 = ref(
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
...n.context
|
|
3322
|
+
var h4 = isRef(e3.pause) ? e3.pause : ref(!!e3.pause);
|
|
3323
|
+
var x2 = ref(createRequest(unwrapPossibleProxy(s4.query), unwrapPossibleProxy(s4.variables)));
|
|
3324
|
+
var w2 = ref();
|
|
3325
|
+
n.push(watchEffect(() => {
|
|
3326
|
+
var e4 = createRequest(unwrapPossibleProxy(s4.query), unwrapPossibleProxy(s4.variables));
|
|
3327
|
+
if (x2.value.key !== e4.key) {
|
|
3328
|
+
x2.value = e4;
|
|
3329
|
+
}
|
|
3330
|
+
}, P));
|
|
3331
|
+
n.push(watchEffect(() => {
|
|
3332
|
+
w2.value = !h4.value ? l2.value.executeQuery(x2.value, {
|
|
3333
|
+
requestPolicy: unwrapPossibleProxy(s4.requestPolicy),
|
|
3334
|
+
...unwrapPossibleProxy(s4.context)
|
|
3330
3335
|
}) : void 0;
|
|
3331
|
-
},
|
|
3336
|
+
}, P));
|
|
3332
3337
|
var q2 = {
|
|
3333
|
-
data:
|
|
3338
|
+
data: i3,
|
|
3334
3339
|
stale: v2,
|
|
3335
3340
|
error: y3,
|
|
3336
|
-
operation:
|
|
3337
|
-
extensions:
|
|
3341
|
+
operation: b3,
|
|
3342
|
+
extensions: d4,
|
|
3338
3343
|
fetching: f2,
|
|
3339
|
-
isPaused:
|
|
3344
|
+
isPaused: h4,
|
|
3340
3345
|
executeQuery(e4) {
|
|
3341
|
-
var
|
|
3342
|
-
requestPolicy:
|
|
3343
|
-
...
|
|
3346
|
+
var r2 = w2.value = l2.value.executeQuery(x2.value, {
|
|
3347
|
+
requestPolicy: unwrapPossibleProxy(s4.requestPolicy),
|
|
3348
|
+
...s4.context,
|
|
3344
3349
|
...e4
|
|
3345
3350
|
});
|
|
3346
3351
|
return {
|
|
3347
3352
|
...E2,
|
|
3348
|
-
then(e5,
|
|
3353
|
+
then(e5, u2) {
|
|
3349
3354
|
var a3;
|
|
3350
3355
|
return new Promise((e6) => {
|
|
3351
|
-
var
|
|
3356
|
+
var u3 = false;
|
|
3352
3357
|
a3 = subscribe(() => {
|
|
3353
3358
|
if (!q2.fetching.value && !q2.stale.value) {
|
|
3354
3359
|
if (a3) {
|
|
3355
3360
|
a3.unsubscribe();
|
|
3356
3361
|
}
|
|
3357
|
-
|
|
3362
|
+
u3 = true;
|
|
3358
3363
|
e6(q2);
|
|
3359
3364
|
}
|
|
3360
|
-
})(
|
|
3361
|
-
if (
|
|
3365
|
+
})(r2);
|
|
3366
|
+
if (u3) {
|
|
3362
3367
|
a3.unsubscribe();
|
|
3363
3368
|
}
|
|
3364
|
-
}).then(e5,
|
|
3369
|
+
}).then(e5, u2);
|
|
3365
3370
|
}
|
|
3366
3371
|
};
|
|
3367
3372
|
},
|
|
3368
3373
|
pause() {
|
|
3369
|
-
|
|
3374
|
+
h4.value = true;
|
|
3370
3375
|
},
|
|
3371
3376
|
resume() {
|
|
3372
|
-
|
|
3377
|
+
h4.value = false;
|
|
3373
3378
|
}
|
|
3374
3379
|
};
|
|
3375
|
-
|
|
3376
|
-
if (
|
|
3380
|
+
n.push(watchEffect((e4) => {
|
|
3381
|
+
if (w2.value) {
|
|
3377
3382
|
f2.value = true;
|
|
3378
3383
|
v2.value = false;
|
|
3379
3384
|
e4(subscribe((e5) => {
|
|
3380
|
-
|
|
3385
|
+
i3.value = e5.data;
|
|
3381
3386
|
v2.value = !!e5.stale;
|
|
3382
3387
|
f2.value = false;
|
|
3383
3388
|
y3.value = e5.error;
|
|
3384
|
-
|
|
3385
|
-
|
|
3389
|
+
b3.value = e5.operation;
|
|
3390
|
+
d4.value = e5.extensions;
|
|
3386
3391
|
})(onEnd(() => {
|
|
3387
3392
|
f2.value = false;
|
|
3388
3393
|
v2.value = false;
|
|
3389
|
-
})(
|
|
3394
|
+
})(w2.value)).unsubscribe);
|
|
3390
3395
|
} else {
|
|
3391
3396
|
f2.value = false;
|
|
3392
3397
|
v2.value = false;
|
|
@@ -3396,53 +3401,53 @@ function callUseQuery(e3, l2 = useClient(), t3 = []) {
|
|
|
3396
3401
|
}));
|
|
3397
3402
|
var E2 = {
|
|
3398
3403
|
...q2,
|
|
3399
|
-
then(e4,
|
|
3400
|
-
var
|
|
3404
|
+
then(e4, r2) {
|
|
3405
|
+
var u2;
|
|
3401
3406
|
return new Promise((e5) => {
|
|
3402
|
-
if (!
|
|
3407
|
+
if (!w2.value) {
|
|
3403
3408
|
return e5(q2);
|
|
3404
3409
|
}
|
|
3405
|
-
var
|
|
3406
|
-
|
|
3410
|
+
var r3 = false;
|
|
3411
|
+
u2 = subscribe(() => {
|
|
3407
3412
|
if (!q2.fetching.value && !q2.stale.value) {
|
|
3408
|
-
if (
|
|
3409
|
-
|
|
3413
|
+
if (u2) {
|
|
3414
|
+
u2.unsubscribe();
|
|
3410
3415
|
}
|
|
3411
|
-
|
|
3416
|
+
r3 = true;
|
|
3412
3417
|
e5(q2);
|
|
3413
3418
|
}
|
|
3414
|
-
})(
|
|
3415
|
-
if (
|
|
3416
|
-
|
|
3419
|
+
})(w2.value);
|
|
3420
|
+
if (r3) {
|
|
3421
|
+
u2.unsubscribe();
|
|
3417
3422
|
}
|
|
3418
|
-
}).then(e4,
|
|
3423
|
+
}).then(e4, r2);
|
|
3419
3424
|
}
|
|
3420
3425
|
};
|
|
3421
3426
|
return E2;
|
|
3422
3427
|
}
|
|
3423
|
-
function callUseMutation(e3,
|
|
3428
|
+
function callUseMutation(e3, u2 = useClient()) {
|
|
3424
3429
|
var l2 = ref();
|
|
3425
|
-
var t3 = ref(false);
|
|
3426
3430
|
var n = ref(false);
|
|
3427
|
-
var s4 = ref();
|
|
3428
|
-
var
|
|
3431
|
+
var s4 = ref(false);
|
|
3432
|
+
var t3 = ref();
|
|
3429
3433
|
var o2 = ref();
|
|
3434
|
+
var i3 = ref();
|
|
3430
3435
|
return {
|
|
3431
3436
|
data: l2,
|
|
3432
|
-
stale:
|
|
3433
|
-
fetching:
|
|
3434
|
-
error:
|
|
3435
|
-
operation:
|
|
3436
|
-
extensions:
|
|
3437
|
+
stale: n,
|
|
3438
|
+
fetching: s4,
|
|
3439
|
+
error: t3,
|
|
3440
|
+
operation: o2,
|
|
3441
|
+
extensions: i3,
|
|
3437
3442
|
executeMutation(a3, v2) {
|
|
3438
|
-
|
|
3439
|
-
return toPromise(take(1)(
|
|
3443
|
+
s4.value = true;
|
|
3444
|
+
return toPromise(take(1)(u2.value.executeMutation(createRequest(e3, unwrapPossibleProxy(a3)), v2 || {}))).then((e4) => {
|
|
3440
3445
|
l2.value = e4.data;
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
+
n.value = !!e4.stale;
|
|
3447
|
+
s4.value = false;
|
|
3448
|
+
t3.value = e4.error;
|
|
3449
|
+
o2.value = e4.operation;
|
|
3450
|
+
i3.value = e4.extensions;
|
|
3446
3451
|
return e4;
|
|
3447
3452
|
});
|
|
3448
3453
|
}
|
|
@@ -3451,38 +3456,38 @@ function callUseMutation(e3, r2 = useClient()) {
|
|
|
3451
3456
|
var d = {
|
|
3452
3457
|
flush: "pre"
|
|
3453
3458
|
};
|
|
3454
|
-
function callUseSubscription(e3, l2,
|
|
3455
|
-
var
|
|
3459
|
+
function callUseSubscription(e3, l2, n = useClient(), s4 = []) {
|
|
3460
|
+
var i3 = reactive(e3);
|
|
3456
3461
|
var v2 = ref();
|
|
3457
3462
|
var f2 = ref(false);
|
|
3458
3463
|
var y3 = ref(false);
|
|
3459
3464
|
var b3 = ref();
|
|
3465
|
+
var P2 = ref();
|
|
3460
3466
|
var h4 = ref();
|
|
3461
|
-
var x2 = ref();
|
|
3462
|
-
var w2 = ref(
|
|
3463
|
-
var
|
|
3464
|
-
var q2 = ref(createRequest(o2.query, unwrapPossibleProxy(o2.variables)));
|
|
3467
|
+
var x2 = ref(l2);
|
|
3468
|
+
var w2 = isRef(e3.pause) ? e3.pause : ref(!!e3.pause);
|
|
3469
|
+
var q2 = ref(createRequest(unwrapPossibleProxy(i3.query), unwrapPossibleProxy(i3.variables)));
|
|
3465
3470
|
var E2 = ref();
|
|
3466
|
-
|
|
3467
|
-
var e4 = createRequest(
|
|
3471
|
+
s4.push(watchEffect(() => {
|
|
3472
|
+
var e4 = createRequest(unwrapPossibleProxy(i3.query), unwrapPossibleProxy(i3.variables));
|
|
3468
3473
|
if (q2.value.key !== e4.key) {
|
|
3469
3474
|
q2.value = e4;
|
|
3470
3475
|
}
|
|
3471
3476
|
}, d));
|
|
3472
|
-
|
|
3473
|
-
E2.value = !
|
|
3474
|
-
...
|
|
3477
|
+
s4.push(watchEffect(() => {
|
|
3478
|
+
E2.value = !w2.value ? n.value.executeSubscription(q2.value, {
|
|
3479
|
+
...unwrapPossibleProxy(i3.context)
|
|
3475
3480
|
}) : void 0;
|
|
3476
3481
|
}, d));
|
|
3477
|
-
|
|
3482
|
+
s4.push(watchEffect((e4) => {
|
|
3478
3483
|
if (E2.value) {
|
|
3479
3484
|
y3.value = true;
|
|
3480
3485
|
e4(subscribe((e5) => {
|
|
3481
3486
|
y3.value = true;
|
|
3482
|
-
v2.value = void 0 !== e5.data ? "function" == typeof
|
|
3483
|
-
|
|
3487
|
+
v2.value = void 0 !== e5.data ? "function" == typeof x2.value ? x2.value(v2.value, e5.data) : e5.data : e5.data, b3.value = e5.error;
|
|
3488
|
+
h4.value = e5.extensions;
|
|
3484
3489
|
f2.value = !!e5.stale;
|
|
3485
|
-
|
|
3490
|
+
P2.value = e5.operation;
|
|
3486
3491
|
})(onEnd(() => {
|
|
3487
3492
|
y3.value = false;
|
|
3488
3493
|
})(E2.value)).unsubscribe);
|
|
@@ -3494,60 +3499,60 @@ function callUseSubscription(e3, l2, t3 = useClient(), n = []) {
|
|
|
3494
3499
|
data: v2,
|
|
3495
3500
|
stale: f2,
|
|
3496
3501
|
error: b3,
|
|
3497
|
-
operation:
|
|
3498
|
-
extensions:
|
|
3502
|
+
operation: P2,
|
|
3503
|
+
extensions: h4,
|
|
3499
3504
|
fetching: y3,
|
|
3500
|
-
isPaused:
|
|
3505
|
+
isPaused: w2,
|
|
3501
3506
|
executeSubscription(e4) {
|
|
3502
|
-
E2.value =
|
|
3503
|
-
...
|
|
3507
|
+
E2.value = n.value.executeSubscription(q2.value, {
|
|
3508
|
+
...unwrapPossibleProxy(i3.context),
|
|
3504
3509
|
...e4
|
|
3505
3510
|
});
|
|
3506
3511
|
return m3;
|
|
3507
3512
|
},
|
|
3508
3513
|
pause() {
|
|
3509
|
-
|
|
3514
|
+
w2.value = true;
|
|
3510
3515
|
},
|
|
3511
3516
|
resume() {
|
|
3512
|
-
|
|
3517
|
+
w2.value = false;
|
|
3513
3518
|
}
|
|
3514
3519
|
};
|
|
3515
3520
|
return m3;
|
|
3516
3521
|
}
|
|
3517
3522
|
function useClientHandle() {
|
|
3518
3523
|
var e3 = useClient();
|
|
3519
|
-
var
|
|
3524
|
+
var r2 = [];
|
|
3520
3525
|
onBeforeUnmount(() => {
|
|
3521
3526
|
var e4;
|
|
3522
|
-
while (e4 =
|
|
3527
|
+
while (e4 = r2.shift()) {
|
|
3523
3528
|
e4();
|
|
3524
3529
|
}
|
|
3525
3530
|
});
|
|
3526
|
-
var
|
|
3531
|
+
var u2 = {
|
|
3527
3532
|
client: e3.value,
|
|
3528
|
-
useQuery: (
|
|
3529
|
-
useSubscription: (
|
|
3530
|
-
useMutation: (
|
|
3533
|
+
useQuery: (u3) => callUseQuery(u3, e3, r2),
|
|
3534
|
+
useSubscription: (u3, a3) => callUseSubscription(u3, a3, e3, r2),
|
|
3535
|
+
useMutation: (r3) => callUseMutation(r3, e3)
|
|
3531
3536
|
};
|
|
3532
3537
|
if ("production" !== process.env.NODE_ENV) {
|
|
3533
3538
|
onMounted(() => {
|
|
3534
|
-
Object.assign(
|
|
3535
|
-
useQuery(
|
|
3539
|
+
Object.assign(u2, {
|
|
3540
|
+
useQuery(u3) {
|
|
3536
3541
|
if ("production" !== process.env.NODE_ENV && !getCurrentInstance()) {
|
|
3537
3542
|
throw new Error("`handle.useQuery()` should only be called in the `setup()` or a lifecycle hook.");
|
|
3538
3543
|
}
|
|
3539
|
-
return callUseQuery(
|
|
3544
|
+
return callUseQuery(u3, e3, r2);
|
|
3540
3545
|
},
|
|
3541
|
-
useSubscription(
|
|
3546
|
+
useSubscription(u3, a3) {
|
|
3542
3547
|
if ("production" !== process.env.NODE_ENV && !getCurrentInstance()) {
|
|
3543
3548
|
throw new Error("`handle.useSubscription()` should only be called in the `setup()` or a lifecycle hook.");
|
|
3544
3549
|
}
|
|
3545
|
-
return callUseSubscription(
|
|
3550
|
+
return callUseSubscription(u3, a3, e3, r2);
|
|
3546
3551
|
}
|
|
3547
3552
|
});
|
|
3548
3553
|
});
|
|
3549
3554
|
}
|
|
3550
|
-
return
|
|
3555
|
+
return u2;
|
|
3551
3556
|
}
|
|
3552
3557
|
function toInteger(dirtyNumber) {
|
|
3553
3558
|
if (dirtyNumber === null || dirtyNumber === true || dirtyNumber === false) {
|
|
@@ -5455,7 +5460,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
5455
5460
|
};
|
|
5456
5461
|
}
|
|
5457
5462
|
});
|
|
5458
|
-
const
|
|
5463
|
+
const OperasionalIdentitas_vue_vue_type_style_index_0_scoped_780f9c83_lang = "";
|
|
5459
5464
|
const _export_sfc = (sfc, props) => {
|
|
5460
5465
|
const target = sfc.__vccOpts || sfc;
|
|
5461
5466
|
for (const [key, val] of props) {
|
|
@@ -5463,7 +5468,7 @@ const _export_sfc = (sfc, props) => {
|
|
|
5463
5468
|
}
|
|
5464
5469
|
return target;
|
|
5465
5470
|
};
|
|
5466
|
-
const OperasionalIdentitas = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-
|
|
5471
|
+
const OperasionalIdentitas = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-780f9c83"]]);
|
|
5467
5472
|
const CheckInModel = models$1.CheckInModel;
|
|
5468
5473
|
const useOperasionalStore = defineStore("neu:operasional", () => {
|
|
5469
5474
|
const isLoading = ref(false);
|
|
@@ -5604,7 +5609,7 @@ function mitt(n) {
|
|
|
5604
5609
|
} };
|
|
5605
5610
|
}
|
|
5606
5611
|
const bus = mitt();
|
|
5607
|
-
const _withScopeId$2 = (n) => (pushScopeId("data-v-
|
|
5612
|
+
const _withScopeId$2 = (n) => (pushScopeId("data-v-6c1902ac"), n = n(), popScopeId(), n);
|
|
5608
5613
|
const _hoisted_1$7 = { id: "view-checkIns" };
|
|
5609
5614
|
const _hoisted_2$4 = { class: "summary" };
|
|
5610
5615
|
const _hoisted_3$1 = { class: "wrapper" };
|
|
@@ -5924,8 +5929,8 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
5924
5929
|
};
|
|
5925
5930
|
}
|
|
5926
5931
|
});
|
|
5927
|
-
const
|
|
5928
|
-
const CheckInPresenceCollection = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-
|
|
5932
|
+
const CheckInPresenceCollection_vue_vue_type_style_index_0_scoped_6c1902ac_lang = "";
|
|
5933
|
+
const CheckInPresenceCollection = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-6c1902ac"]]);
|
|
5929
5934
|
const _hoisted_1$6 = { class: "grid gap-4 sm:grid-cols-2" };
|
|
5930
5935
|
const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
5931
5936
|
__name: "CheckInSingle",
|
package/build/style.css
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
|
|
2
|
-
.operasional-identitas .section .divider[data-v-
|
|
2
|
+
.operasional-identitas .section .divider[data-v-780f9c83] {
|
|
3
3
|
margin-bottom: 1rem
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
#view-checkIns[data-v-
|
|
6
|
+
#view-checkIns[data-v-6c1902ac] {
|
|
7
7
|
|
|
8
8
|
height: 100%
|
|
9
9
|
}
|
|
10
|
-
#view-checkIns .wrapper[data-v-
|
|
10
|
+
#view-checkIns .wrapper[data-v-6c1902ac] {
|
|
11
11
|
|
|
12
12
|
height: 100%
|
|
13
13
|
}
|
|
14
|
-
#view-checkIns .header[data-v-
|
|
14
|
+
#view-checkIns .header[data-v-6c1902ac] {
|
|
15
15
|
|
|
16
16
|
display: flex;
|
|
17
17
|
|
|
@@ -27,15 +27,15 @@
|
|
|
27
27
|
|
|
28
28
|
padding-bottom: 0.5rem
|
|
29
29
|
}
|
|
30
|
-
#view-checkIns .header .start[data-v-
|
|
30
|
+
#view-checkIns .header .start[data-v-6c1902ac] {
|
|
31
31
|
|
|
32
32
|
line-height: 1.25
|
|
33
33
|
}
|
|
34
|
-
#view-checkIns .header .title[data-v-
|
|
34
|
+
#view-checkIns .header .title[data-v-6c1902ac] {
|
|
35
35
|
|
|
36
36
|
font-weight: 700
|
|
37
37
|
}
|
|
38
|
-
#view-checkIns .header .description[data-v-
|
|
38
|
+
#view-checkIns .header .description[data-v-6c1902ac] {
|
|
39
39
|
|
|
40
40
|
font-size: 0.875rem;
|
|
41
41
|
|
|
@@ -43,13 +43,13 @@
|
|
|
43
43
|
|
|
44
44
|
color: rgb(161 161 170 / var(--tw-text-opacity))
|
|
45
45
|
}
|
|
46
|
-
#view-checkIns .buttons[data-v-
|
|
46
|
+
#view-checkIns .buttons[data-v-6c1902ac] {
|
|
47
47
|
|
|
48
48
|
display: flex;
|
|
49
49
|
|
|
50
50
|
align-items: center
|
|
51
51
|
}
|
|
52
|
-
#view-checkIns .buttons[data-v-
|
|
52
|
+
#view-checkIns .buttons[data-v-6c1902ac] > :not([hidden]) ~ :not([hidden]) {
|
|
53
53
|
|
|
54
54
|
--tw-space-x-reverse: 0;
|
|
55
55
|
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
|
|
58
58
|
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)))
|
|
59
59
|
}
|
|
60
|
-
#view-checkIns .buttons[data-v-
|
|
60
|
+
#view-checkIns .buttons[data-v-6c1902ac] {
|
|
61
61
|
|
|
62
62
|
padding-right: 0.25rem
|
|
63
63
|
}
|
|
64
|
-
#view-checkIns .summary[data-v-
|
|
64
|
+
#view-checkIns .summary[data-v-6c1902ac] {
|
|
65
65
|
|
|
66
66
|
padding-bottom: 0.5rem
|
|
67
67
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neutron.co.id/operasional-interfaces",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3-beta.1",
|
|
4
4
|
"description": "Interface library of Neutron.",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css"
|
|
@@ -54,15 +54,15 @@
|
|
|
54
54
|
"warm": "nuxt prepare"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@neon.id/context": "0.
|
|
58
|
-
"@neon.id/field": "0.
|
|
59
|
-
"@neon.id/identitas-interfaces": "1.
|
|
60
|
-
"@neon.id/interfaces": "0.
|
|
61
|
-
"@neon.id/office": "0.
|
|
62
|
-
"@neon.id/utils": "0.
|
|
63
|
-
"@neutron.co.id/personalia-models": "1.4.
|
|
64
|
-
"@neutron.co.id/sentral-interfaces": "1.
|
|
65
|
-
"@nuxt/kit": "3.
|
|
57
|
+
"@neon.id/context": "0.39.0",
|
|
58
|
+
"@neon.id/field": "0.15.0",
|
|
59
|
+
"@neon.id/identitas-interfaces": "1.1.0",
|
|
60
|
+
"@neon.id/interfaces": "0.154.0",
|
|
61
|
+
"@neon.id/office": "0.24.0",
|
|
62
|
+
"@neon.id/utils": "0.39.0",
|
|
63
|
+
"@neutron.co.id/personalia-models": "1.4.1-beta.1",
|
|
64
|
+
"@neutron.co.id/sentral-interfaces": "1.2.0",
|
|
65
|
+
"@nuxt/kit": "3.3.1",
|
|
66
66
|
"qr-scanner": "1.4.1",
|
|
67
67
|
"vue": "3.2.47"
|
|
68
68
|
},
|
|
@@ -71,42 +71,42 @@
|
|
|
71
71
|
"@graphql-codegen/cli": "3.2.2",
|
|
72
72
|
"@graphql-codegen/client-preset": "2.1.1",
|
|
73
73
|
"@neon.id/identitas-models": "1.0.0",
|
|
74
|
-
"@neon.id/module-builder": "0.13.
|
|
75
|
-
"@neon.id/styles": "0.15.
|
|
76
|
-
"@neon.id/types": "1.
|
|
74
|
+
"@neon.id/module-builder": "0.13.1",
|
|
75
|
+
"@neon.id/styles": "0.15.1",
|
|
76
|
+
"@neon.id/types": "1.38.0",
|
|
77
77
|
"@nuxtjs/eslint-config-typescript": "12.0.0",
|
|
78
|
-
"@nuxtjs/eslint-module": "
|
|
79
|
-
"@nuxtjs/tailwindcss": "6.
|
|
78
|
+
"@nuxtjs/eslint-module": "4.0.2",
|
|
79
|
+
"@nuxtjs/tailwindcss": "6.6.0",
|
|
80
80
|
"@pinia/nuxt": "0.4.7",
|
|
81
|
-
"@storybook/addon-docs": "7.0.0-
|
|
82
|
-
"@storybook/addon-essentials": "7.0.0-
|
|
83
|
-
"@storybook/addon-interactions": "7.0.0-
|
|
84
|
-
"@storybook/addon-links": "7.0.0-
|
|
81
|
+
"@storybook/addon-docs": "7.0.0-rc.4",
|
|
82
|
+
"@storybook/addon-essentials": "7.0.0-rc.4",
|
|
83
|
+
"@storybook/addon-interactions": "7.0.0-rc.4",
|
|
84
|
+
"@storybook/addon-links": "7.0.0-rc.4",
|
|
85
85
|
"@storybook/testing-library": "0.0.14-next.1",
|
|
86
|
-
"@storybook/vue3": "7.0.0-
|
|
87
|
-
"@storybook/vue3-vite": "7.0.0-
|
|
86
|
+
"@storybook/vue3": "7.0.0-rc.4",
|
|
87
|
+
"@storybook/vue3-vite": "7.0.0-rc.4",
|
|
88
88
|
"@types/react": "18.0.28",
|
|
89
89
|
"@types/react-dom": "18.0.11",
|
|
90
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
91
|
-
"@typescript-eslint/parser": "5.
|
|
92
|
-
"@vitejs/plugin-vue": "4.
|
|
93
|
-
"@vue-macros/nuxt": "1.2.
|
|
94
|
-
"@vue-macros/volar": "0.
|
|
90
|
+
"@typescript-eslint/eslint-plugin": "5.55.0",
|
|
91
|
+
"@typescript-eslint/parser": "5.55.0",
|
|
92
|
+
"@vitejs/plugin-vue": "4.1.0",
|
|
93
|
+
"@vue-macros/nuxt": "1.2.3",
|
|
94
|
+
"@vue-macros/volar": "0.9.0",
|
|
95
95
|
"@vue/eslint-config-prettier": "7.1.0",
|
|
96
96
|
"@vue/eslint-config-typescript": "11.0.2",
|
|
97
97
|
"@vueuse/core": "9.13.0",
|
|
98
|
-
"@vueuse/head": "1.1.
|
|
98
|
+
"@vueuse/head": "1.1.23",
|
|
99
99
|
"@vueuse/nuxt": "9.13.0",
|
|
100
|
-
"autoprefixer": "10.4.
|
|
100
|
+
"autoprefixer": "10.4.14",
|
|
101
101
|
"buffer": "6.0.3",
|
|
102
|
-
"chromatic": "6.17.
|
|
102
|
+
"chromatic": "6.17.2",
|
|
103
103
|
"defu": "6.1.2",
|
|
104
|
-
"eslint": "8.
|
|
104
|
+
"eslint": "8.36.0",
|
|
105
105
|
"eslint-plugin-nuxt": "4.0.0",
|
|
106
106
|
"eslint-plugin-prettier": "4.2.1",
|
|
107
107
|
"eslint-plugin-storybook": "0.6.11",
|
|
108
108
|
"eslint-plugin-vue": "9.9.0",
|
|
109
|
-
"nuxt": "3.
|
|
109
|
+
"nuxt": "3.3.1",
|
|
110
110
|
"pinia": "2.0.33",
|
|
111
111
|
"postcss": "8.4.21",
|
|
112
112
|
"postcss-custom-properties": "13.1.4",
|
|
@@ -114,27 +114,27 @@
|
|
|
114
114
|
"react": "18.2.0",
|
|
115
115
|
"react-dom": "18.2.0",
|
|
116
116
|
"rollup-plugin-visualizer": "5.9.0",
|
|
117
|
-
"storybook": "7.0.0-
|
|
118
|
-
"tsx": "3.12.
|
|
119
|
-
"typescript": "
|
|
120
|
-
"unplugin-vue-macros": "1.
|
|
117
|
+
"storybook": "7.0.0-rc.4",
|
|
118
|
+
"tsx": "3.12.5",
|
|
119
|
+
"typescript": "5.0.2",
|
|
120
|
+
"unplugin-vue-macros": "1.10.1",
|
|
121
121
|
"vite": "4.1.4",
|
|
122
|
-
"vitest": "0.29.
|
|
122
|
+
"vitest": "0.29.3",
|
|
123
123
|
"vue-router": "4.1.6",
|
|
124
124
|
"vue-tsc": "1.2.0"
|
|
125
125
|
},
|
|
126
126
|
"peerDependencies": {
|
|
127
|
-
"@neon.id/context": "^0.
|
|
128
|
-
"@neon.id/identitas-interfaces": "^1.
|
|
129
|
-
"@neon.id/interfaces": "^0.
|
|
130
|
-
"@neon.id/office": "^0.
|
|
131
|
-
"@neon.id/utils": "^0.
|
|
132
|
-
"@neutron.co.id/personalia-models": "^1.4.
|
|
133
|
-
"@nuxt/kit": "^3.
|
|
127
|
+
"@neon.id/context": "^0.39.0",
|
|
128
|
+
"@neon.id/identitas-interfaces": "^1.1.0",
|
|
129
|
+
"@neon.id/interfaces": "^0.154.0",
|
|
130
|
+
"@neon.id/office": "^0.24.0",
|
|
131
|
+
"@neon.id/utils": "^0.39.0",
|
|
132
|
+
"@neutron.co.id/personalia-models": "^1.4.1-beta.1",
|
|
133
|
+
"@nuxt/kit": "^3.3.1",
|
|
134
134
|
"vue": "^3.2.47"
|
|
135
135
|
},
|
|
136
136
|
"publishConfig": {
|
|
137
137
|
"access": "public"
|
|
138
138
|
},
|
|
139
|
-
"build":
|
|
139
|
+
"build": 80
|
|
140
140
|
}
|