@jnrs/lingshu-smart 2.2.43 → 2.2.45
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/AGENTS.md +10 -6
- package/README.md +1 -1
- package/dist/components/debug/ScriptRunner/script.d.ts +6 -0
- package/dist/components/debug/WsProxy/MappingGrid.vue.d.ts +2 -0
- package/dist/components/debug/WsProxy/proxy.d.ts +9 -5
- package/dist/components/index.js +4875 -4511
- package/dist/components/preview/index.vue.d.ts +412 -0
- package/dist/controller/EditorController.d.ts +12 -0
- package/dist/guards-aLOXCeCF.js +35 -0
- package/dist/index-Dsgrnpn0.js +1186 -0
- package/dist/index.js +28 -52
- package/dist/lingshu-smart/wsProxyConfig.json +33 -20
- package/dist/playground/ViewPageDemo.vue.d.ts +824 -0
- package/dist/stores/index.js +1 -1
- package/dist/stores/useAppStore.d.ts +1236 -0
- package/dist/stores/useDataStore.d.ts +1303 -28
- package/dist/types/components/config.types.d.ts +12 -0
- package/dist/types/models/operating.types.d.ts +14 -3
- package/dist/ui/components/StationSlot.d.ts +7 -1
- package/dist/ui/components/StationSlotGroup.d.ts +3 -0
- package/dist/ui/components/Wave.d.ts +30 -0
- package/dist/ui/models/CleaningMachine.d.ts +3 -0
- package/dist/ui/models/MachineTool.d.ts +4 -0
- package/dist/ui/models/MarkingMachine.d.ts +9 -0
- package/dist/ui/models/MaterialTrack.d.ts +1 -1
- package/dist/ui/models/ShuttleStation.d.ts +1 -1
- package/dist/useAppStore-CVyLAMtL.js +6125 -0
- package/package.json +4 -4
- package/dist/index-Cz1A_VVJ.js +0 -11452
- package/dist/useAppStore-Ca0a-fvj.js +0 -15829
|
@@ -94,6 +94,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
94
94
|
showShadow?: boolean | undefined;
|
|
95
95
|
showText?: boolean | undefined;
|
|
96
96
|
inFlow?: boolean | undefined;
|
|
97
|
+
resources?: {
|
|
98
|
+
name?: string | undefined;
|
|
99
|
+
resourceId?: string | undefined;
|
|
100
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
101
|
+
color?: string | undefined;
|
|
102
|
+
}[] | undefined;
|
|
97
103
|
operatingData?: unknown;
|
|
98
104
|
width: number;
|
|
99
105
|
height: number;
|
|
@@ -153,6 +159,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
153
159
|
[x: string]: unknown;
|
|
154
160
|
id: string;
|
|
155
161
|
};
|
|
162
|
+
} | {
|
|
163
|
+
operatingType: "resetAll";
|
|
164
|
+
rawData?: {
|
|
165
|
+
[x: string]: unknown;
|
|
166
|
+
id: string;
|
|
167
|
+
} | undefined;
|
|
156
168
|
} | {
|
|
157
169
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
158
170
|
light?: {
|
|
@@ -169,6 +181,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
169
181
|
isOut: boolean;
|
|
170
182
|
} | undefined;
|
|
171
183
|
stationRotatable?: boolean | undefined;
|
|
184
|
+
isWorking?: boolean | undefined;
|
|
172
185
|
operatingType?: "model" | undefined;
|
|
173
186
|
id: string;
|
|
174
187
|
rawData: {
|
|
@@ -327,6 +340,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
327
340
|
isIn: boolean;
|
|
328
341
|
isOut: boolean;
|
|
329
342
|
} | undefined;
|
|
343
|
+
isWorking?: boolean | undefined;
|
|
330
344
|
operatingType?: "model" | undefined;
|
|
331
345
|
id: string;
|
|
332
346
|
rawData: {
|
|
@@ -580,6 +594,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
580
594
|
showShadow?: boolean | undefined;
|
|
581
595
|
showText?: boolean | undefined;
|
|
582
596
|
inFlow?: boolean | undefined;
|
|
597
|
+
resources?: {
|
|
598
|
+
name?: string | undefined;
|
|
599
|
+
resourceId?: string | undefined;
|
|
600
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
601
|
+
color?: string | undefined;
|
|
602
|
+
}[] | undefined;
|
|
583
603
|
operatingData?: unknown;
|
|
584
604
|
width: number;
|
|
585
605
|
height: number;
|
|
@@ -639,6 +659,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
639
659
|
[x: string]: unknown;
|
|
640
660
|
id: string;
|
|
641
661
|
};
|
|
662
|
+
} | {
|
|
663
|
+
operatingType: "resetAll";
|
|
664
|
+
rawData?: {
|
|
665
|
+
[x: string]: unknown;
|
|
666
|
+
id: string;
|
|
667
|
+
} | undefined;
|
|
642
668
|
} | {
|
|
643
669
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
644
670
|
light?: {
|
|
@@ -655,6 +681,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
655
681
|
isOut: boolean;
|
|
656
682
|
} | undefined;
|
|
657
683
|
stationRotatable?: boolean | undefined;
|
|
684
|
+
isWorking?: boolean | undefined;
|
|
658
685
|
operatingType?: "model" | undefined;
|
|
659
686
|
id: string;
|
|
660
687
|
rawData: {
|
|
@@ -813,6 +840,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
813
840
|
isIn: boolean;
|
|
814
841
|
isOut: boolean;
|
|
815
842
|
} | undefined;
|
|
843
|
+
isWorking?: boolean | undefined;
|
|
816
844
|
operatingType?: "model" | undefined;
|
|
817
845
|
id: string;
|
|
818
846
|
rawData: {
|
|
@@ -1067,6 +1095,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1067
1095
|
showShadow?: boolean | undefined;
|
|
1068
1096
|
showText?: boolean | undefined;
|
|
1069
1097
|
inFlow?: boolean | undefined;
|
|
1098
|
+
resources?: {
|
|
1099
|
+
name?: string | undefined;
|
|
1100
|
+
resourceId?: string | undefined;
|
|
1101
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
1102
|
+
color?: string | undefined;
|
|
1103
|
+
}[] | undefined;
|
|
1070
1104
|
operatingData?: unknown;
|
|
1071
1105
|
width: number;
|
|
1072
1106
|
height: number;
|
|
@@ -1129,6 +1163,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1129
1163
|
[x: string]: unknown;
|
|
1130
1164
|
id: string;
|
|
1131
1165
|
};
|
|
1166
|
+
} | {
|
|
1167
|
+
operatingType: "resetAll";
|
|
1168
|
+
rawData?: {
|
|
1169
|
+
[x: string]: unknown;
|
|
1170
|
+
id: string;
|
|
1171
|
+
} | undefined;
|
|
1132
1172
|
} | {
|
|
1133
1173
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
1134
1174
|
light?: {
|
|
@@ -1145,6 +1185,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1145
1185
|
isOut: boolean;
|
|
1146
1186
|
} | undefined;
|
|
1147
1187
|
stationRotatable?: boolean | undefined;
|
|
1188
|
+
isWorking?: boolean | undefined;
|
|
1148
1189
|
operatingType?: "model" | undefined;
|
|
1149
1190
|
id: string;
|
|
1150
1191
|
rawData: {
|
|
@@ -1303,6 +1344,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1303
1344
|
isIn: boolean;
|
|
1304
1345
|
isOut: boolean;
|
|
1305
1346
|
} | undefined;
|
|
1347
|
+
isWorking?: boolean | undefined;
|
|
1306
1348
|
operatingType?: "model" | undefined;
|
|
1307
1349
|
id: string;
|
|
1308
1350
|
rawData: {
|
|
@@ -1557,6 +1599,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1557
1599
|
showShadow?: boolean | undefined;
|
|
1558
1600
|
showText?: boolean | undefined;
|
|
1559
1601
|
inFlow?: boolean | undefined;
|
|
1602
|
+
resources?: {
|
|
1603
|
+
name?: string | undefined;
|
|
1604
|
+
resourceId?: string | undefined;
|
|
1605
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
1606
|
+
color?: string | undefined;
|
|
1607
|
+
}[] | undefined;
|
|
1560
1608
|
operatingData?: unknown;
|
|
1561
1609
|
width: number;
|
|
1562
1610
|
height: number;
|
|
@@ -1617,6 +1665,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1617
1665
|
[x: string]: unknown;
|
|
1618
1666
|
id: string;
|
|
1619
1667
|
};
|
|
1668
|
+
} | {
|
|
1669
|
+
operatingType: "resetAll";
|
|
1670
|
+
rawData?: {
|
|
1671
|
+
[x: string]: unknown;
|
|
1672
|
+
id: string;
|
|
1673
|
+
} | undefined;
|
|
1620
1674
|
} | {
|
|
1621
1675
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
1622
1676
|
light?: {
|
|
@@ -1633,6 +1687,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1633
1687
|
isOut: boolean;
|
|
1634
1688
|
} | undefined;
|
|
1635
1689
|
stationRotatable?: boolean | undefined;
|
|
1690
|
+
isWorking?: boolean | undefined;
|
|
1636
1691
|
operatingType?: "model" | undefined;
|
|
1637
1692
|
id: string;
|
|
1638
1693
|
rawData: {
|
|
@@ -1791,6 +1846,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1791
1846
|
isIn: boolean;
|
|
1792
1847
|
isOut: boolean;
|
|
1793
1848
|
} | undefined;
|
|
1849
|
+
isWorking?: boolean | undefined;
|
|
1794
1850
|
operatingType?: "model" | undefined;
|
|
1795
1851
|
id: string;
|
|
1796
1852
|
rawData: {
|
|
@@ -2043,6 +2099,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2043
2099
|
showShadow?: boolean | undefined;
|
|
2044
2100
|
showText?: boolean | undefined;
|
|
2045
2101
|
inFlow?: boolean | undefined;
|
|
2102
|
+
resources?: {
|
|
2103
|
+
name?: string | undefined;
|
|
2104
|
+
resourceId?: string | undefined;
|
|
2105
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
2106
|
+
color?: string | undefined;
|
|
2107
|
+
}[] | undefined;
|
|
2046
2108
|
operatingData?: unknown;
|
|
2047
2109
|
width: number;
|
|
2048
2110
|
height: number;
|
|
@@ -2102,6 +2164,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2102
2164
|
[x: string]: unknown;
|
|
2103
2165
|
id: string;
|
|
2104
2166
|
};
|
|
2167
|
+
} | {
|
|
2168
|
+
operatingType: "resetAll";
|
|
2169
|
+
rawData?: {
|
|
2170
|
+
[x: string]: unknown;
|
|
2171
|
+
id: string;
|
|
2172
|
+
} | undefined;
|
|
2105
2173
|
} | {
|
|
2106
2174
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
2107
2175
|
light?: {
|
|
@@ -2118,6 +2186,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2118
2186
|
isOut: boolean;
|
|
2119
2187
|
} | undefined;
|
|
2120
2188
|
stationRotatable?: boolean | undefined;
|
|
2189
|
+
isWorking?: boolean | undefined;
|
|
2121
2190
|
operatingType?: "model" | undefined;
|
|
2122
2191
|
id: string;
|
|
2123
2192
|
rawData: {
|
|
@@ -2276,6 +2345,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2276
2345
|
isIn: boolean;
|
|
2277
2346
|
isOut: boolean;
|
|
2278
2347
|
} | undefined;
|
|
2348
|
+
isWorking?: boolean | undefined;
|
|
2279
2349
|
operatingType?: "model" | undefined;
|
|
2280
2350
|
id: string;
|
|
2281
2351
|
rawData: {
|
|
@@ -2528,6 +2598,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2528
2598
|
showShadow?: boolean | undefined;
|
|
2529
2599
|
showText?: boolean | undefined;
|
|
2530
2600
|
inFlow?: boolean | undefined;
|
|
2601
|
+
resources?: {
|
|
2602
|
+
name?: string | undefined;
|
|
2603
|
+
resourceId?: string | undefined;
|
|
2604
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
2605
|
+
color?: string | undefined;
|
|
2606
|
+
}[] | undefined;
|
|
2531
2607
|
operatingData?: unknown;
|
|
2532
2608
|
width: number;
|
|
2533
2609
|
height: number;
|
|
@@ -2587,6 +2663,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2587
2663
|
[x: string]: unknown;
|
|
2588
2664
|
id: string;
|
|
2589
2665
|
};
|
|
2666
|
+
} | {
|
|
2667
|
+
operatingType: "resetAll";
|
|
2668
|
+
rawData?: {
|
|
2669
|
+
[x: string]: unknown;
|
|
2670
|
+
id: string;
|
|
2671
|
+
} | undefined;
|
|
2590
2672
|
} | {
|
|
2591
2673
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
2592
2674
|
light?: {
|
|
@@ -2603,6 +2685,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2603
2685
|
isOut: boolean;
|
|
2604
2686
|
} | undefined;
|
|
2605
2687
|
stationRotatable?: boolean | undefined;
|
|
2688
|
+
isWorking?: boolean | undefined;
|
|
2606
2689
|
operatingType?: "model" | undefined;
|
|
2607
2690
|
id: string;
|
|
2608
2691
|
rawData: {
|
|
@@ -2761,6 +2844,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2761
2844
|
isIn: boolean;
|
|
2762
2845
|
isOut: boolean;
|
|
2763
2846
|
} | undefined;
|
|
2847
|
+
isWorking?: boolean | undefined;
|
|
2764
2848
|
operatingType?: "model" | undefined;
|
|
2765
2849
|
id: string;
|
|
2766
2850
|
rawData: {
|
|
@@ -3024,6 +3108,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3024
3108
|
showShadow?: boolean | undefined;
|
|
3025
3109
|
showText?: boolean | undefined;
|
|
3026
3110
|
inFlow?: boolean | undefined;
|
|
3111
|
+
resources?: {
|
|
3112
|
+
name?: string | undefined;
|
|
3113
|
+
resourceId?: string | undefined;
|
|
3114
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
3115
|
+
color?: string | undefined;
|
|
3116
|
+
}[] | undefined;
|
|
3027
3117
|
operatingData?: unknown;
|
|
3028
3118
|
width: number;
|
|
3029
3119
|
height: number;
|
|
@@ -3075,6 +3165,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3075
3165
|
showShadow?: boolean | undefined;
|
|
3076
3166
|
showText?: boolean | undefined;
|
|
3077
3167
|
inFlow?: boolean | undefined;
|
|
3168
|
+
resources?: {
|
|
3169
|
+
name?: string | undefined;
|
|
3170
|
+
resourceId?: string | undefined;
|
|
3171
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
3172
|
+
color?: string | undefined;
|
|
3173
|
+
}[] | undefined;
|
|
3078
3174
|
operatingData?: unknown;
|
|
3079
3175
|
width: number;
|
|
3080
3176
|
height: number;
|
|
@@ -3134,6 +3230,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3134
3230
|
[x: string]: unknown;
|
|
3135
3231
|
id: string;
|
|
3136
3232
|
};
|
|
3233
|
+
} | {
|
|
3234
|
+
operatingType: "resetAll";
|
|
3235
|
+
rawData?: {
|
|
3236
|
+
[x: string]: unknown;
|
|
3237
|
+
id: string;
|
|
3238
|
+
} | undefined;
|
|
3137
3239
|
} | {
|
|
3138
3240
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
3139
3241
|
light?: {
|
|
@@ -3150,6 +3252,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3150
3252
|
isOut: boolean;
|
|
3151
3253
|
} | undefined;
|
|
3152
3254
|
stationRotatable?: boolean | undefined;
|
|
3255
|
+
isWorking?: boolean | undefined;
|
|
3153
3256
|
operatingType?: "model" | undefined;
|
|
3154
3257
|
id: string;
|
|
3155
3258
|
rawData: {
|
|
@@ -3308,6 +3411,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3308
3411
|
isIn: boolean;
|
|
3309
3412
|
isOut: boolean;
|
|
3310
3413
|
} | undefined;
|
|
3414
|
+
isWorking?: boolean | undefined;
|
|
3311
3415
|
operatingType?: "model" | undefined;
|
|
3312
3416
|
id: string;
|
|
3313
3417
|
rawData: {
|
|
@@ -3571,6 +3675,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3571
3675
|
showShadow?: boolean | undefined;
|
|
3572
3676
|
showText?: boolean | undefined;
|
|
3573
3677
|
inFlow?: boolean | undefined;
|
|
3678
|
+
resources?: {
|
|
3679
|
+
name?: string | undefined;
|
|
3680
|
+
resourceId?: string | undefined;
|
|
3681
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
3682
|
+
color?: string | undefined;
|
|
3683
|
+
}[] | undefined;
|
|
3574
3684
|
operatingData?: unknown;
|
|
3575
3685
|
width: number;
|
|
3576
3686
|
height: number;
|
|
@@ -3622,6 +3732,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3622
3732
|
showShadow?: boolean | undefined;
|
|
3623
3733
|
showText?: boolean | undefined;
|
|
3624
3734
|
inFlow?: boolean | undefined;
|
|
3735
|
+
resources?: {
|
|
3736
|
+
name?: string | undefined;
|
|
3737
|
+
resourceId?: string | undefined;
|
|
3738
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
3739
|
+
color?: string | undefined;
|
|
3740
|
+
}[] | undefined;
|
|
3625
3741
|
operatingData?: unknown;
|
|
3626
3742
|
width: number;
|
|
3627
3743
|
height: number;
|
|
@@ -3681,6 +3797,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3681
3797
|
[x: string]: unknown;
|
|
3682
3798
|
id: string;
|
|
3683
3799
|
};
|
|
3800
|
+
} | {
|
|
3801
|
+
operatingType: "resetAll";
|
|
3802
|
+
rawData?: {
|
|
3803
|
+
[x: string]: unknown;
|
|
3804
|
+
id: string;
|
|
3805
|
+
} | undefined;
|
|
3684
3806
|
} | {
|
|
3685
3807
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
3686
3808
|
light?: {
|
|
@@ -3697,6 +3819,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3697
3819
|
isOut: boolean;
|
|
3698
3820
|
} | undefined;
|
|
3699
3821
|
stationRotatable?: boolean | undefined;
|
|
3822
|
+
isWorking?: boolean | undefined;
|
|
3700
3823
|
operatingType?: "model" | undefined;
|
|
3701
3824
|
id: string;
|
|
3702
3825
|
rawData: {
|
|
@@ -3855,6 +3978,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3855
3978
|
isIn: boolean;
|
|
3856
3979
|
isOut: boolean;
|
|
3857
3980
|
} | undefined;
|
|
3981
|
+
isWorking?: boolean | undefined;
|
|
3858
3982
|
operatingType?: "model" | undefined;
|
|
3859
3983
|
id: string;
|
|
3860
3984
|
rawData: {
|
|
@@ -4116,6 +4240,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4116
4240
|
showShadow?: boolean | undefined;
|
|
4117
4241
|
showText?: boolean | undefined;
|
|
4118
4242
|
inFlow?: boolean | undefined;
|
|
4243
|
+
resources?: {
|
|
4244
|
+
name?: string | undefined;
|
|
4245
|
+
resourceId?: string | undefined;
|
|
4246
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
4247
|
+
color?: string | undefined;
|
|
4248
|
+
}[] | undefined;
|
|
4119
4249
|
operatingData?: unknown;
|
|
4120
4250
|
width: number;
|
|
4121
4251
|
height: number;
|
|
@@ -4167,6 +4297,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4167
4297
|
showShadow?: boolean | undefined;
|
|
4168
4298
|
showText?: boolean | undefined;
|
|
4169
4299
|
inFlow?: boolean | undefined;
|
|
4300
|
+
resources?: {
|
|
4301
|
+
name?: string | undefined;
|
|
4302
|
+
resourceId?: string | undefined;
|
|
4303
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
4304
|
+
color?: string | undefined;
|
|
4305
|
+
}[] | undefined;
|
|
4170
4306
|
operatingData?: unknown;
|
|
4171
4307
|
width: number;
|
|
4172
4308
|
height: number;
|
|
@@ -4226,6 +4362,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4226
4362
|
[x: string]: unknown;
|
|
4227
4363
|
id: string;
|
|
4228
4364
|
};
|
|
4365
|
+
} | {
|
|
4366
|
+
operatingType: "resetAll";
|
|
4367
|
+
rawData?: {
|
|
4368
|
+
[x: string]: unknown;
|
|
4369
|
+
id: string;
|
|
4370
|
+
} | undefined;
|
|
4229
4371
|
} | {
|
|
4230
4372
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
4231
4373
|
light?: {
|
|
@@ -4242,6 +4384,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4242
4384
|
isOut: boolean;
|
|
4243
4385
|
} | undefined;
|
|
4244
4386
|
stationRotatable?: boolean | undefined;
|
|
4387
|
+
isWorking?: boolean | undefined;
|
|
4245
4388
|
operatingType?: "model" | undefined;
|
|
4246
4389
|
id: string;
|
|
4247
4390
|
rawData: {
|
|
@@ -4400,6 +4543,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4400
4543
|
isIn: boolean;
|
|
4401
4544
|
isOut: boolean;
|
|
4402
4545
|
} | undefined;
|
|
4546
|
+
isWorking?: boolean | undefined;
|
|
4403
4547
|
operatingType?: "model" | undefined;
|
|
4404
4548
|
id: string;
|
|
4405
4549
|
rawData: {
|
|
@@ -4662,6 +4806,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4662
4806
|
[x: string]: unknown;
|
|
4663
4807
|
id: string;
|
|
4664
4808
|
};
|
|
4809
|
+
} | {
|
|
4810
|
+
operatingType: "resetAll";
|
|
4811
|
+
rawData?: {
|
|
4812
|
+
[x: string]: unknown;
|
|
4813
|
+
id: string;
|
|
4814
|
+
} | undefined;
|
|
4665
4815
|
} | {
|
|
4666
4816
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
4667
4817
|
light?: {
|
|
@@ -4678,6 +4828,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4678
4828
|
isOut: boolean;
|
|
4679
4829
|
} | undefined;
|
|
4680
4830
|
stationRotatable?: boolean | undefined;
|
|
4831
|
+
isWorking?: boolean | undefined;
|
|
4681
4832
|
operatingType?: "model" | undefined;
|
|
4682
4833
|
id: string;
|
|
4683
4834
|
rawData: {
|
|
@@ -4836,6 +4987,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
4836
4987
|
isIn: boolean;
|
|
4837
4988
|
isOut: boolean;
|
|
4838
4989
|
} | undefined;
|
|
4990
|
+
isWorking?: boolean | undefined;
|
|
4839
4991
|
operatingType?: "model" | undefined;
|
|
4840
4992
|
id: string;
|
|
4841
4993
|
rawData: {
|
|
@@ -5096,6 +5248,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5096
5248
|
showShadow?: boolean | undefined;
|
|
5097
5249
|
showText?: boolean | undefined;
|
|
5098
5250
|
inFlow?: boolean | undefined;
|
|
5251
|
+
resources?: {
|
|
5252
|
+
name?: string | undefined;
|
|
5253
|
+
resourceId?: string | undefined;
|
|
5254
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
5255
|
+
color?: string | undefined;
|
|
5256
|
+
}[] | undefined;
|
|
5099
5257
|
operatingData?: unknown;
|
|
5100
5258
|
width: number;
|
|
5101
5259
|
height: number;
|
|
@@ -5147,6 +5305,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5147
5305
|
showShadow?: boolean | undefined;
|
|
5148
5306
|
showText?: boolean | undefined;
|
|
5149
5307
|
inFlow?: boolean | undefined;
|
|
5308
|
+
resources?: {
|
|
5309
|
+
name?: string | undefined;
|
|
5310
|
+
resourceId?: string | undefined;
|
|
5311
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
5312
|
+
color?: string | undefined;
|
|
5313
|
+
}[] | undefined;
|
|
5150
5314
|
operatingData?: unknown;
|
|
5151
5315
|
width: number;
|
|
5152
5316
|
height: number;
|
|
@@ -5206,6 +5370,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5206
5370
|
[x: string]: unknown;
|
|
5207
5371
|
id: string;
|
|
5208
5372
|
};
|
|
5373
|
+
} | {
|
|
5374
|
+
operatingType: "resetAll";
|
|
5375
|
+
rawData?: {
|
|
5376
|
+
[x: string]: unknown;
|
|
5377
|
+
id: string;
|
|
5378
|
+
} | undefined;
|
|
5209
5379
|
} | {
|
|
5210
5380
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
5211
5381
|
light?: {
|
|
@@ -5222,6 +5392,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5222
5392
|
isOut: boolean;
|
|
5223
5393
|
} | undefined;
|
|
5224
5394
|
stationRotatable?: boolean | undefined;
|
|
5395
|
+
isWorking?: boolean | undefined;
|
|
5225
5396
|
operatingType?: "model" | undefined;
|
|
5226
5397
|
id: string;
|
|
5227
5398
|
rawData: {
|
|
@@ -5380,6 +5551,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5380
5551
|
isIn: boolean;
|
|
5381
5552
|
isOut: boolean;
|
|
5382
5553
|
} | undefined;
|
|
5554
|
+
isWorking?: boolean | undefined;
|
|
5383
5555
|
operatingType?: "model" | undefined;
|
|
5384
5556
|
id: string;
|
|
5385
5557
|
rawData: {
|
|
@@ -5641,6 +5813,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5641
5813
|
showShadow?: boolean | undefined;
|
|
5642
5814
|
showText?: boolean | undefined;
|
|
5643
5815
|
inFlow?: boolean | undefined;
|
|
5816
|
+
resources?: {
|
|
5817
|
+
name?: string | undefined;
|
|
5818
|
+
resourceId?: string | undefined;
|
|
5819
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
5820
|
+
color?: string | undefined;
|
|
5821
|
+
}[] | undefined;
|
|
5644
5822
|
operatingData?: unknown;
|
|
5645
5823
|
width: number;
|
|
5646
5824
|
height: number;
|
|
@@ -5692,6 +5870,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5692
5870
|
showShadow?: boolean | undefined;
|
|
5693
5871
|
showText?: boolean | undefined;
|
|
5694
5872
|
inFlow?: boolean | undefined;
|
|
5873
|
+
resources?: {
|
|
5874
|
+
name?: string | undefined;
|
|
5875
|
+
resourceId?: string | undefined;
|
|
5876
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
5877
|
+
color?: string | undefined;
|
|
5878
|
+
}[] | undefined;
|
|
5695
5879
|
operatingData?: unknown;
|
|
5696
5880
|
width: number;
|
|
5697
5881
|
height: number;
|
|
@@ -5752,6 +5936,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5752
5936
|
[x: string]: unknown;
|
|
5753
5937
|
id: string;
|
|
5754
5938
|
};
|
|
5939
|
+
} | {
|
|
5940
|
+
operatingType: "resetAll";
|
|
5941
|
+
rawData?: {
|
|
5942
|
+
[x: string]: unknown;
|
|
5943
|
+
id: string;
|
|
5944
|
+
} | undefined;
|
|
5755
5945
|
} | {
|
|
5756
5946
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
5757
5947
|
light?: {
|
|
@@ -5768,6 +5958,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5768
5958
|
isOut: boolean;
|
|
5769
5959
|
} | undefined;
|
|
5770
5960
|
stationRotatable?: boolean | undefined;
|
|
5961
|
+
isWorking?: boolean | undefined;
|
|
5771
5962
|
operatingType?: "model" | undefined;
|
|
5772
5963
|
id: string;
|
|
5773
5964
|
rawData: {
|
|
@@ -5926,6 +6117,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
5926
6117
|
isIn: boolean;
|
|
5927
6118
|
isOut: boolean;
|
|
5928
6119
|
} | undefined;
|
|
6120
|
+
isWorking?: boolean | undefined;
|
|
5929
6121
|
operatingType?: "model" | undefined;
|
|
5930
6122
|
id: string;
|
|
5931
6123
|
rawData: {
|
|
@@ -6180,6 +6372,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6180
6372
|
showShadow?: boolean | undefined;
|
|
6181
6373
|
showText?: boolean | undefined;
|
|
6182
6374
|
inFlow?: boolean | undefined;
|
|
6375
|
+
resources?: {
|
|
6376
|
+
name?: string | undefined;
|
|
6377
|
+
resourceId?: string | undefined;
|
|
6378
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
6379
|
+
color?: string | undefined;
|
|
6380
|
+
}[] | undefined;
|
|
6183
6381
|
operatingData?: unknown;
|
|
6184
6382
|
width: number;
|
|
6185
6383
|
height: number;
|
|
@@ -6239,6 +6437,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6239
6437
|
[x: string]: unknown;
|
|
6240
6438
|
id: string;
|
|
6241
6439
|
};
|
|
6440
|
+
} | {
|
|
6441
|
+
operatingType: "resetAll";
|
|
6442
|
+
rawData?: {
|
|
6443
|
+
[x: string]: unknown;
|
|
6444
|
+
id: string;
|
|
6445
|
+
} | undefined;
|
|
6242
6446
|
} | {
|
|
6243
6447
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
6244
6448
|
light?: {
|
|
@@ -6255,6 +6459,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6255
6459
|
isOut: boolean;
|
|
6256
6460
|
} | undefined;
|
|
6257
6461
|
stationRotatable?: boolean | undefined;
|
|
6462
|
+
isWorking?: boolean | undefined;
|
|
6258
6463
|
operatingType?: "model" | undefined;
|
|
6259
6464
|
id: string;
|
|
6260
6465
|
rawData: {
|
|
@@ -6413,6 +6618,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6413
6618
|
isIn: boolean;
|
|
6414
6619
|
isOut: boolean;
|
|
6415
6620
|
} | undefined;
|
|
6621
|
+
isWorking?: boolean | undefined;
|
|
6416
6622
|
operatingType?: "model" | undefined;
|
|
6417
6623
|
id: string;
|
|
6418
6624
|
rawData: {
|
|
@@ -6694,6 +6900,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6694
6900
|
showShadow?: boolean | undefined;
|
|
6695
6901
|
showText?: boolean | undefined;
|
|
6696
6902
|
inFlow?: boolean | undefined;
|
|
6903
|
+
resources?: {
|
|
6904
|
+
name?: string | undefined;
|
|
6905
|
+
resourceId?: string | undefined;
|
|
6906
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
6907
|
+
color?: string | undefined;
|
|
6908
|
+
}[] | undefined;
|
|
6697
6909
|
operatingData?: unknown;
|
|
6698
6910
|
width: number;
|
|
6699
6911
|
height: number;
|
|
@@ -6753,6 +6965,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6753
6965
|
[x: string]: unknown;
|
|
6754
6966
|
id: string;
|
|
6755
6967
|
};
|
|
6968
|
+
} | {
|
|
6969
|
+
operatingType: "resetAll";
|
|
6970
|
+
rawData?: {
|
|
6971
|
+
[x: string]: unknown;
|
|
6972
|
+
id: string;
|
|
6973
|
+
} | undefined;
|
|
6756
6974
|
} | {
|
|
6757
6975
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
6758
6976
|
light?: {
|
|
@@ -6769,6 +6987,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6769
6987
|
isOut: boolean;
|
|
6770
6988
|
} | undefined;
|
|
6771
6989
|
stationRotatable?: boolean | undefined;
|
|
6990
|
+
isWorking?: boolean | undefined;
|
|
6772
6991
|
operatingType?: "model" | undefined;
|
|
6773
6992
|
id: string;
|
|
6774
6993
|
rawData: {
|
|
@@ -6927,6 +7146,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
6927
7146
|
isIn: boolean;
|
|
6928
7147
|
isOut: boolean;
|
|
6929
7148
|
} | undefined;
|
|
7149
|
+
isWorking?: boolean | undefined;
|
|
6930
7150
|
operatingType?: "model" | undefined;
|
|
6931
7151
|
id: string;
|
|
6932
7152
|
rawData: {
|
|
@@ -7180,6 +7400,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7180
7400
|
showShadow?: boolean | undefined;
|
|
7181
7401
|
showText?: boolean | undefined;
|
|
7182
7402
|
inFlow?: boolean | undefined;
|
|
7403
|
+
resources?: {
|
|
7404
|
+
name?: string | undefined;
|
|
7405
|
+
resourceId?: string | undefined;
|
|
7406
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
7407
|
+
color?: string | undefined;
|
|
7408
|
+
}[] | undefined;
|
|
7183
7409
|
operatingData?: unknown;
|
|
7184
7410
|
width: number;
|
|
7185
7411
|
height: number;
|
|
@@ -7239,6 +7465,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7239
7465
|
[x: string]: unknown;
|
|
7240
7466
|
id: string;
|
|
7241
7467
|
};
|
|
7468
|
+
} | {
|
|
7469
|
+
operatingType: "resetAll";
|
|
7470
|
+
rawData?: {
|
|
7471
|
+
[x: string]: unknown;
|
|
7472
|
+
id: string;
|
|
7473
|
+
} | undefined;
|
|
7242
7474
|
} | {
|
|
7243
7475
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
7244
7476
|
light?: {
|
|
@@ -7255,6 +7487,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7255
7487
|
isOut: boolean;
|
|
7256
7488
|
} | undefined;
|
|
7257
7489
|
stationRotatable?: boolean | undefined;
|
|
7490
|
+
isWorking?: boolean | undefined;
|
|
7258
7491
|
operatingType?: "model" | undefined;
|
|
7259
7492
|
id: string;
|
|
7260
7493
|
rawData: {
|
|
@@ -7413,6 +7646,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7413
7646
|
isIn: boolean;
|
|
7414
7647
|
isOut: boolean;
|
|
7415
7648
|
} | undefined;
|
|
7649
|
+
isWorking?: boolean | undefined;
|
|
7416
7650
|
operatingType?: "model" | undefined;
|
|
7417
7651
|
id: string;
|
|
7418
7652
|
rawData: {
|
|
@@ -7667,6 +7901,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7667
7901
|
showShadow?: boolean | undefined;
|
|
7668
7902
|
showText?: boolean | undefined;
|
|
7669
7903
|
inFlow?: boolean | undefined;
|
|
7904
|
+
resources?: {
|
|
7905
|
+
name?: string | undefined;
|
|
7906
|
+
resourceId?: string | undefined;
|
|
7907
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
7908
|
+
color?: string | undefined;
|
|
7909
|
+
}[] | undefined;
|
|
7670
7910
|
operatingData?: unknown;
|
|
7671
7911
|
width: number;
|
|
7672
7912
|
height: number;
|
|
@@ -7729,6 +7969,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7729
7969
|
[x: string]: unknown;
|
|
7730
7970
|
id: string;
|
|
7731
7971
|
};
|
|
7972
|
+
} | {
|
|
7973
|
+
operatingType: "resetAll";
|
|
7974
|
+
rawData?: {
|
|
7975
|
+
[x: string]: unknown;
|
|
7976
|
+
id: string;
|
|
7977
|
+
} | undefined;
|
|
7732
7978
|
} | {
|
|
7733
7979
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
7734
7980
|
light?: {
|
|
@@ -7745,6 +7991,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7745
7991
|
isOut: boolean;
|
|
7746
7992
|
} | undefined;
|
|
7747
7993
|
stationRotatable?: boolean | undefined;
|
|
7994
|
+
isWorking?: boolean | undefined;
|
|
7748
7995
|
operatingType?: "model" | undefined;
|
|
7749
7996
|
id: string;
|
|
7750
7997
|
rawData: {
|
|
@@ -7903,6 +8150,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
7903
8150
|
isIn: boolean;
|
|
7904
8151
|
isOut: boolean;
|
|
7905
8152
|
} | undefined;
|
|
8153
|
+
isWorking?: boolean | undefined;
|
|
7906
8154
|
operatingType?: "model" | undefined;
|
|
7907
8155
|
id: string;
|
|
7908
8156
|
rawData: {
|
|
@@ -8157,6 +8405,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8157
8405
|
showShadow?: boolean | undefined;
|
|
8158
8406
|
showText?: boolean | undefined;
|
|
8159
8407
|
inFlow?: boolean | undefined;
|
|
8408
|
+
resources?: {
|
|
8409
|
+
name?: string | undefined;
|
|
8410
|
+
resourceId?: string | undefined;
|
|
8411
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
8412
|
+
color?: string | undefined;
|
|
8413
|
+
}[] | undefined;
|
|
8160
8414
|
operatingData?: unknown;
|
|
8161
8415
|
width: number;
|
|
8162
8416
|
height: number;
|
|
@@ -8217,6 +8471,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8217
8471
|
[x: string]: unknown;
|
|
8218
8472
|
id: string;
|
|
8219
8473
|
};
|
|
8474
|
+
} | {
|
|
8475
|
+
operatingType: "resetAll";
|
|
8476
|
+
rawData?: {
|
|
8477
|
+
[x: string]: unknown;
|
|
8478
|
+
id: string;
|
|
8479
|
+
} | undefined;
|
|
8220
8480
|
} | {
|
|
8221
8481
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
8222
8482
|
light?: {
|
|
@@ -8233,6 +8493,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8233
8493
|
isOut: boolean;
|
|
8234
8494
|
} | undefined;
|
|
8235
8495
|
stationRotatable?: boolean | undefined;
|
|
8496
|
+
isWorking?: boolean | undefined;
|
|
8236
8497
|
operatingType?: "model" | undefined;
|
|
8237
8498
|
id: string;
|
|
8238
8499
|
rawData: {
|
|
@@ -8391,6 +8652,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8391
8652
|
isIn: boolean;
|
|
8392
8653
|
isOut: boolean;
|
|
8393
8654
|
} | undefined;
|
|
8655
|
+
isWorking?: boolean | undefined;
|
|
8394
8656
|
operatingType?: "model" | undefined;
|
|
8395
8657
|
id: string;
|
|
8396
8658
|
rawData: {
|
|
@@ -8643,6 +8905,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8643
8905
|
showShadow?: boolean | undefined;
|
|
8644
8906
|
showText?: boolean | undefined;
|
|
8645
8907
|
inFlow?: boolean | undefined;
|
|
8908
|
+
resources?: {
|
|
8909
|
+
name?: string | undefined;
|
|
8910
|
+
resourceId?: string | undefined;
|
|
8911
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
8912
|
+
color?: string | undefined;
|
|
8913
|
+
}[] | undefined;
|
|
8646
8914
|
operatingData?: unknown;
|
|
8647
8915
|
width: number;
|
|
8648
8916
|
height: number;
|
|
@@ -8702,6 +8970,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8702
8970
|
[x: string]: unknown;
|
|
8703
8971
|
id: string;
|
|
8704
8972
|
};
|
|
8973
|
+
} | {
|
|
8974
|
+
operatingType: "resetAll";
|
|
8975
|
+
rawData?: {
|
|
8976
|
+
[x: string]: unknown;
|
|
8977
|
+
id: string;
|
|
8978
|
+
} | undefined;
|
|
8705
8979
|
} | {
|
|
8706
8980
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
8707
8981
|
light?: {
|
|
@@ -8718,6 +8992,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8718
8992
|
isOut: boolean;
|
|
8719
8993
|
} | undefined;
|
|
8720
8994
|
stationRotatable?: boolean | undefined;
|
|
8995
|
+
isWorking?: boolean | undefined;
|
|
8721
8996
|
operatingType?: "model" | undefined;
|
|
8722
8997
|
id: string;
|
|
8723
8998
|
rawData: {
|
|
@@ -8876,6 +9151,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
8876
9151
|
isIn: boolean;
|
|
8877
9152
|
isOut: boolean;
|
|
8878
9153
|
} | undefined;
|
|
9154
|
+
isWorking?: boolean | undefined;
|
|
8879
9155
|
operatingType?: "model" | undefined;
|
|
8880
9156
|
id: string;
|
|
8881
9157
|
rawData: {
|
|
@@ -9128,6 +9404,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9128
9404
|
showShadow?: boolean | undefined;
|
|
9129
9405
|
showText?: boolean | undefined;
|
|
9130
9406
|
inFlow?: boolean | undefined;
|
|
9407
|
+
resources?: {
|
|
9408
|
+
name?: string | undefined;
|
|
9409
|
+
resourceId?: string | undefined;
|
|
9410
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
9411
|
+
color?: string | undefined;
|
|
9412
|
+
}[] | undefined;
|
|
9131
9413
|
operatingData?: unknown;
|
|
9132
9414
|
width: number;
|
|
9133
9415
|
height: number;
|
|
@@ -9187,6 +9469,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9187
9469
|
[x: string]: unknown;
|
|
9188
9470
|
id: string;
|
|
9189
9471
|
};
|
|
9472
|
+
} | {
|
|
9473
|
+
operatingType: "resetAll";
|
|
9474
|
+
rawData?: {
|
|
9475
|
+
[x: string]: unknown;
|
|
9476
|
+
id: string;
|
|
9477
|
+
} | undefined;
|
|
9190
9478
|
} | {
|
|
9191
9479
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
9192
9480
|
light?: {
|
|
@@ -9203,6 +9491,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9203
9491
|
isOut: boolean;
|
|
9204
9492
|
} | undefined;
|
|
9205
9493
|
stationRotatable?: boolean | undefined;
|
|
9494
|
+
isWorking?: boolean | undefined;
|
|
9206
9495
|
operatingType?: "model" | undefined;
|
|
9207
9496
|
id: string;
|
|
9208
9497
|
rawData: {
|
|
@@ -9361,6 +9650,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9361
9650
|
isIn: boolean;
|
|
9362
9651
|
isOut: boolean;
|
|
9363
9652
|
} | undefined;
|
|
9653
|
+
isWorking?: boolean | undefined;
|
|
9364
9654
|
operatingType?: "model" | undefined;
|
|
9365
9655
|
id: string;
|
|
9366
9656
|
rawData: {
|
|
@@ -9624,6 +9914,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9624
9914
|
showShadow?: boolean | undefined;
|
|
9625
9915
|
showText?: boolean | undefined;
|
|
9626
9916
|
inFlow?: boolean | undefined;
|
|
9917
|
+
resources?: {
|
|
9918
|
+
name?: string | undefined;
|
|
9919
|
+
resourceId?: string | undefined;
|
|
9920
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
9921
|
+
color?: string | undefined;
|
|
9922
|
+
}[] | undefined;
|
|
9627
9923
|
operatingData?: unknown;
|
|
9628
9924
|
width: number;
|
|
9629
9925
|
height: number;
|
|
@@ -9675,6 +9971,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9675
9971
|
showShadow?: boolean | undefined;
|
|
9676
9972
|
showText?: boolean | undefined;
|
|
9677
9973
|
inFlow?: boolean | undefined;
|
|
9974
|
+
resources?: {
|
|
9975
|
+
name?: string | undefined;
|
|
9976
|
+
resourceId?: string | undefined;
|
|
9977
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
9978
|
+
color?: string | undefined;
|
|
9979
|
+
}[] | undefined;
|
|
9678
9980
|
operatingData?: unknown;
|
|
9679
9981
|
width: number;
|
|
9680
9982
|
height: number;
|
|
@@ -9734,6 +10036,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9734
10036
|
[x: string]: unknown;
|
|
9735
10037
|
id: string;
|
|
9736
10038
|
};
|
|
10039
|
+
} | {
|
|
10040
|
+
operatingType: "resetAll";
|
|
10041
|
+
rawData?: {
|
|
10042
|
+
[x: string]: unknown;
|
|
10043
|
+
id: string;
|
|
10044
|
+
} | undefined;
|
|
9737
10045
|
} | {
|
|
9738
10046
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
9739
10047
|
light?: {
|
|
@@ -9750,6 +10058,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9750
10058
|
isOut: boolean;
|
|
9751
10059
|
} | undefined;
|
|
9752
10060
|
stationRotatable?: boolean | undefined;
|
|
10061
|
+
isWorking?: boolean | undefined;
|
|
9753
10062
|
operatingType?: "model" | undefined;
|
|
9754
10063
|
id: string;
|
|
9755
10064
|
rawData: {
|
|
@@ -9908,6 +10217,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
9908
10217
|
isIn: boolean;
|
|
9909
10218
|
isOut: boolean;
|
|
9910
10219
|
} | undefined;
|
|
10220
|
+
isWorking?: boolean | undefined;
|
|
9911
10221
|
operatingType?: "model" | undefined;
|
|
9912
10222
|
id: string;
|
|
9913
10223
|
rawData: {
|
|
@@ -10171,6 +10481,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10171
10481
|
showShadow?: boolean | undefined;
|
|
10172
10482
|
showText?: boolean | undefined;
|
|
10173
10483
|
inFlow?: boolean | undefined;
|
|
10484
|
+
resources?: {
|
|
10485
|
+
name?: string | undefined;
|
|
10486
|
+
resourceId?: string | undefined;
|
|
10487
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
10488
|
+
color?: string | undefined;
|
|
10489
|
+
}[] | undefined;
|
|
10174
10490
|
operatingData?: unknown;
|
|
10175
10491
|
width: number;
|
|
10176
10492
|
height: number;
|
|
@@ -10222,6 +10538,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10222
10538
|
showShadow?: boolean | undefined;
|
|
10223
10539
|
showText?: boolean | undefined;
|
|
10224
10540
|
inFlow?: boolean | undefined;
|
|
10541
|
+
resources?: {
|
|
10542
|
+
name?: string | undefined;
|
|
10543
|
+
resourceId?: string | undefined;
|
|
10544
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
10545
|
+
color?: string | undefined;
|
|
10546
|
+
}[] | undefined;
|
|
10225
10547
|
operatingData?: unknown;
|
|
10226
10548
|
width: number;
|
|
10227
10549
|
height: number;
|
|
@@ -10281,6 +10603,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10281
10603
|
[x: string]: unknown;
|
|
10282
10604
|
id: string;
|
|
10283
10605
|
};
|
|
10606
|
+
} | {
|
|
10607
|
+
operatingType: "resetAll";
|
|
10608
|
+
rawData?: {
|
|
10609
|
+
[x: string]: unknown;
|
|
10610
|
+
id: string;
|
|
10611
|
+
} | undefined;
|
|
10284
10612
|
} | {
|
|
10285
10613
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
10286
10614
|
light?: {
|
|
@@ -10297,6 +10625,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10297
10625
|
isOut: boolean;
|
|
10298
10626
|
} | undefined;
|
|
10299
10627
|
stationRotatable?: boolean | undefined;
|
|
10628
|
+
isWorking?: boolean | undefined;
|
|
10300
10629
|
operatingType?: "model" | undefined;
|
|
10301
10630
|
id: string;
|
|
10302
10631
|
rawData: {
|
|
@@ -10455,6 +10784,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10455
10784
|
isIn: boolean;
|
|
10456
10785
|
isOut: boolean;
|
|
10457
10786
|
} | undefined;
|
|
10787
|
+
isWorking?: boolean | undefined;
|
|
10458
10788
|
operatingType?: "model" | undefined;
|
|
10459
10789
|
id: string;
|
|
10460
10790
|
rawData: {
|
|
@@ -10716,6 +11046,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10716
11046
|
showShadow?: boolean | undefined;
|
|
10717
11047
|
showText?: boolean | undefined;
|
|
10718
11048
|
inFlow?: boolean | undefined;
|
|
11049
|
+
resources?: {
|
|
11050
|
+
name?: string | undefined;
|
|
11051
|
+
resourceId?: string | undefined;
|
|
11052
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
11053
|
+
color?: string | undefined;
|
|
11054
|
+
}[] | undefined;
|
|
10719
11055
|
operatingData?: unknown;
|
|
10720
11056
|
width: number;
|
|
10721
11057
|
height: number;
|
|
@@ -10767,6 +11103,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10767
11103
|
showShadow?: boolean | undefined;
|
|
10768
11104
|
showText?: boolean | undefined;
|
|
10769
11105
|
inFlow?: boolean | undefined;
|
|
11106
|
+
resources?: {
|
|
11107
|
+
name?: string | undefined;
|
|
11108
|
+
resourceId?: string | undefined;
|
|
11109
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
11110
|
+
color?: string | undefined;
|
|
11111
|
+
}[] | undefined;
|
|
10770
11112
|
operatingData?: unknown;
|
|
10771
11113
|
width: number;
|
|
10772
11114
|
height: number;
|
|
@@ -10826,6 +11168,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10826
11168
|
[x: string]: unknown;
|
|
10827
11169
|
id: string;
|
|
10828
11170
|
};
|
|
11171
|
+
} | {
|
|
11172
|
+
operatingType: "resetAll";
|
|
11173
|
+
rawData?: {
|
|
11174
|
+
[x: string]: unknown;
|
|
11175
|
+
id: string;
|
|
11176
|
+
} | undefined;
|
|
10829
11177
|
} | {
|
|
10830
11178
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
10831
11179
|
light?: {
|
|
@@ -10842,6 +11190,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
10842
11190
|
isOut: boolean;
|
|
10843
11191
|
} | undefined;
|
|
10844
11192
|
stationRotatable?: boolean | undefined;
|
|
11193
|
+
isWorking?: boolean | undefined;
|
|
10845
11194
|
operatingType?: "model" | undefined;
|
|
10846
11195
|
id: string;
|
|
10847
11196
|
rawData: {
|
|
@@ -11000,6 +11349,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11000
11349
|
isIn: boolean;
|
|
11001
11350
|
isOut: boolean;
|
|
11002
11351
|
} | undefined;
|
|
11352
|
+
isWorking?: boolean | undefined;
|
|
11003
11353
|
operatingType?: "model" | undefined;
|
|
11004
11354
|
id: string;
|
|
11005
11355
|
rawData: {
|
|
@@ -11262,6 +11612,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11262
11612
|
[x: string]: unknown;
|
|
11263
11613
|
id: string;
|
|
11264
11614
|
};
|
|
11615
|
+
} | {
|
|
11616
|
+
operatingType: "resetAll";
|
|
11617
|
+
rawData?: {
|
|
11618
|
+
[x: string]: unknown;
|
|
11619
|
+
id: string;
|
|
11620
|
+
} | undefined;
|
|
11265
11621
|
} | {
|
|
11266
11622
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
11267
11623
|
light?: {
|
|
@@ -11278,6 +11634,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11278
11634
|
isOut: boolean;
|
|
11279
11635
|
} | undefined;
|
|
11280
11636
|
stationRotatable?: boolean | undefined;
|
|
11637
|
+
isWorking?: boolean | undefined;
|
|
11281
11638
|
operatingType?: "model" | undefined;
|
|
11282
11639
|
id: string;
|
|
11283
11640
|
rawData: {
|
|
@@ -11436,6 +11793,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11436
11793
|
isIn: boolean;
|
|
11437
11794
|
isOut: boolean;
|
|
11438
11795
|
} | undefined;
|
|
11796
|
+
isWorking?: boolean | undefined;
|
|
11439
11797
|
operatingType?: "model" | undefined;
|
|
11440
11798
|
id: string;
|
|
11441
11799
|
rawData: {
|
|
@@ -11696,6 +12054,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11696
12054
|
showShadow?: boolean | undefined;
|
|
11697
12055
|
showText?: boolean | undefined;
|
|
11698
12056
|
inFlow?: boolean | undefined;
|
|
12057
|
+
resources?: {
|
|
12058
|
+
name?: string | undefined;
|
|
12059
|
+
resourceId?: string | undefined;
|
|
12060
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
12061
|
+
color?: string | undefined;
|
|
12062
|
+
}[] | undefined;
|
|
11699
12063
|
operatingData?: unknown;
|
|
11700
12064
|
width: number;
|
|
11701
12065
|
height: number;
|
|
@@ -11747,6 +12111,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11747
12111
|
showShadow?: boolean | undefined;
|
|
11748
12112
|
showText?: boolean | undefined;
|
|
11749
12113
|
inFlow?: boolean | undefined;
|
|
12114
|
+
resources?: {
|
|
12115
|
+
name?: string | undefined;
|
|
12116
|
+
resourceId?: string | undefined;
|
|
12117
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
12118
|
+
color?: string | undefined;
|
|
12119
|
+
}[] | undefined;
|
|
11750
12120
|
operatingData?: unknown;
|
|
11751
12121
|
width: number;
|
|
11752
12122
|
height: number;
|
|
@@ -11806,6 +12176,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11806
12176
|
[x: string]: unknown;
|
|
11807
12177
|
id: string;
|
|
11808
12178
|
};
|
|
12179
|
+
} | {
|
|
12180
|
+
operatingType: "resetAll";
|
|
12181
|
+
rawData?: {
|
|
12182
|
+
[x: string]: unknown;
|
|
12183
|
+
id: string;
|
|
12184
|
+
} | undefined;
|
|
11809
12185
|
} | {
|
|
11810
12186
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
11811
12187
|
light?: {
|
|
@@ -11822,6 +12198,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11822
12198
|
isOut: boolean;
|
|
11823
12199
|
} | undefined;
|
|
11824
12200
|
stationRotatable?: boolean | undefined;
|
|
12201
|
+
isWorking?: boolean | undefined;
|
|
11825
12202
|
operatingType?: "model" | undefined;
|
|
11826
12203
|
id: string;
|
|
11827
12204
|
rawData: {
|
|
@@ -11980,6 +12357,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
11980
12357
|
isIn: boolean;
|
|
11981
12358
|
isOut: boolean;
|
|
11982
12359
|
} | undefined;
|
|
12360
|
+
isWorking?: boolean | undefined;
|
|
11983
12361
|
operatingType?: "model" | undefined;
|
|
11984
12362
|
id: string;
|
|
11985
12363
|
rawData: {
|
|
@@ -12241,6 +12619,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
12241
12619
|
showShadow?: boolean | undefined;
|
|
12242
12620
|
showText?: boolean | undefined;
|
|
12243
12621
|
inFlow?: boolean | undefined;
|
|
12622
|
+
resources?: {
|
|
12623
|
+
name?: string | undefined;
|
|
12624
|
+
resourceId?: string | undefined;
|
|
12625
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
12626
|
+
color?: string | undefined;
|
|
12627
|
+
}[] | undefined;
|
|
12244
12628
|
operatingData?: unknown;
|
|
12245
12629
|
width: number;
|
|
12246
12630
|
height: number;
|
|
@@ -12292,6 +12676,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
12292
12676
|
showShadow?: boolean | undefined;
|
|
12293
12677
|
showText?: boolean | undefined;
|
|
12294
12678
|
inFlow?: boolean | undefined;
|
|
12679
|
+
resources?: {
|
|
12680
|
+
name?: string | undefined;
|
|
12681
|
+
resourceId?: string | undefined;
|
|
12682
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
12683
|
+
color?: string | undefined;
|
|
12684
|
+
}[] | undefined;
|
|
12295
12685
|
operatingData?: unknown;
|
|
12296
12686
|
width: number;
|
|
12297
12687
|
height: number;
|
|
@@ -12352,6 +12742,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
12352
12742
|
[x: string]: unknown;
|
|
12353
12743
|
id: string;
|
|
12354
12744
|
};
|
|
12745
|
+
} | {
|
|
12746
|
+
operatingType: "resetAll";
|
|
12747
|
+
rawData?: {
|
|
12748
|
+
[x: string]: unknown;
|
|
12749
|
+
id: string;
|
|
12750
|
+
} | undefined;
|
|
12355
12751
|
} | {
|
|
12356
12752
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
12357
12753
|
light?: {
|
|
@@ -12368,6 +12764,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
12368
12764
|
isOut: boolean;
|
|
12369
12765
|
} | undefined;
|
|
12370
12766
|
stationRotatable?: boolean | undefined;
|
|
12767
|
+
isWorking?: boolean | undefined;
|
|
12371
12768
|
operatingType?: "model" | undefined;
|
|
12372
12769
|
id: string;
|
|
12373
12770
|
rawData: {
|
|
@@ -12526,6 +12923,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
12526
12923
|
isIn: boolean;
|
|
12527
12924
|
isOut: boolean;
|
|
12528
12925
|
} | undefined;
|
|
12926
|
+
isWorking?: boolean | undefined;
|
|
12529
12927
|
operatingType?: "model" | undefined;
|
|
12530
12928
|
id: string;
|
|
12531
12929
|
rawData: {
|
|
@@ -12780,6 +13178,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
12780
13178
|
showShadow?: boolean | undefined;
|
|
12781
13179
|
showText?: boolean | undefined;
|
|
12782
13180
|
inFlow?: boolean | undefined;
|
|
13181
|
+
resources?: {
|
|
13182
|
+
name?: string | undefined;
|
|
13183
|
+
resourceId?: string | undefined;
|
|
13184
|
+
resourceType?: import('../../types').EnumResourceType | undefined;
|
|
13185
|
+
color?: string | undefined;
|
|
13186
|
+
}[] | undefined;
|
|
12783
13187
|
operatingData?: unknown;
|
|
12784
13188
|
width: number;
|
|
12785
13189
|
height: number;
|
|
@@ -12839,6 +13243,12 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
12839
13243
|
[x: string]: unknown;
|
|
12840
13244
|
id: string;
|
|
12841
13245
|
};
|
|
13246
|
+
} | {
|
|
13247
|
+
operatingType: "resetAll";
|
|
13248
|
+
rawData?: {
|
|
13249
|
+
[x: string]: unknown;
|
|
13250
|
+
id: string;
|
|
13251
|
+
} | undefined;
|
|
12842
13252
|
} | {
|
|
12843
13253
|
className: import("@/types").EnumModel.MACHINE_TOOL;
|
|
12844
13254
|
light?: {
|
|
@@ -12855,6 +13265,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
12855
13265
|
isOut: boolean;
|
|
12856
13266
|
} | undefined;
|
|
12857
13267
|
stationRotatable?: boolean | undefined;
|
|
13268
|
+
isWorking?: boolean | undefined;
|
|
12858
13269
|
operatingType?: "model" | undefined;
|
|
12859
13270
|
id: string;
|
|
12860
13271
|
rawData: {
|
|
@@ -13013,6 +13424,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {
|
|
|
13013
13424
|
isIn: boolean;
|
|
13014
13425
|
isOut: boolean;
|
|
13015
13426
|
} | undefined;
|
|
13427
|
+
isWorking?: boolean | undefined;
|
|
13016
13428
|
operatingType?: "model" | undefined;
|
|
13017
13429
|
id: string;
|
|
13018
13430
|
rawData: {
|