x-block-lib 0.4.47 → 0.4.48
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/core/blocks/ui/appDebugTrace/v1/index.d.ts +1 -0
- package/dist/core/blocks/ui/appEnv/v1/index.d.ts +1 -0
- package/dist/core/blocks/ui/index.d.ts +2 -0
- package/dist/core/locale/msg/en.d.ts +8 -0
- package/dist/core/locale/msg/zhHans.d.ts +9 -1
- package/dist/core/toolbox/common/message/v1/index.d.ts +12 -0
- package/dist/core/toolbox/common/time/v1/index.d.ts +1 -1
- package/dist/index.js +387 -329
- package/dist/{msg-en-gh1serth.js → msg-en-enl17pxd.js} +8 -0
- package/dist/{msg-zhHans-aboc49to.js → msg-zhHans-oo3u4x5i.js} +9 -1
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -388,6 +388,8 @@ declare const _default: {
|
|
|
388
388
|
TIME_V1_CREATE_TIMER_TITLE: string;
|
|
389
389
|
TIME_V1_DELAY_TITLE: string;
|
|
390
390
|
UI_DO: string;
|
|
391
|
+
UI_ENV_DEV: string;
|
|
392
|
+
UI_ENV_PROD: string;
|
|
391
393
|
UI_LABEL: string;
|
|
392
394
|
UI_MODE: string;
|
|
393
395
|
UI_NAVIGATE_MODE_PUSH: string;
|
|
@@ -400,6 +402,12 @@ declare const _default: {
|
|
|
400
402
|
UI_TEXT: string;
|
|
401
403
|
UI_TITLE: string;
|
|
402
404
|
UI_VALUE: string;
|
|
405
|
+
UI_V1_APP_DEBUG_TRACE_TITLE: string;
|
|
406
|
+
UI_V1_APP_DEBUG_TRACE_TOOLTIP: string;
|
|
407
|
+
UI_V1_APP_DEBUG_TRACE_HELPURL: string;
|
|
408
|
+
UI_V1_APP_ENV_TITLE: string;
|
|
409
|
+
UI_V1_APP_ENV_TOOLTIP: string;
|
|
410
|
+
UI_V1_APP_ENV_HELPURL: string;
|
|
403
411
|
UI_V1_GET_NODE_TITLE: string;
|
|
404
412
|
UI_V1_GET_NODE_TOOLTIP: string;
|
|
405
413
|
UI_V1_GET_NODE_HELPURL: string;
|
|
@@ -49,7 +49,7 @@ declare const _default: {
|
|
|
49
49
|
CATEGORY_OBJECT: string;
|
|
50
50
|
CATEGORY_PROCEDURE: string;
|
|
51
51
|
CATEGORY_TEXT: string;
|
|
52
|
-
|
|
52
|
+
CATEGORY_TIME: string;
|
|
53
53
|
CATEGORY_UI: string;
|
|
54
54
|
CATEGORY_VARIABLE: string;
|
|
55
55
|
EVENT_CLICK: string;
|
|
@@ -388,6 +388,8 @@ declare const _default: {
|
|
|
388
388
|
TIME_V1_CREATE_TIMER_TITLE: string;
|
|
389
389
|
TIME_V1_DELAY_TITLE: string;
|
|
390
390
|
UI_DO: string;
|
|
391
|
+
UI_ENV_DEV: string;
|
|
392
|
+
UI_ENV_PROD: string;
|
|
391
393
|
UI_LABEL: string;
|
|
392
394
|
UI_MODE: string;
|
|
393
395
|
UI_NAVIGATE_MODE_PUSH: string;
|
|
@@ -400,6 +402,12 @@ declare const _default: {
|
|
|
400
402
|
UI_TEXT: string;
|
|
401
403
|
UI_TITLE: string;
|
|
402
404
|
UI_VALUE: string;
|
|
405
|
+
UI_V1_APP_DEBUG_TRACE_TITLE: string;
|
|
406
|
+
UI_V1_APP_DEBUG_TRACE_TOOLTIP: string;
|
|
407
|
+
UI_V1_APP_DEBUG_TRACE_HELPURL: string;
|
|
408
|
+
UI_V1_APP_ENV_TITLE: string;
|
|
409
|
+
UI_V1_APP_ENV_TOOLTIP: string;
|
|
410
|
+
UI_V1_APP_ENV_HELPURL: string;
|
|
403
411
|
UI_V1_GET_NODE_TITLE: string;
|
|
404
412
|
UI_V1_GET_NODE_TOOLTIP: string;
|
|
405
413
|
UI_V1_GET_NODE_HELPURL: string;
|
|
@@ -3,6 +3,17 @@ declare const message: {
|
|
|
3
3
|
name: string;
|
|
4
4
|
categorystyle: string;
|
|
5
5
|
contents: ({
|
|
6
|
+
kind: string;
|
|
7
|
+
type: string;
|
|
8
|
+
inputs: {
|
|
9
|
+
OBJECT: {
|
|
10
|
+
shadow: {
|
|
11
|
+
type: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
TEXT?: undefined;
|
|
15
|
+
};
|
|
16
|
+
} | {
|
|
6
17
|
kind: string;
|
|
7
18
|
type: string;
|
|
8
19
|
inputs: {
|
|
@@ -11,6 +22,7 @@ declare const message: {
|
|
|
11
22
|
type: string;
|
|
12
23
|
};
|
|
13
24
|
};
|
|
25
|
+
OBJECT?: undefined;
|
|
14
26
|
};
|
|
15
27
|
} | {
|
|
16
28
|
kind: string;
|