@jnrs/lingshu-smart 2.2.35 → 2.2.37

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 (35) hide show
  1. package/AGENTS.md +35 -12
  2. package/README.md +10 -10
  3. package/dist/assets/data/editor_preset_menu.d.ts +8 -0
  4. package/dist/components/debug/DebugPanel.vue.d.ts +1 -60
  5. package/dist/components/debug/WsProxy/ConnPanel.vue.d.ts +13 -4
  6. package/dist/components/debug/WsProxy/index.vue.d.ts +3 -6
  7. package/dist/components/debug/WsProxy/proxy.d.ts +16 -4
  8. package/dist/components/editor/ControlBar/CaseTitleEdit.vue.d.ts +87 -87
  9. package/dist/components/editor/OptionCard/Equipment/models/Pallet.vue.d.ts +2 -0
  10. package/dist/components/editor/OptionCard/Equipment/stationSlot/StationSlotGroupDialog.vue.d.ts +8 -0
  11. package/dist/components/editor/OptionCard/Equipment/stationSlot/StationSlotGroupLayers.vue.d.ts +2 -0
  12. package/dist/components/index.d.ts +1 -2
  13. package/dist/components/index.js +6452 -31974
  14. package/dist/components/preview/index.vue.d.ts +504 -0
  15. package/dist/composables/useCaseLoading.d.ts +10 -0
  16. package/dist/index-YxSpi9Af.js +131 -0
  17. package/dist/index.js +41 -145
  18. package/dist/lingshu-smart/wsProxyConfig.json +30 -0
  19. package/dist/locales/index.js +2 -2
  20. package/dist/playground/ViewPageDemo.vue.d.ts +1107 -103
  21. package/dist/stores/index.js +7 -0
  22. package/dist/stores/useAppStore.d.ts +1651 -139
  23. package/dist/stores/useDataStore.d.ts +1651 -139
  24. package/dist/stores/useDebugStore.d.ts +30 -12
  25. package/dist/types/components/config.types.d.ts +5 -0
  26. package/dist/types/enums.d.ts +2 -1
  27. package/dist/types/guards.d.ts +7 -1
  28. package/dist/types/models/config.types.d.ts +29 -1
  29. package/dist/types/models/operating.types.d.ts +15 -1
  30. package/dist/ui/models/Pallet.d.ts +25 -0
  31. package/dist/ui/models/ShuttleStation.d.ts +17 -4
  32. package/dist/useAppStore-DQI1btcH.js +26123 -0
  33. package/package.json +6 -2
  34. package/dist/components/debug/WsProxy/WsProxyPage.vue.d.ts +0 -14
  35. package/dist/components/debug/WsProxy/broadcast.d.ts +0 -31
@@ -5,6 +5,8 @@ interface Props {
5
5
  resourceType: EnumResourceType;
6
6
  flowOptions?: IFlowConfig;
7
7
  stationSlots?: IStationSlotConfig[];
8
+ hideBounds?: boolean;
9
+ visible?: boolean | 0;
8
10
  containerWidth?: number;
9
11
  containerHeight?: number;
10
12
  }
@@ -13,16 +15,22 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
13
15
  save: (data: {
14
16
  flowOptions: IFlowConfig;
15
17
  stationSlots: IStationSlotConfig[];
18
+ hideBounds: boolean;
19
+ visible: boolean | 0;
16
20
  }) => any;
17
21
  }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
18
22
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
19
23
  onSave?: ((data: {
20
24
  flowOptions: IFlowConfig;
21
25
  stationSlots: IStationSlotConfig[];
26
+ hideBounds: boolean;
27
+ visible: boolean | 0;
22
28
  }) => any) | undefined;
23
29
  }>, {
30
+ hideBounds: boolean;
24
31
  stationSlots: IStationSlotConfig[];
25
32
  flowOptions: IFlowConfig;
33
+ visible: boolean | 0;
26
34
  containerWidth: number;
27
35
  containerHeight: number;
28
36
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -3,5 +3,4 @@ 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
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 };
6
+ export { LingshuSmartEditor, LingshuSmartPreview, PerformanceStats, ScriptRunner, WsProxy };