@neutron.co.id/operasional-interfaces 1.9.7 → 1.11.0
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/README.md +2 -2
- package/build/@mock/index.d.ts +1 -0
- package/build/@package/components/checkIn/checkIn.types.d.ts +1 -1
- package/build/@package/components/checkIn/sheets/CheckInScanner.vue.d.ts +6 -1
- package/build/@package/components/common/NeonTime/NeonTime.vue.d.ts +4 -2
- package/build/@package/components/common/OperasionalIdentitas/OperasionalIdentitas.vue.d.ts +7 -8
- 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/@package/components/task/task.types.d.ts +1 -1
- package/build/@package/providers/operasional/operasional.types.d.ts +1 -1
- package/build/index.cjs +13586 -775
- package/build/index.mjs +13583 -772
- package/build/mock/index.cjs +1 -0
- package/build/mock/index.mjs +1 -0
- package/build/module.json +8 -0
- package/build/nuxt.d.mts +23 -0
- package/build/nuxt.d.ts +12 -11
- package/build/nuxt.json +1 -1
- package/build/nuxt.mjs +54 -35
- package/build/runtime/plugin.mjs +1 -1
- package/build/style.css +19 -19
- package/build/types.d.mts +18 -0
- package/build/types.d.ts +2 -6
- package/package.json +82 -71
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/build/nuxt.d.mts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
|
+
|
|
3
|
+
interface TOptions {
|
|
4
|
+
env?: string;
|
|
5
|
+
isDebug?: boolean;
|
|
6
|
+
}
|
|
7
|
+
interface TConfig {
|
|
8
|
+
isProd: boolean;
|
|
9
|
+
env: string;
|
|
10
|
+
isDebug: boolean;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
interface ModuleRuntimeConfig {
|
|
14
|
+
'neu:operasional:interfaces': TConfig;
|
|
15
|
+
}
|
|
16
|
+
interface ModulePublicRuntimeConfig {
|
|
17
|
+
'neu:operasional:interfaces': TConfig;
|
|
18
|
+
}
|
|
19
|
+
interface ModuleHooks {
|
|
20
|
+
}
|
|
21
|
+
declare const _default: _nuxt_schema.NuxtModule<TOptions>;
|
|
22
|
+
|
|
23
|
+
export { type ModuleHooks, type ModulePublicRuntimeConfig, type ModuleRuntimeConfig, _default as default };
|
package/build/nuxt.d.ts
CHANGED
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
2
|
|
|
3
|
-
interface
|
|
3
|
+
interface TOptions {
|
|
4
4
|
env?: string;
|
|
5
|
-
|
|
5
|
+
isDebug?: boolean;
|
|
6
6
|
}
|
|
7
|
-
interface
|
|
8
|
-
}
|
|
9
|
-
interface ModuleConfig {
|
|
10
|
-
env: string;
|
|
7
|
+
interface TConfig {
|
|
11
8
|
isProd: boolean;
|
|
12
|
-
|
|
9
|
+
env: string;
|
|
10
|
+
isDebug: boolean;
|
|
13
11
|
}
|
|
12
|
+
|
|
14
13
|
interface ModuleRuntimeConfig {
|
|
15
|
-
'neu:operasional:interfaces':
|
|
14
|
+
'neu:operasional:interfaces': TConfig;
|
|
16
15
|
}
|
|
17
16
|
interface ModulePublicRuntimeConfig {
|
|
18
|
-
'neu:operasional:interfaces':
|
|
17
|
+
'neu:operasional:interfaces': TConfig;
|
|
18
|
+
}
|
|
19
|
+
interface ModuleHooks {
|
|
19
20
|
}
|
|
20
|
-
declare const _default: _nuxt_schema.NuxtModule<
|
|
21
|
+
declare const _default: _nuxt_schema.NuxtModule<TOptions>;
|
|
21
22
|
|
|
22
|
-
export { ModuleHooks,
|
|
23
|
+
export { type ModuleHooks, type ModulePublicRuntimeConfig, type ModuleRuntimeConfig, _default as default };
|
package/build/nuxt.json
CHANGED
package/build/nuxt.mjs
CHANGED
|
@@ -1,9 +1,34 @@
|
|
|
1
|
-
import { addComponent, useNuxt,
|
|
1
|
+
import { createResolver, addComponent, useNuxt, addImports, defineNuxtModule, addPlugin } from '@nuxt/kit';
|
|
2
|
+
import { Build, Style } from '@neon.id/nuxt';
|
|
2
3
|
|
|
3
|
-
const
|
|
4
|
+
const useBuild = () => {
|
|
5
|
+
const resolver = createResolver(import.meta.url);
|
|
6
|
+
const runtime = resolver.resolve("./runtime");
|
|
7
|
+
Build.config({
|
|
8
|
+
transpile: [
|
|
9
|
+
runtime,
|
|
10
|
+
"@neon.id/interfaces",
|
|
11
|
+
"@neon.id/operasional-interfaces"
|
|
12
|
+
],
|
|
13
|
+
dedupe: [],
|
|
14
|
+
alias: {},
|
|
15
|
+
include: [],
|
|
16
|
+
exclude: []
|
|
17
|
+
});
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
const components = {
|
|
21
|
+
common: [],
|
|
22
|
+
features: ["OperasionalIdentitas"],
|
|
23
|
+
models: []
|
|
24
|
+
};
|
|
4
25
|
|
|
5
26
|
const useComponents = async () => {
|
|
6
|
-
for (const name of
|
|
27
|
+
for (const name of [
|
|
28
|
+
...components.common,
|
|
29
|
+
...components.features,
|
|
30
|
+
...components.models
|
|
31
|
+
]) {
|
|
7
32
|
await addComponent({
|
|
8
33
|
name,
|
|
9
34
|
export: name,
|
|
@@ -56,37 +81,33 @@ const defu = createDefu();
|
|
|
56
81
|
|
|
57
82
|
function useConfig(options) {
|
|
58
83
|
const nuxt = useNuxt();
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
useDebug: options.useDebug
|
|
66
|
-
};
|
|
84
|
+
const env = options.env || process.env.APP_ENVIRONMENT || "test";
|
|
85
|
+
const config = defu(options, {
|
|
86
|
+
env,
|
|
87
|
+
isProd: env === "prod",
|
|
88
|
+
isDebug: false
|
|
89
|
+
});
|
|
67
90
|
const key = "neu:operasional:interfaces";
|
|
68
|
-
nuxt.options.runtimeConfig[key] =
|
|
69
|
-
|
|
70
|
-
defaultConfig
|
|
71
|
-
);
|
|
72
|
-
nuxt.options.runtimeConfig.public[key] = defu(
|
|
73
|
-
nuxt.options.runtimeConfig.public[key],
|
|
74
|
-
defaultConfig
|
|
75
|
-
);
|
|
91
|
+
nuxt.options.runtimeConfig[key] = config;
|
|
92
|
+
nuxt.options.runtimeConfig.public[key] = config;
|
|
76
93
|
}
|
|
77
94
|
|
|
78
|
-
const
|
|
79
|
-
const
|
|
80
|
-
|
|
95
|
+
const useImports = () => {
|
|
96
|
+
const providers = [];
|
|
97
|
+
addImports(
|
|
98
|
+
providers.map((item) => ({
|
|
99
|
+
from: `@neutron.co.id/operasional-interfaces`,
|
|
100
|
+
name: item,
|
|
101
|
+
as: item
|
|
102
|
+
}))
|
|
103
|
+
);
|
|
81
104
|
};
|
|
82
105
|
|
|
83
|
-
const
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
nuxt.options.build.transpile.push("@neon.id/interfaces");
|
|
89
|
-
nuxt.options.build.transpile.push("@neutron.co.id/operasional-interfaces");
|
|
106
|
+
const useStyles = () => {
|
|
107
|
+
Style.config({
|
|
108
|
+
content: [],
|
|
109
|
+
css: [`@neutron.co.id/operasional-interfaces/style.css`]
|
|
110
|
+
});
|
|
90
111
|
};
|
|
91
112
|
|
|
92
113
|
const nuxt = defineNuxtModule({
|
|
@@ -95,19 +116,17 @@ const nuxt = defineNuxtModule({
|
|
|
95
116
|
configKey: "neu:operasional:interfaces",
|
|
96
117
|
compatibility: { nuxt: "^3.0.0" }
|
|
97
118
|
},
|
|
98
|
-
defaults: {
|
|
99
|
-
env: process.env.APP_ENVIRONMENT,
|
|
100
|
-
useDebug: false
|
|
101
|
-
},
|
|
119
|
+
defaults: {},
|
|
102
120
|
hooks: {},
|
|
103
|
-
async setup(options
|
|
121
|
+
async setup(options) {
|
|
104
122
|
useConfig(options);
|
|
105
123
|
const resolver = createResolver(import.meta.url);
|
|
106
124
|
const plugin = resolver.resolve("./runtime/plugin");
|
|
107
125
|
addPlugin(plugin);
|
|
126
|
+
useImports();
|
|
108
127
|
useStyles();
|
|
109
128
|
await useComponents();
|
|
110
|
-
|
|
129
|
+
useBuild();
|
|
111
130
|
}
|
|
112
131
|
});
|
|
113
132
|
|
package/build/runtime/plugin.mjs
CHANGED
package/build/style.css
CHANGED
|
@@ -81,15 +81,15 @@
|
|
|
81
81
|
display: block
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
#view-checkIns[data-v-
|
|
84
|
+
#view-checkIns[data-v-094d5b21] {
|
|
85
85
|
|
|
86
86
|
height: 100%
|
|
87
87
|
}
|
|
88
|
-
#view-checkIns .wrapper[data-v-
|
|
88
|
+
#view-checkIns .wrapper[data-v-094d5b21] {
|
|
89
89
|
|
|
90
90
|
height: 100%
|
|
91
91
|
}
|
|
92
|
-
#view-checkIns .header[data-v-
|
|
92
|
+
#view-checkIns .header[data-v-094d5b21] {
|
|
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-094d5b21] {
|
|
109
109
|
|
|
110
110
|
line-height: 1.25
|
|
111
111
|
}
|
|
112
|
-
#view-checkIns .header .title[data-v-
|
|
112
|
+
#view-checkIns .header .title[data-v-094d5b21] {
|
|
113
113
|
|
|
114
114
|
font-weight: 700
|
|
115
115
|
}
|
|
116
|
-
#view-checkIns .header .description[data-v-
|
|
116
|
+
#view-checkIns .header .description[data-v-094d5b21] {
|
|
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-094d5b21] {
|
|
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-094d5b21] > :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-094d5b21] {
|
|
139
139
|
|
|
140
140
|
padding-right: 0.25rem
|
|
141
141
|
}
|
|
142
|
-
#view-checkIns .summary[data-v-
|
|
142
|
+
#view-checkIns .summary[data-v-094d5b21] {
|
|
143
143
|
|
|
144
144
|
padding-bottom: 0.5rem
|
|
145
145
|
}
|
|
@@ -227,7 +227,7 @@
|
|
|
227
227
|
display: block
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
.operasional-identitas .section .divider[data-v-
|
|
230
|
+
.operasional-identitas .section .divider[data-v-e6073495] {
|
|
231
231
|
margin-bottom: 1rem
|
|
232
232
|
}
|
|
233
233
|
|
|
@@ -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-71539dd3] {
|
|
251
251
|
|
|
252
252
|
position: relative
|
|
253
253
|
}
|
|
254
|
-
.neu-progress-single .segments[data-v-
|
|
254
|
+
.neu-progress-single .segments[data-v-71539dd3] {
|
|
255
255
|
|
|
256
256
|
display: flex;
|
|
257
257
|
|
|
@@ -321,11 +321,11 @@
|
|
|
321
321
|
display: block
|
|
322
322
|
}
|
|
323
323
|
|
|
324
|
-
.neu-staff-single[data-v-
|
|
324
|
+
.neu-staff-single[data-v-9b47f55c] {
|
|
325
325
|
display: block
|
|
326
326
|
}
|
|
327
327
|
|
|
328
|
-
.neu-staff-single[data-v-
|
|
328
|
+
.neu-staff-single[data-v-c1a371ec] {
|
|
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-21c19bac] {
|
|
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-c6a38aff] {
|
|
345
345
|
display: block
|
|
346
346
|
}
|
|
347
347
|
|
|
348
|
-
.neu-submission-single[data-v-
|
|
348
|
+
.neu-submission-single[data-v-eb7ec311] {
|
|
349
349
|
display: block
|
|
350
350
|
}
|
|
351
351
|
|
|
352
|
-
.neu-submission-single[data-v-
|
|
352
|
+
.neu-submission-single[data-v-1c4b359e] {
|
|
353
353
|
display: block
|
|
354
354
|
}
|
|
355
355
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
import { ModuleHooks, ModuleRuntimeConfig, ModulePublicRuntimeConfig } from './nuxt'
|
|
3
|
+
|
|
4
|
+
declare module '@nuxt/schema' {
|
|
5
|
+
interface NuxtHooks extends ModuleHooks {}
|
|
6
|
+
interface RuntimeConfig extends ModuleRuntimeConfig {}
|
|
7
|
+
interface PublicRuntimeConfig extends ModulePublicRuntimeConfig {}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
declare module 'nuxt/schema' {
|
|
11
|
+
interface NuxtHooks extends ModuleHooks {}
|
|
12
|
+
interface RuntimeConfig extends ModuleRuntimeConfig {}
|
|
13
|
+
interface PublicRuntimeConfig extends ModulePublicRuntimeConfig {}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
export { ModuleHooks, ModulePublicRuntimeConfig, ModuleRuntimeConfig, default } from './nuxt'
|
package/build/types.d.ts
CHANGED
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
import {
|
|
2
|
+
import { ModuleHooks, ModuleRuntimeConfig, ModulePublicRuntimeConfig } from './nuxt'
|
|
3
3
|
|
|
4
4
|
declare module '@nuxt/schema' {
|
|
5
|
-
interface NuxtConfig { ['neu:operasional:interfaces']?: Partial<ModuleOptions> }
|
|
6
|
-
interface NuxtOptions { ['neu:operasional:interfaces']?: ModuleOptions }
|
|
7
5
|
interface NuxtHooks extends ModuleHooks {}
|
|
8
6
|
interface RuntimeConfig extends ModuleRuntimeConfig {}
|
|
9
7
|
interface PublicRuntimeConfig extends ModulePublicRuntimeConfig {}
|
|
10
8
|
}
|
|
11
9
|
|
|
12
10
|
declare module 'nuxt/schema' {
|
|
13
|
-
interface NuxtConfig { ['neu:operasional:interfaces']?: Partial<ModuleOptions> }
|
|
14
|
-
interface NuxtOptions { ['neu:operasional:interfaces']?: ModuleOptions }
|
|
15
11
|
interface NuxtHooks extends ModuleHooks {}
|
|
16
12
|
interface RuntimeConfig extends ModuleRuntimeConfig {}
|
|
17
13
|
interface PublicRuntimeConfig extends ModulePublicRuntimeConfig {}
|
|
@@ -19,4 +15,4 @@ declare module 'nuxt/schema' {
|
|
|
19
15
|
|
|
20
16
|
|
|
21
17
|
|
|
22
|
-
export { ModuleHooks,
|
|
18
|
+
export { ModuleHooks, ModulePublicRuntimeConfig, ModuleRuntimeConfig, default } from './nuxt'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neutron.co.id/operasional-interfaces",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "Interface library of Neutron Operasional.",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css"
|
|
@@ -19,7 +19,13 @@
|
|
|
19
19
|
"types": "./build/types.d.ts",
|
|
20
20
|
"import": "./build/nuxt.mjs",
|
|
21
21
|
"require": "./build/nuxt.cjs"
|
|
22
|
-
}
|
|
22
|
+
},
|
|
23
|
+
"./mock": {
|
|
24
|
+
"types": "./build/@mock/index.d.ts",
|
|
25
|
+
"import": "./build/mock/index.mjs",
|
|
26
|
+
"require": "./build/mock/index.cjs"
|
|
27
|
+
},
|
|
28
|
+
"./*": "./*"
|
|
23
29
|
},
|
|
24
30
|
"main": "./build/index.cjs",
|
|
25
31
|
"module": "build/index.mjs",
|
|
@@ -31,6 +37,9 @@
|
|
|
31
37
|
],
|
|
32
38
|
"nuxt": [
|
|
33
39
|
"./build/types.d.ts"
|
|
40
|
+
],
|
|
41
|
+
"mock": [
|
|
42
|
+
"./build/@mock/index.d.ts"
|
|
34
43
|
]
|
|
35
44
|
}
|
|
36
45
|
},
|
|
@@ -38,110 +47,112 @@
|
|
|
38
47
|
"build"
|
|
39
48
|
],
|
|
40
49
|
"scripts": {
|
|
41
|
-
"build": "yarn
|
|
42
|
-
"build:
|
|
43
|
-
"build:
|
|
44
|
-
"build:story": "yarn warm && storybook build",
|
|
45
|
-
"build:types": "vue-tsc --project tsconfig.package.json && resolve-tspaths --project tsconfig.package.json",
|
|
50
|
+
"build": "yarn warm && tsx scripts/build.ts",
|
|
51
|
+
"build:story": "yarn warm && tailwindcss -i ./@docs/app.css -o ./@docs/tailwind.css && storybook build",
|
|
52
|
+
"build:types": "yarn warm && tsx scripts/build.types.ts",
|
|
46
53
|
"cargo": "cargo",
|
|
54
|
+
"chromatic": "yarn build:story",
|
|
47
55
|
"clean": "rm -rf dist build",
|
|
48
|
-
"deploy
|
|
49
|
-
"deploy:
|
|
50
|
-
"
|
|
56
|
+
"deploy": "cargo build:story && cargo deploy:pages && cargo deploy:story",
|
|
57
|
+
"deploy:pages": "cargo deploy:pages",
|
|
58
|
+
"deploy:story": "cargo deploy:story",
|
|
51
59
|
"play:story": "concurrently 'yarn:story:*'",
|
|
52
|
-
"reset": "rm -rf dist build .output && yarn warm",
|
|
60
|
+
"reset": "rm -rf dist build .nuxt .output && yarn warm",
|
|
53
61
|
"story:book": "storybook dev -p 6006 --no-open",
|
|
54
62
|
"story:tailwind": "tailwindcss -i ./@docs/app.css -o ./@docs/tailwind.css --watch",
|
|
55
63
|
"warm": "neon-module-build prepare"
|
|
56
64
|
},
|
|
57
65
|
"dependencies": {
|
|
58
|
-
"@neon.id/canvas": "^1.
|
|
59
|
-
"@neon.id/catat-interfaces": "1.
|
|
60
|
-
"@neon.id/context": "^1.
|
|
61
|
-
"@neon.id/field": "^1.
|
|
66
|
+
"@neon.id/canvas": "^1.24.0",
|
|
67
|
+
"@neon.id/catat-interfaces": "^1.10.0",
|
|
68
|
+
"@neon.id/context": "^1.18.0",
|
|
69
|
+
"@neon.id/field": "^1.12.0",
|
|
62
70
|
"@neon.id/identitas-interfaces": "^1.2.0",
|
|
63
71
|
"@neon.id/identitas-models": "1.0.0",
|
|
64
|
-
"@neon.id/interfaces": "^1.
|
|
65
|
-
"@neon.id/
|
|
66
|
-
"@neon.id/
|
|
67
|
-
"@
|
|
68
|
-
"@
|
|
72
|
+
"@neon.id/interfaces": "^1.21.0",
|
|
73
|
+
"@neon.id/model": "^1.8.0",
|
|
74
|
+
"@neon.id/nuxt": "^0.9.0",
|
|
75
|
+
"@neon.id/office": "^1.17.0",
|
|
76
|
+
"@neon.id/utils": "^1.19.0",
|
|
77
|
+
"@neutron.co.id/personalia-models": "^1.10.0",
|
|
78
|
+
"@nuxt/kit": "^3.7.4",
|
|
79
|
+
"file-saver": "^2.0.5",
|
|
69
80
|
"qr-scanner": "^1.4.2",
|
|
81
|
+
"qrcode": "^1.5.3",
|
|
70
82
|
"vue": "^3.3.4"
|
|
71
83
|
},
|
|
72
84
|
"devDependencies": {
|
|
73
|
-
"@faker-js/faker": "8.0
|
|
74
|
-
"@neon.id/cli": "0.
|
|
75
|
-
"@neon.id/module-builder": "
|
|
76
|
-
"@neon.id/
|
|
77
|
-
"@neon.id/
|
|
78
|
-
"@
|
|
85
|
+
"@faker-js/faker": "8.1.0",
|
|
86
|
+
"@neon.id/cli": "0.12.0",
|
|
87
|
+
"@neon.id/module-builder": "1.2.0",
|
|
88
|
+
"@neon.id/story": "0.10.0",
|
|
89
|
+
"@neon.id/styles": "1.5.0",
|
|
90
|
+
"@neon.id/types": "1.60.0",
|
|
91
|
+
"@nuxtjs/eslint-config-typescript": "12.1.0",
|
|
79
92
|
"@nuxtjs/eslint-module": "4.1.0",
|
|
80
93
|
"@nuxtjs/tailwindcss": "6.8.0",
|
|
81
94
|
"@pinia/nuxt": "0.4.11",
|
|
82
|
-
"@
|
|
83
|
-
"@
|
|
84
|
-
"@
|
|
85
|
-
"@
|
|
86
|
-
"@
|
|
87
|
-
"@
|
|
88
|
-
"@storybook/vue3-vite": "7.2.2",
|
|
89
|
-
"@types/humanize-duration": "^3.27.1",
|
|
90
|
-
"@types/react": "18.2.20",
|
|
91
|
-
"@types/react-dom": "18.2.7",
|
|
92
|
-
"@typescript-eslint/eslint-plugin": "6.3.0",
|
|
93
|
-
"@typescript-eslint/parser": "6.3.0",
|
|
94
|
-
"@vitejs/plugin-react": "4.0.4",
|
|
95
|
-
"@vitejs/plugin-vue": "4.2.3",
|
|
95
|
+
"@types/file-saver": "2.0.5",
|
|
96
|
+
"@types/react": "18.2.28",
|
|
97
|
+
"@types/react-dom": "18.2.13",
|
|
98
|
+
"@typescript-eslint/eslint-plugin": "6.7.5",
|
|
99
|
+
"@typescript-eslint/parser": "6.7.5",
|
|
100
|
+
"@vitejs/plugin-vue": "4.4.0",
|
|
96
101
|
"@vue/eslint-config-prettier": "8.0.0",
|
|
97
|
-
"@vue/eslint-config-typescript": "
|
|
98
|
-
"@vueuse/core": "10.
|
|
99
|
-
"@vueuse/head": "
|
|
100
|
-
"@vueuse/nuxt": "10.
|
|
101
|
-
"autoprefixer": "10.4.
|
|
102
|
+
"@vue/eslint-config-typescript": "12.0.0",
|
|
103
|
+
"@vueuse/core": "10.5.0",
|
|
104
|
+
"@vueuse/head": "2.0.0",
|
|
105
|
+
"@vueuse/nuxt": "10.5.0",
|
|
106
|
+
"autoprefixer": "10.4.16",
|
|
102
107
|
"buffer": "6.0.3",
|
|
103
|
-
"chromatic": "
|
|
108
|
+
"chromatic": "7.3.0",
|
|
109
|
+
"concurrently": "^8.2.1",
|
|
104
110
|
"defu": "6.1.2",
|
|
105
|
-
"eslint": "8.
|
|
111
|
+
"eslint": "8.51.0",
|
|
106
112
|
"eslint-plugin-nuxt": "4.0.0",
|
|
107
|
-
"eslint-plugin-prettier": "5.0.
|
|
108
|
-
"eslint-plugin-storybook": "0.6.
|
|
113
|
+
"eslint-plugin-prettier": "5.0.1",
|
|
114
|
+
"eslint-plugin-storybook": "0.6.15",
|
|
109
115
|
"eslint-plugin-vue": "9.17.0",
|
|
110
|
-
"nuxt": "3.
|
|
116
|
+
"nuxt": "3.7.4",
|
|
111
117
|
"pinia": "2.1.6",
|
|
112
|
-
"postcss": "8.4.
|
|
113
|
-
"postcss-custom-properties": "13.3.
|
|
118
|
+
"postcss": "8.4.31",
|
|
119
|
+
"postcss-custom-properties": "13.3.2",
|
|
114
120
|
"postcss-import": "15.1.0",
|
|
115
|
-
"prettier": "3.0.
|
|
121
|
+
"prettier": "3.0.3",
|
|
116
122
|
"react": "18.2.0",
|
|
117
123
|
"react-dom": "18.2.0",
|
|
118
|
-
"resolve-tspaths": "0.8.14",
|
|
119
124
|
"rollup-plugin-visualizer": "5.9.2",
|
|
120
|
-
"storybook": "7.
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
125
|
+
"storybook": "7.4.6",
|
|
126
|
+
"tailwindcss": "3.3.3",
|
|
127
|
+
"tsc-alias": "1.8.8",
|
|
128
|
+
"tsx": "3.13.0",
|
|
129
|
+
"typescript": "5.2.2",
|
|
130
|
+
"vite": "4.4.11",
|
|
131
|
+
"vitest": "0.34.6",
|
|
132
|
+
"vue-router": "4.2.5",
|
|
133
|
+
"vue-tsc": "1.8.19"
|
|
127
134
|
},
|
|
128
135
|
"peerDependencies": {
|
|
129
|
-
"@neon.id/canvas": "^1.
|
|
130
|
-
"@neon.id/catat-interfaces": "1.
|
|
131
|
-
"@neon.id/context": "^1.
|
|
132
|
-
"@neon.id/field": "^1.
|
|
136
|
+
"@neon.id/canvas": "^1.24.0",
|
|
137
|
+
"@neon.id/catat-interfaces": "^1.10.0",
|
|
138
|
+
"@neon.id/context": "^1.18.0",
|
|
139
|
+
"@neon.id/field": "^1.12.0",
|
|
133
140
|
"@neon.id/identitas-interfaces": "^1.2.0",
|
|
134
141
|
"@neon.id/identitas-models": "1.0.0",
|
|
135
|
-
"@neon.id/interfaces": "^1.
|
|
136
|
-
"@neon.id/
|
|
137
|
-
"@neon.id/
|
|
138
|
-
"@
|
|
139
|
-
"@
|
|
142
|
+
"@neon.id/interfaces": "^1.21.0",
|
|
143
|
+
"@neon.id/model": "^1.8.0",
|
|
144
|
+
"@neon.id/nuxt": "^0.9.0",
|
|
145
|
+
"@neon.id/office": "^1.17.0",
|
|
146
|
+
"@neon.id/utils": "^1.19.0",
|
|
147
|
+
"@neutron.co.id/personalia-models": "^1.10.0",
|
|
148
|
+
"@nuxt/kit": "^3.7.4",
|
|
149
|
+
"file-saver": "^2.0.5",
|
|
140
150
|
"qr-scanner": "^1.4.2",
|
|
151
|
+
"qrcode": "^1.5.3",
|
|
141
152
|
"vue": "^3.3.4"
|
|
142
153
|
},
|
|
143
154
|
"publishConfig": {
|
|
144
155
|
"access": "public"
|
|
145
156
|
},
|
|
146
|
-
"build":
|
|
157
|
+
"build": 130
|
|
147
158
|
}
|