@plurid/plurid-data 0.0.0-14 → 0.0.0-15
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/distribution/constants/defaults/index.d.ts +3 -0
- package/distribution/constants/general/index.d.ts +6 -0
- package/distribution/constants/index.d.ts +1 -0
- package/distribution/constants/internationalization/chinese/index.d.ts +1 -1
- package/distribution/constants/internationalization/english/index.d.ts +1 -1
- package/distribution/constants/internationalization/fields.d.ts +82 -2
- package/distribution/constants/internationalization/french/index.d.ts +1 -1
- package/distribution/constants/internationalization/german/index.d.ts +1 -1
- package/distribution/constants/internationalization/hindi/index.d.ts +1 -1
- package/distribution/constants/internationalization/index.d.ts +82 -1
- package/distribution/constants/internationalization/italian/index.d.ts +1 -1
- package/distribution/constants/internationalization/japanese/index.d.ts +1 -1
- package/distribution/constants/internationalization/languages.d.ts +1 -1
- package/distribution/constants/internationalization/romanian/index.d.ts +1 -1
- package/distribution/constants/internationalization/russian/index.d.ts +1 -1
- package/distribution/constants/internationalization/spanish/index.d.ts +1 -1
- package/distribution/constants/pubsub/index.d.ts +38 -30
- package/distribution/constants/space/index.d.ts +1 -0
- package/distribution/enumerations/general/index.d.ts +10 -1
- package/distribution/index.es.js +215 -2
- package/distribution/index.es.js.map +1 -1
- package/distribution/index.js +224 -1
- package/distribution/index.js.map +1 -1
- package/distribution/interfaces/external/application/index.d.ts +15 -2
- package/distribution/interfaces/external/component/index.d.ts +2 -0
- package/distribution/interfaces/external/configuration/index.d.ts +7 -3
- package/distribution/interfaces/external/configurator/index.d.ts +11 -0
- package/distribution/interfaces/external/index.d.ts +1 -1
- package/distribution/interfaces/external/internationalization/index.d.ts +15 -0
- package/distribution/interfaces/external/layout/index.d.ts +1 -1
- package/distribution/interfaces/external/plane/index.d.ts +0 -11
- package/distribution/interfaces/external/pubsub/index.d.ts +2 -3
- package/distribution/interfaces/external/pubsub/message.d.ts +86 -5
- package/distribution/interfaces/external/router/route/index.d.ts +15 -14
- package/distribution/interfaces/external/universe/index.d.ts +3 -20
- package/distribution/interfaces/internal/context/index.d.ts +2 -0
- package/distribution/interfaces/internal/index.d.ts +0 -3
- package/distribution/interfaces/internal/shortcuts/index.d.ts +2 -2
- package/distribution/interfaces/internal/state/index.d.ts +0 -1
- package/distribution/interfaces/internal/transform/index.d.ts +5 -0
- package/package.json +6 -6
- package/distribution/interfaces/external/cluster/index.d.ts +0 -9
- package/distribution/interfaces/internal/internationalization/index.d.ts +0 -157
- package/distribution/interfaces/internal/plane/index.d.ts +0 -9
- package/distribution/interfaces/internal/universe/index.d.ts +0 -27
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { PluridState } from '../../internal/state';
|
|
2
2
|
import { PluridPlane, PluridPlaneContext } from '../plane';
|
|
3
|
+
import { PluridUniverse } from '../universe';
|
|
3
4
|
import { PluridView } from '../view';
|
|
4
5
|
import { PluridPartialConfiguration } from '../configuration';
|
|
5
|
-
import { IndexedPluridPlane } from '../plane';
|
|
6
6
|
import { PluridPubSub } from '../pubsub';
|
|
7
7
|
import { PluridPlanesRegistrar } from '../registrar';
|
|
8
8
|
import { IsoMatcherRouteResult } from '../routing';
|
|
9
9
|
export interface PluridApplication<C> {
|
|
10
10
|
id?: string;
|
|
11
|
-
indexedPlanes?: Map<string, IndexedPluridPlane<C>>;
|
|
12
11
|
planesProperties?: Map<string, any>;
|
|
13
12
|
/**
|
|
14
13
|
* The planes which will be rendered by the `PluridApplication`.
|
|
@@ -26,11 +25,21 @@ export interface PluridApplication<C> {
|
|
|
26
25
|
* Routes of the planes in view on the initial rendering.
|
|
27
26
|
*/
|
|
28
27
|
view: PluridApplicationView;
|
|
28
|
+
/**
|
|
29
|
+
* Center the view on a plane from `view`.
|
|
30
|
+
*/
|
|
31
|
+
centerView?: string;
|
|
29
32
|
/**
|
|
30
33
|
* The hostname of the server exposed to the internet, e.g. `example.com`,
|
|
31
34
|
* to be used in plurid plane links.
|
|
32
35
|
*/
|
|
33
36
|
hostname?: string;
|
|
37
|
+
/**
|
|
38
|
+
* A `PluridApplication` must be either planes or universes based.
|
|
39
|
+
*
|
|
40
|
+
* A `PluridUniverse` is a collection of `PluridPlane`s.
|
|
41
|
+
*/
|
|
42
|
+
universes?: PluridUniverse<C>[];
|
|
34
43
|
/**
|
|
35
44
|
* Show or not the default Plane Not Found component, or pass a custom component.
|
|
36
45
|
*
|
|
@@ -74,6 +83,10 @@ export interface PluridApplication<C> {
|
|
|
74
83
|
*/
|
|
75
84
|
customPlane?: C;
|
|
76
85
|
matchedRoute?: IsoMatcherRouteResult<C>;
|
|
86
|
+
/**
|
|
87
|
+
* Used to identify the space if using `multispace`.
|
|
88
|
+
*/
|
|
89
|
+
space?: string;
|
|
77
90
|
}
|
|
78
91
|
export declare type PluridApplicationView = (string | PluridView)[];
|
|
79
92
|
export interface LocalStorageUsage {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PluridRouteFragments } from '../router';
|
|
2
|
+
import { PluridPubSub } from '../pubsub';
|
|
2
3
|
export declare type ComponentWithPlurid<T, W> = T & WithPluridComponentProperty<W>;
|
|
3
4
|
export interface WithPluridComponentProperty<W> {
|
|
4
5
|
plurid: W;
|
|
@@ -8,6 +9,7 @@ export declare type RouteComponentWithPluridProperty<T> = ComponentWithPlurid<T,
|
|
|
8
9
|
export interface PluridPlaneComponentProperty {
|
|
9
10
|
route: PluridRouteComponentProperty;
|
|
10
11
|
plane: PluridPlaneComponentPropertyPlane;
|
|
12
|
+
pubSub: PluridPubSub;
|
|
11
13
|
}
|
|
12
14
|
export interface PluridPlaneComponentPropertyPlane {
|
|
13
15
|
value: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Theme, ThemeName } from '@plurid/plurid-themes';
|
|
2
|
-
import { SIZES, TRANSFORM_MODES, TRANSFORM_TOUCHES, TOOLBAR_DRAWERS } from
|
|
3
|
-
import { RecursivePartial } from
|
|
2
|
+
import { SIZES, TRANSFORM_MODES, TRANSFORM_TOUCHES, TOOLBAR_DRAWERS } from "../../../enumerations/index";
|
|
3
|
+
import { RecursivePartial } from "../../helpers";
|
|
4
4
|
import { PluridLayout } from '../layout';
|
|
5
|
-
import { InternationalizationLanguageType } from '
|
|
5
|
+
import { InternationalizationLanguageType } from '../internationalization';
|
|
6
6
|
export declare type PluridPartialConfiguration = RecursivePartial<PluridConfiguration>;
|
|
7
7
|
export interface PluridConfiguration {
|
|
8
8
|
global: PluridConfigurationGlobal;
|
|
@@ -158,6 +158,10 @@ export interface PluridConfigurationElementsPlane {
|
|
|
158
158
|
}
|
|
159
159
|
export interface PluridConfigurationElementsPlaneControls {
|
|
160
160
|
show: boolean;
|
|
161
|
+
/**
|
|
162
|
+
* Show plane title.
|
|
163
|
+
*/
|
|
164
|
+
title: boolean;
|
|
161
165
|
pathbar: PluridConfigurationElementsPlaneControlsPathbar;
|
|
162
166
|
}
|
|
163
167
|
export interface PluridConfigurationElementsPlaneControlsPathbar {
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PluridPubSub } from '../pubsub';
|
|
2
|
+
export interface PluridApplicationConfiguratorProperties {
|
|
3
|
+
/**
|
|
4
|
+
* Publish/Subscribe bus based on `@plurid/plurid-pubsub`.
|
|
5
|
+
*/
|
|
6
|
+
pubsub?: PluridPubSub;
|
|
7
|
+
}
|
|
8
|
+
export interface PluridPlaneConfiguratorProperties<S> {
|
|
9
|
+
theme: string;
|
|
10
|
+
style: S;
|
|
11
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export * from './application';
|
|
2
|
-
export * from './cluster';
|
|
3
2
|
export * from './compare';
|
|
4
3
|
export * from './component';
|
|
5
4
|
export * from './configuration';
|
|
5
|
+
export * from './internationalization';
|
|
6
6
|
export * from './keys';
|
|
7
7
|
export * from './layout';
|
|
8
8
|
export * from './link';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import internationalizationFields from "../../../constants/internationalization/fields";
|
|
2
|
+
export declare type InternationalizationChinese = 'chinese';
|
|
3
|
+
export declare type InternationalizationEnglish = 'english';
|
|
4
|
+
export declare type InternationalizationFrench = 'french';
|
|
5
|
+
export declare type InternationalizationGerman = 'german';
|
|
6
|
+
export declare type InternationalizationHindi = 'hindi';
|
|
7
|
+
export declare type InternationalizationItalian = 'italian';
|
|
8
|
+
export declare type InternationalizationJapanese = 'japanese';
|
|
9
|
+
export declare type InternationalizationRomanian = 'romanian';
|
|
10
|
+
export declare type InternationalizationRussian = 'russian';
|
|
11
|
+
export declare type InternationalizationSpanish = 'spanish';
|
|
12
|
+
export declare type InternationalizationLanguageType = InternationalizationChinese | InternationalizationEnglish | InternationalizationFrench | InternationalizationGerman | InternationalizationHindi | InternationalizationItalian | InternationalizationJapanese | InternationalizationRomanian | InternationalizationRussian | InternationalizationSpanish;
|
|
13
|
+
export declare type InternationalizationFields = typeof internationalizationFields;
|
|
14
|
+
export declare type InternationalizationFieldType = keyof InternationalizationFields;
|
|
15
|
+
export declare type Internationalization = Record<InternationalizationFieldType, string>;
|
|
@@ -55,17 +55,6 @@ export declare type PluridPlaneTuple<C> = [
|
|
|
55
55
|
];
|
|
56
56
|
export declare type PluridPlane<C> = PluridPlaneObject<C> | PluridPlaneTuple<C>;
|
|
57
57
|
export declare type PluridPlaneContext<T> = any;
|
|
58
|
-
export interface IndexedPluridPlane<C> {
|
|
59
|
-
protocol: string;
|
|
60
|
-
host: string;
|
|
61
|
-
path: string;
|
|
62
|
-
space: string;
|
|
63
|
-
universe: string;
|
|
64
|
-
cluster: string;
|
|
65
|
-
plane: string;
|
|
66
|
-
route: string;
|
|
67
|
-
component: C;
|
|
68
|
-
}
|
|
69
58
|
export interface RouteSegment {
|
|
70
59
|
[key: string]: any;
|
|
71
60
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { PluridPubSubTopicKeysType } from "../../../constants/pubsub";
|
|
2
1
|
import { PluridPubSubPublishMessage, PluridPubSubSubscribeMessage } from './message';
|
|
3
2
|
export * from './message';
|
|
4
3
|
export interface PluridPubSubOptions {
|
|
@@ -6,6 +5,6 @@ export interface PluridPubSubOptions {
|
|
|
6
5
|
}
|
|
7
6
|
export interface PluridPubSub {
|
|
8
7
|
publish(message: PluridPubSubPublishMessage): void;
|
|
9
|
-
subscribe(message: PluridPubSubSubscribeMessage):
|
|
10
|
-
unsubscribe(
|
|
8
|
+
subscribe(message: PluridPubSubSubscribeMessage): string;
|
|
9
|
+
unsubscribe(selector: string): boolean;
|
|
11
10
|
}
|
|
@@ -17,7 +17,7 @@ export interface PluridPubSubSubscribeMessageConfiguration {
|
|
|
17
17
|
}
|
|
18
18
|
export interface PluridPubSubPublishMessageSpaceAnimatedTransform {
|
|
19
19
|
topic: typeof PLURID_PUBSUB_TOPIC.SPACE_ANIMATED_TRANSFORM;
|
|
20
|
-
data
|
|
20
|
+
data?: any;
|
|
21
21
|
}
|
|
22
22
|
export interface PluridPubSubSubscribeMessageSpaceAnimatedTransform {
|
|
23
23
|
topic: typeof PLURID_PUBSUB_TOPIC.SPACE_ANIMATED_TRANSFORM;
|
|
@@ -193,7 +193,7 @@ export interface PluridPubSubSubscribeMessageSpaceScaleWith {
|
|
|
193
193
|
}
|
|
194
194
|
export interface PluridPubSubPublishMessageSpaceTransform {
|
|
195
195
|
topic: typeof PLURID_PUBSUB_TOPIC.SPACE_TRANSFORM;
|
|
196
|
-
data
|
|
196
|
+
data?: any;
|
|
197
197
|
}
|
|
198
198
|
export interface PluridPubSubSubscribeMessageSpaceTransform {
|
|
199
199
|
topic: typeof PLURID_PUBSUB_TOPIC.SPACE_TRANSFORM;
|
|
@@ -212,7 +212,7 @@ export interface PluridPubSubSubscribeMessageViewAddPlane {
|
|
|
212
212
|
}
|
|
213
213
|
export interface PluridPubSubPublishMessageViewSetPlanes {
|
|
214
214
|
topic: typeof PLURID_PUBSUB_TOPIC.VIEW_SET_PLANES;
|
|
215
|
-
data
|
|
215
|
+
data?: any;
|
|
216
216
|
}
|
|
217
217
|
export interface PluridPubSubSubscribeMessageViewSetPlanes {
|
|
218
218
|
topic: typeof PLURID_PUBSUB_TOPIC.VIEW_SET_PLANES;
|
|
@@ -229,5 +229,86 @@ export interface PluridPubSubSubscribeMessageViewRemovePlane {
|
|
|
229
229
|
topic: typeof PLURID_PUBSUB_TOPIC.VIEW_REMOVE_PLANE;
|
|
230
230
|
callback: PluridPubSubCallback<PluridPubSubMessageViewRemovePlaneData>;
|
|
231
231
|
}
|
|
232
|
-
export
|
|
233
|
-
|
|
232
|
+
export interface PluridPubSubMessageNavigateToPlane {
|
|
233
|
+
id: string;
|
|
234
|
+
}
|
|
235
|
+
export interface PluridPubSubPublishMessageNavigateToPlane {
|
|
236
|
+
topic: typeof PLURID_PUBSUB_TOPIC.NAVIGATE_TO_PLANE;
|
|
237
|
+
data: PluridPubSubMessageNavigateToPlane;
|
|
238
|
+
}
|
|
239
|
+
export interface PluridPubSubSubscribeMessageNavigateToPlane {
|
|
240
|
+
topic: typeof PLURID_PUBSUB_TOPIC.NAVIGATE_TO_PLANE;
|
|
241
|
+
callback: PluridPubSubCallback<PluridPubSubMessageNavigateToPlane>;
|
|
242
|
+
}
|
|
243
|
+
export interface PluridPubSubMessageRefreshPlane {
|
|
244
|
+
id: string;
|
|
245
|
+
}
|
|
246
|
+
export interface PluridPubSubPublishMessageRefreshPlane {
|
|
247
|
+
topic: typeof PLURID_PUBSUB_TOPIC.REFRESH_PLANE;
|
|
248
|
+
data: PluridPubSubMessageRefreshPlane;
|
|
249
|
+
}
|
|
250
|
+
export interface PluridPubSubSubscribeMessageRefreshPlane {
|
|
251
|
+
topic: typeof PLURID_PUBSUB_TOPIC.REFRESH_PLANE;
|
|
252
|
+
callback: PluridPubSubCallback<PluridPubSubMessageRefreshPlane>;
|
|
253
|
+
}
|
|
254
|
+
export interface PluridPubSubMessageIsolatePlane {
|
|
255
|
+
id: string;
|
|
256
|
+
}
|
|
257
|
+
export interface PluridPubSubPublishMessageIsolatePlane {
|
|
258
|
+
topic: typeof PLURID_PUBSUB_TOPIC.ISOLATE_PLANE;
|
|
259
|
+
data: PluridPubSubMessageIsolatePlane;
|
|
260
|
+
}
|
|
261
|
+
export interface PluridPubSubSubscribeMessageIsolatePlane {
|
|
262
|
+
topic: typeof PLURID_PUBSUB_TOPIC.ISOLATE_PLANE;
|
|
263
|
+
callback: PluridPubSubCallback<PluridPubSubMessageIsolatePlane>;
|
|
264
|
+
}
|
|
265
|
+
export interface PluridPubSubPublishMessageOpenClosedPlane {
|
|
266
|
+
topic: typeof PLURID_PUBSUB_TOPIC.OPEN_CLOSED_PLANE;
|
|
267
|
+
data?: any;
|
|
268
|
+
}
|
|
269
|
+
export interface PluridPubSubSubscribeMessageOpenClosedPlane {
|
|
270
|
+
topic: typeof PLURID_PUBSUB_TOPIC.OPEN_CLOSED_PLANE;
|
|
271
|
+
callback: PluridPubSubCallback<any>;
|
|
272
|
+
}
|
|
273
|
+
export interface PluridPubSubMessageClosePlane {
|
|
274
|
+
id: string;
|
|
275
|
+
}
|
|
276
|
+
export interface PluridPubSubPublishMessageClosePlane {
|
|
277
|
+
topic: typeof PLURID_PUBSUB_TOPIC.CLOSE_PLANE;
|
|
278
|
+
data: PluridPubSubMessageClosePlane;
|
|
279
|
+
}
|
|
280
|
+
export interface PluridPubSubSubscribeMessageClosePlane {
|
|
281
|
+
topic: typeof PLURID_PUBSUB_TOPIC.CLOSE_PLANE;
|
|
282
|
+
callback: PluridPubSubCallback<PluridPubSubMessageClosePlane>;
|
|
283
|
+
}
|
|
284
|
+
export interface PluridPubSubPublishMessagePreviousRoot {
|
|
285
|
+
topic: typeof PLURID_PUBSUB_TOPIC.PREVIOUS_ROOT;
|
|
286
|
+
data?: any;
|
|
287
|
+
}
|
|
288
|
+
export interface PluridPubSubSubscribeMessagePreviousRoot {
|
|
289
|
+
topic: typeof PLURID_PUBSUB_TOPIC.PREVIOUS_ROOT;
|
|
290
|
+
callback: PluridPubSubCallback<any>;
|
|
291
|
+
}
|
|
292
|
+
export interface PluridPubSubPublishMessageNextRoot {
|
|
293
|
+
topic: typeof PLURID_PUBSUB_TOPIC.NEXT_ROOT;
|
|
294
|
+
data?: any;
|
|
295
|
+
}
|
|
296
|
+
export interface PluridPubSubSubscribeMessageNextRoot {
|
|
297
|
+
topic: typeof PLURID_PUBSUB_TOPIC.NEXT_ROOT;
|
|
298
|
+
callback: PluridPubSubCallback<any>;
|
|
299
|
+
}
|
|
300
|
+
export declare type PluridPubSubMessageNavigateToRoot = {
|
|
301
|
+
index: number;
|
|
302
|
+
} | {
|
|
303
|
+
id: string;
|
|
304
|
+
};
|
|
305
|
+
export interface PluridPubSubPublishMessageNavigateToRoot {
|
|
306
|
+
topic: typeof PLURID_PUBSUB_TOPIC.NAVIGATE_TO_ROOT;
|
|
307
|
+
data: PluridPubSubMessageNavigateToRoot;
|
|
308
|
+
}
|
|
309
|
+
export interface PluridPubSubSubscribeMessageNavigateToRoot {
|
|
310
|
+
topic: typeof PLURID_PUBSUB_TOPIC.NAVIGATE_TO_ROOT;
|
|
311
|
+
callback: PluridPubSubCallback<PluridPubSubMessageNavigateToRoot>;
|
|
312
|
+
}
|
|
313
|
+
export declare type PluridPubSubPublishMessage = PluridPubSubPublishMessageConfiguration | PluridPubSubPublishMessageSpaceAnimatedTransform | PluridPubSubPublishMessageSpaceRotateUp | PluridPubSubPublishMessageSpaceRotateDown | PluridPubSubPublishMessageSpaceRotateLeft | PluridPubSubPublishMessageSpaceRotateRight | PluridPubSubPublishMessageSpaceRotateXWith | PluridPubSubPublishMessageSpaceRotateYWith | PluridPubSubPublishMessageSpaceRotateXTo | PluridPubSubPublishMessageSpaceRotateYTo | PluridPubSubPublishMessageSpaceTranslateUp | PluridPubSubPublishMessageSpaceTranslateDown | PluridPubSubPublishMessageSpaceTranslateLeft | PluridPubSubPublishMessageSpaceTranslateRight | PluridPubSubPublishMessageSpaceTranslateXWith | PluridPubSubPublishMessageSpaceTranslateYWith | PluridPubSubPublishMessageSpaceTranslateZWith | PluridPubSubPublishMessageSpaceTranslateXTo | PluridPubSubPublishMessageSpaceTranslateYTo | PluridPubSubPublishMessageSpaceTranslateZTo | PluridPubSubPublishMessageSpaceScaleUp | PluridPubSubPublishMessageSpaceScaleDown | PluridPubSubPublishMessageSpaceScaleWith | PluridPubSubPublishMessageSpaceTransform | PluridPubSubPublishMessageViewAddPlane | PluridPubSubPublishMessageViewSetPlanes | PluridPubSubPublishMessageViewRemovePlane | PluridPubSubPublishMessageNavigateToPlane | PluridPubSubPublishMessageRefreshPlane | PluridPubSubPublishMessageIsolatePlane | PluridPubSubPublishMessageOpenClosedPlane | PluridPubSubPublishMessageClosePlane | PluridPubSubPublishMessagePreviousRoot | PluridPubSubPublishMessageNextRoot | PluridPubSubPublishMessageNavigateToRoot;
|
|
314
|
+
export declare type PluridPubSubSubscribeMessage = PluridPubSubSubscribeMessageConfiguration | PluridPubSubSubscribeMessageSpaceAnimatedTransform | PluridPubSubSubscribeMessageSpaceRotateUp | PluridPubSubSubscribeMessageSpaceRotateDown | PluridPubSubSubscribeMessageSpaceRotateLeft | PluridPubSubSubscribeMessageSpaceRotateRight | PluridPubSubSubscribeMessageSpaceRotateXWith | PluridPubSubSubscribeMessageSpaceRotateYWith | PluridPubSubSubscribeMessageSpaceRotateXTo | PluridPubSubSubscribeMessageSpaceRotateYTo | PluridPubSubSubscribeMessageSpaceTranslateUp | PluridPubSubSubscribeMessageSpaceTranslateDown | PluridPubSubSubscribeMessageSpaceTranslateLeft | PluridPubSubSubscribeMessageSpaceTranslateRight | PluridPubSubSubscribeMessageSpaceTranslateXWith | PluridPubSubSubscribeMessageSpaceTranslateYWith | PluridPubSubSubscribeMessageSpaceTranslateZWith | PluridPubSubSubscribeMessageSpaceTranslateXTo | PluridPubSubSubscribeMessageSpaceTranslateYTo | PluridPubSubSubscribeMessageSpaceTranslateZTo | PluridPubSubSubscribeMessageSpaceScaleUp | PluridPubSubSubscribeMessageSpaceScaleDown | PluridPubSubSubscribeMessageSpaceScaleWith | PluridPubSubSubscribeMessageSpaceTransform | PluridPubSubSubscribeMessageViewAddPlane | PluridPubSubSubscribeMessageViewSetPlanes | PluridPubSubSubscribeMessageViewRemovePlane | PluridPubSubSubscribeMessageNavigateToPlane | PluridPubSubSubscribeMessageRefreshPlane | PluridPubSubSubscribeMessageIsolatePlane | PluridPubSubSubscribeMessageOpenClosedPlane | PluridPubSubSubscribeMessageClosePlane | PluridPubSubSubscribeMessagePreviousRoot | PluridPubSubSubscribeMessageNextRoot | PluridPubSubSubscribeMessageNavigateToRoot;
|
|
@@ -20,14 +20,12 @@ export interface PluridRoute<C, G = any> {
|
|
|
20
20
|
*/
|
|
21
21
|
exterior?: C;
|
|
22
22
|
/**
|
|
23
|
-
* A
|
|
24
|
-
*
|
|
25
|
-
* Planes will be assigned to the `default` space, `default` universe, `default` cluster.
|
|
23
|
+
* A route can have planes and/or spaces.
|
|
26
24
|
*/
|
|
27
25
|
planes?: PluridRoutePlane<C>[];
|
|
28
26
|
view?: string[];
|
|
29
27
|
/**
|
|
30
|
-
* A
|
|
28
|
+
* A route can have planes and/or spaces.
|
|
31
29
|
*/
|
|
32
30
|
spaces?: PluridRouteSpace<C>[];
|
|
33
31
|
/**
|
|
@@ -73,8 +71,6 @@ export interface PluridRouteSpace<C> {
|
|
|
73
71
|
exterior?: C;
|
|
74
72
|
/**
|
|
75
73
|
* A space can have planes and/or universes.
|
|
76
|
-
*
|
|
77
|
-
* Planes will be assigned to the `default` universe, `default` cluster.
|
|
78
74
|
*/
|
|
79
75
|
planes?: PluridRoutePlane<C>[];
|
|
80
76
|
view?: string[];
|
|
@@ -86,17 +82,22 @@ export interface PluridRouteSpace<C> {
|
|
|
86
82
|
}
|
|
87
83
|
export interface PluridRouteUniverse<C> {
|
|
88
84
|
value: string;
|
|
85
|
+
planes?: PluridRoutePlane<C>[];
|
|
86
|
+
view?: string[];
|
|
89
87
|
/**
|
|
90
|
-
*
|
|
88
|
+
* By default, the order the documents are shown in is based on their index in the `documents[]`.
|
|
89
|
+
* The ordinal can be used to overrule the default order.
|
|
90
|
+
* If not unique, the documents with equal `ordinal` will be ordered by index.
|
|
91
91
|
*
|
|
92
|
-
*
|
|
92
|
+
* 0-based.
|
|
93
93
|
*/
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
94
|
+
ordinal?: number;
|
|
95
|
+
/**
|
|
96
|
+
* Set the document as active. By default the first document is active.
|
|
97
|
+
*
|
|
98
|
+
* Only one document can be active at a time.
|
|
99
|
+
*/
|
|
100
|
+
active?: boolean;
|
|
100
101
|
}
|
|
101
102
|
export interface PluridRoutePlaneOptions {
|
|
102
103
|
/**
|
|
@@ -1,16 +1,8 @@
|
|
|
1
1
|
import { PluridPlane } from '../plane';
|
|
2
|
-
import { PluridCluster } from '../cluster';
|
|
3
|
-
import { PluridView } from '../view';
|
|
4
2
|
export interface PluridUniverse<C> {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
id?: string;
|
|
9
|
-
/**
|
|
10
|
-
* Must be unique if IDs not provided.
|
|
11
|
-
*/
|
|
12
|
-
name: string;
|
|
13
|
-
planes: PluridPlane<C>[];
|
|
3
|
+
value: string;
|
|
4
|
+
planes?: PluridPlane<C>[];
|
|
5
|
+
view?: string[];
|
|
14
6
|
/**
|
|
15
7
|
* By default, the order the documents are shown in is based on their index in the `documents[]`.
|
|
16
8
|
* The ordinal can be used to overrule the default order.
|
|
@@ -25,13 +17,4 @@ export interface PluridUniverse<C> {
|
|
|
25
17
|
* Only one document can be active at a time.
|
|
26
18
|
*/
|
|
27
19
|
active?: boolean;
|
|
28
|
-
/**
|
|
29
|
-
* Paths to the pages in view on the initial rendering.
|
|
30
|
-
*/
|
|
31
|
-
view?: string[] | PluridView[];
|
|
32
|
-
/**
|
|
33
|
-
* A cluster ensures the rendering of all the pages that it contains
|
|
34
|
-
* in the same space zone.
|
|
35
|
-
*/
|
|
36
|
-
clusters?: PluridCluster<C>[];
|
|
37
20
|
}
|
|
@@ -10,5 +10,7 @@ export interface PluridContext<C> {
|
|
|
10
10
|
planeNotFound?: boolean | C;
|
|
11
11
|
planeRenderError?: boolean | C;
|
|
12
12
|
matchedRoute?: IsoMatcherRouteResult<C> | undefined;
|
|
13
|
+
hostname?: string;
|
|
14
|
+
defaultPubSub: PluridPubSub;
|
|
13
15
|
registerPubSub: (pubsub: PluridPubSub) => void;
|
|
14
16
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { SHORTCUTS } from
|
|
2
|
-
import { InternationalizationFieldType } from
|
|
1
|
+
import { SHORTCUTS } from "../../../enumerations/index";
|
|
2
|
+
import { InternationalizationFieldType } from "../../external/internationalization";
|
|
3
3
|
export interface ShortcutName {
|
|
4
4
|
name: InternationalizationFieldType;
|
|
5
5
|
internationalizedKey?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plurid/plurid-data",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-15",
|
|
4
4
|
"description": "Plurid Constants, Interfaces, Enumerations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"plurid",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@plurid/plurid-themes": "0.0.0-2",
|
|
51
|
-
"@types/node": "^18.
|
|
52
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
53
|
-
"@typescript-eslint/parser": "^5.
|
|
51
|
+
"@types/node": "^18.7.4",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^5.33.0",
|
|
53
|
+
"@typescript-eslint/parser": "^5.33.0",
|
|
54
54
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
55
|
-
"eslint": "^8.
|
|
56
|
-
"rollup": "^2.
|
|
55
|
+
"eslint": "^8.22.0",
|
|
56
|
+
"rollup": "^2.78.0",
|
|
57
57
|
"rollup-plugin-terser": "^7.0.2",
|
|
58
58
|
"rollup-plugin-typescript2": "^0.32.1",
|
|
59
59
|
"ts-node": "^10.9.1",
|
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
export declare type InternationalizationChinese = 'chinese';
|
|
2
|
-
export declare type InternationalizationEnglish = 'english';
|
|
3
|
-
export declare type InternationalizationFrench = 'french';
|
|
4
|
-
export declare type InternationalizationGerman = 'german';
|
|
5
|
-
export declare type InternationalizationHindi = 'hindi';
|
|
6
|
-
export declare type InternationalizationItalian = 'italian';
|
|
7
|
-
export declare type InternationalizationJapanese = 'japanese';
|
|
8
|
-
export declare type InternationalizationRomanian = 'romanian';
|
|
9
|
-
export declare type InternationalizationRussian = 'russian';
|
|
10
|
-
export declare type InternationalizationSpanish = 'spanish';
|
|
11
|
-
export declare type InternationalizationLanguageType = InternationalizationChinese | InternationalizationEnglish | InternationalizationFrench | InternationalizationGerman | InternationalizationHindi | InternationalizationItalian | InternationalizationJapanese | InternationalizationRomanian | InternationalizationRussian | InternationalizationSpanish;
|
|
12
|
-
export declare type InternationalizationFieldViewcubeFront = 'viewcubeFront';
|
|
13
|
-
export declare type InternationalizationFieldViewcubeBack = 'viewcubeBack';
|
|
14
|
-
export declare type InternationalizationFieldViewcubeLeft = 'viewcubeLeft';
|
|
15
|
-
export declare type InternationalizationFieldViewcubeRight = 'viewcubeRight';
|
|
16
|
-
export declare type InternationalizationFieldViewcubeTop = 'viewcubeTop';
|
|
17
|
-
export declare type InternationalizationFieldViewcubeBase = 'viewcubeBase';
|
|
18
|
-
export declare type InternationalizationFieldToolbarTransformRotate = 'toolbarTransformRotate';
|
|
19
|
-
export declare type InternationalizationFieldToolbarTransformScale = 'toolbarTransformScale';
|
|
20
|
-
export declare type InternationalizationFieldToolbarTransformTranslate = 'toolbarTransformTranslate';
|
|
21
|
-
export declare type InternationalizationFieldToolbarDrawerGlobalTitle = 'toolbarDrawerGlobalTitle';
|
|
22
|
-
export declare type InternationalizationFieldToolbarDrawerGlobalGeneralTheme = 'toolbarDrawerGlobalGeneralTheme';
|
|
23
|
-
export declare type InternationalizationFieldToolbarDrawerGlobalInteractionTheme = 'toolbarDrawerGlobalInteractionTheme';
|
|
24
|
-
export declare type InternationalizationFieldToolbarDrawerGlobalLanguage = 'toolbarDrawerGlobalLanguage';
|
|
25
|
-
export declare type InternationalizationFieldToolbarDrawerTransformTitle = 'toolbarDrawerTransformTitle';
|
|
26
|
-
export declare type InternationalizationFieldToolbarDrawerTransformMultiModeTransform = 'toolbarDrawerTransformMultiModeTransform';
|
|
27
|
-
export declare type InternationalizationFieldToolbarDrawerTransformAllowRotationX = 'toolbarDrawerTransformAllowRotationX';
|
|
28
|
-
export declare type InternationalizationFieldToolbarDrawerTransformAllowRotationY = 'toolbarDrawerTransformAllowRotationY';
|
|
29
|
-
export declare type InternationalizationFieldToolbarDrawerTransformAllowTranslationX = 'toolbarDrawerTransformAllowTranslationX';
|
|
30
|
-
export declare type InternationalizationFieldToolbarDrawerTransformAllowTranslationY = 'toolbarDrawerTransformAllowTranslationY';
|
|
31
|
-
export declare type InternationalizationFieldToolbarDrawerTransformAllowTranslationZ = 'toolbarDrawerTransformAllowTranslationZ';
|
|
32
|
-
export declare type InternationalizationFieldToolbarDrawerTransformAllowScale = 'toolbarDrawerTransformAllowScale';
|
|
33
|
-
export declare type InternationalizationFieldToolbarDrawerTransformTouchTransform = 'toolbarDrawerTransformTouchTransform';
|
|
34
|
-
export declare type InternationalizationFieldToolbarDrawerSpaceTitle = 'toolbarDrawerSpaceTitle';
|
|
35
|
-
export declare type InternationalizationFieldToolbarDrawerSpaceTransparentUserInterface = 'toolbarDrawerSpaceTransparentUserInterface';
|
|
36
|
-
export declare type InternationalizationFieldToolbarDrawerSpaceShowTransformOrigin = 'toolbarDrawerSpaceShowTransformOrigin';
|
|
37
|
-
export declare type InternationalizationFieldToolbarDrawerSpaceTransformOriginSize = 'toolbarDrawerSpaceTransformOriginSize';
|
|
38
|
-
export declare type InternationalizationFieldToolbarDrawerSpacePlaneOpacity = 'toolbarDrawerSpacePlaneOpacity';
|
|
39
|
-
export declare type InternationalizationFieldToolbarDrawerSpaceLayoutType = 'toolbarDrawerSpaceLayoutType';
|
|
40
|
-
export declare type InternationalizationFieldToolbarDrawerToolbarTitle = 'toolbarDrawerToolbarTitle';
|
|
41
|
-
export declare type InternationalizationFieldToolbarDrawerToolbarAlwaysOpaque = 'toolbarDrawerToolbarAlwaysOpaque';
|
|
42
|
-
export declare type InternationalizationFieldToolbarDrawerToolbarShowTransformIcons = 'toolbarDrawerToolbarShowTransformIcons';
|
|
43
|
-
export declare type InternationalizationFieldToolbarDrawerToolbarShowTransformArrows = 'toolbarDrawerToolbarShowTransformArrows';
|
|
44
|
-
export declare type InternationalizationFieldToolbarDrawerToolbarConcealToolbar = 'toolbarDrawerToolbarConcealToolbar';
|
|
45
|
-
export declare type InternationalizationFieldToolbarDrawerViewcubeTitle = 'toolbarDrawerViewcubeTitle';
|
|
46
|
-
export declare type InternationalizationFieldToolbarDrawerViewcubeShowViewcube = 'toolbarDrawerViewcubeShowViewcube';
|
|
47
|
-
export declare type InternationalizationFieldToolbarDrawerViewcubeShowTransformButtons = 'toolbarDrawerViewcubeShowTransformButtons';
|
|
48
|
-
export declare type InternationalizationFieldToolbarDrawerViewcubeAlwaysOpaque = 'toolbarDrawerViewcubeAlwaysOpaque';
|
|
49
|
-
export declare type InternationalizationFieldToolbarDrawerViewcubeConcealViewcube = 'toolbarDrawerViewcubeConcealViewcube';
|
|
50
|
-
export declare type InternationalizationFieldToolbarDrawerTechnicalTitle = 'toolbarDrawerTechnicalTitle';
|
|
51
|
-
export declare type InternationalizationFieldToolbarDrawerTechnicalCullingDistance = 'toolbarDrawerTechnicalCullingDistance';
|
|
52
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsTitle = 'toolbarDrawerShortcutsTitle';
|
|
53
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsToggleFirstPerson = 'toolbarDrawerShortcutsToggleFirstPerson';
|
|
54
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsMoveForward = 'toolbarDrawerShortcutsMoveForward';
|
|
55
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsMoveBackward = 'toolbarDrawerShortcutsMoveBackward';
|
|
56
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsMoveLeft = 'toolbarDrawerShortcutsMoveLeft';
|
|
57
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsMoveRight = 'toolbarDrawerShortcutsMoveRight';
|
|
58
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsMoveUp = 'toolbarDrawerShortcutsMoveUp';
|
|
59
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsMoveDown = 'toolbarDrawerShortcutsMoveDown';
|
|
60
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsTurnLeft = 'toolbarDrawerShortcutsTurnLeft';
|
|
61
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsTurnRight = 'toolbarDrawerShortcutsTurnRight';
|
|
62
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsTurnUp = 'toolbarDrawerShortcutsTurnUp';
|
|
63
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsTurnDown = 'toolbarDrawerShortcutsTurnDown';
|
|
64
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsRotateUp = 'toolbarDrawerShortcutsRotateUp';
|
|
65
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsRotateDown = 'toolbarDrawerShortcutsRotateDown';
|
|
66
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsRotateLeft = 'toolbarDrawerShortcutsRotateLeft';
|
|
67
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsRotateRight = 'toolbarDrawerShortcutsRotateRight';
|
|
68
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsToggleRotate = 'toolbarDrawerShortcutsToggleRotate';
|
|
69
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsTranslateUp = 'toolbarDrawerShortcutsTranslateUp';
|
|
70
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsTranslateDown = 'toolbarDrawerShortcutsTranslateDown';
|
|
71
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsTranslateLeft = 'toolbarDrawerShortcutsTranslateLeft';
|
|
72
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsTranslateRight = 'toolbarDrawerShortcutsTranslateRight';
|
|
73
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsTranslateIn = 'toolbarDrawerShortcutsTranslateIn';
|
|
74
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsTranslateOut = 'toolbarDrawerShortcutsTranslateOut';
|
|
75
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsToggleTranslate = 'toolbarDrawerShortcutsToggleTranslate';
|
|
76
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsScaleUp = 'toolbarDrawerShortcutsScaleUp';
|
|
77
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsScaleDown = 'toolbarDrawerShortcutsScaleDown';
|
|
78
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsToggleScale = 'toolbarDrawerShortcutsToggleScale';
|
|
79
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollUp = 'toolbarDrawerShortcutsArrowOrScrollUp';
|
|
80
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollDown = 'toolbarDrawerShortcutsArrowOrScrollDown';
|
|
81
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollLeft = 'toolbarDrawerShortcutsArrowOrScrollLeft';
|
|
82
|
-
export declare type InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollRight = 'toolbarDrawerShortcutsArrowOrScrollRight';
|
|
83
|
-
export declare type InternationalizationFieldType = InternationalizationFieldViewcubeFront | InternationalizationFieldViewcubeBack | InternationalizationFieldViewcubeLeft | InternationalizationFieldViewcubeRight | InternationalizationFieldViewcubeTop | InternationalizationFieldViewcubeBase | InternationalizationFieldToolbarTransformRotate | InternationalizationFieldToolbarTransformScale | InternationalizationFieldToolbarTransformTranslate | InternationalizationFieldToolbarDrawerGlobalTitle | InternationalizationFieldToolbarDrawerGlobalGeneralTheme | InternationalizationFieldToolbarDrawerGlobalInteractionTheme | InternationalizationFieldToolbarDrawerGlobalLanguage | InternationalizationFieldToolbarDrawerTransformTitle | InternationalizationFieldToolbarDrawerTransformMultiModeTransform | InternationalizationFieldToolbarDrawerTransformAllowRotationX | InternationalizationFieldToolbarDrawerTransformAllowRotationY | InternationalizationFieldToolbarDrawerTransformAllowTranslationX | InternationalizationFieldToolbarDrawerTransformAllowTranslationY | InternationalizationFieldToolbarDrawerTransformAllowTranslationZ | InternationalizationFieldToolbarDrawerTransformAllowScale | InternationalizationFieldToolbarDrawerTransformTouchTransform | InternationalizationFieldToolbarDrawerSpaceTitle | InternationalizationFieldToolbarDrawerSpaceTransparentUserInterface | InternationalizationFieldToolbarDrawerSpaceShowTransformOrigin | InternationalizationFieldToolbarDrawerSpaceTransformOriginSize | InternationalizationFieldToolbarDrawerSpacePlaneOpacity | InternationalizationFieldToolbarDrawerSpaceLayoutType | InternationalizationFieldToolbarDrawerToolbarTitle | InternationalizationFieldToolbarDrawerToolbarAlwaysOpaque | InternationalizationFieldToolbarDrawerToolbarShowTransformIcons | InternationalizationFieldToolbarDrawerToolbarShowTransformArrows | InternationalizationFieldToolbarDrawerToolbarConcealToolbar | InternationalizationFieldToolbarDrawerViewcubeTitle | InternationalizationFieldToolbarDrawerViewcubeShowViewcube | InternationalizationFieldToolbarDrawerViewcubeShowTransformButtons | InternationalizationFieldToolbarDrawerViewcubeAlwaysOpaque | InternationalizationFieldToolbarDrawerViewcubeConcealViewcube | InternationalizationFieldToolbarDrawerTechnicalTitle | InternationalizationFieldToolbarDrawerTechnicalCullingDistance | InternationalizationFieldToolbarDrawerShortcutsTitle | InternationalizationFieldToolbarDrawerShortcutsToggleFirstPerson | InternationalizationFieldToolbarDrawerShortcutsMoveForward | InternationalizationFieldToolbarDrawerShortcutsMoveBackward | InternationalizationFieldToolbarDrawerShortcutsMoveLeft | InternationalizationFieldToolbarDrawerShortcutsMoveRight | InternationalizationFieldToolbarDrawerShortcutsMoveUp | InternationalizationFieldToolbarDrawerShortcutsMoveDown | InternationalizationFieldToolbarDrawerShortcutsTurnLeft | InternationalizationFieldToolbarDrawerShortcutsTurnRight | InternationalizationFieldToolbarDrawerShortcutsTurnUp | InternationalizationFieldToolbarDrawerShortcutsTurnDown | InternationalizationFieldToolbarDrawerShortcutsRotateUp | InternationalizationFieldToolbarDrawerShortcutsRotateDown | InternationalizationFieldToolbarDrawerShortcutsRotateLeft | InternationalizationFieldToolbarDrawerShortcutsRotateRight | InternationalizationFieldToolbarDrawerShortcutsToggleRotate | InternationalizationFieldToolbarDrawerShortcutsTranslateUp | InternationalizationFieldToolbarDrawerShortcutsTranslateDown | InternationalizationFieldToolbarDrawerShortcutsTranslateLeft | InternationalizationFieldToolbarDrawerShortcutsTranslateRight | InternationalizationFieldToolbarDrawerShortcutsTranslateIn | InternationalizationFieldToolbarDrawerShortcutsTranslateOut | InternationalizationFieldToolbarDrawerShortcutsToggleTranslate | InternationalizationFieldToolbarDrawerShortcutsScaleUp | InternationalizationFieldToolbarDrawerShortcutsScaleDown | InternationalizationFieldToolbarDrawerShortcutsToggleScale | InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollUp | InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollDown | InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollLeft | InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollRight;
|
|
84
|
-
export interface InternationalizationFields {
|
|
85
|
-
viewcubeFront: InternationalizationFieldViewcubeFront;
|
|
86
|
-
viewcubeBack: InternationalizationFieldViewcubeBack;
|
|
87
|
-
viewcubeLeft: InternationalizationFieldViewcubeLeft;
|
|
88
|
-
viewcubeRight: InternationalizationFieldViewcubeRight;
|
|
89
|
-
viewcubeTop: InternationalizationFieldViewcubeTop;
|
|
90
|
-
viewcubeBase: InternationalizationFieldViewcubeBase;
|
|
91
|
-
toolbarTransformRotate: InternationalizationFieldToolbarTransformRotate;
|
|
92
|
-
toolbarTransformScale: InternationalizationFieldToolbarTransformScale;
|
|
93
|
-
toolbarTransformTranslate: InternationalizationFieldToolbarTransformTranslate;
|
|
94
|
-
toolbarDrawerGlobalTitle: InternationalizationFieldToolbarDrawerGlobalTitle;
|
|
95
|
-
toolbarDrawerGlobalGeneralTheme: InternationalizationFieldToolbarDrawerGlobalGeneralTheme;
|
|
96
|
-
toolbarDrawerGlobalInteractionTheme: InternationalizationFieldToolbarDrawerGlobalInteractionTheme;
|
|
97
|
-
toolbarDrawerGlobalLanguage: InternationalizationFieldToolbarDrawerGlobalLanguage;
|
|
98
|
-
toolbarDrawerTransformTitle: InternationalizationFieldToolbarDrawerTransformTitle;
|
|
99
|
-
toolbarDrawerTransformMultiModeTransform: InternationalizationFieldToolbarDrawerTransformMultiModeTransform;
|
|
100
|
-
toolbarDrawerTransformAllowRotationX: InternationalizationFieldToolbarDrawerTransformAllowRotationX;
|
|
101
|
-
toolbarDrawerTransformAllowRotationY: InternationalizationFieldToolbarDrawerTransformAllowRotationY;
|
|
102
|
-
toolbarDrawerTransformAllowTranslationX: InternationalizationFieldToolbarDrawerTransformAllowTranslationX;
|
|
103
|
-
toolbarDrawerTransformAllowTranslationY: InternationalizationFieldToolbarDrawerTransformAllowTranslationY;
|
|
104
|
-
toolbarDrawerTransformAllowTranslationZ: InternationalizationFieldToolbarDrawerTransformAllowTranslationZ;
|
|
105
|
-
toolbarDrawerTransformAllowScale: InternationalizationFieldToolbarDrawerTransformAllowScale;
|
|
106
|
-
toolbarDrawerTransformTouchTransform: InternationalizationFieldToolbarDrawerTransformTouchTransform;
|
|
107
|
-
toolbarDrawerSpaceTitle: InternationalizationFieldToolbarDrawerSpaceTitle;
|
|
108
|
-
toolbarDrawerSpaceTransparentUserInterface: InternationalizationFieldToolbarDrawerSpaceTransparentUserInterface;
|
|
109
|
-
toolbarDrawerSpaceShowTransformOrigin: InternationalizationFieldToolbarDrawerSpaceShowTransformOrigin;
|
|
110
|
-
toolbarDrawerSpaceTransformOriginSize: InternationalizationFieldToolbarDrawerSpaceTransformOriginSize;
|
|
111
|
-
toolbarDrawerSpacePlaneOpacity: InternationalizationFieldToolbarDrawerSpacePlaneOpacity;
|
|
112
|
-
toolbarDrawerSpaceLayoutType: InternationalizationFieldToolbarDrawerSpaceLayoutType;
|
|
113
|
-
toolbarDrawerToolbarTitle: InternationalizationFieldToolbarDrawerToolbarTitle;
|
|
114
|
-
toolbarDrawerToolbarAlwaysOpaque: InternationalizationFieldToolbarDrawerToolbarAlwaysOpaque;
|
|
115
|
-
toolbarDrawerToolbarShowTransformIcons: InternationalizationFieldToolbarDrawerToolbarShowTransformIcons;
|
|
116
|
-
toolbarDrawerToolbarShowTransformArrows: InternationalizationFieldToolbarDrawerToolbarShowTransformArrows;
|
|
117
|
-
toolbarDrawerToolbarConcealToolbar: InternationalizationFieldToolbarDrawerToolbarConcealToolbar;
|
|
118
|
-
toolbarDrawerViewcubeTitle: InternationalizationFieldToolbarDrawerViewcubeTitle;
|
|
119
|
-
toolbarDrawerViewcubeShowViewcube: InternationalizationFieldToolbarDrawerViewcubeShowViewcube;
|
|
120
|
-
toolbarDrawerViewcubeShowTransformButtons: InternationalizationFieldToolbarDrawerViewcubeShowTransformButtons;
|
|
121
|
-
toolbarDrawerViewcubeAlwaysOpaque: InternationalizationFieldToolbarDrawerViewcubeAlwaysOpaque;
|
|
122
|
-
toolbarDrawerViewcubeConcealViewcube: InternationalizationFieldToolbarDrawerViewcubeConcealViewcube;
|
|
123
|
-
toolbarDrawerTechnicalTitle: InternationalizationFieldToolbarDrawerTechnicalTitle;
|
|
124
|
-
toolbarDrawerTechnicalCullingDistance: InternationalizationFieldToolbarDrawerTechnicalCullingDistance;
|
|
125
|
-
toolbarDrawerShortcutsTitle: InternationalizationFieldToolbarDrawerShortcutsTitle;
|
|
126
|
-
toolbarDrawerShortcutsToggleFirstPerson: InternationalizationFieldToolbarDrawerShortcutsToggleFirstPerson;
|
|
127
|
-
toolbarDrawerShortcutsMoveForward: InternationalizationFieldToolbarDrawerShortcutsMoveForward;
|
|
128
|
-
toolbarDrawerShortcutsMoveBackward: InternationalizationFieldToolbarDrawerShortcutsMoveBackward;
|
|
129
|
-
toolbarDrawerShortcutsMoveLeft: InternationalizationFieldToolbarDrawerShortcutsMoveLeft;
|
|
130
|
-
toolbarDrawerShortcutsMoveRight: InternationalizationFieldToolbarDrawerShortcutsMoveRight;
|
|
131
|
-
toolbarDrawerShortcutsMoveUp: InternationalizationFieldToolbarDrawerShortcutsMoveUp;
|
|
132
|
-
toolbarDrawerShortcutsMoveDown: InternationalizationFieldToolbarDrawerShortcutsMoveDown;
|
|
133
|
-
toolbarDrawerShortcutsTurnLeft: InternationalizationFieldToolbarDrawerShortcutsTurnLeft;
|
|
134
|
-
toolbarDrawerShortcutsTurnRight: InternationalizationFieldToolbarDrawerShortcutsTurnRight;
|
|
135
|
-
toolbarDrawerShortcutsTurnUp: InternationalizationFieldToolbarDrawerShortcutsTurnUp;
|
|
136
|
-
toolbarDrawerShortcutsTurnDown: InternationalizationFieldToolbarDrawerShortcutsTurnDown;
|
|
137
|
-
toolbarDrawerShortcutsRotateUp: InternationalizationFieldToolbarDrawerShortcutsRotateUp;
|
|
138
|
-
toolbarDrawerShortcutsRotateDown: InternationalizationFieldToolbarDrawerShortcutsRotateDown;
|
|
139
|
-
toolbarDrawerShortcutsRotateLeft: InternationalizationFieldToolbarDrawerShortcutsRotateLeft;
|
|
140
|
-
toolbarDrawerShortcutsRotateRight: InternationalizationFieldToolbarDrawerShortcutsRotateRight;
|
|
141
|
-
toolbarDrawerShortcutsToggleRotate: InternationalizationFieldToolbarDrawerShortcutsToggleRotate;
|
|
142
|
-
toolbarDrawerShortcutsTranslateUp: InternationalizationFieldToolbarDrawerShortcutsTranslateUp;
|
|
143
|
-
toolbarDrawerShortcutsTranslateDown: InternationalizationFieldToolbarDrawerShortcutsTranslateDown;
|
|
144
|
-
toolbarDrawerShortcutsTranslateLeft: InternationalizationFieldToolbarDrawerShortcutsTranslateLeft;
|
|
145
|
-
toolbarDrawerShortcutsTranslateRight: InternationalizationFieldToolbarDrawerShortcutsTranslateRight;
|
|
146
|
-
toolbarDrawerShortcutsTranslateIn: InternationalizationFieldToolbarDrawerShortcutsTranslateIn;
|
|
147
|
-
toolbarDrawerShortcutsTranslateOut: InternationalizationFieldToolbarDrawerShortcutsTranslateOut;
|
|
148
|
-
toolbarDrawerShortcutsToggleTranslate: InternationalizationFieldToolbarDrawerShortcutsToggleTranslate;
|
|
149
|
-
toolbarDrawerShortcutsScaleUp: InternationalizationFieldToolbarDrawerShortcutsScaleUp;
|
|
150
|
-
toolbarDrawerShortcutsScaleDown: InternationalizationFieldToolbarDrawerShortcutsScaleDown;
|
|
151
|
-
toolbarDrawerShortcutsToggleScale: InternationalizationFieldToolbarDrawerShortcutsToggleScale;
|
|
152
|
-
toolbarDrawerShortcutsArrowOrScrollUp: InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollUp;
|
|
153
|
-
toolbarDrawerShortcutsArrowOrScrollDown: InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollDown;
|
|
154
|
-
toolbarDrawerShortcutsArrowOrScrollLeft: InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollLeft;
|
|
155
|
-
toolbarDrawerShortcutsArrowOrScrollRight: InternationalizationFieldToolbarDrawerShortcutsArrowOrScrollRight;
|
|
156
|
-
}
|
|
157
|
-
export declare type Internationalization = Record<InternationalizationFieldType, string>;
|