amis-editor-core 6.10.0-beta.1 → 6.11.0-beta.0
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/esm/index.js +2 -2
- package/esm/store/editor.d.ts +48 -46
- package/lib/component/base/BackTop.d.ts +1 -1
- package/lib/editor.js +1 -1
- package/lib/index.js +2 -2
- package/lib/layout/flex.d.ts +1 -0
- package/lib/store/editor.d.ts +49 -46
- package/package.json +1 -1
package/lib/layout/flex.d.ts
CHANGED
package/lib/store/editor.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
1
2
|
import { Instance } from 'mobx-state-tree';
|
|
2
|
-
import { InsertEventContext, PluginEvent, RendererInfo, SubRendererInfo, ToolbarItem, PanelItem, MoveEventContext, ScaffoldForm, PopOverForm, DeleteEventContext, BaseEventContext } from '../plugin';
|
|
3
|
+
import { InsertEventContext, PluginEvent, RendererInfo, SubRendererInfo, ToolbarItem, PanelItem, MoveEventContext, ScaffoldForm, PopOverForm, DeleteEventContext, BaseEventContext, IGlobalEvent } from '../plugin';
|
|
3
4
|
import type { Schema } from 'amis';
|
|
4
5
|
import { EditorNodeType } from './node';
|
|
5
6
|
import type { DialogSchema } from 'amis/lib/renderers/Dialog';
|
|
@@ -124,7 +125,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
124
125
|
memberImmutable(region: string): boolean;
|
|
125
126
|
readonly isRegion: boolean;
|
|
126
127
|
readonly childRegions: any[];
|
|
127
|
-
readonly uniqueChildren: any[];
|
|
128
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
128
129
|
readonly sameIdChild: any;
|
|
129
130
|
readonly singleRegion: boolean;
|
|
130
131
|
isExists(id: string): boolean;
|
|
@@ -188,7 +189,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
188
189
|
memberImmutable(region: string): boolean;
|
|
189
190
|
readonly isRegion: boolean;
|
|
190
191
|
readonly childRegions: any[];
|
|
191
|
-
readonly uniqueChildren: any[];
|
|
192
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
192
193
|
readonly sameIdChild: any;
|
|
193
194
|
readonly singleRegion: boolean;
|
|
194
195
|
isExists(id: string): boolean;
|
|
@@ -251,7 +252,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
251
252
|
memberImmutable(region: string): boolean;
|
|
252
253
|
readonly isRegion: boolean;
|
|
253
254
|
readonly childRegions: any[];
|
|
254
|
-
readonly uniqueChildren: any[];
|
|
255
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
255
256
|
readonly sameIdChild: any;
|
|
256
257
|
readonly singleRegion: boolean;
|
|
257
258
|
isExists(id: string): boolean;
|
|
@@ -341,7 +342,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
341
342
|
memberImmutable(region: string): boolean;
|
|
342
343
|
readonly isRegion: boolean;
|
|
343
344
|
readonly childRegions: any[];
|
|
344
|
-
readonly uniqueChildren: any[];
|
|
345
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
345
346
|
readonly sameIdChild: any;
|
|
346
347
|
readonly singleRegion: boolean;
|
|
347
348
|
isExists(id: string): boolean;
|
|
@@ -404,7 +405,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
404
405
|
memberImmutable(region: string): boolean;
|
|
405
406
|
readonly isRegion: boolean;
|
|
406
407
|
readonly childRegions: any[];
|
|
407
|
-
readonly uniqueChildren: any[];
|
|
408
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
408
409
|
readonly sameIdChild: any;
|
|
409
410
|
readonly singleRegion: boolean;
|
|
410
411
|
isExists(id: string): boolean;
|
|
@@ -519,6 +520,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
519
520
|
appLocale: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<string>, [undefined]>;
|
|
520
521
|
appCorpusData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
521
522
|
appLocaleState: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<number>, [undefined]>;
|
|
523
|
+
globalEvents: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<IGlobalEvent[], IGlobalEvent[], IGlobalEvent[]>, [undefined]>;
|
|
522
524
|
}, {
|
|
523
525
|
readonly filteredSchema: any;
|
|
524
526
|
readonly filteredSchemaForPreview: any;
|
|
@@ -581,7 +583,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
581
583
|
memberImmutable(region: string): boolean;
|
|
582
584
|
readonly isRegion: boolean;
|
|
583
585
|
readonly childRegions: any[];
|
|
584
|
-
readonly uniqueChildren: any[];
|
|
586
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
585
587
|
readonly sameIdChild: any;
|
|
586
588
|
readonly singleRegion: boolean;
|
|
587
589
|
isExists(id: string): boolean;
|
|
@@ -645,7 +647,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
645
647
|
memberImmutable(region: string): boolean;
|
|
646
648
|
readonly isRegion: boolean;
|
|
647
649
|
readonly childRegions: any[];
|
|
648
|
-
readonly uniqueChildren: any[];
|
|
650
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
649
651
|
readonly sameIdChild: any;
|
|
650
652
|
readonly singleRegion: boolean;
|
|
651
653
|
isExists(id: string): boolean;
|
|
@@ -708,7 +710,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
708
710
|
memberImmutable(region: string): boolean;
|
|
709
711
|
readonly isRegion: boolean;
|
|
710
712
|
readonly childRegions: any[];
|
|
711
|
-
readonly uniqueChildren: any[];
|
|
713
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
712
714
|
readonly sameIdChild: any;
|
|
713
715
|
readonly singleRegion: boolean;
|
|
714
716
|
isExists(id: string): boolean;
|
|
@@ -798,7 +800,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
798
800
|
memberImmutable(region: string): boolean;
|
|
799
801
|
readonly isRegion: boolean;
|
|
800
802
|
readonly childRegions: any[];
|
|
801
|
-
readonly uniqueChildren: any[];
|
|
803
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
802
804
|
readonly sameIdChild: any;
|
|
803
805
|
readonly singleRegion: boolean;
|
|
804
806
|
isExists(id: string): boolean;
|
|
@@ -861,7 +863,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
861
863
|
memberImmutable(region: string): boolean;
|
|
862
864
|
readonly isRegion: boolean;
|
|
863
865
|
readonly childRegions: any[];
|
|
864
|
-
readonly uniqueChildren: any[];
|
|
866
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
865
867
|
readonly sameIdChild: any;
|
|
866
868
|
readonly singleRegion: boolean;
|
|
867
869
|
isExists(id: string): boolean;
|
|
@@ -958,7 +960,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
958
960
|
memberImmutable(region: string): boolean;
|
|
959
961
|
readonly isRegion: boolean;
|
|
960
962
|
readonly childRegions: any[];
|
|
961
|
-
readonly uniqueChildren: any[];
|
|
963
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
962
964
|
readonly sameIdChild: any;
|
|
963
965
|
readonly singleRegion: boolean;
|
|
964
966
|
isExists(id: string): boolean;
|
|
@@ -1022,7 +1024,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1022
1024
|
memberImmutable(region: string): boolean;
|
|
1023
1025
|
readonly isRegion: boolean;
|
|
1024
1026
|
readonly childRegions: any[];
|
|
1025
|
-
readonly uniqueChildren: any[];
|
|
1027
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1026
1028
|
readonly sameIdChild: any;
|
|
1027
1029
|
readonly singleRegion: boolean;
|
|
1028
1030
|
isExists(id: string): boolean;
|
|
@@ -1085,7 +1087,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1085
1087
|
memberImmutable(region: string): boolean;
|
|
1086
1088
|
readonly isRegion: boolean;
|
|
1087
1089
|
readonly childRegions: any[];
|
|
1088
|
-
readonly uniqueChildren: any[];
|
|
1090
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1089
1091
|
readonly sameIdChild: any;
|
|
1090
1092
|
readonly singleRegion: boolean;
|
|
1091
1093
|
isExists(id: string): boolean;
|
|
@@ -1175,7 +1177,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1175
1177
|
memberImmutable(region: string): boolean;
|
|
1176
1178
|
readonly isRegion: boolean;
|
|
1177
1179
|
readonly childRegions: any[];
|
|
1178
|
-
readonly uniqueChildren: any[];
|
|
1180
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1179
1181
|
readonly sameIdChild: any;
|
|
1180
1182
|
readonly singleRegion: boolean;
|
|
1181
1183
|
isExists(id: string): boolean;
|
|
@@ -1238,7 +1240,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1238
1240
|
memberImmutable(region: string): boolean;
|
|
1239
1241
|
readonly isRegion: boolean;
|
|
1240
1242
|
readonly childRegions: any[];
|
|
1241
|
-
readonly uniqueChildren: any[];
|
|
1243
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1242
1244
|
readonly sameIdChild: any;
|
|
1243
1245
|
readonly singleRegion: boolean;
|
|
1244
1246
|
isExists(id: string): boolean;
|
|
@@ -1358,7 +1360,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1358
1360
|
memberImmutable(region: string): boolean;
|
|
1359
1361
|
readonly isRegion: boolean;
|
|
1360
1362
|
readonly childRegions: any[];
|
|
1361
|
-
readonly uniqueChildren: any[];
|
|
1363
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1362
1364
|
readonly sameIdChild: any;
|
|
1363
1365
|
readonly singleRegion: boolean;
|
|
1364
1366
|
isExists(id: string): boolean;
|
|
@@ -1422,7 +1424,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1422
1424
|
memberImmutable(region: string): boolean;
|
|
1423
1425
|
readonly isRegion: boolean;
|
|
1424
1426
|
readonly childRegions: any[];
|
|
1425
|
-
readonly uniqueChildren: any[];
|
|
1427
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1426
1428
|
readonly sameIdChild: any;
|
|
1427
1429
|
readonly singleRegion: boolean;
|
|
1428
1430
|
isExists(id: string): boolean;
|
|
@@ -1485,7 +1487,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1485
1487
|
memberImmutable(region: string): boolean;
|
|
1486
1488
|
readonly isRegion: boolean;
|
|
1487
1489
|
readonly childRegions: any[];
|
|
1488
|
-
readonly uniqueChildren: any[];
|
|
1490
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1489
1491
|
readonly sameIdChild: any;
|
|
1490
1492
|
readonly singleRegion: boolean;
|
|
1491
1493
|
isExists(id: string): boolean;
|
|
@@ -1575,7 +1577,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1575
1577
|
memberImmutable(region: string): boolean;
|
|
1576
1578
|
readonly isRegion: boolean;
|
|
1577
1579
|
readonly childRegions: any[];
|
|
1578
|
-
readonly uniqueChildren: any[];
|
|
1580
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1579
1581
|
readonly sameIdChild: any;
|
|
1580
1582
|
readonly singleRegion: boolean;
|
|
1581
1583
|
isExists(id: string): boolean;
|
|
@@ -1638,7 +1640,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1638
1640
|
memberImmutable(region: string): boolean;
|
|
1639
1641
|
readonly isRegion: boolean;
|
|
1640
1642
|
readonly childRegions: any[];
|
|
1641
|
-
readonly uniqueChildren: any[];
|
|
1643
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1642
1644
|
readonly sameIdChild: any;
|
|
1643
1645
|
readonly singleRegion: boolean;
|
|
1644
1646
|
isExists(id: string): boolean;
|
|
@@ -1735,7 +1737,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1735
1737
|
memberImmutable(region: string): boolean;
|
|
1736
1738
|
readonly isRegion: boolean;
|
|
1737
1739
|
readonly childRegions: any[];
|
|
1738
|
-
readonly uniqueChildren: any[];
|
|
1740
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1739
1741
|
readonly sameIdChild: any;
|
|
1740
1742
|
readonly singleRegion: boolean;
|
|
1741
1743
|
isExists(id: string): boolean;
|
|
@@ -1799,7 +1801,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1799
1801
|
memberImmutable(region: string): boolean;
|
|
1800
1802
|
readonly isRegion: boolean;
|
|
1801
1803
|
readonly childRegions: any[];
|
|
1802
|
-
readonly uniqueChildren: any[];
|
|
1804
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1803
1805
|
readonly sameIdChild: any;
|
|
1804
1806
|
readonly singleRegion: boolean;
|
|
1805
1807
|
isExists(id: string): boolean;
|
|
@@ -1862,7 +1864,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1862
1864
|
memberImmutable(region: string): boolean;
|
|
1863
1865
|
readonly isRegion: boolean;
|
|
1864
1866
|
readonly childRegions: any[];
|
|
1865
|
-
readonly uniqueChildren: any[];
|
|
1867
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1866
1868
|
readonly sameIdChild: any;
|
|
1867
1869
|
readonly singleRegion: boolean;
|
|
1868
1870
|
isExists(id: string): boolean;
|
|
@@ -1952,7 +1954,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
1952
1954
|
memberImmutable(region: string): boolean;
|
|
1953
1955
|
readonly isRegion: boolean;
|
|
1954
1956
|
readonly childRegions: any[];
|
|
1955
|
-
readonly uniqueChildren: any[];
|
|
1957
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
1956
1958
|
readonly sameIdChild: any;
|
|
1957
1959
|
readonly singleRegion: boolean;
|
|
1958
1960
|
isExists(id: string): boolean;
|
|
@@ -2015,7 +2017,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2015
2017
|
memberImmutable(region: string): boolean;
|
|
2016
2018
|
readonly isRegion: boolean;
|
|
2017
2019
|
readonly childRegions: any[];
|
|
2018
|
-
readonly uniqueChildren: any[];
|
|
2020
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2019
2021
|
readonly sameIdChild: any;
|
|
2020
2022
|
readonly singleRegion: boolean;
|
|
2021
2023
|
isExists(id: string): boolean;
|
|
@@ -2113,7 +2115,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2113
2115
|
memberImmutable(region: string): boolean;
|
|
2114
2116
|
readonly isRegion: boolean;
|
|
2115
2117
|
readonly childRegions: any[];
|
|
2116
|
-
readonly uniqueChildren: any[];
|
|
2118
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2117
2119
|
readonly sameIdChild: any;
|
|
2118
2120
|
readonly singleRegion: boolean;
|
|
2119
2121
|
isExists(id: string): boolean;
|
|
@@ -2177,7 +2179,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2177
2179
|
memberImmutable(region: string): boolean;
|
|
2178
2180
|
readonly isRegion: boolean;
|
|
2179
2181
|
readonly childRegions: any[];
|
|
2180
|
-
readonly uniqueChildren: any[];
|
|
2182
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2181
2183
|
readonly sameIdChild: any;
|
|
2182
2184
|
readonly singleRegion: boolean;
|
|
2183
2185
|
isExists(id: string): boolean;
|
|
@@ -2240,7 +2242,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2240
2242
|
memberImmutable(region: string): boolean;
|
|
2241
2243
|
readonly isRegion: boolean;
|
|
2242
2244
|
readonly childRegions: any[];
|
|
2243
|
-
readonly uniqueChildren: any[];
|
|
2245
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2244
2246
|
readonly sameIdChild: any;
|
|
2245
2247
|
readonly singleRegion: boolean;
|
|
2246
2248
|
isExists(id: string): boolean;
|
|
@@ -2330,7 +2332,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2330
2332
|
memberImmutable(region: string): boolean;
|
|
2331
2333
|
readonly isRegion: boolean;
|
|
2332
2334
|
readonly childRegions: any[];
|
|
2333
|
-
readonly uniqueChildren: any[];
|
|
2335
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2334
2336
|
readonly sameIdChild: any;
|
|
2335
2337
|
readonly singleRegion: boolean;
|
|
2336
2338
|
isExists(id: string): boolean;
|
|
@@ -2393,7 +2395,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2393
2395
|
memberImmutable(region: string): boolean;
|
|
2394
2396
|
readonly isRegion: boolean;
|
|
2395
2397
|
readonly childRegions: any[];
|
|
2396
|
-
readonly uniqueChildren: any[];
|
|
2398
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2397
2399
|
readonly sameIdChild: any;
|
|
2398
2400
|
readonly singleRegion: boolean;
|
|
2399
2401
|
isExists(id: string): boolean;
|
|
@@ -2490,7 +2492,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2490
2492
|
memberImmutable(region: string): boolean;
|
|
2491
2493
|
readonly isRegion: boolean;
|
|
2492
2494
|
readonly childRegions: any[];
|
|
2493
|
-
readonly uniqueChildren: any[];
|
|
2495
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2494
2496
|
readonly sameIdChild: any;
|
|
2495
2497
|
readonly singleRegion: boolean;
|
|
2496
2498
|
isExists(id: string): boolean;
|
|
@@ -2554,7 +2556,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2554
2556
|
memberImmutable(region: string): boolean;
|
|
2555
2557
|
readonly isRegion: boolean;
|
|
2556
2558
|
readonly childRegions: any[];
|
|
2557
|
-
readonly uniqueChildren: any[];
|
|
2559
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2558
2560
|
readonly sameIdChild: any;
|
|
2559
2561
|
readonly singleRegion: boolean;
|
|
2560
2562
|
isExists(id: string): boolean;
|
|
@@ -2617,7 +2619,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2617
2619
|
memberImmutable(region: string): boolean;
|
|
2618
2620
|
readonly isRegion: boolean;
|
|
2619
2621
|
readonly childRegions: any[];
|
|
2620
|
-
readonly uniqueChildren: any[];
|
|
2622
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2621
2623
|
readonly sameIdChild: any;
|
|
2622
2624
|
readonly singleRegion: boolean;
|
|
2623
2625
|
isExists(id: string): boolean;
|
|
@@ -2707,7 +2709,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2707
2709
|
memberImmutable(region: string): boolean;
|
|
2708
2710
|
readonly isRegion: boolean;
|
|
2709
2711
|
readonly childRegions: any[];
|
|
2710
|
-
readonly uniqueChildren: any[];
|
|
2712
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2711
2713
|
readonly sameIdChild: any;
|
|
2712
2714
|
readonly singleRegion: boolean;
|
|
2713
2715
|
isExists(id: string): boolean;
|
|
@@ -2770,7 +2772,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2770
2772
|
memberImmutable(region: string): boolean;
|
|
2771
2773
|
readonly isRegion: boolean;
|
|
2772
2774
|
readonly childRegions: any[];
|
|
2773
|
-
readonly uniqueChildren: any[];
|
|
2775
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2774
2776
|
readonly sameIdChild: any;
|
|
2775
2777
|
readonly singleRegion: boolean;
|
|
2776
2778
|
isExists(id: string): boolean;
|
|
@@ -2868,7 +2870,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2868
2870
|
memberImmutable(region: string): boolean;
|
|
2869
2871
|
readonly isRegion: boolean;
|
|
2870
2872
|
readonly childRegions: any[];
|
|
2871
|
-
readonly uniqueChildren: any[];
|
|
2873
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2872
2874
|
readonly sameIdChild: any;
|
|
2873
2875
|
readonly singleRegion: boolean;
|
|
2874
2876
|
isExists(id: string): boolean;
|
|
@@ -2932,7 +2934,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2932
2934
|
memberImmutable(region: string): boolean;
|
|
2933
2935
|
readonly isRegion: boolean;
|
|
2934
2936
|
readonly childRegions: any[];
|
|
2935
|
-
readonly uniqueChildren: any[];
|
|
2937
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2936
2938
|
readonly sameIdChild: any;
|
|
2937
2939
|
readonly singleRegion: boolean;
|
|
2938
2940
|
isExists(id: string): boolean;
|
|
@@ -2995,7 +2997,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
2995
2997
|
memberImmutable(region: string): boolean;
|
|
2996
2998
|
readonly isRegion: boolean;
|
|
2997
2999
|
readonly childRegions: any[];
|
|
2998
|
-
readonly uniqueChildren: any[];
|
|
3000
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
2999
3001
|
readonly sameIdChild: any;
|
|
3000
3002
|
readonly singleRegion: boolean;
|
|
3001
3003
|
isExists(id: string): boolean;
|
|
@@ -3085,7 +3087,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
3085
3087
|
memberImmutable(region: string): boolean;
|
|
3086
3088
|
readonly isRegion: boolean;
|
|
3087
3089
|
readonly childRegions: any[];
|
|
3088
|
-
readonly uniqueChildren: any[];
|
|
3090
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
3089
3091
|
readonly sameIdChild: any;
|
|
3090
3092
|
readonly singleRegion: boolean;
|
|
3091
3093
|
isExists(id: string): boolean;
|
|
@@ -3148,7 +3150,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
3148
3150
|
memberImmutable(region: string): boolean;
|
|
3149
3151
|
readonly isRegion: boolean;
|
|
3150
3152
|
readonly childRegions: any[];
|
|
3151
|
-
readonly uniqueChildren: any[];
|
|
3153
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
3152
3154
|
readonly sameIdChild: any;
|
|
3153
3155
|
readonly singleRegion: boolean;
|
|
3154
3156
|
isExists(id: string): boolean;
|
|
@@ -3245,7 +3247,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
3245
3247
|
memberImmutable(region: string): boolean;
|
|
3246
3248
|
readonly isRegion: boolean;
|
|
3247
3249
|
readonly childRegions: any[];
|
|
3248
|
-
readonly uniqueChildren: any[];
|
|
3250
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
3249
3251
|
readonly sameIdChild: any;
|
|
3250
3252
|
readonly singleRegion: boolean;
|
|
3251
3253
|
isExists(id: string): boolean;
|
|
@@ -3309,7 +3311,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
3309
3311
|
memberImmutable(region: string): boolean;
|
|
3310
3312
|
readonly isRegion: boolean;
|
|
3311
3313
|
readonly childRegions: any[];
|
|
3312
|
-
readonly uniqueChildren: any[];
|
|
3314
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
3313
3315
|
readonly sameIdChild: any;
|
|
3314
3316
|
readonly singleRegion: boolean;
|
|
3315
3317
|
isExists(id: string): boolean;
|
|
@@ -3372,7 +3374,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
3372
3374
|
memberImmutable(region: string): boolean;
|
|
3373
3375
|
readonly isRegion: boolean;
|
|
3374
3376
|
readonly childRegions: any[];
|
|
3375
|
-
readonly uniqueChildren: any[];
|
|
3377
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
3376
3378
|
readonly sameIdChild: any;
|
|
3377
3379
|
readonly singleRegion: boolean;
|
|
3378
3380
|
isExists(id: string): boolean;
|
|
@@ -3462,7 +3464,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
3462
3464
|
memberImmutable(region: string): boolean;
|
|
3463
3465
|
readonly isRegion: boolean;
|
|
3464
3466
|
readonly childRegions: any[];
|
|
3465
|
-
readonly uniqueChildren: any[];
|
|
3467
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
3466
3468
|
readonly sameIdChild: any;
|
|
3467
3469
|
readonly singleRegion: boolean;
|
|
3468
3470
|
isExists(id: string): boolean;
|
|
@@ -3525,7 +3527,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
3525
3527
|
memberImmutable(region: string): boolean;
|
|
3526
3528
|
readonly isRegion: boolean;
|
|
3527
3529
|
readonly childRegions: any[];
|
|
3528
|
-
readonly uniqueChildren: any[];
|
|
3530
|
+
readonly uniqueChildren: any[]; /** 应用多语言状态,用于其它组件进行订阅 */
|
|
3529
3531
|
readonly sameIdChild: any;
|
|
3530
3532
|
readonly singleRegion: boolean;
|
|
3531
3533
|
isExists(id: string): boolean;
|
|
@@ -3762,6 +3764,7 @@ export declare const MainStore: import("mobx-state-tree").IModelType<{
|
|
|
3762
3764
|
setAppLocale(locale?: string): void;
|
|
3763
3765
|
/** 设置应用的语料数据 */
|
|
3764
3766
|
setAppCorpusData(data?: any): void;
|
|
3767
|
+
setGlobalEvents(events: IGlobalEvent[]): void;
|
|
3765
3768
|
beforeDestroy(): void;
|
|
3766
3769
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
3767
3770
|
export type EditorStoreType = Instance<typeof MainStore>;
|