@neutron.co.id/operasional-interfaces 1.6.6 → 1.6.8
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 +14186 -3243
- package/build/index.mjs +14187 -3244
- package/build/style.css +112 -10
- package/build/types/components/common/NeonTime/NeonTime.vue.d.ts +35 -0
- package/build/types/components/common/NeonTime/index.d.ts +1 -0
- package/build/types/components/common/index.d.ts +1 -0
- package/build/types/components/index.d.ts +6 -0
- package/build/types/components/plan/index.d.ts +2 -0
- package/build/types/components/plan/plan.types.d.ts +2 -0
- package/build/types/components/plan/sheets/PlanCollection.vue.d.ts +2 -0
- package/build/types/components/plan/sheets/PlanSingle.vue.d.ts +2 -0
- package/build/types/components/plan/sheets/PlanStaff.vue.d.ts +2 -0
- package/build/types/components/plan/sheets/index.d.ts +3 -0
- package/build/types/components/planType/index.d.ts +2 -0
- package/build/types/components/planType/planType.types.d.ts +2 -0
- package/build/types/components/planType/sheets/PlanTypeCollection.vue.d.ts +2 -0
- package/build/types/components/planType/sheets/PlanTypeSingle.vue.d.ts +2 -0
- package/build/types/components/planType/sheets/index.d.ts +2 -0
- package/build/types/components/progress/index.d.ts +2 -0
- package/build/types/components/progress/progress.types.d.ts +2 -0
- package/build/types/components/progress/sheets/ProgressCollection.vue.d.ts +2 -0
- package/build/types/components/progress/sheets/ProgressSingle.vue.d.ts +2 -0
- package/build/types/components/progress/sheets/index.d.ts +2 -0
- package/build/types/components/responsibility/index.d.ts +2 -0
- package/build/types/components/responsibility/responsibility.types.d.ts +2 -0
- package/build/types/components/responsibility/sheets/ResponsibilityCollection.vue.d.ts +2 -0
- package/build/types/components/responsibility/sheets/ResponsibilitySingle.vue.d.ts +2 -0
- package/build/types/components/responsibility/sheets/ResponsibilityStaff.vue.d.ts +2 -0
- package/build/types/components/responsibility/sheets/index.d.ts +3 -0
- package/build/types/components/responsibilityType/index.d.ts +2 -0
- package/build/types/components/responsibilityType/responsibilityType.types.d.ts +2 -0
- package/build/types/components/responsibilityType/sheets/ResponsibilityTypeCollection.vue.d.ts +2 -0
- package/build/types/components/responsibilityType/sheets/ResponsibilityTypeSingle.vue.d.ts +2 -0
- package/build/types/components/responsibilityType/sheets/index.d.ts +2 -0
- package/build/types/components/target/index.d.ts +2 -0
- package/build/types/components/target/sheets/TargetBranch.vue.d.ts +2 -0
- package/build/types/components/target/sheets/TargetCollection.vue.d.ts +2 -0
- package/build/types/components/target/sheets/TargetSingle.vue.d.ts +2 -0
- package/build/types/components/target/sheets/index.d.ts +3 -0
- package/build/types/components/target/target.types.d.ts +2 -0
- package/build/types/gql/graphql.d.ts +16455 -4290
- package/build/types/utils/index.d.ts +4 -1
- package/build/types/utils/util.date.d.ts +4 -0
- package/build/types/utils/util.duration.d.ts +8 -0
- package/build/types/utils/util.score.d.ts +5 -0
- package/build/types/utils/util.string.d.ts +5 -0
- package/package.json +3 -2
- package/build/types/utils/date/index.d.ts +0 -11
- package/build/types/utils/date/util.date.d.ts +0 -20
package/build/style.css
CHANGED
|
@@ -3,15 +3,81 @@
|
|
|
3
3
|
margin-bottom: 1rem
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
.input-loading[data-v-3cf0c9ae] {
|
|
7
|
+
position: relative;
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
10
|
+
border-radius: 0.75rem;
|
|
11
|
+
border-width: 2px;
|
|
12
|
+
padding: 0 12px;
|
|
13
|
+
height: var(--height-md)
|
|
14
|
+
}
|
|
15
|
+
.input-loading .loading[data-v-3cf0c9ae] {
|
|
16
|
+
width: 100%;
|
|
17
|
+
border-radius: 0.75rem;
|
|
18
|
+
height: 17px
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.neon-time.is-disabled {
|
|
22
|
+
pointer-events: none
|
|
23
|
+
}
|
|
24
|
+
.neon-time.is-disabled .vc-container {
|
|
25
|
+
--tw-bg-opacity: 1;
|
|
26
|
+
background-color: rgb(244 244 245 / var(--tw-bg-opacity))
|
|
27
|
+
}
|
|
28
|
+
.neon-time.is-disabled .vc-select select {
|
|
29
|
+
--tw-bg-opacity: 1;
|
|
30
|
+
background-color: rgb(244 244 245 / var(--tw-bg-opacity));
|
|
31
|
+
--tw-text-opacity: 1;
|
|
32
|
+
color: rgb(161 161 170 / var(--tw-text-opacity))
|
|
33
|
+
}
|
|
34
|
+
.neon-time .vc-container {
|
|
35
|
+
width: 100%;
|
|
36
|
+
border-width: 2px;
|
|
37
|
+
--tw-border-opacity: 1;
|
|
38
|
+
border-color: rgb(228 228 231 / var(--tw-border-opacity))
|
|
39
|
+
}
|
|
40
|
+
.neon-time .vc-container > div {
|
|
41
|
+
width: 100%
|
|
42
|
+
}
|
|
43
|
+
.neon-time .vc-container .vc-time-picker {
|
|
44
|
+
display: grid;
|
|
45
|
+
width: 100%;
|
|
46
|
+
gap: 0.25rem;
|
|
47
|
+
border-style: none;
|
|
48
|
+
grid-template-columns: 1fr min-content;
|
|
49
|
+
padding-top: 3px;
|
|
50
|
+
padding-bottom: 3px
|
|
51
|
+
}
|
|
52
|
+
.neon-time .vc-container .vc-time-picker > :first-child {
|
|
53
|
+
order: 2
|
|
54
|
+
}
|
|
55
|
+
.neon-time .vc-select select {
|
|
56
|
+
--tw-border-opacity: 1;
|
|
57
|
+
border-color: rgb(244 244 245 / var(--tw-border-opacity));
|
|
58
|
+
--tw-bg-opacity: 1;
|
|
59
|
+
background-color: rgb(244 244 245 / var(--tw-bg-opacity));
|
|
60
|
+
--tw-text-opacity: 1;
|
|
61
|
+
color: rgb(39 39 42 / var(--tw-text-opacity));
|
|
62
|
+
border-radius: 0.5rem
|
|
63
|
+
}
|
|
64
|
+
.neon-time .vc-time-content {
|
|
65
|
+
margin-left: 0px;
|
|
66
|
+
margin-right: 0px
|
|
67
|
+
}
|
|
68
|
+
.neon-time .vc-time-icon {
|
|
69
|
+
display: none
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
#view-checkIns[data-v-94a55da5] {
|
|
7
73
|
|
|
8
74
|
height: 100%
|
|
9
75
|
}
|
|
10
|
-
#view-checkIns .wrapper[data-v-
|
|
76
|
+
#view-checkIns .wrapper[data-v-94a55da5] {
|
|
11
77
|
|
|
12
78
|
height: 100%
|
|
13
79
|
}
|
|
14
|
-
#view-checkIns .header[data-v-
|
|
80
|
+
#view-checkIns .header[data-v-94a55da5] {
|
|
15
81
|
|
|
16
82
|
display: flex;
|
|
17
83
|
|
|
@@ -27,15 +93,15 @@
|
|
|
27
93
|
|
|
28
94
|
padding-bottom: 0.5rem
|
|
29
95
|
}
|
|
30
|
-
#view-checkIns .header .start[data-v-
|
|
96
|
+
#view-checkIns .header .start[data-v-94a55da5] {
|
|
31
97
|
|
|
32
98
|
line-height: 1.25
|
|
33
99
|
}
|
|
34
|
-
#view-checkIns .header .title[data-v-
|
|
100
|
+
#view-checkIns .header .title[data-v-94a55da5] {
|
|
35
101
|
|
|
36
102
|
font-weight: 700
|
|
37
103
|
}
|
|
38
|
-
#view-checkIns .header .description[data-v-
|
|
104
|
+
#view-checkIns .header .description[data-v-94a55da5] {
|
|
39
105
|
|
|
40
106
|
font-size: 0.875rem;
|
|
41
107
|
|
|
@@ -43,13 +109,13 @@
|
|
|
43
109
|
|
|
44
110
|
color: rgb(161 161 170 / var(--tw-text-opacity))
|
|
45
111
|
}
|
|
46
|
-
#view-checkIns .buttons[data-v-
|
|
112
|
+
#view-checkIns .buttons[data-v-94a55da5] {
|
|
47
113
|
|
|
48
114
|
display: flex;
|
|
49
115
|
|
|
50
116
|
align-items: center
|
|
51
117
|
}
|
|
52
|
-
#view-checkIns .buttons[data-v-
|
|
118
|
+
#view-checkIns .buttons[data-v-94a55da5] > :not([hidden]) ~ :not([hidden]) {
|
|
53
119
|
|
|
54
120
|
--tw-space-x-reverse: 0;
|
|
55
121
|
|
|
@@ -57,11 +123,11 @@
|
|
|
57
123
|
|
|
58
124
|
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)))
|
|
59
125
|
}
|
|
60
|
-
#view-checkIns .buttons[data-v-
|
|
126
|
+
#view-checkIns .buttons[data-v-94a55da5] {
|
|
61
127
|
|
|
62
128
|
padding-right: 0.25rem
|
|
63
129
|
}
|
|
64
|
-
#view-checkIns .summary[data-v-
|
|
130
|
+
#view-checkIns .summary[data-v-94a55da5] {
|
|
65
131
|
|
|
66
132
|
padding-bottom: 0.5rem
|
|
67
133
|
}
|
|
@@ -177,3 +243,39 @@
|
|
|
177
243
|
.neu-submission-type-single[data-v-2b7e18ba] {
|
|
178
244
|
display: block
|
|
179
245
|
}
|
|
246
|
+
|
|
247
|
+
.neu-responsibility-type-single[data-v-3df9fac1] {
|
|
248
|
+
display: block
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.neu-responsibility-single[data-v-4dd154b8] {
|
|
252
|
+
display: block
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.neu-responsibility-single[data-v-62233bc2] {
|
|
256
|
+
display: block
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.neu-target-single[data-v-279e9805] {
|
|
260
|
+
display: block
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.neu-target-single[data-v-b06ddc2d] {
|
|
264
|
+
display: block
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.neu-plan-type-single[data-v-840b3340] {
|
|
268
|
+
display: block
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.neu-plan-single[data-v-a653393a] {
|
|
272
|
+
display: block
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.neu-plan-single[data-v-e55e97e5] {
|
|
276
|
+
display: block
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.neu-progress-single[data-v-cca6fb42] {
|
|
280
|
+
display: block
|
|
281
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { MaybeProp } from '@package/types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
type: MaybeProp<string>;
|
|
5
|
+
default: undefined;
|
|
6
|
+
};
|
|
7
|
+
isLoading: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
isDisabled: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
+
modelValue: {
|
|
17
|
+
type: MaybeProp<string>;
|
|
18
|
+
default: undefined;
|
|
19
|
+
};
|
|
20
|
+
isLoading: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
isDisabled: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
}>> & {
|
|
29
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
30
|
+
}, {
|
|
31
|
+
isDisabled: boolean;
|
|
32
|
+
isLoading: boolean;
|
|
33
|
+
modelValue: string | null;
|
|
34
|
+
}, {}>;
|
|
35
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as NeonTime } from './NeonTime.vue';
|
|
@@ -6,3 +6,9 @@ export * from './situationType';
|
|
|
6
6
|
export * from './task';
|
|
7
7
|
export * from './submission';
|
|
8
8
|
export * from './submissionType';
|
|
9
|
+
export * from './responsibilityType';
|
|
10
|
+
export * from './responsibility';
|
|
11
|
+
export * from './target';
|
|
12
|
+
export * from './planType';
|
|
13
|
+
export * from './plan';
|
|
14
|
+
export * from './progress';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const ResponsibilityModel: import("@neon.id/model").Model<"neu:personalia:responsibility", "title" | "branch" | "nameStaff" | "detail" | "condition" | "score" | "lastProgress" | "responsibilityType" | "result" | "staffSupervises" | "staffWorks">;
|
|
2
|
+
export type TResponsibilityModel = typeof ResponsibilityModel;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
package/build/types/components/responsibilityType/sheets/ResponsibilityTypeCollection.vue.d.ts
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|