@omnia/fx 8.0.173-dev → 8.0.175-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/core/services/ServiceLocator.d.ts +1 -0
- package/internal-do-not-import-from-here/services/FileStorageService.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts +45 -24
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +341 -0
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +341 -0
- 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/btn/Button.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.d.ts +13 -492
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/use/UseInterSectionObserver.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/useVelcronStateManager.d.ts +4 -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/Effects.d.ts +324 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronState.d.ts +15 -23
- package/internal-do-not-import-from-here/ux/velcron/core/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/old/state/VelcronColorSchemaBuilder.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/BlueprintEditor.d.ts +1 -22
- 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/internal-do-not-import-from-here/ux/velcron/stores/useVelcronStateManager.d.ts +4 -1
- package/package.json +2 -2
@@ -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."> & DefineProp<"step", number, false, null, "incremental steps for adjusting the numeric 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, {
|
@@ -369,13 +369,13 @@ declare const _default: {
|
|
369
369
|
class?: String | String[];
|
370
370
|
scrollbar?: boolean;
|
371
371
|
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
372
|
+
loop?: boolean;
|
373
|
+
delay?: number;
|
372
374
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
373
375
|
variant?: "default" | "custom-navigation";
|
374
376
|
getApi?: (store: ReturnType<typeof useSlidePanelStore>) => void;
|
375
377
|
"get-api"?: (store: ReturnType<typeof useSlidePanelStore>) => void;
|
376
378
|
autoplay?: boolean;
|
377
|
-
delay?: number;
|
378
|
-
loop?: boolean;
|
379
379
|
pagination?: boolean;
|
380
380
|
slidesPerView?: number;
|
381
381
|
"slides-per-view"?: number;
|
package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/useVelcronStateManager.d.ts
CHANGED
@@ -4,13 +4,16 @@ export declare function useVelcronStateManager(): {
|
|
4
4
|
copyState: (fromState: VelcronState, toState: VelcronState) => {
|
5
5
|
images?: import("../../core").VelcronImagesState;
|
6
6
|
container?: {
|
7
|
+
maxWidth?: number;
|
8
|
+
minHeight?: number;
|
9
|
+
alignX?: string;
|
10
|
+
alignY?: string;
|
7
11
|
colorSchemaType?: string;
|
8
12
|
spacing?: import("../../core").VelcronSpacing;
|
9
13
|
blueprint?: import("../../core").ContainerVariant | import("../../core").ContainerBlueprint;
|
10
14
|
background?: import("../../core").BackgroundDefinition;
|
11
15
|
};
|
12
16
|
grid?: import("../../core").VelcronGridState;
|
13
|
-
colorSchemas?: import("../../core").VelcronColorSchemasState;
|
14
17
|
content?: import("../../core").VelcronContentState;
|
15
18
|
header?: import("../../core").VelcronHeaderState;
|
16
19
|
properties?: import("../../core").VelcronPropertiesState;
|