x-block-lib 0.6.19 → 0.6.21
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-ivcroaw4.js → blockly-mc709wdb.js} +21 -20
- package/dist/core/blocks/app/define/v1/index.d.ts +2 -0
- package/dist/core/blocks/app/define/v1/items.d.ts +1 -0
- package/dist/core/blocks/app/define/v1/types.d.ts +1 -0
- package/dist/core/blocks/app/index.d.ts +1 -0
- package/dist/core/category/app/index.d.ts +2 -0
- package/dist/core/category/common/index.d.ts +2 -0
- package/dist/core/category/compute/index.d.ts +2 -0
- package/dist/core/category/data/index.d.ts +1 -0
- package/dist/core/category/index.d.ts +4 -7
- package/dist/core/custom/fieldDropdown2/index.d.ts +2 -0
- package/dist/core/index.d.ts +1 -0
- package/dist/index.js +3183 -2684
- package/package.json +2 -2
- /package/dist/core/category/{interface → app/interface}/v1/index.d.ts +0 -0
- /package/dist/core/category/{ui → app/ui}/v1/index.d.ts +0 -0
- /package/dist/core/category/{procedure → common/procedure}/v1/index.d.ts +0 -0
- /package/dist/core/category/{variable → common/variable}/v1/index.d.ts +0 -0
- /package/dist/core/category/{flow → compute/flow}/v1/index.d.ts +0 -0
- /package/dist/core/category/{func → compute/func}/v1/index.d.ts +0 -0
- /package/dist/core/category/data/{v1 → data/v1}/index.d.ts +0 -0
|
@@ -16287,9 +16287,10 @@ const lf = /* @__PURE__ */ Qg(nf), {
|
|
|
16287
16287
|
javascriptGenerator: Kb
|
|
16288
16288
|
} = lf;
|
|
16289
16289
|
export {
|
|
16290
|
-
|
|
16290
|
+
Hb as A,
|
|
16291
16291
|
df as B,
|
|
16292
16292
|
yf as C,
|
|
16293
|
+
Qg as D,
|
|
16293
16294
|
Of as E,
|
|
16294
16295
|
Mf as F,
|
|
16295
16296
|
Jf as G,
|
|
@@ -16301,30 +16302,30 @@ export {
|
|
|
16301
16302
|
A_ as T,
|
|
16302
16303
|
z_ as V,
|
|
16303
16304
|
Q_ as X,
|
|
16304
|
-
|
|
16305
|
-
|
|
16306
|
-
|
|
16305
|
+
Uf as a,
|
|
16306
|
+
Tb as b,
|
|
16307
|
+
Hf as c,
|
|
16307
16308
|
ab as d,
|
|
16308
|
-
|
|
16309
|
+
Df as e,
|
|
16309
16310
|
pb as f,
|
|
16310
|
-
|
|
16311
|
-
|
|
16311
|
+
xf as g,
|
|
16312
|
+
fb as h,
|
|
16312
16313
|
vb as i,
|
|
16313
16314
|
Kb as j,
|
|
16314
|
-
|
|
16315
|
-
|
|
16316
|
-
|
|
16317
|
-
|
|
16318
|
-
|
|
16319
|
-
|
|
16320
|
-
|
|
16315
|
+
db as k,
|
|
16316
|
+
v_ as l,
|
|
16317
|
+
wf as m,
|
|
16318
|
+
_b as n,
|
|
16319
|
+
kb as o,
|
|
16320
|
+
wb as p,
|
|
16321
|
+
yb as q,
|
|
16321
16322
|
Mb as r,
|
|
16322
16323
|
Fb as s,
|
|
16323
|
-
|
|
16324
|
+
nb as t,
|
|
16324
16325
|
Wb as u,
|
|
16325
|
-
|
|
16326
|
-
|
|
16327
|
-
|
|
16328
|
-
|
|
16329
|
-
|
|
16326
|
+
af as v,
|
|
16327
|
+
R_ as w,
|
|
16328
|
+
cb as x,
|
|
16329
|
+
Cb as y,
|
|
16330
|
+
Pb as z
|
|
16330
16331
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './data/v1';
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './
|
|
4
|
-
export * from './
|
|
5
|
-
export * from './procedure/v1';
|
|
6
|
-
export * from './ui/v1';
|
|
7
|
-
export * from './variable/v1';
|
|
1
|
+
export * from './app';
|
|
2
|
+
export * from './common';
|
|
3
|
+
export * from './compute';
|
|
4
|
+
export * from './data';
|
|
@@ -3,4 +3,6 @@ export declare class FieldDropdown2 extends Blockly.FieldDropdown {
|
|
|
3
3
|
constructor(menuGenerator: Blockly.MenuGenerator, validator?: Blockly.FieldDropdownValidator, config?: Blockly.FieldDropdownConfig);
|
|
4
4
|
protected doClassValidation_(newValue: string): string | null | undefined;
|
|
5
5
|
protected doClassValidation_(newValue?: string): string | null;
|
|
6
|
+
protected doValueUpdate_(newValue: string): void;
|
|
7
|
+
protected getText_(): string | null;
|
|
6
8
|
}
|