@fmsim/machine 0.0.49

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.
Files changed (274) hide show
  1. package/dist/agv-line.js +48 -0
  2. package/dist/agv-line.js.map +1 -0
  3. package/dist/agv.js +43 -0
  4. package/dist/agv.js.map +1 -0
  5. package/dist/buffer.js +40 -0
  6. package/dist/buffer.js.map +1 -0
  7. package/dist/conveyor-join.js +169 -0
  8. package/dist/conveyor-join.js.map +1 -0
  9. package/dist/conveyor.js +84 -0
  10. package/dist/conveyor.js.map +1 -0
  11. package/dist/crane.js +55 -0
  12. package/dist/crane.js.map +1 -0
  13. package/dist/data-subscription.js +126 -0
  14. package/dist/data-subscription.js.map +1 -0
  15. package/dist/editors/index.js +2 -0
  16. package/dist/editors/index.js.map +1 -0
  17. package/dist/equipment.js +18 -0
  18. package/dist/equipment.js.map +1 -0
  19. package/dist/features/client-api.js +45 -0
  20. package/dist/features/client-api.js.map +1 -0
  21. package/dist/features/conveyor-mixin.js +54 -0
  22. package/dist/features/conveyor-mixin.js.map +1 -0
  23. package/dist/features/mcs-event-handler-mixin.js +65 -0
  24. package/dist/features/mcs-event-handler-mixin.js.map +1 -0
  25. package/dist/features/mcs-status-default.js +67 -0
  26. package/dist/features/mcs-status-default.js.map +1 -0
  27. package/dist/features/mcs-status-mixin.js +39 -0
  28. package/dist/features/mcs-status-mixin.js.map +1 -0
  29. package/dist/features/mcs-transport-mixin.js +39 -0
  30. package/dist/features/mcs-transport-mixin.js.map +1 -0
  31. package/dist/features/mcs-zone-mixin.js +18 -0
  32. package/dist/features/mcs-zone-mixin.js.map +1 -0
  33. package/dist/groups/index.js +10 -0
  34. package/dist/groups/index.js.map +1 -0
  35. package/dist/groups/mcs-acs.js +24 -0
  36. package/dist/groups/mcs-acs.js.map +1 -0
  37. package/dist/groups/mcs-bcs.js +27 -0
  38. package/dist/groups/mcs-bcs.js.map +1 -0
  39. package/dist/groups/mcs-ccs.js +25 -0
  40. package/dist/groups/mcs-ccs.js.map +1 -0
  41. package/dist/groups/mcs-ecs.js +23 -0
  42. package/dist/groups/mcs-ecs.js.map +1 -0
  43. package/dist/groups/mcs-ocs.js +25 -0
  44. package/dist/groups/mcs-ocs.js.map +1 -0
  45. package/dist/groups/mcs-path.js +28 -0
  46. package/dist/groups/mcs-path.js.map +1 -0
  47. package/dist/groups/mcs-scs.js +26 -0
  48. package/dist/groups/mcs-scs.js.map +1 -0
  49. package/dist/groups/mcs-shape.js +26 -0
  50. package/dist/groups/mcs-shape.js.map +1 -0
  51. package/dist/index.js +25 -0
  52. package/dist/index.js.map +1 -0
  53. package/dist/mcs-carrier-holder.js +107 -0
  54. package/dist/mcs-carrier-holder.js.map +1 -0
  55. package/dist/mcs-gauge-capacity-bar.js +170 -0
  56. package/dist/mcs-gauge-capacity-bar.js.map +1 -0
  57. package/dist/mcs-gauge-capacity-circle.js +91 -0
  58. package/dist/mcs-gauge-capacity-circle.js.map +1 -0
  59. package/dist/mcs-machine.js +84 -0
  60. package/dist/mcs-machine.js.map +1 -0
  61. package/dist/mcs-popup.js +82 -0
  62. package/dist/mcs-popup.js.map +1 -0
  63. package/dist/mcs-transport.js +18 -0
  64. package/dist/mcs-transport.js.map +1 -0
  65. package/dist/mcs-unit.js +78 -0
  66. package/dist/mcs-unit.js.map +1 -0
  67. package/dist/mcs-vehicle.js +69 -0
  68. package/dist/mcs-vehicle.js.map +1 -0
  69. package/dist/mcs-zone-unit.js +11 -0
  70. package/dist/mcs-zone-unit.js.map +1 -0
  71. package/dist/oht-line.js +32 -0
  72. package/dist/oht-line.js.map +1 -0
  73. package/dist/oht.js +42 -0
  74. package/dist/oht.js.map +1 -0
  75. package/dist/port.js +32 -0
  76. package/dist/port.js.map +1 -0
  77. package/dist/rtv-rail.js +36 -0
  78. package/dist/rtv-rail.js.map +1 -0
  79. package/dist/shelf.js +41 -0
  80. package/dist/shelf.js.map +1 -0
  81. package/dist/shuttle.js +49 -0
  82. package/dist/shuttle.js.map +1 -0
  83. package/dist/stocker-capacity-bar.js +171 -0
  84. package/dist/stocker-capacity-bar.js.map +1 -0
  85. package/dist/stocker.js +36 -0
  86. package/dist/stocker.js.map +1 -0
  87. package/dist/templates/agv-line-corner.js +34 -0
  88. package/dist/templates/agv-line-corner.js.map +1 -0
  89. package/dist/templates/agv-line-cross.js +34 -0
  90. package/dist/templates/agv-line-cross.js.map +1 -0
  91. package/dist/templates/agv-line-horizontal.js +34 -0
  92. package/dist/templates/agv-line-horizontal.js.map +1 -0
  93. package/dist/templates/agv-line-vertical.js +34 -0
  94. package/dist/templates/agv-line-vertical.js.map +1 -0
  95. package/dist/templates/agv-line.js +15 -0
  96. package/dist/templates/agv-line.js.map +1 -0
  97. package/dist/templates/agv.js +15 -0
  98. package/dist/templates/agv.js.map +1 -0
  99. package/dist/templates/buffer.js +15 -0
  100. package/dist/templates/buffer.js.map +1 -0
  101. package/dist/templates/conveyor-corner.js +33 -0
  102. package/dist/templates/conveyor-corner.js.map +1 -0
  103. package/dist/templates/conveyor-join.js +21 -0
  104. package/dist/templates/conveyor-join.js.map +1 -0
  105. package/dist/templates/conveyor-left.js +33 -0
  106. package/dist/templates/conveyor-left.js.map +1 -0
  107. package/dist/templates/conveyor-middle.js +33 -0
  108. package/dist/templates/conveyor-middle.js.map +1 -0
  109. package/dist/templates/conveyor-right.js +33 -0
  110. package/dist/templates/conveyor-right.js.map +1 -0
  111. package/dist/templates/conveyor.js +18 -0
  112. package/dist/templates/conveyor.js.map +1 -0
  113. package/dist/templates/crane.js +15 -0
  114. package/dist/templates/crane.js.map +1 -0
  115. package/dist/templates/data-subscription.js +16 -0
  116. package/dist/templates/data-subscription.js.map +1 -0
  117. package/dist/templates/equipment.js +15 -0
  118. package/dist/templates/equipment.js.map +1 -0
  119. package/dist/templates/index.js +35 -0
  120. package/dist/templates/index.js.map +1 -0
  121. package/dist/templates/mcs-gauge-capacity-bar.js +18 -0
  122. package/dist/templates/mcs-gauge-capacity-bar.js.map +1 -0
  123. package/dist/templates/mcs-gauge-capacity-circle.js +18 -0
  124. package/dist/templates/mcs-gauge-capacity-circle.js.map +1 -0
  125. package/dist/templates/oht-line-corner.js +34 -0
  126. package/dist/templates/oht-line-corner.js.map +1 -0
  127. package/dist/templates/oht-line-cross.js +34 -0
  128. package/dist/templates/oht-line-cross.js.map +1 -0
  129. package/dist/templates/oht-line-horizontal.js +34 -0
  130. package/dist/templates/oht-line-horizontal.js.map +1 -0
  131. package/dist/templates/oht-line-vertical.js +34 -0
  132. package/dist/templates/oht-line-vertical.js.map +1 -0
  133. package/dist/templates/oht-line.js +15 -0
  134. package/dist/templates/oht-line.js.map +1 -0
  135. package/dist/templates/oht.js +15 -0
  136. package/dist/templates/oht.js.map +1 -0
  137. package/dist/templates/port.js +15 -0
  138. package/dist/templates/port.js.map +1 -0
  139. package/dist/templates/rtv-corner.js +33 -0
  140. package/dist/templates/rtv-corner.js.map +1 -0
  141. package/dist/templates/rtv-left.js +33 -0
  142. package/dist/templates/rtv-left.js.map +1 -0
  143. package/dist/templates/rtv-middle.js +33 -0
  144. package/dist/templates/rtv-middle.js.map +1 -0
  145. package/dist/templates/rtv-rail.js +15 -0
  146. package/dist/templates/rtv-rail.js.map +1 -0
  147. package/dist/templates/rtv-right.js +33 -0
  148. package/dist/templates/rtv-right.js.map +1 -0
  149. package/dist/templates/rtv.js +15 -0
  150. package/dist/templates/rtv.js.map +1 -0
  151. package/dist/templates/shelf.js +15 -0
  152. package/dist/templates/shelf.js.map +1 -0
  153. package/dist/templates/shuttle.js +15 -0
  154. package/dist/templates/shuttle.js.map +1 -0
  155. package/dist/templates/stocker-capacity-bar.js +18 -0
  156. package/dist/templates/stocker-capacity-bar.js.map +1 -0
  157. package/dist/templates/stocker-capacity-circle.js +18 -0
  158. package/dist/templates/stocker-capacity-circle.js.map +1 -0
  159. package/dist/templates/stocker.js +16 -0
  160. package/dist/templates/stocker.js.map +1 -0
  161. package/dist/templates/zone-capacity-bar.js +19 -0
  162. package/dist/templates/zone-capacity-bar.js.map +1 -0
  163. package/dist/tsconfig.tsbuildinfo +1 -0
  164. package/dist/utils/get-locale.js +19 -0
  165. package/dist/utils/get-locale.js.map +1 -0
  166. package/dist/utils/get-value-on-ranges.js +23 -0
  167. package/dist/utils/get-value-on-ranges.js.map +1 -0
  168. package/dist/utils/normalize-angle.js +11 -0
  169. package/dist/utils/normalize-angle.js.map +1 -0
  170. package/dist/utils/safe-round.js +9 -0
  171. package/dist/utils/safe-round.js.map +1 -0
  172. package/dist/zone-capacity-bar.js +162 -0
  173. package/dist/zone-capacity-bar.js.map +1 -0
  174. package/icons/agv-line.png +0 -0
  175. package/icons/agv.png +0 -0
  176. package/icons/buffer.png +0 -0
  177. package/icons/conveyor-corner.png +0 -0
  178. package/icons/conveyor-corner.svg +10 -0
  179. package/icons/conveyor-join.png +0 -0
  180. package/icons/conveyor-left.png +0 -0
  181. package/icons/conveyor-left.svg +6 -0
  182. package/icons/conveyor-middle.png +0 -0
  183. package/icons/conveyor-middle.svg +5 -0
  184. package/icons/conveyor-right.png +0 -0
  185. package/icons/conveyor-right.svg +6 -0
  186. package/icons/conveyor.png +0 -0
  187. package/icons/crane.png +0 -0
  188. package/icons/equipment.png +0 -0
  189. package/icons/icon-data-subscription.png +0 -0
  190. package/icons/oht-line.png +0 -0
  191. package/icons/oht.png +0 -0
  192. package/icons/pallet-empty.svg +3 -0
  193. package/icons/pallet.svg +11 -0
  194. package/icons/path-position.svg +5 -0
  195. package/icons/port.png +0 -0
  196. package/icons/process.png +0 -0
  197. package/icons/rtv-rail.png +0 -0
  198. package/icons/rtv.png +0 -0
  199. package/icons/shelf.png +0 -0
  200. package/icons/shuttle.png +0 -0
  201. package/icons/stocker-capacity-bar.png +0 -0
  202. package/icons/stocker-capacity-circle.png +0 -0
  203. package/icons/stocker.png +0 -0
  204. package/icons/symbol-data-subscription.png +0 -0
  205. package/icons/vehicle.png +0 -0
  206. package/icons/zone-capacity-bar.png +0 -0
  207. package/migration-samples/model.json +7964 -0
  208. package/package.json +59 -0
  209. package/src/agv-line.ts +59 -0
  210. package/src/agv.ts +56 -0
  211. package/src/buffer.ts +50 -0
  212. package/src/conveyor-join.ts +208 -0
  213. package/src/conveyor.ts +101 -0
  214. package/src/crane.ts +72 -0
  215. package/src/data-subscription.ts +150 -0
  216. package/src/editors/index.ts +0 -0
  217. package/src/equipment.ts +21 -0
  218. package/src/features/client-api.ts +52 -0
  219. package/src/features/conveyor-mixin.ts +75 -0
  220. package/src/features/mcs-status-default.ts +76 -0
  221. package/src/features/mcs-status-mixin.ts +53 -0
  222. package/src/features/mcs-zone-mixin.ts +23 -0
  223. package/src/groups/index.ts +10 -0
  224. package/src/groups/mcs-acs.ts +24 -0
  225. package/src/groups/mcs-bcs.ts +27 -0
  226. package/src/groups/mcs-ccs.ts +25 -0
  227. package/src/groups/mcs-ecs.ts +23 -0
  228. package/src/groups/mcs-ocs.ts +25 -0
  229. package/src/groups/mcs-path.ts +28 -0
  230. package/src/groups/mcs-scs.ts +26 -0
  231. package/src/groups/mcs-shape.ts +26 -0
  232. package/src/index.ts +29 -0
  233. package/src/mcs-carrier-holder.ts +141 -0
  234. package/src/mcs-gauge-capacity-circle.ts +113 -0
  235. package/src/mcs-machine.ts +101 -0
  236. package/src/mcs-popup.ts +99 -0
  237. package/src/mcs-transport.ts +20 -0
  238. package/src/mcs-unit.ts +91 -0
  239. package/src/mcs-vehicle.ts +79 -0
  240. package/src/oht-line.ts +43 -0
  241. package/src/oht.ts +55 -0
  242. package/src/port.ts +41 -0
  243. package/src/shelf.ts +53 -0
  244. package/src/shuttle.ts +65 -0
  245. package/src/stocker-capacity-bar.ts +220 -0
  246. package/src/stocker.ts +45 -0
  247. package/src/templates/agv-line.ts +15 -0
  248. package/src/templates/agv.ts +15 -0
  249. package/src/templates/buffer.ts +15 -0
  250. package/src/templates/conveyor.ts +18 -0
  251. package/src/templates/crane.ts +15 -0
  252. package/src/templates/data-subscription.js +16 -0
  253. package/src/templates/equipment.ts +15 -0
  254. package/src/templates/index.ts +43 -0
  255. package/src/templates/oht-line.ts +15 -0
  256. package/src/templates/oht.ts +15 -0
  257. package/src/templates/port.ts +15 -0
  258. package/src/templates/shelf.ts +15 -0
  259. package/src/templates/shuttle.ts +15 -0
  260. package/src/templates/stocker-capacity-bar.ts +18 -0
  261. package/src/templates/stocker-capacity-circle.ts +18 -0
  262. package/src/templates/stocker.ts +16 -0
  263. package/src/templates/zone-capacity-bar.ts +19 -0
  264. package/src/utils/get-locale.ts +22 -0
  265. package/src/utils/get-value-on-ranges.ts +25 -0
  266. package/src/utils/normalize-angle.ts +9 -0
  267. package/src/utils/safe-round.ts +8 -0
  268. package/src/zone-capacity-bar.ts +209 -0
  269. package/things-scene.config.js +7 -0
  270. package/translations/en.json +7 -0
  271. package/translations/ja.json +7 -0
  272. package/translations/ko.json +7 -0
  273. package/translations/ms.json +7 -0
  274. package/translations/zh.json +7 -0
@@ -0,0 +1,33 @@
1
+ const conveyorRight = new URL('../../icons/conveyor-right.svg', import.meta.url).href;
2
+ const conveyorRightFillImage = new URL('../../icons/conveyor-right.png', import.meta.url).href;
3
+ export default {
4
+ type: 'Conveyor Right',
5
+ description: 'Conveyor Right',
6
+ icon: conveyorRight,
7
+ group: 'CCS',
8
+ model: {
9
+ type: 'Conveyor',
10
+ convType: 'right',
11
+ left: 200,
12
+ top: 100,
13
+ width: 20,
14
+ height: 19,
15
+ fillStyle: {
16
+ fitPattern: false,
17
+ height: null,
18
+ image: conveyorRightFillImage,
19
+ offsetX: 0,
20
+ offsetY: 0,
21
+ type: 'pattern',
22
+ width: null,
23
+ color: '#636363'
24
+ },
25
+ strokeStyle: '#000',
26
+ alpha: 1,
27
+ hidden: false,
28
+ lineWidth: 0,
29
+ lineDash: 'solid',
30
+ lineCap: 'butt'
31
+ }
32
+ };
33
+ //# sourceMappingURL=conveyor-right.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"conveyor-right.js","sourceRoot":"","sources":["../../src/templates/conveyor-right.ts"],"names":[],"mappings":"AAAA,MAAM,aAAa,GAAG,IAAI,GAAG,CAAC,gCAAgC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AACrF,MAAM,sBAAsB,GAAG,IAAI,GAAG,CAAC,gCAAgC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE9F,eAAe;IACb,IAAI,EAAE,gBAAgB;IACtB,WAAW,EAAE,gBAAgB;IAC7B,IAAI,EAAE,aAAa;IACnB,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,UAAU;QAChB,QAAQ,EAAE,OAAO;QACjB,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,SAAS,EAAE;YACT,UAAU,EAAE,KAAK;YACjB,MAAM,EAAE,IAAI;YACZ,KAAK,EAAE,sBAAsB;YAC7B,OAAO,EAAE,CAAC;YACV,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,SAAS;YACf,KAAK,EAAE,IAAI;YACX,KAAK,EAAE,SAAS;SACjB;QACD,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,CAAC;QACZ,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE,MAAM;KAChB;CACF,CAAA","sourcesContent":["const conveyorRight = new URL('../../icons/conveyor-right.svg', import.meta.url).href\nconst conveyorRightFillImage = new URL('../../icons/conveyor-right.png', import.meta.url).href\n\nexport default {\n type: 'Conveyor Right',\n description: 'Conveyor Right',\n icon: conveyorRight,\n group: 'CCS',\n model: {\n type: 'Conveyor',\n convType: 'right',\n left: 200,\n top: 100,\n width: 20,\n height: 19,\n fillStyle: {\n fitPattern: false,\n height: null,\n image: conveyorRightFillImage,\n offsetX: 0,\n offsetY: 0,\n type: 'pattern',\n width: null,\n color: '#636363'\n },\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 0,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n}\n"]}
@@ -0,0 +1,18 @@
1
+ const conveyor = new URL('../../icons/conveyor.png', import.meta.url).href;
2
+ export default {
3
+ type: 'Conveyor',
4
+ description: 'Conveyor',
5
+ icon: conveyor,
6
+ group: 'CCS',
7
+ model: {
8
+ type: 'Conveyor',
9
+ left: 100,
10
+ top: 100,
11
+ width: 100,
12
+ height: 20,
13
+ lineWidth: 1,
14
+ strokeStyle: 'black',
15
+ rollWidth: 12
16
+ }
17
+ };
18
+ //# sourceMappingURL=conveyor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"conveyor.js","sourceRoot":"","sources":["../../src/templates/conveyor.ts"],"names":[],"mappings":"AAAA,MAAM,QAAQ,GAAG,IAAI,GAAG,CAAC,0BAA0B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE1E,eAAe;IACb,IAAI,EAAE,UAAU;IAChB,WAAW,EAAE,UAAU;IACvB,IAAI,EAAE,QAAQ;IACd,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,UAAU;QAChB,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,EAAE;QACV,SAAS,EAAE,CAAC;QACZ,WAAW,EAAE,OAAO;QACpB,SAAS,EAAE,EAAE;KACd;CACF,CAAA","sourcesContent":["const conveyor = new URL('../../icons/conveyor.png', import.meta.url).href\n\nexport default {\n type: 'Conveyor',\n description: 'Conveyor',\n icon: conveyor,\n group: 'CCS',\n model: {\n type: 'Conveyor',\n left: 100,\n top: 100,\n width: 100,\n height: 20,\n lineWidth: 1,\n strokeStyle: 'black',\n rollWidth: 12\n }\n}\n"]}
@@ -0,0 +1,15 @@
1
+ const crane = new URL('../../icons/crane.png', import.meta.url).href;
2
+ export default {
3
+ type: 'Crane',
4
+ description: 'Crane',
5
+ icon: crane,
6
+ group: 'SCS',
7
+ model: {
8
+ type: 'Crane',
9
+ left: 100,
10
+ top: 100,
11
+ width: 20,
12
+ height: 20
13
+ }
14
+ };
15
+ //# sourceMappingURL=crane.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"crane.js","sourceRoot":"","sources":["../../src/templates/crane.ts"],"names":[],"mappings":"AAAA,MAAM,KAAK,GAAG,IAAI,GAAG,CAAC,uBAAuB,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEpE,eAAe;IACb,IAAI,EAAE,OAAO;IACb,WAAW,EAAE,OAAO;IACpB,IAAI,EAAE,KAAK;IACX,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,OAAO;QACb,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;KACX;CACF,CAAA","sourcesContent":["const crane = new URL('../../icons/crane.png', import.meta.url).href\n\nexport default {\n type: 'Crane',\n description: 'Crane',\n icon: crane,\n group: 'SCS',\n model: {\n type: 'Crane',\n left: 100,\n top: 100,\n width: 20,\n height: 20\n }\n}\n"]}
@@ -0,0 +1,16 @@
1
+ const icon = new URL('../../icons/icon-data-subscription.png', import.meta.url).href;
2
+ export default {
3
+ type: 'data-subscription',
4
+ description: 'data-subscription',
5
+ group: 'etc',
6
+ icon,
7
+ model: {
8
+ type: 'data-subscription',
9
+ left: 10,
10
+ top: 10,
11
+ width: 100,
12
+ height: 100,
13
+ hidden: true
14
+ }
15
+ };
16
+ //# sourceMappingURL=data-subscription.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"data-subscription.js","sourceRoot":"","sources":["../../src/templates/data-subscription.js"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,wCAAwC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEpF,eAAe;IACb,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,mBAAmB;IAChC,KAAK,EAAE,KAAK;IACZ,IAAI;IACJ,KAAK,EAAE;QACL,IAAI,EAAE,mBAAmB;QACzB,IAAI,EAAE,EAAE;QACR,GAAG,EAAE,EAAE;QACP,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,GAAG;QACX,MAAM,EAAE,IAAI;KACb;CACF,CAAA","sourcesContent":["const icon = new URL('../../icons/icon-data-subscription.png', import.meta.url).href\n\nexport default {\n type: 'data-subscription',\n description: 'data-subscription',\n group: 'etc',\n icon,\n model: {\n type: 'data-subscription',\n left: 10,\n top: 10,\n width: 100,\n height: 100,\n hidden: true\n }\n}\n"]}
@@ -0,0 +1,15 @@
1
+ const equipment = new URL('../../icons/equipment.png', import.meta.url).href;
2
+ export default {
3
+ type: 'Equipment',
4
+ description: 'Equipment',
5
+ icon: equipment,
6
+ group: 'ECS',
7
+ model: {
8
+ type: 'Equipment',
9
+ left: 100,
10
+ top: 100,
11
+ width: 40,
12
+ height: 30
13
+ }
14
+ };
15
+ //# sourceMappingURL=equipment.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"equipment.js","sourceRoot":"","sources":["../../src/templates/equipment.ts"],"names":[],"mappings":"AAAA,MAAM,SAAS,GAAG,IAAI,GAAG,CAAC,2BAA2B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE5E,eAAe;IACb,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,WAAW;IACxB,IAAI,EAAE,SAAS;IACf,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;KACX;CACF,CAAA","sourcesContent":["const equipment = new URL('../../icons/equipment.png', import.meta.url).href\n\nexport default {\n type: 'Equipment',\n description: 'Equipment',\n icon: equipment,\n group: 'ECS',\n model: {\n type: 'Equipment',\n left: 100,\n top: 100,\n width: 40,\n height: 30\n }\n}\n"]}
@@ -0,0 +1,35 @@
1
+ // import StockerCapacityCircle from './stocker-capacity-circle'
2
+ import StockerCapacityBar from './stocker-capacity-bar';
3
+ import ZoneCapacityBar from './zone-capacity-bar';
4
+ import AGV from './agv';
5
+ import Buffer from './buffer';
6
+ import Equipment from './equipment';
7
+ import OHT from './oht';
8
+ import Stocker from './stocker';
9
+ import Shuttle from './shuttle';
10
+ import Port from './port';
11
+ import Crane from './crane';
12
+ import Shelf from './shelf';
13
+ import agvLine from './agv-line';
14
+ import ohtLine from './oht-line';
15
+ import conveyor from './conveyor';
16
+ import DataSubscription from './data-subscription';
17
+ export default [
18
+ DataSubscription,
19
+ // StockerCapacityCircle,
20
+ StockerCapacityBar,
21
+ ZoneCapacityBar,
22
+ Buffer,
23
+ Stocker,
24
+ Equipment,
25
+ agvLine,
26
+ ohtLine,
27
+ conveyor,
28
+ AGV,
29
+ OHT,
30
+ Shuttle,
31
+ Crane,
32
+ Shelf,
33
+ Port
34
+ ];
35
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/templates/index.ts"],"names":[],"mappings":"AAAA,gEAAgE;AAChE,OAAO,kBAAkB,MAAM,wBAAwB,CAAA;AACvD,OAAO,eAAe,MAAM,qBAAqB,CAAA;AAEjD,OAAO,GAAG,MAAM,OAAO,CAAA;AACvB,OAAO,MAAM,MAAM,UAAU,CAAA;AAC7B,OAAO,SAAS,MAAM,aAAa,CAAA;AACnC,OAAO,GAAG,MAAM,OAAO,CAAA;AACvB,OAAO,OAAO,MAAM,WAAW,CAAA;AAE/B,OAAO,OAAO,MAAM,WAAW,CAAA;AAC/B,OAAO,IAAI,MAAM,QAAQ,CAAA;AACzB,OAAO,KAAK,MAAM,SAAS,CAAA;AAC3B,OAAO,KAAK,MAAM,SAAS,CAAA;AAE3B,OAAO,OAAO,MAAM,YAAY,CAAA;AAChC,OAAO,OAAO,MAAM,YAAY,CAAA;AAChC,OAAO,QAAQ,MAAM,YAAY,CAAA;AAEjC,OAAO,gBAAgB,MAAM,qBAAqB,CAAA;AAElD,eAAe;IACb,gBAAgB;IAEhB,yBAAyB;IACzB,kBAAkB;IAClB,eAAe;IAEf,MAAM;IACN,OAAO;IACP,SAAS;IAET,OAAO;IACP,OAAO;IACP,QAAQ;IAER,GAAG;IACH,GAAG;IACH,OAAO;IACP,KAAK;IACL,KAAK;IACL,IAAI;CACL,CAAA","sourcesContent":["// import StockerCapacityCircle from './stocker-capacity-circle'\nimport StockerCapacityBar from './stocker-capacity-bar'\nimport ZoneCapacityBar from './zone-capacity-bar'\n\nimport AGV from './agv'\nimport Buffer from './buffer'\nimport Equipment from './equipment'\nimport OHT from './oht'\nimport Stocker from './stocker'\n\nimport Shuttle from './shuttle'\nimport Port from './port'\nimport Crane from './crane'\nimport Shelf from './shelf'\n\nimport agvLine from './agv-line'\nimport ohtLine from './oht-line'\nimport conveyor from './conveyor'\n\nimport DataSubscription from './data-subscription'\n\nexport default [\n DataSubscription,\n\n // StockerCapacityCircle,\n StockerCapacityBar,\n ZoneCapacityBar,\n\n Buffer,\n Stocker,\n Equipment,\n\n agvLine,\n ohtLine,\n conveyor,\n\n AGV,\n OHT,\n Shuttle,\n Crane,\n Shelf,\n Port\n]\n"]}
@@ -0,0 +1,18 @@
1
+ const MCSGaugeCapacityBar = new URL('../../icons/mcs-gauge-capacity-bar.png', import.meta.url).href;
2
+ export default {
3
+ type: 'MCSGaugeCapacityBar',
4
+ description: 'MCSGaugeCapacityBar',
5
+ icon: MCSGaugeCapacityBar,
6
+ group: 'SCS',
7
+ model: {
8
+ type: 'MCSGaugeCapacityBar',
9
+ left: 100,
10
+ top: 100,
11
+ width: 200,
12
+ height: 60,
13
+ maxCapacity: 100,
14
+ highWatermark: 100,
15
+ currentUsage: 0
16
+ }
17
+ };
18
+ //# sourceMappingURL=mcs-gauge-capacity-bar.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mcs-gauge-capacity-bar.js","sourceRoot":"","sources":["../../src/templates/mcs-gauge-capacity-bar.ts"],"names":[],"mappings":"AAAA,MAAM,mBAAmB,GAAG,IAAI,GAAG,CAAC,wCAAwC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEnG,eAAe;IACb,IAAI,EAAE,qBAAqB;IAC3B,WAAW,EAAE,qBAAqB;IAClC,IAAI,EAAE,mBAAmB;IACzB,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,qBAAqB;QAC3B,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,EAAE;QACV,WAAW,EAAE,GAAG;QAChB,aAAa,EAAE,GAAG;QAClB,YAAY,EAAE,CAAC;KAChB;CACF,CAAA","sourcesContent":["const MCSGaugeCapacityBar = new URL('../../icons/mcs-gauge-capacity-bar.png', import.meta.url).href\n\nexport default {\n type: 'MCSGaugeCapacityBar',\n description: 'MCSGaugeCapacityBar',\n icon: MCSGaugeCapacityBar,\n group: 'SCS',\n model: {\n type: 'MCSGaugeCapacityBar',\n left: 100,\n top: 100,\n width: 200,\n height: 60,\n maxCapacity: 100,\n highWatermark: 100,\n currentUsage: 0\n }\n}\n"]}
@@ -0,0 +1,18 @@
1
+ const mcsGaugeCapacityCircle = new URL('../../icons/mcs-gauge-capacity-circle.png', import.meta.url).href;
2
+ export default {
3
+ type: 'MCSGaugeCapacityCircle',
4
+ description: 'MCSGaugeCapacityCircle',
5
+ icon: mcsGaugeCapacityCircle,
6
+ group: 'SCS',
7
+ model: {
8
+ type: 'MCSGaugeCapacityCircle',
9
+ cx: 100,
10
+ cy: 100,
11
+ rx: 20,
12
+ ry: 20,
13
+ maxCapacity: 100,
14
+ highWatermark: 100,
15
+ currentUsage: 0
16
+ }
17
+ };
18
+ //# sourceMappingURL=mcs-gauge-capacity-circle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mcs-gauge-capacity-circle.js","sourceRoot":"","sources":["../../src/templates/mcs-gauge-capacity-circle.ts"],"names":[],"mappings":"AAAA,MAAM,sBAAsB,GAAG,IAAI,GAAG,CAAC,2CAA2C,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEzG,eAAe;IACb,IAAI,EAAE,wBAAwB;IAC9B,WAAW,EAAE,wBAAwB;IACrC,IAAI,EAAE,sBAAsB;IAC5B,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,wBAAwB;QAC9B,EAAE,EAAE,GAAG;QACP,EAAE,EAAE,GAAG;QACP,EAAE,EAAE,EAAE;QACN,EAAE,EAAE,EAAE;QACN,WAAW,EAAE,GAAG;QAChB,aAAa,EAAE,GAAG;QAClB,YAAY,EAAE,CAAC;KAChB;CACF,CAAA","sourcesContent":["const mcsGaugeCapacityCircle = new URL('../../icons/mcs-gauge-capacity-circle.png', import.meta.url).href\n\nexport default {\n type: 'MCSGaugeCapacityCircle',\n description: 'MCSGaugeCapacityCircle',\n icon: mcsGaugeCapacityCircle,\n group: 'SCS',\n model: {\n type: 'MCSGaugeCapacityCircle',\n cx: 100,\n cy: 100,\n rx: 20,\n ry: 20,\n maxCapacity: 100,\n highWatermark: 100,\n currentUsage: 0\n }\n}\n"]}
@@ -0,0 +1,34 @@
1
+ const ohtLineCorner = new URL('../../icons/oht-line-corner.svg', import.meta.url).href;
2
+ const ohtLineCornerFillImage = new URL('../../icons/oht-line-corner.png', import.meta.url).href;
3
+ export default {
4
+ type: 'OHT Line Corner',
5
+ description: 'OHT Line Corner',
6
+ icon: ohtLineCorner,
7
+ group: 'OCS',
8
+ model: {
9
+ type: 'OHTLine',
10
+ ohtType: 'corner',
11
+ left: 200,
12
+ top: 100,
13
+ width: 22,
14
+ height: 22,
15
+ fillStyle: {
16
+ fitPattern: false,
17
+ height: null,
18
+ image: ohtLineCornerFillImage,
19
+ offsetX: 0,
20
+ offsetY: 0,
21
+ type: 'pattern',
22
+ width: null,
23
+ color: '#d6d6d6'
24
+ },
25
+ text: ' ',
26
+ strokeStyle: '#000',
27
+ alpha: 1,
28
+ hidden: false,
29
+ lineWidth: 0,
30
+ lineDash: 'solid',
31
+ lineCap: 'butt'
32
+ }
33
+ };
34
+ //# sourceMappingURL=oht-line-corner.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oht-line-corner.js","sourceRoot":"","sources":["../../src/templates/oht-line-corner.ts"],"names":[],"mappings":"AAAA,MAAM,aAAa,GAAG,IAAI,GAAG,CAAC,iCAAiC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AACtF,MAAM,sBAAsB,GAAG,IAAI,GAAG,CAAC,iCAAiC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE/F,eAAe;IACb,IAAI,EAAE,iBAAiB;IACvB,WAAW,EAAE,iBAAiB;IAC9B,IAAI,EAAE,aAAa;IACnB,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,QAAQ;QACjB,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,SAAS,EAAE;YACT,UAAU,EAAE,KAAK;YACjB,MAAM,EAAE,IAAI;YACZ,KAAK,EAAE,sBAAsB;YAC7B,OAAO,EAAE,CAAC;YACV,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,SAAS;YACf,KAAK,EAAE,IAAI;YACX,KAAK,EAAE,SAAS;SACjB;QACD,IAAI,EAAE,GAAG;QACT,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,CAAC;QACZ,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE,MAAM;KAChB;CACF,CAAA","sourcesContent":["const ohtLineCorner = new URL('../../icons/oht-line-corner.svg', import.meta.url).href\nconst ohtLineCornerFillImage = new URL('../../icons/oht-line-corner.png', import.meta.url).href\n\nexport default {\n type: 'OHT Line Corner',\n description: 'OHT Line Corner',\n icon: ohtLineCorner,\n group: 'OCS',\n model: {\n type: 'OHTLine',\n ohtType: 'corner',\n left: 200,\n top: 100,\n width: 22,\n height: 22,\n fillStyle: {\n fitPattern: false,\n height: null,\n image: ohtLineCornerFillImage,\n offsetX: 0,\n offsetY: 0,\n type: 'pattern',\n width: null,\n color: '#d6d6d6'\n },\n text: ' ',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 0,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n}\n"]}
@@ -0,0 +1,34 @@
1
+ const ohtLineCross = new URL('../../icons/oht-line-cross.svg', import.meta.url).href;
2
+ const ohtLineCrossFillImage = new URL('../../icons/oht-line-cross.png', import.meta.url).href;
3
+ export default {
4
+ type: 'OHT Line Cross',
5
+ description: 'OHT Line Cross',
6
+ icon: ohtLineCross,
7
+ group: 'OCS',
8
+ model: {
9
+ type: 'OHTLine',
10
+ ohtType: 'cross',
11
+ left: 200,
12
+ top: 100,
13
+ width: 22,
14
+ height: 22,
15
+ fillStyle: {
16
+ fitPattern: false,
17
+ height: null,
18
+ image: ohtLineCrossFillImage,
19
+ offsetX: 0,
20
+ offsetY: 0,
21
+ type: 'pattern',
22
+ width: null,
23
+ color: '#d6d6d6'
24
+ },
25
+ text: ' ',
26
+ strokeStyle: '#000',
27
+ alpha: 1,
28
+ hidden: false,
29
+ lineWidth: 0,
30
+ lineDash: 'solid',
31
+ lineCap: 'butt'
32
+ }
33
+ };
34
+ //# sourceMappingURL=oht-line-cross.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oht-line-cross.js","sourceRoot":"","sources":["../../src/templates/oht-line-cross.ts"],"names":[],"mappings":"AAAA,MAAM,YAAY,GAAG,IAAI,GAAG,CAAC,gCAAgC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AACpF,MAAM,qBAAqB,GAAG,IAAI,GAAG,CAAC,gCAAgC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAE7F,eAAe;IACb,IAAI,EAAE,gBAAgB;IACtB,WAAW,EAAE,gBAAgB;IAC7B,IAAI,EAAE,YAAY;IAClB,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,OAAO;QAChB,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,SAAS,EAAE;YACT,UAAU,EAAE,KAAK;YACjB,MAAM,EAAE,IAAI;YACZ,KAAK,EAAE,qBAAqB;YAC5B,OAAO,EAAE,CAAC;YACV,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,SAAS;YACf,KAAK,EAAE,IAAI;YACX,KAAK,EAAE,SAAS;SACjB;QACD,IAAI,EAAE,GAAG;QACT,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,CAAC;QACZ,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE,MAAM;KAChB;CACF,CAAA","sourcesContent":["const ohtLineCross = new URL('../../icons/oht-line-cross.svg', import.meta.url).href\nconst ohtLineCrossFillImage = new URL('../../icons/oht-line-cross.png', import.meta.url).href\n\nexport default {\n type: 'OHT Line Cross',\n description: 'OHT Line Cross',\n icon: ohtLineCross,\n group: 'OCS',\n model: {\n type: 'OHTLine',\n ohtType: 'cross',\n left: 200,\n top: 100,\n width: 22,\n height: 22,\n fillStyle: {\n fitPattern: false,\n height: null,\n image: ohtLineCrossFillImage,\n offsetX: 0,\n offsetY: 0,\n type: 'pattern',\n width: null,\n color: '#d6d6d6'\n },\n text: ' ',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 0,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n}\n"]}
@@ -0,0 +1,34 @@
1
+ const ohtLineHorizontal = new URL('../../icons/oht-line-horizontal.svg', import.meta.url).href;
2
+ const ohtLineHorizontalFillImage = new URL('../../icons/oht-line-horizontal.png', import.meta.url).href;
3
+ export default {
4
+ type: 'OHT Line Horizontal',
5
+ description: 'OHT Line Horizontal',
6
+ icon: ohtLineHorizontal,
7
+ group: 'OCS',
8
+ model: {
9
+ type: 'OHTLine',
10
+ ohtType: 'horizon',
11
+ text: ' ',
12
+ left: 100,
13
+ top: 100,
14
+ width: 22,
15
+ height: 27,
16
+ fillStyle: {
17
+ fitPattern: false,
18
+ height: null,
19
+ image: ohtLineHorizontalFillImage,
20
+ offsetX: 0,
21
+ offsetY: 0,
22
+ type: 'pattern',
23
+ width: null,
24
+ color: '#d6d6d6'
25
+ },
26
+ strokeStyle: '#000',
27
+ alpha: 1,
28
+ hidden: false,
29
+ lineWidth: 0,
30
+ lineDash: 'solid',
31
+ lineCap: 'butt'
32
+ }
33
+ };
34
+ //# sourceMappingURL=oht-line-horizontal.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oht-line-horizontal.js","sourceRoot":"","sources":["../../src/templates/oht-line-horizontal.ts"],"names":[],"mappings":"AAAA,MAAM,iBAAiB,GAAG,IAAI,GAAG,CAAC,qCAAqC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAC9F,MAAM,0BAA0B,GAAG,IAAI,GAAG,CAAC,qCAAqC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEvG,eAAe;IACb,IAAI,EAAE,qBAAqB;IAC3B,WAAW,EAAE,qBAAqB;IAClC,IAAI,EAAE,iBAAiB;IACvB,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,SAAS;QAClB,IAAI,EAAE,GAAG;QACT,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,SAAS,EAAE;YACT,UAAU,EAAE,KAAK;YACjB,MAAM,EAAE,IAAI;YACZ,KAAK,EAAE,0BAA0B;YACjC,OAAO,EAAE,CAAC;YACV,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,SAAS;YACf,KAAK,EAAE,IAAI;YACX,KAAK,EAAE,SAAS;SACjB;QACD,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,CAAC;QACZ,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE,MAAM;KAChB;CACF,CAAA","sourcesContent":["const ohtLineHorizontal = new URL('../../icons/oht-line-horizontal.svg', import.meta.url).href\nconst ohtLineHorizontalFillImage = new URL('../../icons/oht-line-horizontal.png', import.meta.url).href\n\nexport default {\n type: 'OHT Line Horizontal',\n description: 'OHT Line Horizontal',\n icon: ohtLineHorizontal,\n group: 'OCS',\n model: {\n type: 'OHTLine',\n ohtType: 'horizon',\n text: ' ',\n left: 100,\n top: 100,\n width: 22,\n height: 27,\n fillStyle: {\n fitPattern: false,\n height: null,\n image: ohtLineHorizontalFillImage,\n offsetX: 0,\n offsetY: 0,\n type: 'pattern',\n width: null,\n color: '#d6d6d6'\n },\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 0,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n}\n"]}
@@ -0,0 +1,34 @@
1
+ const ohtLineVertical = new URL('../../icons/oht-line-vertical.svg', import.meta.url).href;
2
+ const ohtLineVerticalFillImage = new URL('../../icons/oht-line-vertical.png', import.meta.url).href;
3
+ export default {
4
+ type: 'OHT Line Vertical',
5
+ description: 'OHT Line Vertical',
6
+ icon: ohtLineVertical,
7
+ group: 'OCS',
8
+ model: {
9
+ type: 'OHTLine',
10
+ ohtType: 'vertical',
11
+ left: 200,
12
+ top: 100,
13
+ width: 27,
14
+ height: 22,
15
+ fillStyle: {
16
+ fitPattern: false,
17
+ height: null,
18
+ image: ohtLineVerticalFillImage,
19
+ offsetX: 0,
20
+ offsetY: 0,
21
+ type: 'pattern',
22
+ width: null,
23
+ color: '#d6d6d6'
24
+ },
25
+ text: ' ',
26
+ strokeStyle: '#000',
27
+ alpha: 1,
28
+ hidden: false,
29
+ lineWidth: 0,
30
+ lineDash: 'solid',
31
+ lineCap: 'butt'
32
+ }
33
+ };
34
+ //# sourceMappingURL=oht-line-vertical.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oht-line-vertical.js","sourceRoot":"","sources":["../../src/templates/oht-line-vertical.ts"],"names":[],"mappings":"AAAA,MAAM,eAAe,GAAG,IAAI,GAAG,CAAC,mCAAmC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAC1F,MAAM,wBAAwB,GAAG,IAAI,GAAG,CAAC,mCAAmC,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEnG,eAAe;IACb,IAAI,EAAE,mBAAmB;IACzB,WAAW,EAAE,mBAAmB;IAChC,IAAI,EAAE,eAAe;IACrB,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,UAAU;QACnB,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,SAAS,EAAE;YACT,UAAU,EAAE,KAAK;YACjB,MAAM,EAAE,IAAI;YACZ,KAAK,EAAE,wBAAwB;YAC/B,OAAO,EAAE,CAAC;YACV,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,SAAS;YACf,KAAK,EAAE,IAAI;YACX,KAAK,EAAE,SAAS;SACjB;QACD,IAAI,EAAE,GAAG;QACT,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,CAAC;QACZ,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE,MAAM;KAChB;CACF,CAAA","sourcesContent":["const ohtLineVertical = new URL('../../icons/oht-line-vertical.svg', import.meta.url).href\nconst ohtLineVerticalFillImage = new URL('../../icons/oht-line-vertical.png', import.meta.url).href\n\nexport default {\n type: 'OHT Line Vertical',\n description: 'OHT Line Vertical',\n icon: ohtLineVertical,\n group: 'OCS',\n model: {\n type: 'OHTLine',\n ohtType: 'vertical',\n left: 200,\n top: 100,\n width: 27,\n height: 22,\n fillStyle: {\n fitPattern: false,\n height: null,\n image: ohtLineVerticalFillImage,\n offsetX: 0,\n offsetY: 0,\n type: 'pattern',\n width: null,\n color: '#d6d6d6'\n },\n text: ' ',\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 0,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n}\n"]}
@@ -0,0 +1,15 @@
1
+ const ohtLine = new URL('../../icons/oht-line.png', import.meta.url).href;
2
+ export default {
3
+ type: 'OHT Line',
4
+ description: 'OHT Line',
5
+ icon: ohtLine,
6
+ group: 'OCS',
7
+ model: {
8
+ type: 'OHTLine',
9
+ left: 200,
10
+ top: 100,
11
+ width: 100,
12
+ height: 20
13
+ }
14
+ };
15
+ //# sourceMappingURL=oht-line.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oht-line.js","sourceRoot":"","sources":["../../src/templates/oht-line.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,GAAG,IAAI,GAAG,CAAC,0BAA0B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEzE,eAAe;IACb,IAAI,EAAE,UAAU;IAChB,WAAW,EAAE,UAAU;IACvB,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,EAAE;KACX;CACF,CAAA","sourcesContent":["const ohtLine = new URL('../../icons/oht-line.png', import.meta.url).href\n\nexport default {\n type: 'OHT Line',\n description: 'OHT Line',\n icon: ohtLine,\n group: 'OCS',\n model: {\n type: 'OHTLine',\n left: 200,\n top: 100,\n width: 100,\n height: 20\n }\n}\n"]}
@@ -0,0 +1,15 @@
1
+ const oht = new URL('../../icons/oht.png', import.meta.url).href;
2
+ export default {
3
+ type: 'OHT',
4
+ description: 'OHT',
5
+ icon: oht,
6
+ group: 'OCS',
7
+ model: {
8
+ type: 'OHT',
9
+ left: 100,
10
+ top: 100,
11
+ width: 20,
12
+ height: 20
13
+ }
14
+ };
15
+ //# sourceMappingURL=oht.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oht.js","sourceRoot":"","sources":["../../src/templates/oht.ts"],"names":[],"mappings":"AAAA,MAAM,GAAG,GAAG,IAAI,GAAG,CAAC,qBAAqB,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEhE,eAAe;IACb,IAAI,EAAE,KAAK;IACX,WAAW,EAAE,KAAK;IAClB,IAAI,EAAE,GAAG;IACT,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,KAAK;QACX,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;KACX;CACF,CAAA","sourcesContent":["const oht = new URL('../../icons/oht.png', import.meta.url).href\n\nexport default {\n type: 'OHT',\n description: 'OHT',\n icon: oht,\n group: 'OCS',\n model: {\n type: 'OHT',\n left: 100,\n top: 100,\n width: 20,\n height: 20\n }\n}\n"]}
@@ -0,0 +1,15 @@
1
+ const port = new URL('../../icons/port.png', import.meta.url).href;
2
+ export default {
3
+ type: 'Port',
4
+ description: 'port shape',
5
+ icon: port,
6
+ group: ['BCS', 'CCS', 'ECS', 'SCS'],
7
+ model: {
8
+ type: 'Port',
9
+ left: 100,
10
+ top: 100,
11
+ width: 20,
12
+ height: 20
13
+ }
14
+ };
15
+ //# sourceMappingURL=port.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"port.js","sourceRoot":"","sources":["../../src/templates/port.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,IAAI,GAAG,CAAC,sBAAsB,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAElE,eAAe;IACb,IAAI,EAAE,MAAM;IACZ,WAAW,EAAE,YAAY;IACzB,IAAI,EAAE,IAAI;IACV,KAAK,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC;IACnC,KAAK,EAAE;QACL,IAAI,EAAE,MAAM;QACZ,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;KACX;CACF,CAAA","sourcesContent":["const port = new URL('../../icons/port.png', import.meta.url).href\n\nexport default {\n type: 'Port',\n description: 'port shape',\n icon: port,\n group: ['BCS', 'CCS', 'ECS', 'SCS'],\n model: {\n type: 'Port',\n left: 100,\n top: 100,\n width: 20,\n height: 20\n }\n}\n"]}
@@ -0,0 +1,33 @@
1
+ const rtvCorner = new URL('../../icons/rtv-corner.svg', import.meta.url).href;
2
+ const rtvCornerFillImage = new URL('../../icons/rtv-corner.png', import.meta.url).href;
3
+ export default {
4
+ type: 'Rtv Corner',
5
+ description: 'Rtv Corner',
6
+ icon: rtvCorner,
7
+ group: 'CCS',
8
+ model: {
9
+ type: 'RTVRail',
10
+ rgvType: 'corner',
11
+ left: 200,
12
+ top: 100,
13
+ width: 38,
14
+ height: 38,
15
+ fillStyle: {
16
+ fitPattern: false,
17
+ height: null,
18
+ image: rtvCornerFillImage,
19
+ offsetX: 0,
20
+ offsetY: 0,
21
+ type: 'pattern',
22
+ width: null,
23
+ color: '#636363'
24
+ },
25
+ strokeStyle: '#000',
26
+ alpha: 1,
27
+ hidden: false,
28
+ lineWidth: 0,
29
+ lineDash: 'solid',
30
+ lineCap: 'butt'
31
+ }
32
+ };
33
+ //# sourceMappingURL=rtv-corner.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rtv-corner.js","sourceRoot":"","sources":["../../src/templates/rtv-corner.ts"],"names":[],"mappings":"AAAA,MAAM,SAAS,GAAG,IAAI,GAAG,CAAC,4BAA4B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAC7E,MAAM,kBAAkB,GAAG,IAAI,GAAG,CAAC,4BAA4B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEtF,eAAe;IACb,IAAI,EAAE,YAAY;IAClB,WAAW,EAAE,YAAY;IACzB,IAAI,EAAE,SAAS;IACf,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,QAAQ;QACjB,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,SAAS,EAAE;YACT,UAAU,EAAE,KAAK;YACjB,MAAM,EAAE,IAAI;YACZ,KAAK,EAAE,kBAAkB;YACzB,OAAO,EAAE,CAAC;YACV,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,SAAS;YACf,KAAK,EAAE,IAAI;YACX,KAAK,EAAE,SAAS;SACjB;QACD,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,CAAC;QACZ,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE,MAAM;KAChB;CACF,CAAA","sourcesContent":["const rtvCorner = new URL('../../icons/rtv-corner.svg', import.meta.url).href\nconst rtvCornerFillImage = new URL('../../icons/rtv-corner.png', import.meta.url).href\n\nexport default {\n type: 'Rtv Corner',\n description: 'Rtv Corner',\n icon: rtvCorner,\n group: 'CCS',\n model: {\n type: 'RTVRail',\n rgvType: 'corner',\n left: 200,\n top: 100,\n width: 38,\n height: 38,\n fillStyle: {\n fitPattern: false,\n height: null,\n image: rtvCornerFillImage,\n offsetX: 0,\n offsetY: 0,\n type: 'pattern',\n width: null,\n color: '#636363'\n },\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 0,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n}\n"]}
@@ -0,0 +1,33 @@
1
+ const rtvLeft = new URL('../../icons/rtv-left.svg', import.meta.url).href;
2
+ const rtvLeftFillImage = new URL('../../icons/rtv-left.png', import.meta.url).href;
3
+ export default {
4
+ type: 'Rtv Left',
5
+ description: 'Rtv Left',
6
+ icon: rtvLeft,
7
+ group: 'CCS',
8
+ model: {
9
+ type: 'RTVRail',
10
+ rgvType: 'left',
11
+ left: 200,
12
+ top: 100,
13
+ width: 20,
14
+ height: 19,
15
+ fillStyle: {
16
+ fitPattern: false,
17
+ height: null,
18
+ image: rtvLeftFillImage,
19
+ offsetX: 0,
20
+ offsetY: 0,
21
+ type: 'pattern',
22
+ width: null,
23
+ color: '#636363'
24
+ },
25
+ strokeStyle: '#000',
26
+ alpha: 1,
27
+ hidden: false,
28
+ lineWidth: 0,
29
+ lineDash: 'solid',
30
+ lineCap: 'butt'
31
+ }
32
+ };
33
+ //# sourceMappingURL=rtv-left.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rtv-left.js","sourceRoot":"","sources":["../../src/templates/rtv-left.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,GAAG,IAAI,GAAG,CAAC,0BAA0B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AACzE,MAAM,gBAAgB,GAAG,IAAI,GAAG,CAAC,0BAA0B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAElF,eAAe;IACb,IAAI,EAAE,UAAU;IAChB,WAAW,EAAE,UAAU;IACvB,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,MAAM;QACf,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,SAAS,EAAE;YACT,UAAU,EAAE,KAAK;YACjB,MAAM,EAAE,IAAI;YACZ,KAAK,EAAE,gBAAgB;YACvB,OAAO,EAAE,CAAC;YACV,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,SAAS;YACf,KAAK,EAAE,IAAI;YACX,KAAK,EAAE,SAAS;SACjB;QACD,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,CAAC;QACZ,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE,MAAM;KAChB;CACF,CAAA","sourcesContent":["const rtvLeft = new URL('../../icons/rtv-left.svg', import.meta.url).href\nconst rtvLeftFillImage = new URL('../../icons/rtv-left.png', import.meta.url).href\n\nexport default {\n type: 'Rtv Left',\n description: 'Rtv Left',\n icon: rtvLeft,\n group: 'CCS',\n model: {\n type: 'RTVRail',\n rgvType: 'left',\n left: 200,\n top: 100,\n width: 20,\n height: 19,\n fillStyle: {\n fitPattern: false,\n height: null,\n image: rtvLeftFillImage,\n offsetX: 0,\n offsetY: 0,\n type: 'pattern',\n width: null,\n color: '#636363'\n },\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 0,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n}\n"]}
@@ -0,0 +1,33 @@
1
+ const rtvMiddle = new URL('../../icons/rtv-middle.svg', import.meta.url).href;
2
+ const rtvMiddleFillImage = new URL('../../icons/rtv-middle.png', import.meta.url).href;
3
+ export default {
4
+ type: 'Rtv Middle',
5
+ description: 'Rtv Middle',
6
+ icon: rtvMiddle,
7
+ group: 'CCS',
8
+ model: {
9
+ type: 'RTVRail',
10
+ rgvType: 'middle',
11
+ left: 200,
12
+ top: 100,
13
+ width: 21,
14
+ height: 19,
15
+ fillStyle: {
16
+ fitPattern: false,
17
+ height: null,
18
+ image: rtvMiddleFillImage,
19
+ offsetX: 0,
20
+ offsetY: 0,
21
+ type: 'pattern',
22
+ width: null,
23
+ color: '#636363'
24
+ },
25
+ strokeStyle: '#000',
26
+ alpha: 1,
27
+ hidden: false,
28
+ lineWidth: 0,
29
+ lineDash: 'solid',
30
+ lineCap: 'butt'
31
+ }
32
+ };
33
+ //# sourceMappingURL=rtv-middle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rtv-middle.js","sourceRoot":"","sources":["../../src/templates/rtv-middle.ts"],"names":[],"mappings":"AAAA,MAAM,SAAS,GAAG,IAAI,GAAG,CAAC,4BAA4B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAC7E,MAAM,kBAAkB,GAAG,IAAI,GAAG,CAAC,4BAA4B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEtF,eAAe;IACb,IAAI,EAAE,YAAY;IAClB,WAAW,EAAE,YAAY;IACzB,IAAI,EAAE,SAAS;IACf,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,QAAQ;QACjB,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,SAAS,EAAE;YACT,UAAU,EAAE,KAAK;YACjB,MAAM,EAAE,IAAI;YACZ,KAAK,EAAE,kBAAkB;YACzB,OAAO,EAAE,CAAC;YACV,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,SAAS;YACf,KAAK,EAAE,IAAI;YACX,KAAK,EAAE,SAAS;SACjB;QACD,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,CAAC;QACZ,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE,MAAM;KAChB;CACF,CAAA","sourcesContent":["const rtvMiddle = new URL('../../icons/rtv-middle.svg', import.meta.url).href\nconst rtvMiddleFillImage = new URL('../../icons/rtv-middle.png', import.meta.url).href\n\nexport default {\n type: 'Rtv Middle',\n description: 'Rtv Middle',\n icon: rtvMiddle,\n group: 'CCS',\n model: {\n type: 'RTVRail',\n rgvType: 'middle',\n left: 200,\n top: 100,\n width: 21,\n height: 19,\n fillStyle: {\n fitPattern: false,\n height: null,\n image: rtvMiddleFillImage,\n offsetX: 0,\n offsetY: 0,\n type: 'pattern',\n width: null,\n color: '#636363'\n },\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 0,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n}\n"]}
@@ -0,0 +1,15 @@
1
+ const rtvRail = new URL('../../icons/rtv-rail.png', import.meta.url).href;
2
+ export default {
3
+ type: 'RTVRail',
4
+ description: 'RTVRail',
5
+ icon: rtvRail,
6
+ group: 'CCS',
7
+ model: {
8
+ type: 'RTVRail',
9
+ left: 200,
10
+ top: 100,
11
+ width: 100,
12
+ height: 20
13
+ }
14
+ };
15
+ //# sourceMappingURL=rtv-rail.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rtv-rail.js","sourceRoot":"","sources":["../../src/templates/rtv-rail.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,GAAG,IAAI,GAAG,CAAC,0BAA0B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEzE,eAAe;IACb,IAAI,EAAE,SAAS;IACf,WAAW,EAAE,SAAS;IACtB,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,GAAG;QACV,MAAM,EAAE,EAAE;KACX;CACF,CAAA","sourcesContent":["const rtvRail = new URL('../../icons/rtv-rail.png', import.meta.url).href\n\nexport default {\n type: 'RTVRail',\n description: 'RTVRail',\n icon: rtvRail,\n group: 'CCS',\n model: {\n type: 'RTVRail',\n left: 200,\n top: 100,\n width: 100,\n height: 20\n }\n}\n"]}
@@ -0,0 +1,33 @@
1
+ const rtvRight = new URL('../../icons/rtv-right.svg', import.meta.url).href;
2
+ const rtvRightFillImage = new URL('../../icons/rtv-right.png', import.meta.url).href;
3
+ export default {
4
+ type: 'Rtv Right',
5
+ description: 'Rtv Right',
6
+ icon: rtvRight,
7
+ group: 'CCS',
8
+ model: {
9
+ type: 'RTVRail',
10
+ rgvType: 'right',
11
+ left: 200,
12
+ top: 100,
13
+ width: 20,
14
+ height: 19,
15
+ fillStyle: {
16
+ fitPattern: false,
17
+ height: null,
18
+ image: rtvRightFillImage,
19
+ offsetX: 0,
20
+ offsetY: 0,
21
+ type: 'pattern',
22
+ width: null,
23
+ color: '#636363'
24
+ },
25
+ strokeStyle: '#000',
26
+ alpha: 1,
27
+ hidden: false,
28
+ lineWidth: 0,
29
+ lineDash: 'solid',
30
+ lineCap: 'butt'
31
+ }
32
+ };
33
+ //# sourceMappingURL=rtv-right.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rtv-right.js","sourceRoot":"","sources":["../../src/templates/rtv-right.ts"],"names":[],"mappings":"AAAA,MAAM,QAAQ,GAAG,IAAI,GAAG,CAAC,2BAA2B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAC3E,MAAM,iBAAiB,GAAG,IAAI,GAAG,CAAC,2BAA2B,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,IAAI,CAAA;AAEpF,eAAe;IACb,IAAI,EAAE,WAAW;IACjB,WAAW,EAAE,WAAW;IACxB,IAAI,EAAE,QAAQ;IACd,KAAK,EAAE,KAAK;IACZ,KAAK,EAAE;QACL,IAAI,EAAE,SAAS;QACf,OAAO,EAAE,OAAO;QAChB,IAAI,EAAE,GAAG;QACT,GAAG,EAAE,GAAG;QACR,KAAK,EAAE,EAAE;QACT,MAAM,EAAE,EAAE;QACV,SAAS,EAAE;YACT,UAAU,EAAE,KAAK;YACjB,MAAM,EAAE,IAAI;YACZ,KAAK,EAAE,iBAAiB;YACxB,OAAO,EAAE,CAAC;YACV,OAAO,EAAE,CAAC;YACV,IAAI,EAAE,SAAS;YACf,KAAK,EAAE,IAAI;YACX,KAAK,EAAE,SAAS;SACjB;QACD,WAAW,EAAE,MAAM;QACnB,KAAK,EAAE,CAAC;QACR,MAAM,EAAE,KAAK;QACb,SAAS,EAAE,CAAC;QACZ,QAAQ,EAAE,OAAO;QACjB,OAAO,EAAE,MAAM;KAChB;CACF,CAAA","sourcesContent":["const rtvRight = new URL('../../icons/rtv-right.svg', import.meta.url).href\nconst rtvRightFillImage = new URL('../../icons/rtv-right.png', import.meta.url).href\n\nexport default {\n type: 'Rtv Right',\n description: 'Rtv Right',\n icon: rtvRight,\n group: 'CCS',\n model: {\n type: 'RTVRail',\n rgvType: 'right',\n left: 200,\n top: 100,\n width: 20,\n height: 19,\n fillStyle: {\n fitPattern: false,\n height: null,\n image: rtvRightFillImage,\n offsetX: 0,\n offsetY: 0,\n type: 'pattern',\n width: null,\n color: '#636363'\n },\n strokeStyle: '#000',\n alpha: 1,\n hidden: false,\n lineWidth: 0,\n lineDash: 'solid',\n lineCap: 'butt'\n }\n}\n"]}