@neutron.co.id/operasional-interfaces 1.11.2 → 1.11.3
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/@package/components/attendance/attendance.types.d.ts +1 -1
- package/build/@package/components/checkIn/checkIn.types.d.ts +1 -1
- package/build/@package/components/checkIn/sheets/CheckInScanner.vue.d.ts +1 -1
- package/build/@package/components/progress/progress.types.d.ts +1 -1
- package/build/@package/components/responsibility/responsibility.types.d.ts +1 -1
- package/build/@package/components/staff/staff.types.d.ts +1 -1
- package/build/index.cjs +953 -558
- package/build/index.mjs +953 -558
- package/build/module.json +1 -1
- package/build/nuxt.json +1 -1
- package/build/nuxt.mjs +9 -5
- package/build/style.css +27 -27
- package/package.json +48 -48
package/build/module.json
CHANGED
package/build/nuxt.json
CHANGED
package/build/nuxt.mjs
CHANGED
|
@@ -37,11 +37,8 @@ const useComponents = async () => {
|
|
|
37
37
|
}
|
|
38
38
|
};
|
|
39
39
|
|
|
40
|
-
function isObject(value) {
|
|
41
|
-
return value !== null && typeof value === "object";
|
|
42
|
-
}
|
|
43
40
|
function _defu(baseObject, defaults, namespace = ".", merger) {
|
|
44
|
-
if (!
|
|
41
|
+
if (!_isPlainObject(defaults)) {
|
|
45
42
|
return _defu(baseObject, {}, namespace, merger);
|
|
46
43
|
}
|
|
47
44
|
const object = Object.assign({}, defaults);
|
|
@@ -58,7 +55,7 @@ function _defu(baseObject, defaults, namespace = ".", merger) {
|
|
|
58
55
|
}
|
|
59
56
|
if (Array.isArray(value) && Array.isArray(object[key])) {
|
|
60
57
|
object[key] = [...value, ...object[key]];
|
|
61
|
-
} else if (
|
|
58
|
+
} else if (_isPlainObject(value) && _isPlainObject(object[key])) {
|
|
62
59
|
object[key] = _defu(
|
|
63
60
|
value,
|
|
64
61
|
object[key],
|
|
@@ -71,6 +68,13 @@ function _defu(baseObject, defaults, namespace = ".", merger) {
|
|
|
71
68
|
}
|
|
72
69
|
return object;
|
|
73
70
|
}
|
|
71
|
+
function _isPlainObject(value) {
|
|
72
|
+
if (value === null || typeof value !== "object") {
|
|
73
|
+
return false;
|
|
74
|
+
}
|
|
75
|
+
const prototype = Object.getPrototypeOf(value);
|
|
76
|
+
return (prototype === null || prototype === Object.prototype || Object.getPrototypeOf(prototype) === null) && !(Symbol.toStringTag in value) && !(Symbol.iterator in value);
|
|
77
|
+
}
|
|
74
78
|
function createDefu(merger) {
|
|
75
79
|
return (...arguments_) => (
|
|
76
80
|
// eslint-disable-next-line unicorn/no-array-reduce
|
package/build/style.css
CHANGED
|
@@ -65,31 +65,31 @@
|
|
|
65
65
|
display: none
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
.neu-attendance-single[data-v-
|
|
68
|
+
.neu-attendance-single[data-v-4da92bf5] {
|
|
69
69
|
display: block
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
.neu-attendance-single[data-v-
|
|
72
|
+
.neu-attendance-single[data-v-7fdc9043] {
|
|
73
73
|
display: block
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
.neu-attendance-single[data-v-
|
|
76
|
+
.neu-attendance-single[data-v-d541d5ab] {
|
|
77
77
|
display: block
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
.neu-attendance-single[data-v-
|
|
80
|
+
.neu-attendance-single[data-v-8eefa083] {
|
|
81
81
|
display: block
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
#view-checkIns[data-v-
|
|
84
|
+
#view-checkIns[data-v-3c4aa352] {
|
|
85
85
|
|
|
86
86
|
height: 100%
|
|
87
87
|
}
|
|
88
|
-
#view-checkIns .wrapper[data-v-
|
|
88
|
+
#view-checkIns .wrapper[data-v-3c4aa352] {
|
|
89
89
|
|
|
90
90
|
height: 100%
|
|
91
91
|
}
|
|
92
|
-
#view-checkIns .header[data-v-
|
|
92
|
+
#view-checkIns .header[data-v-3c4aa352] {
|
|
93
93
|
|
|
94
94
|
display: flex;
|
|
95
95
|
|
|
@@ -105,15 +105,15 @@
|
|
|
105
105
|
|
|
106
106
|
padding-bottom: 0.5rem
|
|
107
107
|
}
|
|
108
|
-
#view-checkIns .header .start[data-v-
|
|
108
|
+
#view-checkIns .header .start[data-v-3c4aa352] {
|
|
109
109
|
|
|
110
110
|
line-height: 1.25
|
|
111
111
|
}
|
|
112
|
-
#view-checkIns .header .title[data-v-
|
|
112
|
+
#view-checkIns .header .title[data-v-3c4aa352] {
|
|
113
113
|
|
|
114
114
|
font-weight: 700
|
|
115
115
|
}
|
|
116
|
-
#view-checkIns .header .description[data-v-
|
|
116
|
+
#view-checkIns .header .description[data-v-3c4aa352] {
|
|
117
117
|
|
|
118
118
|
font-size: 0.875rem;
|
|
119
119
|
|
|
@@ -121,13 +121,13 @@
|
|
|
121
121
|
|
|
122
122
|
color: rgb(161 161 170 / var(--tw-text-opacity))
|
|
123
123
|
}
|
|
124
|
-
#view-checkIns .buttons[data-v-
|
|
124
|
+
#view-checkIns .buttons[data-v-3c4aa352] {
|
|
125
125
|
|
|
126
126
|
display: flex;
|
|
127
127
|
|
|
128
128
|
align-items: center
|
|
129
129
|
}
|
|
130
|
-
#view-checkIns .buttons[data-v-
|
|
130
|
+
#view-checkIns .buttons[data-v-3c4aa352] > :not([hidden]) ~ :not([hidden]) {
|
|
131
131
|
|
|
132
132
|
--tw-space-x-reverse: 0;
|
|
133
133
|
|
|
@@ -135,11 +135,11 @@
|
|
|
135
135
|
|
|
136
136
|
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)))
|
|
137
137
|
}
|
|
138
|
-
#view-checkIns .buttons[data-v-
|
|
138
|
+
#view-checkIns .buttons[data-v-3c4aa352] {
|
|
139
139
|
|
|
140
140
|
padding-right: 0.25rem
|
|
141
141
|
}
|
|
142
|
-
#view-checkIns .summary[data-v-
|
|
142
|
+
#view-checkIns .summary[data-v-3c4aa352] {
|
|
143
143
|
|
|
144
144
|
padding-bottom: 0.5rem
|
|
145
145
|
}
|
|
@@ -247,11 +247,11 @@
|
|
|
247
247
|
--neon-calendar-min-height: auto;
|
|
248
248
|
}
|
|
249
249
|
|
|
250
|
-
.neu-progress-single[data-v-
|
|
250
|
+
.neu-progress-single[data-v-ba369d9e] {
|
|
251
251
|
|
|
252
252
|
position: relative
|
|
253
253
|
}
|
|
254
|
-
.neu-progress-single .segments[data-v-
|
|
254
|
+
.neu-progress-single .segments[data-v-ba369d9e] {
|
|
255
255
|
|
|
256
256
|
display: flex;
|
|
257
257
|
|
|
@@ -268,11 +268,11 @@
|
|
|
268
268
|
background-color: rgb(250 250 250 / var(--tw-bg-opacity))
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
-
.neu-progress-single[data-v-
|
|
271
|
+
.neu-progress-single[data-v-0c5dc3d7] {
|
|
272
272
|
display: block
|
|
273
273
|
}
|
|
274
274
|
|
|
275
|
-
.neu-progress-single[data-v-
|
|
275
|
+
.neu-progress-single[data-v-84ac6152] {
|
|
276
276
|
display: block
|
|
277
277
|
}
|
|
278
278
|
|
|
@@ -305,15 +305,15 @@
|
|
|
305
305
|
display: block
|
|
306
306
|
}
|
|
307
307
|
|
|
308
|
-
.neu-responsibility-single[data-v-
|
|
308
|
+
.neu-responsibility-single[data-v-5c8b04ca] {
|
|
309
309
|
display: block
|
|
310
310
|
}
|
|
311
311
|
|
|
312
|
-
.neu-responsibility-single[data-v-
|
|
312
|
+
.neu-responsibility-single[data-v-6c8c000f] {
|
|
313
313
|
display: block
|
|
314
314
|
}
|
|
315
315
|
|
|
316
|
-
.neu-responsibility-single[data-v-
|
|
316
|
+
.neu-responsibility-single[data-v-291d61f5] {
|
|
317
317
|
display: block
|
|
318
318
|
}
|
|
319
319
|
|
|
@@ -321,11 +321,11 @@
|
|
|
321
321
|
display: block
|
|
322
322
|
}
|
|
323
323
|
|
|
324
|
-
.neu-staff-single[data-v-
|
|
324
|
+
.neu-staff-single[data-v-be2a1aa4] {
|
|
325
325
|
display: block
|
|
326
326
|
}
|
|
327
327
|
|
|
328
|
-
.neu-staff-single[data-v-
|
|
328
|
+
.neu-staff-single[data-v-759338da] {
|
|
329
329
|
display: block
|
|
330
330
|
}
|
|
331
331
|
|
|
@@ -333,7 +333,7 @@
|
|
|
333
333
|
display: block
|
|
334
334
|
}
|
|
335
335
|
|
|
336
|
-
.neu-submission-single[data-v-
|
|
336
|
+
.neu-submission-single[data-v-6cccc9bb] {
|
|
337
337
|
display: block
|
|
338
338
|
}
|
|
339
339
|
|
|
@@ -341,15 +341,15 @@
|
|
|
341
341
|
display: block
|
|
342
342
|
}
|
|
343
343
|
|
|
344
|
-
.neu-submission-single[data-v-
|
|
344
|
+
.neu-submission-single[data-v-7e1af8a3] {
|
|
345
345
|
display: block
|
|
346
346
|
}
|
|
347
347
|
|
|
348
|
-
.neu-submission-single[data-v-
|
|
348
|
+
.neu-submission-single[data-v-68341f72] {
|
|
349
349
|
display: block
|
|
350
350
|
}
|
|
351
351
|
|
|
352
|
-
.neu-submission-single[data-v-
|
|
352
|
+
.neu-submission-single[data-v-60c09582] {
|
|
353
353
|
display: block
|
|
354
354
|
}
|
|
355
355
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neutron.co.id/operasional-interfaces",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.3",
|
|
4
4
|
"description": "Interface library of Neutron Operasional.",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css"
|
|
@@ -63,40 +63,40 @@
|
|
|
63
63
|
"warm": "neon-module-build prepare"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@neon.id/canvas": "^1.
|
|
66
|
+
"@neon.id/canvas": "^1.26.0",
|
|
67
67
|
"@neon.id/catat-interfaces": "^1.10.0",
|
|
68
|
-
"@neon.id/context": "^1.
|
|
69
|
-
"@neon.id/field": "^1.
|
|
68
|
+
"@neon.id/context": "^1.23.0",
|
|
69
|
+
"@neon.id/field": "^1.17.0",
|
|
70
70
|
"@neon.id/identitas-interfaces": "^1.2.0",
|
|
71
71
|
"@neon.id/identitas-models": "1.0.0",
|
|
72
|
-
"@neon.id/interfaces": "^1.
|
|
73
|
-
"@neon.id/model": "^1.
|
|
74
|
-
"@neon.id/nuxt": "^0.
|
|
75
|
-
"@neon.id/office": "^1.
|
|
76
|
-
"@neon.id/utils": "^1.
|
|
77
|
-
"@neutron.co.id/personalia-models": "^1.10.2
|
|
78
|
-
"@nuxt/kit": "^3.
|
|
72
|
+
"@neon.id/interfaces": "^1.25.0",
|
|
73
|
+
"@neon.id/model": "^1.9.0",
|
|
74
|
+
"@neon.id/nuxt": "^1.0.0",
|
|
75
|
+
"@neon.id/office": "^1.21.0",
|
|
76
|
+
"@neon.id/utils": "^1.27.0",
|
|
77
|
+
"@neutron.co.id/personalia-models": "^1.10.2",
|
|
78
|
+
"@nuxt/kit": "^3.8.1",
|
|
79
79
|
"file-saver": "^2.0.5",
|
|
80
80
|
"qr-scanner": "^1.4.2",
|
|
81
81
|
"qrcode": "^1.5.3",
|
|
82
|
-
"vue": "^3.3.
|
|
82
|
+
"vue": "^3.3.8"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@faker-js/faker": "8.
|
|
86
|
-
"@neon.id/cli": "0.
|
|
87
|
-
"@neon.id/module-builder": "1.
|
|
88
|
-
"@neon.id/story": "0.
|
|
89
|
-
"@neon.id/styles": "1.
|
|
90
|
-
"@neon.id/types": "1.
|
|
85
|
+
"@faker-js/faker": "8.2.0",
|
|
86
|
+
"@neon.id/cli": "0.13.0",
|
|
87
|
+
"@neon.id/module-builder": "1.3.0",
|
|
88
|
+
"@neon.id/story": "0.11.0",
|
|
89
|
+
"@neon.id/styles": "1.6.0",
|
|
90
|
+
"@neon.id/types": "1.61.0",
|
|
91
91
|
"@nuxtjs/eslint-config-typescript": "12.1.0",
|
|
92
92
|
"@nuxtjs/eslint-module": "4.1.0",
|
|
93
|
-
"@nuxtjs/tailwindcss": "6.
|
|
94
|
-
"@pinia/nuxt": "0.
|
|
95
|
-
"@types/file-saver": "2.0.
|
|
96
|
-
"@types/react": "18.2.
|
|
97
|
-
"@types/react-dom": "18.2.
|
|
98
|
-
"@typescript-eslint/eslint-plugin": "6.
|
|
99
|
-
"@typescript-eslint/parser": "6.
|
|
93
|
+
"@nuxtjs/tailwindcss": "6.9.4",
|
|
94
|
+
"@pinia/nuxt": "0.5.1",
|
|
95
|
+
"@types/file-saver": "2.0.7",
|
|
96
|
+
"@types/react": "18.2.37",
|
|
97
|
+
"@types/react-dom": "18.2.15",
|
|
98
|
+
"@typescript-eslint/eslint-plugin": "6.10.0",
|
|
99
|
+
"@typescript-eslint/parser": "6.10.0",
|
|
100
100
|
"@vitejs/plugin-vue": "4.4.0",
|
|
101
101
|
"@vue/eslint-config-prettier": "8.0.0",
|
|
102
102
|
"@vue/eslint-config-typescript": "12.0.0",
|
|
@@ -105,16 +105,16 @@
|
|
|
105
105
|
"@vueuse/nuxt": "10.5.0",
|
|
106
106
|
"autoprefixer": "10.4.16",
|
|
107
107
|
"buffer": "6.0.3",
|
|
108
|
-
"chromatic": "7.
|
|
109
|
-
"concurrently": "^8.2.
|
|
110
|
-
"defu": "6.1.
|
|
111
|
-
"eslint": "8.
|
|
108
|
+
"chromatic": "7.6.0",
|
|
109
|
+
"concurrently": "^8.2.2",
|
|
110
|
+
"defu": "6.1.3",
|
|
111
|
+
"eslint": "8.53.0",
|
|
112
112
|
"eslint-plugin-nuxt": "4.0.0",
|
|
113
113
|
"eslint-plugin-prettier": "5.0.1",
|
|
114
114
|
"eslint-plugin-storybook": "0.6.15",
|
|
115
|
-
"eslint-plugin-vue": "9.
|
|
116
|
-
"nuxt": "3.
|
|
117
|
-
"pinia": "2.1.
|
|
115
|
+
"eslint-plugin-vue": "9.18.1",
|
|
116
|
+
"nuxt": "3.8.1",
|
|
117
|
+
"pinia": "2.1.7",
|
|
118
118
|
"postcss": "8.4.31",
|
|
119
119
|
"postcss-custom-properties": "13.3.2",
|
|
120
120
|
"postcss-import": "15.1.0",
|
|
@@ -122,37 +122,37 @@
|
|
|
122
122
|
"react": "18.2.0",
|
|
123
123
|
"react-dom": "18.2.0",
|
|
124
124
|
"rollup-plugin-visualizer": "5.9.2",
|
|
125
|
-
"storybook": "7.
|
|
126
|
-
"tailwindcss": "3.3.
|
|
125
|
+
"storybook": "7.5.3",
|
|
126
|
+
"tailwindcss": "3.3.5",
|
|
127
127
|
"tsc-alias": "1.8.8",
|
|
128
|
-
"tsx": "3.
|
|
128
|
+
"tsx": "3.14.0",
|
|
129
129
|
"typescript": "5.2.2",
|
|
130
|
-
"vite": "4.
|
|
130
|
+
"vite": "4.5.0",
|
|
131
131
|
"vitest": "0.34.6",
|
|
132
132
|
"vue-router": "4.2.5",
|
|
133
133
|
"vue-tsc": "1.8.19"
|
|
134
134
|
},
|
|
135
135
|
"peerDependencies": {
|
|
136
|
-
"@neon.id/canvas": "^1.
|
|
136
|
+
"@neon.id/canvas": "^1.26.0",
|
|
137
137
|
"@neon.id/catat-interfaces": "^1.10.0",
|
|
138
|
-
"@neon.id/context": "^1.
|
|
139
|
-
"@neon.id/field": "^1.
|
|
138
|
+
"@neon.id/context": "^1.23.0",
|
|
139
|
+
"@neon.id/field": "^1.17.0",
|
|
140
140
|
"@neon.id/identitas-interfaces": "^1.2.0",
|
|
141
141
|
"@neon.id/identitas-models": "1.0.0",
|
|
142
|
-
"@neon.id/interfaces": "^1.
|
|
143
|
-
"@neon.id/model": "^1.
|
|
144
|
-
"@neon.id/nuxt": "^0.
|
|
145
|
-
"@neon.id/office": "^1.
|
|
146
|
-
"@neon.id/utils": "^1.
|
|
147
|
-
"@neutron.co.id/personalia-models": "^1.10.2
|
|
148
|
-
"@nuxt/kit": "^3.
|
|
142
|
+
"@neon.id/interfaces": "^1.25.0",
|
|
143
|
+
"@neon.id/model": "^1.9.0",
|
|
144
|
+
"@neon.id/nuxt": "^1.0.0",
|
|
145
|
+
"@neon.id/office": "^1.21.0",
|
|
146
|
+
"@neon.id/utils": "^1.27.0",
|
|
147
|
+
"@neutron.co.id/personalia-models": "^1.10.2",
|
|
148
|
+
"@nuxt/kit": "^3.8.1",
|
|
149
149
|
"file-saver": "^2.0.5",
|
|
150
150
|
"qr-scanner": "^1.4.2",
|
|
151
151
|
"qrcode": "^1.5.3",
|
|
152
|
-
"vue": "^3.3.
|
|
152
|
+
"vue": "^3.3.8"
|
|
153
153
|
},
|
|
154
154
|
"publishConfig": {
|
|
155
155
|
"access": "public"
|
|
156
156
|
},
|
|
157
|
-
"build":
|
|
157
|
+
"build": 134
|
|
158
158
|
}
|