@omnia/fx 8.0.527-dev → 8.0.529-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 +6 -2
- package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorViewManager.d.ts +6 -0
- 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/table/Table.d.ts +2 -2
- 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 +7 -5
- package/internal-do-not-import-from-here/ux/rollup/views/ListView.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/blade/Shared.d.ts +1 -8
- 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 +302 -5
- 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/stores/VersionedLayoutEditorStoreV2.d.ts +298 -1
- 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 +3 -12
- 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,6 +10,15 @@ 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: {
|
|
14
23
|
parentVersionedLayout: VersionedLayout;
|
|
15
24
|
versionedLayout: VersionedLayout;
|
|
@@ -26,6 +35,15 @@ export declare const useVersionedLayoutEditorStore: () => {
|
|
|
26
35
|
events: import("@omnia/fx/stores").StoreEvents<{
|
|
27
36
|
id: guid;
|
|
28
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
|
+
};
|
|
29
47
|
active: {
|
|
30
48
|
parentVersionedLayout: VersionedLayout;
|
|
31
49
|
versionedLayout: VersionedLayout;
|
|
@@ -40,12 +58,29 @@ export declare const useVersionedLayoutEditorStore: () => {
|
|
|
40
58
|
panels: {};
|
|
41
59
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
|
42
60
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
|
61
|
+
canvas: () => {
|
|
62
|
+
configuration: {
|
|
63
|
+
extend: (extension: 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
|
+
};
|
|
43
74
|
layout: () => {
|
|
75
|
+
takeControlAndCheckOut: () => Promise<void>;
|
|
76
|
+
delete: () => Promise<void>;
|
|
44
77
|
publish: () => Promise<void>;
|
|
45
78
|
saveAsDraft: () => Promise<void>;
|
|
46
79
|
discardChanges: () => Promise<void>;
|
|
47
80
|
checkOut: () => Promise<void>;
|
|
81
|
+
revert: (version: IVersionReference) => Promise<void>;
|
|
48
82
|
set: (layout: VersionedLayout) => Promise<void>;
|
|
83
|
+
setVersion: (versionedData: IVersionedData<VersionedLayoutDefinition>, mergeWithoutCache: boolean) => Promise<Layout>;
|
|
49
84
|
setDefault: () => Promise<void>;
|
|
50
85
|
};
|
|
51
86
|
editor: () => {
|
|
@@ -54,19 +89,281 @@ export declare const useVersionedLayoutEditorStore: () => {
|
|
|
54
89
|
toReadMode: () => void;
|
|
55
90
|
};
|
|
56
91
|
};
|
|
92
|
+
close: () => void;
|
|
57
93
|
init: (editorChromeStore: ReturnType<typeof useEditorChromeStore>, views: EditorViews) => void;
|
|
58
94
|
}>;
|
|
59
95
|
get: {
|
|
60
96
|
editorMode: () => LayoutCanvasEditorMode;
|
|
61
97
|
canvasMode: () => import("@omnia/fx-models").LayoutCanvasMode;
|
|
98
|
+
chromeStore: () => {
|
|
99
|
+
state: {
|
|
100
|
+
id: guid;
|
|
101
|
+
finishedLoading: boolean;
|
|
102
|
+
compactMode: boolean;
|
|
103
|
+
navigation: {
|
|
104
|
+
configuration: import("@omnia/fx-models").EditorChromeNavigationConfiguration;
|
|
105
|
+
enabled: boolean;
|
|
106
|
+
show: boolean;
|
|
107
|
+
};
|
|
108
|
+
drawers: {
|
|
109
|
+
right: {
|
|
110
|
+
panel: {
|
|
111
|
+
settings: EditorChromePanel;
|
|
112
|
+
show: boolean;
|
|
113
|
+
actions: import("@omnia/fx-models").ChromeActionItem[];
|
|
114
|
+
footerToolbar: {
|
|
115
|
+
actionsLeft: import("@omnia/fx-models").ChromeActionItem[];
|
|
116
|
+
actionsCenter: import("@omnia/fx-models").ChromeActionItem[];
|
|
117
|
+
actionsRight: import("@omnia/fx-models").ChromeActionItem[];
|
|
118
|
+
ExtendActionsRight: import("@omnia/fx-models").ChromeActionItem[];
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
canvas: {
|
|
122
|
+
enabled: boolean;
|
|
123
|
+
show: boolean;
|
|
124
|
+
customScroll: boolean;
|
|
125
|
+
header: {
|
|
126
|
+
enabled: boolean;
|
|
127
|
+
icon: import("@omnia/fx-models").IIcon;
|
|
128
|
+
title: string;
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
views: {
|
|
134
|
+
active: import("@omnia/fx/ux").EditorChromeViewRegistration;
|
|
135
|
+
registrations: import("@omnia/fx/ux").EditorChromeViewRegistration[];
|
|
136
|
+
history: {
|
|
137
|
+
items: {
|
|
138
|
+
id: guid;
|
|
139
|
+
timestamp: number;
|
|
140
|
+
}[];
|
|
141
|
+
currentIndex: number;
|
|
142
|
+
maxSize: number;
|
|
143
|
+
};
|
|
144
|
+
};
|
|
145
|
+
canvasSettings: {
|
|
146
|
+
scroll: {
|
|
147
|
+
store: {
|
|
148
|
+
state: {
|
|
149
|
+
elementRef: HTMLElement;
|
|
150
|
+
elementId: string;
|
|
151
|
+
disableScrolling: boolean;
|
|
152
|
+
height: string;
|
|
153
|
+
width: string;
|
|
154
|
+
scrollingDirection: import("@omnia/fx-models").OScrollTypesCombination;
|
|
155
|
+
coordinates: {
|
|
156
|
+
readonly left: number;
|
|
157
|
+
readonly right: number;
|
|
158
|
+
readonly bottom: number;
|
|
159
|
+
readonly top: number;
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
events: import("@omnia/fx/stores").StoreEvents<{
|
|
163
|
+
elementRef: HTMLElement;
|
|
164
|
+
elementId: string;
|
|
165
|
+
disableScrolling: boolean;
|
|
166
|
+
height: string;
|
|
167
|
+
width: string;
|
|
168
|
+
scrollingDirection: import("@omnia/fx-models").OScrollTypesCombination;
|
|
169
|
+
coordinates: {
|
|
170
|
+
readonly left: number;
|
|
171
|
+
readonly right: number;
|
|
172
|
+
readonly bottom: number;
|
|
173
|
+
readonly top: number;
|
|
174
|
+
};
|
|
175
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
|
176
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
|
177
|
+
scroll: () => void;
|
|
178
|
+
setDisableScrolling: (disable: boolean) => void;
|
|
179
|
+
calculateDynamicHeight: () => void;
|
|
180
|
+
setHeight: (height: string) => void;
|
|
181
|
+
setWidth: (width: string) => void;
|
|
182
|
+
setScrolling: (scrolling: import("@omnia/fx-models").OScrollTypesCombination) => void;
|
|
183
|
+
calculateScrollHeight: (referenceElementIds: string[]) => void;
|
|
184
|
+
isElementNameStillInView: (elementName: string) => boolean;
|
|
185
|
+
isElementIdStillInView: (elementId: string) => boolean;
|
|
186
|
+
scrollToStart: () => void;
|
|
187
|
+
scrollToElementId: (elementId: string, anchor?: import("@omnia/fx/ux").AnchorPosition, handler?: (target: HTMLElement, container: HTMLElement) => void, immediate?: boolean) => void;
|
|
188
|
+
scrollToElementName: (elementName: string, anchor?: import("@omnia/fx/ux").AnchorPosition) => void;
|
|
189
|
+
scrollToElement: (element: HTMLElement, anchor?: import("@omnia/fx/ux").AnchorPosition, handler?: (target: HTMLElement, container: HTMLElement) => void) => void;
|
|
190
|
+
scrollToSelector: (selector: string, anchor?: import("@omnia/fx/ux").AnchorPosition, handler?: (target: HTMLElement, container: HTMLElement) => void, immediate?: boolean) => void;
|
|
191
|
+
}>;
|
|
192
|
+
get: {
|
|
193
|
+
readonly coordinates: {
|
|
194
|
+
readonly left: number;
|
|
195
|
+
readonly right: number;
|
|
196
|
+
readonly bottom: number;
|
|
197
|
+
readonly top: number;
|
|
198
|
+
};
|
|
199
|
+
readonly scrollPosition: number;
|
|
200
|
+
};
|
|
201
|
+
} & {
|
|
202
|
+
dispose?: () => void;
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
zoom: {
|
|
206
|
+
enabled: boolean;
|
|
207
|
+
level: number;
|
|
208
|
+
};
|
|
209
|
+
displaySize: {
|
|
210
|
+
enabled: boolean;
|
|
211
|
+
value: "l" | "s" | "m";
|
|
212
|
+
store: {
|
|
213
|
+
state: {
|
|
214
|
+
width: string;
|
|
215
|
+
zoomLevel: number;
|
|
216
|
+
};
|
|
217
|
+
events: import("@omnia/fx/stores").StoreEvents<{
|
|
218
|
+
width: string;
|
|
219
|
+
zoomLevel: number;
|
|
220
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
|
221
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
|
222
|
+
setWidth: (width: string) => void;
|
|
223
|
+
resetWidth: () => void;
|
|
224
|
+
setBreakPoint: (breakPoint: import("@omnia/fx-models").DisplayBreakpointTypes) => void;
|
|
225
|
+
resetZoomLevel: () => void;
|
|
226
|
+
setZoomLevel: (zoomLevel: number) => void;
|
|
227
|
+
}>;
|
|
228
|
+
get: {};
|
|
229
|
+
} & {
|
|
230
|
+
dispose?: () => void;
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
};
|
|
234
|
+
notificationMessage: {
|
|
235
|
+
key: guid;
|
|
236
|
+
message: string;
|
|
237
|
+
show: boolean;
|
|
238
|
+
timeout: number;
|
|
239
|
+
customRenderer: string;
|
|
240
|
+
};
|
|
241
|
+
operations: {
|
|
242
|
+
id: guid;
|
|
243
|
+
loading: boolean;
|
|
244
|
+
}[];
|
|
245
|
+
};
|
|
246
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
|
247
|
+
canvas: () => {
|
|
248
|
+
syncDisplaySettings: () => void;
|
|
249
|
+
setDisplayBreakPoint: (value: import("@omnia/fx-models").DisplayBreakpointTypes) => void;
|
|
250
|
+
zoomIn: (step?: number) => void;
|
|
251
|
+
zoomOut: (step?: number) => void;
|
|
252
|
+
setZoom: (level: number) => void;
|
|
253
|
+
resetZoom: () => void;
|
|
254
|
+
};
|
|
255
|
+
editor: () => {
|
|
256
|
+
resetForNewActiveConfiguration: () => void;
|
|
257
|
+
};
|
|
258
|
+
views: () => {
|
|
259
|
+
register: (editorView: EditorChromeView | EditorChromeView[]) => void;
|
|
260
|
+
active: {
|
|
261
|
+
set: (view: EditorChromeView, addToHistory?: boolean) => void;
|
|
262
|
+
clear: () => void;
|
|
263
|
+
configuration: {
|
|
264
|
+
set: (configuration: EditorChromeConfiguration) => void;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
remove: (view: EditorChromeView) => void;
|
|
268
|
+
history: {
|
|
269
|
+
goBack: () => boolean;
|
|
270
|
+
goForward: () => boolean;
|
|
271
|
+
addToHistory: (view: EditorChromeView) => void;
|
|
272
|
+
clear: () => void;
|
|
273
|
+
};
|
|
274
|
+
};
|
|
275
|
+
showNotification: (message: import("@omnia/fx-models").NotificationMessage) => void;
|
|
276
|
+
operations: () => {
|
|
277
|
+
create: (showLoading?: boolean) => import("@omnia/fx-models").Future<null>;
|
|
278
|
+
setLoading: () => import("@omnia/fx-models").Future<null>;
|
|
279
|
+
register: (showLoading?: boolean) => guid;
|
|
280
|
+
unregister: (operationId: guid) => boolean;
|
|
281
|
+
clear: () => void;
|
|
282
|
+
waitForCompletion: () => Promise<void>;
|
|
283
|
+
};
|
|
284
|
+
navigation: () => {
|
|
285
|
+
register: (navigationItem: import("@omnia/fx-models").EditorChromeNavigationConfiguration) => void;
|
|
286
|
+
show: (value: boolean) => void;
|
|
287
|
+
toggle: () => void;
|
|
288
|
+
};
|
|
289
|
+
drawers: () => {
|
|
290
|
+
right: {
|
|
291
|
+
panel: {
|
|
292
|
+
show: (panel: EditorChromePanel) => void;
|
|
293
|
+
footerToolbar: {
|
|
294
|
+
add: {
|
|
295
|
+
action: (action: import("@omnia/fx-models").ChromeActionItem | import("@omnia/fx-models").ChromeActionItem[], position?: "left" | "center" | "right" | "extended-right") => void;
|
|
296
|
+
};
|
|
297
|
+
};
|
|
298
|
+
close: () => void;
|
|
299
|
+
};
|
|
300
|
+
canvas: {
|
|
301
|
+
configure: (header: {
|
|
302
|
+
icon?: import("@omnia/fx-models").IIcon;
|
|
303
|
+
title?: string;
|
|
304
|
+
enabled?: boolean;
|
|
305
|
+
}, customScroll?: boolean) => void;
|
|
306
|
+
toolbar: {
|
|
307
|
+
enable: (value: boolean) => void;
|
|
308
|
+
};
|
|
309
|
+
syncButtons: (currentId: guid) => void;
|
|
310
|
+
toggle: () => void;
|
|
311
|
+
show: (value: boolean) => void;
|
|
312
|
+
};
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
init: () => void;
|
|
316
|
+
dispose: () => void;
|
|
317
|
+
}>;
|
|
318
|
+
get: {
|
|
319
|
+
views: {
|
|
320
|
+
active: () => EditorChromeView;
|
|
321
|
+
all: () => EditorChromeView[];
|
|
322
|
+
byId: (id: guid) => EditorChromeView;
|
|
323
|
+
};
|
|
324
|
+
operations: {
|
|
325
|
+
all: () => guid[];
|
|
326
|
+
has: (operationId: guid) => boolean;
|
|
327
|
+
count: () => number;
|
|
328
|
+
};
|
|
329
|
+
history: () => {
|
|
330
|
+
view: EditorChromeView;
|
|
331
|
+
id: guid;
|
|
332
|
+
timestamp: number;
|
|
333
|
+
}[];
|
|
334
|
+
};
|
|
335
|
+
rules: {
|
|
336
|
+
showLoading: () => boolean;
|
|
337
|
+
history: {
|
|
338
|
+
canGoBack: () => boolean;
|
|
339
|
+
canGoForward: () => boolean;
|
|
340
|
+
};
|
|
341
|
+
views: {
|
|
342
|
+
hasActive: () => boolean;
|
|
343
|
+
};
|
|
344
|
+
};
|
|
345
|
+
utils: {
|
|
346
|
+
configuration: {
|
|
347
|
+
extend: (target: EditorChromeConfiguration, configuration: EditorChromeConfiguration) => void;
|
|
348
|
+
};
|
|
349
|
+
};
|
|
350
|
+
} & {
|
|
351
|
+
dispose?: () => void;
|
|
352
|
+
};
|
|
62
353
|
};
|
|
63
354
|
rules: {
|
|
355
|
+
versioning: {
|
|
356
|
+
hasReverted: () => boolean;
|
|
357
|
+
};
|
|
64
358
|
isCheckedOutToMe: () => boolean;
|
|
65
359
|
isCheckedOut: () => boolean;
|
|
360
|
+
isDefaultLayout: () => boolean;
|
|
66
361
|
actions: {
|
|
67
362
|
hide: {
|
|
363
|
+
takeControl: () => boolean;
|
|
68
364
|
whenNotCheckedOut: () => boolean;
|
|
69
365
|
whenCheckedOut: () => boolean;
|
|
366
|
+
whenNotDeletable: () => boolean;
|
|
70
367
|
};
|
|
71
368
|
};
|
|
72
369
|
};
|
|
@@ -151,8 +151,7 @@ import wcba03fc7e6921468289c0a0ffe0cf942e from './ux/versionedlayout/renderer/Ve
|
|
|
151
151
|
import wc16225d552da74599b01a49952f3d2280 from './ux/versionedlayout/renderer/v2/VersionedLayoutRenderer';
|
|
152
152
|
import wc73154f51a92944acbe248779a3fa7ef5 from './ux/versionedlayout/editor/VersionedLayoutEditor_old';
|
|
153
153
|
import wcf61a88097aa748dbb99b691f78da571a from './ux/versionedlayout/editor/VersionedLayoutEditor';
|
|
154
|
-
import wc32a6ca3074384eb4bcef68e9cd49a334 from './ux/versionedlayout/editor/panels/
|
|
155
|
-
import wcf024796066784669a26452b2da403b70 from './ux/versionedlayout/editor/panels/Panels';
|
|
154
|
+
import wc32a6ca3074384eb4bcef68e9cd49a334 from './ux/versionedlayout/editor/panels/VersionHistory';
|
|
156
155
|
import wcc88e2566b07a4680aef7f575f5c5641b from './ux/versionedlayout/controller/VersionedLayoutController';
|
|
157
156
|
import wc177046bfd171495bbce70d1cd9242fa1 from './ux/versionedlayout/controller/Chrome';
|
|
158
157
|
import wce96730610396417c992037cda2812626 from './ux/video/VideoPlayer';
|
|
@@ -2676,21 +2675,13 @@ declare global {
|
|
|
2676
2675
|
} : typeof wc6fa4d33c8cf34130bef70161155f1cff;
|
|
2677
2676
|
};
|
|
2678
2677
|
};
|
|
2679
|
-
"history":
|
|
2678
|
+
"history": typeof wc32a6ca3074384eb4bcef68e9cd49a334 extends {
|
|
2680
2679
|
propsDefinition: infer TProp;
|
|
2681
2680
|
} ? {
|
|
2682
2681
|
new (...args: any[]): {
|
|
2683
2682
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
|
2684
2683
|
};
|
|
2685
|
-
} : typeof wc32a6ca3074384eb4bcef68e9cd49a334
|
|
2686
|
-
"panel": typeof wcf024796066784669a26452b2da403b70 extends {
|
|
2687
|
-
propsDefinition: infer TProp;
|
|
2688
|
-
} ? {
|
|
2689
|
-
new (...args: any[]): {
|
|
2690
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
|
2691
|
-
};
|
|
2692
|
-
} : typeof wcf024796066784669a26452b2da403b70;
|
|
2693
|
-
};
|
|
2684
|
+
} : typeof wc32a6ca3074384eb4bcef68e9cd49a334;
|
|
2694
2685
|
};
|
|
2695
2686
|
"video": {
|
|
2696
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.529-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.529-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
|
-
};
|