@omnia/fx 8.0.177-dev → 8.0.178-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/ux/ComponentTypings.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/markdown/plugins/ThemeStylingPlugin.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/oxide/calendar/Calendar.d.ts +86 -0
- package/internal-do-not-import-from-here/ux/oxide/calendar/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/calendar/docs/SampleComponent.d.ts +51 -0
- package/internal-do-not-import-from-here/ux/oxide/calendar/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +15 -3
- package/internal-do-not-import-from-here/ux/oxide/speeddial/SpeedDial.d.ts +59 -0
- package/internal-do-not-import-from-here/ux/oxide/speeddial/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/speeddial/docs/SampleComponent.d.ts +51 -0
- package/internal-do-not-import-from-here/ux/oxide/speeddial/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/timepicker/TimePicker.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/StateTree.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/velcron/editor/models/Shared.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronEditorDescriptors.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/NumberEditor.d.ts +427 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +24 -37
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorpicker/ColorPicker.css.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorpicker/ColorPicker.d.ts +0 -31
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemamapper/ColorSchemaMapper.css.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemamapper/ColorSchemaMapper.d.ts +0 -37
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemareferencepicker/ColorSchemaReferencePicker.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ratiopicker/RatioPicker.css.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ratiopicker/RatioPicker.d.ts +0 -32
@@ -72,6 +72,7 @@ type VuetifyValue<T> = T extends {
|
|
72
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, VSlideGroup, VSlideGroupItem } from "vuetify/components";
|
73
73
|
import { Intersect } from "vuetify/directives";
|
74
74
|
import { VDataTable, VDataTableRow, VDataTableRows, VDataTableVirtual, VDataTableServer, VInfiniteScroll, VDatePicker } from "vuetify/components";
|
75
|
+
import { VCalendar } from "vuetify/labs/VCalendar";
|
75
76
|
import { VTimePicker } from "vuetify/labs/VTimePicker";
|
76
77
|
import { VNumberInput } from "vuetify/labs/VNumberInput";
|
77
78
|
import { VFab } from "vuetify/labs/VFab";
|
@@ -103,6 +104,9 @@ declare global {
|
|
103
104
|
"v-intersect"?: VuetifyValue<Pick<Parameters<typeof Intersect.mounted>[1], "value">>;
|
104
105
|
}
|
105
106
|
interface IntrinsicElements {
|
107
|
+
"v-calendar": VuetifyProps<Pick<VCalendar, "$props">> & {
|
108
|
+
[name: string]: any;
|
109
|
+
};
|
106
110
|
"v-treeview": VuetifyProps<Pick<VTreeview, "$props">> & {
|
107
111
|
[name: string]: any;
|
108
112
|
};
|
@@ -0,0 +1,86 @@
|
|
1
|
+
import { DefineProp, DefinePropClass, DefinePropTheming, DefineSlot, DefineVModel } from "@omnia/fx/ux";
|
2
|
+
import { VNodeChild } from "vue";
|
3
|
+
declare const defaultWeekDays: number[];
|
4
|
+
type EventType = {
|
5
|
+
title: string;
|
6
|
+
start: Date;
|
7
|
+
end: Date;
|
8
|
+
color?: string;
|
9
|
+
allDay?: boolean;
|
10
|
+
};
|
11
|
+
type CalendarProps = DefinePropTheming & DefinePropClass & DefineVModel<"", Date[], false, null, "The v-model of the component"> & DefineProp<"events", EventType[], false, null, "Array of events specific to this interval."> & DefineProp<"viewMode", "month" | "day" | "week", false, "month", "The current view mode of the calendar."> & DefineProp<"weekdays", number[], false, typeof defaultWeekDays, "Specifies which days of the week to display.Default is [0, 1, 2, 3, 4, 5, 6]"> & DefineProp<"year", number, false, null, "Specifies the year for the calendar view."> & DefineProp<"month", number, false, null, "Specifies the month for the calendar view."> & DefineProp<"intervals", number, false, 24, "Total number of intervals in a day view."> & DefineProp<"intervalStart", number, false, 0, "Starting time for this specific interval."> & DefineProp<"max", Date, false, null, "Maximum date or value that can be selected."> & DefineProp<"min", Date, false, null, "Minimum date or value that can be selected."> & DefineProp<"hideWeekNumber", boolean, false, false, "Toggles the display of week numbers in a calendar view."> & DefineProp<"hideDayHeader", boolean, false, false, "Determines whether the day header is visible in the calendar day view."> & DefineProp<"hideHeader", boolean, false, false, "Determines whether the header is hidden in the calendar view."> & DefineProp<"allowedDates", Date[] | ((date: Date) => boolean), false, null, "Determines which dates are selectable."> & DefineSlot<"event", (event: {
|
12
|
+
day: Date;
|
13
|
+
allDay: boolean;
|
14
|
+
event: Record<string, Date>;
|
15
|
+
}) => VNodeChild> & DefineSlot<"header", (header: {
|
16
|
+
title: string;
|
17
|
+
}) => VNodeChild>;
|
18
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<CalendarProps> & Omit<{}, "events" | "container" | "class" | "colorSchemaType" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "min" | "max" | "month" | "year" | "allowedDates" | "viewMode" | "weekdays" | "intervals" | "intervalStart" | "hideWeekNumber" | "hideDayHeader" | "hideHeader"> & {
|
19
|
+
"v-slots"?: {
|
20
|
+
default?: import("vue").Slot;
|
21
|
+
} & {
|
22
|
+
event?: (event: {
|
23
|
+
day: Date;
|
24
|
+
allDay: boolean;
|
25
|
+
event: Record<string, Date>;
|
26
|
+
}) => VNodeChild;
|
27
|
+
header?: (header: {
|
28
|
+
title: string;
|
29
|
+
}) => VNodeChild;
|
30
|
+
};
|
31
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "events" | "container" | "class" | "colorSchemaType" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "min" | "max" | "month" | "year" | "allowedDates" | "viewMode" | "weekdays" | "intervals" | "intervalStart" | "hideWeekNumber" | "hideDayHeader" | "hideHeader" | "slot:event" | "slot:header">) => {
|
32
|
+
$: import("vue").ComponentInternalInstance;
|
33
|
+
$data: {};
|
34
|
+
$props: {};
|
35
|
+
$attrs: {
|
36
|
+
[x: string]: unknown;
|
37
|
+
};
|
38
|
+
$refs: {
|
39
|
+
[x: string]: unknown;
|
40
|
+
};
|
41
|
+
$slots: Readonly<{
|
42
|
+
[name: string]: import("vue").Slot<any>;
|
43
|
+
}>;
|
44
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
45
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
46
|
+
$emit: (event: string, ...args: any[]) => void;
|
47
|
+
$el: any;
|
48
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
49
|
+
beforeCreate?: (() => void) | (() => void)[];
|
50
|
+
created?: (() => void) | (() => void)[];
|
51
|
+
beforeMount?: (() => void) | (() => void)[];
|
52
|
+
mounted?: (() => void) | (() => void)[];
|
53
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
54
|
+
updated?: (() => void) | (() => void)[];
|
55
|
+
activated?: (() => void) | (() => void)[];
|
56
|
+
deactivated?: (() => void) | (() => void)[];
|
57
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
58
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
59
|
+
destroyed?: (() => void) | (() => void)[];
|
60
|
+
unmounted?: (() => void) | (() => void)[];
|
61
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
62
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
63
|
+
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)[];
|
64
|
+
};
|
65
|
+
$forceUpdate: () => void;
|
66
|
+
$nextTick: typeof import("vue").nextTick;
|
67
|
+
$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;
|
68
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
69
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<CalendarProps> & {
|
70
|
+
"v-slots"?: {
|
71
|
+
default?: import("vue").Slot;
|
72
|
+
} & {
|
73
|
+
event?: (event: {
|
74
|
+
day: Date;
|
75
|
+
allDay: boolean;
|
76
|
+
event: Record<string, Date>;
|
77
|
+
}) => VNodeChild;
|
78
|
+
header?: (header: {
|
79
|
+
title: string;
|
80
|
+
}) => VNodeChild;
|
81
|
+
};
|
82
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "events" | "container" | "class" | "colorSchemaType" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "min" | "max" | "month" | "year" | "allowedDates" | "viewMode" | "weekdays" | "intervals" | "intervalStart" | "hideWeekNumber" | "hideDayHeader" | "hideHeader">;
|
83
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
84
|
+
[key: string]: any;
|
85
|
+
}>;
|
86
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1,51 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & Omit<{}, string | number> & {
|
2
|
+
"v-slots"?: {
|
3
|
+
default?: import("vue").Slot;
|
4
|
+
} & {};
|
5
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string>) => {
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
7
|
+
$data: {};
|
8
|
+
$props: {};
|
9
|
+
$attrs: {
|
10
|
+
[x: string]: unknown;
|
11
|
+
};
|
12
|
+
$refs: {
|
13
|
+
[x: string]: unknown;
|
14
|
+
};
|
15
|
+
$slots: Readonly<{
|
16
|
+
[name: string]: import("vue").Slot<any>;
|
17
|
+
}>;
|
18
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
19
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
20
|
+
$emit: (event: string, ...args: any[]) => void;
|
21
|
+
$el: any;
|
22
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
23
|
+
beforeCreate?: (() => void) | (() => void)[];
|
24
|
+
created?: (() => void) | (() => void)[];
|
25
|
+
beforeMount?: (() => void) | (() => void)[];
|
26
|
+
mounted?: (() => void) | (() => void)[];
|
27
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
28
|
+
updated?: (() => void) | (() => void)[];
|
29
|
+
activated?: (() => void) | (() => void)[];
|
30
|
+
deactivated?: (() => void) | (() => void)[];
|
31
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
32
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
33
|
+
destroyed?: (() => void) | (() => void)[];
|
34
|
+
unmounted?: (() => void) | (() => void)[];
|
35
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
36
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
37
|
+
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)[];
|
38
|
+
};
|
39
|
+
$forceUpdate: () => void;
|
40
|
+
$nextTick: typeof import("vue").nextTick;
|
41
|
+
$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;
|
42
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
43
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {
|
44
|
+
"v-slots"?: {
|
45
|
+
default?: import("vue").Slot;
|
46
|
+
} & {};
|
47
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
|
48
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
49
|
+
[key: string]: any;
|
50
|
+
}>;
|
51
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -35,16 +35,22 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
35
35
|
headers?: DataTableHeader[];
|
36
36
|
} & {
|
37
37
|
items?: T[];
|
38
|
-
} & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void
|
38
|
+
} & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
39
|
+
item: T;
|
40
|
+
}) => void>> & Omit<{
|
39
41
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
40
42
|
"onUpdate:expanded"?: (expanded: string[]) => any;
|
41
43
|
}, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "loading" | "hover" | "sortBy" | "mustSort" | "showExpand" | "noDataText" | "itemsPerPage" | "onUpdate:sortBy" | "onUpdate:expanded" | "v-model:expanded" | "v-model:sortBy"> & {
|
42
44
|
"v-slots"?: {
|
43
45
|
default?: import("vue").Slot;
|
44
46
|
} & {
|
47
|
+
[x: `header.${string}`]: (header: DataTableHeader) => void;
|
48
|
+
[x: `item.${string}`]: (e: {
|
49
|
+
item: T;
|
50
|
+
}) => void;
|
45
51
|
item?: (row: IDataTableRowRenderer<T>) => void;
|
46
52
|
};
|
47
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "loading" | "slot:item" | "hover" | "sortBy" | "mustSort" | "showExpand" | "noDataText" | "itemsPerPage" | "onUpdate:sortBy" | "onUpdate:expanded" | "v-model:expanded" | "v-model:sortBy" | "emit:update:sortBy" | "emit:update:expanded"
|
53
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "loading" | "slot:item" | "hover" | "sortBy" | "mustSort" | "showExpand" | "noDataText" | "itemsPerPage" | "onUpdate:sortBy" | "onUpdate:expanded" | "v-model:expanded" | "v-model:sortBy" | "emit:update:sortBy" | "emit:update:expanded" | `slot:header.${string}` | `slot:item.${string}`>) => {
|
48
54
|
$: import("vue").ComponentInternalInstance;
|
49
55
|
$data: {};
|
50
56
|
$props: {};
|
@@ -118,10 +124,16 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
118
124
|
headers?: DataTableHeader[];
|
119
125
|
} & {
|
120
126
|
items?: T[];
|
121
|
-
} & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void
|
127
|
+
} & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
128
|
+
item: T;
|
129
|
+
}) => void>> & {
|
122
130
|
"v-slots"?: {
|
123
131
|
default?: import("vue").Slot;
|
124
132
|
} & {
|
133
|
+
[x: `header.${string}`]: (header: DataTableHeader) => void;
|
134
|
+
[x: `item.${string}`]: (e: {
|
135
|
+
item: T;
|
136
|
+
}) => void;
|
125
137
|
item?: (row: IDataTableRowRenderer<T>) => void;
|
126
138
|
};
|
127
139
|
} & {
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import { OPosition } from "@omnia/fx-models";
|
2
|
+
import { DefineProp, DefinePropClass, DefinePropTheming, DefineSlot, DefineVModel } from "@omnia/fx/ux";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
type SpeedDialProps = DefinePropTheming & DefinePropClass & DefineVModel<"", boolean, false, false, "The v-model of the component"> & DefineProp<"openOnClick", boolean, false, null, "Activate the component when the activator is clicked."> & DefineProp<"openOnFocus", boolean, false, null, "Activate the component when the activator is focused."> & DefineProp<"openOnHover", boolean, false, false, "Opens speed-dial on hover."> & DefineProp<"persistent", boolean, false, false, "Clicking outside of the element or pressing esc key will not deactivate it."> & DefineProp<"location", OPosition, false, "top center", "Specifies the component's location. Can combine by using a space separated string."> & DefineSlot<"activator", () => VNodeChild>;
|
5
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<SpeedDialProps> & Omit<{}, "container" | "class" | "persistent" | "colorSchemaType" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "location" | "openOnHover" | "openOnClick" | "openOnFocus"> & {
|
6
|
+
"v-slots"?: {
|
7
|
+
default?: import("vue").Slot;
|
8
|
+
} & {
|
9
|
+
activator?: () => VNodeChild;
|
10
|
+
};
|
11
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "persistent" | "colorSchemaType" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "location" | "openOnHover" | "openOnClick" | "openOnFocus" | "slot:activator">) => {
|
12
|
+
$: import("vue").ComponentInternalInstance;
|
13
|
+
$data: {};
|
14
|
+
$props: {};
|
15
|
+
$attrs: {
|
16
|
+
[x: string]: unknown;
|
17
|
+
};
|
18
|
+
$refs: {
|
19
|
+
[x: string]: unknown;
|
20
|
+
};
|
21
|
+
$slots: Readonly<{
|
22
|
+
[name: string]: import("vue").Slot<any>;
|
23
|
+
}>;
|
24
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
25
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
26
|
+
$emit: (event: string, ...args: any[]) => void;
|
27
|
+
$el: any;
|
28
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
29
|
+
beforeCreate?: (() => void) | (() => void)[];
|
30
|
+
created?: (() => void) | (() => void)[];
|
31
|
+
beforeMount?: (() => void) | (() => void)[];
|
32
|
+
mounted?: (() => void) | (() => void)[];
|
33
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
34
|
+
updated?: (() => void) | (() => void)[];
|
35
|
+
activated?: (() => void) | (() => void)[];
|
36
|
+
deactivated?: (() => void) | (() => void)[];
|
37
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
38
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
39
|
+
destroyed?: (() => void) | (() => void)[];
|
40
|
+
unmounted?: (() => void) | (() => void)[];
|
41
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
42
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
43
|
+
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)[];
|
44
|
+
};
|
45
|
+
$forceUpdate: () => void;
|
46
|
+
$nextTick: typeof import("vue").nextTick;
|
47
|
+
$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;
|
48
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
49
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<SpeedDialProps> & {
|
50
|
+
"v-slots"?: {
|
51
|
+
default?: import("vue").Slot;
|
52
|
+
} & {
|
53
|
+
activator?: () => VNodeChild;
|
54
|
+
};
|
55
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "persistent" | "colorSchemaType" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "location" | "openOnHover" | "openOnClick" | "openOnFocus">;
|
56
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
57
|
+
[key: string]: any;
|
58
|
+
}>;
|
59
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1,51 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & Omit<{}, string | number> & {
|
2
|
+
"v-slots"?: {
|
3
|
+
default?: import("vue").Slot;
|
4
|
+
} & {};
|
5
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string>) => {
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
7
|
+
$data: {};
|
8
|
+
$props: {};
|
9
|
+
$attrs: {
|
10
|
+
[x: string]: unknown;
|
11
|
+
};
|
12
|
+
$refs: {
|
13
|
+
[x: string]: unknown;
|
14
|
+
};
|
15
|
+
$slots: Readonly<{
|
16
|
+
[name: string]: import("vue").Slot<any>;
|
17
|
+
}>;
|
18
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
19
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
20
|
+
$emit: (event: string, ...args: any[]) => void;
|
21
|
+
$el: any;
|
22
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
23
|
+
beforeCreate?: (() => void) | (() => void)[];
|
24
|
+
created?: (() => void) | (() => void)[];
|
25
|
+
beforeMount?: (() => void) | (() => void)[];
|
26
|
+
mounted?: (() => void) | (() => void)[];
|
27
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
28
|
+
updated?: (() => void) | (() => void)[];
|
29
|
+
activated?: (() => void) | (() => void)[];
|
30
|
+
deactivated?: (() => void) | (() => void)[];
|
31
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
32
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
33
|
+
destroyed?: (() => void) | (() => void)[];
|
34
|
+
unmounted?: (() => void) | (() => void)[];
|
35
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
36
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
37
|
+
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)[];
|
38
|
+
};
|
39
|
+
$forceUpdate: () => void;
|
40
|
+
$nextTick: typeof import("vue").nextTick;
|
41
|
+
$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;
|
42
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
43
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {
|
44
|
+
"v-slots"?: {
|
45
|
+
default?: import("vue").Slot;
|
46
|
+
} & {};
|
47
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
|
48
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
49
|
+
[key: string]: any;
|
50
|
+
}>;
|
51
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { OPosition } from "@omnia/fx-models";
|
1
2
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
2
3
|
"v-model"?: string;
|
3
4
|
} & {
|
@@ -5,7 +6,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
5
6
|
} & {
|
6
7
|
modelValue?: string;
|
7
8
|
} & {
|
8
|
-
location?:
|
9
|
+
location?: OPosition;
|
9
10
|
} & {
|
10
11
|
position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
|
11
12
|
} & {
|
@@ -59,7 +60,7 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
59
60
|
} & {
|
60
61
|
modelValue?: string;
|
61
62
|
} & {
|
62
|
-
location?:
|
63
|
+
location?: OPosition;
|
63
64
|
} & {
|
64
65
|
position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
|
65
66
|
} & {
|
@@ -23,6 +23,11 @@ export interface VelcronTextEditorSettings {
|
|
23
23
|
type: TypographyType;
|
24
24
|
placeholder: string;
|
25
25
|
}
|
26
|
+
export interface VelcronNumberEditorSettings {
|
27
|
+
min: number;
|
28
|
+
max: number;
|
29
|
+
step: number;
|
30
|
+
}
|
26
31
|
export interface VelcronBlueprintEditorSettings {
|
27
32
|
type: "container" | "";
|
28
33
|
}
|
@@ -35,6 +40,9 @@ export interface VelcronSliderPropertyEditor extends VelcronEditor<VelcronSlider
|
|
35
40
|
export interface VelcronTextPropertyEditor extends VelcronEditor<VelcronTextEditorSettings> {
|
36
41
|
type: "text";
|
37
42
|
}
|
43
|
+
export interface VelcronNumberPropertyEditor extends VelcronEditor<VelcronNumberEditorSettings> {
|
44
|
+
type: "number";
|
45
|
+
}
|
38
46
|
export interface VelcronEnterprisePropertyEditor extends VelcronEditor<any> {
|
39
47
|
type: "enterprise-property";
|
40
48
|
}
|
@@ -7,7 +7,7 @@ export interface ParseResult<T> {
|
|
7
7
|
export declare class VelcronData {
|
8
8
|
static dataBind<T = string>(renderContext: VelcronRenderContext, bindTo: VelcronBindableProp<any>): T;
|
9
9
|
static isBindable<T = string>(bindable: VelcronBindableProp<T>): boolean;
|
10
|
-
static getBindPath(text: string): string;
|
10
|
+
static getBindPath(text: string, removeStateToken?: boolean): string;
|
11
11
|
static addCtxToVariableNames(template: string, skipIfNameStartsWith?: string, skipIfNameMatches?: Array<string>, overridePrefixWhenNameMatches?: {
|
12
12
|
[name: string]: string;
|
13
13
|
}): string;
|
@@ -11,13 +11,15 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
11
11
|
descriptor?: VelcronComponentPropertyDescriptor;
|
12
12
|
} & {
|
13
13
|
allowedDataTypes?: VelcronDataTypes[];
|
14
|
+
} & {
|
15
|
+
applyStateRootToken?: boolean;
|
14
16
|
} & DefineEmit<"state:selected", (value: string) => void>> & Omit<{
|
15
17
|
"onState:selected"?: (value: string) => any;
|
16
|
-
}, "v-model" | "onUpdate:modelValue" | "modelValue" | "descriptor" | "allowedDataTypes"> & {
|
18
|
+
}, "v-model" | "onUpdate:modelValue" | "modelValue" | "descriptor" | "allowedDataTypes" | "applyStateRootToken"> & {
|
17
19
|
"v-slots"?: {
|
18
20
|
default?: import("vue").Slot;
|
19
21
|
} & {};
|
20
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "descriptor" | "allowedDataTypes" | "emit:state:selected">) => {
|
22
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "descriptor" | "allowedDataTypes" | "applyStateRootToken" | "emit:state:selected">) => {
|
21
23
|
$: import("vue").ComponentInternalInstance;
|
22
24
|
$data: {};
|
23
25
|
$props: {};
|
@@ -65,13 +67,15 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
65
67
|
descriptor?: VelcronComponentPropertyDescriptor;
|
66
68
|
} & {
|
67
69
|
allowedDataTypes?: VelcronDataTypes[];
|
70
|
+
} & {
|
71
|
+
applyStateRootToken?: boolean;
|
68
72
|
} & DefineEmit<"state:selected", (value: string) => void>> & {
|
69
73
|
"v-slots"?: {
|
70
74
|
default?: import("vue").Slot;
|
71
75
|
} & {};
|
72
76
|
} & {
|
73
77
|
"onState:selected"?: (value: string) => any;
|
74
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "descriptor" | "allowedDataTypes">;
|
78
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "descriptor" | "allowedDataTypes" | "applyStateRootToken">;
|
75
79
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
76
80
|
[key: string]: any;
|
77
81
|
}>;
|
@@ -6,6 +6,9 @@ export interface AppTreeItem {
|
|
6
6
|
propertyName?: string;
|
7
7
|
value?: any;
|
8
8
|
}
|
9
|
+
export interface ComponentDefinitionTreeItem extends AppTreeItem {
|
10
|
+
definition: VelcronDefinition;
|
11
|
+
}
|
9
12
|
export interface StatePropertyAppTreeItem extends AppTreeItem {
|
10
13
|
propertyName: string;
|
11
14
|
value: any;
|
package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronEditorDescriptors.d.ts
CHANGED
@@ -3,6 +3,7 @@ import { VelcronEditorDescriptor, VelcronEditorsDescriptor } from "./VelcronDesc
|
|
3
3
|
export declare const VelcronEditorsRootDescriptor: VelcronEditorsDescriptor;
|
4
4
|
export declare const VelcronSliderEditorDescriptor: VelcronEditorDescriptor;
|
5
5
|
export declare const VelcronTextEditorDescriptor: VelcronEditorDescriptor;
|
6
|
+
export declare const VelcronNumberEditorDescriptor: VelcronEditorDescriptor;
|
6
7
|
export declare const VelcronEnterpriseEditorDescriptor: VelcronEditorDescriptor;
|
7
8
|
export declare const VelcronTypographyEditorDescriptor: VelcronEditorDescriptor;
|
8
9
|
export declare const VelcronSwitchEditorDescriptor: VelcronEditorDescriptor;
|
@@ -19,7 +20,7 @@ export declare const VelcronBlueprintEditorDescriptor: VelcronEditorDescriptor;
|
|
19
20
|
export declare const VelcronBackgroundEditorDescriptor: VelcronEditorDescriptor;
|
20
21
|
export declare const VelcronGridEditorDescriptor: VelcronEditorDescriptor;
|
21
22
|
type BuiltInPropertyEditorDescriptorMap = {
|
22
|
-
[key in BuiltInPropertyEditorType]: typeof VelcronTextEditorDescriptor | typeof VelcronSliderEditorDescriptor | typeof VelcronSwitchEditorDescriptor | typeof VelcronAlignmentEditorDescriptor | typeof VelcronColorEditorDescriptor | typeof VelcronMarkdownEditorDescriptor | typeof VelcronIconEditorDescriptor | typeof VelcronImageEditorDescriptor | typeof VelcronTypographyEditorDescriptor | typeof VelcronSpacingEditorDescriptor | typeof VelcronColorSchemaEditorDescriptor | typeof VelcronReferenceEditorDescriptor | typeof VelcronBackgroundEditorDescriptor | typeof VelcronBlueprintEditorDescriptor | typeof VelcronGridEditorDescriptor;
|
23
|
+
[key in BuiltInPropertyEditorType]: typeof VelcronTextEditorDescriptor | typeof VelcronNumberEditorDescriptor | typeof VelcronSliderEditorDescriptor | typeof VelcronSwitchEditorDescriptor | typeof VelcronAlignmentEditorDescriptor | typeof VelcronColorEditorDescriptor | typeof VelcronMarkdownEditorDescriptor | typeof VelcronIconEditorDescriptor | typeof VelcronImageEditorDescriptor | typeof VelcronTypographyEditorDescriptor | typeof VelcronSpacingEditorDescriptor | typeof VelcronColorSchemaEditorDescriptor | typeof VelcronReferenceEditorDescriptor | typeof VelcronBackgroundEditorDescriptor | typeof VelcronBlueprintEditorDescriptor | typeof VelcronGridEditorDescriptor;
|
23
24
|
};
|
24
25
|
export declare const builtInPropertyEditorDescriptorMap: BuiltInPropertyEditorDescriptorMap;
|
25
26
|
export {};
|
@@ -0,0 +1,427 @@
|
|
1
|
+
import { EditorLocation, VelcronNumberEditorSettings } from "@omnia/fx-models";
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
location: {
|
5
|
+
type: import("vue").PropType<EditorLocation>;
|
6
|
+
} & {
|
7
|
+
type: import("vue").PropType<EditorLocation>;
|
8
|
+
};
|
9
|
+
settings: {
|
10
|
+
type: import("vue").PropType<VelcronNumberEditorSettings>;
|
11
|
+
} & {
|
12
|
+
type: import("vue").PropType<VelcronNumberEditorSettings>;
|
13
|
+
};
|
14
|
+
label: {
|
15
|
+
type: import("vue").PropType<string>;
|
16
|
+
} & {
|
17
|
+
type: import("vue").PropType<string>;
|
18
|
+
};
|
19
|
+
"onUpdate:modelValue": {
|
20
|
+
type: import("vue").PropType<(value: number) => any>;
|
21
|
+
};
|
22
|
+
"v-model": {
|
23
|
+
type: import("vue").PropType<number>;
|
24
|
+
required: false;
|
25
|
+
};
|
26
|
+
modelValue: {
|
27
|
+
type: import("vue").PropType<number>;
|
28
|
+
required: false;
|
29
|
+
};
|
30
|
+
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
31
|
+
type: import("vue").PropType<(value: number) => any>;
|
32
|
+
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
33
|
+
type: import("vue").PropType<number>;
|
34
|
+
required: false;
|
35
|
+
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
36
|
+
type: import("vue").PropType<number>;
|
37
|
+
required: false;
|
38
|
+
}; } & {
|
39
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, number, {
|
40
|
+
"onUpdate:modelValue": {
|
41
|
+
type: import("vue").PropType<(value: number) => any>;
|
42
|
+
};
|
43
|
+
} & {
|
44
|
+
"v-model": {
|
45
|
+
type: import("vue").PropType<number>;
|
46
|
+
required: false;
|
47
|
+
};
|
48
|
+
} & {
|
49
|
+
modelValue: {
|
50
|
+
type: import("vue").PropType<number>;
|
51
|
+
required: false;
|
52
|
+
};
|
53
|
+
}>;
|
54
|
+
defaultValue(value?: number): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, number, {
|
55
|
+
"onUpdate:modelValue": {
|
56
|
+
type: import("vue").PropType<(value: number) => any>;
|
57
|
+
};
|
58
|
+
} & {
|
59
|
+
"v-model": {
|
60
|
+
type: import("vue").PropType<number>;
|
61
|
+
required: false;
|
62
|
+
};
|
63
|
+
} & {
|
64
|
+
modelValue: {
|
65
|
+
type: import("vue").PropType<number>;
|
66
|
+
required: false;
|
67
|
+
};
|
68
|
+
}, false>;
|
69
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, number, {
|
70
|
+
"onUpdate:modelValue": {
|
71
|
+
type: import("vue").PropType<(value: number) => any>;
|
72
|
+
};
|
73
|
+
} & {
|
74
|
+
"v-model": {
|
75
|
+
type: import("vue").PropType<number>;
|
76
|
+
required: false;
|
77
|
+
};
|
78
|
+
} & {
|
79
|
+
modelValue: {
|
80
|
+
type: import("vue").PropType<number>;
|
81
|
+
required: false;
|
82
|
+
};
|
83
|
+
}>;
|
84
|
+
};
|
85
|
+
}>> & {
|
86
|
+
"onUpdate:modelValue"?: (value: string) => any;
|
87
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
88
|
+
"update:modelValue": (value: string) => true;
|
89
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
90
|
+
location: {
|
91
|
+
type: import("vue").PropType<EditorLocation>;
|
92
|
+
} & {
|
93
|
+
type: import("vue").PropType<EditorLocation>;
|
94
|
+
};
|
95
|
+
settings: {
|
96
|
+
type: import("vue").PropType<VelcronNumberEditorSettings>;
|
97
|
+
} & {
|
98
|
+
type: import("vue").PropType<VelcronNumberEditorSettings>;
|
99
|
+
};
|
100
|
+
label: {
|
101
|
+
type: import("vue").PropType<string>;
|
102
|
+
} & {
|
103
|
+
type: import("vue").PropType<string>;
|
104
|
+
};
|
105
|
+
"onUpdate:modelValue": {
|
106
|
+
type: import("vue").PropType<(value: number) => any>;
|
107
|
+
};
|
108
|
+
"v-model": {
|
109
|
+
type: import("vue").PropType<number>;
|
110
|
+
required: false;
|
111
|
+
};
|
112
|
+
modelValue: {
|
113
|
+
type: import("vue").PropType<number>;
|
114
|
+
required: false;
|
115
|
+
};
|
116
|
+
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
117
|
+
type: import("vue").PropType<(value: number) => any>;
|
118
|
+
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
119
|
+
type: import("vue").PropType<number>;
|
120
|
+
required: false;
|
121
|
+
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
122
|
+
type: import("vue").PropType<number>;
|
123
|
+
required: false;
|
124
|
+
}; } & {
|
125
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, number, {
|
126
|
+
"onUpdate:modelValue": {
|
127
|
+
type: import("vue").PropType<(value: number) => any>;
|
128
|
+
};
|
129
|
+
} & {
|
130
|
+
"v-model": {
|
131
|
+
type: import("vue").PropType<number>;
|
132
|
+
required: false;
|
133
|
+
};
|
134
|
+
} & {
|
135
|
+
modelValue: {
|
136
|
+
type: import("vue").PropType<number>;
|
137
|
+
required: false;
|
138
|
+
};
|
139
|
+
}>;
|
140
|
+
defaultValue(value?: number): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, number, {
|
141
|
+
"onUpdate:modelValue": {
|
142
|
+
type: import("vue").PropType<(value: number) => any>;
|
143
|
+
};
|
144
|
+
} & {
|
145
|
+
"v-model": {
|
146
|
+
type: import("vue").PropType<number>;
|
147
|
+
required: false;
|
148
|
+
};
|
149
|
+
} & {
|
150
|
+
modelValue: {
|
151
|
+
type: import("vue").PropType<number>;
|
152
|
+
required: false;
|
153
|
+
};
|
154
|
+
}, false>;
|
155
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, number, {
|
156
|
+
"onUpdate:modelValue": {
|
157
|
+
type: import("vue").PropType<(value: number) => any>;
|
158
|
+
};
|
159
|
+
} & {
|
160
|
+
"v-model": {
|
161
|
+
type: import("vue").PropType<number>;
|
162
|
+
required: false;
|
163
|
+
};
|
164
|
+
} & {
|
165
|
+
modelValue: {
|
166
|
+
type: import("vue").PropType<number>;
|
167
|
+
required: false;
|
168
|
+
};
|
169
|
+
}>;
|
170
|
+
};
|
171
|
+
}>> & {
|
172
|
+
"onUpdate:modelValue"?: (value: string) => any;
|
173
|
+
}, {}, true, {}, {}, {
|
174
|
+
P: {};
|
175
|
+
B: {};
|
176
|
+
D: {};
|
177
|
+
C: {};
|
178
|
+
M: {};
|
179
|
+
Defaults: {};
|
180
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
181
|
+
location: {
|
182
|
+
type: import("vue").PropType<EditorLocation>;
|
183
|
+
} & {
|
184
|
+
type: import("vue").PropType<EditorLocation>;
|
185
|
+
};
|
186
|
+
settings: {
|
187
|
+
type: import("vue").PropType<VelcronNumberEditorSettings>;
|
188
|
+
} & {
|
189
|
+
type: import("vue").PropType<VelcronNumberEditorSettings>;
|
190
|
+
};
|
191
|
+
label: {
|
192
|
+
type: import("vue").PropType<string>;
|
193
|
+
} & {
|
194
|
+
type: import("vue").PropType<string>;
|
195
|
+
};
|
196
|
+
"onUpdate:modelValue": {
|
197
|
+
type: import("vue").PropType<(value: number) => any>;
|
198
|
+
};
|
199
|
+
"v-model": {
|
200
|
+
type: import("vue").PropType<number>;
|
201
|
+
required: false;
|
202
|
+
};
|
203
|
+
modelValue: {
|
204
|
+
type: import("vue").PropType<number>;
|
205
|
+
required: false;
|
206
|
+
};
|
207
|
+
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
208
|
+
type: import("vue").PropType<(value: number) => any>;
|
209
|
+
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
210
|
+
type: import("vue").PropType<number>;
|
211
|
+
required: false;
|
212
|
+
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
213
|
+
type: import("vue").PropType<number>;
|
214
|
+
required: false;
|
215
|
+
}; } & {
|
216
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, number, {
|
217
|
+
"onUpdate:modelValue": {
|
218
|
+
type: import("vue").PropType<(value: number) => any>;
|
219
|
+
};
|
220
|
+
} & {
|
221
|
+
"v-model": {
|
222
|
+
type: import("vue").PropType<number>;
|
223
|
+
required: false;
|
224
|
+
};
|
225
|
+
} & {
|
226
|
+
modelValue: {
|
227
|
+
type: import("vue").PropType<number>;
|
228
|
+
required: false;
|
229
|
+
};
|
230
|
+
}>;
|
231
|
+
defaultValue(value?: number): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, number, {
|
232
|
+
"onUpdate:modelValue": {
|
233
|
+
type: import("vue").PropType<(value: number) => any>;
|
234
|
+
};
|
235
|
+
} & {
|
236
|
+
"v-model": {
|
237
|
+
type: import("vue").PropType<number>;
|
238
|
+
required: false;
|
239
|
+
};
|
240
|
+
} & {
|
241
|
+
modelValue: {
|
242
|
+
type: import("vue").PropType<number>;
|
243
|
+
required: false;
|
244
|
+
};
|
245
|
+
}, false>;
|
246
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, number, {
|
247
|
+
"onUpdate:modelValue": {
|
248
|
+
type: import("vue").PropType<(value: number) => any>;
|
249
|
+
};
|
250
|
+
} & {
|
251
|
+
"v-model": {
|
252
|
+
type: import("vue").PropType<number>;
|
253
|
+
required: false;
|
254
|
+
};
|
255
|
+
} & {
|
256
|
+
modelValue: {
|
257
|
+
type: import("vue").PropType<number>;
|
258
|
+
required: false;
|
259
|
+
};
|
260
|
+
}>;
|
261
|
+
};
|
262
|
+
}>> & {
|
263
|
+
"onUpdate:modelValue"?: (value: string) => any;
|
264
|
+
}, () => JSX.Element, {}, {}, {}, {}>;
|
265
|
+
__isFragment?: never;
|
266
|
+
__isTeleport?: never;
|
267
|
+
__isSuspense?: never;
|
268
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
269
|
+
location: {
|
270
|
+
type: import("vue").PropType<EditorLocation>;
|
271
|
+
} & {
|
272
|
+
type: import("vue").PropType<EditorLocation>;
|
273
|
+
};
|
274
|
+
settings: {
|
275
|
+
type: import("vue").PropType<VelcronNumberEditorSettings>;
|
276
|
+
} & {
|
277
|
+
type: import("vue").PropType<VelcronNumberEditorSettings>;
|
278
|
+
};
|
279
|
+
label: {
|
280
|
+
type: import("vue").PropType<string>;
|
281
|
+
} & {
|
282
|
+
type: import("vue").PropType<string>;
|
283
|
+
};
|
284
|
+
"onUpdate:modelValue": {
|
285
|
+
type: import("vue").PropType<(value: number) => any>;
|
286
|
+
};
|
287
|
+
"v-model": {
|
288
|
+
type: import("vue").PropType<number>;
|
289
|
+
required: false;
|
290
|
+
};
|
291
|
+
modelValue: {
|
292
|
+
type: import("vue").PropType<number>;
|
293
|
+
required: false;
|
294
|
+
};
|
295
|
+
name: <TName extends string>(n?: TName) => { [key in import("../../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
296
|
+
type: import("vue").PropType<(value: number) => any>;
|
297
|
+
}; } & { [key_1 in import("../../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
298
|
+
type: import("vue").PropType<number>;
|
299
|
+
required: false;
|
300
|
+
}; } & { [key_2 in import("../../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
301
|
+
type: import("vue").PropType<number>;
|
302
|
+
required: false;
|
303
|
+
}; } & {
|
304
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<TName, number, {
|
305
|
+
"onUpdate:modelValue": {
|
306
|
+
type: import("vue").PropType<(value: number) => any>;
|
307
|
+
};
|
308
|
+
} & {
|
309
|
+
"v-model": {
|
310
|
+
type: import("vue").PropType<number>;
|
311
|
+
required: false;
|
312
|
+
};
|
313
|
+
} & {
|
314
|
+
modelValue: {
|
315
|
+
type: import("vue").PropType<number>;
|
316
|
+
required: false;
|
317
|
+
};
|
318
|
+
}>;
|
319
|
+
defaultValue(value?: number): import("../../../DefineVueTypings").DefinePropModelDefaultValue<TName, number, {
|
320
|
+
"onUpdate:modelValue": {
|
321
|
+
type: import("vue").PropType<(value: number) => any>;
|
322
|
+
};
|
323
|
+
} & {
|
324
|
+
"v-model": {
|
325
|
+
type: import("vue").PropType<number>;
|
326
|
+
required: false;
|
327
|
+
};
|
328
|
+
} & {
|
329
|
+
modelValue: {
|
330
|
+
type: import("vue").PropType<number>;
|
331
|
+
required: false;
|
332
|
+
};
|
333
|
+
}, false>;
|
334
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<TName, number, {
|
335
|
+
"onUpdate:modelValue": {
|
336
|
+
type: import("vue").PropType<(value: number) => any>;
|
337
|
+
};
|
338
|
+
} & {
|
339
|
+
"v-model": {
|
340
|
+
type: import("vue").PropType<number>;
|
341
|
+
required: false;
|
342
|
+
};
|
343
|
+
} & {
|
344
|
+
modelValue: {
|
345
|
+
type: import("vue").PropType<number>;
|
346
|
+
required: false;
|
347
|
+
};
|
348
|
+
}>;
|
349
|
+
};
|
350
|
+
}>> & {
|
351
|
+
"onUpdate:modelValue"?: (value: string) => any;
|
352
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
353
|
+
"update:modelValue": (value: string) => true;
|
354
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
355
|
+
propsDefinition: Omit<Readonly<{} & {
|
356
|
+
name?: {
|
357
|
+
[x: `onUpdate:${string}`]: {
|
358
|
+
type: import("vue").PropType<(value: number) => any>;
|
359
|
+
};
|
360
|
+
} & {
|
361
|
+
[x: `v-model:${string}`]: {
|
362
|
+
type: import("vue").PropType<number>;
|
363
|
+
required: false;
|
364
|
+
};
|
365
|
+
} & {
|
366
|
+
[x: string]: {
|
367
|
+
type: import("vue").PropType<number>;
|
368
|
+
required: false;
|
369
|
+
};
|
370
|
+
} & {
|
371
|
+
require(): import("../../../DefineVueTypings").DefinePropModelRequire<string, number, {
|
372
|
+
"onUpdate:modelValue": {
|
373
|
+
type: import("vue").PropType<(value: number) => any>;
|
374
|
+
};
|
375
|
+
} & {
|
376
|
+
"v-model": {
|
377
|
+
type: import("vue").PropType<number>;
|
378
|
+
required: false;
|
379
|
+
};
|
380
|
+
} & {
|
381
|
+
modelValue: {
|
382
|
+
type: import("vue").PropType<number>;
|
383
|
+
required: false;
|
384
|
+
};
|
385
|
+
}>;
|
386
|
+
defaultValue(value?: number): import("../../../DefineVueTypings").DefinePropModelDefaultValue<string, number, {
|
387
|
+
"onUpdate:modelValue": {
|
388
|
+
type: import("vue").PropType<(value: number) => any>;
|
389
|
+
};
|
390
|
+
} & {
|
391
|
+
"v-model": {
|
392
|
+
type: import("vue").PropType<number>;
|
393
|
+
required: false;
|
394
|
+
};
|
395
|
+
} & {
|
396
|
+
modelValue: {
|
397
|
+
type: import("vue").PropType<number>;
|
398
|
+
required: false;
|
399
|
+
};
|
400
|
+
}, false>;
|
401
|
+
doc$(description?: string): import("../../../DefineVueTypings").DefinePropModelDoc<string, number, {
|
402
|
+
"onUpdate:modelValue": {
|
403
|
+
type: import("vue").PropType<(value: number) => any>;
|
404
|
+
};
|
405
|
+
} & {
|
406
|
+
"v-model": {
|
407
|
+
type: import("vue").PropType<number>;
|
408
|
+
required: false;
|
409
|
+
};
|
410
|
+
} & {
|
411
|
+
modelValue: {
|
412
|
+
type: import("vue").PropType<number>;
|
413
|
+
required: false;
|
414
|
+
};
|
415
|
+
}>;
|
416
|
+
};
|
417
|
+
label?: string;
|
418
|
+
settings?: VelcronNumberEditorSettings;
|
419
|
+
"v-model"?: number;
|
420
|
+
"onUpdate:modelValue"?: (value: number) => any;
|
421
|
+
modelValue?: number;
|
422
|
+
location?: EditorLocation;
|
423
|
+
}>, "onUpdate:modelValue"> & {
|
424
|
+
"onUpdate:modelValue"?: (value: string) => any;
|
425
|
+
};
|
426
|
+
};
|
427
|
+
export default _default;
|
@@ -195,6 +195,7 @@ import wc8848766a05fd4a7a8e1a89376b3cf09a from './ux/oxide/avatar/Avatar';
|
|
195
195
|
import wc4cc48714e16a45feb2d213932a13d1f8 from './ux/oxide/badge/Badge';
|
196
196
|
import wc2dc36afd27594696ad30c07d123dcc62 from './ux/oxide/btn/Button';
|
197
197
|
import wc2c9330897d814c55987d0530d63d458e from './ux/oxide/btngroup/ButtonGroup';
|
198
|
+
import wcbd13e7d1122245cf89acfb1a221f0c44 from './ux/oxide/calendar/Calendar';
|
198
199
|
import wc9349eb7714274f73bb91f7994524e5c8 from './ux/oxide/card/Card';
|
199
200
|
import wc3d712fc3294b4b6c8283934e5d0ce00c from './ux/oxide/chart/Chart';
|
200
201
|
import wcf552852ba9874a378c9329da62aaf9dc from './ux/oxide/checkbox/Checkbox';
|
@@ -242,6 +243,7 @@ import wcd5ff31018df44196a5c6ab219bab4c25 from './ux/oxide/slidepanel/Slide';
|
|
242
243
|
import wcd108fdde5ca942d7ae92195eb74b5452 from './ux/oxide/slider/Slider';
|
243
244
|
import wca19feddcd78b4065b7650162fd088379 from './ux/oxide/snackbar/Snackbar';
|
244
245
|
import wcc26ccc7aeae04f76a062e83c6df302fc from './ux/oxide/spacer/Spacer';
|
246
|
+
import wc46496f768c2040ce9bbbe4552f33200c from './ux/oxide/speeddial/SpeedDial';
|
245
247
|
import wc6b7f04ba8fc4487ea496dd8e42b55dbd from './ux/oxide/splitpane/Splitpane';
|
246
248
|
import wc170e15fd849e41568ed9b48f88711527 from './ux/oxide/splitpane/SplitpaneItem';
|
247
249
|
import wc7cc2d4feecde4174badc5797ba6fb53e from './ux/oxide/stepper/Stepper';
|
@@ -433,9 +435,6 @@ import wc1476702e8f24468d9185322be5931c54 from './ux/app/management/tabs/shared/
|
|
433
435
|
import wc56efc575579e4da3bb45d3a45d8c0888 from './ux/aurora/admin/blades/blueprints/components/ComponentsJourney';
|
434
436
|
import wc891de93e73cc47b0a552d24fdf34c9cf from './ux/aurora/admin/blades/blueprints/spacing/SpacingJourney';
|
435
437
|
import wcfc2401c7c3384790ae7ce17d05b0855f from './ux/aurora/admin/blades/blueprints/typography/TypographyJourney';
|
436
|
-
import wc327aebb7d6ce4565bf119cf67e121d1a from './ux/velcron/editor/components/pickers/colorpicker/ColorPicker';
|
437
|
-
import wc511447a5fd2646af910064ed9970d82e from './ux/velcron/editor/components/pickers/colorschemamapper/ColorSchemaMapper';
|
438
|
-
import wc3cd2da446d21461e8149e6c8334a36f4 from './ux/velcron/editor/components/pickers/ratiopicker/RatioPicker';
|
439
438
|
type ExtractJsxProps<T> = {
|
440
439
|
[K in keyof (T extends {
|
441
440
|
propsDefinition: any;
|
@@ -1040,6 +1039,9 @@ declare global {
|
|
1040
1039
|
"o-btn-group": typeof wc2c9330897d814c55987d0530d63d458e extends {
|
1041
1040
|
propsDefinition: infer TProp;
|
1042
1041
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc2c9330897d814c55987d0530d63d458e extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc2c9330897d814c55987d0530d63d458e>, "propsDefinition">> : never;
|
1042
|
+
"o-calendar": typeof wcbd13e7d1122245cf89acfb1a221f0c44 extends {
|
1043
|
+
propsDefinition: infer TProp;
|
1044
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcbd13e7d1122245cf89acfb1a221f0c44 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcbd13e7d1122245cf89acfb1a221f0c44>, "propsDefinition">> : never;
|
1043
1045
|
"o-card": typeof wc9349eb7714274f73bb91f7994524e5c8 extends {
|
1044
1046
|
propsDefinition: infer TProp;
|
1045
1047
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc9349eb7714274f73bb91f7994524e5c8 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc9349eb7714274f73bb91f7994524e5c8>, "propsDefinition">> : never;
|
@@ -1181,6 +1183,9 @@ declare global {
|
|
1181
1183
|
"o-spacer": typeof wcc26ccc7aeae04f76a062e83c6df302fc extends {
|
1182
1184
|
propsDefinition: infer TProp;
|
1183
1185
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcc26ccc7aeae04f76a062e83c6df302fc extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcc26ccc7aeae04f76a062e83c6df302fc>, "propsDefinition">> : never;
|
1186
|
+
"o-speed-dial": typeof wc46496f768c2040ce9bbbe4552f33200c extends {
|
1187
|
+
propsDefinition: infer TProp;
|
1188
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc46496f768c2040ce9bbbe4552f33200c extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc46496f768c2040ce9bbbe4552f33200c>, "propsDefinition">> : never;
|
1184
1189
|
"o-splitpane": typeof wc6b7f04ba8fc4487ea496dd8e42b55dbd extends {
|
1185
1190
|
propsDefinition: infer TProp;
|
1186
1191
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc6b7f04ba8fc4487ea496dd8e42b55dbd extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc6b7f04ba8fc4487ea496dd8e42b55dbd>, "propsDefinition">> : never;
|
@@ -1754,15 +1759,6 @@ declare global {
|
|
1754
1759
|
"omnia-workplace-typography-journey": typeof wcfc2401c7c3384790ae7ce17d05b0855f extends {
|
1755
1760
|
propsDefinition: infer TProp;
|
1756
1761
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcfc2401c7c3384790ae7ce17d05b0855f extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcfc2401c7c3384790ae7ce17d05b0855f>, "propsDefinition">> : never;
|
1757
|
-
"omfx-color-picker-schema": typeof wc327aebb7d6ce4565bf119cf67e121d1a extends {
|
1758
|
-
propsDefinition: infer TProp;
|
1759
|
-
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc327aebb7d6ce4565bf119cf67e121d1a extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc327aebb7d6ce4565bf119cf67e121d1a>, "propsDefinition">> : never;
|
1760
|
-
"omfx-color-schema-mapper": typeof wc511447a5fd2646af910064ed9970d82e extends {
|
1761
|
-
propsDefinition: infer TProp;
|
1762
|
-
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc511447a5fd2646af910064ed9970d82e extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc511447a5fd2646af910064ed9970d82e>, "propsDefinition">> : never;
|
1763
|
-
"omfx-ratio-picker": typeof wc3cd2da446d21461e8149e6c8334a36f4 extends {
|
1764
|
-
propsDefinition: infer TProp;
|
1765
|
-
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc3cd2da446d21461e8149e6c8334a36f4 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc3cd2da446d21461e8149e6c8334a36f4>, "propsDefinition">> : never;
|
1766
1762
|
}
|
1767
1763
|
}
|
1768
1764
|
}
|
@@ -4743,22 +4739,6 @@ declare global {
|
|
4743
4739
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
4744
4740
|
};
|
4745
4741
|
} : typeof wc7abfeece956245f3ba63c231d3c31c26;
|
4746
|
-
"mapper": typeof wc511447a5fd2646af910064ed9970d82e extends {
|
4747
|
-
propsDefinition: infer TProp;
|
4748
|
-
} ? {
|
4749
|
-
new (...args: any[]): {
|
4750
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
4751
|
-
};
|
4752
|
-
} : typeof wc511447a5fd2646af910064ed9970d82e;
|
4753
|
-
};
|
4754
|
-
"picker": {
|
4755
|
-
"schema": typeof wc327aebb7d6ce4565bf119cf67e121d1a extends {
|
4756
|
-
propsDefinition: infer TProp;
|
4757
|
-
} ? {
|
4758
|
-
new (...args: any[]): {
|
4759
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
4760
|
-
};
|
4761
|
-
} : typeof wc327aebb7d6ce4565bf119cf67e121d1a;
|
4762
4742
|
};
|
4763
4743
|
};
|
4764
4744
|
"component": {
|
@@ -4973,15 +4953,6 @@ declare global {
|
|
4973
4953
|
};
|
4974
4954
|
} : typeof wc1476702e8f24468d9185322be5931c54;
|
4975
4955
|
};
|
4976
|
-
"ratio": {
|
4977
|
-
"picker": typeof wc3cd2da446d21461e8149e6c8334a36f4 extends {
|
4978
|
-
propsDefinition: infer TProp;
|
4979
|
-
} ? {
|
4980
|
-
new (...args: any[]): {
|
4981
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
4982
|
-
};
|
4983
|
-
} : typeof wc3cd2da446d21461e8149e6c8334a36f4;
|
4984
|
-
};
|
4985
4956
|
};
|
4986
4957
|
let o: {
|
4987
4958
|
"alert": typeof wc8a200f29d7484601b901dd76ca8ec771 extends {
|
@@ -5030,6 +5001,13 @@ declare global {
|
|
5030
5001
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5031
5002
|
};
|
5032
5003
|
} : typeof wc2dc36afd27594696ad30c07d123dcc62;
|
5004
|
+
"calendar": typeof wcbd13e7d1122245cf89acfb1a221f0c44 extends {
|
5005
|
+
propsDefinition: infer TProp;
|
5006
|
+
} ? {
|
5007
|
+
new (...args: any[]): {
|
5008
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5009
|
+
};
|
5010
|
+
} : typeof wcbd13e7d1122245cf89acfb1a221f0c44;
|
5033
5011
|
"card": typeof wc9349eb7714274f73bb91f7994524e5c8 extends {
|
5034
5012
|
propsDefinition: infer TProp;
|
5035
5013
|
} ? {
|
@@ -5391,6 +5369,15 @@ declare global {
|
|
5391
5369
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5392
5370
|
};
|
5393
5371
|
} : typeof wcc26ccc7aeae04f76a062e83c6df302fc;
|
5372
|
+
"speed": {
|
5373
|
+
"dial": typeof wc46496f768c2040ce9bbbe4552f33200c extends {
|
5374
|
+
propsDefinition: infer TProp;
|
5375
|
+
} ? {
|
5376
|
+
new (...args: any[]): {
|
5377
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5378
|
+
};
|
5379
|
+
} : typeof wc46496f768c2040ce9bbbe4552f33200c;
|
5380
|
+
};
|
5394
5381
|
"splitpane": {
|
5395
5382
|
"item": typeof wc170e15fd849e41568ed9b48f88711527 extends {
|
5396
5383
|
propsDefinition: infer TProp;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.178-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.178-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
@@ -1,31 +0,0 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
3
|
-
model: import("vue").Prop<string, string>;
|
4
|
-
onChange: import("vue").Prop<(value: string) => void, (value: string) => void>;
|
5
|
-
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
6
|
-
model: import("vue").Prop<string, string>;
|
7
|
-
onChange: import("vue").Prop<(value: string) => void, (value: string) => void>;
|
8
|
-
}>>, {}, true, {}, {}, {
|
9
|
-
P: {};
|
10
|
-
B: {};
|
11
|
-
D: {};
|
12
|
-
C: {};
|
13
|
-
M: {};
|
14
|
-
Defaults: {};
|
15
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
16
|
-
model: import("vue").Prop<string, string>;
|
17
|
-
onChange: import("vue").Prop<(value: string) => void, (value: string) => void>;
|
18
|
-
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
19
|
-
__isFragment?: never;
|
20
|
-
__isTeleport?: never;
|
21
|
-
__isSuspense?: never;
|
22
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
23
|
-
model: import("vue").Prop<string, string>;
|
24
|
-
onChange: import("vue").Prop<(value: string) => void, (value: string) => void>;
|
25
|
-
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
26
|
-
propsDefinition: Omit<Readonly<{} & {
|
27
|
-
onChange?: (value: string) => void;
|
28
|
-
model?: string;
|
29
|
-
}>, never>;
|
30
|
-
};
|
31
|
-
export default _default;
|
@@ -1,37 +0,0 @@
|
|
1
|
-
import { ColorSchemaReference } from "@omnia/fx-models";
|
2
|
-
interface VelcronColorSchema {
|
3
|
-
colorSchemas: {
|
4
|
-
[key: string]: ColorSchemaReference;
|
5
|
-
};
|
6
|
-
}
|
7
|
-
declare const _default: {
|
8
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
9
|
-
model: import("vue").Prop<VelcronColorSchema, VelcronColorSchema>;
|
10
|
-
onChange: import("vue").Prop<(value: VelcronColorSchema) => void, (value: VelcronColorSchema) => void>;
|
11
|
-
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
12
|
-
model: import("vue").Prop<VelcronColorSchema, VelcronColorSchema>;
|
13
|
-
onChange: import("vue").Prop<(value: VelcronColorSchema) => void, (value: VelcronColorSchema) => void>;
|
14
|
-
}>>, {}, true, {}, {}, {
|
15
|
-
P: {};
|
16
|
-
B: {};
|
17
|
-
D: {};
|
18
|
-
C: {};
|
19
|
-
M: {};
|
20
|
-
Defaults: {};
|
21
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
22
|
-
model: import("vue").Prop<VelcronColorSchema, VelcronColorSchema>;
|
23
|
-
onChange: import("vue").Prop<(value: VelcronColorSchema) => void, (value: VelcronColorSchema) => void>;
|
24
|
-
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
25
|
-
__isFragment?: never;
|
26
|
-
__isTeleport?: never;
|
27
|
-
__isSuspense?: never;
|
28
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
29
|
-
model: import("vue").Prop<VelcronColorSchema, VelcronColorSchema>;
|
30
|
-
onChange: import("vue").Prop<(value: VelcronColorSchema) => void, (value: VelcronColorSchema) => void>;
|
31
|
-
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
32
|
-
propsDefinition: Omit<Readonly<{} & {
|
33
|
-
onChange?: (value: VelcronColorSchema) => void;
|
34
|
-
model?: VelcronColorSchema;
|
35
|
-
}>, never>;
|
36
|
-
};
|
37
|
-
export default _default;
|
@@ -1,16 +0,0 @@
|
|
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;
|
@@ -1,32 +0,0 @@
|
|
1
|
-
import { VelcronImageRatios } from "@omnia/fx-models";
|
2
|
-
declare const _default: {
|
3
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
-
model: import("vue").Prop<import("vue").PropType<VelcronImageRatios>, import("vue").PropType<VelcronImageRatios>>;
|
5
|
-
onChange: import("vue").Prop<(value: VelcronImageRatios) => void, (value: VelcronImageRatios) => void>;
|
6
|
-
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
7
|
-
model: import("vue").Prop<import("vue").PropType<VelcronImageRatios>, import("vue").PropType<VelcronImageRatios>>;
|
8
|
-
onChange: import("vue").Prop<(value: VelcronImageRatios) => void, (value: VelcronImageRatios) => void>;
|
9
|
-
}>>, {}, true, {}, {}, {
|
10
|
-
P: {};
|
11
|
-
B: {};
|
12
|
-
D: {};
|
13
|
-
C: {};
|
14
|
-
M: {};
|
15
|
-
Defaults: {};
|
16
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
17
|
-
model: import("vue").Prop<import("vue").PropType<VelcronImageRatios>, import("vue").PropType<VelcronImageRatios>>;
|
18
|
-
onChange: import("vue").Prop<(value: VelcronImageRatios) => void, (value: VelcronImageRatios) => void>;
|
19
|
-
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
20
|
-
__isFragment?: never;
|
21
|
-
__isTeleport?: never;
|
22
|
-
__isSuspense?: never;
|
23
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
24
|
-
model: import("vue").Prop<import("vue").PropType<VelcronImageRatios>, import("vue").PropType<VelcronImageRatios>>;
|
25
|
-
onChange: import("vue").Prop<(value: VelcronImageRatios) => void, (value: VelcronImageRatios) => void>;
|
26
|
-
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
27
|
-
propsDefinition: Omit<Readonly<{} & {
|
28
|
-
onChange?: (value: VelcronImageRatios) => void;
|
29
|
-
model?: import("vue").PropType<VelcronImageRatios>;
|
30
|
-
}>, never>;
|
31
|
-
};
|
32
|
-
export default _default;
|