@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
|
@@ -60,6 +60,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
60
60
|
showShadow?: boolean | undefined;
|
|
61
61
|
showText?: boolean | undefined;
|
|
62
62
|
inFlow?: boolean | undefined;
|
|
63
|
+
resources?: {
|
|
64
|
+
name?: string | undefined;
|
|
65
|
+
resourceId?: string | undefined;
|
|
66
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
67
|
+
color?: string | undefined;
|
|
68
|
+
}[] | undefined;
|
|
63
69
|
operatingData?: unknown;
|
|
64
70
|
width: number;
|
|
65
71
|
height: number;
|
|
@@ -119,6 +125,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
119
125
|
[x: string]: unknown;
|
|
120
126
|
id: string;
|
|
121
127
|
};
|
|
128
|
+
} | {
|
|
129
|
+
operatingType: "resetAll";
|
|
130
|
+
rawData?: {
|
|
131
|
+
[x: string]: unknown;
|
|
132
|
+
id: string;
|
|
133
|
+
} | undefined;
|
|
122
134
|
} | {
|
|
123
135
|
className: EnumModel.MACHINE_TOOL;
|
|
124
136
|
light?: {
|
|
@@ -135,6 +147,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
135
147
|
isOut: boolean;
|
|
136
148
|
} | undefined;
|
|
137
149
|
stationRotatable?: boolean | undefined;
|
|
150
|
+
isWorking?: boolean | undefined;
|
|
138
151
|
operatingType?: "model" | undefined;
|
|
139
152
|
id: string;
|
|
140
153
|
rawData: {
|
|
@@ -293,6 +306,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
293
306
|
isIn: boolean;
|
|
294
307
|
isOut: boolean;
|
|
295
308
|
} | undefined;
|
|
309
|
+
isWorking?: boolean | undefined;
|
|
296
310
|
operatingType?: "model" | undefined;
|
|
297
311
|
id: string;
|
|
298
312
|
rawData: {
|
|
@@ -546,6 +560,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
546
560
|
showShadow?: boolean | undefined;
|
|
547
561
|
showText?: boolean | undefined;
|
|
548
562
|
inFlow?: boolean | undefined;
|
|
563
|
+
resources?: {
|
|
564
|
+
name?: string | undefined;
|
|
565
|
+
resourceId?: string | undefined;
|
|
566
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
567
|
+
color?: string | undefined;
|
|
568
|
+
}[] | undefined;
|
|
549
569
|
operatingData?: unknown;
|
|
550
570
|
width: number;
|
|
551
571
|
height: number;
|
|
@@ -605,6 +625,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
605
625
|
[x: string]: unknown;
|
|
606
626
|
id: string;
|
|
607
627
|
};
|
|
628
|
+
} | {
|
|
629
|
+
operatingType: "resetAll";
|
|
630
|
+
rawData?: {
|
|
631
|
+
[x: string]: unknown;
|
|
632
|
+
id: string;
|
|
633
|
+
} | undefined;
|
|
608
634
|
} | {
|
|
609
635
|
className: EnumModel.MACHINE_TOOL;
|
|
610
636
|
light?: {
|
|
@@ -621,6 +647,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
621
647
|
isOut: boolean;
|
|
622
648
|
} | undefined;
|
|
623
649
|
stationRotatable?: boolean | undefined;
|
|
650
|
+
isWorking?: boolean | undefined;
|
|
624
651
|
operatingType?: "model" | undefined;
|
|
625
652
|
id: string;
|
|
626
653
|
rawData: {
|
|
@@ -779,6 +806,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
779
806
|
isIn: boolean;
|
|
780
807
|
isOut: boolean;
|
|
781
808
|
} | undefined;
|
|
809
|
+
isWorking?: boolean | undefined;
|
|
782
810
|
operatingType?: "model" | undefined;
|
|
783
811
|
id: string;
|
|
784
812
|
rawData: {
|
|
@@ -1033,6 +1061,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
1033
1061
|
showShadow?: boolean | undefined;
|
|
1034
1062
|
showText?: boolean | undefined;
|
|
1035
1063
|
inFlow?: boolean | undefined;
|
|
1064
|
+
resources?: {
|
|
1065
|
+
name?: string | undefined;
|
|
1066
|
+
resourceId?: string | undefined;
|
|
1067
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
1068
|
+
color?: string | undefined;
|
|
1069
|
+
}[] | undefined;
|
|
1036
1070
|
operatingData?: unknown;
|
|
1037
1071
|
width: number;
|
|
1038
1072
|
height: number;
|
|
@@ -1095,6 +1129,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
1095
1129
|
[x: string]: unknown;
|
|
1096
1130
|
id: string;
|
|
1097
1131
|
};
|
|
1132
|
+
} | {
|
|
1133
|
+
operatingType: "resetAll";
|
|
1134
|
+
rawData?: {
|
|
1135
|
+
[x: string]: unknown;
|
|
1136
|
+
id: string;
|
|
1137
|
+
} | undefined;
|
|
1098
1138
|
} | {
|
|
1099
1139
|
className: EnumModel.MACHINE_TOOL;
|
|
1100
1140
|
light?: {
|
|
@@ -1111,6 +1151,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
1111
1151
|
isOut: boolean;
|
|
1112
1152
|
} | undefined;
|
|
1113
1153
|
stationRotatable?: boolean | undefined;
|
|
1154
|
+
isWorking?: boolean | undefined;
|
|
1114
1155
|
operatingType?: "model" | undefined;
|
|
1115
1156
|
id: string;
|
|
1116
1157
|
rawData: {
|
|
@@ -1269,6 +1310,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
1269
1310
|
isIn: boolean;
|
|
1270
1311
|
isOut: boolean;
|
|
1271
1312
|
} | undefined;
|
|
1313
|
+
isWorking?: boolean | undefined;
|
|
1272
1314
|
operatingType?: "model" | undefined;
|
|
1273
1315
|
id: string;
|
|
1274
1316
|
rawData: {
|
|
@@ -1523,6 +1565,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
1523
1565
|
showShadow?: boolean | undefined;
|
|
1524
1566
|
showText?: boolean | undefined;
|
|
1525
1567
|
inFlow?: boolean | undefined;
|
|
1568
|
+
resources?: {
|
|
1569
|
+
name?: string | undefined;
|
|
1570
|
+
resourceId?: string | undefined;
|
|
1571
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
1572
|
+
color?: string | undefined;
|
|
1573
|
+
}[] | undefined;
|
|
1526
1574
|
operatingData?: unknown;
|
|
1527
1575
|
width: number;
|
|
1528
1576
|
height: number;
|
|
@@ -1583,6 +1631,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
1583
1631
|
[x: string]: unknown;
|
|
1584
1632
|
id: string;
|
|
1585
1633
|
};
|
|
1634
|
+
} | {
|
|
1635
|
+
operatingType: "resetAll";
|
|
1636
|
+
rawData?: {
|
|
1637
|
+
[x: string]: unknown;
|
|
1638
|
+
id: string;
|
|
1639
|
+
} | undefined;
|
|
1586
1640
|
} | {
|
|
1587
1641
|
className: EnumModel.MACHINE_TOOL;
|
|
1588
1642
|
light?: {
|
|
@@ -1599,6 +1653,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
1599
1653
|
isOut: boolean;
|
|
1600
1654
|
} | undefined;
|
|
1601
1655
|
stationRotatable?: boolean | undefined;
|
|
1656
|
+
isWorking?: boolean | undefined;
|
|
1602
1657
|
operatingType?: "model" | undefined;
|
|
1603
1658
|
id: string;
|
|
1604
1659
|
rawData: {
|
|
@@ -1757,6 +1812,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
1757
1812
|
isIn: boolean;
|
|
1758
1813
|
isOut: boolean;
|
|
1759
1814
|
} | undefined;
|
|
1815
|
+
isWorking?: boolean | undefined;
|
|
1760
1816
|
operatingType?: "model" | undefined;
|
|
1761
1817
|
id: string;
|
|
1762
1818
|
rawData: {
|
|
@@ -2009,6 +2065,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
2009
2065
|
showShadow?: boolean | undefined;
|
|
2010
2066
|
showText?: boolean | undefined;
|
|
2011
2067
|
inFlow?: boolean | undefined;
|
|
2068
|
+
resources?: {
|
|
2069
|
+
name?: string | undefined;
|
|
2070
|
+
resourceId?: string | undefined;
|
|
2071
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
2072
|
+
color?: string | undefined;
|
|
2073
|
+
}[] | undefined;
|
|
2012
2074
|
operatingData?: unknown;
|
|
2013
2075
|
width: number;
|
|
2014
2076
|
height: number;
|
|
@@ -2068,6 +2130,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
2068
2130
|
[x: string]: unknown;
|
|
2069
2131
|
id: string;
|
|
2070
2132
|
};
|
|
2133
|
+
} | {
|
|
2134
|
+
operatingType: "resetAll";
|
|
2135
|
+
rawData?: {
|
|
2136
|
+
[x: string]: unknown;
|
|
2137
|
+
id: string;
|
|
2138
|
+
} | undefined;
|
|
2071
2139
|
} | {
|
|
2072
2140
|
className: EnumModel.MACHINE_TOOL;
|
|
2073
2141
|
light?: {
|
|
@@ -2084,6 +2152,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
2084
2152
|
isOut: boolean;
|
|
2085
2153
|
} | undefined;
|
|
2086
2154
|
stationRotatable?: boolean | undefined;
|
|
2155
|
+
isWorking?: boolean | undefined;
|
|
2087
2156
|
operatingType?: "model" | undefined;
|
|
2088
2157
|
id: string;
|
|
2089
2158
|
rawData: {
|
|
@@ -2242,6 +2311,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
2242
2311
|
isIn: boolean;
|
|
2243
2312
|
isOut: boolean;
|
|
2244
2313
|
} | undefined;
|
|
2314
|
+
isWorking?: boolean | undefined;
|
|
2245
2315
|
operatingType?: "model" | undefined;
|
|
2246
2316
|
id: string;
|
|
2247
2317
|
rawData: {
|
|
@@ -2494,6 +2564,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
2494
2564
|
showShadow?: boolean | undefined;
|
|
2495
2565
|
showText?: boolean | undefined;
|
|
2496
2566
|
inFlow?: boolean | undefined;
|
|
2567
|
+
resources?: {
|
|
2568
|
+
name?: string | undefined;
|
|
2569
|
+
resourceId?: string | undefined;
|
|
2570
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
2571
|
+
color?: string | undefined;
|
|
2572
|
+
}[] | undefined;
|
|
2497
2573
|
operatingData?: unknown;
|
|
2498
2574
|
width: number;
|
|
2499
2575
|
height: number;
|
|
@@ -2553,6 +2629,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
2553
2629
|
[x: string]: unknown;
|
|
2554
2630
|
id: string;
|
|
2555
2631
|
};
|
|
2632
|
+
} | {
|
|
2633
|
+
operatingType: "resetAll";
|
|
2634
|
+
rawData?: {
|
|
2635
|
+
[x: string]: unknown;
|
|
2636
|
+
id: string;
|
|
2637
|
+
} | undefined;
|
|
2556
2638
|
} | {
|
|
2557
2639
|
className: EnumModel.MACHINE_TOOL;
|
|
2558
2640
|
light?: {
|
|
@@ -2569,6 +2651,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
2569
2651
|
isOut: boolean;
|
|
2570
2652
|
} | undefined;
|
|
2571
2653
|
stationRotatable?: boolean | undefined;
|
|
2654
|
+
isWorking?: boolean | undefined;
|
|
2572
2655
|
operatingType?: "model" | undefined;
|
|
2573
2656
|
id: string;
|
|
2574
2657
|
rawData: {
|
|
@@ -2727,6 +2810,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
2727
2810
|
isIn: boolean;
|
|
2728
2811
|
isOut: boolean;
|
|
2729
2812
|
} | undefined;
|
|
2813
|
+
isWorking?: boolean | undefined;
|
|
2730
2814
|
operatingType?: "model" | undefined;
|
|
2731
2815
|
id: string;
|
|
2732
2816
|
rawData: {
|
|
@@ -2990,6 +3074,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
2990
3074
|
showShadow?: boolean | undefined;
|
|
2991
3075
|
showText?: boolean | undefined;
|
|
2992
3076
|
inFlow?: boolean | undefined;
|
|
3077
|
+
resources?: {
|
|
3078
|
+
name?: string | undefined;
|
|
3079
|
+
resourceId?: string | undefined;
|
|
3080
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
3081
|
+
color?: string | undefined;
|
|
3082
|
+
}[] | undefined;
|
|
2993
3083
|
operatingData?: unknown;
|
|
2994
3084
|
width: number;
|
|
2995
3085
|
height: number;
|
|
@@ -3041,6 +3131,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
3041
3131
|
showShadow?: boolean | undefined;
|
|
3042
3132
|
showText?: boolean | undefined;
|
|
3043
3133
|
inFlow?: boolean | undefined;
|
|
3134
|
+
resources?: {
|
|
3135
|
+
name?: string | undefined;
|
|
3136
|
+
resourceId?: string | undefined;
|
|
3137
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
3138
|
+
color?: string | undefined;
|
|
3139
|
+
}[] | undefined;
|
|
3044
3140
|
operatingData?: unknown;
|
|
3045
3141
|
width: number;
|
|
3046
3142
|
height: number;
|
|
@@ -3100,6 +3196,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
3100
3196
|
[x: string]: unknown;
|
|
3101
3197
|
id: string;
|
|
3102
3198
|
};
|
|
3199
|
+
} | {
|
|
3200
|
+
operatingType: "resetAll";
|
|
3201
|
+
rawData?: {
|
|
3202
|
+
[x: string]: unknown;
|
|
3203
|
+
id: string;
|
|
3204
|
+
} | undefined;
|
|
3103
3205
|
} | {
|
|
3104
3206
|
className: EnumModel.MACHINE_TOOL;
|
|
3105
3207
|
light?: {
|
|
@@ -3116,6 +3218,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
3116
3218
|
isOut: boolean;
|
|
3117
3219
|
} | undefined;
|
|
3118
3220
|
stationRotatable?: boolean | undefined;
|
|
3221
|
+
isWorking?: boolean | undefined;
|
|
3119
3222
|
operatingType?: "model" | undefined;
|
|
3120
3223
|
id: string;
|
|
3121
3224
|
rawData: {
|
|
@@ -3274,6 +3377,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
3274
3377
|
isIn: boolean;
|
|
3275
3378
|
isOut: boolean;
|
|
3276
3379
|
} | undefined;
|
|
3380
|
+
isWorking?: boolean | undefined;
|
|
3277
3381
|
operatingType?: "model" | undefined;
|
|
3278
3382
|
id: string;
|
|
3279
3383
|
rawData: {
|
|
@@ -3537,6 +3641,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
3537
3641
|
showShadow?: boolean | undefined;
|
|
3538
3642
|
showText?: boolean | undefined;
|
|
3539
3643
|
inFlow?: boolean | undefined;
|
|
3644
|
+
resources?: {
|
|
3645
|
+
name?: string | undefined;
|
|
3646
|
+
resourceId?: string | undefined;
|
|
3647
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
3648
|
+
color?: string | undefined;
|
|
3649
|
+
}[] | undefined;
|
|
3540
3650
|
operatingData?: unknown;
|
|
3541
3651
|
width: number;
|
|
3542
3652
|
height: number;
|
|
@@ -3588,6 +3698,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
3588
3698
|
showShadow?: boolean | undefined;
|
|
3589
3699
|
showText?: boolean | undefined;
|
|
3590
3700
|
inFlow?: boolean | undefined;
|
|
3701
|
+
resources?: {
|
|
3702
|
+
name?: string | undefined;
|
|
3703
|
+
resourceId?: string | undefined;
|
|
3704
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
3705
|
+
color?: string | undefined;
|
|
3706
|
+
}[] | undefined;
|
|
3591
3707
|
operatingData?: unknown;
|
|
3592
3708
|
width: number;
|
|
3593
3709
|
height: number;
|
|
@@ -3647,6 +3763,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
3647
3763
|
[x: string]: unknown;
|
|
3648
3764
|
id: string;
|
|
3649
3765
|
};
|
|
3766
|
+
} | {
|
|
3767
|
+
operatingType: "resetAll";
|
|
3768
|
+
rawData?: {
|
|
3769
|
+
[x: string]: unknown;
|
|
3770
|
+
id: string;
|
|
3771
|
+
} | undefined;
|
|
3650
3772
|
} | {
|
|
3651
3773
|
className: EnumModel.MACHINE_TOOL;
|
|
3652
3774
|
light?: {
|
|
@@ -3663,6 +3785,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
3663
3785
|
isOut: boolean;
|
|
3664
3786
|
} | undefined;
|
|
3665
3787
|
stationRotatable?: boolean | undefined;
|
|
3788
|
+
isWorking?: boolean | undefined;
|
|
3666
3789
|
operatingType?: "model" | undefined;
|
|
3667
3790
|
id: string;
|
|
3668
3791
|
rawData: {
|
|
@@ -3821,6 +3944,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
3821
3944
|
isIn: boolean;
|
|
3822
3945
|
isOut: boolean;
|
|
3823
3946
|
} | undefined;
|
|
3947
|
+
isWorking?: boolean | undefined;
|
|
3824
3948
|
operatingType?: "model" | undefined;
|
|
3825
3949
|
id: string;
|
|
3826
3950
|
rawData: {
|
|
@@ -4082,6 +4206,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
4082
4206
|
showShadow?: boolean | undefined;
|
|
4083
4207
|
showText?: boolean | undefined;
|
|
4084
4208
|
inFlow?: boolean | undefined;
|
|
4209
|
+
resources?: {
|
|
4210
|
+
name?: string | undefined;
|
|
4211
|
+
resourceId?: string | undefined;
|
|
4212
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
4213
|
+
color?: string | undefined;
|
|
4214
|
+
}[] | undefined;
|
|
4085
4215
|
operatingData?: unknown;
|
|
4086
4216
|
width: number;
|
|
4087
4217
|
height: number;
|
|
@@ -4133,6 +4263,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
4133
4263
|
showShadow?: boolean | undefined;
|
|
4134
4264
|
showText?: boolean | undefined;
|
|
4135
4265
|
inFlow?: boolean | undefined;
|
|
4266
|
+
resources?: {
|
|
4267
|
+
name?: string | undefined;
|
|
4268
|
+
resourceId?: string | undefined;
|
|
4269
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
4270
|
+
color?: string | undefined;
|
|
4271
|
+
}[] | undefined;
|
|
4136
4272
|
operatingData?: unknown;
|
|
4137
4273
|
width: number;
|
|
4138
4274
|
height: number;
|
|
@@ -4192,6 +4328,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
4192
4328
|
[x: string]: unknown;
|
|
4193
4329
|
id: string;
|
|
4194
4330
|
};
|
|
4331
|
+
} | {
|
|
4332
|
+
operatingType: "resetAll";
|
|
4333
|
+
rawData?: {
|
|
4334
|
+
[x: string]: unknown;
|
|
4335
|
+
id: string;
|
|
4336
|
+
} | undefined;
|
|
4195
4337
|
} | {
|
|
4196
4338
|
className: EnumModel.MACHINE_TOOL;
|
|
4197
4339
|
light?: {
|
|
@@ -4208,6 +4350,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
4208
4350
|
isOut: boolean;
|
|
4209
4351
|
} | undefined;
|
|
4210
4352
|
stationRotatable?: boolean | undefined;
|
|
4353
|
+
isWorking?: boolean | undefined;
|
|
4211
4354
|
operatingType?: "model" | undefined;
|
|
4212
4355
|
id: string;
|
|
4213
4356
|
rawData: {
|
|
@@ -4366,6 +4509,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
4366
4509
|
isIn: boolean;
|
|
4367
4510
|
isOut: boolean;
|
|
4368
4511
|
} | undefined;
|
|
4512
|
+
isWorking?: boolean | undefined;
|
|
4369
4513
|
operatingType?: "model" | undefined;
|
|
4370
4514
|
id: string;
|
|
4371
4515
|
rawData: {
|
|
@@ -4628,6 +4772,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
4628
4772
|
[x: string]: unknown;
|
|
4629
4773
|
id: string;
|
|
4630
4774
|
};
|
|
4775
|
+
} | {
|
|
4776
|
+
operatingType: "resetAll";
|
|
4777
|
+
rawData?: {
|
|
4778
|
+
[x: string]: unknown;
|
|
4779
|
+
id: string;
|
|
4780
|
+
} | undefined;
|
|
4631
4781
|
} | {
|
|
4632
4782
|
className: EnumModel.MACHINE_TOOL;
|
|
4633
4783
|
light?: {
|
|
@@ -4644,6 +4794,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
4644
4794
|
isOut: boolean;
|
|
4645
4795
|
} | undefined;
|
|
4646
4796
|
stationRotatable?: boolean | undefined;
|
|
4797
|
+
isWorking?: boolean | undefined;
|
|
4647
4798
|
operatingType?: "model" | undefined;
|
|
4648
4799
|
id: string;
|
|
4649
4800
|
rawData: {
|
|
@@ -4802,6 +4953,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
4802
4953
|
isIn: boolean;
|
|
4803
4954
|
isOut: boolean;
|
|
4804
4955
|
} | undefined;
|
|
4956
|
+
isWorking?: boolean | undefined;
|
|
4805
4957
|
operatingType?: "model" | undefined;
|
|
4806
4958
|
id: string;
|
|
4807
4959
|
rawData: {
|
|
@@ -5062,6 +5214,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
5062
5214
|
showShadow?: boolean | undefined;
|
|
5063
5215
|
showText?: boolean | undefined;
|
|
5064
5216
|
inFlow?: boolean | undefined;
|
|
5217
|
+
resources?: {
|
|
5218
|
+
name?: string | undefined;
|
|
5219
|
+
resourceId?: string | undefined;
|
|
5220
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
5221
|
+
color?: string | undefined;
|
|
5222
|
+
}[] | undefined;
|
|
5065
5223
|
operatingData?: unknown;
|
|
5066
5224
|
width: number;
|
|
5067
5225
|
height: number;
|
|
@@ -5113,6 +5271,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
5113
5271
|
showShadow?: boolean | undefined;
|
|
5114
5272
|
showText?: boolean | undefined;
|
|
5115
5273
|
inFlow?: boolean | undefined;
|
|
5274
|
+
resources?: {
|
|
5275
|
+
name?: string | undefined;
|
|
5276
|
+
resourceId?: string | undefined;
|
|
5277
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
5278
|
+
color?: string | undefined;
|
|
5279
|
+
}[] | undefined;
|
|
5116
5280
|
operatingData?: unknown;
|
|
5117
5281
|
width: number;
|
|
5118
5282
|
height: number;
|
|
@@ -5172,6 +5336,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
5172
5336
|
[x: string]: unknown;
|
|
5173
5337
|
id: string;
|
|
5174
5338
|
};
|
|
5339
|
+
} | {
|
|
5340
|
+
operatingType: "resetAll";
|
|
5341
|
+
rawData?: {
|
|
5342
|
+
[x: string]: unknown;
|
|
5343
|
+
id: string;
|
|
5344
|
+
} | undefined;
|
|
5175
5345
|
} | {
|
|
5176
5346
|
className: EnumModel.MACHINE_TOOL;
|
|
5177
5347
|
light?: {
|
|
@@ -5188,6 +5358,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
5188
5358
|
isOut: boolean;
|
|
5189
5359
|
} | undefined;
|
|
5190
5360
|
stationRotatable?: boolean | undefined;
|
|
5361
|
+
isWorking?: boolean | undefined;
|
|
5191
5362
|
operatingType?: "model" | undefined;
|
|
5192
5363
|
id: string;
|
|
5193
5364
|
rawData: {
|
|
@@ -5346,6 +5517,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
5346
5517
|
isIn: boolean;
|
|
5347
5518
|
isOut: boolean;
|
|
5348
5519
|
} | undefined;
|
|
5520
|
+
isWorking?: boolean | undefined;
|
|
5349
5521
|
operatingType?: "model" | undefined;
|
|
5350
5522
|
id: string;
|
|
5351
5523
|
rawData: {
|
|
@@ -5607,6 +5779,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
5607
5779
|
showShadow?: boolean | undefined;
|
|
5608
5780
|
showText?: boolean | undefined;
|
|
5609
5781
|
inFlow?: boolean | undefined;
|
|
5782
|
+
resources?: {
|
|
5783
|
+
name?: string | undefined;
|
|
5784
|
+
resourceId?: string | undefined;
|
|
5785
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
5786
|
+
color?: string | undefined;
|
|
5787
|
+
}[] | undefined;
|
|
5610
5788
|
operatingData?: unknown;
|
|
5611
5789
|
width: number;
|
|
5612
5790
|
height: number;
|
|
@@ -5658,6 +5836,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
5658
5836
|
showShadow?: boolean | undefined;
|
|
5659
5837
|
showText?: boolean | undefined;
|
|
5660
5838
|
inFlow?: boolean | undefined;
|
|
5839
|
+
resources?: {
|
|
5840
|
+
name?: string | undefined;
|
|
5841
|
+
resourceId?: string | undefined;
|
|
5842
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
5843
|
+
color?: string | undefined;
|
|
5844
|
+
}[] | undefined;
|
|
5661
5845
|
operatingData?: unknown;
|
|
5662
5846
|
width: number;
|
|
5663
5847
|
height: number;
|
|
@@ -5718,6 +5902,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
5718
5902
|
[x: string]: unknown;
|
|
5719
5903
|
id: string;
|
|
5720
5904
|
};
|
|
5905
|
+
} | {
|
|
5906
|
+
operatingType: "resetAll";
|
|
5907
|
+
rawData?: {
|
|
5908
|
+
[x: string]: unknown;
|
|
5909
|
+
id: string;
|
|
5910
|
+
} | undefined;
|
|
5721
5911
|
} | {
|
|
5722
5912
|
className: EnumModel.MACHINE_TOOL;
|
|
5723
5913
|
light?: {
|
|
@@ -5734,6 +5924,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
5734
5924
|
isOut: boolean;
|
|
5735
5925
|
} | undefined;
|
|
5736
5926
|
stationRotatable?: boolean | undefined;
|
|
5927
|
+
isWorking?: boolean | undefined;
|
|
5737
5928
|
operatingType?: "model" | undefined;
|
|
5738
5929
|
id: string;
|
|
5739
5930
|
rawData: {
|
|
@@ -5892,6 +6083,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
5892
6083
|
isIn: boolean;
|
|
5893
6084
|
isOut: boolean;
|
|
5894
6085
|
} | undefined;
|
|
6086
|
+
isWorking?: boolean | undefined;
|
|
5895
6087
|
operatingType?: "model" | undefined;
|
|
5896
6088
|
id: string;
|
|
5897
6089
|
rawData: {
|
|
@@ -6146,6 +6338,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
6146
6338
|
showShadow?: boolean | undefined;
|
|
6147
6339
|
showText?: boolean | undefined;
|
|
6148
6340
|
inFlow?: boolean | undefined;
|
|
6341
|
+
resources?: {
|
|
6342
|
+
name?: string | undefined;
|
|
6343
|
+
resourceId?: string | undefined;
|
|
6344
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
6345
|
+
color?: string | undefined;
|
|
6346
|
+
}[] | undefined;
|
|
6149
6347
|
operatingData?: unknown;
|
|
6150
6348
|
width: number;
|
|
6151
6349
|
height: number;
|
|
@@ -6205,6 +6403,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
6205
6403
|
[x: string]: unknown;
|
|
6206
6404
|
id: string;
|
|
6207
6405
|
};
|
|
6406
|
+
} | {
|
|
6407
|
+
operatingType: "resetAll";
|
|
6408
|
+
rawData?: {
|
|
6409
|
+
[x: string]: unknown;
|
|
6410
|
+
id: string;
|
|
6411
|
+
} | undefined;
|
|
6208
6412
|
} | {
|
|
6209
6413
|
className: EnumModel.MACHINE_TOOL;
|
|
6210
6414
|
light?: {
|
|
@@ -6221,6 +6425,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
6221
6425
|
isOut: boolean;
|
|
6222
6426
|
} | undefined;
|
|
6223
6427
|
stationRotatable?: boolean | undefined;
|
|
6428
|
+
isWorking?: boolean | undefined;
|
|
6224
6429
|
operatingType?: "model" | undefined;
|
|
6225
6430
|
id: string;
|
|
6226
6431
|
rawData: {
|
|
@@ -6379,6 +6584,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
6379
6584
|
isIn: boolean;
|
|
6380
6585
|
isOut: boolean;
|
|
6381
6586
|
} | undefined;
|
|
6587
|
+
isWorking?: boolean | undefined;
|
|
6382
6588
|
operatingType?: "model" | undefined;
|
|
6383
6589
|
id: string;
|
|
6384
6590
|
rawData: {
|
|
@@ -6660,6 +6866,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
6660
6866
|
showShadow?: boolean | undefined;
|
|
6661
6867
|
showText?: boolean | undefined;
|
|
6662
6868
|
inFlow?: boolean | undefined;
|
|
6869
|
+
resources?: {
|
|
6870
|
+
name?: string | undefined;
|
|
6871
|
+
resourceId?: string | undefined;
|
|
6872
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
6873
|
+
color?: string | undefined;
|
|
6874
|
+
}[] | undefined;
|
|
6663
6875
|
operatingData?: unknown;
|
|
6664
6876
|
width: number;
|
|
6665
6877
|
height: number;
|
|
@@ -6719,6 +6931,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
6719
6931
|
[x: string]: unknown;
|
|
6720
6932
|
id: string;
|
|
6721
6933
|
};
|
|
6934
|
+
} | {
|
|
6935
|
+
operatingType: "resetAll";
|
|
6936
|
+
rawData?: {
|
|
6937
|
+
[x: string]: unknown;
|
|
6938
|
+
id: string;
|
|
6939
|
+
} | undefined;
|
|
6722
6940
|
} | {
|
|
6723
6941
|
className: EnumModel.MACHINE_TOOL;
|
|
6724
6942
|
light?: {
|
|
@@ -6735,6 +6953,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
6735
6953
|
isOut: boolean;
|
|
6736
6954
|
} | undefined;
|
|
6737
6955
|
stationRotatable?: boolean | undefined;
|
|
6956
|
+
isWorking?: boolean | undefined;
|
|
6738
6957
|
operatingType?: "model" | undefined;
|
|
6739
6958
|
id: string;
|
|
6740
6959
|
rawData: {
|
|
@@ -6893,6 +7112,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
6893
7112
|
isIn: boolean;
|
|
6894
7113
|
isOut: boolean;
|
|
6895
7114
|
} | undefined;
|
|
7115
|
+
isWorking?: boolean | undefined;
|
|
6896
7116
|
operatingType?: "model" | undefined;
|
|
6897
7117
|
id: string;
|
|
6898
7118
|
rawData: {
|
|
@@ -7146,6 +7366,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
7146
7366
|
showShadow?: boolean | undefined;
|
|
7147
7367
|
showText?: boolean | undefined;
|
|
7148
7368
|
inFlow?: boolean | undefined;
|
|
7369
|
+
resources?: {
|
|
7370
|
+
name?: string | undefined;
|
|
7371
|
+
resourceId?: string | undefined;
|
|
7372
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
7373
|
+
color?: string | undefined;
|
|
7374
|
+
}[] | undefined;
|
|
7149
7375
|
operatingData?: unknown;
|
|
7150
7376
|
width: number;
|
|
7151
7377
|
height: number;
|
|
@@ -7205,6 +7431,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
7205
7431
|
[x: string]: unknown;
|
|
7206
7432
|
id: string;
|
|
7207
7433
|
};
|
|
7434
|
+
} | {
|
|
7435
|
+
operatingType: "resetAll";
|
|
7436
|
+
rawData?: {
|
|
7437
|
+
[x: string]: unknown;
|
|
7438
|
+
id: string;
|
|
7439
|
+
} | undefined;
|
|
7208
7440
|
} | {
|
|
7209
7441
|
className: EnumModel.MACHINE_TOOL;
|
|
7210
7442
|
light?: {
|
|
@@ -7221,6 +7453,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
7221
7453
|
isOut: boolean;
|
|
7222
7454
|
} | undefined;
|
|
7223
7455
|
stationRotatable?: boolean | undefined;
|
|
7456
|
+
isWorking?: boolean | undefined;
|
|
7224
7457
|
operatingType?: "model" | undefined;
|
|
7225
7458
|
id: string;
|
|
7226
7459
|
rawData: {
|
|
@@ -7379,6 +7612,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
7379
7612
|
isIn: boolean;
|
|
7380
7613
|
isOut: boolean;
|
|
7381
7614
|
} | undefined;
|
|
7615
|
+
isWorking?: boolean | undefined;
|
|
7382
7616
|
operatingType?: "model" | undefined;
|
|
7383
7617
|
id: string;
|
|
7384
7618
|
rawData: {
|
|
@@ -7633,6 +7867,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
7633
7867
|
showShadow?: boolean | undefined;
|
|
7634
7868
|
showText?: boolean | undefined;
|
|
7635
7869
|
inFlow?: boolean | undefined;
|
|
7870
|
+
resources?: {
|
|
7871
|
+
name?: string | undefined;
|
|
7872
|
+
resourceId?: string | undefined;
|
|
7873
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
7874
|
+
color?: string | undefined;
|
|
7875
|
+
}[] | undefined;
|
|
7636
7876
|
operatingData?: unknown;
|
|
7637
7877
|
width: number;
|
|
7638
7878
|
height: number;
|
|
@@ -7695,6 +7935,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
7695
7935
|
[x: string]: unknown;
|
|
7696
7936
|
id: string;
|
|
7697
7937
|
};
|
|
7938
|
+
} | {
|
|
7939
|
+
operatingType: "resetAll";
|
|
7940
|
+
rawData?: {
|
|
7941
|
+
[x: string]: unknown;
|
|
7942
|
+
id: string;
|
|
7943
|
+
} | undefined;
|
|
7698
7944
|
} | {
|
|
7699
7945
|
className: EnumModel.MACHINE_TOOL;
|
|
7700
7946
|
light?: {
|
|
@@ -7711,6 +7957,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
7711
7957
|
isOut: boolean;
|
|
7712
7958
|
} | undefined;
|
|
7713
7959
|
stationRotatable?: boolean | undefined;
|
|
7960
|
+
isWorking?: boolean | undefined;
|
|
7714
7961
|
operatingType?: "model" | undefined;
|
|
7715
7962
|
id: string;
|
|
7716
7963
|
rawData: {
|
|
@@ -7869,6 +8116,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
7869
8116
|
isIn: boolean;
|
|
7870
8117
|
isOut: boolean;
|
|
7871
8118
|
} | undefined;
|
|
8119
|
+
isWorking?: boolean | undefined;
|
|
7872
8120
|
operatingType?: "model" | undefined;
|
|
7873
8121
|
id: string;
|
|
7874
8122
|
rawData: {
|
|
@@ -8123,6 +8371,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
8123
8371
|
showShadow?: boolean | undefined;
|
|
8124
8372
|
showText?: boolean | undefined;
|
|
8125
8373
|
inFlow?: boolean | undefined;
|
|
8374
|
+
resources?: {
|
|
8375
|
+
name?: string | undefined;
|
|
8376
|
+
resourceId?: string | undefined;
|
|
8377
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
8378
|
+
color?: string | undefined;
|
|
8379
|
+
}[] | undefined;
|
|
8126
8380
|
operatingData?: unknown;
|
|
8127
8381
|
width: number;
|
|
8128
8382
|
height: number;
|
|
@@ -8183,6 +8437,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
8183
8437
|
[x: string]: unknown;
|
|
8184
8438
|
id: string;
|
|
8185
8439
|
};
|
|
8440
|
+
} | {
|
|
8441
|
+
operatingType: "resetAll";
|
|
8442
|
+
rawData?: {
|
|
8443
|
+
[x: string]: unknown;
|
|
8444
|
+
id: string;
|
|
8445
|
+
} | undefined;
|
|
8186
8446
|
} | {
|
|
8187
8447
|
className: EnumModel.MACHINE_TOOL;
|
|
8188
8448
|
light?: {
|
|
@@ -8199,6 +8459,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
8199
8459
|
isOut: boolean;
|
|
8200
8460
|
} | undefined;
|
|
8201
8461
|
stationRotatable?: boolean | undefined;
|
|
8462
|
+
isWorking?: boolean | undefined;
|
|
8202
8463
|
operatingType?: "model" | undefined;
|
|
8203
8464
|
id: string;
|
|
8204
8465
|
rawData: {
|
|
@@ -8357,6 +8618,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
8357
8618
|
isIn: boolean;
|
|
8358
8619
|
isOut: boolean;
|
|
8359
8620
|
} | undefined;
|
|
8621
|
+
isWorking?: boolean | undefined;
|
|
8360
8622
|
operatingType?: "model" | undefined;
|
|
8361
8623
|
id: string;
|
|
8362
8624
|
rawData: {
|
|
@@ -8609,6 +8871,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
8609
8871
|
showShadow?: boolean | undefined;
|
|
8610
8872
|
showText?: boolean | undefined;
|
|
8611
8873
|
inFlow?: boolean | undefined;
|
|
8874
|
+
resources?: {
|
|
8875
|
+
name?: string | undefined;
|
|
8876
|
+
resourceId?: string | undefined;
|
|
8877
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
8878
|
+
color?: string | undefined;
|
|
8879
|
+
}[] | undefined;
|
|
8612
8880
|
operatingData?: unknown;
|
|
8613
8881
|
width: number;
|
|
8614
8882
|
height: number;
|
|
@@ -8668,6 +8936,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
8668
8936
|
[x: string]: unknown;
|
|
8669
8937
|
id: string;
|
|
8670
8938
|
};
|
|
8939
|
+
} | {
|
|
8940
|
+
operatingType: "resetAll";
|
|
8941
|
+
rawData?: {
|
|
8942
|
+
[x: string]: unknown;
|
|
8943
|
+
id: string;
|
|
8944
|
+
} | undefined;
|
|
8671
8945
|
} | {
|
|
8672
8946
|
className: EnumModel.MACHINE_TOOL;
|
|
8673
8947
|
light?: {
|
|
@@ -8684,6 +8958,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
8684
8958
|
isOut: boolean;
|
|
8685
8959
|
} | undefined;
|
|
8686
8960
|
stationRotatable?: boolean | undefined;
|
|
8961
|
+
isWorking?: boolean | undefined;
|
|
8687
8962
|
operatingType?: "model" | undefined;
|
|
8688
8963
|
id: string;
|
|
8689
8964
|
rawData: {
|
|
@@ -8842,6 +9117,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
8842
9117
|
isIn: boolean;
|
|
8843
9118
|
isOut: boolean;
|
|
8844
9119
|
} | undefined;
|
|
9120
|
+
isWorking?: boolean | undefined;
|
|
8845
9121
|
operatingType?: "model" | undefined;
|
|
8846
9122
|
id: string;
|
|
8847
9123
|
rawData: {
|
|
@@ -9094,6 +9370,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
9094
9370
|
showShadow?: boolean | undefined;
|
|
9095
9371
|
showText?: boolean | undefined;
|
|
9096
9372
|
inFlow?: boolean | undefined;
|
|
9373
|
+
resources?: {
|
|
9374
|
+
name?: string | undefined;
|
|
9375
|
+
resourceId?: string | undefined;
|
|
9376
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
9377
|
+
color?: string | undefined;
|
|
9378
|
+
}[] | undefined;
|
|
9097
9379
|
operatingData?: unknown;
|
|
9098
9380
|
width: number;
|
|
9099
9381
|
height: number;
|
|
@@ -9153,6 +9435,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
9153
9435
|
[x: string]: unknown;
|
|
9154
9436
|
id: string;
|
|
9155
9437
|
};
|
|
9438
|
+
} | {
|
|
9439
|
+
operatingType: "resetAll";
|
|
9440
|
+
rawData?: {
|
|
9441
|
+
[x: string]: unknown;
|
|
9442
|
+
id: string;
|
|
9443
|
+
} | undefined;
|
|
9156
9444
|
} | {
|
|
9157
9445
|
className: EnumModel.MACHINE_TOOL;
|
|
9158
9446
|
light?: {
|
|
@@ -9169,6 +9457,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
9169
9457
|
isOut: boolean;
|
|
9170
9458
|
} | undefined;
|
|
9171
9459
|
stationRotatable?: boolean | undefined;
|
|
9460
|
+
isWorking?: boolean | undefined;
|
|
9172
9461
|
operatingType?: "model" | undefined;
|
|
9173
9462
|
id: string;
|
|
9174
9463
|
rawData: {
|
|
@@ -9327,6 +9616,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
9327
9616
|
isIn: boolean;
|
|
9328
9617
|
isOut: boolean;
|
|
9329
9618
|
} | undefined;
|
|
9619
|
+
isWorking?: boolean | undefined;
|
|
9330
9620
|
operatingType?: "model" | undefined;
|
|
9331
9621
|
id: string;
|
|
9332
9622
|
rawData: {
|
|
@@ -9590,6 +9880,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
9590
9880
|
showShadow?: boolean | undefined;
|
|
9591
9881
|
showText?: boolean | undefined;
|
|
9592
9882
|
inFlow?: boolean | undefined;
|
|
9883
|
+
resources?: {
|
|
9884
|
+
name?: string | undefined;
|
|
9885
|
+
resourceId?: string | undefined;
|
|
9886
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
9887
|
+
color?: string | undefined;
|
|
9888
|
+
}[] | undefined;
|
|
9593
9889
|
operatingData?: unknown;
|
|
9594
9890
|
width: number;
|
|
9595
9891
|
height: number;
|
|
@@ -9641,6 +9937,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
9641
9937
|
showShadow?: boolean | undefined;
|
|
9642
9938
|
showText?: boolean | undefined;
|
|
9643
9939
|
inFlow?: boolean | undefined;
|
|
9940
|
+
resources?: {
|
|
9941
|
+
name?: string | undefined;
|
|
9942
|
+
resourceId?: string | undefined;
|
|
9943
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
9944
|
+
color?: string | undefined;
|
|
9945
|
+
}[] | undefined;
|
|
9644
9946
|
operatingData?: unknown;
|
|
9645
9947
|
width: number;
|
|
9646
9948
|
height: number;
|
|
@@ -9700,6 +10002,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
9700
10002
|
[x: string]: unknown;
|
|
9701
10003
|
id: string;
|
|
9702
10004
|
};
|
|
10005
|
+
} | {
|
|
10006
|
+
operatingType: "resetAll";
|
|
10007
|
+
rawData?: {
|
|
10008
|
+
[x: string]: unknown;
|
|
10009
|
+
id: string;
|
|
10010
|
+
} | undefined;
|
|
9703
10011
|
} | {
|
|
9704
10012
|
className: EnumModel.MACHINE_TOOL;
|
|
9705
10013
|
light?: {
|
|
@@ -9716,6 +10024,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
9716
10024
|
isOut: boolean;
|
|
9717
10025
|
} | undefined;
|
|
9718
10026
|
stationRotatable?: boolean | undefined;
|
|
10027
|
+
isWorking?: boolean | undefined;
|
|
9719
10028
|
operatingType?: "model" | undefined;
|
|
9720
10029
|
id: string;
|
|
9721
10030
|
rawData: {
|
|
@@ -9874,6 +10183,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
9874
10183
|
isIn: boolean;
|
|
9875
10184
|
isOut: boolean;
|
|
9876
10185
|
} | undefined;
|
|
10186
|
+
isWorking?: boolean | undefined;
|
|
9877
10187
|
operatingType?: "model" | undefined;
|
|
9878
10188
|
id: string;
|
|
9879
10189
|
rawData: {
|
|
@@ -10137,6 +10447,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
10137
10447
|
showShadow?: boolean | undefined;
|
|
10138
10448
|
showText?: boolean | undefined;
|
|
10139
10449
|
inFlow?: boolean | undefined;
|
|
10450
|
+
resources?: {
|
|
10451
|
+
name?: string | undefined;
|
|
10452
|
+
resourceId?: string | undefined;
|
|
10453
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
10454
|
+
color?: string | undefined;
|
|
10455
|
+
}[] | undefined;
|
|
10140
10456
|
operatingData?: unknown;
|
|
10141
10457
|
width: number;
|
|
10142
10458
|
height: number;
|
|
@@ -10188,6 +10504,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
10188
10504
|
showShadow?: boolean | undefined;
|
|
10189
10505
|
showText?: boolean | undefined;
|
|
10190
10506
|
inFlow?: boolean | undefined;
|
|
10507
|
+
resources?: {
|
|
10508
|
+
name?: string | undefined;
|
|
10509
|
+
resourceId?: string | undefined;
|
|
10510
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
10511
|
+
color?: string | undefined;
|
|
10512
|
+
}[] | undefined;
|
|
10191
10513
|
operatingData?: unknown;
|
|
10192
10514
|
width: number;
|
|
10193
10515
|
height: number;
|
|
@@ -10247,6 +10569,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
10247
10569
|
[x: string]: unknown;
|
|
10248
10570
|
id: string;
|
|
10249
10571
|
};
|
|
10572
|
+
} | {
|
|
10573
|
+
operatingType: "resetAll";
|
|
10574
|
+
rawData?: {
|
|
10575
|
+
[x: string]: unknown;
|
|
10576
|
+
id: string;
|
|
10577
|
+
} | undefined;
|
|
10250
10578
|
} | {
|
|
10251
10579
|
className: EnumModel.MACHINE_TOOL;
|
|
10252
10580
|
light?: {
|
|
@@ -10263,6 +10591,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
10263
10591
|
isOut: boolean;
|
|
10264
10592
|
} | undefined;
|
|
10265
10593
|
stationRotatable?: boolean | undefined;
|
|
10594
|
+
isWorking?: boolean | undefined;
|
|
10266
10595
|
operatingType?: "model" | undefined;
|
|
10267
10596
|
id: string;
|
|
10268
10597
|
rawData: {
|
|
@@ -10421,6 +10750,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
10421
10750
|
isIn: boolean;
|
|
10422
10751
|
isOut: boolean;
|
|
10423
10752
|
} | undefined;
|
|
10753
|
+
isWorking?: boolean | undefined;
|
|
10424
10754
|
operatingType?: "model" | undefined;
|
|
10425
10755
|
id: string;
|
|
10426
10756
|
rawData: {
|
|
@@ -10682,6 +11012,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
10682
11012
|
showShadow?: boolean | undefined;
|
|
10683
11013
|
showText?: boolean | undefined;
|
|
10684
11014
|
inFlow?: boolean | undefined;
|
|
11015
|
+
resources?: {
|
|
11016
|
+
name?: string | undefined;
|
|
11017
|
+
resourceId?: string | undefined;
|
|
11018
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
11019
|
+
color?: string | undefined;
|
|
11020
|
+
}[] | undefined;
|
|
10685
11021
|
operatingData?: unknown;
|
|
10686
11022
|
width: number;
|
|
10687
11023
|
height: number;
|
|
@@ -10733,6 +11069,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
10733
11069
|
showShadow?: boolean | undefined;
|
|
10734
11070
|
showText?: boolean | undefined;
|
|
10735
11071
|
inFlow?: boolean | undefined;
|
|
11072
|
+
resources?: {
|
|
11073
|
+
name?: string | undefined;
|
|
11074
|
+
resourceId?: string | undefined;
|
|
11075
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
11076
|
+
color?: string | undefined;
|
|
11077
|
+
}[] | undefined;
|
|
10736
11078
|
operatingData?: unknown;
|
|
10737
11079
|
width: number;
|
|
10738
11080
|
height: number;
|
|
@@ -10792,6 +11134,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
10792
11134
|
[x: string]: unknown;
|
|
10793
11135
|
id: string;
|
|
10794
11136
|
};
|
|
11137
|
+
} | {
|
|
11138
|
+
operatingType: "resetAll";
|
|
11139
|
+
rawData?: {
|
|
11140
|
+
[x: string]: unknown;
|
|
11141
|
+
id: string;
|
|
11142
|
+
} | undefined;
|
|
10795
11143
|
} | {
|
|
10796
11144
|
className: EnumModel.MACHINE_TOOL;
|
|
10797
11145
|
light?: {
|
|
@@ -10808,6 +11156,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
10808
11156
|
isOut: boolean;
|
|
10809
11157
|
} | undefined;
|
|
10810
11158
|
stationRotatable?: boolean | undefined;
|
|
11159
|
+
isWorking?: boolean | undefined;
|
|
10811
11160
|
operatingType?: "model" | undefined;
|
|
10812
11161
|
id: string;
|
|
10813
11162
|
rawData: {
|
|
@@ -10966,6 +11315,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
10966
11315
|
isIn: boolean;
|
|
10967
11316
|
isOut: boolean;
|
|
10968
11317
|
} | undefined;
|
|
11318
|
+
isWorking?: boolean | undefined;
|
|
10969
11319
|
operatingType?: "model" | undefined;
|
|
10970
11320
|
id: string;
|
|
10971
11321
|
rawData: {
|
|
@@ -11228,6 +11578,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
11228
11578
|
[x: string]: unknown;
|
|
11229
11579
|
id: string;
|
|
11230
11580
|
};
|
|
11581
|
+
} | {
|
|
11582
|
+
operatingType: "resetAll";
|
|
11583
|
+
rawData?: {
|
|
11584
|
+
[x: string]: unknown;
|
|
11585
|
+
id: string;
|
|
11586
|
+
} | undefined;
|
|
11231
11587
|
} | {
|
|
11232
11588
|
className: EnumModel.MACHINE_TOOL;
|
|
11233
11589
|
light?: {
|
|
@@ -11244,6 +11600,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
11244
11600
|
isOut: boolean;
|
|
11245
11601
|
} | undefined;
|
|
11246
11602
|
stationRotatable?: boolean | undefined;
|
|
11603
|
+
isWorking?: boolean | undefined;
|
|
11247
11604
|
operatingType?: "model" | undefined;
|
|
11248
11605
|
id: string;
|
|
11249
11606
|
rawData: {
|
|
@@ -11402,6 +11759,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
11402
11759
|
isIn: boolean;
|
|
11403
11760
|
isOut: boolean;
|
|
11404
11761
|
} | undefined;
|
|
11762
|
+
isWorking?: boolean | undefined;
|
|
11405
11763
|
operatingType?: "model" | undefined;
|
|
11406
11764
|
id: string;
|
|
11407
11765
|
rawData: {
|
|
@@ -11662,6 +12020,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
11662
12020
|
showShadow?: boolean | undefined;
|
|
11663
12021
|
showText?: boolean | undefined;
|
|
11664
12022
|
inFlow?: boolean | undefined;
|
|
12023
|
+
resources?: {
|
|
12024
|
+
name?: string | undefined;
|
|
12025
|
+
resourceId?: string | undefined;
|
|
12026
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
12027
|
+
color?: string | undefined;
|
|
12028
|
+
}[] | undefined;
|
|
11665
12029
|
operatingData?: unknown;
|
|
11666
12030
|
width: number;
|
|
11667
12031
|
height: number;
|
|
@@ -11713,6 +12077,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
11713
12077
|
showShadow?: boolean | undefined;
|
|
11714
12078
|
showText?: boolean | undefined;
|
|
11715
12079
|
inFlow?: boolean | undefined;
|
|
12080
|
+
resources?: {
|
|
12081
|
+
name?: string | undefined;
|
|
12082
|
+
resourceId?: string | undefined;
|
|
12083
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
12084
|
+
color?: string | undefined;
|
|
12085
|
+
}[] | undefined;
|
|
11716
12086
|
operatingData?: unknown;
|
|
11717
12087
|
width: number;
|
|
11718
12088
|
height: number;
|
|
@@ -11772,6 +12142,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
11772
12142
|
[x: string]: unknown;
|
|
11773
12143
|
id: string;
|
|
11774
12144
|
};
|
|
12145
|
+
} | {
|
|
12146
|
+
operatingType: "resetAll";
|
|
12147
|
+
rawData?: {
|
|
12148
|
+
[x: string]: unknown;
|
|
12149
|
+
id: string;
|
|
12150
|
+
} | undefined;
|
|
11775
12151
|
} | {
|
|
11776
12152
|
className: EnumModel.MACHINE_TOOL;
|
|
11777
12153
|
light?: {
|
|
@@ -11788,6 +12164,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
11788
12164
|
isOut: boolean;
|
|
11789
12165
|
} | undefined;
|
|
11790
12166
|
stationRotatable?: boolean | undefined;
|
|
12167
|
+
isWorking?: boolean | undefined;
|
|
11791
12168
|
operatingType?: "model" | undefined;
|
|
11792
12169
|
id: string;
|
|
11793
12170
|
rawData: {
|
|
@@ -11946,6 +12323,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
11946
12323
|
isIn: boolean;
|
|
11947
12324
|
isOut: boolean;
|
|
11948
12325
|
} | undefined;
|
|
12326
|
+
isWorking?: boolean | undefined;
|
|
11949
12327
|
operatingType?: "model" | undefined;
|
|
11950
12328
|
id: string;
|
|
11951
12329
|
rawData: {
|
|
@@ -12207,6 +12585,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
12207
12585
|
showShadow?: boolean | undefined;
|
|
12208
12586
|
showText?: boolean | undefined;
|
|
12209
12587
|
inFlow?: boolean | undefined;
|
|
12588
|
+
resources?: {
|
|
12589
|
+
name?: string | undefined;
|
|
12590
|
+
resourceId?: string | undefined;
|
|
12591
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
12592
|
+
color?: string | undefined;
|
|
12593
|
+
}[] | undefined;
|
|
12210
12594
|
operatingData?: unknown;
|
|
12211
12595
|
width: number;
|
|
12212
12596
|
height: number;
|
|
@@ -12258,6 +12642,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
12258
12642
|
showShadow?: boolean | undefined;
|
|
12259
12643
|
showText?: boolean | undefined;
|
|
12260
12644
|
inFlow?: boolean | undefined;
|
|
12645
|
+
resources?: {
|
|
12646
|
+
name?: string | undefined;
|
|
12647
|
+
resourceId?: string | undefined;
|
|
12648
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
12649
|
+
color?: string | undefined;
|
|
12650
|
+
}[] | undefined;
|
|
12261
12651
|
operatingData?: unknown;
|
|
12262
12652
|
width: number;
|
|
12263
12653
|
height: number;
|
|
@@ -12318,6 +12708,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
12318
12708
|
[x: string]: unknown;
|
|
12319
12709
|
id: string;
|
|
12320
12710
|
};
|
|
12711
|
+
} | {
|
|
12712
|
+
operatingType: "resetAll";
|
|
12713
|
+
rawData?: {
|
|
12714
|
+
[x: string]: unknown;
|
|
12715
|
+
id: string;
|
|
12716
|
+
} | undefined;
|
|
12321
12717
|
} | {
|
|
12322
12718
|
className: EnumModel.MACHINE_TOOL;
|
|
12323
12719
|
light?: {
|
|
@@ -12334,6 +12730,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
12334
12730
|
isOut: boolean;
|
|
12335
12731
|
} | undefined;
|
|
12336
12732
|
stationRotatable?: boolean | undefined;
|
|
12733
|
+
isWorking?: boolean | undefined;
|
|
12337
12734
|
operatingType?: "model" | undefined;
|
|
12338
12735
|
id: string;
|
|
12339
12736
|
rawData: {
|
|
@@ -12492,6 +12889,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
12492
12889
|
isIn: boolean;
|
|
12493
12890
|
isOut: boolean;
|
|
12494
12891
|
} | undefined;
|
|
12892
|
+
isWorking?: boolean | undefined;
|
|
12495
12893
|
operatingType?: "model" | undefined;
|
|
12496
12894
|
id: string;
|
|
12497
12895
|
rawData: {
|
|
@@ -12746,6 +13144,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
12746
13144
|
showShadow?: boolean | undefined;
|
|
12747
13145
|
showText?: boolean | undefined;
|
|
12748
13146
|
inFlow?: boolean | undefined;
|
|
13147
|
+
resources?: {
|
|
13148
|
+
name?: string | undefined;
|
|
13149
|
+
resourceId?: string | undefined;
|
|
13150
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
13151
|
+
color?: string | undefined;
|
|
13152
|
+
}[] | undefined;
|
|
12749
13153
|
operatingData?: unknown;
|
|
12750
13154
|
width: number;
|
|
12751
13155
|
height: number;
|
|
@@ -12805,6 +13209,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
12805
13209
|
[x: string]: unknown;
|
|
12806
13210
|
id: string;
|
|
12807
13211
|
};
|
|
13212
|
+
} | {
|
|
13213
|
+
operatingType: "resetAll";
|
|
13214
|
+
rawData?: {
|
|
13215
|
+
[x: string]: unknown;
|
|
13216
|
+
id: string;
|
|
13217
|
+
} | undefined;
|
|
12808
13218
|
} | {
|
|
12809
13219
|
className: EnumModel.MACHINE_TOOL;
|
|
12810
13220
|
light?: {
|
|
@@ -12821,6 +13231,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
12821
13231
|
isOut: boolean;
|
|
12822
13232
|
} | undefined;
|
|
12823
13233
|
stationRotatable?: boolean | undefined;
|
|
13234
|
+
isWorking?: boolean | undefined;
|
|
12824
13235
|
operatingType?: "model" | undefined;
|
|
12825
13236
|
id: string;
|
|
12826
13237
|
rawData: {
|
|
@@ -12979,6 +13390,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
12979
13390
|
isIn: boolean;
|
|
12980
13391
|
isOut: boolean;
|
|
12981
13392
|
} | undefined;
|
|
13393
|
+
isWorking?: boolean | undefined;
|
|
12982
13394
|
operatingType?: "model" | undefined;
|
|
12983
13395
|
id: string;
|
|
12984
13396
|
rawData: {
|
|
@@ -13282,6 +13694,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
13282
13694
|
showShadow?: boolean | undefined;
|
|
13283
13695
|
showText?: boolean | undefined;
|
|
13284
13696
|
inFlow?: boolean | undefined;
|
|
13697
|
+
resources?: {
|
|
13698
|
+
name?: string | undefined;
|
|
13699
|
+
resourceId?: string | undefined;
|
|
13700
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
13701
|
+
color?: string | undefined;
|
|
13702
|
+
}[] | undefined;
|
|
13285
13703
|
operatingData?: unknown;
|
|
13286
13704
|
width: number;
|
|
13287
13705
|
height: number;
|
|
@@ -13341,6 +13759,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
13341
13759
|
[x: string]: unknown;
|
|
13342
13760
|
id: string;
|
|
13343
13761
|
};
|
|
13762
|
+
} | {
|
|
13763
|
+
operatingType: "resetAll";
|
|
13764
|
+
rawData?: {
|
|
13765
|
+
[x: string]: unknown;
|
|
13766
|
+
id: string;
|
|
13767
|
+
} | undefined;
|
|
13344
13768
|
} | {
|
|
13345
13769
|
className: EnumModel.MACHINE_TOOL;
|
|
13346
13770
|
light?: {
|
|
@@ -13357,6 +13781,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
13357
13781
|
isOut: boolean;
|
|
13358
13782
|
} | undefined;
|
|
13359
13783
|
stationRotatable?: boolean | undefined;
|
|
13784
|
+
isWorking?: boolean | undefined;
|
|
13360
13785
|
operatingType?: "model" | undefined;
|
|
13361
13786
|
id: string;
|
|
13362
13787
|
rawData: {
|
|
@@ -13515,6 +13940,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
13515
13940
|
isIn: boolean;
|
|
13516
13941
|
isOut: boolean;
|
|
13517
13942
|
} | undefined;
|
|
13943
|
+
isWorking?: boolean | undefined;
|
|
13518
13944
|
operatingType?: "model" | undefined;
|
|
13519
13945
|
id: string;
|
|
13520
13946
|
rawData: {
|
|
@@ -13768,6 +14194,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
13768
14194
|
showShadow?: boolean | undefined;
|
|
13769
14195
|
showText?: boolean | undefined;
|
|
13770
14196
|
inFlow?: boolean | undefined;
|
|
14197
|
+
resources?: {
|
|
14198
|
+
name?: string | undefined;
|
|
14199
|
+
resourceId?: string | undefined;
|
|
14200
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
14201
|
+
color?: string | undefined;
|
|
14202
|
+
}[] | undefined;
|
|
13771
14203
|
operatingData?: unknown;
|
|
13772
14204
|
width: number;
|
|
13773
14205
|
height: number;
|
|
@@ -13827,6 +14259,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
13827
14259
|
[x: string]: unknown;
|
|
13828
14260
|
id: string;
|
|
13829
14261
|
};
|
|
14262
|
+
} | {
|
|
14263
|
+
operatingType: "resetAll";
|
|
14264
|
+
rawData?: {
|
|
14265
|
+
[x: string]: unknown;
|
|
14266
|
+
id: string;
|
|
14267
|
+
} | undefined;
|
|
13830
14268
|
} | {
|
|
13831
14269
|
className: EnumModel.MACHINE_TOOL;
|
|
13832
14270
|
light?: {
|
|
@@ -13843,6 +14281,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
13843
14281
|
isOut: boolean;
|
|
13844
14282
|
} | undefined;
|
|
13845
14283
|
stationRotatable?: boolean | undefined;
|
|
14284
|
+
isWorking?: boolean | undefined;
|
|
13846
14285
|
operatingType?: "model" | undefined;
|
|
13847
14286
|
id: string;
|
|
13848
14287
|
rawData: {
|
|
@@ -14001,6 +14440,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
14001
14440
|
isIn: boolean;
|
|
14002
14441
|
isOut: boolean;
|
|
14003
14442
|
} | undefined;
|
|
14443
|
+
isWorking?: boolean | undefined;
|
|
14004
14444
|
operatingType?: "model" | undefined;
|
|
14005
14445
|
id: string;
|
|
14006
14446
|
rawData: {
|
|
@@ -14255,6 +14695,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
14255
14695
|
showShadow?: boolean | undefined;
|
|
14256
14696
|
showText?: boolean | undefined;
|
|
14257
14697
|
inFlow?: boolean | undefined;
|
|
14698
|
+
resources?: {
|
|
14699
|
+
name?: string | undefined;
|
|
14700
|
+
resourceId?: string | undefined;
|
|
14701
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
14702
|
+
color?: string | undefined;
|
|
14703
|
+
}[] | undefined;
|
|
14258
14704
|
operatingData?: unknown;
|
|
14259
14705
|
width: number;
|
|
14260
14706
|
height: number;
|
|
@@ -14317,6 +14763,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
14317
14763
|
[x: string]: unknown;
|
|
14318
14764
|
id: string;
|
|
14319
14765
|
};
|
|
14766
|
+
} | {
|
|
14767
|
+
operatingType: "resetAll";
|
|
14768
|
+
rawData?: {
|
|
14769
|
+
[x: string]: unknown;
|
|
14770
|
+
id: string;
|
|
14771
|
+
} | undefined;
|
|
14320
14772
|
} | {
|
|
14321
14773
|
className: EnumModel.MACHINE_TOOL;
|
|
14322
14774
|
light?: {
|
|
@@ -14333,6 +14785,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
14333
14785
|
isOut: boolean;
|
|
14334
14786
|
} | undefined;
|
|
14335
14787
|
stationRotatable?: boolean | undefined;
|
|
14788
|
+
isWorking?: boolean | undefined;
|
|
14336
14789
|
operatingType?: "model" | undefined;
|
|
14337
14790
|
id: string;
|
|
14338
14791
|
rawData: {
|
|
@@ -14491,6 +14944,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
14491
14944
|
isIn: boolean;
|
|
14492
14945
|
isOut: boolean;
|
|
14493
14946
|
} | undefined;
|
|
14947
|
+
isWorking?: boolean | undefined;
|
|
14494
14948
|
operatingType?: "model" | undefined;
|
|
14495
14949
|
id: string;
|
|
14496
14950
|
rawData: {
|
|
@@ -14745,6 +15199,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
14745
15199
|
showShadow?: boolean | undefined;
|
|
14746
15200
|
showText?: boolean | undefined;
|
|
14747
15201
|
inFlow?: boolean | undefined;
|
|
15202
|
+
resources?: {
|
|
15203
|
+
name?: string | undefined;
|
|
15204
|
+
resourceId?: string | undefined;
|
|
15205
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
15206
|
+
color?: string | undefined;
|
|
15207
|
+
}[] | undefined;
|
|
14748
15208
|
operatingData?: unknown;
|
|
14749
15209
|
width: number;
|
|
14750
15210
|
height: number;
|
|
@@ -14805,6 +15265,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
14805
15265
|
[x: string]: unknown;
|
|
14806
15266
|
id: string;
|
|
14807
15267
|
};
|
|
15268
|
+
} | {
|
|
15269
|
+
operatingType: "resetAll";
|
|
15270
|
+
rawData?: {
|
|
15271
|
+
[x: string]: unknown;
|
|
15272
|
+
id: string;
|
|
15273
|
+
} | undefined;
|
|
14808
15274
|
} | {
|
|
14809
15275
|
className: EnumModel.MACHINE_TOOL;
|
|
14810
15276
|
light?: {
|
|
@@ -14821,6 +15287,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
14821
15287
|
isOut: boolean;
|
|
14822
15288
|
} | undefined;
|
|
14823
15289
|
stationRotatable?: boolean | undefined;
|
|
15290
|
+
isWorking?: boolean | undefined;
|
|
14824
15291
|
operatingType?: "model" | undefined;
|
|
14825
15292
|
id: string;
|
|
14826
15293
|
rawData: {
|
|
@@ -14979,6 +15446,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
14979
15446
|
isIn: boolean;
|
|
14980
15447
|
isOut: boolean;
|
|
14981
15448
|
} | undefined;
|
|
15449
|
+
isWorking?: boolean | undefined;
|
|
14982
15450
|
operatingType?: "model" | undefined;
|
|
14983
15451
|
id: string;
|
|
14984
15452
|
rawData: {
|
|
@@ -15231,6 +15699,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
15231
15699
|
showShadow?: boolean | undefined;
|
|
15232
15700
|
showText?: boolean | undefined;
|
|
15233
15701
|
inFlow?: boolean | undefined;
|
|
15702
|
+
resources?: {
|
|
15703
|
+
name?: string | undefined;
|
|
15704
|
+
resourceId?: string | undefined;
|
|
15705
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
15706
|
+
color?: string | undefined;
|
|
15707
|
+
}[] | undefined;
|
|
15234
15708
|
operatingData?: unknown;
|
|
15235
15709
|
width: number;
|
|
15236
15710
|
height: number;
|
|
@@ -15290,6 +15764,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
15290
15764
|
[x: string]: unknown;
|
|
15291
15765
|
id: string;
|
|
15292
15766
|
};
|
|
15767
|
+
} | {
|
|
15768
|
+
operatingType: "resetAll";
|
|
15769
|
+
rawData?: {
|
|
15770
|
+
[x: string]: unknown;
|
|
15771
|
+
id: string;
|
|
15772
|
+
} | undefined;
|
|
15293
15773
|
} | {
|
|
15294
15774
|
className: EnumModel.MACHINE_TOOL;
|
|
15295
15775
|
light?: {
|
|
@@ -15306,6 +15786,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
15306
15786
|
isOut: boolean;
|
|
15307
15787
|
} | undefined;
|
|
15308
15788
|
stationRotatable?: boolean | undefined;
|
|
15789
|
+
isWorking?: boolean | undefined;
|
|
15309
15790
|
operatingType?: "model" | undefined;
|
|
15310
15791
|
id: string;
|
|
15311
15792
|
rawData: {
|
|
@@ -15464,6 +15945,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
15464
15945
|
isIn: boolean;
|
|
15465
15946
|
isOut: boolean;
|
|
15466
15947
|
} | undefined;
|
|
15948
|
+
isWorking?: boolean | undefined;
|
|
15467
15949
|
operatingType?: "model" | undefined;
|
|
15468
15950
|
id: string;
|
|
15469
15951
|
rawData: {
|
|
@@ -15716,6 +16198,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
15716
16198
|
showShadow?: boolean | undefined;
|
|
15717
16199
|
showText?: boolean | undefined;
|
|
15718
16200
|
inFlow?: boolean | undefined;
|
|
16201
|
+
resources?: {
|
|
16202
|
+
name?: string | undefined;
|
|
16203
|
+
resourceId?: string | undefined;
|
|
16204
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
16205
|
+
color?: string | undefined;
|
|
16206
|
+
}[] | undefined;
|
|
15719
16207
|
operatingData?: unknown;
|
|
15720
16208
|
width: number;
|
|
15721
16209
|
height: number;
|
|
@@ -15775,6 +16263,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
15775
16263
|
[x: string]: unknown;
|
|
15776
16264
|
id: string;
|
|
15777
16265
|
};
|
|
16266
|
+
} | {
|
|
16267
|
+
operatingType: "resetAll";
|
|
16268
|
+
rawData?: {
|
|
16269
|
+
[x: string]: unknown;
|
|
16270
|
+
id: string;
|
|
16271
|
+
} | undefined;
|
|
15778
16272
|
} | {
|
|
15779
16273
|
className: EnumModel.MACHINE_TOOL;
|
|
15780
16274
|
light?: {
|
|
@@ -15791,6 +16285,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
15791
16285
|
isOut: boolean;
|
|
15792
16286
|
} | undefined;
|
|
15793
16287
|
stationRotatable?: boolean | undefined;
|
|
16288
|
+
isWorking?: boolean | undefined;
|
|
15794
16289
|
operatingType?: "model" | undefined;
|
|
15795
16290
|
id: string;
|
|
15796
16291
|
rawData: {
|
|
@@ -15949,6 +16444,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
15949
16444
|
isIn: boolean;
|
|
15950
16445
|
isOut: boolean;
|
|
15951
16446
|
} | undefined;
|
|
16447
|
+
isWorking?: boolean | undefined;
|
|
15952
16448
|
operatingType?: "model" | undefined;
|
|
15953
16449
|
id: string;
|
|
15954
16450
|
rawData: {
|
|
@@ -16212,6 +16708,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16212
16708
|
showShadow?: boolean | undefined;
|
|
16213
16709
|
showText?: boolean | undefined;
|
|
16214
16710
|
inFlow?: boolean | undefined;
|
|
16711
|
+
resources?: {
|
|
16712
|
+
name?: string | undefined;
|
|
16713
|
+
resourceId?: string | undefined;
|
|
16714
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
16715
|
+
color?: string | undefined;
|
|
16716
|
+
}[] | undefined;
|
|
16215
16717
|
operatingData?: unknown;
|
|
16216
16718
|
width: number;
|
|
16217
16719
|
height: number;
|
|
@@ -16263,6 +16765,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16263
16765
|
showShadow?: boolean | undefined;
|
|
16264
16766
|
showText?: boolean | undefined;
|
|
16265
16767
|
inFlow?: boolean | undefined;
|
|
16768
|
+
resources?: {
|
|
16769
|
+
name?: string | undefined;
|
|
16770
|
+
resourceId?: string | undefined;
|
|
16771
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
16772
|
+
color?: string | undefined;
|
|
16773
|
+
}[] | undefined;
|
|
16266
16774
|
operatingData?: unknown;
|
|
16267
16775
|
width: number;
|
|
16268
16776
|
height: number;
|
|
@@ -16322,6 +16830,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16322
16830
|
[x: string]: unknown;
|
|
16323
16831
|
id: string;
|
|
16324
16832
|
};
|
|
16833
|
+
} | {
|
|
16834
|
+
operatingType: "resetAll";
|
|
16835
|
+
rawData?: {
|
|
16836
|
+
[x: string]: unknown;
|
|
16837
|
+
id: string;
|
|
16838
|
+
} | undefined;
|
|
16325
16839
|
} | {
|
|
16326
16840
|
className: EnumModel.MACHINE_TOOL;
|
|
16327
16841
|
light?: {
|
|
@@ -16338,6 +16852,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16338
16852
|
isOut: boolean;
|
|
16339
16853
|
} | undefined;
|
|
16340
16854
|
stationRotatable?: boolean | undefined;
|
|
16855
|
+
isWorking?: boolean | undefined;
|
|
16341
16856
|
operatingType?: "model" | undefined;
|
|
16342
16857
|
id: string;
|
|
16343
16858
|
rawData: {
|
|
@@ -16496,6 +17011,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16496
17011
|
isIn: boolean;
|
|
16497
17012
|
isOut: boolean;
|
|
16498
17013
|
} | undefined;
|
|
17014
|
+
isWorking?: boolean | undefined;
|
|
16499
17015
|
operatingType?: "model" | undefined;
|
|
16500
17016
|
id: string;
|
|
16501
17017
|
rawData: {
|
|
@@ -16759,6 +17275,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16759
17275
|
showShadow?: boolean | undefined;
|
|
16760
17276
|
showText?: boolean | undefined;
|
|
16761
17277
|
inFlow?: boolean | undefined;
|
|
17278
|
+
resources?: {
|
|
17279
|
+
name?: string | undefined;
|
|
17280
|
+
resourceId?: string | undefined;
|
|
17281
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
17282
|
+
color?: string | undefined;
|
|
17283
|
+
}[] | undefined;
|
|
16762
17284
|
operatingData?: unknown;
|
|
16763
17285
|
width: number;
|
|
16764
17286
|
height: number;
|
|
@@ -16810,6 +17332,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16810
17332
|
showShadow?: boolean | undefined;
|
|
16811
17333
|
showText?: boolean | undefined;
|
|
16812
17334
|
inFlow?: boolean | undefined;
|
|
17335
|
+
resources?: {
|
|
17336
|
+
name?: string | undefined;
|
|
17337
|
+
resourceId?: string | undefined;
|
|
17338
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
17339
|
+
color?: string | undefined;
|
|
17340
|
+
}[] | undefined;
|
|
16813
17341
|
operatingData?: unknown;
|
|
16814
17342
|
width: number;
|
|
16815
17343
|
height: number;
|
|
@@ -16869,6 +17397,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16869
17397
|
[x: string]: unknown;
|
|
16870
17398
|
id: string;
|
|
16871
17399
|
};
|
|
17400
|
+
} | {
|
|
17401
|
+
operatingType: "resetAll";
|
|
17402
|
+
rawData?: {
|
|
17403
|
+
[x: string]: unknown;
|
|
17404
|
+
id: string;
|
|
17405
|
+
} | undefined;
|
|
16872
17406
|
} | {
|
|
16873
17407
|
className: EnumModel.MACHINE_TOOL;
|
|
16874
17408
|
light?: {
|
|
@@ -16885,6 +17419,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
16885
17419
|
isOut: boolean;
|
|
16886
17420
|
} | undefined;
|
|
16887
17421
|
stationRotatable?: boolean | undefined;
|
|
17422
|
+
isWorking?: boolean | undefined;
|
|
16888
17423
|
operatingType?: "model" | undefined;
|
|
16889
17424
|
id: string;
|
|
16890
17425
|
rawData: {
|
|
@@ -17043,6 +17578,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
17043
17578
|
isIn: boolean;
|
|
17044
17579
|
isOut: boolean;
|
|
17045
17580
|
} | undefined;
|
|
17581
|
+
isWorking?: boolean | undefined;
|
|
17046
17582
|
operatingType?: "model" | undefined;
|
|
17047
17583
|
id: string;
|
|
17048
17584
|
rawData: {
|
|
@@ -17304,6 +17840,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
17304
17840
|
showShadow?: boolean | undefined;
|
|
17305
17841
|
showText?: boolean | undefined;
|
|
17306
17842
|
inFlow?: boolean | undefined;
|
|
17843
|
+
resources?: {
|
|
17844
|
+
name?: string | undefined;
|
|
17845
|
+
resourceId?: string | undefined;
|
|
17846
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
17847
|
+
color?: string | undefined;
|
|
17848
|
+
}[] | undefined;
|
|
17307
17849
|
operatingData?: unknown;
|
|
17308
17850
|
width: number;
|
|
17309
17851
|
height: number;
|
|
@@ -17355,6 +17897,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
17355
17897
|
showShadow?: boolean | undefined;
|
|
17356
17898
|
showText?: boolean | undefined;
|
|
17357
17899
|
inFlow?: boolean | undefined;
|
|
17900
|
+
resources?: {
|
|
17901
|
+
name?: string | undefined;
|
|
17902
|
+
resourceId?: string | undefined;
|
|
17903
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
17904
|
+
color?: string | undefined;
|
|
17905
|
+
}[] | undefined;
|
|
17358
17906
|
operatingData?: unknown;
|
|
17359
17907
|
width: number;
|
|
17360
17908
|
height: number;
|
|
@@ -17414,6 +17962,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
17414
17962
|
[x: string]: unknown;
|
|
17415
17963
|
id: string;
|
|
17416
17964
|
};
|
|
17965
|
+
} | {
|
|
17966
|
+
operatingType: "resetAll";
|
|
17967
|
+
rawData?: {
|
|
17968
|
+
[x: string]: unknown;
|
|
17969
|
+
id: string;
|
|
17970
|
+
} | undefined;
|
|
17417
17971
|
} | {
|
|
17418
17972
|
className: EnumModel.MACHINE_TOOL;
|
|
17419
17973
|
light?: {
|
|
@@ -17430,6 +17984,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
17430
17984
|
isOut: boolean;
|
|
17431
17985
|
} | undefined;
|
|
17432
17986
|
stationRotatable?: boolean | undefined;
|
|
17987
|
+
isWorking?: boolean | undefined;
|
|
17433
17988
|
operatingType?: "model" | undefined;
|
|
17434
17989
|
id: string;
|
|
17435
17990
|
rawData: {
|
|
@@ -17588,6 +18143,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
17588
18143
|
isIn: boolean;
|
|
17589
18144
|
isOut: boolean;
|
|
17590
18145
|
} | undefined;
|
|
18146
|
+
isWorking?: boolean | undefined;
|
|
17591
18147
|
operatingType?: "model" | undefined;
|
|
17592
18148
|
id: string;
|
|
17593
18149
|
rawData: {
|
|
@@ -17850,6 +18406,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
17850
18406
|
[x: string]: unknown;
|
|
17851
18407
|
id: string;
|
|
17852
18408
|
};
|
|
18409
|
+
} | {
|
|
18410
|
+
operatingType: "resetAll";
|
|
18411
|
+
rawData?: {
|
|
18412
|
+
[x: string]: unknown;
|
|
18413
|
+
id: string;
|
|
18414
|
+
} | undefined;
|
|
17853
18415
|
} | {
|
|
17854
18416
|
className: EnumModel.MACHINE_TOOL;
|
|
17855
18417
|
light?: {
|
|
@@ -17866,6 +18428,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
17866
18428
|
isOut: boolean;
|
|
17867
18429
|
} | undefined;
|
|
17868
18430
|
stationRotatable?: boolean | undefined;
|
|
18431
|
+
isWorking?: boolean | undefined;
|
|
17869
18432
|
operatingType?: "model" | undefined;
|
|
17870
18433
|
id: string;
|
|
17871
18434
|
rawData: {
|
|
@@ -18024,6 +18587,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
18024
18587
|
isIn: boolean;
|
|
18025
18588
|
isOut: boolean;
|
|
18026
18589
|
} | undefined;
|
|
18590
|
+
isWorking?: boolean | undefined;
|
|
18027
18591
|
operatingType?: "model" | undefined;
|
|
18028
18592
|
id: string;
|
|
18029
18593
|
rawData: {
|
|
@@ -18284,6 +18848,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
18284
18848
|
showShadow?: boolean | undefined;
|
|
18285
18849
|
showText?: boolean | undefined;
|
|
18286
18850
|
inFlow?: boolean | undefined;
|
|
18851
|
+
resources?: {
|
|
18852
|
+
name?: string | undefined;
|
|
18853
|
+
resourceId?: string | undefined;
|
|
18854
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
18855
|
+
color?: string | undefined;
|
|
18856
|
+
}[] | undefined;
|
|
18287
18857
|
operatingData?: unknown;
|
|
18288
18858
|
width: number;
|
|
18289
18859
|
height: number;
|
|
@@ -18335,6 +18905,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
18335
18905
|
showShadow?: boolean | undefined;
|
|
18336
18906
|
showText?: boolean | undefined;
|
|
18337
18907
|
inFlow?: boolean | undefined;
|
|
18908
|
+
resources?: {
|
|
18909
|
+
name?: string | undefined;
|
|
18910
|
+
resourceId?: string | undefined;
|
|
18911
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
18912
|
+
color?: string | undefined;
|
|
18913
|
+
}[] | undefined;
|
|
18338
18914
|
operatingData?: unknown;
|
|
18339
18915
|
width: number;
|
|
18340
18916
|
height: number;
|
|
@@ -18394,6 +18970,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
18394
18970
|
[x: string]: unknown;
|
|
18395
18971
|
id: string;
|
|
18396
18972
|
};
|
|
18973
|
+
} | {
|
|
18974
|
+
operatingType: "resetAll";
|
|
18975
|
+
rawData?: {
|
|
18976
|
+
[x: string]: unknown;
|
|
18977
|
+
id: string;
|
|
18978
|
+
} | undefined;
|
|
18397
18979
|
} | {
|
|
18398
18980
|
className: EnumModel.MACHINE_TOOL;
|
|
18399
18981
|
light?: {
|
|
@@ -18410,6 +18992,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
18410
18992
|
isOut: boolean;
|
|
18411
18993
|
} | undefined;
|
|
18412
18994
|
stationRotatable?: boolean | undefined;
|
|
18995
|
+
isWorking?: boolean | undefined;
|
|
18413
18996
|
operatingType?: "model" | undefined;
|
|
18414
18997
|
id: string;
|
|
18415
18998
|
rawData: {
|
|
@@ -18568,6 +19151,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
18568
19151
|
isIn: boolean;
|
|
18569
19152
|
isOut: boolean;
|
|
18570
19153
|
} | undefined;
|
|
19154
|
+
isWorking?: boolean | undefined;
|
|
18571
19155
|
operatingType?: "model" | undefined;
|
|
18572
19156
|
id: string;
|
|
18573
19157
|
rawData: {
|
|
@@ -18829,6 +19413,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
18829
19413
|
showShadow?: boolean | undefined;
|
|
18830
19414
|
showText?: boolean | undefined;
|
|
18831
19415
|
inFlow?: boolean | undefined;
|
|
19416
|
+
resources?: {
|
|
19417
|
+
name?: string | undefined;
|
|
19418
|
+
resourceId?: string | undefined;
|
|
19419
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
19420
|
+
color?: string | undefined;
|
|
19421
|
+
}[] | undefined;
|
|
18832
19422
|
operatingData?: unknown;
|
|
18833
19423
|
width: number;
|
|
18834
19424
|
height: number;
|
|
@@ -18880,6 +19470,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
18880
19470
|
showShadow?: boolean | undefined;
|
|
18881
19471
|
showText?: boolean | undefined;
|
|
18882
19472
|
inFlow?: boolean | undefined;
|
|
19473
|
+
resources?: {
|
|
19474
|
+
name?: string | undefined;
|
|
19475
|
+
resourceId?: string | undefined;
|
|
19476
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
19477
|
+
color?: string | undefined;
|
|
19478
|
+
}[] | undefined;
|
|
18883
19479
|
operatingData?: unknown;
|
|
18884
19480
|
width: number;
|
|
18885
19481
|
height: number;
|
|
@@ -18940,6 +19536,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
18940
19536
|
[x: string]: unknown;
|
|
18941
19537
|
id: string;
|
|
18942
19538
|
};
|
|
19539
|
+
} | {
|
|
19540
|
+
operatingType: "resetAll";
|
|
19541
|
+
rawData?: {
|
|
19542
|
+
[x: string]: unknown;
|
|
19543
|
+
id: string;
|
|
19544
|
+
} | undefined;
|
|
18943
19545
|
} | {
|
|
18944
19546
|
className: EnumModel.MACHINE_TOOL;
|
|
18945
19547
|
light?: {
|
|
@@ -18956,6 +19558,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
18956
19558
|
isOut: boolean;
|
|
18957
19559
|
} | undefined;
|
|
18958
19560
|
stationRotatable?: boolean | undefined;
|
|
19561
|
+
isWorking?: boolean | undefined;
|
|
18959
19562
|
operatingType?: "model" | undefined;
|
|
18960
19563
|
id: string;
|
|
18961
19564
|
rawData: {
|
|
@@ -19114,6 +19717,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
19114
19717
|
isIn: boolean;
|
|
19115
19718
|
isOut: boolean;
|
|
19116
19719
|
} | undefined;
|
|
19720
|
+
isWorking?: boolean | undefined;
|
|
19117
19721
|
operatingType?: "model" | undefined;
|
|
19118
19722
|
id: string;
|
|
19119
19723
|
rawData: {
|
|
@@ -19368,6 +19972,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
19368
19972
|
showShadow?: boolean | undefined;
|
|
19369
19973
|
showText?: boolean | undefined;
|
|
19370
19974
|
inFlow?: boolean | undefined;
|
|
19975
|
+
resources?: {
|
|
19976
|
+
name?: string | undefined;
|
|
19977
|
+
resourceId?: string | undefined;
|
|
19978
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
19979
|
+
color?: string | undefined;
|
|
19980
|
+
}[] | undefined;
|
|
19371
19981
|
operatingData?: unknown;
|
|
19372
19982
|
width: number;
|
|
19373
19983
|
height: number;
|
|
@@ -19427,6 +20037,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
19427
20037
|
[x: string]: unknown;
|
|
19428
20038
|
id: string;
|
|
19429
20039
|
};
|
|
20040
|
+
} | {
|
|
20041
|
+
operatingType: "resetAll";
|
|
20042
|
+
rawData?: {
|
|
20043
|
+
[x: string]: unknown;
|
|
20044
|
+
id: string;
|
|
20045
|
+
} | undefined;
|
|
19430
20046
|
} | {
|
|
19431
20047
|
className: EnumModel.MACHINE_TOOL;
|
|
19432
20048
|
light?: {
|
|
@@ -19443,6 +20059,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
19443
20059
|
isOut: boolean;
|
|
19444
20060
|
} | undefined;
|
|
19445
20061
|
stationRotatable?: boolean | undefined;
|
|
20062
|
+
isWorking?: boolean | undefined;
|
|
19446
20063
|
operatingType?: "model" | undefined;
|
|
19447
20064
|
id: string;
|
|
19448
20065
|
rawData: {
|
|
@@ -19601,6 +20218,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
19601
20218
|
isIn: boolean;
|
|
19602
20219
|
isOut: boolean;
|
|
19603
20220
|
} | undefined;
|
|
20221
|
+
isWorking?: boolean | undefined;
|
|
19604
20222
|
operatingType?: "model" | undefined;
|
|
19605
20223
|
id: string;
|
|
19606
20224
|
rawData: {
|
|
@@ -19882,6 +20500,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
19882
20500
|
showShadow?: boolean | undefined;
|
|
19883
20501
|
showText?: boolean | undefined;
|
|
19884
20502
|
inFlow?: boolean | undefined;
|
|
20503
|
+
resources?: {
|
|
20504
|
+
name?: string | undefined;
|
|
20505
|
+
resourceId?: string | undefined;
|
|
20506
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
20507
|
+
color?: string | undefined;
|
|
20508
|
+
}[] | undefined;
|
|
19885
20509
|
operatingData?: unknown;
|
|
19886
20510
|
width: number;
|
|
19887
20511
|
height: number;
|
|
@@ -19941,6 +20565,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
19941
20565
|
[x: string]: unknown;
|
|
19942
20566
|
id: string;
|
|
19943
20567
|
};
|
|
20568
|
+
} | {
|
|
20569
|
+
operatingType: "resetAll";
|
|
20570
|
+
rawData?: {
|
|
20571
|
+
[x: string]: unknown;
|
|
20572
|
+
id: string;
|
|
20573
|
+
} | undefined;
|
|
19944
20574
|
} | {
|
|
19945
20575
|
className: EnumModel.MACHINE_TOOL;
|
|
19946
20576
|
light?: {
|
|
@@ -19957,6 +20587,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
19957
20587
|
isOut: boolean;
|
|
19958
20588
|
} | undefined;
|
|
19959
20589
|
stationRotatable?: boolean | undefined;
|
|
20590
|
+
isWorking?: boolean | undefined;
|
|
19960
20591
|
operatingType?: "model" | undefined;
|
|
19961
20592
|
id: string;
|
|
19962
20593
|
rawData: {
|
|
@@ -20115,6 +20746,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
20115
20746
|
isIn: boolean;
|
|
20116
20747
|
isOut: boolean;
|
|
20117
20748
|
} | undefined;
|
|
20749
|
+
isWorking?: boolean | undefined;
|
|
20118
20750
|
operatingType?: "model" | undefined;
|
|
20119
20751
|
id: string;
|
|
20120
20752
|
rawData: {
|
|
@@ -20368,6 +21000,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
20368
21000
|
showShadow?: boolean | undefined;
|
|
20369
21001
|
showText?: boolean | undefined;
|
|
20370
21002
|
inFlow?: boolean | undefined;
|
|
21003
|
+
resources?: {
|
|
21004
|
+
name?: string | undefined;
|
|
21005
|
+
resourceId?: string | undefined;
|
|
21006
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
21007
|
+
color?: string | undefined;
|
|
21008
|
+
}[] | undefined;
|
|
20371
21009
|
operatingData?: unknown;
|
|
20372
21010
|
width: number;
|
|
20373
21011
|
height: number;
|
|
@@ -20427,6 +21065,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
20427
21065
|
[x: string]: unknown;
|
|
20428
21066
|
id: string;
|
|
20429
21067
|
};
|
|
21068
|
+
} | {
|
|
21069
|
+
operatingType: "resetAll";
|
|
21070
|
+
rawData?: {
|
|
21071
|
+
[x: string]: unknown;
|
|
21072
|
+
id: string;
|
|
21073
|
+
} | undefined;
|
|
20430
21074
|
} | {
|
|
20431
21075
|
className: EnumModel.MACHINE_TOOL;
|
|
20432
21076
|
light?: {
|
|
@@ -20443,6 +21087,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
20443
21087
|
isOut: boolean;
|
|
20444
21088
|
} | undefined;
|
|
20445
21089
|
stationRotatable?: boolean | undefined;
|
|
21090
|
+
isWorking?: boolean | undefined;
|
|
20446
21091
|
operatingType?: "model" | undefined;
|
|
20447
21092
|
id: string;
|
|
20448
21093
|
rawData: {
|
|
@@ -20601,6 +21246,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
20601
21246
|
isIn: boolean;
|
|
20602
21247
|
isOut: boolean;
|
|
20603
21248
|
} | undefined;
|
|
21249
|
+
isWorking?: boolean | undefined;
|
|
20604
21250
|
operatingType?: "model" | undefined;
|
|
20605
21251
|
id: string;
|
|
20606
21252
|
rawData: {
|
|
@@ -20855,6 +21501,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
20855
21501
|
showShadow?: boolean | undefined;
|
|
20856
21502
|
showText?: boolean | undefined;
|
|
20857
21503
|
inFlow?: boolean | undefined;
|
|
21504
|
+
resources?: {
|
|
21505
|
+
name?: string | undefined;
|
|
21506
|
+
resourceId?: string | undefined;
|
|
21507
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
21508
|
+
color?: string | undefined;
|
|
21509
|
+
}[] | undefined;
|
|
20858
21510
|
operatingData?: unknown;
|
|
20859
21511
|
width: number;
|
|
20860
21512
|
height: number;
|
|
@@ -20917,6 +21569,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
20917
21569
|
[x: string]: unknown;
|
|
20918
21570
|
id: string;
|
|
20919
21571
|
};
|
|
21572
|
+
} | {
|
|
21573
|
+
operatingType: "resetAll";
|
|
21574
|
+
rawData?: {
|
|
21575
|
+
[x: string]: unknown;
|
|
21576
|
+
id: string;
|
|
21577
|
+
} | undefined;
|
|
20920
21578
|
} | {
|
|
20921
21579
|
className: EnumModel.MACHINE_TOOL;
|
|
20922
21580
|
light?: {
|
|
@@ -20933,6 +21591,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
20933
21591
|
isOut: boolean;
|
|
20934
21592
|
} | undefined;
|
|
20935
21593
|
stationRotatable?: boolean | undefined;
|
|
21594
|
+
isWorking?: boolean | undefined;
|
|
20936
21595
|
operatingType?: "model" | undefined;
|
|
20937
21596
|
id: string;
|
|
20938
21597
|
rawData: {
|
|
@@ -21091,6 +21750,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
21091
21750
|
isIn: boolean;
|
|
21092
21751
|
isOut: boolean;
|
|
21093
21752
|
} | undefined;
|
|
21753
|
+
isWorking?: boolean | undefined;
|
|
21094
21754
|
operatingType?: "model" | undefined;
|
|
21095
21755
|
id: string;
|
|
21096
21756
|
rawData: {
|
|
@@ -21345,6 +22005,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
21345
22005
|
showShadow?: boolean | undefined;
|
|
21346
22006
|
showText?: boolean | undefined;
|
|
21347
22007
|
inFlow?: boolean | undefined;
|
|
22008
|
+
resources?: {
|
|
22009
|
+
name?: string | undefined;
|
|
22010
|
+
resourceId?: string | undefined;
|
|
22011
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
22012
|
+
color?: string | undefined;
|
|
22013
|
+
}[] | undefined;
|
|
21348
22014
|
operatingData?: unknown;
|
|
21349
22015
|
width: number;
|
|
21350
22016
|
height: number;
|
|
@@ -21405,6 +22071,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
21405
22071
|
[x: string]: unknown;
|
|
21406
22072
|
id: string;
|
|
21407
22073
|
};
|
|
22074
|
+
} | {
|
|
22075
|
+
operatingType: "resetAll";
|
|
22076
|
+
rawData?: {
|
|
22077
|
+
[x: string]: unknown;
|
|
22078
|
+
id: string;
|
|
22079
|
+
} | undefined;
|
|
21408
22080
|
} | {
|
|
21409
22081
|
className: EnumModel.MACHINE_TOOL;
|
|
21410
22082
|
light?: {
|
|
@@ -21421,6 +22093,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
21421
22093
|
isOut: boolean;
|
|
21422
22094
|
} | undefined;
|
|
21423
22095
|
stationRotatable?: boolean | undefined;
|
|
22096
|
+
isWorking?: boolean | undefined;
|
|
21424
22097
|
operatingType?: "model" | undefined;
|
|
21425
22098
|
id: string;
|
|
21426
22099
|
rawData: {
|
|
@@ -21579,6 +22252,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
21579
22252
|
isIn: boolean;
|
|
21580
22253
|
isOut: boolean;
|
|
21581
22254
|
} | undefined;
|
|
22255
|
+
isWorking?: boolean | undefined;
|
|
21582
22256
|
operatingType?: "model" | undefined;
|
|
21583
22257
|
id: string;
|
|
21584
22258
|
rawData: {
|
|
@@ -21831,6 +22505,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
21831
22505
|
showShadow?: boolean | undefined;
|
|
21832
22506
|
showText?: boolean | undefined;
|
|
21833
22507
|
inFlow?: boolean | undefined;
|
|
22508
|
+
resources?: {
|
|
22509
|
+
name?: string | undefined;
|
|
22510
|
+
resourceId?: string | undefined;
|
|
22511
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
22512
|
+
color?: string | undefined;
|
|
22513
|
+
}[] | undefined;
|
|
21834
22514
|
operatingData?: unknown;
|
|
21835
22515
|
width: number;
|
|
21836
22516
|
height: number;
|
|
@@ -21890,6 +22570,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
21890
22570
|
[x: string]: unknown;
|
|
21891
22571
|
id: string;
|
|
21892
22572
|
};
|
|
22573
|
+
} | {
|
|
22574
|
+
operatingType: "resetAll";
|
|
22575
|
+
rawData?: {
|
|
22576
|
+
[x: string]: unknown;
|
|
22577
|
+
id: string;
|
|
22578
|
+
} | undefined;
|
|
21893
22579
|
} | {
|
|
21894
22580
|
className: EnumModel.MACHINE_TOOL;
|
|
21895
22581
|
light?: {
|
|
@@ -21906,6 +22592,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
21906
22592
|
isOut: boolean;
|
|
21907
22593
|
} | undefined;
|
|
21908
22594
|
stationRotatable?: boolean | undefined;
|
|
22595
|
+
isWorking?: boolean | undefined;
|
|
21909
22596
|
operatingType?: "model" | undefined;
|
|
21910
22597
|
id: string;
|
|
21911
22598
|
rawData: {
|
|
@@ -22064,6 +22751,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
22064
22751
|
isIn: boolean;
|
|
22065
22752
|
isOut: boolean;
|
|
22066
22753
|
} | undefined;
|
|
22754
|
+
isWorking?: boolean | undefined;
|
|
22067
22755
|
operatingType?: "model" | undefined;
|
|
22068
22756
|
id: string;
|
|
22069
22757
|
rawData: {
|
|
@@ -22316,6 +23004,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
22316
23004
|
showShadow?: boolean | undefined;
|
|
22317
23005
|
showText?: boolean | undefined;
|
|
22318
23006
|
inFlow?: boolean | undefined;
|
|
23007
|
+
resources?: {
|
|
23008
|
+
name?: string | undefined;
|
|
23009
|
+
resourceId?: string | undefined;
|
|
23010
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
23011
|
+
color?: string | undefined;
|
|
23012
|
+
}[] | undefined;
|
|
22319
23013
|
operatingData?: unknown;
|
|
22320
23014
|
width: number;
|
|
22321
23015
|
height: number;
|
|
@@ -22375,6 +23069,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
22375
23069
|
[x: string]: unknown;
|
|
22376
23070
|
id: string;
|
|
22377
23071
|
};
|
|
23072
|
+
} | {
|
|
23073
|
+
operatingType: "resetAll";
|
|
23074
|
+
rawData?: {
|
|
23075
|
+
[x: string]: unknown;
|
|
23076
|
+
id: string;
|
|
23077
|
+
} | undefined;
|
|
22378
23078
|
} | {
|
|
22379
23079
|
className: EnumModel.MACHINE_TOOL;
|
|
22380
23080
|
light?: {
|
|
@@ -22391,6 +23091,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
22391
23091
|
isOut: boolean;
|
|
22392
23092
|
} | undefined;
|
|
22393
23093
|
stationRotatable?: boolean | undefined;
|
|
23094
|
+
isWorking?: boolean | undefined;
|
|
22394
23095
|
operatingType?: "model" | undefined;
|
|
22395
23096
|
id: string;
|
|
22396
23097
|
rawData: {
|
|
@@ -22549,6 +23250,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
22549
23250
|
isIn: boolean;
|
|
22550
23251
|
isOut: boolean;
|
|
22551
23252
|
} | undefined;
|
|
23253
|
+
isWorking?: boolean | undefined;
|
|
22552
23254
|
operatingType?: "model" | undefined;
|
|
22553
23255
|
id: string;
|
|
22554
23256
|
rawData: {
|
|
@@ -22812,6 +23514,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
22812
23514
|
showShadow?: boolean | undefined;
|
|
22813
23515
|
showText?: boolean | undefined;
|
|
22814
23516
|
inFlow?: boolean | undefined;
|
|
23517
|
+
resources?: {
|
|
23518
|
+
name?: string | undefined;
|
|
23519
|
+
resourceId?: string | undefined;
|
|
23520
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
23521
|
+
color?: string | undefined;
|
|
23522
|
+
}[] | undefined;
|
|
22815
23523
|
operatingData?: unknown;
|
|
22816
23524
|
width: number;
|
|
22817
23525
|
height: number;
|
|
@@ -22863,6 +23571,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
22863
23571
|
showShadow?: boolean | undefined;
|
|
22864
23572
|
showText?: boolean | undefined;
|
|
22865
23573
|
inFlow?: boolean | undefined;
|
|
23574
|
+
resources?: {
|
|
23575
|
+
name?: string | undefined;
|
|
23576
|
+
resourceId?: string | undefined;
|
|
23577
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
23578
|
+
color?: string | undefined;
|
|
23579
|
+
}[] | undefined;
|
|
22866
23580
|
operatingData?: unknown;
|
|
22867
23581
|
width: number;
|
|
22868
23582
|
height: number;
|
|
@@ -22922,6 +23636,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
22922
23636
|
[x: string]: unknown;
|
|
22923
23637
|
id: string;
|
|
22924
23638
|
};
|
|
23639
|
+
} | {
|
|
23640
|
+
operatingType: "resetAll";
|
|
23641
|
+
rawData?: {
|
|
23642
|
+
[x: string]: unknown;
|
|
23643
|
+
id: string;
|
|
23644
|
+
} | undefined;
|
|
22925
23645
|
} | {
|
|
22926
23646
|
className: EnumModel.MACHINE_TOOL;
|
|
22927
23647
|
light?: {
|
|
@@ -22938,6 +23658,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
22938
23658
|
isOut: boolean;
|
|
22939
23659
|
} | undefined;
|
|
22940
23660
|
stationRotatable?: boolean | undefined;
|
|
23661
|
+
isWorking?: boolean | undefined;
|
|
22941
23662
|
operatingType?: "model" | undefined;
|
|
22942
23663
|
id: string;
|
|
22943
23664
|
rawData: {
|
|
@@ -23096,6 +23817,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
23096
23817
|
isIn: boolean;
|
|
23097
23818
|
isOut: boolean;
|
|
23098
23819
|
} | undefined;
|
|
23820
|
+
isWorking?: boolean | undefined;
|
|
23099
23821
|
operatingType?: "model" | undefined;
|
|
23100
23822
|
id: string;
|
|
23101
23823
|
rawData: {
|
|
@@ -23359,6 +24081,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
23359
24081
|
showShadow?: boolean | undefined;
|
|
23360
24082
|
showText?: boolean | undefined;
|
|
23361
24083
|
inFlow?: boolean | undefined;
|
|
24084
|
+
resources?: {
|
|
24085
|
+
name?: string | undefined;
|
|
24086
|
+
resourceId?: string | undefined;
|
|
24087
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
24088
|
+
color?: string | undefined;
|
|
24089
|
+
}[] | undefined;
|
|
23362
24090
|
operatingData?: unknown;
|
|
23363
24091
|
width: number;
|
|
23364
24092
|
height: number;
|
|
@@ -23410,6 +24138,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
23410
24138
|
showShadow?: boolean | undefined;
|
|
23411
24139
|
showText?: boolean | undefined;
|
|
23412
24140
|
inFlow?: boolean | undefined;
|
|
24141
|
+
resources?: {
|
|
24142
|
+
name?: string | undefined;
|
|
24143
|
+
resourceId?: string | undefined;
|
|
24144
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
24145
|
+
color?: string | undefined;
|
|
24146
|
+
}[] | undefined;
|
|
23413
24147
|
operatingData?: unknown;
|
|
23414
24148
|
width: number;
|
|
23415
24149
|
height: number;
|
|
@@ -23469,6 +24203,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
23469
24203
|
[x: string]: unknown;
|
|
23470
24204
|
id: string;
|
|
23471
24205
|
};
|
|
24206
|
+
} | {
|
|
24207
|
+
operatingType: "resetAll";
|
|
24208
|
+
rawData?: {
|
|
24209
|
+
[x: string]: unknown;
|
|
24210
|
+
id: string;
|
|
24211
|
+
} | undefined;
|
|
23472
24212
|
} | {
|
|
23473
24213
|
className: EnumModel.MACHINE_TOOL;
|
|
23474
24214
|
light?: {
|
|
@@ -23485,6 +24225,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
23485
24225
|
isOut: boolean;
|
|
23486
24226
|
} | undefined;
|
|
23487
24227
|
stationRotatable?: boolean | undefined;
|
|
24228
|
+
isWorking?: boolean | undefined;
|
|
23488
24229
|
operatingType?: "model" | undefined;
|
|
23489
24230
|
id: string;
|
|
23490
24231
|
rawData: {
|
|
@@ -23643,6 +24384,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
23643
24384
|
isIn: boolean;
|
|
23644
24385
|
isOut: boolean;
|
|
23645
24386
|
} | undefined;
|
|
24387
|
+
isWorking?: boolean | undefined;
|
|
23646
24388
|
operatingType?: "model" | undefined;
|
|
23647
24389
|
id: string;
|
|
23648
24390
|
rawData: {
|
|
@@ -23904,6 +24646,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
23904
24646
|
showShadow?: boolean | undefined;
|
|
23905
24647
|
showText?: boolean | undefined;
|
|
23906
24648
|
inFlow?: boolean | undefined;
|
|
24649
|
+
resources?: {
|
|
24650
|
+
name?: string | undefined;
|
|
24651
|
+
resourceId?: string | undefined;
|
|
24652
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
24653
|
+
color?: string | undefined;
|
|
24654
|
+
}[] | undefined;
|
|
23907
24655
|
operatingData?: unknown;
|
|
23908
24656
|
width: number;
|
|
23909
24657
|
height: number;
|
|
@@ -23955,6 +24703,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
23955
24703
|
showShadow?: boolean | undefined;
|
|
23956
24704
|
showText?: boolean | undefined;
|
|
23957
24705
|
inFlow?: boolean | undefined;
|
|
24706
|
+
resources?: {
|
|
24707
|
+
name?: string | undefined;
|
|
24708
|
+
resourceId?: string | undefined;
|
|
24709
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
24710
|
+
color?: string | undefined;
|
|
24711
|
+
}[] | undefined;
|
|
23958
24712
|
operatingData?: unknown;
|
|
23959
24713
|
width: number;
|
|
23960
24714
|
height: number;
|
|
@@ -24014,6 +24768,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
24014
24768
|
[x: string]: unknown;
|
|
24015
24769
|
id: string;
|
|
24016
24770
|
};
|
|
24771
|
+
} | {
|
|
24772
|
+
operatingType: "resetAll";
|
|
24773
|
+
rawData?: {
|
|
24774
|
+
[x: string]: unknown;
|
|
24775
|
+
id: string;
|
|
24776
|
+
} | undefined;
|
|
24017
24777
|
} | {
|
|
24018
24778
|
className: EnumModel.MACHINE_TOOL;
|
|
24019
24779
|
light?: {
|
|
@@ -24030,6 +24790,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
24030
24790
|
isOut: boolean;
|
|
24031
24791
|
} | undefined;
|
|
24032
24792
|
stationRotatable?: boolean | undefined;
|
|
24793
|
+
isWorking?: boolean | undefined;
|
|
24033
24794
|
operatingType?: "model" | undefined;
|
|
24034
24795
|
id: string;
|
|
24035
24796
|
rawData: {
|
|
@@ -24188,6 +24949,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
24188
24949
|
isIn: boolean;
|
|
24189
24950
|
isOut: boolean;
|
|
24190
24951
|
} | undefined;
|
|
24952
|
+
isWorking?: boolean | undefined;
|
|
24191
24953
|
operatingType?: "model" | undefined;
|
|
24192
24954
|
id: string;
|
|
24193
24955
|
rawData: {
|
|
@@ -24450,6 +25212,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
24450
25212
|
[x: string]: unknown;
|
|
24451
25213
|
id: string;
|
|
24452
25214
|
};
|
|
25215
|
+
} | {
|
|
25216
|
+
operatingType: "resetAll";
|
|
25217
|
+
rawData?: {
|
|
25218
|
+
[x: string]: unknown;
|
|
25219
|
+
id: string;
|
|
25220
|
+
} | undefined;
|
|
24453
25221
|
} | {
|
|
24454
25222
|
className: EnumModel.MACHINE_TOOL;
|
|
24455
25223
|
light?: {
|
|
@@ -24466,6 +25234,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
24466
25234
|
isOut: boolean;
|
|
24467
25235
|
} | undefined;
|
|
24468
25236
|
stationRotatable?: boolean | undefined;
|
|
25237
|
+
isWorking?: boolean | undefined;
|
|
24469
25238
|
operatingType?: "model" | undefined;
|
|
24470
25239
|
id: string;
|
|
24471
25240
|
rawData: {
|
|
@@ -24624,6 +25393,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
24624
25393
|
isIn: boolean;
|
|
24625
25394
|
isOut: boolean;
|
|
24626
25395
|
} | undefined;
|
|
25396
|
+
isWorking?: boolean | undefined;
|
|
24627
25397
|
operatingType?: "model" | undefined;
|
|
24628
25398
|
id: string;
|
|
24629
25399
|
rawData: {
|
|
@@ -24884,6 +25654,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
24884
25654
|
showShadow?: boolean | undefined;
|
|
24885
25655
|
showText?: boolean | undefined;
|
|
24886
25656
|
inFlow?: boolean | undefined;
|
|
25657
|
+
resources?: {
|
|
25658
|
+
name?: string | undefined;
|
|
25659
|
+
resourceId?: string | undefined;
|
|
25660
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
25661
|
+
color?: string | undefined;
|
|
25662
|
+
}[] | undefined;
|
|
24887
25663
|
operatingData?: unknown;
|
|
24888
25664
|
width: number;
|
|
24889
25665
|
height: number;
|
|
@@ -24935,6 +25711,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
24935
25711
|
showShadow?: boolean | undefined;
|
|
24936
25712
|
showText?: boolean | undefined;
|
|
24937
25713
|
inFlow?: boolean | undefined;
|
|
25714
|
+
resources?: {
|
|
25715
|
+
name?: string | undefined;
|
|
25716
|
+
resourceId?: string | undefined;
|
|
25717
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
25718
|
+
color?: string | undefined;
|
|
25719
|
+
}[] | undefined;
|
|
24938
25720
|
operatingData?: unknown;
|
|
24939
25721
|
width: number;
|
|
24940
25722
|
height: number;
|
|
@@ -24994,6 +25776,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
24994
25776
|
[x: string]: unknown;
|
|
24995
25777
|
id: string;
|
|
24996
25778
|
};
|
|
25779
|
+
} | {
|
|
25780
|
+
operatingType: "resetAll";
|
|
25781
|
+
rawData?: {
|
|
25782
|
+
[x: string]: unknown;
|
|
25783
|
+
id: string;
|
|
25784
|
+
} | undefined;
|
|
24997
25785
|
} | {
|
|
24998
25786
|
className: EnumModel.MACHINE_TOOL;
|
|
24999
25787
|
light?: {
|
|
@@ -25010,6 +25798,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
25010
25798
|
isOut: boolean;
|
|
25011
25799
|
} | undefined;
|
|
25012
25800
|
stationRotatable?: boolean | undefined;
|
|
25801
|
+
isWorking?: boolean | undefined;
|
|
25013
25802
|
operatingType?: "model" | undefined;
|
|
25014
25803
|
id: string;
|
|
25015
25804
|
rawData: {
|
|
@@ -25168,6 +25957,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
25168
25957
|
isIn: boolean;
|
|
25169
25958
|
isOut: boolean;
|
|
25170
25959
|
} | undefined;
|
|
25960
|
+
isWorking?: boolean | undefined;
|
|
25171
25961
|
operatingType?: "model" | undefined;
|
|
25172
25962
|
id: string;
|
|
25173
25963
|
rawData: {
|
|
@@ -25429,6 +26219,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
25429
26219
|
showShadow?: boolean | undefined;
|
|
25430
26220
|
showText?: boolean | undefined;
|
|
25431
26221
|
inFlow?: boolean | undefined;
|
|
26222
|
+
resources?: {
|
|
26223
|
+
name?: string | undefined;
|
|
26224
|
+
resourceId?: string | undefined;
|
|
26225
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
26226
|
+
color?: string | undefined;
|
|
26227
|
+
}[] | undefined;
|
|
25432
26228
|
operatingData?: unknown;
|
|
25433
26229
|
width: number;
|
|
25434
26230
|
height: number;
|
|
@@ -25480,6 +26276,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
25480
26276
|
showShadow?: boolean | undefined;
|
|
25481
26277
|
showText?: boolean | undefined;
|
|
25482
26278
|
inFlow?: boolean | undefined;
|
|
26279
|
+
resources?: {
|
|
26280
|
+
name?: string | undefined;
|
|
26281
|
+
resourceId?: string | undefined;
|
|
26282
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
26283
|
+
color?: string | undefined;
|
|
26284
|
+
}[] | undefined;
|
|
25483
26285
|
operatingData?: unknown;
|
|
25484
26286
|
width: number;
|
|
25485
26287
|
height: number;
|
|
@@ -25540,6 +26342,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
25540
26342
|
[x: string]: unknown;
|
|
25541
26343
|
id: string;
|
|
25542
26344
|
};
|
|
26345
|
+
} | {
|
|
26346
|
+
operatingType: "resetAll";
|
|
26347
|
+
rawData?: {
|
|
26348
|
+
[x: string]: unknown;
|
|
26349
|
+
id: string;
|
|
26350
|
+
} | undefined;
|
|
25543
26351
|
} | {
|
|
25544
26352
|
className: EnumModel.MACHINE_TOOL;
|
|
25545
26353
|
light?: {
|
|
@@ -25556,6 +26364,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
25556
26364
|
isOut: boolean;
|
|
25557
26365
|
} | undefined;
|
|
25558
26366
|
stationRotatable?: boolean | undefined;
|
|
26367
|
+
isWorking?: boolean | undefined;
|
|
25559
26368
|
operatingType?: "model" | undefined;
|
|
25560
26369
|
id: string;
|
|
25561
26370
|
rawData: {
|
|
@@ -25714,6 +26523,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
25714
26523
|
isIn: boolean;
|
|
25715
26524
|
isOut: boolean;
|
|
25716
26525
|
} | undefined;
|
|
26526
|
+
isWorking?: boolean | undefined;
|
|
25717
26527
|
operatingType?: "model" | undefined;
|
|
25718
26528
|
id: string;
|
|
25719
26529
|
rawData: {
|
|
@@ -25968,6 +26778,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
25968
26778
|
showShadow?: boolean | undefined;
|
|
25969
26779
|
showText?: boolean | undefined;
|
|
25970
26780
|
inFlow?: boolean | undefined;
|
|
26781
|
+
resources?: {
|
|
26782
|
+
name?: string | undefined;
|
|
26783
|
+
resourceId?: string | undefined;
|
|
26784
|
+
resourceType?: import('../types').EnumResourceType | undefined;
|
|
26785
|
+
color?: string | undefined;
|
|
26786
|
+
}[] | undefined;
|
|
25971
26787
|
operatingData?: unknown;
|
|
25972
26788
|
width: number;
|
|
25973
26789
|
height: number;
|
|
@@ -26027,6 +26843,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
26027
26843
|
[x: string]: unknown;
|
|
26028
26844
|
id: string;
|
|
26029
26845
|
};
|
|
26846
|
+
} | {
|
|
26847
|
+
operatingType: "resetAll";
|
|
26848
|
+
rawData?: {
|
|
26849
|
+
[x: string]: unknown;
|
|
26850
|
+
id: string;
|
|
26851
|
+
} | undefined;
|
|
26030
26852
|
} | {
|
|
26031
26853
|
className: EnumModel.MACHINE_TOOL;
|
|
26032
26854
|
light?: {
|
|
@@ -26043,6 +26865,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
26043
26865
|
isOut: boolean;
|
|
26044
26866
|
} | undefined;
|
|
26045
26867
|
stationRotatable?: boolean | undefined;
|
|
26868
|
+
isWorking?: boolean | undefined;
|
|
26046
26869
|
operatingType?: "model" | undefined;
|
|
26047
26870
|
id: string;
|
|
26048
26871
|
rawData: {
|
|
@@ -26201,6 +27024,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
26201
27024
|
isIn: boolean;
|
|
26202
27025
|
isOut: boolean;
|
|
26203
27026
|
} | undefined;
|
|
27027
|
+
isWorking?: boolean | undefined;
|
|
26204
27028
|
operatingType?: "model" | undefined;
|
|
26205
27029
|
id: string;
|
|
26206
27030
|
rawData: {
|