@omnia/fx 8.0.42-dev → 8.0.43-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/utils/Utils.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.d.ts +4 -4
- package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.js +4 -4
- package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstanceinformationstep/AppInstanceInformationStep.d.ts +186 -11
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstanceinformationstep/IAppInstanceInformationStep.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstancesummarystep/AppInstanceSummaryStep.d.ts +186 -9
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstancesummarystep/IAppInstanceSummaryStep.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstanceusersstep/AppInstanceUsersStep.d.ts +186 -10
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstanceusersstep/IAppInstanceUsersStep.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitledescription/AppDescriptionInput.d.ts +444 -21
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitledescription/IAppDescriptionInput.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitleinput/AppTitleInput.d.ts +466 -32
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitleinput/IAppTitleInput.d.ts +0 -12
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceInformationVueComponent.d.ts +80 -19
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppProvisioningStepComponentBase.d.ts +34 -0
- package/internal-do-not-import-from-here/ux/appprovisioning/renderer/Renderer.d.ts +47 -35
- package/internal-do-not-import-from-here/ux/hub/feed/tabs/FeedTab.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/SharedRendererStyles.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/badge/Badge.d.ts +392 -14
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/pagination/Pagination.d.ts +260 -0
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/social/Comment.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/social/Reactions.d.ts +52 -36
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/Blueprints.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/ThemeDefinitions.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/TypographyTypes.d.ts +101 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/useDefaultDesignKit.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/useDesignKits.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/theming-v2/store/VelcronDefinitionStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/store/ContentEditorStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/wizard/IWizard.d.ts +1 -14
- package/internal-do-not-import-from-here/ux/wizard/WizardComponent.d.ts +302 -59
- package/internal-do-not-import-from-here/ux/wizard/WizardStep.d.ts +0 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +56 -0
- package/package.json +2 -2
@@ -24,9 +24,9 @@ declare const _default: {
|
|
24
24
|
"onUpdate:modelValue"?: ((value: string[] | MaybeComputedRef<boolean>) => any) & ((value: any) => any);
|
25
25
|
readonly "v-model"?: string[] | MaybeComputedRef<boolean>;
|
26
26
|
readonly modelValue?: string[] | MaybeComputedRef<boolean>;
|
27
|
-
readonly rules?: ValidationRule[];
|
28
27
|
readonly hint?: string;
|
29
28
|
readonly persistentHint?: boolean;
|
29
|
+
readonly rules?: ValidationRule[];
|
30
30
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
31
31
|
persistentHint: {
|
32
32
|
type: import("vue").PropType<boolean>;
|
@@ -272,9 +272,9 @@ declare const _default: {
|
|
272
272
|
"onUpdate:modelValue"?: (value: string[] | MaybeComputedRef<boolean>) => any;
|
273
273
|
"v-model"?: string[] | MaybeComputedRef<boolean>;
|
274
274
|
modelValue?: string[] | MaybeComputedRef<boolean>;
|
275
|
-
rules?: ValidationRule[];
|
276
275
|
hint?: string;
|
277
276
|
persistentHint?: boolean;
|
277
|
+
rules?: ValidationRule[];
|
278
278
|
}>, "onUpdate:modelValue"> & {
|
279
279
|
"onUpdate:modelValue"?: (value: any) => any;
|
280
280
|
};
|
@@ -0,0 +1,260 @@
|
|
1
|
+
import { FunctionalComponent } from "vue";
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): {
|
4
|
+
$: import("vue").ComponentInternalInstance;
|
5
|
+
$data: {};
|
6
|
+
$props: Partial<{
|
7
|
+
container?: any;
|
8
|
+
blueprint?: any;
|
9
|
+
colorSchemaType?: any;
|
10
|
+
blueprintType?: any;
|
11
|
+
colors?: any;
|
12
|
+
}> & Omit<{
|
13
|
+
readonly container?: any;
|
14
|
+
readonly blueprint?: any;
|
15
|
+
readonly colorSchemaType?: any;
|
16
|
+
readonly blueprintType?: any;
|
17
|
+
readonly colors?: any;
|
18
|
+
readonly length?: number;
|
19
|
+
readonly class?: String | String[];
|
20
|
+
readonly disabled?: boolean;
|
21
|
+
readonly "onUpdate:modelValue"?: (value: number) => any;
|
22
|
+
readonly "v-model"?: number;
|
23
|
+
readonly modelValue?: number;
|
24
|
+
readonly prevIcon?: string | FunctionalComponent<{}, {}, any>;
|
25
|
+
readonly nextIcon?: string | FunctionalComponent<{}, {}, any>;
|
26
|
+
readonly totalVisible?: number;
|
27
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
28
|
+
prevIcon: {
|
29
|
+
type: import("vue").PropType<string | FunctionalComponent<{}, {}, any>>;
|
30
|
+
required: false;
|
31
|
+
};
|
32
|
+
nextIcon: {
|
33
|
+
type: import("vue").PropType<string | FunctionalComponent<{}, {}, any>>;
|
34
|
+
required: false;
|
35
|
+
};
|
36
|
+
totalVisible: {
|
37
|
+
type: import("vue").PropType<number>;
|
38
|
+
required: false;
|
39
|
+
};
|
40
|
+
"onUpdate:modelValue": {
|
41
|
+
type: import("vue").PropType<(value: number) => any>;
|
42
|
+
};
|
43
|
+
"v-model": {
|
44
|
+
type: import("vue").PropType<number>;
|
45
|
+
required: false;
|
46
|
+
};
|
47
|
+
modelValue: {
|
48
|
+
type: import("vue").PropType<number>;
|
49
|
+
required: false;
|
50
|
+
};
|
51
|
+
length: {
|
52
|
+
type: import("vue").PropType<number>;
|
53
|
+
required: false;
|
54
|
+
};
|
55
|
+
disabled: {
|
56
|
+
type: import("vue").PropType<boolean>;
|
57
|
+
required: false;
|
58
|
+
};
|
59
|
+
class: {
|
60
|
+
type: import("vue").PropType<String | String[]>;
|
61
|
+
required: boolean;
|
62
|
+
};
|
63
|
+
colorSchemaType?: any;
|
64
|
+
container?: any;
|
65
|
+
colors?: any;
|
66
|
+
blueprintType?: any;
|
67
|
+
blueprint?: any;
|
68
|
+
}>>, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
|
69
|
+
$attrs: {
|
70
|
+
[x: string]: unknown;
|
71
|
+
};
|
72
|
+
$refs: {
|
73
|
+
[x: string]: unknown;
|
74
|
+
};
|
75
|
+
$slots: Readonly<{
|
76
|
+
[name: string]: import("vue").Slot<any>;
|
77
|
+
}>;
|
78
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
79
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
80
|
+
$emit: (event: string, ...args: any[]) => void;
|
81
|
+
$el: any;
|
82
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
83
|
+
prevIcon: {
|
84
|
+
type: import("vue").PropType<string | FunctionalComponent<{}, {}, any>>;
|
85
|
+
required: false;
|
86
|
+
};
|
87
|
+
nextIcon: {
|
88
|
+
type: import("vue").PropType<string | FunctionalComponent<{}, {}, any>>;
|
89
|
+
required: false;
|
90
|
+
};
|
91
|
+
totalVisible: {
|
92
|
+
type: import("vue").PropType<number>;
|
93
|
+
required: false;
|
94
|
+
};
|
95
|
+
"onUpdate:modelValue": {
|
96
|
+
type: import("vue").PropType<(value: number) => any>;
|
97
|
+
};
|
98
|
+
"v-model": {
|
99
|
+
type: import("vue").PropType<number>;
|
100
|
+
required: false;
|
101
|
+
};
|
102
|
+
modelValue: {
|
103
|
+
type: import("vue").PropType<number>;
|
104
|
+
required: false;
|
105
|
+
};
|
106
|
+
length: {
|
107
|
+
type: import("vue").PropType<number>;
|
108
|
+
required: false;
|
109
|
+
};
|
110
|
+
disabled: {
|
111
|
+
type: import("vue").PropType<boolean>;
|
112
|
+
required: false;
|
113
|
+
};
|
114
|
+
class: {
|
115
|
+
type: import("vue").PropType<String | String[]>;
|
116
|
+
required: boolean;
|
117
|
+
};
|
118
|
+
colorSchemaType?: any;
|
119
|
+
container?: any;
|
120
|
+
colors?: any;
|
121
|
+
blueprintType?: any;
|
122
|
+
blueprint?: any;
|
123
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
124
|
+
container?: any;
|
125
|
+
blueprint?: any;
|
126
|
+
colorSchemaType?: any;
|
127
|
+
blueprintType?: any;
|
128
|
+
colors?: any;
|
129
|
+
}, {}, string, {}> & {
|
130
|
+
beforeCreate?: (() => void) | (() => void)[];
|
131
|
+
created?: (() => void) | (() => void)[];
|
132
|
+
beforeMount?: (() => void) | (() => void)[];
|
133
|
+
mounted?: (() => void) | (() => void)[];
|
134
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
135
|
+
updated?: (() => void) | (() => void)[];
|
136
|
+
activated?: (() => void) | (() => void)[];
|
137
|
+
deactivated?: (() => void) | (() => void)[];
|
138
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
139
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
140
|
+
destroyed?: (() => void) | (() => void)[];
|
141
|
+
unmounted?: (() => void) | (() => void)[];
|
142
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
143
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
144
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
145
|
+
};
|
146
|
+
$forceUpdate: () => void;
|
147
|
+
$nextTick: typeof import("vue").nextTick;
|
148
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
149
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
150
|
+
prevIcon: {
|
151
|
+
type: import("vue").PropType<string | FunctionalComponent<{}, {}, any>>;
|
152
|
+
required: false;
|
153
|
+
};
|
154
|
+
nextIcon: {
|
155
|
+
type: import("vue").PropType<string | FunctionalComponent<{}, {}, any>>;
|
156
|
+
required: false;
|
157
|
+
};
|
158
|
+
totalVisible: {
|
159
|
+
type: import("vue").PropType<number>;
|
160
|
+
required: false;
|
161
|
+
};
|
162
|
+
"onUpdate:modelValue": {
|
163
|
+
type: import("vue").PropType<(value: number) => any>;
|
164
|
+
};
|
165
|
+
"v-model": {
|
166
|
+
type: import("vue").PropType<number>;
|
167
|
+
required: false;
|
168
|
+
};
|
169
|
+
modelValue: {
|
170
|
+
type: import("vue").PropType<number>;
|
171
|
+
required: false;
|
172
|
+
};
|
173
|
+
length: {
|
174
|
+
type: import("vue").PropType<number>;
|
175
|
+
required: false;
|
176
|
+
};
|
177
|
+
disabled: {
|
178
|
+
type: import("vue").PropType<boolean>;
|
179
|
+
required: false;
|
180
|
+
};
|
181
|
+
class: {
|
182
|
+
type: import("vue").PropType<String | String[]>;
|
183
|
+
required: boolean;
|
184
|
+
};
|
185
|
+
colorSchemaType?: any;
|
186
|
+
container?: any;
|
187
|
+
colors?: any;
|
188
|
+
blueprintType?: any;
|
189
|
+
blueprint?: any;
|
190
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
191
|
+
__isFragment?: never;
|
192
|
+
__isTeleport?: never;
|
193
|
+
__isSuspense?: never;
|
194
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
195
|
+
prevIcon: {
|
196
|
+
type: import("vue").PropType<string | FunctionalComponent<{}, {}, any>>;
|
197
|
+
required: false;
|
198
|
+
};
|
199
|
+
nextIcon: {
|
200
|
+
type: import("vue").PropType<string | FunctionalComponent<{}, {}, any>>;
|
201
|
+
required: false;
|
202
|
+
};
|
203
|
+
totalVisible: {
|
204
|
+
type: import("vue").PropType<number>;
|
205
|
+
required: false;
|
206
|
+
};
|
207
|
+
"onUpdate:modelValue": {
|
208
|
+
type: import("vue").PropType<(value: number) => any>;
|
209
|
+
};
|
210
|
+
"v-model": {
|
211
|
+
type: import("vue").PropType<number>;
|
212
|
+
required: false;
|
213
|
+
};
|
214
|
+
modelValue: {
|
215
|
+
type: import("vue").PropType<number>;
|
216
|
+
required: false;
|
217
|
+
};
|
218
|
+
length: {
|
219
|
+
type: import("vue").PropType<number>;
|
220
|
+
required: false;
|
221
|
+
};
|
222
|
+
disabled: {
|
223
|
+
type: import("vue").PropType<boolean>;
|
224
|
+
required: false;
|
225
|
+
};
|
226
|
+
class: {
|
227
|
+
type: import("vue").PropType<String | String[]>;
|
228
|
+
required: boolean;
|
229
|
+
};
|
230
|
+
colorSchemaType?: any;
|
231
|
+
container?: any;
|
232
|
+
colors?: any;
|
233
|
+
blueprintType?: any;
|
234
|
+
blueprint?: any;
|
235
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
236
|
+
container?: any;
|
237
|
+
blueprint?: any;
|
238
|
+
colorSchemaType?: any;
|
239
|
+
blueprintType?: any;
|
240
|
+
colors?: any;
|
241
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
242
|
+
propsDefinition: Omit<Readonly<{
|
243
|
+
container?: any;
|
244
|
+
blueprint?: any;
|
245
|
+
colorSchemaType?: any;
|
246
|
+
blueprintType?: any;
|
247
|
+
colors?: any;
|
248
|
+
} & {
|
249
|
+
length?: number;
|
250
|
+
class?: String | String[];
|
251
|
+
disabled?: boolean;
|
252
|
+
"onUpdate:modelValue"?: (value: number) => any;
|
253
|
+
"v-model"?: number;
|
254
|
+
modelValue?: number;
|
255
|
+
prevIcon?: string | FunctionalComponent<{}, {}, any>;
|
256
|
+
nextIcon?: string | FunctionalComponent<{}, {}, any>;
|
257
|
+
totalVisible?: number;
|
258
|
+
}>, never>;
|
259
|
+
};
|
260
|
+
export default _default;
|
@@ -36,10 +36,10 @@ declare const _default: {
|
|
36
36
|
readonly toned?: boolean;
|
37
37
|
readonly readonly?: boolean;
|
38
38
|
readonly loading?: boolean;
|
39
|
-
readonly clearable?: boolean;
|
40
|
-
readonly rules?: ValidationRule[];
|
41
39
|
readonly hint?: string;
|
42
40
|
readonly persistentHint?: boolean;
|
41
|
+
readonly clearable?: boolean;
|
42
|
+
readonly rules?: ValidationRule[];
|
43
43
|
readonly itemTitle?: any;
|
44
44
|
readonly itemValue?: any;
|
45
45
|
readonly returnObject?: boolean;
|
@@ -493,10 +493,10 @@ declare const _default: {
|
|
493
493
|
toned?: boolean;
|
494
494
|
readonly?: boolean;
|
495
495
|
loading?: boolean;
|
496
|
-
clearable?: boolean;
|
497
|
-
rules?: ValidationRule[];
|
498
496
|
hint?: string;
|
499
497
|
persistentHint?: boolean;
|
498
|
+
clearable?: boolean;
|
499
|
+
rules?: ValidationRule[];
|
500
500
|
itemTitle?: any;
|
501
501
|
itemValue?: any;
|
502
502
|
returnObject?: boolean;
|
@@ -22,9 +22,9 @@ declare const _default: {
|
|
22
22
|
readonly "v-model"?: boolean;
|
23
23
|
readonly modelValue?: boolean;
|
24
24
|
readonly hideDetails?: boolean;
|
25
|
-
readonly rules?: ValidationRule[];
|
26
25
|
readonly hint?: string;
|
27
26
|
readonly persistentHint?: boolean;
|
27
|
+
readonly rules?: ValidationRule[];
|
28
28
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
29
29
|
hideDetails: {
|
30
30
|
type: import("vue").PropType<boolean>;
|
@@ -278,9 +278,9 @@ declare const _default: {
|
|
278
278
|
"v-model"?: boolean;
|
279
279
|
modelValue?: boolean;
|
280
280
|
hideDetails?: boolean;
|
281
|
-
rules?: ValidationRule[];
|
282
281
|
hint?: string;
|
283
282
|
persistentHint?: boolean;
|
283
|
+
rules?: ValidationRule[];
|
284
284
|
}>, "onUpdate:modelValue"> & {
|
285
285
|
"onUpdate:modelValue"?: (value: any) => any;
|
286
286
|
};
|
@@ -28,6 +28,8 @@ declare const _default: {
|
|
28
28
|
} & VTextAreaSlots;
|
29
29
|
readonly autofocus?: boolean;
|
30
30
|
readonly placeholder?: string;
|
31
|
+
readonly hint?: string;
|
32
|
+
readonly persistentHint?: boolean;
|
31
33
|
readonly clearable?: boolean;
|
32
34
|
readonly rules?: ValidationRule[];
|
33
35
|
"onUpdate:focused"?: (value: boolean) => any;
|
@@ -57,6 +59,13 @@ declare const _default: {
|
|
57
59
|
label: {
|
58
60
|
type: import("vue").PropType<string>;
|
59
61
|
};
|
62
|
+
persistentHint: {
|
63
|
+
type: import("vue").PropType<boolean>;
|
64
|
+
required: false;
|
65
|
+
};
|
66
|
+
hint: {
|
67
|
+
type: import("vue").PropType<string>;
|
68
|
+
};
|
60
69
|
"onUpdate:modelValue": {
|
61
70
|
type: import("vue").PropType<(value: string) => any>;
|
62
71
|
};
|
@@ -123,6 +132,13 @@ declare const _default: {
|
|
123
132
|
label: {
|
124
133
|
type: import("vue").PropType<string>;
|
125
134
|
};
|
135
|
+
persistentHint: {
|
136
|
+
type: import("vue").PropType<boolean>;
|
137
|
+
required: false;
|
138
|
+
};
|
139
|
+
hint: {
|
140
|
+
type: import("vue").PropType<string>;
|
141
|
+
};
|
126
142
|
"onUpdate:modelValue": {
|
127
143
|
type: import("vue").PropType<(value: string) => any>;
|
128
144
|
};
|
@@ -205,6 +221,13 @@ declare const _default: {
|
|
205
221
|
label: {
|
206
222
|
type: import("vue").PropType<string>;
|
207
223
|
};
|
224
|
+
persistentHint: {
|
225
|
+
type: import("vue").PropType<boolean>;
|
226
|
+
required: false;
|
227
|
+
};
|
228
|
+
hint: {
|
229
|
+
type: import("vue").PropType<string>;
|
230
|
+
};
|
208
231
|
"onUpdate:modelValue": {
|
209
232
|
type: import("vue").PropType<(value: string) => any>;
|
210
233
|
};
|
@@ -261,6 +284,13 @@ declare const _default: {
|
|
261
284
|
label: {
|
262
285
|
type: import("vue").PropType<string>;
|
263
286
|
};
|
287
|
+
persistentHint: {
|
288
|
+
type: import("vue").PropType<boolean>;
|
289
|
+
required: false;
|
290
|
+
};
|
291
|
+
hint: {
|
292
|
+
type: import("vue").PropType<string>;
|
293
|
+
};
|
264
294
|
"onUpdate:modelValue": {
|
265
295
|
type: import("vue").PropType<(value: string) => any>;
|
266
296
|
};
|
@@ -318,6 +348,8 @@ declare const _default: {
|
|
318
348
|
} & VTextAreaSlots;
|
319
349
|
autofocus?: boolean;
|
320
350
|
placeholder?: string;
|
351
|
+
hint?: string;
|
352
|
+
persistentHint?: boolean;
|
321
353
|
clearable?: boolean;
|
322
354
|
rules?: ValidationRule[];
|
323
355
|
}>, "onUpdate:modelValue" | "onUpdate:focused" | "onClick:button"> & {
|
@@ -34,10 +34,10 @@ declare const _default: {
|
|
34
34
|
readonly toned?: boolean;
|
35
35
|
readonly placeholder?: string;
|
36
36
|
readonly loading?: boolean;
|
37
|
-
readonly clearable?: boolean;
|
38
|
-
readonly rules?: ValidationRule[];
|
39
37
|
readonly hint?: string;
|
40
38
|
readonly persistentHint?: boolean;
|
39
|
+
readonly clearable?: boolean;
|
40
|
+
readonly rules?: ValidationRule[];
|
41
41
|
readonly suffix?: string;
|
42
42
|
onDoc$?: (description?: string) => any;
|
43
43
|
"onUpdate:focused"?: (value: boolean) => any;
|
@@ -454,10 +454,10 @@ declare const _default: {
|
|
454
454
|
toned?: boolean;
|
455
455
|
placeholder?: string;
|
456
456
|
loading?: boolean;
|
457
|
-
clearable?: boolean;
|
458
|
-
rules?: ValidationRule[];
|
459
457
|
hint?: string;
|
460
458
|
persistentHint?: boolean;
|
459
|
+
clearable?: boolean;
|
460
|
+
rules?: ValidationRule[];
|
461
461
|
suffix?: string;
|
462
462
|
}>, "onUpdate:modelValue" | "onDoc$" | "onUpdate:focused" | "onClick:clear" | "onClick:button"> & {
|
463
463
|
"onUpdate:modelValue"?: (value: string) => any;
|
@@ -18,6 +18,7 @@ declare const _default: {
|
|
18
18
|
readonly "card-style"?: ThemeDefinition;
|
19
19
|
readonly hideEdit?: boolean;
|
20
20
|
readonly readOnly?: boolean;
|
21
|
+
readonly topicId?: string;
|
21
22
|
readonly contextParams?: {
|
22
23
|
[key: string]: string | number;
|
23
24
|
};
|
@@ -28,7 +29,6 @@ declare const _default: {
|
|
28
29
|
readonly "rich-text-settings"?: unknown;
|
29
30
|
readonly enableMention?: boolean;
|
30
31
|
readonly "enable-mention"?: boolean;
|
31
|
-
readonly topicId?: string;
|
32
32
|
readonly "topic-id"?: string;
|
33
33
|
readonly comments?: Comment[];
|
34
34
|
readonly showMoreSize?: number;
|
@@ -633,6 +633,7 @@ declare const _default: {
|
|
633
633
|
"card-style"?: ThemeDefinition;
|
634
634
|
hideEdit?: boolean;
|
635
635
|
readOnly?: boolean;
|
636
|
+
topicId?: string;
|
636
637
|
contextParams?: {
|
637
638
|
[key: string]: string | number;
|
638
639
|
};
|
@@ -643,7 +644,6 @@ declare const _default: {
|
|
643
644
|
"rich-text-settings"?: unknown;
|
644
645
|
enableMention?: boolean;
|
645
646
|
"enable-mention"?: boolean;
|
646
|
-
topicId?: string;
|
647
647
|
"topic-id"?: string;
|
648
648
|
comments?: Comment[];
|
649
649
|
showMoreSize?: number;
|
@@ -1,13 +1,13 @@
|
|
1
|
-
import {
|
1
|
+
import { IUserReaction } from "@omnia/fx-models";
|
2
2
|
type ReactionVariants = "picker" | "viewer" | "default";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): {
|
5
5
|
$: import("vue").ComponentInternalInstance;
|
6
6
|
$data: {};
|
7
7
|
$props: Partial<{}> & Omit<{
|
8
|
-
"onUpdate:modelValue"?: ((value:
|
9
|
-
readonly "v-model"?:
|
10
|
-
readonly modelValue?:
|
8
|
+
"onUpdate:modelValue"?: ((value: Required<IUserReaction>[]) => any) & ((value: Required<IUserReaction>[]) => any);
|
9
|
+
readonly "v-model"?: Required<IUserReaction>[];
|
10
|
+
readonly modelValue?: Required<IUserReaction>[];
|
11
11
|
readonly "v-slots"?: {
|
12
12
|
default?: import("../DefineVueTypings").Slot<any[]>;
|
13
13
|
} & {
|
@@ -15,7 +15,9 @@ declare const _default: {
|
|
15
15
|
};
|
16
16
|
readonly variant?: ReactionVariants;
|
17
17
|
readonly stacked?: boolean;
|
18
|
-
"onReaction:
|
18
|
+
"onReaction:added"?: (value: Required<IUserReaction>) => any;
|
19
|
+
"onReaction:removed"?: (value: Required<IUserReaction>) => any;
|
20
|
+
"onReaction:selected"?: (value: Required<IUserReaction>) => any;
|
19
21
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
20
22
|
"v-slots": import("vue").Prop<{
|
21
23
|
default?: import("../DefineVueTypings").Slot<any[]>;
|
@@ -31,19 +33,21 @@ declare const _default: {
|
|
31
33
|
required: false;
|
32
34
|
};
|
33
35
|
"onUpdate:modelValue": {
|
34
|
-
type: import("vue").PropType<(value:
|
36
|
+
type: import("vue").PropType<(value: Required<IUserReaction>[]) => any>;
|
35
37
|
};
|
36
38
|
"v-model": {
|
37
|
-
type: import("vue").PropType<
|
39
|
+
type: import("vue").PropType<Required<IUserReaction>[]>;
|
38
40
|
required: false;
|
39
41
|
};
|
40
42
|
modelValue: {
|
41
|
-
type: import("vue").PropType<
|
43
|
+
type: import("vue").PropType<Required<IUserReaction>[]>;
|
42
44
|
required: false;
|
43
45
|
};
|
44
46
|
}>> & {
|
45
|
-
"onUpdate:modelValue"?: (value:
|
46
|
-
"onReaction:
|
47
|
+
"onUpdate:modelValue"?: (value: Required<IUserReaction>[]) => any;
|
48
|
+
"onReaction:added"?: (value: Required<IUserReaction>) => any;
|
49
|
+
"onReaction:removed"?: (value: Required<IUserReaction>) => any;
|
50
|
+
"onReaction:selected"?: (value: Required<IUserReaction>) => any;
|
47
51
|
}, never>;
|
48
52
|
$attrs: {
|
49
53
|
[x: string]: unknown;
|
@@ -56,7 +60,7 @@ declare const _default: {
|
|
56
60
|
}>;
|
57
61
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
58
62
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
59
|
-
$emit: ((event: "update:modelValue", value:
|
63
|
+
$emit: ((event: "update:modelValue", value: Required<IUserReaction>[]) => void) & ((event: "reaction:added", value: Required<IUserReaction>) => void) & ((event: "reaction:removed", value: Required<IUserReaction>) => void) & ((event: "reaction:selected", value: Required<IUserReaction>) => void);
|
60
64
|
$el: any;
|
61
65
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
62
66
|
"v-slots": import("vue").Prop<{
|
@@ -73,22 +77,26 @@ declare const _default: {
|
|
73
77
|
required: false;
|
74
78
|
};
|
75
79
|
"onUpdate:modelValue": {
|
76
|
-
type: import("vue").PropType<(value:
|
80
|
+
type: import("vue").PropType<(value: Required<IUserReaction>[]) => any>;
|
77
81
|
};
|
78
82
|
"v-model": {
|
79
|
-
type: import("vue").PropType<
|
83
|
+
type: import("vue").PropType<Required<IUserReaction>[]>;
|
80
84
|
required: false;
|
81
85
|
};
|
82
86
|
modelValue: {
|
83
|
-
type: import("vue").PropType<
|
87
|
+
type: import("vue").PropType<Required<IUserReaction>[]>;
|
84
88
|
required: false;
|
85
89
|
};
|
86
90
|
}>> & {
|
87
|
-
"onUpdate:modelValue"?: (value:
|
88
|
-
"onReaction:
|
91
|
+
"onUpdate:modelValue"?: (value: Required<IUserReaction>[]) => any;
|
92
|
+
"onReaction:added"?: (value: Required<IUserReaction>) => any;
|
93
|
+
"onReaction:removed"?: (value: Required<IUserReaction>) => any;
|
94
|
+
"onReaction:selected"?: (value: Required<IUserReaction>) => any;
|
89
95
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
90
|
-
"update:modelValue": (value:
|
91
|
-
"reaction:
|
96
|
+
"update:modelValue": (value: Required<IUserReaction>[]) => true;
|
97
|
+
"reaction:added": (value: Required<IUserReaction>) => true;
|
98
|
+
"reaction:removed": (value: Required<IUserReaction>) => true;
|
99
|
+
"reaction:selected": (value: Required<IUserReaction>) => true;
|
92
100
|
}, string, {}, {}, string, {}> & {
|
93
101
|
beforeCreate?: (() => void) | (() => void)[];
|
94
102
|
created?: (() => void) | (() => void)[];
|
@@ -124,19 +132,21 @@ declare const _default: {
|
|
124
132
|
required: false;
|
125
133
|
};
|
126
134
|
"onUpdate:modelValue": {
|
127
|
-
type: import("vue").PropType<(value:
|
135
|
+
type: import("vue").PropType<(value: Required<IUserReaction>[]) => any>;
|
128
136
|
};
|
129
137
|
"v-model": {
|
130
|
-
type: import("vue").PropType<
|
138
|
+
type: import("vue").PropType<Required<IUserReaction>[]>;
|
131
139
|
required: false;
|
132
140
|
};
|
133
141
|
modelValue: {
|
134
|
-
type: import("vue").PropType<
|
142
|
+
type: import("vue").PropType<Required<IUserReaction>[]>;
|
135
143
|
required: false;
|
136
144
|
};
|
137
145
|
}>> & {
|
138
|
-
"onUpdate:modelValue"?: (value:
|
139
|
-
"onReaction:
|
146
|
+
"onUpdate:modelValue"?: (value: Required<IUserReaction>[]) => any;
|
147
|
+
"onReaction:added"?: (value: Required<IUserReaction>) => any;
|
148
|
+
"onReaction:removed"?: (value: Required<IUserReaction>) => any;
|
149
|
+
"onReaction:selected"?: (value: Required<IUserReaction>) => any;
|
140
150
|
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
141
151
|
__isFragment?: never;
|
142
152
|
__isTeleport?: never;
|
@@ -156,27 +166,31 @@ declare const _default: {
|
|
156
166
|
required: false;
|
157
167
|
};
|
158
168
|
"onUpdate:modelValue": {
|
159
|
-
type: import("vue").PropType<(value:
|
169
|
+
type: import("vue").PropType<(value: Required<IUserReaction>[]) => any>;
|
160
170
|
};
|
161
171
|
"v-model": {
|
162
|
-
type: import("vue").PropType<
|
172
|
+
type: import("vue").PropType<Required<IUserReaction>[]>;
|
163
173
|
required: false;
|
164
174
|
};
|
165
175
|
modelValue: {
|
166
|
-
type: import("vue").PropType<
|
176
|
+
type: import("vue").PropType<Required<IUserReaction>[]>;
|
167
177
|
required: false;
|
168
178
|
};
|
169
179
|
}>> & {
|
170
|
-
"onUpdate:modelValue"?: (value:
|
171
|
-
"onReaction:
|
180
|
+
"onUpdate:modelValue"?: (value: Required<IUserReaction>[]) => any;
|
181
|
+
"onReaction:added"?: (value: Required<IUserReaction>) => any;
|
182
|
+
"onReaction:removed"?: (value: Required<IUserReaction>) => any;
|
183
|
+
"onReaction:selected"?: (value: Required<IUserReaction>) => any;
|
172
184
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
173
|
-
"update:modelValue": (value:
|
174
|
-
"reaction:
|
185
|
+
"update:modelValue": (value: Required<IUserReaction>[]) => true;
|
186
|
+
"reaction:added": (value: Required<IUserReaction>) => true;
|
187
|
+
"reaction:removed": (value: Required<IUserReaction>) => true;
|
188
|
+
"reaction:selected": (value: Required<IUserReaction>) => true;
|
175
189
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
176
190
|
propsDefinition: Omit<Readonly<{} & {
|
177
|
-
"onUpdate:modelValue"?: (value:
|
178
|
-
"v-model"?:
|
179
|
-
modelValue?:
|
191
|
+
"onUpdate:modelValue"?: (value: Required<IUserReaction>[]) => any;
|
192
|
+
"v-model"?: Required<IUserReaction>[];
|
193
|
+
modelValue?: Required<IUserReaction>[];
|
180
194
|
"v-slots"?: {
|
181
195
|
default?: import("../DefineVueTypings").Slot<any[]>;
|
182
196
|
} & {
|
@@ -184,9 +198,11 @@ declare const _default: {
|
|
184
198
|
};
|
185
199
|
variant?: ReactionVariants;
|
186
200
|
stacked?: boolean;
|
187
|
-
}>, "onUpdate:modelValue" | "onReaction:selected"> & {
|
188
|
-
"onUpdate:modelValue"?: (value:
|
189
|
-
"onReaction:
|
201
|
+
}>, "onUpdate:modelValue" | "onReaction:added" | "onReaction:removed" | "onReaction:selected"> & {
|
202
|
+
"onUpdate:modelValue"?: (value: Required<IUserReaction>[]) => any;
|
203
|
+
"onReaction:added"?: (value: Required<IUserReaction>) => any;
|
204
|
+
"onReaction:removed"?: (value: Required<IUserReaction>) => any;
|
205
|
+
"onReaction:selected"?: (value: Required<IUserReaction>) => any;
|
190
206
|
};
|
191
207
|
};
|
192
208
|
export default _default;
|
package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/Blueprints.d.ts
CHANGED
@@ -11,6 +11,12 @@ export declare class MD2Blueprint implements BlueprintDefinition {
|
|
11
11
|
definitions: Array<BlueprintItemDefinition>;
|
12
12
|
constructor(preview?: boolean);
|
13
13
|
}
|
14
|
+
export declare class MD3FunkyBlueprint implements BlueprintDefinition {
|
15
|
+
id: Guid;
|
16
|
+
name: string;
|
17
|
+
definitions: Array<BlueprintItemDefinition>;
|
18
|
+
constructor(preview?: boolean);
|
19
|
+
}
|
14
20
|
export declare class MD3Blueprint implements BlueprintDefinition {
|
15
21
|
id: Guid;
|
16
22
|
name: string;
|