@jnrs/lingshu-smart 2.2.7 → 2.2.9
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/dist/components/editor/ControlBar/CaseTitleEdit.vue.d.ts +14 -14
- package/dist/components/editor/OptionCard/Equipment/models/MachineTool.vue.d.ts +2 -0
- package/dist/components/editor/OptionCard/Equipment/models/Rail.vue.d.ts +2 -0
- package/dist/components/editor/OptionCard/Equipment/models/SingleJointRobot.vue.d.ts +2 -0
- package/dist/components/index.js +9952 -8111
- package/dist/json/cases.json +577 -20
- package/dist/stores/useAppStore.d.ts +1 -1
- package/dist/types/base.types.d.ts +3 -1
- package/dist/types/components/config.types.d.ts +10 -2
- package/dist/types/enums.d.ts +6 -3
- package/dist/types/guards.d.ts +4 -1
- package/dist/types/models/config.types.d.ts +53 -6
- package/dist/types/models/operating.types.d.ts +74 -8
- package/dist/ui/abstract/ModelAbs.d.ts +2 -0
- package/dist/ui/components/Light.d.ts +18 -2
- package/dist/ui/components/StationSlot.d.ts +1 -1
- package/dist/ui/factories/createGlass.d.ts +3 -1
- package/dist/ui/factories/createShadow.d.ts +3 -3
- package/dist/ui/models/CleaningMachine.d.ts +14 -0
- package/dist/ui/models/DoubleJointRobot.d.ts +22 -0
- package/dist/ui/models/LoadingStation.d.ts +16 -0
- package/dist/ui/models/MachineTool.d.ts +4 -3
- package/dist/ui/models/MarkingMachine.d.ts +16 -0
- package/dist/ui/models/Rail.d.ts +15 -0
- package/dist/ui/models/ResourceStore.d.ts +12 -0
- package/dist/ui/models/SingleJointRobot.d.ts +22 -0
- package/dist/ui/shapes/NamePlate.d.ts +3 -1
- package/dist/ui/shapes/ScrewHole.d.ts +1 -1
- package/dist/ui/shapes/Texture.d.ts +5 -3
- package/dist/ui/utils/attr.d.ts +1 -1
- package/package.json +4 -4
- /package/dist/assets/data/{editor_default.d.ts → editor_default_setting.d.ts} +0 -0
- /package/dist/assets/data/{editor_preset.d.ts → editor_preset_menu.d.ts} +0 -0
|
@@ -27,12 +27,12 @@ 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;
|
|
30
31
|
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
31
32
|
readonly form?: string | undefined;
|
|
32
|
-
readonly placeholder?: string | undefined;
|
|
33
33
|
readonly readonly?: boolean | undefined;
|
|
34
34
|
readonly ariaLabel?: string | undefined;
|
|
35
|
-
readonly inputmode?: "search" | "none" | "text" | "
|
|
35
|
+
readonly inputmode?: "search" | "none" | "text" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
36
36
|
readonly clearable?: boolean | undefined;
|
|
37
37
|
readonly clearIcon?: import('element-plus/es/utils/index.mjs').IconPropType | undefined;
|
|
38
38
|
readonly suffixIcon?: import('element-plus/es/utils/index.mjs').IconPropType | 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: "focus", evt: FocusEvent) => void) & ((event: "clear") => void) & ((event: "input", value: string) => void) & ((event: "update:modelValue", value: string) => 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);
|
|
76
76
|
$el: any;
|
|
77
77
|
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
78
78
|
name: {
|
|
@@ -89,15 +89,15 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
89
89
|
id: {
|
|
90
90
|
type: import('vue').PropType<string>;
|
|
91
91
|
};
|
|
92
|
+
placeholder: {
|
|
93
|
+
type: import('vue').PropType<string>;
|
|
94
|
+
};
|
|
92
95
|
size: {
|
|
93
96
|
type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
94
97
|
};
|
|
95
98
|
form: {
|
|
96
99
|
type: import('vue').PropType<string>;
|
|
97
100
|
};
|
|
98
|
-
placeholder: {
|
|
99
|
-
type: import('vue').PropType<string>;
|
|
100
|
-
};
|
|
101
101
|
modelValue: {
|
|
102
102
|
type: import('vue').PropType<string | number | null>;
|
|
103
103
|
default: "";
|
|
@@ -113,7 +113,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
113
113
|
type: import('vue').PropType<string>;
|
|
114
114
|
};
|
|
115
115
|
inputmode: {
|
|
116
|
-
type: import('vue').PropType<"search" | "none" | "text" | "
|
|
116
|
+
type: import('vue').PropType<"search" | "none" | "text" | "url" | "email" | "tel" | "numeric" | "decimal">;
|
|
117
117
|
};
|
|
118
118
|
autocomplete: {
|
|
119
119
|
type: import('vue').PropType<string>;
|
|
@@ -151,7 +151,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
151
151
|
type: import('vue').PropType<string | number>;
|
|
152
152
|
};
|
|
153
153
|
resize: {
|
|
154
|
-
type: import('vue').PropType<"
|
|
154
|
+
type: import('vue').PropType<"horizontal" | "vertical" | "none" | "both">;
|
|
155
155
|
};
|
|
156
156
|
autosize: {
|
|
157
157
|
type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
@@ -279,15 +279,15 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
279
279
|
id: {
|
|
280
280
|
type: import('vue').PropType<string>;
|
|
281
281
|
};
|
|
282
|
+
placeholder: {
|
|
283
|
+
type: import('vue').PropType<string>;
|
|
284
|
+
};
|
|
282
285
|
size: {
|
|
283
286
|
type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
284
287
|
};
|
|
285
288
|
form: {
|
|
286
289
|
type: import('vue').PropType<string>;
|
|
287
290
|
};
|
|
288
|
-
placeholder: {
|
|
289
|
-
type: import('vue').PropType<string>;
|
|
290
|
-
};
|
|
291
291
|
modelValue: {
|
|
292
292
|
type: import('vue').PropType<string | number | null>;
|
|
293
293
|
default: "";
|
|
@@ -303,7 +303,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
303
303
|
type: import('vue').PropType<string>;
|
|
304
304
|
};
|
|
305
305
|
inputmode: {
|
|
306
|
-
type: import('vue').PropType<"search" | "none" | "text" | "
|
|
306
|
+
type: import('vue').PropType<"search" | "none" | "text" | "url" | "email" | "tel" | "numeric" | "decimal">;
|
|
307
307
|
};
|
|
308
308
|
autocomplete: {
|
|
309
309
|
type: import('vue').PropType<string>;
|
|
@@ -341,7 +341,7 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
341
341
|
type: import('vue').PropType<string | number>;
|
|
342
342
|
};
|
|
343
343
|
resize: {
|
|
344
|
-
type: import('vue').PropType<"
|
|
344
|
+
type: import('vue').PropType<"horizontal" | "vertical" | "none" | "both">;
|
|
345
345
|
};
|
|
346
346
|
autosize: {
|
|
347
347
|
type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
@@ -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" | "clear" | "input" | "select" | "textarea" | "ref" | "modelValue" | "validateEvent" | "
|
|
388
|
+
}, "disabled" | "type" | "blur" | "focus" | "clear" | "input" | "select" | "textarea" | "ref" | "modelValue" | "validateEvent" | "autocomplete" | "clearIcon" | "tabindex" | "inputStyle" | "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>;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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;
|