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