@omnia/fx 8.0.172-dev → 8.0.174-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.libs.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/directives/Directives.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/directives/motion/Motion.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/models/MotionDirective.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.d.ts +13 -492
- package/internal-do-not-import-from-here/ux/use/UseInterSectionObserver.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +50 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/DefinitionToolbar.d.ts +8 -3
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/MarkdownEditor.d.ts +22 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SliderEditor.d.ts +22 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/SwitchEditor.d.ts +22 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/TextEditor.d.ts +22 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/TypographyEditor.d.ts +22 -1
- package/package.json +2 -2
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['0fe5c5f2-8d89-485b-afd4-36fe3ff5943a']","content":{"./node_modules/@formkit/auto-animate/vue/index.mjs":{"id":"./node_modules/@formkit/auto-animate/vue/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@material-design-icons/font/index.css":{"id":"./node_modules/@material-design-icons/font/index.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@material/material-color-utilities/dist/index.js":{"id":"./node_modules/@material/material-color-utilities/dist/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}}}}
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['0fe5c5f2-8d89-485b-afd4-36fe3ff5943a']","content":{"./node_modules/@formkit/auto-animate/vue/index.mjs":{"id":"./node_modules/@formkit/auto-animate/vue/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@material-design-icons/font/index.css":{"id":"./node_modules/@material-design-icons/font/index.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@material/material-color-utilities/dist/index.js":{"id":"./node_modules/@material/material-color-utilities/dist/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/animate.css/animate.min.css":{"id":"./node_modules/animate.css/animate.min.css","buildMeta":{"async":false,"exportsType":"dynamic"}}}}
|
@@ -2,9 +2,13 @@ import { DirectiveDefinition } from "@omnia/fx-models";
|
|
2
2
|
import { DirectiveBinding, VNode } from "vue";
|
3
3
|
import { SubscriptionHandler } from "@omnia/fx";
|
4
4
|
type SetupDirectiveContext<T> = {
|
5
|
+
onCreated(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode) => void): void;
|
6
|
+
onbeforeMount(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode) => void): void;
|
5
7
|
onMounted(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode) => void): void;
|
8
|
+
onBeforeUpdate(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void): void;
|
9
|
+
onUpdated(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void): void;
|
10
|
+
onBeforeUnmount(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void): void;
|
6
11
|
onUnmounted(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode) => void): void;
|
7
|
-
onUpdated(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void): any;
|
8
12
|
subscriptions: SubscriptionHandler;
|
9
13
|
};
|
10
14
|
export declare function defineVueDirective<T>(setup: (ctx: SetupDirectiveContext<T>) => void): () => ReturnType<DirectiveDefinition<T>>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -53,6 +53,7 @@ export * from "./DataTable";
|
|
53
53
|
export * from "./Directives";
|
54
54
|
export * from "./MultiTextInputItem";
|
55
55
|
export * from "./TypographyEditorModel";
|
56
|
+
export * from "./MotionDirective";
|
56
57
|
export { ValidationOnDefinitions, type IValidationRuleBuilder, type IValidator, type ValidationRule, type ValidationResult } from "./Validation";
|
57
58
|
export type { ValidationOnTypes } from "./Validation";
|
58
59
|
export * from "./SpecialUserConfiguration";
|
@@ -1,273 +1,34 @@
|
|
1
|
-
import { DefineEmit, DefineProp, DefineSlot, DefineVModel, ExtractProps, ValidationRule } from "@omnia/fx/ux";
|
1
|
+
import { DefineEmit, DefineProp, DefinePropClass, DefinePropTheming, DefineSlot, DefineVModel, ExtractProps, ValidationRule } from "@omnia/fx/ux";
|
2
2
|
import { ColorValue } from "@omnia/fx/models";
|
3
3
|
import { VNodeChild } from "vue";
|
4
4
|
export declare const OTextBoxVariantTypeDefinitions: readonly ["default", "search", "find-slim", "link", "media"];
|
5
5
|
export type OTextBoxVariantTypes = typeof OTextBoxVariantTypeDefinitions[number];
|
6
6
|
export declare const InputTypeDefinitions: readonly ["text", "password", "number"];
|
7
7
|
export type InputTypes = typeof InputTypeDefinitions[number];
|
8
|
-
type
|
9
|
-
type
|
8
|
+
type BaseProps = DefineProp<"variant", OTextBoxVariantTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"color", ColorValue, false, null, "Define the custom color for text field."> & DefineProp<"readonly", boolean, false, null, "Makes the text field readonly."> & DefineProp<"persistentHint", boolean, false, null, "Forces hint to always be visible."> & DefineProp<"hint", string, false, null, "Sets the hint of the text field. Hint will be displayed below the input when focused."> & DefineProp<"errorMessages", string | string[], false, null, "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation."> & DefineProp<"rules", ValidationRule[], false, null, "Accepts a mixed array of types function. Functions pass an input value as an argument and must return either true / false or a string containing an error message."> & DefineProp<"toned", boolean, false, null, ""> & DefineProp<"label", string, false, null, "The label of the input field."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the input."> & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared.">;
|
9
|
+
type NumberInputProps = DefineVModel<"", number, false, null, "The v-model value of the component."> & DefineProp<"max", number, false, null, "The max value."> & DefineProp<"min", number, false, null, "The min value."> & DefinePropTheming & DefinePropClass & BaseProps;
|
10
|
+
type TextInputProps = DefineVModel<"", string, false, null, "The v-model value of the component."> & DefineProp<"suffix", string, false, null, "The suffix text of the text field."> & DefineProp<"prefix", string, false, null, "The prefix text of the text field."> & DefineProp<"clearable", boolean, false, false, "Adds a clear button when the text field is not empty."> & DefineProp<"autofocus", boolean, false, false, "Enables autofocus."> & DefineProp<"placeholder", string, false, null, "Sets the input’s placeholder text."> & DefinePropTheming & DefinePropClass & BaseProps;
|
10
11
|
declare const _default: <TType extends "number" | "text" | "password" = "text">(props: ExtractProps<{
|
11
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
12
|
-
} & {
|
13
|
-
container?: boolean;
|
14
|
-
} & {
|
15
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
16
|
-
} & {
|
17
|
-
class?: String | String[];
|
18
|
-
} & {
|
19
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
20
|
-
} & {
|
21
|
-
color?: ColorValue;
|
22
|
-
} & {
|
23
|
-
readonly?: boolean;
|
24
|
-
} & {
|
25
|
-
persistentHint?: boolean;
|
26
|
-
} & {
|
27
|
-
hint?: string;
|
28
|
-
} & {
|
29
|
-
errorMessages?: string | string[];
|
30
|
-
} & {
|
31
|
-
rules?: ValidationRule[];
|
32
|
-
} & {
|
33
|
-
toned?: boolean;
|
34
|
-
} & {
|
35
|
-
label?: string;
|
36
|
-
} & {
|
37
|
-
loading?: boolean;
|
38
|
-
} & {
|
39
|
-
disabled?: boolean;
|
40
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
41
12
|
type?: TType;
|
42
13
|
} & (TType extends "number" ? NumberInputProps : TextInputProps)> & Omit<({
|
43
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
44
|
-
} & {
|
45
|
-
container?: boolean;
|
46
|
-
} & {
|
47
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
48
|
-
} & {
|
49
|
-
class?: String | String[];
|
50
|
-
} & {
|
51
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
52
|
-
} & {
|
53
|
-
color?: ColorValue;
|
54
|
-
} & {
|
55
|
-
readonly?: boolean;
|
56
|
-
} & {
|
57
|
-
persistentHint?: boolean;
|
58
|
-
} & {
|
59
|
-
hint?: string;
|
60
|
-
} & {
|
61
|
-
errorMessages?: string | string[];
|
62
|
-
} & {
|
63
|
-
rules?: ValidationRule[];
|
64
|
-
} & {
|
65
|
-
toned?: boolean;
|
66
|
-
} & {
|
67
|
-
label?: string;
|
68
|
-
} & {
|
69
|
-
loading?: boolean;
|
70
|
-
} & {
|
71
|
-
disabled?: boolean;
|
72
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
73
14
|
type?: TType;
|
74
15
|
} & (TType extends "number" ? NumberInputProps : TextInputProps) extends infer T ? { [K in keyof T as K extends `emit:${infer N}` ? N : never]: ({
|
75
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
76
|
-
} & {
|
77
|
-
container?: boolean;
|
78
|
-
} & {
|
79
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
80
|
-
} & {
|
81
|
-
class?: String | String[];
|
82
|
-
} & {
|
83
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
84
|
-
} & {
|
85
|
-
color?: ColorValue;
|
86
|
-
} & {
|
87
|
-
readonly?: boolean;
|
88
|
-
} & {
|
89
|
-
persistentHint?: boolean;
|
90
|
-
} & {
|
91
|
-
hint?: string;
|
92
|
-
} & {
|
93
|
-
errorMessages?: string | string[];
|
94
|
-
} & {
|
95
|
-
rules?: ValidationRule[];
|
96
|
-
} & {
|
97
|
-
toned?: boolean;
|
98
|
-
} & {
|
99
|
-
label?: string;
|
100
|
-
} & {
|
101
|
-
loading?: boolean;
|
102
|
-
} & {
|
103
|
-
disabled?: boolean;
|
104
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
105
16
|
type?: TType;
|
106
17
|
} & (TType extends "number" ? NumberInputProps : TextInputProps))[K]; } : never) extends infer T_1 ? T_1 extends ({
|
107
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
108
|
-
} & {
|
109
|
-
container?: boolean;
|
110
|
-
} & {
|
111
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
112
|
-
} & {
|
113
|
-
class?: String | String[];
|
114
|
-
} & {
|
115
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
116
|
-
} & {
|
117
|
-
color?: ColorValue;
|
118
|
-
} & {
|
119
|
-
readonly?: boolean;
|
120
|
-
} & {
|
121
|
-
persistentHint?: boolean;
|
122
|
-
} & {
|
123
|
-
hint?: string;
|
124
|
-
} & {
|
125
|
-
errorMessages?: string | string[];
|
126
|
-
} & {
|
127
|
-
rules?: ValidationRule[];
|
128
|
-
} & {
|
129
|
-
toned?: boolean;
|
130
|
-
} & {
|
131
|
-
label?: string;
|
132
|
-
} & {
|
133
|
-
loading?: boolean;
|
134
|
-
} & {
|
135
|
-
disabled?: boolean;
|
136
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
137
18
|
type?: TType;
|
138
|
-
} & (TType extends "number" ? NumberInputProps : TextInputProps) extends infer
|
139
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
140
|
-
} & {
|
141
|
-
container?: boolean;
|
142
|
-
} & {
|
143
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
144
|
-
} & {
|
145
|
-
class?: String | String[];
|
146
|
-
} & {
|
147
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
148
|
-
} & {
|
149
|
-
color?: ColorValue;
|
150
|
-
} & {
|
151
|
-
readonly?: boolean;
|
152
|
-
} & {
|
153
|
-
persistentHint?: boolean;
|
154
|
-
} & {
|
155
|
-
hint?: string;
|
156
|
-
} & {
|
157
|
-
errorMessages?: string | string[];
|
158
|
-
} & {
|
159
|
-
rules?: ValidationRule[];
|
160
|
-
} & {
|
161
|
-
toned?: boolean;
|
162
|
-
} & {
|
163
|
-
label?: string;
|
164
|
-
} & {
|
165
|
-
loading?: boolean;
|
166
|
-
} & {
|
167
|
-
disabled?: boolean;
|
168
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
19
|
+
} & (TType extends "number" ? NumberInputProps : TextInputProps) extends infer T ? { [K in keyof T as K extends `emit:${infer N}` ? N : never]: ({
|
169
20
|
type?: TType;
|
170
21
|
} & (TType extends "number" ? NumberInputProps : TextInputProps))[K]; } : never) ? T_1 extends string[] ? { [K_1 in `on${Capitalize<T_1[number]>}`]?: (...args: any[]) => any; } : T_1 extends import("vue").ObjectEmitsOptions ? { [K_2 in `on${Capitalize<string & keyof T_1>}`]?: K_2 extends `on${infer C}` ? T_1[Uncapitalize<C>] extends null ? (...args: any[]) => any : (...args: T_1[Uncapitalize<C>] extends (...args: infer P) => any ? P : never) => any : never; } : {} : never : never, keyof ExtractProps<{
|
171
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
172
|
-
} & {
|
173
|
-
container?: boolean;
|
174
|
-
} & {
|
175
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
176
|
-
} & {
|
177
|
-
class?: String | String[];
|
178
|
-
} & {
|
179
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
180
|
-
} & {
|
181
|
-
color?: ColorValue;
|
182
|
-
} & {
|
183
|
-
readonly?: boolean;
|
184
|
-
} & {
|
185
|
-
persistentHint?: boolean;
|
186
|
-
} & {
|
187
|
-
hint?: string;
|
188
|
-
} & {
|
189
|
-
errorMessages?: string | string[];
|
190
|
-
} & {
|
191
|
-
rules?: ValidationRule[];
|
192
|
-
} & {
|
193
|
-
toned?: boolean;
|
194
|
-
} & {
|
195
|
-
label?: string;
|
196
|
-
} & {
|
197
|
-
loading?: boolean;
|
198
|
-
} & {
|
199
|
-
disabled?: boolean;
|
200
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
201
22
|
type?: TType;
|
202
23
|
} & (TType extends "number" ? NumberInputProps : TextInputProps)>> & {
|
203
24
|
"v-slots"?: {
|
204
25
|
default?: import("vue").Slot;
|
205
26
|
} & ({
|
206
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
207
|
-
} & {
|
208
|
-
container?: boolean;
|
209
|
-
} & {
|
210
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
211
|
-
} & {
|
212
|
-
class?: String | String[];
|
213
|
-
} & {
|
214
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
215
|
-
} & {
|
216
|
-
color?: ColorValue;
|
217
|
-
} & {
|
218
|
-
readonly?: boolean;
|
219
|
-
} & {
|
220
|
-
persistentHint?: boolean;
|
221
|
-
} & {
|
222
|
-
hint?: string;
|
223
|
-
} & {
|
224
|
-
errorMessages?: string | string[];
|
225
|
-
} & {
|
226
|
-
rules?: ValidationRule[];
|
227
|
-
} & {
|
228
|
-
toned?: boolean;
|
229
|
-
} & {
|
230
|
-
label?: string;
|
231
|
-
} & {
|
232
|
-
loading?: boolean;
|
233
|
-
} & {
|
234
|
-
disabled?: boolean;
|
235
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
236
27
|
type?: TType;
|
237
|
-
} & (TType extends "number" ? NumberInputProps : TextInputProps) extends infer
|
238
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
239
|
-
} & {
|
240
|
-
container?: boolean;
|
241
|
-
} & {
|
242
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
243
|
-
} & {
|
244
|
-
class?: String | String[];
|
245
|
-
} & {
|
246
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
247
|
-
} & {
|
248
|
-
color?: ColorValue;
|
249
|
-
} & {
|
250
|
-
readonly?: boolean;
|
251
|
-
} & {
|
252
|
-
persistentHint?: boolean;
|
253
|
-
} & {
|
254
|
-
hint?: string;
|
255
|
-
} & {
|
256
|
-
errorMessages?: string | string[];
|
257
|
-
} & {
|
258
|
-
rules?: ValidationRule[];
|
259
|
-
} & {
|
260
|
-
toned?: boolean;
|
261
|
-
} & {
|
262
|
-
label?: string;
|
263
|
-
} & {
|
264
|
-
loading?: boolean;
|
265
|
-
} & {
|
266
|
-
disabled?: boolean;
|
267
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
28
|
+
} & (TType extends "number" ? NumberInputProps : TextInputProps) extends infer T_2 ? { [K_3 in keyof T_2 as K_3 extends `slot:${infer N_1}` ? N_1 : never]: ({
|
268
29
|
type?: TType;
|
269
30
|
} & (TType extends "number" ? NumberInputProps : TextInputProps))[K_3]; } : never);
|
270
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "type" |
|
31
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "type" | keyof (TType extends "number" ? NumberInputProps : TextInputProps)>) => {
|
271
32
|
$: import("vue").ComponentInternalInstance;
|
272
33
|
$data: {};
|
273
34
|
$props: {};
|
@@ -303,267 +64,27 @@ declare const _default: <TType extends "number" | "text" | "password" = "text">(
|
|
303
64
|
};
|
304
65
|
$forceUpdate: () => void;
|
305
66
|
$nextTick: typeof import("vue").nextTick;
|
306
|
-
$watch<
|
67
|
+
$watch<T_3 extends string | ((...args: any) => any)>(source: T_3, cb: T_3 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
307
68
|
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
308
69
|
propsDefinition: ExtractProps<{
|
309
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
310
|
-
} & {
|
311
|
-
container?: boolean;
|
312
|
-
} & {
|
313
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
314
|
-
} & {
|
315
|
-
class?: String | String[];
|
316
|
-
} & {
|
317
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
318
|
-
} & {
|
319
|
-
color?: ColorValue;
|
320
|
-
} & {
|
321
|
-
readonly?: boolean;
|
322
|
-
} & {
|
323
|
-
persistentHint?: boolean;
|
324
|
-
} & {
|
325
|
-
hint?: string;
|
326
|
-
} & {
|
327
|
-
errorMessages?: string | string[];
|
328
|
-
} & {
|
329
|
-
rules?: ValidationRule[];
|
330
|
-
} & {
|
331
|
-
toned?: boolean;
|
332
|
-
} & {
|
333
|
-
label?: string;
|
334
|
-
} & {
|
335
|
-
loading?: boolean;
|
336
|
-
} & {
|
337
|
-
disabled?: boolean;
|
338
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
339
70
|
type?: TType;
|
340
71
|
} & (TType extends "number" ? NumberInputProps : TextInputProps)> & {
|
341
72
|
"v-slots"?: {
|
342
73
|
default?: import("vue").Slot;
|
343
74
|
} & ({
|
344
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
345
|
-
} & {
|
346
|
-
container?: boolean;
|
347
|
-
} & {
|
348
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
349
|
-
} & {
|
350
|
-
class?: String | String[];
|
351
|
-
} & {
|
352
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
353
|
-
} & {
|
354
|
-
color?: ColorValue;
|
355
|
-
} & {
|
356
|
-
readonly?: boolean;
|
357
|
-
} & {
|
358
|
-
persistentHint?: boolean;
|
359
|
-
} & {
|
360
|
-
hint?: string;
|
361
|
-
} & {
|
362
|
-
errorMessages?: string | string[];
|
363
|
-
} & {
|
364
|
-
rules?: ValidationRule[];
|
365
|
-
} & {
|
366
|
-
toned?: boolean;
|
367
|
-
} & {
|
368
|
-
label?: string;
|
369
|
-
} & {
|
370
|
-
loading?: boolean;
|
371
|
-
} & {
|
372
|
-
disabled?: boolean;
|
373
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
374
75
|
type?: TType;
|
375
|
-
} & (TType extends "number" ? NumberInputProps : TextInputProps) extends infer
|
376
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
377
|
-
} & {
|
378
|
-
container?: boolean;
|
379
|
-
} & {
|
380
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
381
|
-
} & {
|
382
|
-
class?: String | String[];
|
383
|
-
} & {
|
384
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
385
|
-
} & {
|
386
|
-
color?: ColorValue;
|
387
|
-
} & {
|
388
|
-
readonly?: boolean;
|
389
|
-
} & {
|
390
|
-
persistentHint?: boolean;
|
391
|
-
} & {
|
392
|
-
hint?: string;
|
393
|
-
} & {
|
394
|
-
errorMessages?: string | string[];
|
395
|
-
} & {
|
396
|
-
rules?: ValidationRule[];
|
397
|
-
} & {
|
398
|
-
toned?: boolean;
|
399
|
-
} & {
|
400
|
-
label?: string;
|
401
|
-
} & {
|
402
|
-
loading?: boolean;
|
403
|
-
} & {
|
404
|
-
disabled?: boolean;
|
405
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
76
|
+
} & (TType extends "number" ? NumberInputProps : TextInputProps) extends infer T_4 ? { [K_3 in keyof T_4 as K_3 extends `slot:${infer N_1}` ? N_1 : never]: ({
|
406
77
|
type?: TType;
|
407
78
|
} & (TType extends "number" ? NumberInputProps : TextInputProps))[K_3]; } : never);
|
408
79
|
} & (({
|
409
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
410
|
-
} & {
|
411
|
-
container?: boolean;
|
412
|
-
} & {
|
413
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
414
|
-
} & {
|
415
|
-
class?: String | String[];
|
416
|
-
} & {
|
417
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
418
|
-
} & {
|
419
|
-
color?: ColorValue;
|
420
|
-
} & {
|
421
|
-
readonly?: boolean;
|
422
|
-
} & {
|
423
|
-
persistentHint?: boolean;
|
424
|
-
} & {
|
425
|
-
hint?: string;
|
426
|
-
} & {
|
427
|
-
errorMessages?: string | string[];
|
428
|
-
} & {
|
429
|
-
rules?: ValidationRule[];
|
430
|
-
} & {
|
431
|
-
toned?: boolean;
|
432
|
-
} & {
|
433
|
-
label?: string;
|
434
|
-
} & {
|
435
|
-
loading?: boolean;
|
436
|
-
} & {
|
437
|
-
disabled?: boolean;
|
438
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
439
80
|
type?: TType;
|
440
|
-
} & (TType extends "number" ? NumberInputProps : TextInputProps) extends infer
|
441
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
442
|
-
} & {
|
443
|
-
container?: boolean;
|
444
|
-
} & {
|
445
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
446
|
-
} & {
|
447
|
-
class?: String | String[];
|
448
|
-
} & {
|
449
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
450
|
-
} & {
|
451
|
-
color?: ColorValue;
|
452
|
-
} & {
|
453
|
-
readonly?: boolean;
|
454
|
-
} & {
|
455
|
-
persistentHint?: boolean;
|
456
|
-
} & {
|
457
|
-
hint?: string;
|
458
|
-
} & {
|
459
|
-
errorMessages?: string | string[];
|
460
|
-
} & {
|
461
|
-
rules?: ValidationRule[];
|
462
|
-
} & {
|
463
|
-
toned?: boolean;
|
464
|
-
} & {
|
465
|
-
label?: string;
|
466
|
-
} & {
|
467
|
-
loading?: boolean;
|
468
|
-
} & {
|
469
|
-
disabled?: boolean;
|
470
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
81
|
+
} & (TType extends "number" ? NumberInputProps : TextInputProps) extends infer T_5 ? { [K in keyof T_5 as K extends `emit:${infer N}` ? N : never]: ({
|
471
82
|
type?: TType;
|
472
|
-
} & (TType extends "number" ? NumberInputProps : TextInputProps))[K]; } : never) extends infer
|
473
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
474
|
-
} & {
|
475
|
-
container?: boolean;
|
476
|
-
} & {
|
477
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
478
|
-
} & {
|
479
|
-
class?: String | String[];
|
480
|
-
} & {
|
481
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
482
|
-
} & {
|
483
|
-
color?: ColorValue;
|
484
|
-
} & {
|
485
|
-
readonly?: boolean;
|
486
|
-
} & {
|
487
|
-
persistentHint?: boolean;
|
488
|
-
} & {
|
489
|
-
hint?: string;
|
490
|
-
} & {
|
491
|
-
errorMessages?: string | string[];
|
492
|
-
} & {
|
493
|
-
rules?: ValidationRule[];
|
494
|
-
} & {
|
495
|
-
toned?: boolean;
|
496
|
-
} & {
|
497
|
-
label?: string;
|
498
|
-
} & {
|
499
|
-
loading?: boolean;
|
500
|
-
} & {
|
501
|
-
disabled?: boolean;
|
502
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
83
|
+
} & (TType extends "number" ? NumberInputProps : TextInputProps))[K]; } : never) extends infer T_6 ? T_6 extends ({
|
503
84
|
type?: TType;
|
504
|
-
} & (TType extends "number" ? NumberInputProps : TextInputProps) extends infer
|
505
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
506
|
-
} & {
|
507
|
-
container?: boolean;
|
508
|
-
} & {
|
509
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
510
|
-
} & {
|
511
|
-
class?: String | String[];
|
512
|
-
} & {
|
513
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
514
|
-
} & {
|
515
|
-
color?: ColorValue;
|
516
|
-
} & {
|
517
|
-
readonly?: boolean;
|
518
|
-
} & {
|
519
|
-
persistentHint?: boolean;
|
520
|
-
} & {
|
521
|
-
hint?: string;
|
522
|
-
} & {
|
523
|
-
errorMessages?: string | string[];
|
524
|
-
} & {
|
525
|
-
rules?: ValidationRule[];
|
526
|
-
} & {
|
527
|
-
toned?: boolean;
|
528
|
-
} & {
|
529
|
-
label?: string;
|
530
|
-
} & {
|
531
|
-
loading?: boolean;
|
532
|
-
} & {
|
533
|
-
disabled?: boolean;
|
534
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
85
|
+
} & (TType extends "number" ? NumberInputProps : TextInputProps) extends infer T_7 ? { [K in keyof T_7 as K extends `emit:${infer N}` ? N : never]: ({
|
535
86
|
type?: TType;
|
536
|
-
} & (TType extends "number" ? NumberInputProps : TextInputProps))[K]; } : never) ?
|
537
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
538
|
-
} & {
|
539
|
-
container?: boolean;
|
540
|
-
} & {
|
541
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
542
|
-
} & {
|
543
|
-
class?: String | String[];
|
544
|
-
} & {
|
545
|
-
variant?: "search" | "link" | "default" | "media" | "find-slim";
|
546
|
-
} & {
|
547
|
-
color?: ColorValue;
|
548
|
-
} & {
|
549
|
-
readonly?: boolean;
|
550
|
-
} & {
|
551
|
-
persistentHint?: boolean;
|
552
|
-
} & {
|
553
|
-
hint?: string;
|
554
|
-
} & {
|
555
|
-
errorMessages?: string | string[];
|
556
|
-
} & {
|
557
|
-
rules?: ValidationRule[];
|
558
|
-
} & {
|
559
|
-
toned?: boolean;
|
560
|
-
} & {
|
561
|
-
label?: string;
|
562
|
-
} & {
|
563
|
-
loading?: boolean;
|
564
|
-
} & {
|
565
|
-
disabled?: boolean;
|
566
|
-
} & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared."> & {
|
87
|
+
} & (TType extends "number" ? NumberInputProps : TextInputProps))[K]; } : never) ? T_6 extends string[] ? { [K_4 in `on${Capitalize<T_6[number]>}`]?: (...args: any[]) => any; } : T_6 extends import("vue").ObjectEmitsOptions ? { [K_5 in `on${Capitalize<string & keyof T_6>}`]?: K_5 extends `on${infer C}` ? T_6[Uncapitalize<C>] extends null ? (...args: any[]) => any : (...args: T_6[Uncapitalize<C>] extends (...args: infer P) => any ? P : never) => any : never; } : {} : never : never) & Omit<import("@omnia/fx/ux").VueComponentBaseProps, keyof ExtractProps<{
|
567
88
|
type?: TType;
|
568
89
|
} & (TType extends "number" ? NumberInputProps : TextInputProps)>>;
|
569
90
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
@@ -83,6 +83,9 @@ declare const _default: {
|
|
83
83
|
deleteDefinition: {
|
84
84
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
85
85
|
};
|
86
|
+
deleteReferenceDefinition: {
|
87
|
+
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
88
|
+
};
|
86
89
|
removeActiveDefinition: {
|
87
90
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
88
91
|
};
|
@@ -130,6 +133,9 @@ declare const _default: {
|
|
130
133
|
deleteDefinition: {
|
131
134
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
132
135
|
};
|
136
|
+
deleteReferenceDefinition: {
|
137
|
+
subscribe(fn: (result: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
138
|
+
};
|
133
139
|
removeActiveDefinition: {
|
134
140
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
135
141
|
};
|
@@ -177,6 +183,9 @@ declare const _default: {
|
|
177
183
|
deleteDefinition: {
|
178
184
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
179
185
|
};
|
186
|
+
deleteReferenceDefinition: {
|
187
|
+
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
188
|
+
};
|
180
189
|
removeActiveDefinition: {
|
181
190
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
182
191
|
};
|
@@ -214,6 +223,7 @@ declare const _default: {
|
|
214
223
|
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
215
224
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
216
225
|
deleteDefinition(definition: VelcronContentInstance): void;
|
226
|
+
deleteReferenceDefinition(definition: VelcronContentInstance): any;
|
217
227
|
removeActiveDefinition(): void;
|
218
228
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
219
229
|
removeSelectedDefinition(): void;
|
@@ -307,6 +317,9 @@ declare const _default: {
|
|
307
317
|
deleteDefinition: {
|
308
318
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
309
319
|
};
|
320
|
+
deleteReferenceDefinition: {
|
321
|
+
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
322
|
+
};
|
310
323
|
removeActiveDefinition: {
|
311
324
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
312
325
|
};
|
@@ -354,6 +367,9 @@ declare const _default: {
|
|
354
367
|
deleteDefinition: {
|
355
368
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
356
369
|
};
|
370
|
+
deleteReferenceDefinition: {
|
371
|
+
subscribe(fn: (result: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
372
|
+
};
|
357
373
|
removeActiveDefinition: {
|
358
374
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
359
375
|
};
|
@@ -401,6 +417,9 @@ declare const _default: {
|
|
401
417
|
deleteDefinition: {
|
402
418
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
403
419
|
};
|
420
|
+
deleteReferenceDefinition: {
|
421
|
+
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
422
|
+
};
|
404
423
|
removeActiveDefinition: {
|
405
424
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
406
425
|
};
|
@@ -438,6 +457,7 @@ declare const _default: {
|
|
438
457
|
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
439
458
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
440
459
|
deleteDefinition(definition: VelcronContentInstance): void;
|
460
|
+
deleteReferenceDefinition(definition: VelcronContentInstance): any;
|
441
461
|
removeActiveDefinition(): void;
|
442
462
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
443
463
|
removeSelectedDefinition(): void;
|
@@ -534,6 +554,9 @@ declare const _default: {
|
|
534
554
|
deleteDefinition: {
|
535
555
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
536
556
|
};
|
557
|
+
deleteReferenceDefinition: {
|
558
|
+
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
559
|
+
};
|
537
560
|
removeActiveDefinition: {
|
538
561
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
539
562
|
};
|
@@ -581,6 +604,9 @@ declare const _default: {
|
|
581
604
|
deleteDefinition: {
|
582
605
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
583
606
|
};
|
607
|
+
deleteReferenceDefinition: {
|
608
|
+
subscribe(fn: (result: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
609
|
+
};
|
584
610
|
removeActiveDefinition: {
|
585
611
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
586
612
|
};
|
@@ -628,6 +654,9 @@ declare const _default: {
|
|
628
654
|
deleteDefinition: {
|
629
655
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
630
656
|
};
|
657
|
+
deleteReferenceDefinition: {
|
658
|
+
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
659
|
+
};
|
631
660
|
removeActiveDefinition: {
|
632
661
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
633
662
|
};
|
@@ -665,6 +694,7 @@ declare const _default: {
|
|
665
694
|
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
666
695
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
667
696
|
deleteDefinition(definition: VelcronContentInstance): void;
|
697
|
+
deleteReferenceDefinition(definition: VelcronContentInstance): any;
|
668
698
|
removeActiveDefinition(): void;
|
669
699
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
670
700
|
removeSelectedDefinition(): void;
|
@@ -758,6 +788,9 @@ declare const _default: {
|
|
758
788
|
deleteDefinition: {
|
759
789
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
760
790
|
};
|
791
|
+
deleteReferenceDefinition: {
|
792
|
+
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
793
|
+
};
|
761
794
|
removeActiveDefinition: {
|
762
795
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
763
796
|
};
|
@@ -805,6 +838,9 @@ declare const _default: {
|
|
805
838
|
deleteDefinition: {
|
806
839
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
807
840
|
};
|
841
|
+
deleteReferenceDefinition: {
|
842
|
+
subscribe(fn: (result: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
843
|
+
};
|
808
844
|
removeActiveDefinition: {
|
809
845
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
810
846
|
};
|
@@ -852,6 +888,9 @@ declare const _default: {
|
|
852
888
|
deleteDefinition: {
|
853
889
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
854
890
|
};
|
891
|
+
deleteReferenceDefinition: {
|
892
|
+
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
893
|
+
};
|
855
894
|
removeActiveDefinition: {
|
856
895
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
857
896
|
};
|
@@ -889,6 +928,7 @@ declare const _default: {
|
|
889
928
|
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
890
929
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
891
930
|
deleteDefinition(definition: VelcronContentInstance): void;
|
931
|
+
deleteReferenceDefinition(definition: VelcronContentInstance): any;
|
892
932
|
removeActiveDefinition(): void;
|
893
933
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
894
934
|
removeSelectedDefinition(): void;
|
@@ -975,6 +1015,9 @@ declare const _default: {
|
|
975
1015
|
deleteDefinition: {
|
976
1016
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
977
1017
|
};
|
1018
|
+
deleteReferenceDefinition: {
|
1019
|
+
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1020
|
+
};
|
978
1021
|
removeActiveDefinition: {
|
979
1022
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
980
1023
|
};
|
@@ -1022,6 +1065,9 @@ declare const _default: {
|
|
1022
1065
|
deleteDefinition: {
|
1023
1066
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1024
1067
|
};
|
1068
|
+
deleteReferenceDefinition: {
|
1069
|
+
subscribe(fn: (result: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1070
|
+
};
|
1025
1071
|
removeActiveDefinition: {
|
1026
1072
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1027
1073
|
};
|
@@ -1069,6 +1115,9 @@ declare const _default: {
|
|
1069
1115
|
deleteDefinition: {
|
1070
1116
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1071
1117
|
};
|
1118
|
+
deleteReferenceDefinition: {
|
1119
|
+
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1120
|
+
};
|
1072
1121
|
removeActiveDefinition: {
|
1073
1122
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1074
1123
|
};
|
@@ -1106,6 +1155,7 @@ declare const _default: {
|
|
1106
1155
|
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
1107
1156
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
1108
1157
|
deleteDefinition(definition: VelcronContentInstance): void;
|
1158
|
+
deleteReferenceDefinition(definition: VelcronContentInstance): any;
|
1109
1159
|
removeActiveDefinition(): void;
|
1110
1160
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
1111
1161
|
removeSelectedDefinition(): void;
|
@@ -1,15 +1,18 @@
|
|
1
1
|
import { VelcronContentInstance } from "../models";
|
2
|
+
type ToolbarVariant = "default" | "reference";
|
2
3
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
4
|
"v-model"?: VelcronContentInstance;
|
4
5
|
} & {
|
5
6
|
"onUpdate:modelValue"?: (value: VelcronContentInstance) => void;
|
6
7
|
} & {
|
7
8
|
modelValue?: VelcronContentInstance;
|
8
|
-
}
|
9
|
+
} & {
|
10
|
+
variant?: ToolbarVariant;
|
11
|
+
}> & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue" | "variant"> & {
|
9
12
|
"v-slots"?: {
|
10
13
|
default?: import("vue").Slot;
|
11
14
|
} & {};
|
12
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">) => {
|
15
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "variant">) => {
|
13
16
|
$: import("vue").ComponentInternalInstance;
|
14
17
|
$data: {};
|
15
18
|
$props: {};
|
@@ -53,11 +56,13 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
53
56
|
"onUpdate:modelValue"?: (value: VelcronContentInstance) => void;
|
54
57
|
} & {
|
55
58
|
modelValue?: VelcronContentInstance;
|
59
|
+
} & {
|
60
|
+
variant?: ToolbarVariant;
|
56
61
|
}> & {
|
57
62
|
"v-slots"?: {
|
58
63
|
default?: import("vue").Slot;
|
59
64
|
} & {};
|
60
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
|
65
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "variant">;
|
61
66
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
62
67
|
[key: string]: any;
|
63
68
|
}>;
|
@@ -64,6 +64,9 @@ export declare const useVelcronContentEditorStore: () => {
|
|
64
64
|
deleteDefinition: {
|
65
65
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
66
66
|
};
|
67
|
+
deleteReferenceDefinition: {
|
68
|
+
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
69
|
+
};
|
67
70
|
removeActiveDefinition: {
|
68
71
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
69
72
|
};
|
@@ -111,6 +114,9 @@ export declare const useVelcronContentEditorStore: () => {
|
|
111
114
|
deleteDefinition: {
|
112
115
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
113
116
|
};
|
117
|
+
deleteReferenceDefinition: {
|
118
|
+
subscribe(fn: (result: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
119
|
+
};
|
114
120
|
removeActiveDefinition: {
|
115
121
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
116
122
|
};
|
@@ -158,6 +164,9 @@ export declare const useVelcronContentEditorStore: () => {
|
|
158
164
|
deleteDefinition: {
|
159
165
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
160
166
|
};
|
167
|
+
deleteReferenceDefinition: {
|
168
|
+
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
169
|
+
};
|
161
170
|
removeActiveDefinition: {
|
162
171
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
163
172
|
};
|
@@ -195,6 +204,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
195
204
|
addDefinition(definition: VelcronDefinitionRegistration, setAsActive?: boolean): void;
|
196
205
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
197
206
|
deleteDefinition(definition: VelcronContentInstance): void;
|
207
|
+
deleteReferenceDefinition(definition: VelcronContentInstance): any;
|
198
208
|
removeActiveDefinition(): void;
|
199
209
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
200
210
|
removeSelectedDefinition(): void;
|
@@ -67,7 +67,9 @@ export interface VelcronRenderContext {
|
|
67
67
|
$editmode?: boolean;
|
68
68
|
$active?: boolean;
|
69
69
|
disposers: Array<() => void>;
|
70
|
+
baseDefinition?: VelcronAppDefinition;
|
70
71
|
subApp?: boolean;
|
72
|
+
subAppreferenceId?: GuidValue;
|
71
73
|
}
|
72
74
|
export interface VelcronRenderContextEventHandlers {
|
73
75
|
receiving?: {
|
@@ -156,6 +158,8 @@ export interface VelcronFlexDefinition extends VelcronDefinition, VelcronColorSt
|
|
156
158
|
border?: VelcronBorder;
|
157
159
|
borderRadius?: VelcronDimensions;
|
158
160
|
}
|
161
|
+
export interface VelcronEffects {
|
162
|
+
}
|
159
163
|
export interface VelcronFlexRowDefinition extends VelcronDefinition, VelcronColorStyling {
|
160
164
|
type: "row";
|
161
165
|
events?: VelcronOnPressEvent;
|
@@ -174,6 +178,7 @@ export interface VelcronFlexRowDefinition extends VelcronDefinition, VelcronColo
|
|
174
178
|
minWidth?: number | string;
|
175
179
|
height?: number | string;
|
176
180
|
minHeight?: number | string;
|
181
|
+
effects?: VelcronEffects;
|
177
182
|
}
|
178
183
|
export interface VelcronFlexColumnDefinition extends VelcronDefinition, VelcronColorStyling {
|
179
184
|
type: "column";
|
@@ -1,6 +1,11 @@
|
|
1
|
-
import { VelcronMarkdownEditorSettings } from "@omnia/fx-models";
|
1
|
+
import { EditorLocation, VelcronMarkdownEditorSettings } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
location: {
|
5
|
+
type: import("vue").PropType<EditorLocation>;
|
6
|
+
} & {
|
7
|
+
type: import("vue").PropType<EditorLocation>;
|
8
|
+
};
|
4
9
|
settings: {
|
5
10
|
type: import("vue").PropType<VelcronMarkdownEditorSettings>;
|
6
11
|
} & {
|
@@ -77,6 +82,11 @@ declare const _default: {
|
|
77
82
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
78
83
|
"update:modelValue": (value: string) => true;
|
79
84
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
85
|
+
location: {
|
86
|
+
type: import("vue").PropType<EditorLocation>;
|
87
|
+
} & {
|
88
|
+
type: import("vue").PropType<EditorLocation>;
|
89
|
+
};
|
80
90
|
settings: {
|
81
91
|
type: import("vue").PropType<VelcronMarkdownEditorSettings>;
|
82
92
|
} & {
|
@@ -158,6 +168,11 @@ declare const _default: {
|
|
158
168
|
M: {};
|
159
169
|
Defaults: {};
|
160
170
|
}, Readonly<import("vue").ExtractPropTypes<{
|
171
|
+
location: {
|
172
|
+
type: import("vue").PropType<EditorLocation>;
|
173
|
+
} & {
|
174
|
+
type: import("vue").PropType<EditorLocation>;
|
175
|
+
};
|
161
176
|
settings: {
|
162
177
|
type: import("vue").PropType<VelcronMarkdownEditorSettings>;
|
163
178
|
} & {
|
@@ -236,6 +251,11 @@ declare const _default: {
|
|
236
251
|
__isTeleport?: never;
|
237
252
|
__isSuspense?: never;
|
238
253
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
254
|
+
location: {
|
255
|
+
type: import("vue").PropType<EditorLocation>;
|
256
|
+
} & {
|
257
|
+
type: import("vue").PropType<EditorLocation>;
|
258
|
+
};
|
239
259
|
settings: {
|
240
260
|
type: import("vue").PropType<VelcronMarkdownEditorSettings>;
|
241
261
|
} & {
|
@@ -378,6 +398,7 @@ declare const _default: {
|
|
378
398
|
"v-model"?: string;
|
379
399
|
"onUpdate:modelValue"?: (value: string) => any;
|
380
400
|
modelValue?: string;
|
401
|
+
location?: EditorLocation;
|
381
402
|
}>, "onUpdate:modelValue"> & {
|
382
403
|
"onUpdate:modelValue"?: (value: string) => any;
|
383
404
|
};
|
@@ -1,6 +1,11 @@
|
|
1
|
-
import { VelcronSliderPropertyEditorSettings } from "@omnia/fx-models";
|
1
|
+
import { EditorLocation, VelcronSliderPropertyEditorSettings } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
location: {
|
5
|
+
type: import("vue").PropType<EditorLocation>;
|
6
|
+
} & {
|
7
|
+
type: import("vue").PropType<EditorLocation>;
|
8
|
+
};
|
4
9
|
settings: {
|
5
10
|
type: import("vue").PropType<VelcronSliderPropertyEditorSettings>;
|
6
11
|
required: false;
|
@@ -79,6 +84,11 @@ declare const _default: {
|
|
79
84
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
80
85
|
"update:modelValue": (value: number) => true;
|
81
86
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
87
|
+
location: {
|
88
|
+
type: import("vue").PropType<EditorLocation>;
|
89
|
+
} & {
|
90
|
+
type: import("vue").PropType<EditorLocation>;
|
91
|
+
};
|
82
92
|
settings: {
|
83
93
|
type: import("vue").PropType<VelcronSliderPropertyEditorSettings>;
|
84
94
|
required: false;
|
@@ -162,6 +172,11 @@ declare const _default: {
|
|
162
172
|
M: {};
|
163
173
|
Defaults: {};
|
164
174
|
}, Readonly<import("vue").ExtractPropTypes<{
|
175
|
+
location: {
|
176
|
+
type: import("vue").PropType<EditorLocation>;
|
177
|
+
} & {
|
178
|
+
type: import("vue").PropType<EditorLocation>;
|
179
|
+
};
|
165
180
|
settings: {
|
166
181
|
type: import("vue").PropType<VelcronSliderPropertyEditorSettings>;
|
167
182
|
required: false;
|
@@ -242,6 +257,11 @@ declare const _default: {
|
|
242
257
|
__isTeleport?: never;
|
243
258
|
__isSuspense?: never;
|
244
259
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
260
|
+
location: {
|
261
|
+
type: import("vue").PropType<EditorLocation>;
|
262
|
+
} & {
|
263
|
+
type: import("vue").PropType<EditorLocation>;
|
264
|
+
};
|
245
265
|
settings: {
|
246
266
|
type: import("vue").PropType<VelcronSliderPropertyEditorSettings>;
|
247
267
|
required: false;
|
@@ -386,6 +406,7 @@ declare const _default: {
|
|
386
406
|
"v-model"?: number;
|
387
407
|
"onUpdate:modelValue"?: (value: number) => any;
|
388
408
|
modelValue?: number;
|
409
|
+
location?: EditorLocation;
|
389
410
|
}>, "onUpdate:modelValue"> & {
|
390
411
|
"onUpdate:modelValue"?: (value: number) => any;
|
391
412
|
};
|
@@ -1,5 +1,11 @@
|
|
1
|
+
import { EditorLocation } from "@omnia/fx-models";
|
1
2
|
declare const _default: {
|
2
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
location: {
|
5
|
+
type: import("vue").PropType<EditorLocation>;
|
6
|
+
} & {
|
7
|
+
type: import("vue").PropType<EditorLocation>;
|
8
|
+
};
|
3
9
|
label: {
|
4
10
|
type: import("vue").PropType<string>;
|
5
11
|
} & {
|
@@ -76,6 +82,11 @@ declare const _default: {
|
|
76
82
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
77
83
|
"update:modelValue": (value: boolean) => true;
|
78
84
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
85
|
+
location: {
|
86
|
+
type: import("vue").PropType<EditorLocation>;
|
87
|
+
} & {
|
88
|
+
type: import("vue").PropType<EditorLocation>;
|
89
|
+
};
|
79
90
|
label: {
|
80
91
|
type: import("vue").PropType<string>;
|
81
92
|
} & {
|
@@ -157,6 +168,11 @@ declare const _default: {
|
|
157
168
|
M: {};
|
158
169
|
Defaults: {};
|
159
170
|
}, Readonly<import("vue").ExtractPropTypes<{
|
171
|
+
location: {
|
172
|
+
type: import("vue").PropType<EditorLocation>;
|
173
|
+
} & {
|
174
|
+
type: import("vue").PropType<EditorLocation>;
|
175
|
+
};
|
160
176
|
label: {
|
161
177
|
type: import("vue").PropType<string>;
|
162
178
|
} & {
|
@@ -235,6 +251,11 @@ declare const _default: {
|
|
235
251
|
__isTeleport?: never;
|
236
252
|
__isSuspense?: never;
|
237
253
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
254
|
+
location: {
|
255
|
+
type: import("vue").PropType<EditorLocation>;
|
256
|
+
} & {
|
257
|
+
type: import("vue").PropType<EditorLocation>;
|
258
|
+
};
|
238
259
|
label: {
|
239
260
|
type: import("vue").PropType<string>;
|
240
261
|
} & {
|
@@ -377,6 +398,7 @@ declare const _default: {
|
|
377
398
|
"v-model"?: boolean;
|
378
399
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
379
400
|
modelValue?: boolean;
|
401
|
+
location?: EditorLocation;
|
380
402
|
}>, "onUpdate:modelValue"> & {
|
381
403
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
382
404
|
};
|
@@ -1,6 +1,11 @@
|
|
1
|
-
import { VelcronTextEditorSettings } from "@omnia/fx-models";
|
1
|
+
import { EditorLocation, VelcronTextEditorSettings } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
location: {
|
5
|
+
type: import("vue").PropType<EditorLocation>;
|
6
|
+
} & {
|
7
|
+
type: import("vue").PropType<EditorLocation>;
|
8
|
+
};
|
4
9
|
settings: {
|
5
10
|
type: import("vue").PropType<VelcronTextEditorSettings>;
|
6
11
|
} & {
|
@@ -82,6 +87,11 @@ declare const _default: {
|
|
82
87
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
83
88
|
"update:modelValue": (value: string) => true;
|
84
89
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
90
|
+
location: {
|
91
|
+
type: import("vue").PropType<EditorLocation>;
|
92
|
+
} & {
|
93
|
+
type: import("vue").PropType<EditorLocation>;
|
94
|
+
};
|
85
95
|
settings: {
|
86
96
|
type: import("vue").PropType<VelcronTextEditorSettings>;
|
87
97
|
} & {
|
@@ -168,6 +178,11 @@ declare const _default: {
|
|
168
178
|
M: {};
|
169
179
|
Defaults: {};
|
170
180
|
}, Readonly<import("vue").ExtractPropTypes<{
|
181
|
+
location: {
|
182
|
+
type: import("vue").PropType<EditorLocation>;
|
183
|
+
} & {
|
184
|
+
type: import("vue").PropType<EditorLocation>;
|
185
|
+
};
|
171
186
|
settings: {
|
172
187
|
type: import("vue").PropType<VelcronTextEditorSettings>;
|
173
188
|
} & {
|
@@ -251,6 +266,11 @@ declare const _default: {
|
|
251
266
|
__isTeleport?: never;
|
252
267
|
__isSuspense?: never;
|
253
268
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
269
|
+
location: {
|
270
|
+
type: import("vue").PropType<EditorLocation>;
|
271
|
+
} & {
|
272
|
+
type: import("vue").PropType<EditorLocation>;
|
273
|
+
};
|
254
274
|
settings: {
|
255
275
|
type: import("vue").PropType<VelcronTextEditorSettings>;
|
256
276
|
} & {
|
@@ -399,6 +419,7 @@ declare const _default: {
|
|
399
419
|
"v-model"?: string;
|
400
420
|
"onUpdate:modelValue"?: (value: string) => any;
|
401
421
|
modelValue?: string;
|
422
|
+
location?: EditorLocation;
|
402
423
|
}>, "onUpdate:modelValue"> & {
|
403
424
|
"onUpdate:modelValue"?: (value: string) => any;
|
404
425
|
};
|
@@ -1,6 +1,11 @@
|
|
1
|
-
import { TextBlueprint, VelcronTypographyEditorSettings } from "@omnia/fx-models";
|
1
|
+
import { EditorLocation, TextBlueprint, VelcronTypographyEditorSettings } from "@omnia/fx-models";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
location: {
|
5
|
+
type: import("vue").PropType<EditorLocation>;
|
6
|
+
} & {
|
7
|
+
type: import("vue").PropType<EditorLocation>;
|
8
|
+
};
|
4
9
|
settings: {
|
5
10
|
type: import("vue").PropType<VelcronTypographyEditorSettings>;
|
6
11
|
} & {
|
@@ -77,6 +82,11 @@ declare const _default: {
|
|
77
82
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
78
83
|
"update:modelValue": (value: TextBlueprint) => true;
|
79
84
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
85
|
+
location: {
|
86
|
+
type: import("vue").PropType<EditorLocation>;
|
87
|
+
} & {
|
88
|
+
type: import("vue").PropType<EditorLocation>;
|
89
|
+
};
|
80
90
|
settings: {
|
81
91
|
type: import("vue").PropType<VelcronTypographyEditorSettings>;
|
82
92
|
} & {
|
@@ -158,6 +168,11 @@ declare const _default: {
|
|
158
168
|
M: {};
|
159
169
|
Defaults: {};
|
160
170
|
}, Readonly<import("vue").ExtractPropTypes<{
|
171
|
+
location: {
|
172
|
+
type: import("vue").PropType<EditorLocation>;
|
173
|
+
} & {
|
174
|
+
type: import("vue").PropType<EditorLocation>;
|
175
|
+
};
|
161
176
|
settings: {
|
162
177
|
type: import("vue").PropType<VelcronTypographyEditorSettings>;
|
163
178
|
} & {
|
@@ -236,6 +251,11 @@ declare const _default: {
|
|
236
251
|
__isTeleport?: never;
|
237
252
|
__isSuspense?: never;
|
238
253
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
254
|
+
location: {
|
255
|
+
type: import("vue").PropType<EditorLocation>;
|
256
|
+
} & {
|
257
|
+
type: import("vue").PropType<EditorLocation>;
|
258
|
+
};
|
239
259
|
settings: {
|
240
260
|
type: import("vue").PropType<VelcronTypographyEditorSettings>;
|
241
261
|
} & {
|
@@ -378,6 +398,7 @@ declare const _default: {
|
|
378
398
|
"v-model"?: TextBlueprint;
|
379
399
|
"onUpdate:modelValue"?: (value: TextBlueprint) => any;
|
380
400
|
modelValue?: TextBlueprint;
|
401
|
+
location?: EditorLocation;
|
381
402
|
}>, "onUpdate:modelValue"> & {
|
382
403
|
"onUpdate:modelValue"?: (value: TextBlueprint) => any;
|
383
404
|
};
|
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.174-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": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.174-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|