@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.
- package/AGENTS.md +35 -12
- package/README.md +10 -10
- package/dist/assets/data/editor_preset_menu.d.ts +8 -0
- package/dist/components/debug/DebugPanel.vue.d.ts +1 -60
- package/dist/components/debug/WsProxy/ConnPanel.vue.d.ts +13 -4
- package/dist/components/debug/WsProxy/index.vue.d.ts +3 -6
- package/dist/components/debug/WsProxy/proxy.d.ts +16 -4
- package/dist/components/editor/ControlBar/CaseTitleEdit.vue.d.ts +87 -87
- package/dist/components/editor/OptionCard/Equipment/models/Pallet.vue.d.ts +2 -0
- package/dist/components/editor/OptionCard/Equipment/stationSlot/StationSlotGroupDialog.vue.d.ts +8 -0
- package/dist/components/editor/OptionCard/Equipment/stationSlot/StationSlotGroupLayers.vue.d.ts +2 -0
- package/dist/components/index.d.ts +1 -2
- package/dist/components/index.js +6452 -31974
- package/dist/components/preview/index.vue.d.ts +504 -0
- package/dist/composables/useCaseLoading.d.ts +10 -0
- package/dist/index-YxSpi9Af.js +131 -0
- package/dist/index.js +41 -145
- package/dist/lingshu-smart/wsProxyConfig.json +30 -0
- package/dist/locales/index.js +2 -2
- package/dist/playground/ViewPageDemo.vue.d.ts +1107 -103
- package/dist/stores/index.js +7 -0
- package/dist/stores/useAppStore.d.ts +1651 -139
- package/dist/stores/useDataStore.d.ts +1651 -139
- package/dist/stores/useDebugStore.d.ts +30 -12
- package/dist/types/components/config.types.d.ts +5 -0
- package/dist/types/enums.d.ts +2 -1
- package/dist/types/guards.d.ts +7 -1
- package/dist/types/models/config.types.d.ts +29 -1
- package/dist/types/models/operating.types.d.ts +15 -1
- package/dist/ui/models/Pallet.d.ts +25 -0
- package/dist/ui/models/ShuttleStation.d.ts +17 -4
- package/dist/useAppStore-DQI1btcH.js +26123 -0
- package/package.json +6 -2
- package/dist/components/debug/WsProxy/WsProxyPage.vue.d.ts +0 -14
- package/dist/components/debug/WsProxy/broadcast.d.ts +0 -31
package/dist/components/editor/OptionCard/Equipment/stationSlot/StationSlotGroupDialog.vue.d.ts
CHANGED
|
@@ -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>;
|
package/dist/components/editor/OptionCard/Equipment/stationSlot/StationSlotGroupLayers.vue.d.ts
ADDED
|
@@ -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
|
-
|
|
7
|
-
export { LingshuSmartEditor, LingshuSmartPreview, PerformanceStats, ScriptRunner, WsProxy, WsProxyPage };
|
|
6
|
+
export { LingshuSmartEditor, LingshuSmartPreview, PerformanceStats, ScriptRunner, WsProxy };
|