@omnia/fx 8.0.288-dev → 8.0.290-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/manifests/omnia.vendor.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +9 -1
- package/internal-do-not-import-from-here/ux/aurora/admin/DesignAppJourney.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/DesignBPJourney.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/DesignJourney.d.ts +3 -15
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/ThemesJourney.d.ts +3 -15
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/blades/SelectionThemeBlade.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/models/Theme.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemePicker.d.ts +15 -501
- package/internal-do-not-import-from-here/ux/docs/Docs.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/docs/bestpractices/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/bestpractices/typescript/index.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/imports.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/documenticon/DocumentIcon.d.ts +7 -14
- package/internal-do-not-import-from-here/ux/flow/editor/commands/EditorCommands.d.ts +7 -10
- package/internal-do-not-import-from-here/ux/flow/editor/commands/helpers/EditorHelper.d.ts +1 -3
- package/internal-do-not-import-from-here/ux/flow/editor/commands/helpers/EditorNodeHelper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/commands/helpers/HtmlNodehelper.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/flow/editor/components/EditorSelector.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/models/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/flow/editor/parsers/HtmlParser.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/flow/editor/parsers/JSONParser.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/DefineEditorPlugin.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/bold/BoldPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/colorstyle/ColorButton.d.ts +450 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/colorstyle/ColorConverter.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/colorstyle/ColorStylePlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/elements/ElementConverter.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/elements/ElementPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/EditorEvents.d.ts +17 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/KeyboardEvents.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/handlers/ClipboardHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/italic/ItalicPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/link/LinkButton.d.ts +451 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/link/LinkConverter.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/link/LinkPlugin.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/sourceeditor/SourceEditorPlugin.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/spacing/SpacingButton.d.ts +450 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/spacing/SpacingPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/testdata/TestDataPlugin.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/text/TextConverter.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/text/TextPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/textalign/TextAlignPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/typography/TypographyButton.d.ts +450 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/typography/TypographyPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/velcron/VelcronPlugin.d.ts +2 -7
- package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorStore.d.ts +26 -19
- package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorToolbarStore.d.ts +195 -150
- package/internal-do-not-import-from-here/ux/flow/editor/stores/VelcronPluginStore.d.ts +53 -0
- package/internal-do-not-import-from-here/ux/flow/editor/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/link/LinkPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/stores/FlowRendererStore.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointBlockSettingsComponent.d.ts +2 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointSectionSettingsComponent.d.ts +2 -28
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointSettingsComponent.d.ts +6 -25
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/BreakPointManager.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/linkpicker/LinkPicker.d.ts +3 -5
- package/internal-do-not-import-from-here/ux/linkpicker/LinkRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/linkpicker/factory/LinkItemFactory.d.ts +2 -7
- package/internal-do-not-import-from-here/ux/markdown/plugins/CodeComponent.d.ts +34 -0
- package/internal-do-not-import-from-here/ux/markdown/plugins/CodeMarkdownPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/{flow/editor/models → models/flow}/EditorModels.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/models/flow/LinkNode.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/models/flow/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/models/linkpicker/ILinkPickerProvider.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/models/linkpicker/ILinkRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/models/linkpicker/LinkItemHandler.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/models/linkpicker/LinkPickerRegistration.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/models/linkpicker/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +11 -1
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts +1 -0
- 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/editor/templates/EditorTemplates.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Grid.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/LinkResolverEditor.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/ReferenceEditor.d.ts +6 -4
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/InternalVersionedLayoutRenderer.d.ts +13 -0
- package/internal-do-not-import-from-here/vue/vuecustomelement/Slots.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +58 -20
- package/package.json +4 -4
- package/internal-do-not-import-from-here/ux/markdown/plugins/CodeMarkdownRenderer.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/models/linkpicker/LinkItem.d.ts +0 -8
- /package/internal-do-not-import-from-here/ux/{flow/editor/models → models/flow}/EditorPlugin.d.ts +0 -0
@@ -1,504 +1,18 @@
|
|
1
|
+
import { DefineEmit, DefineSlot } from "@omnia/fx/ux";
|
1
2
|
import { Func, ITemplateRegistration, ThemeDefinitionV2 } from "@omnia/fx-models";
|
2
3
|
import { VNodeChild } from "vue";
|
3
|
-
type ThemePickerVariant = "default" | "table" | "panel";
|
4
|
-
declare const _default: {
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
variant: {
|
18
|
-
type: import("vue").PropType<ThemePickerVariant>;
|
19
|
-
};
|
20
|
-
"onUpdate:modelValue": {
|
21
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
22
|
-
};
|
23
|
-
"v-model": {
|
24
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
25
|
-
required: false;
|
26
|
-
};
|
27
|
-
modelValue: {
|
28
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
29
|
-
required: false;
|
30
|
-
};
|
31
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
32
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
33
|
-
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
34
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
35
|
-
required: false;
|
36
|
-
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
37
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
38
|
-
required: false;
|
39
|
-
}; } & {
|
40
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ThemeDefinitionV2, {
|
41
|
-
"onUpdate:modelValue": {
|
42
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
43
|
-
};
|
44
|
-
} & {
|
45
|
-
"v-model": {
|
46
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
47
|
-
required: false;
|
48
|
-
};
|
49
|
-
} & {
|
50
|
-
modelValue: {
|
51
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
52
|
-
required: false;
|
53
|
-
};
|
54
|
-
}>;
|
55
|
-
defaultValue(value?: ThemeDefinitionV2): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ThemeDefinitionV2, {
|
56
|
-
"onUpdate:modelValue": {
|
57
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
58
|
-
};
|
59
|
-
} & {
|
60
|
-
"v-model": {
|
61
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
62
|
-
required: false;
|
63
|
-
};
|
64
|
-
} & {
|
65
|
-
modelValue: {
|
66
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
67
|
-
required: false;
|
68
|
-
};
|
69
|
-
}, false>;
|
70
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ThemeDefinitionV2, {
|
71
|
-
"onUpdate:modelValue": {
|
72
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
73
|
-
};
|
74
|
-
} & {
|
75
|
-
"v-model": {
|
76
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
77
|
-
required: false;
|
78
|
-
};
|
79
|
-
} & {
|
80
|
-
modelValue: {
|
81
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
82
|
-
required: false;
|
83
|
-
};
|
84
|
-
}>;
|
85
|
-
};
|
86
|
-
class: {
|
87
|
-
type: import("vue").PropType<String | String[]>;
|
88
|
-
required: boolean;
|
89
|
-
};
|
90
|
-
colorSchemaType: {
|
91
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
92
|
-
required: boolean;
|
93
|
-
};
|
94
|
-
container: {
|
95
|
-
type: BooleanConstructor;
|
96
|
-
required: boolean;
|
97
|
-
};
|
98
|
-
colors: {
|
99
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
100
|
-
required: boolean;
|
101
|
-
};
|
102
|
-
}>> & {
|
103
|
-
"onItem:selected"?: (theme: ITemplateRegistration<ThemeDefinitionV2, import("@omnia/fx-models").TemplateRegistrationType>) => any;
|
104
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
105
|
-
"item:selected": (theme: ITemplateRegistration<ThemeDefinitionV2>) => true;
|
106
|
-
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
107
|
-
"v-slots": import("vue").Prop<{
|
108
|
-
default?: import("../../../DefineVueTypings").Slot;
|
109
|
-
} & {
|
110
|
-
activator?: Func<[VNodeChild]>;
|
111
|
-
}>;
|
112
|
-
filter: {
|
113
|
-
type: import("vue").PropType<"custom">;
|
114
|
-
};
|
115
|
-
toned: {
|
116
|
-
type: import("vue").PropType<string>;
|
117
|
-
};
|
118
|
-
variant: {
|
119
|
-
type: import("vue").PropType<ThemePickerVariant>;
|
120
|
-
};
|
121
|
-
"onUpdate:modelValue": {
|
122
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
123
|
-
};
|
124
|
-
"v-model": {
|
125
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
126
|
-
required: false;
|
127
|
-
};
|
128
|
-
modelValue: {
|
129
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
130
|
-
required: false;
|
131
|
-
};
|
132
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
133
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
134
|
-
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
135
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
136
|
-
required: false;
|
137
|
-
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
138
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
139
|
-
required: false;
|
140
|
-
}; } & {
|
141
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ThemeDefinitionV2, {
|
142
|
-
"onUpdate:modelValue": {
|
143
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
144
|
-
};
|
145
|
-
} & {
|
146
|
-
"v-model": {
|
147
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
148
|
-
required: false;
|
149
|
-
};
|
150
|
-
} & {
|
151
|
-
modelValue: {
|
152
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
153
|
-
required: false;
|
154
|
-
};
|
155
|
-
}>;
|
156
|
-
defaultValue(value?: ThemeDefinitionV2): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ThemeDefinitionV2, {
|
157
|
-
"onUpdate:modelValue": {
|
158
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
159
|
-
};
|
160
|
-
} & {
|
161
|
-
"v-model": {
|
162
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
163
|
-
required: false;
|
164
|
-
};
|
165
|
-
} & {
|
166
|
-
modelValue: {
|
167
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
168
|
-
required: false;
|
169
|
-
};
|
170
|
-
}, false>;
|
171
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ThemeDefinitionV2, {
|
172
|
-
"onUpdate:modelValue": {
|
173
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
174
|
-
};
|
175
|
-
} & {
|
176
|
-
"v-model": {
|
177
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
178
|
-
required: false;
|
179
|
-
};
|
180
|
-
} & {
|
181
|
-
modelValue: {
|
182
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
183
|
-
required: false;
|
184
|
-
};
|
185
|
-
}>;
|
186
|
-
};
|
187
|
-
class: {
|
188
|
-
type: import("vue").PropType<String | String[]>;
|
189
|
-
required: boolean;
|
190
|
-
};
|
191
|
-
colorSchemaType: {
|
192
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
193
|
-
required: boolean;
|
194
|
-
};
|
195
|
-
container: {
|
196
|
-
type: BooleanConstructor;
|
197
|
-
required: boolean;
|
198
|
-
};
|
199
|
-
colors: {
|
200
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
201
|
-
required: boolean;
|
202
|
-
};
|
203
|
-
}>> & {
|
204
|
-
"onItem:selected"?: (theme: ITemplateRegistration<ThemeDefinitionV2, import("@omnia/fx-models").TemplateRegistrationType>) => any;
|
205
|
-
}, {
|
206
|
-
container: boolean;
|
207
|
-
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
208
|
-
P: {};
|
209
|
-
B: {};
|
210
|
-
D: {};
|
211
|
-
C: {};
|
212
|
-
M: {};
|
213
|
-
Defaults: {};
|
214
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
215
|
-
"v-slots": import("vue").Prop<{
|
216
|
-
default?: import("../../../DefineVueTypings").Slot;
|
217
|
-
} & {
|
218
|
-
activator?: Func<[VNodeChild]>;
|
219
|
-
}>;
|
220
|
-
filter: {
|
221
|
-
type: import("vue").PropType<"custom">;
|
222
|
-
};
|
223
|
-
toned: {
|
224
|
-
type: import("vue").PropType<string>;
|
225
|
-
};
|
226
|
-
variant: {
|
227
|
-
type: import("vue").PropType<ThemePickerVariant>;
|
228
|
-
};
|
229
|
-
"onUpdate:modelValue": {
|
230
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
231
|
-
};
|
232
|
-
"v-model": {
|
233
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
234
|
-
required: false;
|
235
|
-
};
|
236
|
-
modelValue: {
|
237
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
238
|
-
required: false;
|
239
|
-
};
|
240
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
241
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
242
|
-
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
243
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
244
|
-
required: false;
|
245
|
-
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
246
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
247
|
-
required: false;
|
248
|
-
}; } & {
|
249
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ThemeDefinitionV2, {
|
250
|
-
"onUpdate:modelValue": {
|
251
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
252
|
-
};
|
253
|
-
} & {
|
254
|
-
"v-model": {
|
255
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
256
|
-
required: false;
|
257
|
-
};
|
258
|
-
} & {
|
259
|
-
modelValue: {
|
260
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
261
|
-
required: false;
|
262
|
-
};
|
263
|
-
}>;
|
264
|
-
defaultValue(value?: ThemeDefinitionV2): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ThemeDefinitionV2, {
|
265
|
-
"onUpdate:modelValue": {
|
266
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
267
|
-
};
|
268
|
-
} & {
|
269
|
-
"v-model": {
|
270
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
271
|
-
required: false;
|
272
|
-
};
|
273
|
-
} & {
|
274
|
-
modelValue: {
|
275
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
276
|
-
required: false;
|
277
|
-
};
|
278
|
-
}, false>;
|
279
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ThemeDefinitionV2, {
|
280
|
-
"onUpdate:modelValue": {
|
281
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
282
|
-
};
|
283
|
-
} & {
|
284
|
-
"v-model": {
|
285
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
286
|
-
required: false;
|
287
|
-
};
|
288
|
-
} & {
|
289
|
-
modelValue: {
|
290
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
291
|
-
required: false;
|
292
|
-
};
|
293
|
-
}>;
|
294
|
-
};
|
295
|
-
class: {
|
296
|
-
type: import("vue").PropType<String | String[]>;
|
297
|
-
required: boolean;
|
298
|
-
};
|
299
|
-
colorSchemaType: {
|
300
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
301
|
-
required: boolean;
|
302
|
-
};
|
303
|
-
container: {
|
304
|
-
type: BooleanConstructor;
|
305
|
-
required: boolean;
|
306
|
-
};
|
307
|
-
colors: {
|
308
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
309
|
-
required: boolean;
|
310
|
-
};
|
311
|
-
}>> & {
|
312
|
-
"onItem:selected"?: (theme: ITemplateRegistration<ThemeDefinitionV2, import("@omnia/fx-models").TemplateRegistrationType>) => any;
|
313
|
-
}, () => JSX.Element, {}, {}, {}, {
|
314
|
-
container: boolean;
|
315
|
-
}>;
|
316
|
-
__isFragment?: never;
|
317
|
-
__isTeleport?: never;
|
318
|
-
__isSuspense?: never;
|
319
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
320
|
-
"v-slots": import("vue").Prop<{
|
321
|
-
default?: import("../../../DefineVueTypings").Slot;
|
322
|
-
} & {
|
323
|
-
activator?: Func<[VNodeChild]>;
|
324
|
-
}>;
|
325
|
-
filter: {
|
326
|
-
type: import("vue").PropType<"custom">;
|
327
|
-
};
|
328
|
-
toned: {
|
329
|
-
type: import("vue").PropType<string>;
|
330
|
-
};
|
331
|
-
variant: {
|
332
|
-
type: import("vue").PropType<ThemePickerVariant>;
|
333
|
-
};
|
334
|
-
"onUpdate:modelValue": {
|
335
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
336
|
-
};
|
337
|
-
"v-model": {
|
338
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
339
|
-
required: false;
|
340
|
-
};
|
341
|
-
modelValue: {
|
342
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
343
|
-
required: false;
|
344
|
-
};
|
345
|
-
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
346
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
347
|
-
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
348
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
349
|
-
required: false;
|
350
|
-
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
351
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
352
|
-
required: false;
|
353
|
-
}; } & {
|
354
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, ThemeDefinitionV2, {
|
355
|
-
"onUpdate:modelValue": {
|
356
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
357
|
-
};
|
358
|
-
} & {
|
359
|
-
"v-model": {
|
360
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
361
|
-
required: false;
|
362
|
-
};
|
363
|
-
} & {
|
364
|
-
modelValue: {
|
365
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
366
|
-
required: false;
|
367
|
-
};
|
368
|
-
}>;
|
369
|
-
defaultValue(value?: ThemeDefinitionV2): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, ThemeDefinitionV2, {
|
370
|
-
"onUpdate:modelValue": {
|
371
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
372
|
-
};
|
373
|
-
} & {
|
374
|
-
"v-model": {
|
375
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
376
|
-
required: false;
|
377
|
-
};
|
378
|
-
} & {
|
379
|
-
modelValue: {
|
380
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
381
|
-
required: false;
|
382
|
-
};
|
383
|
-
}, false>;
|
384
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, ThemeDefinitionV2, {
|
385
|
-
"onUpdate:modelValue": {
|
386
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
387
|
-
};
|
388
|
-
} & {
|
389
|
-
"v-model": {
|
390
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
391
|
-
required: false;
|
392
|
-
};
|
393
|
-
} & {
|
394
|
-
modelValue: {
|
395
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
396
|
-
required: false;
|
397
|
-
};
|
398
|
-
}>;
|
399
|
-
};
|
400
|
-
class: {
|
401
|
-
type: import("vue").PropType<String | String[]>;
|
402
|
-
required: boolean;
|
403
|
-
};
|
404
|
-
colorSchemaType: {
|
405
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
406
|
-
required: boolean;
|
407
|
-
};
|
408
|
-
container: {
|
409
|
-
type: BooleanConstructor;
|
410
|
-
required: boolean;
|
411
|
-
};
|
412
|
-
colors: {
|
413
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
414
|
-
required: boolean;
|
415
|
-
};
|
416
|
-
}>> & {
|
417
|
-
"onItem:selected"?: (theme: ITemplateRegistration<ThemeDefinitionV2, import("@omnia/fx-models").TemplateRegistrationType>) => any;
|
418
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
419
|
-
"item:selected": (theme: ITemplateRegistration<ThemeDefinitionV2>) => true;
|
420
|
-
}, string, {
|
421
|
-
container: boolean;
|
422
|
-
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
423
|
-
propsDefinition: Omit<Readonly<{} & {
|
424
|
-
filter?: "custom";
|
425
|
-
name?: {
|
426
|
-
[x: `onUpdate:${string}`]: {
|
427
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
428
|
-
};
|
429
|
-
} & {
|
430
|
-
[x: `v-model:${string}`]: {
|
431
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
432
|
-
required: false;
|
433
|
-
};
|
434
|
-
} & {
|
435
|
-
[x: string]: {
|
436
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
437
|
-
required: false;
|
438
|
-
};
|
439
|
-
} & {
|
440
|
-
require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, ThemeDefinitionV2, {
|
441
|
-
"onUpdate:modelValue": {
|
442
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
443
|
-
};
|
444
|
-
} & {
|
445
|
-
"v-model": {
|
446
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
447
|
-
required: false;
|
448
|
-
};
|
449
|
-
} & {
|
450
|
-
modelValue: {
|
451
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
452
|
-
required: false;
|
453
|
-
};
|
454
|
-
}>;
|
455
|
-
defaultValue(value?: ThemeDefinitionV2): import("../../../DefineVueTypings").DefinePropModelDefaultValue<string, ThemeDefinitionV2, {
|
456
|
-
"onUpdate:modelValue": {
|
457
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
458
|
-
};
|
459
|
-
} & {
|
460
|
-
"v-model": {
|
461
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
462
|
-
required: false;
|
463
|
-
};
|
464
|
-
} & {
|
465
|
-
modelValue: {
|
466
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
467
|
-
required: false;
|
468
|
-
};
|
469
|
-
}, false>;
|
470
|
-
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, ThemeDefinitionV2, {
|
471
|
-
"onUpdate:modelValue": {
|
472
|
-
type: import("vue").PropType<(value: ThemeDefinitionV2) => any | void>;
|
473
|
-
};
|
474
|
-
} & {
|
475
|
-
"v-model": {
|
476
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
477
|
-
required: false;
|
478
|
-
};
|
479
|
-
} & {
|
480
|
-
modelValue: {
|
481
|
-
type: import("vue").PropType<ThemeDefinitionV2>;
|
482
|
-
required: false;
|
483
|
-
};
|
484
|
-
}>;
|
485
|
-
};
|
486
|
-
container?: boolean;
|
487
|
-
class?: String | String[];
|
488
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
489
|
-
toned?: string;
|
490
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
491
|
-
modelValue?: ThemeDefinitionV2;
|
492
|
-
"v-model"?: ThemeDefinitionV2;
|
493
|
-
"onUpdate:modelValue"?: (value: ThemeDefinitionV2) => any | void;
|
494
|
-
"v-slots"?: {
|
495
|
-
default?: import("../../../DefineVueTypings").Slot;
|
496
|
-
} & {
|
497
|
-
activator?: Func<[VNodeChild]>;
|
498
|
-
};
|
499
|
-
variant?: ThemePickerVariant;
|
500
|
-
}>, "onItem:selected"> & {
|
501
|
-
"onItem:selected"?: (theme: ITemplateRegistration<ThemeDefinitionV2, import("@omnia/fx-models").TemplateRegistrationType>) => any;
|
502
|
-
};
|
503
|
-
};
|
4
|
+
type ThemePickerVariant = "default" | "table-selection" | "panel" | "table-selection-edit" | "table";
|
5
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
6
|
+
variant?: ThemePickerVariant;
|
7
|
+
} & {
|
8
|
+
toned?: string;
|
9
|
+
} & {
|
10
|
+
filter?: "custom";
|
11
|
+
} & {
|
12
|
+
"emit:update:modelValue": (value: ThemeDefinitionV2) => void;
|
13
|
+
} & {
|
14
|
+
"v-model"?: ThemeDefinitionV2;
|
15
|
+
} & {
|
16
|
+
modelValue?: ThemeDefinitionV2;
|
17
|
+
} & DefineSlot<"activator", Func<[VNodeChild]>> & DefineEmit<"item:selected", (theme: ITemplateRegistration<ThemeDefinitionV2>) => true>>) => any;
|
504
18
|
export default _default;
|
@@ -35,6 +35,7 @@ export declare const builtInDocumeantionAreas: {
|
|
35
35
|
oxide: DocumentationArea;
|
36
36
|
omfx: DocumentationArea;
|
37
37
|
velcron: DocumentationArea;
|
38
|
+
bestPractice: DocumentationArea;
|
38
39
|
};
|
39
40
|
export declare const builtInDocumentationCategories: {
|
40
41
|
containment: DocumentationCategory;
|
@@ -61,6 +62,9 @@ export declare const frameworkDocumentationCategories: {
|
|
61
62
|
use: DocumentationCategory;
|
62
63
|
theming: DocumentationCategory;
|
63
64
|
};
|
65
|
+
export declare const bestPracticesCategories: {
|
66
|
+
typescript: DocumentationCategory;
|
67
|
+
};
|
64
68
|
export interface ComponentSpecRegistration {
|
65
69
|
spec: DocumentationSpec;
|
66
70
|
category: DocumentationCategory;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./typescript/index.md";
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1,18 +1,11 @@
|
|
1
|
-
import { VueComponentBase } from "@omnia/fx/ux";
|
2
|
-
import { IWebComponentInstance } from "../..";
|
3
|
-
import { IDocumentIcon } from "./IDocumentIcon";
|
4
1
|
import { ImageSources, IconSizes } from "../../models";
|
5
|
-
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
6
3
|
color?: string;
|
4
|
+
} & {
|
7
5
|
size?: IconSizes;
|
6
|
+
} & {
|
8
7
|
source?: ImageSources;
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
mounted(): void;
|
14
|
-
extensionChange(): void;
|
15
|
-
private getFontAwesomeFileIcon;
|
16
|
-
private getBase64FileIcon;
|
17
|
-
render(): JSX.Element;
|
18
|
-
}
|
8
|
+
} & {
|
9
|
+
extension?: string;
|
10
|
+
}>) => any;
|
11
|
+
export default _default;
|
@@ -1,9 +1,7 @@
|
|
1
|
-
import {
|
2
|
-
import { FlowContent } from "@omnia/fx/ux";
|
1
|
+
import { FlowContent, FlowEditorPlugin, FlowEditorPluginContext, NodeSelection } from "@omnia/fx/ux";
|
3
2
|
export declare function useEditorCommands(state: {
|
4
3
|
editor: HTMLDivElement;
|
5
4
|
selectedRange: Range;
|
6
|
-
maxNodeId: number;
|
7
5
|
editorContent: FlowContent;
|
8
6
|
nodeSelection: NodeSelection;
|
9
7
|
plugins: Array<FlowEditorPlugin>;
|
@@ -22,7 +20,7 @@ export declare function useEditorCommands(state: {
|
|
22
20
|
};
|
23
21
|
selection: {
|
24
22
|
get: {
|
25
|
-
byPluginType: (pluginType: string) => import("
|
23
|
+
byPluginType: (pluginType: string) => import("@omnia/fx/ux").FlowNodeReference[];
|
26
24
|
};
|
27
25
|
ensure: {
|
28
26
|
storedRange: () => void;
|
@@ -37,6 +35,7 @@ export declare function useEditorCommands(state: {
|
|
37
35
|
};
|
38
36
|
formatting: {
|
39
37
|
add: (element: HTMLElement) => void;
|
38
|
+
addWithTxt: (element: HTMLElement, text?: string) => void;
|
40
39
|
wrapLine: (element: HTMLElement) => void;
|
41
40
|
remove: (dataType: string | HTMLElement) => void;
|
42
41
|
has: (dataType: string | HTMLElement) => boolean;
|
@@ -58,9 +57,7 @@ export declare function useEditorCommands(state: {
|
|
58
57
|
helpers: {
|
59
58
|
editor: {
|
60
59
|
ensure: {
|
61
|
-
uniqueIds: (element: HTMLElement
|
62
|
-
maxNodeId: number;
|
63
|
-
}) => HTMLElement;
|
60
|
+
uniqueIds: (element: HTMLElement) => HTMLElement;
|
64
61
|
selectionIsInEditor: (range: Range) => void;
|
65
62
|
};
|
66
63
|
cursor: {
|
@@ -73,7 +70,7 @@ export declare function useEditorCommands(state: {
|
|
73
70
|
};
|
74
71
|
editorNode: {
|
75
72
|
get: {
|
76
|
-
nodesInArrayByPluginType: (nodes: Array<import("
|
73
|
+
nodesInArrayByPluginType: (nodes: Array<import("@omnia/fx/ux").FlowNodeReference>, dataType: string) => Array<import("@omnia/fx/ux").FlowNodeReference>;
|
77
74
|
};
|
78
75
|
};
|
79
76
|
htmlNode: {
|
@@ -88,10 +85,10 @@ export declare function useEditorCommands(state: {
|
|
88
85
|
topContainerForContent: (element: HTMLElement) => HTMLElement;
|
89
86
|
topContainerForComponent: (element: HTMLElement) => HTMLElement;
|
90
87
|
nodeSelectionForRange: (range: Range) => NodeSelection;
|
91
|
-
htmlElementInStructureById: (id:
|
88
|
+
htmlElementInStructureById: (id: string, currentElement: HTMLElement) => HTMLElement;
|
92
89
|
};
|
93
90
|
remove: {
|
94
|
-
nodes: (nodes2Remove: Array<import("
|
91
|
+
nodes: (nodes2Remove: Array<import("@omnia/fx/ux").FlowNodeReference>, editor: HTMLElement) => void;
|
95
92
|
};
|
96
93
|
strip: {
|
97
94
|
after: (element: HTMLElement, splitter: string) => void;
|
package/internal-do-not-import-from-here/ux/flow/editor/commands/helpers/HtmlNodehelper.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { FlowNodeReference, NodeSelection } from "
|
1
|
+
import { FlowNodeReference, NodeSelection } from "@omnia/fx/ux";
|
2
2
|
export declare function useHtmlNodeHelper(): {
|
3
3
|
copy: {
|
4
4
|
children: (from: HTMLElement, to: HTMLElement) => void;
|
@@ -11,7 +11,7 @@ export declare function useHtmlNodeHelper(): {
|
|
11
11
|
topContainerForContent: (element: HTMLElement) => HTMLElement;
|
12
12
|
topContainerForComponent: (element: HTMLElement) => HTMLElement;
|
13
13
|
nodeSelectionForRange: (range: Range) => NodeSelection;
|
14
|
-
htmlElementInStructureById: (id:
|
14
|
+
htmlElementInStructureById: (id: string, currentElement: HTMLElement) => HTMLElement;
|
15
15
|
};
|
16
16
|
remove: {
|
17
17
|
nodes: (nodes2Remove: Array<FlowNodeReference>, editor: HTMLElement) => void;
|