@jnrs/lingshu-smart 2.2.37 → 2.2.39
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 +27 -25
- package/README.md +10 -10
- package/dist/components/debug/ScriptRunner/StressPanel.vue.d.ts +63 -0
- package/dist/components/debug/WsProxy/ConfigEditor.vue.d.ts +5 -3
- package/dist/components/debug/WsProxy/ConnPanel.vue.d.ts +10 -0
- package/dist/components/debug/WsProxy/MappingGrid.vue.d.ts +34 -0
- package/dist/components/debug/WsProxy/index.vue.d.ts +33 -4
- package/dist/components/debug/WsProxy/proxy.d.ts +80 -44
- package/dist/components/editor/ControlBar/CaseTitleEdit.vue.d.ts +16 -16
- package/dist/components/editor/OptionCard/Equipment/stationSlot/StationSlotGroupDialog.vue.d.ts +1 -1
- package/dist/components/index.js +5853 -4383
- package/dist/components/preview/index.vue.d.ts +439 -30
- package/dist/controller/AppController.d.ts +12 -0
- package/dist/index-DKL_kTJG.js +11441 -0
- package/dist/index.js +42 -38
- package/dist/lingshu-smart/cases.json +12818 -211
- package/dist/lingshu-smart/wsProxyConfig.json +1026 -520
- package/dist/locales/en.d.ts +2 -0
- package/dist/locales/i18next.d.ts +4 -0
- package/dist/locales/index.js +12 -8
- package/dist/locales/zhCn.d.ts +2 -0
- package/dist/playground/ViewPageDemo.vue.d.ts +1025 -159
- package/dist/stores/index.js +1 -1
- package/dist/stores/useAppStore.d.ts +1491 -264
- package/dist/stores/useDataStore.d.ts +2143 -262
- package/dist/stores/useDebugStore.d.ts +38 -461
- package/dist/types/components/config.types.d.ts +3 -1
- package/dist/types/enums.d.ts +3 -1
- package/dist/types/models/config.types.d.ts +34 -2
- package/dist/types/models/operating.types.d.ts +36 -4
- package/dist/ui/abstract/ModelAbs.d.ts +6 -0
- package/dist/ui/components/StationSlot.d.ts +15 -0
- package/dist/ui/components/StationSlotGroup.d.ts +6 -0
- package/dist/ui/models/MaterialTrack.d.ts +29 -0
- package/dist/ui/models/ResourceOperationWindow.d.ts +39 -0
- package/dist/ui/models/ShuttleStation.d.ts +3 -3
- package/dist/useAppStore-DvXV4vGj.js +15736 -0
- package/dist/utils/caseCompact.d.ts +17 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +2 -2
- package/dist/index-YxSpi9Af.js +0 -131
- package/dist/useAppStore-DQI1btcH.js +0 -26123
- /package/dist/components/debug/{DebugPanel.vue.d.ts → GlobalSetting.vue.d.ts} +0 -0
|
@@ -27,8 +27,8 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
27
27
|
readonly name?: string | undefined;
|
|
28
28
|
readonly disabled?: boolean | undefined;
|
|
29
29
|
readonly id?: string | undefined;
|
|
30
|
-
readonly placeholder?: string | undefined;
|
|
31
30
|
readonly form?: string | undefined;
|
|
31
|
+
readonly placeholder?: string | undefined;
|
|
32
32
|
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
33
33
|
readonly resize?: "none" | "both" | "horizontal" | "vertical" | undefined;
|
|
34
34
|
readonly ariaLabel?: string | undefined;
|
|
@@ -37,7 +37,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
37
37
|
readonly suffixIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
38
38
|
readonly autofocus?: boolean | undefined;
|
|
39
39
|
readonly readonly?: boolean | undefined;
|
|
40
|
-
readonly inputmode?: "none" | "
|
|
40
|
+
readonly inputmode?: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
41
41
|
readonly maxlength?: string | number | undefined;
|
|
42
42
|
readonly minlength?: string | number | undefined;
|
|
43
43
|
readonly autosize?: import('element-plus').InputAutoSize | undefined;
|
|
@@ -72,7 +72,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
72
72
|
$root: import('vue').ComponentPublicInstance | null;
|
|
73
73
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
74
74
|
$host: Element | null;
|
|
75
|
-
$emit: ((event: "blur", evt: FocusEvent) => void) & ((event: "
|
|
75
|
+
$emit: ((event: "blur", evt: FocusEvent) => void) & ((event: "input", value: string) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "clear") => void) & ((event: "change", value: string, evt?: Event | undefined) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void) & ((event: "update:modelValue", value: string) => void);
|
|
76
76
|
$el: any;
|
|
77
77
|
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
78
78
|
name: {
|
|
@@ -82,21 +82,21 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
82
82
|
type: import('vue').PropType<boolean>;
|
|
83
83
|
default: undefined;
|
|
84
84
|
};
|
|
85
|
+
id: {
|
|
86
|
+
type: import('vue').PropType<string>;
|
|
87
|
+
};
|
|
85
88
|
type: {
|
|
86
89
|
type: import('vue').PropType<import('element-plus').InputType>;
|
|
87
90
|
default: import('element-plus').InputType;
|
|
88
91
|
};
|
|
89
|
-
|
|
92
|
+
form: {
|
|
90
93
|
type: import('vue').PropType<string>;
|
|
91
94
|
};
|
|
92
95
|
placeholder: {
|
|
93
96
|
type: import('vue').PropType<string>;
|
|
94
97
|
};
|
|
95
|
-
form: {
|
|
96
|
-
type: import('vue').PropType<string>;
|
|
97
|
-
};
|
|
98
98
|
size: {
|
|
99
|
-
type: import('vue').PropType<"" | "
|
|
99
|
+
type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
100
100
|
};
|
|
101
101
|
resize: {
|
|
102
102
|
type: import('vue').PropType<"horizontal" | "vertical" | "none" | "both">;
|
|
@@ -141,7 +141,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
141
141
|
type: import('vue').PropType<boolean>;
|
|
142
142
|
};
|
|
143
143
|
inputmode: {
|
|
144
|
-
type: import('vue').PropType<"none" | "
|
|
144
|
+
type: import('vue').PropType<"none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal">;
|
|
145
145
|
};
|
|
146
146
|
modelModifiers: {
|
|
147
147
|
type: import('vue').PropType<import('element-plus').InputModelModifiers>;
|
|
@@ -272,21 +272,21 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
272
272
|
type: import('vue').PropType<boolean>;
|
|
273
273
|
default: undefined;
|
|
274
274
|
};
|
|
275
|
+
id: {
|
|
276
|
+
type: import('vue').PropType<string>;
|
|
277
|
+
};
|
|
275
278
|
type: {
|
|
276
279
|
type: import('vue').PropType<import('element-plus').InputType>;
|
|
277
280
|
default: import('element-plus').InputType;
|
|
278
281
|
};
|
|
279
|
-
|
|
282
|
+
form: {
|
|
280
283
|
type: import('vue').PropType<string>;
|
|
281
284
|
};
|
|
282
285
|
placeholder: {
|
|
283
286
|
type: import('vue').PropType<string>;
|
|
284
287
|
};
|
|
285
|
-
form: {
|
|
286
|
-
type: import('vue').PropType<string>;
|
|
287
|
-
};
|
|
288
288
|
size: {
|
|
289
|
-
type: import('vue').PropType<"" | "
|
|
289
|
+
type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
290
290
|
};
|
|
291
291
|
resize: {
|
|
292
292
|
type: import('vue').PropType<"horizontal" | "vertical" | "none" | "both">;
|
|
@@ -331,7 +331,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
331
331
|
type: import('vue').PropType<boolean>;
|
|
332
332
|
};
|
|
333
333
|
inputmode: {
|
|
334
|
-
type: import('vue').PropType<"none" | "
|
|
334
|
+
type: import('vue').PropType<"none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal">;
|
|
335
335
|
};
|
|
336
336
|
modelModifiers: {
|
|
337
337
|
type: import('vue').PropType<import('element-plus').InputModelModifiers>;
|
|
@@ -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" | "
|
|
388
|
+
}, "disabled" | "blur" | "type" | "input" | "select" | "textarea" | "focus" | "clear" | "modelValue" | "autocomplete" | "clearIcon" | "validateEvent" | "tabindex" | "inputStyle" | "ref" | "modelModifiers" | "autosize" | "wordLimitPosition" | "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>;
|
package/dist/components/editor/OptionCard/Equipment/stationSlot/StationSlotGroupDialog.vue.d.ts
CHANGED
|
@@ -27,9 +27,9 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
27
27
|
visible: boolean | 0;
|
|
28
28
|
}) => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
|
-
hideBounds: boolean;
|
|
31
30
|
stationSlots: IStationSlotConfig[];
|
|
32
31
|
flowOptions: IFlowConfig;
|
|
32
|
+
hideBounds: boolean;
|
|
33
33
|
visible: boolean | 0;
|
|
34
34
|
containerWidth: number;
|
|
35
35
|
containerHeight: number;
|