@omnia/fx 8.0.526-dev → 8.0.528-dev
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/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/ButtonStylePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconBlueprintsViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/input/InputStylePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/tabs/TabStylePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorChromeStoreV2.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/DefineLayoutEditorCanvas.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvasV2.d.ts +4 -15
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStoreV2.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/multitextinput/MultiTextInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/stepper/StepperStep.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/rollup/views/CardView.d.ts +10 -8
- package/internal-do-not-import-from-here/ux/rollup/views/ListView.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts +4 -5
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/DefineDefaultView.d.ts +312 -6
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/actions/CanvasActions.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/actions/CheckedOutActions.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/actions/NotCheckedOutActions.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/views/actions/PanelActions.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/v2/VersionedLayoutRenderer.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/stores/VersionedLayoutEditorStoreV2.d.ts +308 -2
- package/internal-do-not-import-from-here/ux/versionedlayout/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +14 -14
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/panels/Panels.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/panels/Panels.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/panels/versionhistory/VersionHistory.css.d.ts +0 -10
- /package/internal-do-not-import-from-here/ux/versionedlayout/editor/panels/{versionhistory/VersionHistory.d.ts → VersionHistory.d.ts} +0 -0
package/internal-do-not-import-from-here/ux/versionedlayout/stores/VersionedLayoutEditorStoreV2.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { EditorChromeView, guid, IVersionedData, Layout, LayoutCanvasEditorMode, VersionedLayout, VersionedLayoutDefinition } from "@omnia/fx-models";
|
1
|
+
import { EditorChromeConfiguration, EditorChromePanel, EditorChromeView, guid, IVersionedData, IVersionInformation, IVersionReference, Layout, LayoutCanvasEditorMode, VersionedLayout, VersionedLayoutDefinition } from "@omnia/fx-models";
|
2
2
|
import { useEditorChromeStore, useLayoutCanvasStore, VersionedLayoutEditorSettings } from "@omnia/fx/ux";
|
3
3
|
export interface EditorViews {
|
4
4
|
default: () => {
|
@@ -10,7 +10,17 @@ export declare const useVersionedLayoutEditorStore: () => {
|
|
10
10
|
state: {
|
11
11
|
id: guid;
|
12
12
|
settings: VersionedLayoutEditorSettings<VersionedLayoutDefinition>;
|
13
|
+
versioning: {
|
14
|
+
originalVersion: IVersionedData<VersionedLayoutDefinition>;
|
15
|
+
selectedVersion: IVersionInformation;
|
16
|
+
};
|
17
|
+
permissions: {
|
18
|
+
currentIdentity: string;
|
19
|
+
canEdit: boolean;
|
20
|
+
canDelete: boolean;
|
21
|
+
};
|
13
22
|
active: {
|
23
|
+
parentVersionedLayout: VersionedLayout;
|
14
24
|
versionedLayout: VersionedLayout;
|
15
25
|
layout: Layout;
|
16
26
|
versionedData: IVersionedData<VersionedLayoutDefinition>;
|
@@ -25,7 +35,17 @@ export declare const useVersionedLayoutEditorStore: () => {
|
|
25
35
|
events: import("@omnia/fx/stores").StoreEvents<{
|
26
36
|
id: guid;
|
27
37
|
settings: VersionedLayoutEditorSettings<VersionedLayoutDefinition>;
|
38
|
+
versioning: {
|
39
|
+
originalVersion: IVersionedData<VersionedLayoutDefinition>;
|
40
|
+
selectedVersion: IVersionInformation;
|
41
|
+
};
|
42
|
+
permissions: {
|
43
|
+
currentIdentity: string;
|
44
|
+
canEdit: boolean;
|
45
|
+
canDelete: boolean;
|
46
|
+
};
|
28
47
|
active: {
|
48
|
+
parentVersionedLayout: VersionedLayout;
|
29
49
|
versionedLayout: VersionedLayout;
|
30
50
|
layout: Layout;
|
31
51
|
versionedData: IVersionedData<VersionedLayoutDefinition>;
|
@@ -38,8 +58,29 @@ export declare const useVersionedLayoutEditorStore: () => {
|
|
38
58
|
panels: {};
|
39
59
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
40
60
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
61
|
+
canvas: () => {
|
62
|
+
configuration: {
|
63
|
+
extend: (configuration: EditorChromeConfiguration) => void;
|
64
|
+
};
|
65
|
+
};
|
66
|
+
versioning: () => {
|
67
|
+
init: () => void;
|
68
|
+
select: (version: IVersionInformation) => Promise<void>;
|
69
|
+
reset: () => void;
|
70
|
+
};
|
71
|
+
panel: () => {
|
72
|
+
show: (panel: EditorChromePanel) => void;
|
73
|
+
};
|
41
74
|
layout: () => {
|
75
|
+
takeControlAndCheckOut: () => Promise<void>;
|
76
|
+
delete: () => Promise<void>;
|
77
|
+
publish: () => Promise<void>;
|
78
|
+
saveAsDraft: () => Promise<void>;
|
79
|
+
discardChanges: () => Promise<void>;
|
80
|
+
checkOut: () => Promise<void>;
|
81
|
+
revert: (version: IVersionReference) => Promise<void>;
|
42
82
|
set: (layout: VersionedLayout) => Promise<void>;
|
83
|
+
setVersion: (versionedData: IVersionedData<VersionedLayoutDefinition>, mergeWithoutCache: boolean) => Promise<Layout>;
|
43
84
|
setDefault: () => Promise<void>;
|
44
85
|
};
|
45
86
|
editor: () => {
|
@@ -53,8 +94,273 @@ export declare const useVersionedLayoutEditorStore: () => {
|
|
53
94
|
get: {
|
54
95
|
editorMode: () => LayoutCanvasEditorMode;
|
55
96
|
canvasMode: () => import("@omnia/fx-models").LayoutCanvasMode;
|
97
|
+
chromeStore: () => {
|
98
|
+
state: {
|
99
|
+
id: guid;
|
100
|
+
finishedLoading: boolean;
|
101
|
+
compactMode: boolean;
|
102
|
+
navigation: {
|
103
|
+
configuration: import("@omnia/fx-models").EditorChromeNavigationConfiguration;
|
104
|
+
enabled: boolean;
|
105
|
+
show: boolean;
|
106
|
+
};
|
107
|
+
drawers: {
|
108
|
+
right: {
|
109
|
+
panel: {
|
110
|
+
settings: EditorChromePanel;
|
111
|
+
show: boolean;
|
112
|
+
actions: import("@omnia/fx-models").ChromeActionItem[];
|
113
|
+
footerToolbar: {
|
114
|
+
actionsLeft: import("@omnia/fx-models").ChromeActionItem[];
|
115
|
+
actionsCenter: import("@omnia/fx-models").ChromeActionItem[];
|
116
|
+
actionsRight: import("@omnia/fx-models").ChromeActionItem[];
|
117
|
+
ExtendActionsRight: import("@omnia/fx-models").ChromeActionItem[];
|
118
|
+
};
|
119
|
+
};
|
120
|
+
canvas: {
|
121
|
+
enabled: boolean;
|
122
|
+
show: boolean;
|
123
|
+
customScroll: boolean;
|
124
|
+
header: {
|
125
|
+
enabled: boolean;
|
126
|
+
icon: import("@omnia/fx-models").IIcon;
|
127
|
+
title: string;
|
128
|
+
};
|
129
|
+
};
|
130
|
+
};
|
131
|
+
};
|
132
|
+
views: {
|
133
|
+
active: import("@omnia/fx/ux").EditorChromeViewRegistration;
|
134
|
+
registrations: import("@omnia/fx/ux").EditorChromeViewRegistration[];
|
135
|
+
history: {
|
136
|
+
items: {
|
137
|
+
id: guid;
|
138
|
+
timestamp: number;
|
139
|
+
}[];
|
140
|
+
currentIndex: number;
|
141
|
+
maxSize: number;
|
142
|
+
};
|
143
|
+
};
|
144
|
+
canvasSettings: {
|
145
|
+
scroll: {
|
146
|
+
store: {
|
147
|
+
state: {
|
148
|
+
elementRef: HTMLElement;
|
149
|
+
elementId: string;
|
150
|
+
disableScrolling: boolean;
|
151
|
+
height: string;
|
152
|
+
width: string;
|
153
|
+
scrollingDirection: import("@omnia/fx-models").OScrollTypesCombination;
|
154
|
+
coordinates: {
|
155
|
+
readonly left: number;
|
156
|
+
readonly right: number;
|
157
|
+
readonly bottom: number;
|
158
|
+
readonly top: number;
|
159
|
+
};
|
160
|
+
};
|
161
|
+
events: import("@omnia/fx/stores").StoreEvents<{
|
162
|
+
elementRef: HTMLElement;
|
163
|
+
elementId: string;
|
164
|
+
disableScrolling: boolean;
|
165
|
+
height: string;
|
166
|
+
width: string;
|
167
|
+
scrollingDirection: import("@omnia/fx-models").OScrollTypesCombination;
|
168
|
+
coordinates: {
|
169
|
+
readonly left: number;
|
170
|
+
readonly right: number;
|
171
|
+
readonly bottom: number;
|
172
|
+
readonly top: number;
|
173
|
+
};
|
174
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
175
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
176
|
+
scroll: () => void;
|
177
|
+
setDisableScrolling: (disable: boolean) => void;
|
178
|
+
calculateDynamicHeight: () => void;
|
179
|
+
setHeight: (height: string) => void;
|
180
|
+
setWidth: (width: string) => void;
|
181
|
+
setScrolling: (scrolling: import("@omnia/fx-models").OScrollTypesCombination) => void;
|
182
|
+
calculateScrollHeight: (referenceElementIds: string[]) => void;
|
183
|
+
isElementNameStillInView: (elementName: string) => boolean;
|
184
|
+
isElementIdStillInView: (elementId: string) => boolean;
|
185
|
+
scrollToStart: () => void;
|
186
|
+
scrollToElementId: (elementId: string, anchor?: import("@omnia/fx/ux").AnchorPosition, handler?: (target: HTMLElement, container: HTMLElement) => void, immediate?: boolean) => void;
|
187
|
+
scrollToElementName: (elementName: string, anchor?: import("@omnia/fx/ux").AnchorPosition) => void;
|
188
|
+
scrollToElement: (element: HTMLElement, anchor?: import("@omnia/fx/ux").AnchorPosition, handler?: (target: HTMLElement, container: HTMLElement) => void) => void;
|
189
|
+
scrollToSelector: (selector: string, anchor?: import("@omnia/fx/ux").AnchorPosition, handler?: (target: HTMLElement, container: HTMLElement) => void, immediate?: boolean) => void;
|
190
|
+
}>;
|
191
|
+
get: {
|
192
|
+
readonly coordinates: {
|
193
|
+
readonly left: number;
|
194
|
+
readonly right: number;
|
195
|
+
readonly bottom: number;
|
196
|
+
readonly top: number;
|
197
|
+
};
|
198
|
+
readonly scrollPosition: number;
|
199
|
+
};
|
200
|
+
} & {
|
201
|
+
dispose?: () => void;
|
202
|
+
};
|
203
|
+
};
|
204
|
+
zoom: {
|
205
|
+
enabled: boolean;
|
206
|
+
level: number;
|
207
|
+
};
|
208
|
+
displaySize: {
|
209
|
+
enabled: boolean;
|
210
|
+
value: "l" | "s" | "m";
|
211
|
+
store: {
|
212
|
+
state: {
|
213
|
+
width: string;
|
214
|
+
zoomLevel: number;
|
215
|
+
};
|
216
|
+
events: import("@omnia/fx/stores").StoreEvents<{
|
217
|
+
width: string;
|
218
|
+
zoomLevel: number;
|
219
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
220
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
221
|
+
setWidth: (width: string) => void;
|
222
|
+
resetWidth: () => void;
|
223
|
+
setBreakPoint: (breakPoint: import("@omnia/fx-models").DisplayBreakpointTypes) => void;
|
224
|
+
resetZoomLevel: () => void;
|
225
|
+
setZoomLevel: (zoomLevel: number) => void;
|
226
|
+
}>;
|
227
|
+
get: {};
|
228
|
+
} & {
|
229
|
+
dispose?: () => void;
|
230
|
+
};
|
231
|
+
};
|
232
|
+
};
|
233
|
+
notificationMessage: {
|
234
|
+
key: guid;
|
235
|
+
message: string;
|
236
|
+
show: boolean;
|
237
|
+
timeout: number;
|
238
|
+
customRenderer: string;
|
239
|
+
};
|
240
|
+
operations: {
|
241
|
+
id: guid;
|
242
|
+
loading: boolean;
|
243
|
+
}[];
|
244
|
+
};
|
245
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
246
|
+
canvas: () => {
|
247
|
+
syncDisplaySettings: () => void;
|
248
|
+
setDisplayBreakPoint: (value: import("@omnia/fx-models").DisplayBreakpointTypes) => void;
|
249
|
+
zoomIn: (step?: number) => void;
|
250
|
+
zoomOut: (step?: number) => void;
|
251
|
+
setZoom: (level: number) => void;
|
252
|
+
resetZoom: () => void;
|
253
|
+
};
|
254
|
+
editor: () => {
|
255
|
+
resetForNewActiveConfiguration: () => void;
|
256
|
+
};
|
257
|
+
views: () => {
|
258
|
+
register: (editorView: EditorChromeView | EditorChromeView[]) => void;
|
259
|
+
active: {
|
260
|
+
set: (view: EditorChromeView, addToHistory?: boolean) => void;
|
261
|
+
clear: () => void;
|
262
|
+
configuration: {
|
263
|
+
set: (configuration: EditorChromeConfiguration) => void;
|
264
|
+
};
|
265
|
+
};
|
266
|
+
remove: (view: EditorChromeView) => void;
|
267
|
+
history: {
|
268
|
+
goBack: () => boolean;
|
269
|
+
goForward: () => boolean;
|
270
|
+
addToHistory: (view: EditorChromeView) => void;
|
271
|
+
clear: () => void;
|
272
|
+
};
|
273
|
+
};
|
274
|
+
showNotification: (message: import("@omnia/fx-models").NotificationMessage) => void;
|
275
|
+
operations: () => {
|
276
|
+
create: (showLoading?: boolean) => import("@omnia/fx-models").Future<null>;
|
277
|
+
setLoading: () => import("@omnia/fx-models").Future<null>;
|
278
|
+
register: (showLoading?: boolean) => guid;
|
279
|
+
unregister: (operationId: guid) => boolean;
|
280
|
+
clear: () => void;
|
281
|
+
waitForCompletion: () => Promise<void>;
|
282
|
+
};
|
283
|
+
navigation: () => {
|
284
|
+
register: (navigationItem: import("@omnia/fx-models").EditorChromeNavigationConfiguration) => void;
|
285
|
+
show: (value: boolean) => void;
|
286
|
+
toggle: () => void;
|
287
|
+
};
|
288
|
+
drawers: () => {
|
289
|
+
right: {
|
290
|
+
panel: {
|
291
|
+
show: (panel: EditorChromePanel) => void;
|
292
|
+
footerToolbar: {
|
293
|
+
add: {
|
294
|
+
action: (action: import("@omnia/fx-models").ChromeActionItem | import("@omnia/fx-models").ChromeActionItem[], position?: "left" | "center" | "right" | "extended-right") => void;
|
295
|
+
};
|
296
|
+
};
|
297
|
+
close: () => void;
|
298
|
+
};
|
299
|
+
canvas: {
|
300
|
+
configure: (header: {
|
301
|
+
icon?: import("@omnia/fx-models").IIcon;
|
302
|
+
title?: string;
|
303
|
+
enabled?: boolean;
|
304
|
+
}, customScroll?: boolean) => void;
|
305
|
+
toolbar: {
|
306
|
+
enable: (value: boolean) => void;
|
307
|
+
};
|
308
|
+
syncButtons: (currentId: guid) => void;
|
309
|
+
toggle: () => void;
|
310
|
+
show: (value: boolean) => void;
|
311
|
+
};
|
312
|
+
};
|
313
|
+
};
|
314
|
+
init: () => void;
|
315
|
+
dispose: () => void;
|
316
|
+
}>;
|
317
|
+
get: {
|
318
|
+
views: {
|
319
|
+
active: () => EditorChromeView;
|
320
|
+
all: () => EditorChromeView[];
|
321
|
+
byId: (id: guid) => EditorChromeView;
|
322
|
+
};
|
323
|
+
operations: {
|
324
|
+
all: () => guid[];
|
325
|
+
has: (operationId: guid) => boolean;
|
326
|
+
count: () => number;
|
327
|
+
};
|
328
|
+
history: () => {
|
329
|
+
view: EditorChromeView;
|
330
|
+
id: guid;
|
331
|
+
timestamp: number;
|
332
|
+
}[];
|
333
|
+
};
|
334
|
+
rules: {
|
335
|
+
showLoading: () => boolean;
|
336
|
+
history: {
|
337
|
+
canGoBack: () => boolean;
|
338
|
+
canGoForward: () => boolean;
|
339
|
+
};
|
340
|
+
views: {
|
341
|
+
hasActive: () => boolean;
|
342
|
+
};
|
343
|
+
};
|
344
|
+
} & {
|
345
|
+
dispose?: () => void;
|
346
|
+
};
|
347
|
+
};
|
348
|
+
rules: {
|
349
|
+
versioning: {
|
350
|
+
hasReverted: () => boolean;
|
351
|
+
};
|
352
|
+
isCheckedOutToMe: () => boolean;
|
353
|
+
isCheckedOut: () => boolean;
|
354
|
+
isDefaultLayout: () => boolean;
|
355
|
+
actions: {
|
356
|
+
hide: {
|
357
|
+
takeControl: () => boolean;
|
358
|
+
whenNotCheckedOut: () => boolean;
|
359
|
+
whenCheckedOut: () => boolean;
|
360
|
+
whenNotDeletable: () => boolean;
|
361
|
+
};
|
362
|
+
};
|
56
363
|
};
|
57
|
-
rules: {};
|
58
364
|
} & {
|
59
365
|
dispose?: () => void;
|
60
366
|
};
|
@@ -148,10 +148,10 @@ import wc21a1f20b3d404602853049c1c8b8da2f from './ux/userpresence/UserPresence';
|
|
148
148
|
import wc30289e2b58ff48b0aabb3cb3732c3038 from './ux/usertypelayout/UserTypeLayoutRenderer';
|
149
149
|
import wc90cfd68bb4e04f67bfd5677bdf4af59d from './ux/validation/FieldValidation';
|
150
150
|
import wcba03fc7e6921468289c0a0ffe0cf942e from './ux/versionedlayout/renderer/VersionedLayoutRenderer';
|
151
|
+
import wc16225d552da74599b01a49952f3d2280 from './ux/versionedlayout/renderer/v2/VersionedLayoutRenderer';
|
151
152
|
import wc73154f51a92944acbe248779a3fa7ef5 from './ux/versionedlayout/editor/VersionedLayoutEditor_old';
|
152
153
|
import wcf61a88097aa748dbb99b691f78da571a from './ux/versionedlayout/editor/VersionedLayoutEditor';
|
153
|
-
import wc32a6ca3074384eb4bcef68e9cd49a334 from './ux/versionedlayout/editor/panels/
|
154
|
-
import wcf024796066784669a26452b2da403b70 from './ux/versionedlayout/editor/panels/Panels';
|
154
|
+
import wc32a6ca3074384eb4bcef68e9cd49a334 from './ux/versionedlayout/editor/panels/VersionHistory';
|
155
155
|
import wcc88e2566b07a4680aef7f575f5c5641b from './ux/versionedlayout/controller/VersionedLayoutController';
|
156
156
|
import wc177046bfd171495bbce70d1cd9242fa1 from './ux/versionedlayout/controller/Chrome';
|
157
157
|
import wce96730610396417c992037cda2812626 from './ux/video/VideoPlayer';
|
@@ -2592,13 +2592,21 @@ declare global {
|
|
2592
2592
|
};
|
2593
2593
|
"versioned": {
|
2594
2594
|
"layout": {
|
2595
|
-
"renderer": typeof wcba03fc7e6921468289c0a0ffe0cf942e extends {
|
2595
|
+
"renderer": (typeof wcba03fc7e6921468289c0a0ffe0cf942e extends {
|
2596
2596
|
propsDefinition: infer TProp;
|
2597
2597
|
} ? {
|
2598
2598
|
new (...args: any[]): {
|
2599
2599
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2600
2600
|
};
|
2601
|
-
} : typeof wcba03fc7e6921468289c0a0ffe0cf942e
|
2601
|
+
} : typeof wcba03fc7e6921468289c0a0ffe0cf942e) & {
|
2602
|
+
"v2": typeof wc16225d552da74599b01a49952f3d2280 extends {
|
2603
|
+
propsDefinition: infer TProp;
|
2604
|
+
} ? {
|
2605
|
+
new (...args: any[]): {
|
2606
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2607
|
+
};
|
2608
|
+
} : typeof wc16225d552da74599b01a49952f3d2280;
|
2609
|
+
};
|
2602
2610
|
"editor": (typeof wc73154f51a92944acbe248779a3fa7ef5 extends {
|
2603
2611
|
propsDefinition: infer TProp;
|
2604
2612
|
} ? {
|
@@ -2667,21 +2675,13 @@ declare global {
|
|
2667
2675
|
} : typeof wc6fa4d33c8cf34130bef70161155f1cff;
|
2668
2676
|
};
|
2669
2677
|
};
|
2670
|
-
"history":
|
2678
|
+
"history": typeof wc32a6ca3074384eb4bcef68e9cd49a334 extends {
|
2671
2679
|
propsDefinition: infer TProp;
|
2672
2680
|
} ? {
|
2673
2681
|
new (...args: any[]): {
|
2674
2682
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2675
2683
|
};
|
2676
|
-
} : typeof wc32a6ca3074384eb4bcef68e9cd49a334
|
2677
|
-
"panel": typeof wcf024796066784669a26452b2da403b70 extends {
|
2678
|
-
propsDefinition: infer TProp;
|
2679
|
-
} ? {
|
2680
|
-
new (...args: any[]): {
|
2681
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2682
|
-
};
|
2683
|
-
} : typeof wcf024796066784669a26452b2da403b70;
|
2684
|
-
};
|
2684
|
+
} : typeof wc32a6ca3074384eb4bcef68e9cd49a334;
|
2685
2685
|
};
|
2686
2686
|
"video": {
|
2687
2687
|
"player": typeof wce96730610396417c992037cda2812626 extends {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.528-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.528-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
@@ -1,7 +0,0 @@
|
|
1
|
-
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
|
2
|
-
"v-slots"?: {} & Omit<{
|
3
|
-
default?: import("vue").Slot;
|
4
|
-
$stable?: boolean;
|
5
|
-
}, never>;
|
6
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
|
7
|
-
export default _default;
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import { types } from "typestyle";
|
2
|
-
/**
|
3
|
-
* Styles for the Editor component
|
4
|
-
*/
|
5
|
-
export declare const VersionPanelStyles: {
|
6
|
-
container?: types.NestedCSSProperties;
|
7
|
-
timelineWrapper?: types.NestedCSSProperties;
|
8
|
-
version?: types.NestedCSSProperties;
|
9
|
-
smallDot?: types.NestedCSSProperties;
|
10
|
-
};
|