@omnia/fx 8.0.178-dev → 8.0.179-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/ux/ComponentTypings.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStyleEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/iconstylepicker/IconStylePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/typography/TypographyPicker.d.ts +12 -6
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +124 -120
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +124 -120
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +84 -265
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSection.d.ts +52 -35
- package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +50 -15
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/docs/SampleTestBenchComponent.d.ts +51 -0
- package/internal-do-not-import-from-here/ux/jsonexportimport/ExportImport.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ColorButton.d.ts +61 -0
- package/internal-do-not-import-from-here/ux/markdown/plugins/{ThemeStylingPlugin.d.ts → themestyling/ThemeStylingPlugin.d.ts} +2 -1
- package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/TypographyButton.d.ts +61 -0
- package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/column/ColumnGrid.d.ts +64 -64
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/speeddial/SpeedDial.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +20 -9
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronStyles.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ContextMenu.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronEditorDescriptors.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SelectEditor.d.ts +406 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SpacingEditor.d.ts +91 -91
- package/package.json +3 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EditorLocation, Spacing, VelcronSpacing, VelcronSpacingEditorSettings } from "@omnia/fx-models";
|
|
1
|
+
import { EditorLocation, Spacing, VelcronPosition, VelcronSpacing, VelcronSpacingEditorSettings } from "@omnia/fx-models";
|
|
2
2
|
declare const _default: {
|
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
4
4
|
location: {
|
|
@@ -12,67 +12,67 @@ declare const _default: {
|
|
|
12
12
|
type: import("vue").PropType<VelcronSpacingEditorSettings>;
|
|
13
13
|
};
|
|
14
14
|
"onUpdate:modelValue": {
|
|
15
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
15
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
16
16
|
};
|
|
17
17
|
"v-model": {
|
|
18
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
18
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
19
19
|
required: false;
|
|
20
20
|
};
|
|
21
21
|
modelValue: {
|
|
22
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
22
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
23
23
|
required: false;
|
|
24
24
|
};
|
|
25
25
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
|
26
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
26
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
27
27
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
|
28
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
28
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
29
29
|
required: false;
|
|
30
30
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
|
31
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
31
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
32
32
|
required: false;
|
|
33
33
|
}; } & {
|
|
34
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, VelcronSpacing, {
|
|
34
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, VelcronSpacing | VelcronPosition, {
|
|
35
35
|
"onUpdate:modelValue": {
|
|
36
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
36
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
37
37
|
};
|
|
38
38
|
} & {
|
|
39
39
|
"v-model": {
|
|
40
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
40
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
41
41
|
required: false;
|
|
42
42
|
};
|
|
43
43
|
} & {
|
|
44
44
|
modelValue: {
|
|
45
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
45
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
46
46
|
required: false;
|
|
47
47
|
};
|
|
48
48
|
}>;
|
|
49
|
-
defaultValue(value?: VelcronSpacing): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, VelcronSpacing, {
|
|
49
|
+
defaultValue(value?: VelcronSpacing | VelcronPosition): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, VelcronSpacing | VelcronPosition, {
|
|
50
50
|
"onUpdate:modelValue": {
|
|
51
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
51
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
52
52
|
};
|
|
53
53
|
} & {
|
|
54
54
|
"v-model": {
|
|
55
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
55
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
56
56
|
required: false;
|
|
57
57
|
};
|
|
58
58
|
} & {
|
|
59
59
|
modelValue: {
|
|
60
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
60
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
61
61
|
required: false;
|
|
62
62
|
};
|
|
63
63
|
}, false>;
|
|
64
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, VelcronSpacing, {
|
|
64
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, VelcronSpacing | VelcronPosition, {
|
|
65
65
|
"onUpdate:modelValue": {
|
|
66
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
66
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
67
67
|
};
|
|
68
68
|
} & {
|
|
69
69
|
"v-model": {
|
|
70
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
70
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
71
71
|
required: false;
|
|
72
72
|
};
|
|
73
73
|
} & {
|
|
74
74
|
modelValue: {
|
|
75
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
75
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
76
76
|
required: false;
|
|
77
77
|
};
|
|
78
78
|
}>;
|
|
@@ -93,67 +93,67 @@ declare const _default: {
|
|
|
93
93
|
type: import("vue").PropType<VelcronSpacingEditorSettings>;
|
|
94
94
|
};
|
|
95
95
|
"onUpdate:modelValue": {
|
|
96
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
96
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
97
97
|
};
|
|
98
98
|
"v-model": {
|
|
99
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
99
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
100
100
|
required: false;
|
|
101
101
|
};
|
|
102
102
|
modelValue: {
|
|
103
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
103
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
104
104
|
required: false;
|
|
105
105
|
};
|
|
106
106
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
|
107
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
107
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
108
108
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
|
109
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
109
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
110
110
|
required: false;
|
|
111
111
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
|
112
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
112
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
113
113
|
required: false;
|
|
114
114
|
}; } & {
|
|
115
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, VelcronSpacing, {
|
|
115
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, VelcronSpacing | VelcronPosition, {
|
|
116
116
|
"onUpdate:modelValue": {
|
|
117
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
117
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
118
118
|
};
|
|
119
119
|
} & {
|
|
120
120
|
"v-model": {
|
|
121
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
121
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
122
122
|
required: false;
|
|
123
123
|
};
|
|
124
124
|
} & {
|
|
125
125
|
modelValue: {
|
|
126
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
126
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
127
127
|
required: false;
|
|
128
128
|
};
|
|
129
129
|
}>;
|
|
130
|
-
defaultValue(value?: VelcronSpacing): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, VelcronSpacing, {
|
|
130
|
+
defaultValue(value?: VelcronSpacing | VelcronPosition): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, VelcronSpacing | VelcronPosition, {
|
|
131
131
|
"onUpdate:modelValue": {
|
|
132
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
132
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
133
133
|
};
|
|
134
134
|
} & {
|
|
135
135
|
"v-model": {
|
|
136
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
136
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
137
137
|
required: false;
|
|
138
138
|
};
|
|
139
139
|
} & {
|
|
140
140
|
modelValue: {
|
|
141
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
141
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
142
142
|
required: false;
|
|
143
143
|
};
|
|
144
144
|
}, false>;
|
|
145
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, VelcronSpacing, {
|
|
145
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, VelcronSpacing | VelcronPosition, {
|
|
146
146
|
"onUpdate:modelValue": {
|
|
147
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
147
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
148
148
|
};
|
|
149
149
|
} & {
|
|
150
150
|
"v-model": {
|
|
151
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
151
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
152
152
|
required: false;
|
|
153
153
|
};
|
|
154
154
|
} & {
|
|
155
155
|
modelValue: {
|
|
156
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
156
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
157
157
|
required: false;
|
|
158
158
|
};
|
|
159
159
|
}>;
|
|
@@ -179,67 +179,67 @@ declare const _default: {
|
|
|
179
179
|
type: import("vue").PropType<VelcronSpacingEditorSettings>;
|
|
180
180
|
};
|
|
181
181
|
"onUpdate:modelValue": {
|
|
182
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
182
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
183
183
|
};
|
|
184
184
|
"v-model": {
|
|
185
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
185
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
186
186
|
required: false;
|
|
187
187
|
};
|
|
188
188
|
modelValue: {
|
|
189
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
189
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
190
190
|
required: false;
|
|
191
191
|
};
|
|
192
192
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
|
193
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
193
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
194
194
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
|
195
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
195
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
196
196
|
required: false;
|
|
197
197
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
|
198
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
198
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
199
199
|
required: false;
|
|
200
200
|
}; } & {
|
|
201
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, VelcronSpacing, {
|
|
201
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, VelcronSpacing | VelcronPosition, {
|
|
202
202
|
"onUpdate:modelValue": {
|
|
203
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
203
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
204
204
|
};
|
|
205
205
|
} & {
|
|
206
206
|
"v-model": {
|
|
207
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
207
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
208
208
|
required: false;
|
|
209
209
|
};
|
|
210
210
|
} & {
|
|
211
211
|
modelValue: {
|
|
212
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
212
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
213
213
|
required: false;
|
|
214
214
|
};
|
|
215
215
|
}>;
|
|
216
|
-
defaultValue(value?: VelcronSpacing): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, VelcronSpacing, {
|
|
216
|
+
defaultValue(value?: VelcronSpacing | VelcronPosition): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, VelcronSpacing | VelcronPosition, {
|
|
217
217
|
"onUpdate:modelValue": {
|
|
218
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
218
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
219
219
|
};
|
|
220
220
|
} & {
|
|
221
221
|
"v-model": {
|
|
222
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
222
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
223
223
|
required: false;
|
|
224
224
|
};
|
|
225
225
|
} & {
|
|
226
226
|
modelValue: {
|
|
227
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
227
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
228
228
|
required: false;
|
|
229
229
|
};
|
|
230
230
|
}, false>;
|
|
231
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, VelcronSpacing, {
|
|
231
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, VelcronSpacing | VelcronPosition, {
|
|
232
232
|
"onUpdate:modelValue": {
|
|
233
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
233
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
234
234
|
};
|
|
235
235
|
} & {
|
|
236
236
|
"v-model": {
|
|
237
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
237
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
238
238
|
required: false;
|
|
239
239
|
};
|
|
240
240
|
} & {
|
|
241
241
|
modelValue: {
|
|
242
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
242
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
243
243
|
required: false;
|
|
244
244
|
};
|
|
245
245
|
}>;
|
|
@@ -262,67 +262,67 @@ declare const _default: {
|
|
|
262
262
|
type: import("vue").PropType<VelcronSpacingEditorSettings>;
|
|
263
263
|
};
|
|
264
264
|
"onUpdate:modelValue": {
|
|
265
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
265
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
266
266
|
};
|
|
267
267
|
"v-model": {
|
|
268
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
268
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
269
269
|
required: false;
|
|
270
270
|
};
|
|
271
271
|
modelValue: {
|
|
272
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
272
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
273
273
|
required: false;
|
|
274
274
|
};
|
|
275
275
|
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
|
276
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
276
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
277
277
|
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
|
278
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
278
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
279
279
|
required: false;
|
|
280
280
|
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
|
281
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
281
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
282
282
|
required: false;
|
|
283
283
|
}; } & {
|
|
284
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, VelcronSpacing, {
|
|
284
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, VelcronSpacing | VelcronPosition, {
|
|
285
285
|
"onUpdate:modelValue": {
|
|
286
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
286
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
287
287
|
};
|
|
288
288
|
} & {
|
|
289
289
|
"v-model": {
|
|
290
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
290
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
291
291
|
required: false;
|
|
292
292
|
};
|
|
293
293
|
} & {
|
|
294
294
|
modelValue: {
|
|
295
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
295
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
296
296
|
required: false;
|
|
297
297
|
};
|
|
298
298
|
}>;
|
|
299
|
-
defaultValue(value?: VelcronSpacing): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, VelcronSpacing, {
|
|
299
|
+
defaultValue(value?: VelcronSpacing | VelcronPosition): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, VelcronSpacing | VelcronPosition, {
|
|
300
300
|
"onUpdate:modelValue": {
|
|
301
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
301
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
302
302
|
};
|
|
303
303
|
} & {
|
|
304
304
|
"v-model": {
|
|
305
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
305
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
306
306
|
required: false;
|
|
307
307
|
};
|
|
308
308
|
} & {
|
|
309
309
|
modelValue: {
|
|
310
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
310
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
311
311
|
required: false;
|
|
312
312
|
};
|
|
313
313
|
}, false>;
|
|
314
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, VelcronSpacing, {
|
|
314
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, VelcronSpacing | VelcronPosition, {
|
|
315
315
|
"onUpdate:modelValue": {
|
|
316
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
316
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
317
317
|
};
|
|
318
318
|
} & {
|
|
319
319
|
"v-model": {
|
|
320
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
320
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
321
321
|
required: false;
|
|
322
322
|
};
|
|
323
323
|
} & {
|
|
324
324
|
modelValue: {
|
|
325
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
325
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
326
326
|
required: false;
|
|
327
327
|
};
|
|
328
328
|
}>;
|
|
@@ -335,69 +335,69 @@ declare const _default: {
|
|
|
335
335
|
propsDefinition: Omit<Readonly<{} & {
|
|
336
336
|
name?: {
|
|
337
337
|
[x: `onUpdate:${string}`]: {
|
|
338
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
338
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
339
339
|
};
|
|
340
340
|
} & {
|
|
341
341
|
[x: `v-model:${string}`]: {
|
|
342
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
342
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
343
343
|
required: false;
|
|
344
344
|
};
|
|
345
345
|
} & {
|
|
346
346
|
[x: string]: {
|
|
347
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
347
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
348
348
|
required: false;
|
|
349
349
|
};
|
|
350
350
|
} & {
|
|
351
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, VelcronSpacing, {
|
|
351
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, VelcronSpacing | VelcronPosition, {
|
|
352
352
|
"onUpdate:modelValue": {
|
|
353
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
353
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
354
354
|
};
|
|
355
355
|
} & {
|
|
356
356
|
"v-model": {
|
|
357
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
357
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
358
358
|
required: false;
|
|
359
359
|
};
|
|
360
360
|
} & {
|
|
361
361
|
modelValue: {
|
|
362
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
362
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
363
363
|
required: false;
|
|
364
364
|
};
|
|
365
365
|
}>;
|
|
366
|
-
defaultValue(value?: VelcronSpacing): import("../../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronSpacing, {
|
|
366
|
+
defaultValue(value?: VelcronSpacing | VelcronPosition): import("../../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronSpacing | VelcronPosition, {
|
|
367
367
|
"onUpdate:modelValue": {
|
|
368
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
368
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
369
369
|
};
|
|
370
370
|
} & {
|
|
371
371
|
"v-model": {
|
|
372
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
372
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
373
373
|
required: false;
|
|
374
374
|
};
|
|
375
375
|
} & {
|
|
376
376
|
modelValue: {
|
|
377
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
377
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
378
378
|
required: false;
|
|
379
379
|
};
|
|
380
380
|
}, false>;
|
|
381
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, VelcronSpacing, {
|
|
381
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, VelcronSpacing | VelcronPosition, {
|
|
382
382
|
"onUpdate:modelValue": {
|
|
383
|
-
type: import("vue").PropType<(value: VelcronSpacing) => any>;
|
|
383
|
+
type: import("vue").PropType<(value: VelcronSpacing | VelcronPosition) => any>;
|
|
384
384
|
};
|
|
385
385
|
} & {
|
|
386
386
|
"v-model": {
|
|
387
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
387
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
388
388
|
required: false;
|
|
389
389
|
};
|
|
390
390
|
} & {
|
|
391
391
|
modelValue: {
|
|
392
|
-
type: import("vue").PropType<VelcronSpacing>;
|
|
392
|
+
type: import("vue").PropType<VelcronSpacing | VelcronPosition>;
|
|
393
393
|
required: false;
|
|
394
394
|
};
|
|
395
395
|
}>;
|
|
396
396
|
};
|
|
397
397
|
settings?: VelcronSpacingEditorSettings;
|
|
398
|
-
"v-model"?: VelcronSpacing;
|
|
399
|
-
"onUpdate:modelValue"?: (value: VelcronSpacing) => any;
|
|
400
|
-
modelValue?: VelcronSpacing;
|
|
398
|
+
"v-model"?: VelcronSpacing | VelcronPosition;
|
|
399
|
+
"onUpdate:modelValue"?: (value: VelcronSpacing | VelcronPosition) => any;
|
|
400
|
+
modelValue?: VelcronSpacing | VelcronPosition;
|
|
401
401
|
location?: EditorLocation;
|
|
402
402
|
}>, "onUpdate:modelValue"> & {
|
|
403
403
|
"onUpdate:modelValue"?: (settings: Spacing) => any;
|
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.179-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,12 +20,12 @@
|
|
|
20
20
|
],
|
|
21
21
|
"author": "Precio Fishbone",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@omnia/fx-models": "8.0.
|
|
23
|
+
"@omnia/fx-models": "8.0.179-dev",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.11.7",
|
|
27
27
|
"splitpanes": "3.1.5",
|
|
28
|
-
"vuetify": "3.5.
|
|
28
|
+
"vuetify": "3.5.17",
|
|
29
29
|
"vue": "3.4.23",
|
|
30
30
|
"tslib": "2.6.2",
|
|
31
31
|
"typescript": "5.3.3",
|