@jnrs/lingshu-smart 2.2.34 → 2.2.35

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 (38) hide show
  1. package/AGENTS.md +4 -1
  2. package/README.md +1 -0
  3. package/dist/components/debug/DataLogPanel.vue.d.ts +44 -0
  4. package/dist/components/debug/DebugPanel.vue.d.ts +60 -1
  5. package/dist/components/debug/ScriptRunner/ConfigPanel.vue.d.ts +14 -11
  6. package/dist/components/debug/ScriptRunner/StepsPanel.vue.d.ts +8 -0
  7. package/dist/components/debug/ScriptRunner/script.d.ts +29 -1
  8. package/dist/components/debug/WsProxy/ConfigEditor.vue.d.ts +18 -0
  9. package/dist/components/debug/WsProxy/ConnPanel.vue.d.ts +24 -0
  10. package/dist/components/debug/WsProxy/WsProxyPage.vue.d.ts +14 -0
  11. package/dist/components/debug/WsProxy/broadcast.d.ts +31 -0
  12. package/dist/components/debug/WsProxy/index.vue.d.ts +39 -0
  13. package/dist/components/debug/WsProxy/proxy.d.ts +159 -0
  14. package/dist/components/editor/ControlBar/CaseTitleEdit.vue.d.ts +87 -87
  15. package/dist/components/index.d.ts +3 -1
  16. package/dist/components/index.js +14041 -11421
  17. package/dist/controller/AppController.d.ts +2 -0
  18. package/dist/lingshu-smart/wsProxyConfig.json +495 -0
  19. package/dist/locales/index.js +2 -2
  20. package/dist/playground/ViewPageDemo.vue.d.ts +58 -0
  21. package/dist/stores/useDebugStore.d.ts +375 -2
  22. package/dist/types/components/config.types.d.ts +1 -0
  23. package/dist/types/components/operating.types.d.ts +1 -0
  24. package/dist/types/models/operating.types.d.ts +14 -1
  25. package/dist/ui/abstract/ModelAbs.d.ts +10 -0
  26. package/dist/ui/components/StationSlot.d.ts +5 -1
  27. package/dist/ui/components/StationSlotGroup.d.ts +5 -0
  28. package/dist/ui/models/CleaningMachine.d.ts +2 -0
  29. package/dist/ui/models/DoubleJointRobot.d.ts +2 -0
  30. package/dist/ui/models/LoadingStation.d.ts +2 -0
  31. package/dist/ui/models/MachineTool.d.ts +2 -0
  32. package/dist/ui/models/MarkingMachine.d.ts +2 -0
  33. package/dist/ui/models/ResourceStore.d.ts +2 -0
  34. package/dist/ui/models/Rgv.d.ts +2 -0
  35. package/dist/ui/models/SingleJointRobot.d.ts +2 -0
  36. package/package.json +2 -2
  37. package/dist/components/debug/ScriptRunner/LogPanel.vue.d.ts +0 -19
  38. /package/dist/{json → lingshu-smart}/cases.json +0 -0
@@ -17,12 +17,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
17
17
  }> & Omit<{
18
18
  readonly type: import('element-plus').InputType;
19
19
  readonly modelValue: string | number | null;
20
+ readonly modelModifiers: import('element-plus').InputModelModifiers;
20
21
  readonly autocomplete: string;
21
- readonly validateEvent: boolean;
22
+ readonly wordLimitPosition: "inside" | "outside";
22
23
  readonly tabindex: string | number;
24
+ readonly validateEvent: boolean;
23
25
  readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
24
- readonly modelModifiers: import('element-plus').InputModelModifiers;
25
- readonly wordLimitPosition: "inside" | "outside";
26
26
  readonly rows: number;
27
27
  readonly name?: string | undefined;
28
28
  readonly disabled?: boolean | undefined;
@@ -31,22 +31,22 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
31
31
  readonly form?: string | undefined;
32
32
  readonly size?: import('element-plus').ComponentSize | undefined;
33
33
  readonly resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
34
- readonly ariaLabel?: string | undefined;
35
- readonly clearable?: boolean | undefined;
36
- readonly clearIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
37
- readonly suffixIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
38
34
  readonly autofocus?: boolean | undefined;
39
- readonly readonly?: boolean | undefined;
40
- readonly inputmode?: "none" | "search" | "url" | "text" | "email" | "tel" | "numeric" | "decimal" | undefined;
41
35
  readonly maxlength?: string | number | undefined;
42
36
  readonly minlength?: string | number | undefined;
43
37
  readonly autosize?: import('element-plus').InputAutoSize | undefined;
44
38
  readonly formatter?: ((value: string) => string) | undefined;
45
39
  readonly parser?: ((value: string) => string) | undefined;
40
+ readonly readonly?: boolean | undefined;
41
+ readonly clearable?: boolean | undefined;
42
+ readonly clearIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
46
43
  readonly showPassword?: boolean | undefined;
47
44
  readonly showWordLimit?: boolean | undefined;
45
+ readonly suffixIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
48
46
  readonly prefixIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
49
47
  readonly containerRole?: string | undefined;
48
+ readonly ariaLabel?: string | undefined;
49
+ readonly inputmode?: "none" | "search" | "url" | "text" | "email" | "tel" | "numeric" | "decimal" | undefined;
50
50
  "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
51
51
  onInput?: ((value: string) => any) | undefined | undefined;
52
52
  onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
@@ -59,7 +59,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
59
59
  onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
60
60
  onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
61
61
  onClear?: (() => any) | undefined | undefined;
62
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "modelValue" | "autocomplete" | "clearIcon" | "validateEvent" | "tabindex" | "inputStyle" | "modelModifiers" | "wordLimitPosition" | "rows">;
62
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "modelValue" | "modelModifiers" | "autocomplete" | "clearIcon" | "wordLimitPosition" | "tabindex" | "validateEvent" | "inputStyle" | "rows">;
63
63
  $attrs: {
64
64
  [x: string]: unknown;
65
65
  };
@@ -101,47 +101,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
101
101
  resize: {
102
102
  type: import('vue').PropType<"horizontal" | "vertical" | "none" | "both">;
103
103
  };
104
- modelValue: {
105
- type: import('vue').PropType<string | number | null>;
106
- default: "";
107
- };
108
- ariaLabel: {
109
- type: import('vue').PropType<string>;
110
- };
111
- autocomplete: {
112
- type: import('vue').PropType<string>;
113
- default: "off";
114
- };
115
- clearable: {
116
- type: import('vue').PropType<boolean>;
117
- };
118
- clearIcon: {
119
- type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
120
- default: any;
121
- };
122
- suffixIcon: {
123
- type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
124
- };
125
- validateEvent: {
126
- type: import('vue').PropType<boolean>;
127
- default: true;
128
- };
129
- tabindex: {
130
- type: import('vue').PropType<string | number>;
131
- default: 0;
132
- };
133
- inputStyle: {
134
- type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
135
- default: () => {};
136
- };
137
104
  autofocus: {
138
105
  type: import('vue').PropType<boolean>;
139
106
  };
140
- readonly: {
141
- type: import('vue').PropType<boolean>;
142
- };
143
- inputmode: {
144
- type: import('vue').PropType<"none" | "search" | "url" | "text" | "email" | "tel" | "numeric" | "decimal">;
107
+ modelValue: {
108
+ type: import('vue').PropType<string | number | null>;
109
+ default: "";
145
110
  };
146
111
  modelModifiers: {
147
112
  type: import('vue').PropType<import('element-plus').InputModelModifiers>;
@@ -156,12 +121,26 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
156
121
  autosize: {
157
122
  type: import('vue').PropType<import('element-plus').InputAutoSize>;
158
123
  };
124
+ autocomplete: {
125
+ type: import('vue').PropType<string>;
126
+ default: "off";
127
+ };
159
128
  formatter: {
160
129
  type: import('vue').PropType<(value: string) => string>;
161
130
  };
162
131
  parser: {
163
132
  type: import('vue').PropType<(value: string) => string>;
164
133
  };
134
+ readonly: {
135
+ type: import('vue').PropType<boolean>;
136
+ };
137
+ clearable: {
138
+ type: import('vue').PropType<boolean>;
139
+ };
140
+ clearIcon: {
141
+ type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
142
+ default: any;
143
+ };
165
144
  showPassword: {
166
145
  type: import('vue').PropType<boolean>;
167
146
  };
@@ -172,16 +151,37 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
172
151
  type: import('vue').PropType<"inside" | "outside">;
173
152
  default: "inside";
174
153
  };
154
+ suffixIcon: {
155
+ type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
156
+ };
175
157
  prefixIcon: {
176
158
  type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
177
159
  };
178
160
  containerRole: {
179
161
  type: import('vue').PropType<string>;
180
162
  };
163
+ tabindex: {
164
+ type: import('vue').PropType<string | number>;
165
+ default: 0;
166
+ };
167
+ validateEvent: {
168
+ type: import('vue').PropType<boolean>;
169
+ default: true;
170
+ };
171
+ inputStyle: {
172
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
173
+ default: () => {};
174
+ };
181
175
  rows: {
182
176
  type: import('vue').PropType<number>;
183
177
  default: 2;
184
178
  };
179
+ ariaLabel: {
180
+ type: import('vue').PropType<string>;
181
+ };
182
+ inputmode: {
183
+ type: import('vue').PropType<"none" | "search" | "url" | "text" | "email" | "tel" | "numeric" | "decimal">;
184
+ };
185
185
  }>> & {
186
186
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
187
187
  onInput?: ((value: string) => any) | undefined;
@@ -291,47 +291,12 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
291
291
  resize: {
292
292
  type: import('vue').PropType<"horizontal" | "vertical" | "none" | "both">;
293
293
  };
294
- modelValue: {
295
- type: import('vue').PropType<string | number | null>;
296
- default: "";
297
- };
298
- ariaLabel: {
299
- type: import('vue').PropType<string>;
300
- };
301
- autocomplete: {
302
- type: import('vue').PropType<string>;
303
- default: "off";
304
- };
305
- clearable: {
306
- type: import('vue').PropType<boolean>;
307
- };
308
- clearIcon: {
309
- type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
310
- default: any;
311
- };
312
- suffixIcon: {
313
- type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
314
- };
315
- validateEvent: {
316
- type: import('vue').PropType<boolean>;
317
- default: true;
318
- };
319
- tabindex: {
320
- type: import('vue').PropType<string | number>;
321
- default: 0;
322
- };
323
- inputStyle: {
324
- type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
325
- default: () => {};
326
- };
327
294
  autofocus: {
328
295
  type: import('vue').PropType<boolean>;
329
296
  };
330
- readonly: {
331
- type: import('vue').PropType<boolean>;
332
- };
333
- inputmode: {
334
- type: import('vue').PropType<"none" | "search" | "url" | "text" | "email" | "tel" | "numeric" | "decimal">;
297
+ modelValue: {
298
+ type: import('vue').PropType<string | number | null>;
299
+ default: "";
335
300
  };
336
301
  modelModifiers: {
337
302
  type: import('vue').PropType<import('element-plus').InputModelModifiers>;
@@ -346,12 +311,26 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
346
311
  autosize: {
347
312
  type: import('vue').PropType<import('element-plus').InputAutoSize>;
348
313
  };
314
+ autocomplete: {
315
+ type: import('vue').PropType<string>;
316
+ default: "off";
317
+ };
349
318
  formatter: {
350
319
  type: import('vue').PropType<(value: string) => string>;
351
320
  };
352
321
  parser: {
353
322
  type: import('vue').PropType<(value: string) => string>;
354
323
  };
324
+ readonly: {
325
+ type: import('vue').PropType<boolean>;
326
+ };
327
+ clearable: {
328
+ type: import('vue').PropType<boolean>;
329
+ };
330
+ clearIcon: {
331
+ type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
332
+ default: any;
333
+ };
355
334
  showPassword: {
356
335
  type: import('vue').PropType<boolean>;
357
336
  };
@@ -362,16 +341,37 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
362
341
  type: import('vue').PropType<"inside" | "outside">;
363
342
  default: "inside";
364
343
  };
344
+ suffixIcon: {
345
+ type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
346
+ };
365
347
  prefixIcon: {
366
348
  type: import('vue').PropType<import('element-plus/es/utils/index.mjs').IconPropType>;
367
349
  };
368
350
  containerRole: {
369
351
  type: import('vue').PropType<string>;
370
352
  };
353
+ tabindex: {
354
+ type: import('vue').PropType<string | number>;
355
+ default: 0;
356
+ };
357
+ validateEvent: {
358
+ type: import('vue').PropType<boolean>;
359
+ default: true;
360
+ };
361
+ inputStyle: {
362
+ type: import('vue').PropType<string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null>;
363
+ default: () => {};
364
+ };
371
365
  rows: {
372
366
  type: import('vue').PropType<number>;
373
367
  default: 2;
374
368
  };
369
+ ariaLabel: {
370
+ type: import('vue').PropType<string>;
371
+ };
372
+ inputmode: {
373
+ type: import('vue').PropType<"none" | "search" | "url" | "text" | "email" | "tel" | "numeric" | "decimal">;
374
+ };
375
375
  }>> & {
376
376
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
377
377
  onInput?: ((value: string) => any) | undefined;
@@ -385,7 +385,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
385
385
  onMouseenter?: ((evt: MouseEvent) => any) | undefined;
386
386
  onMouseleave?: ((evt: MouseEvent) => any) | undefined;
387
387
  onClear?: (() => any) | undefined;
388
- }, "disabled" | "type" | "blur" | "focus" | "clear" | "input" | "select" | "textarea" | "modelValue" | "autocomplete" | "clearIcon" | "validateEvent" | "tabindex" | "inputStyle" | "ref" | "modelModifiers" | "autosize" | "wordLimitPosition" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
388
+ }, "disabled" | "type" | "blur" | "focus" | "clear" | "input" | "select" | "textarea" | "ref" | "modelValue" | "modelModifiers" | "autosize" | "autocomplete" | "clearIcon" | "wordLimitPosition" | "tabindex" | "validateEvent" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
389
389
  input: import('vue').ShallowRef<HTMLInputElement | undefined>;
390
390
  textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
391
391
  ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
@@ -2,4 +2,6 @@ import { default as LingshuSmartEditor } from './editor/index.vue';
2
2
  import { default as LingshuSmartPreview } from './preview/index.vue';
3
3
  import { default as PerformanceStats } from './debug/PerformanceStats.vue';
4
4
  import { default as ScriptRunner } from './debug/ScriptRunner/index.vue';
5
- export { LingshuSmartEditor, LingshuSmartPreview, PerformanceStats, ScriptRunner };
5
+ import { default as WsProxy } from './debug/WsProxy/index.vue';
6
+ import { default as WsProxyPage } from './debug/WsProxy/WsProxyPage.vue';
7
+ export { LingshuSmartEditor, LingshuSmartPreview, PerformanceStats, ScriptRunner, WsProxy, WsProxyPage };