x-block-lib 0.4.18 → 0.4.19
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/{blockly-d7r2qvsx.js → blockly-ou5p4kro.js} +4 -3
- package/dist/components/blockly/index.vue.d.ts +0 -2
- package/dist/components/blockly/navigator/blockList/item.vue.d.ts +2 -0
- package/dist/core/misc/index.d.ts +2 -2
- package/dist/{i18n-en-hf8d9jpk.js → i18n-en-gtd7rpgu.js} +2 -1
- package/dist/{i18n-zhHans-kicfou8k.js → i18n-zhHans-dgbaenzo.js} +2 -1
- package/dist/index.js +2649 -969
- package/package.json +3 -2
|
@@ -15846,13 +15846,14 @@ const bm = /* @__PURE__ */ gg(_m), {
|
|
|
15846
15846
|
javascriptGenerator: Qb
|
|
15847
15847
|
} = bm;
|
|
15848
15848
|
export {
|
|
15849
|
-
|
|
15849
|
+
Vb as A,
|
|
15850
15850
|
Cm as B,
|
|
15851
15851
|
xm as C,
|
|
15852
15852
|
Gm as D,
|
|
15853
15853
|
Vm as E,
|
|
15854
15854
|
qm as F,
|
|
15855
15855
|
i_ as G,
|
|
15856
|
+
Xb as H,
|
|
15856
15857
|
m_ as M,
|
|
15857
15858
|
b_ as N,
|
|
15858
15859
|
qb as O,
|
|
@@ -15886,6 +15887,6 @@ export {
|
|
|
15886
15887
|
ub as v,
|
|
15887
15888
|
Tb as w,
|
|
15888
15889
|
M_ as x,
|
|
15889
|
-
|
|
15890
|
-
|
|
15890
|
+
gb as y,
|
|
15891
|
+
Sb as z
|
|
15891
15892
|
};
|
|
@@ -17,10 +17,8 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
17
17
|
};
|
|
18
18
|
generateCode: () => string;
|
|
19
19
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
-
change: (...args: any[]) => void;
|
|
21
20
|
ready: (...args: any[]) => void;
|
|
22
21
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
23
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
24
22
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
25
23
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
24
|
export default _default;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
id: string;
|
|
3
3
|
title: string;
|
|
4
|
+
select: boolean;
|
|
5
|
+
index: number;
|
|
4
6
|
}
|
|
5
7
|
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
6
8
|
"x-click": (...args: any[]) => void;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare function jumpBlock(id: string): void;
|
|
2
|
-
export declare function
|
|
3
|
-
export declare function
|
|
2
|
+
export declare function jumpTopBlock(id: string): void;
|
|
3
|
+
export declare function jumpFirstTopBlock(): void;
|