@omnia/fx 8.0.114-dev → 8.0.115-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/shared/models/theming/ComponentDefinitions.d.ts +15 -6
- package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +6 -4
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/ButtonStylePicker.d.ts +66 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/IconStylePicker.d.ts +70 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/TextStylePicker.d.ts +66 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/typographypicker/TypographyPicker.d.ts +64 -409
- package/internal-do-not-import-from-here/ux/borderpicker/BorderPicker.d.ts +63 -150
- package/internal-do-not-import-from-here/ux/enterpriseglossary/EnterpriseGlossaryPicker.d.ts +63 -14
- package/internal-do-not-import-from-here/ux/enterpriseglossary/IEnterpriseGlossaryPicker.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/fillpicker/FillPicker.d.ts +64 -119
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/journey/JourneyMenu.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/jsonexportimport/ExportImport.d.ts +65 -0
- package/internal-do-not-import-from-here/ux/jsonexportimport/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/jsonexportimport/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/jsonexportimport/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +35 -9
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +31 -10
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/radio/Radio.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/oxide/rating/Rating.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +22 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/ExampleComponentsMenu.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleButtons.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleComponentMenu.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/SampleVariants.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/docs/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/persona/Persona.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +1049 -15
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Blueprints.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Typography.d.ts +3 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +69 -0
- package/package.json +2 -2
@@ -1,7 +1,7 @@
|
|
1
|
-
import { BackgroundDefinition,
|
1
|
+
import { BackgroundDefinition, FillDefinition } from "./ThemeDefinitionV2";
|
2
2
|
import { ChromeDefinition } from "./ChromeDefinition";
|
3
3
|
import { SpacingDefinition, SpacingSettings } from "./SpacingSetting";
|
4
|
-
import { TypographyDefinition } from "./TypographyDefinition";
|
4
|
+
import { TypographyDefinition, TypographyValue } from "./TypographyDefinition";
|
5
5
|
export interface BoxDimensions extends SpacingSettings {
|
6
6
|
}
|
7
7
|
export interface ChromeBluePrintDefinitions {
|
@@ -56,7 +56,7 @@ export interface SpacingItemBluePrintDefinition {
|
|
56
56
|
inner: SpacingDefinition;
|
57
57
|
}
|
58
58
|
export type SpacingBlueprintTypes = "inner" | "layout";
|
59
|
-
export type WebBlueprintItemDefintionType = "button" | "searchbox";
|
59
|
+
export type WebBlueprintItemDefintionType = "button" | "searchbox" | "text" | "icon";
|
60
60
|
export declare enum WebBlueprintItemDefintionTypes {
|
61
61
|
button = "button",
|
62
62
|
searchbox = "searchbox"
|
@@ -75,10 +75,19 @@ export interface SearchBoxBlueprint extends BlueprintItemDefinition {
|
|
75
75
|
}
|
76
76
|
export interface ButtonBlueprint extends BlueprintItemDefinition {
|
77
77
|
type: "button";
|
78
|
-
density?: "compact" | "comfortable";
|
79
|
-
size?: "x-small" | "small" | "large" | "x-large";
|
80
78
|
padding?: SpacingSettings;
|
81
79
|
background?: BackgroundDefinition;
|
82
80
|
alterCase?: boolean;
|
83
|
-
|
81
|
+
text?: TextBlueprint;
|
82
|
+
icon?: IconBlueprint;
|
83
|
+
}
|
84
|
+
export interface TextBlueprint extends BlueprintItemDefinition {
|
85
|
+
type: "text";
|
86
|
+
color?: FillDefinition;
|
87
|
+
typography?: TypographyValue;
|
88
|
+
}
|
89
|
+
export interface IconBlueprint extends BlueprintItemDefinition {
|
90
|
+
type: "icon";
|
91
|
+
color?: FillDefinition;
|
92
|
+
size?: number;
|
84
93
|
}
|
@@ -45,7 +45,7 @@ export declare enum TypographyTypes {
|
|
45
45
|
navigation = "navigation"
|
46
46
|
}
|
47
47
|
export interface ThemedTypographyValue {
|
48
|
-
|
48
|
+
type: TypographyType;
|
49
49
|
size: TypographySize;
|
50
50
|
}
|
51
51
|
export type TypographyValue = string | ThemedTypographyValue;
|
@@ -69,12 +69,12 @@ type VuetifySlots<T> = {
|
|
69
69
|
type VuetifyValue<T> = T extends {
|
70
70
|
value?: any;
|
71
71
|
} ? T["value"] : T;
|
72
|
-
import { VTooltip, VTextarea, VSwitch, VRadioGroup, VLazy, VForm, VTextField, VBtn, VBtnToggle, VBtnGroup, VNavigationDrawer, VList, VListItem, VListGroup, VListImg, VListItemAction, VListItemTitle, VListItemSubtitle, VListItemMedia, VListSubheader, VDialog, VDialogBottomTransition, VDialogTopTransition, VDialogTransition, VCard, VCardActions, VCardItem, VCardSubtitle, VCardText, VCardTitle, VExpansionPanels, VExpansionPanel, VExpansionPanelText, VExpansionPanelTitle, VAutocomplete, VMenu, VTable, VCheckbox, VCheckboxBtn, VVirtualScroll, VChip, VSelect, VBadge, VCol, VPagination, VRating, VRangeSlider, VSnackbar } from "vuetify/components";
|
72
|
+
import { VTooltip, VTextarea, VSwitch, VRadioGroup, VLazy, VForm, VTextField, VBtn, VBtnToggle, VBtnGroup, VNavigationDrawer, VList, VListItem, VListGroup, VListImg, VListItemAction, VListItemTitle, VListItemSubtitle, VListItemMedia, VListSubheader, VDialog, VDialogBottomTransition, VDialogTopTransition, VDialogTransition, VCard, VCardActions, VCardItem, VCardSubtitle, VCardText, VCardTitle, VExpansionPanels, VExpansionPanel, VExpansionPanelText, VExpansionPanelTitle, VAutocomplete, VMenu, VTable, VCheckbox, VCheckboxBtn, VVirtualScroll, VChip, VSelect, VBadge, VCol, VPagination, VRating, VRangeSlider, VSnackbar, VRadio } from "vuetify/components";
|
73
73
|
import { Intersect } from "vuetify/directives";
|
74
74
|
import { VDataTable, VDataTableRow, VDataTableRows, VDataTableVirtual, VDataTableServer, VInfiniteScroll, VDatePicker } from "vuetify/components";
|
75
|
-
export interface VDataTableServerSlots extends VuetifySlots<VuetifyProps<Pick<VDataTableServer, "$
|
75
|
+
export interface VDataTableServerSlots extends VuetifySlots<VuetifyProps<Pick<VDataTableServer, "$props">>> {
|
76
76
|
}
|
77
|
-
export interface VDataTableSlots extends VuetifySlots<VuetifyProps<Pick<VDataTable, "$
|
77
|
+
export interface VDataTableSlots extends VuetifySlots<VuetifyProps<Pick<VDataTable, "$props">>> {
|
78
78
|
}
|
79
79
|
export interface VListItemSlots extends VuetifySlots<VuetifyProps<Pick<VListItem, "$props">>> {
|
80
80
|
}
|
@@ -84,7 +84,9 @@ export interface VTextAreaSlots extends VuetifySlots<VuetifyProps<Pick<VTextarea
|
|
84
84
|
}
|
85
85
|
export interface VRatingSlots extends VuetifySlots<VuetifyProps<Pick<VRating, "$props">>> {
|
86
86
|
}
|
87
|
-
export interface VSelectSlots extends VuetifySlots<VuetifyProps<Pick<VSelect, "$
|
87
|
+
export interface VSelectSlots extends VuetifySlots<VuetifyProps<Pick<VSelect, "$props">>> {
|
88
|
+
}
|
89
|
+
export interface VRadioSlots extends VuetifySlots<VuetifyProps<Pick<VRadio, "$props">>> {
|
88
90
|
}
|
89
91
|
declare global {
|
90
92
|
namespace JSX {
|
@@ -0,0 +1,66 @@
|
|
1
|
+
import { ButtonBlueprint } from "@omnia/fx-models";
|
2
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
declare const _default: (props: {
|
5
|
+
"v-model"?: ButtonBlueprint;
|
6
|
+
} & {
|
7
|
+
"onUpdate:modelValue"?: (value: ButtonBlueprint) => void;
|
8
|
+
} & {
|
9
|
+
modelValue?: ButtonBlueprint;
|
10
|
+
} & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue"> & {
|
11
|
+
"v-slots"?: {
|
12
|
+
default?: import("vue").Slot;
|
13
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
14
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">) => {
|
15
|
+
$: import("vue").ComponentInternalInstance;
|
16
|
+
$data: {};
|
17
|
+
$props: {};
|
18
|
+
$attrs: {
|
19
|
+
[x: string]: unknown;
|
20
|
+
};
|
21
|
+
$refs: {
|
22
|
+
[x: string]: unknown;
|
23
|
+
};
|
24
|
+
$slots: Readonly<{
|
25
|
+
[name: string]: import("vue").Slot<any>;
|
26
|
+
}>;
|
27
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
28
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
29
|
+
$emit: (event: string, ...args: any[]) => void;
|
30
|
+
$el: any;
|
31
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
32
|
+
beforeCreate?: (() => void) | (() => void)[];
|
33
|
+
created?: (() => void) | (() => void)[];
|
34
|
+
beforeMount?: (() => void) | (() => void)[];
|
35
|
+
mounted?: (() => void) | (() => void)[];
|
36
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
37
|
+
updated?: (() => void) | (() => void)[];
|
38
|
+
activated?: (() => void) | (() => void)[];
|
39
|
+
deactivated?: (() => void) | (() => void)[];
|
40
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
41
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
42
|
+
destroyed?: (() => void) | (() => void)[];
|
43
|
+
unmounted?: (() => void) | (() => void)[];
|
44
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
45
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
46
|
+
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)[];
|
47
|
+
};
|
48
|
+
$forceUpdate: () => void;
|
49
|
+
$nextTick: typeof import("vue").nextTick;
|
50
|
+
$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;
|
51
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
52
|
+
propsDefinition: {
|
53
|
+
"v-model"?: ButtonBlueprint;
|
54
|
+
} & {
|
55
|
+
"onUpdate:modelValue"?: (value: ButtonBlueprint) => void;
|
56
|
+
} & {
|
57
|
+
modelValue?: ButtonBlueprint;
|
58
|
+
} & {
|
59
|
+
"v-slots"?: {
|
60
|
+
default?: import("vue").Slot;
|
61
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
62
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
|
63
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
64
|
+
[key: string]: any;
|
65
|
+
}>;
|
66
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
3
|
+
P: {};
|
4
|
+
B: {};
|
5
|
+
D: {};
|
6
|
+
C: {};
|
7
|
+
M: {};
|
8
|
+
Defaults: {};
|
9
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
|
10
|
+
__isFragment?: never;
|
11
|
+
__isTeleport?: never;
|
12
|
+
__isSuspense?: never;
|
13
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
14
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
15
|
+
};
|
16
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/blueprintpickers/buttonstylepicker/docs/index.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/IconStylePicker.d.ts
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
import { IIcon, IconBlueprint } from "@omnia/fx-models";
|
2
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
declare const _default: (props: {
|
5
|
+
"v-model"?: IconBlueprint;
|
6
|
+
} & {
|
7
|
+
"onUpdate:modelValue"?: (value: IconBlueprint) => void;
|
8
|
+
} & {
|
9
|
+
modelValue?: IconBlueprint;
|
10
|
+
} & {
|
11
|
+
icon?: IIcon;
|
12
|
+
} & Omit<{}, "icon" | "v-model" | "onUpdate:modelValue" | "modelValue"> & {
|
13
|
+
"v-slots"?: {
|
14
|
+
default?: import("vue").Slot;
|
15
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
16
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "v-model" | "onUpdate:modelValue" | "modelValue">) => {
|
17
|
+
$: import("vue").ComponentInternalInstance;
|
18
|
+
$data: {};
|
19
|
+
$props: {};
|
20
|
+
$attrs: {
|
21
|
+
[x: string]: unknown;
|
22
|
+
};
|
23
|
+
$refs: {
|
24
|
+
[x: string]: unknown;
|
25
|
+
};
|
26
|
+
$slots: Readonly<{
|
27
|
+
[name: string]: import("vue").Slot<any>;
|
28
|
+
}>;
|
29
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
30
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
31
|
+
$emit: (event: string, ...args: any[]) => void;
|
32
|
+
$el: any;
|
33
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
34
|
+
beforeCreate?: (() => void) | (() => void)[];
|
35
|
+
created?: (() => void) | (() => void)[];
|
36
|
+
beforeMount?: (() => void) | (() => void)[];
|
37
|
+
mounted?: (() => void) | (() => void)[];
|
38
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
39
|
+
updated?: (() => void) | (() => void)[];
|
40
|
+
activated?: (() => void) | (() => void)[];
|
41
|
+
deactivated?: (() => void) | (() => void)[];
|
42
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
43
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
44
|
+
destroyed?: (() => void) | (() => void)[];
|
45
|
+
unmounted?: (() => void) | (() => void)[];
|
46
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
47
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
48
|
+
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)[];
|
49
|
+
};
|
50
|
+
$forceUpdate: () => void;
|
51
|
+
$nextTick: typeof import("vue").nextTick;
|
52
|
+
$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;
|
53
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
54
|
+
propsDefinition: {
|
55
|
+
"v-model"?: IconBlueprint;
|
56
|
+
} & {
|
57
|
+
"onUpdate:modelValue"?: (value: IconBlueprint) => void;
|
58
|
+
} & {
|
59
|
+
modelValue?: IconBlueprint;
|
60
|
+
} & {
|
61
|
+
icon?: IIcon;
|
62
|
+
} & {
|
63
|
+
"v-slots"?: {
|
64
|
+
default?: import("vue").Slot;
|
65
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
66
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "v-model" | "onUpdate:modelValue" | "modelValue">;
|
67
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
68
|
+
[key: string]: any;
|
69
|
+
}>;
|
70
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
3
|
+
P: {};
|
4
|
+
B: {};
|
5
|
+
D: {};
|
6
|
+
C: {};
|
7
|
+
M: {};
|
8
|
+
Defaults: {};
|
9
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
|
10
|
+
__isFragment?: never;
|
11
|
+
__isTeleport?: never;
|
12
|
+
__isSuspense?: never;
|
13
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
14
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
15
|
+
};
|
16
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/TextStylePicker.d.ts
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
import { TextBlueprint } from "@omnia/fx-models";
|
2
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
declare const _default: (props: {
|
5
|
+
"v-model"?: TextBlueprint;
|
6
|
+
} & {
|
7
|
+
"onUpdate:modelValue"?: (value: TextBlueprint) => void;
|
8
|
+
} & {
|
9
|
+
modelValue?: TextBlueprint;
|
10
|
+
} & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue"> & {
|
11
|
+
"v-slots"?: {
|
12
|
+
default?: import("vue").Slot;
|
13
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
14
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">) => {
|
15
|
+
$: import("vue").ComponentInternalInstance;
|
16
|
+
$data: {};
|
17
|
+
$props: {};
|
18
|
+
$attrs: {
|
19
|
+
[x: string]: unknown;
|
20
|
+
};
|
21
|
+
$refs: {
|
22
|
+
[x: string]: unknown;
|
23
|
+
};
|
24
|
+
$slots: Readonly<{
|
25
|
+
[name: string]: import("vue").Slot<any>;
|
26
|
+
}>;
|
27
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
28
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
29
|
+
$emit: (event: string, ...args: any[]) => void;
|
30
|
+
$el: any;
|
31
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
32
|
+
beforeCreate?: (() => void) | (() => void)[];
|
33
|
+
created?: (() => void) | (() => void)[];
|
34
|
+
beforeMount?: (() => void) | (() => void)[];
|
35
|
+
mounted?: (() => void) | (() => void)[];
|
36
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
37
|
+
updated?: (() => void) | (() => void)[];
|
38
|
+
activated?: (() => void) | (() => void)[];
|
39
|
+
deactivated?: (() => void) | (() => void)[];
|
40
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
41
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
42
|
+
destroyed?: (() => void) | (() => void)[];
|
43
|
+
unmounted?: (() => void) | (() => void)[];
|
44
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
45
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
46
|
+
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)[];
|
47
|
+
};
|
48
|
+
$forceUpdate: () => void;
|
49
|
+
$nextTick: typeof import("vue").nextTick;
|
50
|
+
$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;
|
51
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
52
|
+
propsDefinition: {
|
53
|
+
"v-model"?: TextBlueprint;
|
54
|
+
} & {
|
55
|
+
"onUpdate:modelValue"?: (value: TextBlueprint) => void;
|
56
|
+
} & {
|
57
|
+
modelValue?: TextBlueprint;
|
58
|
+
} & {
|
59
|
+
"v-slots"?: {
|
60
|
+
default?: import("vue").Slot;
|
61
|
+
} & DefineSlot<"activator", () => VNodeChild>;
|
62
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
|
63
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
64
|
+
[key: string]: any;
|
65
|
+
}>;
|
66
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
3
|
+
P: {};
|
4
|
+
B: {};
|
5
|
+
D: {};
|
6
|
+
C: {};
|
7
|
+
M: {};
|
8
|
+
Defaults: {};
|
9
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
|
10
|
+
__isFragment?: never;
|
11
|
+
__isTeleport?: never;
|
12
|
+
__isSuspense?: never;
|
13
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
14
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
15
|
+
};
|
16
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|