@omnia/fx 8.0.183-dev → 8.0.184-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. package/internal-do-not-import-from-here/libs/sortable/Sortable.d.ts +1 -0
  2. package/internal-do-not-import-from-here/libs/sortable/index.d.ts +1 -0
  3. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  4. package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +43 -1
  5. package/internal-do-not-import-from-here/ux/aurora/components/containerpicker/ContainerPicker.d.ts +52 -0
  6. package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +2 -2
  7. package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +8 -8
  8. package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +24 -24
  9. package/internal-do-not-import-from-here/ux/aurora/store/ThemeStoreV2.d.ts +3 -3
  10. package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +8 -8
  11. package/internal-do-not-import-from-here/ux/journey/SettingsJourney.d.ts +70 -0
  12. package/internal-do-not-import-from-here/ux/journey/SettingsJourneyBlade.d.ts +55 -0
  13. package/internal-do-not-import-from-here/ux/journey/SettingsJourneyMenu.d.ts +56 -0
  14. package/internal-do-not-import-from-here/ux/journey/models/SettingsBladeRegistration.d.ts +12 -0
  15. package/internal-do-not-import-from-here/ux/journey/models/index.d.ts +1 -0
  16. package/internal-do-not-import-from-here/ux/journey/stores/SettingsJourneyStore.d.ts +68 -0
  17. package/internal-do-not-import-from-here/ux/journey/stores/index.d.ts +1 -0
  18. package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +11 -3
  19. package/internal-do-not-import-from-here/ux/markdown/patches/HtmlInlinePatch.d.ts +2 -0
  20. package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ThemeStylingPlugin.d.ts +1 -1
  21. package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +2 -0
  22. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +15 -6
  23. package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +3 -0
  24. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.css.d.ts +2 -5
  25. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +9 -9
  26. package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +9 -67
  27. package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -0
  28. package/internal-do-not-import-from-here/wctypings.d.ts +44 -9
  29. package/package.json +2 -2
@@ -0,0 +1,70 @@
1
+ import { IIcon } from "@omnia/fx-models";
2
+ import { useSettingsJourneyStore } from "@omnia/fx/ux";
3
+ type JourneyVariant = "settings" | "dialog";
4
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
5
+ getApi?: (store: ReturnType<typeof useSettingsJourneyStore>) => void;
6
+ } & {
7
+ variant?: JourneyVariant;
8
+ } & {
9
+ title?: string;
10
+ } & {
11
+ icon?: IIcon;
12
+ }> & Omit<{}, "icon" | "title" | "variant" | "getApi"> & {
13
+ "v-slots"?: {
14
+ default?: import("vue").Slot;
15
+ } & {};
16
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "title" | "variant" | "getApi">) => {
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: import("@omnia/fx/ux").ExtractProps<{
55
+ getApi?: (store: ReturnType<typeof useSettingsJourneyStore>) => void;
56
+ } & {
57
+ variant?: JourneyVariant;
58
+ } & {
59
+ title?: string;
60
+ } & {
61
+ icon?: IIcon;
62
+ }> & {
63
+ "v-slots"?: {
64
+ default?: import("vue").Slot;
65
+ } & {};
66
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "title" | "variant" | "getApi">;
67
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
68
+ [key: string]: any;
69
+ }>;
70
+ export default _default;
@@ -0,0 +1,55 @@
1
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
2
+ id?: string;
3
+ }> & Omit<{}, "id"> & {
4
+ "v-slots"?: {
5
+ default?: import("vue").Slot;
6
+ } & {};
7
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "id">) => {
8
+ $: import("vue").ComponentInternalInstance;
9
+ $data: {};
10
+ $props: {};
11
+ $attrs: {
12
+ [x: string]: unknown;
13
+ };
14
+ $refs: {
15
+ [x: string]: unknown;
16
+ };
17
+ $slots: Readonly<{
18
+ [name: string]: import("vue").Slot<any>;
19
+ }>;
20
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
21
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
22
+ $emit: (event: string, ...args: any[]) => void;
23
+ $el: any;
24
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
25
+ beforeCreate?: (() => void) | (() => void)[];
26
+ created?: (() => void) | (() => void)[];
27
+ beforeMount?: (() => void) | (() => void)[];
28
+ mounted?: (() => void) | (() => void)[];
29
+ beforeUpdate?: (() => void) | (() => void)[];
30
+ updated?: (() => void) | (() => void)[];
31
+ activated?: (() => void) | (() => void)[];
32
+ deactivated?: (() => void) | (() => void)[];
33
+ beforeDestroy?: (() => void) | (() => void)[];
34
+ beforeUnmount?: (() => void) | (() => void)[];
35
+ destroyed?: (() => void) | (() => void)[];
36
+ unmounted?: (() => void) | (() => void)[];
37
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
38
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
39
+ 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)[];
40
+ };
41
+ $forceUpdate: () => void;
42
+ $nextTick: typeof import("vue").nextTick;
43
+ $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;
44
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
45
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
46
+ id?: string;
47
+ }> & {
48
+ "v-slots"?: {
49
+ default?: import("vue").Slot;
50
+ } & {};
51
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "id">;
52
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
53
+ [key: string]: any;
54
+ }>;
55
+ export default _default;
@@ -0,0 +1,56 @@
1
+ import { settingsJourneyMenuItem } from "@omnia/fx/ux";
2
+ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
3
+ items?: settingsJourneyMenuItem[];
4
+ }> & Omit<{}, "items"> & {
5
+ "v-slots"?: {
6
+ default?: import("vue").Slot;
7
+ } & {};
8
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "items">) => {
9
+ $: import("vue").ComponentInternalInstance;
10
+ $data: {};
11
+ $props: {};
12
+ $attrs: {
13
+ [x: string]: unknown;
14
+ };
15
+ $refs: {
16
+ [x: string]: unknown;
17
+ };
18
+ $slots: Readonly<{
19
+ [name: string]: import("vue").Slot<any>;
20
+ }>;
21
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
22
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
23
+ $emit: (event: string, ...args: any[]) => void;
24
+ $el: any;
25
+ $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
26
+ beforeCreate?: (() => void) | (() => void)[];
27
+ created?: (() => void) | (() => void)[];
28
+ beforeMount?: (() => void) | (() => void)[];
29
+ mounted?: (() => void) | (() => void)[];
30
+ beforeUpdate?: (() => void) | (() => void)[];
31
+ updated?: (() => void) | (() => void)[];
32
+ activated?: (() => void) | (() => void)[];
33
+ deactivated?: (() => void) | (() => void)[];
34
+ beforeDestroy?: (() => void) | (() => void)[];
35
+ beforeUnmount?: (() => void) | (() => void)[];
36
+ destroyed?: (() => void) | (() => void)[];
37
+ unmounted?: (() => void) | (() => void)[];
38
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
39
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
40
+ 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)[];
41
+ };
42
+ $forceUpdate: () => void;
43
+ $nextTick: typeof import("vue").nextTick;
44
+ $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;
45
+ } & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
46
+ propsDefinition: import("@omnia/fx/ux").ExtractProps<{
47
+ items?: settingsJourneyMenuItem[];
48
+ }> & {
49
+ "v-slots"?: {
50
+ default?: import("vue").Slot;
51
+ } & {};
52
+ } & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "items">;
53
+ } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
54
+ [key: string]: any;
55
+ }>;
56
+ export default _default;
@@ -0,0 +1,12 @@
1
+ import { GuidValue, IIcon } from "@omnia/fx-models";
2
+ import { VNodeChild } from "vue";
3
+ export interface SettingsJourneyItem {
4
+ id: GuidValue;
5
+ title: string;
6
+ icon: IIcon;
7
+ }
8
+ export interface settingsJourneyMenuItem extends SettingsJourneyItem {
9
+ }
10
+ export interface SettingsBladeRegistration extends SettingsJourneyItem {
11
+ element: VNodeChild;
12
+ }
@@ -1,2 +1,3 @@
1
1
  export * from "./BladeInstance";
2
2
  export * from "./Constants";
3
+ export * from "./SettingsBladeRegistration";
@@ -0,0 +1,68 @@
1
+ import { GuidValue, IIcon } from "@omnia/fx-models";
2
+ import { SettingsBladeRegistration } from "../models";
3
+ export declare const useSettingsJourneyStore: () => {
4
+ state: {
5
+ title: string;
6
+ icon: IIcon;
7
+ activeBlade: SettingsBladeRegistration;
8
+ bladeRegistrations: SettingsBladeRegistration[];
9
+ };
10
+ events: {
11
+ onMutatedTitle: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
12
+ onMutatedIcon: import("@omnia/fx").MessageBusExposeOnlySubscription<IIcon>;
13
+ onMutatedActiveBlade: import("@omnia/fx").MessageBusExposeOnlySubscription<SettingsBladeRegistration>;
14
+ onMutatedBladeRegistrations: import("@omnia/fx").MessageBusExposeOnlySubscription<SettingsBladeRegistration[]>;
15
+ } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
16
+ actions: {
17
+ onDispatching: {
18
+ defineJourney: {
19
+ subscribe(fn: (title: string, icon: IIcon) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
20
+ };
21
+ registerBlade: {
22
+ subscribe(fn: (registration: SettingsBladeRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
23
+ };
24
+ travelTo: {
25
+ subscribe(fn: (bladeId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
26
+ };
27
+ travelBack: {
28
+ subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
29
+ };
30
+ };
31
+ onDispatched: {
32
+ defineJourney: {
33
+ subscribe(fn: (result: void, title: string, icon: IIcon) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
34
+ };
35
+ registerBlade: {
36
+ subscribe(fn: (result: void, registration: SettingsBladeRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
37
+ };
38
+ travelTo: {
39
+ subscribe(fn: (result: void, bladeId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
40
+ };
41
+ travelBack: {
42
+ subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
43
+ };
44
+ };
45
+ onFailure: {
46
+ defineJourney: {
47
+ subscribe(fn: (failureReason: any, title: string, icon: IIcon) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
48
+ };
49
+ registerBlade: {
50
+ subscribe(fn: (failureReason: any, registration: SettingsBladeRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
51
+ };
52
+ travelTo: {
53
+ subscribe(fn: (failureReason: any, bladeId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
54
+ };
55
+ travelBack: {
56
+ subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
57
+ };
58
+ };
59
+ } & {
60
+ defineJourney: (title: string, icon: IIcon) => void;
61
+ registerBlade: (registration: SettingsBladeRegistration) => void;
62
+ travelTo: (bladeId: GuidValue) => void;
63
+ travelBack: () => void;
64
+ };
65
+ get: {
66
+ readonly themeStore: any;
67
+ };
68
+ };
@@ -1,3 +1,4 @@
1
1
  export * from "./JourneyStore";
2
2
  export * from "./JourneyMenuStore";
3
3
  export * from "./JourneyRouterStore";
4
+ export * from "./SettingsJourneyStore";
@@ -51,6 +51,10 @@ export declare function useBlade<TRoute extends {
51
51
  itemsPerPage?: number;
52
52
  } & {
53
53
  headers?: import("../..").DataTableHeader[];
54
+ } & {
55
+ "v-model:items"?: T[];
56
+ } & {
57
+ "onUpdate:items"?: (value: T[]) => void;
54
58
  } & {
55
59
  items?: T[];
56
60
  } & import("../..").DefineEmit<"update:sortBy", (item: import("../..").SortItem[]) => void> & import("../..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("../..").DefineEmit<"update:sortBy", (sort: import("../..").SortItem[]) => void> & import("../..").DefineSlot<"item", (row: import("../..").IDataTableRowRenderer<T>) => void> & import("../..").DefineSlot<`header.${string}`, (header: import("../..").DataTableHeader) => void> & import("../..").DefineSlot<`item.${string}`, (e: {
@@ -58,7 +62,7 @@ export declare function useBlade<TRoute extends {
58
62
  }) => void>> & Omit<{
59
63
  "onUpdate:expanded"?: (expanded: string[]) => any;
60
64
  "onUpdate:sortBy"?: (item: import("../..").SortItem[]) => any;
61
- }, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage"> & {
65
+ }, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items"> & {
62
66
  "v-slots"?: {
63
67
  default?: import("vue").Slot;
64
68
  } & {
@@ -68,7 +72,7 @@ export declare function useBlade<TRoute extends {
68
72
  }) => void;
69
73
  item?: (row: import("../..").IDataTableRowRenderer<T>) => void;
70
74
  };
71
- } & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "emit:update:sortBy" | "emit:update:expanded" | "slot:item" | `slot:header.${string}` | `slot:item.${string}`>) => {
75
+ } & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items" | "emit:update:sortBy" | "emit:update:expanded" | "slot:item" | `slot:header.${string}` | `slot:item.${string}`>) => {
72
76
  $: import("vue").ComponentInternalInstance;
73
77
  $data: {};
74
78
  $props: {};
@@ -142,6 +146,10 @@ export declare function useBlade<TRoute extends {
142
146
  itemsPerPage?: number;
143
147
  } & {
144
148
  headers?: import("../..").DataTableHeader[];
149
+ } & {
150
+ "v-model:items"?: T[];
151
+ } & {
152
+ "onUpdate:items"?: (value: T[]) => void;
145
153
  } & {
146
154
  items?: T[];
147
155
  } & import("../..").DefineEmit<"update:sortBy", (item: import("../..").SortItem[]) => void> & import("../..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("../..").DefineEmit<"update:sortBy", (sort: import("../..").SortItem[]) => void> & import("../..").DefineSlot<"item", (row: import("../..").IDataTableRowRenderer<T>) => void> & import("../..").DefineSlot<`header.${string}`, (header: import("../..").DataTableHeader) => void> & import("../..").DefineSlot<`item.${string}`, (e: {
@@ -159,7 +167,7 @@ export declare function useBlade<TRoute extends {
159
167
  } & {
160
168
  "onUpdate:expanded"?: (expanded: string[]) => any;
161
169
  "onUpdate:sortBy"?: (item: import("../..").SortItem[]) => any;
162
- } & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage">;
170
+ } & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items">;
163
171
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
164
172
  [key: string]: any;
165
173
  }>;
@@ -0,0 +1,2 @@
1
+ import { Editor } from "@toast-ui/editor";
2
+ export declare function applyHtmlInlinePatch(editor: Editor): (state: any, node: any) => void;
@@ -1,3 +1,3 @@
1
1
  import { PluginContext, PluginInfo } from "@toast-ui/editor";
2
2
  import { MarkdownPluginContext } from "../MarkdownPluginContext";
3
- export declare function themeStylingPlugin(context: PluginContext, options: MarkdownPluginContext): PluginInfo;
3
+ export declare function useThemeStylingPlugin(context: PluginContext, options: MarkdownPluginContext): PluginInfo;
@@ -1,3 +1,4 @@
1
+ import { IIcon } from "@omnia/fx-models";
1
2
  import { VNodeChild } from "vue";
2
3
  export type SelectItemKey = boolean | string | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any);
3
4
  export type DataTableCompareFunction<T = any> = (a: T, b: T) => number;
@@ -26,6 +27,7 @@ export interface IDataTableRowRenderer<T = any> {
26
27
  onClick(callback: () => void): Omit<IDataTableRowRenderer, "onClick">;
27
28
  addCell(node: VNodeChild, colSpan?: number, classes?: string, styles?: string): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
28
29
  addAction(node: VNodeChild): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
30
+ addIcon(icon: IIcon): any;
29
31
  }
30
32
  export type SortItem = {
31
33
  key: string;
@@ -1,4 +1,5 @@
1
1
  import { DataTableHeader, DefineEmit, DefineSlot, IDataTableRowRenderer, SortItem } from "@omnia/fx/ux";
2
+ import { ComponentPublicInstance } from "vue";
2
3
  declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").ExtractProps<{
3
4
  colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
4
5
  } & {
@@ -35,6 +36,10 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
35
36
  itemsPerPage?: number;
36
37
  } & {
37
38
  headers?: DataTableHeader[];
39
+ } & {
40
+ "v-model:items"?: T[];
41
+ } & {
42
+ "onUpdate:items"?: (value: T[]) => void;
38
43
  } & {
39
44
  items?: T[];
40
45
  } & 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: {
@@ -42,7 +47,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
42
47
  }) => void>> & Omit<{
43
48
  "onUpdate:expanded"?: (expanded: string[]) => any;
44
49
  "onUpdate:sortBy"?: (item: SortItem[]) => any;
45
- }, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage"> & {
50
+ }, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items"> & {
46
51
  "v-slots"?: {
47
52
  default?: import("vue").Slot;
48
53
  } & {
@@ -52,7 +57,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
52
57
  }) => void;
53
58
  item?: (row: IDataTableRowRenderer<T>) => void;
54
59
  };
55
- } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "emit:update:sortBy" | "emit:update:expanded" | "slot:item" | `slot:header.${string}` | `slot:item.${string}`>) => {
60
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items" | "emit:update:sortBy" | "emit:update:expanded" | "slot:item" | `slot:header.${string}` | `slot:item.${string}`>) => {
56
61
  $: import("vue").ComponentInternalInstance;
57
62
  $data: {};
58
63
  $props: {};
@@ -65,8 +70,8 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
65
70
  $slots: Readonly<{
66
71
  [name: string]: import("vue").Slot<any>;
67
72
  }>;
68
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
69
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
73
+ $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
74
+ $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
70
75
  $emit: (event: string, ...args: any[]) => void;
71
76
  $el: any;
72
77
  $options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
@@ -84,7 +89,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
84
89
  unmounted?: (() => void) | (() => void)[];
85
90
  renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
86
91
  renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
87
- 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)[];
92
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
88
93
  };
89
94
  $forceUpdate: () => void;
90
95
  $nextTick: typeof import("vue").nextTick;
@@ -126,6 +131,10 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
126
131
  itemsPerPage?: number;
127
132
  } & {
128
133
  headers?: DataTableHeader[];
134
+ } & {
135
+ "v-model:items"?: T[];
136
+ } & {
137
+ "onUpdate:items"?: (value: T[]) => void;
129
138
  } & {
130
139
  items?: T[];
131
140
  } & 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: {
@@ -143,7 +152,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
143
152
  } & {
144
153
  "onUpdate:expanded"?: (expanded: string[]) => any;
145
154
  "onUpdate:sortBy"?: (item: SortItem[]) => any;
146
- } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage">;
155
+ } & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items">;
147
156
  } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
148
157
  [key: string]: any;
149
158
  }>;
@@ -1,3 +1,4 @@
1
+ import { IIcon } from "@omnia/fx-models";
1
2
  import { IDataTableRowRenderer } from "@omnia/fx/ux";
2
3
  import { VNodeChild } from "vue";
3
4
  export declare class DataTableRowRenderer implements IDataTableRowRenderer {
@@ -9,6 +10,7 @@ export declare class DataTableRowRenderer implements IDataTableRowRenderer {
9
10
  classes?: string;
10
11
  styles?: string;
11
12
  }>;
13
+ icon: IIcon;
12
14
  actions: Array<VNodeChild>;
13
15
  click: () => void;
14
16
  preselect: any;
@@ -20,5 +22,6 @@ export declare class DataTableRowRenderer implements IDataTableRowRenderer {
20
22
  onClick(callback: () => void): this;
21
23
  disableNavigation(): this;
22
24
  addCell(node: VNodeChild, colSpan?: number, classes?: string, styles?: string): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
25
+ addIcon(icon: IIcon): void;
23
26
  addAction(node: VNodeChild): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
24
27
  }
@@ -1,6 +1,3 @@
1
- declare const _default: {
2
- container: {
3
- fontSize: number;
4
- };
1
+ export declare const DraggableStyles: {
2
+ hoverStyle: string;
5
3
  };
6
- export default _default;
@@ -16,10 +16,10 @@ declare const _default: {
16
16
  required: false;
17
17
  };
18
18
  variant: {
19
- type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
19
+ type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
20
20
  required: false;
21
21
  } & {
22
- type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
22
+ type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
23
23
  required: false;
24
24
  };
25
25
  navigable: {
@@ -87,10 +87,10 @@ declare const _default: {
87
87
  required: false;
88
88
  };
89
89
  variant: {
90
- type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
90
+ type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
91
91
  required: false;
92
92
  } & {
93
- type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
93
+ type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
94
94
  required: false;
95
95
  };
96
96
  navigable: {
@@ -161,10 +161,10 @@ declare const _default: {
161
161
  required: false;
162
162
  };
163
163
  variant: {
164
- type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
164
+ type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
165
165
  required: false;
166
166
  } & {
167
- type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
167
+ type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
168
168
  required: false;
169
169
  };
170
170
  navigable: {
@@ -232,10 +232,10 @@ declare const _default: {
232
232
  required: false;
233
233
  };
234
234
  variant: {
235
- type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
235
+ type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
236
236
  required: false;
237
237
  } & {
238
- type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
238
+ type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
239
239
  required: false;
240
240
  };
241
241
  navigable: {
@@ -300,7 +300,7 @@ declare const _default: {
300
300
  item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
301
301
  append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
302
302
  };
303
- variant?: "default" | "element" | "list" | "data-table";
303
+ variant?: "default" | "element" | "list" | "data-table" | "accordion";
304
304
  itemTitle?: string | ((item: any) => VNodeChild);
305
305
  itemValue?: string | ((item: any) => string);
306
306
  "item-value"?: string | ((item: any) => string);
@@ -1,70 +1,12 @@
1
+ import { DefineProp, DefineVModel } from "../DefineVueTypings";
2
+ import { Ref } from "vue";
3
+ type DraggableComponentProps = DefineVModel<"", Array<any>, false, null> & DefineProp<"containerRef", Ref<any>, true, null>;
4
+ type DraggableComponentTypings = (props: Omit<DraggableComponentProps, "containerRef">) => any;
1
5
  export declare function useDraggable(): {
2
- Draggable: (props: import("../InternalDefineComponent").ExtractProps<{
3
- "v-model"?: any[];
4
- } & {
5
- "onUpdate:modelValue"?: (value: any[]) => void;
6
- } & {
7
- modelValue?: any[];
8
- } & {
9
- placeholderClass?: string;
10
- }> & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue" | "placeholderClass"> & {
11
- "v-slots"?: {
12
- default?: import("vue").Slot;
13
- } & {};
14
- } & Omit<import("..").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "placeholderClass">) => {
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: import("../InternalDefineComponent").ExtractProps<{
53
- "v-model"?: any[];
54
- } & {
55
- "onUpdate:modelValue"?: (value: any[]) => void;
56
- } & {
57
- modelValue?: any[];
58
- } & {
59
- placeholderClass?: string;
60
- }> & {
61
- "v-slots"?: {
62
- default?: import("vue").Slot;
63
- } & {};
64
- } & {} & Omit<import("..").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "placeholderClass">;
65
- } & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
66
- [key: string]: any;
67
- }>;
6
+ Draggable: DraggableComponentTypings;
7
+ readonly DraggableIcon: JSX.Element;
8
+ draggableContainerRef: Ref<any>;
68
9
  draggableItemClass: string;
69
- disabledDraggableItemClass: string;
10
+ disabledItemClass: string;
70
11
  };
12
+ export {};
@@ -20,3 +20,4 @@ export * from "./UseSupported";
20
20
  export * from "./UseInterSectionObserver";
21
21
  export * from "./UseMounted";
22
22
  export * from "./UseInternatlStateMirroring";
23
+ export * from "./UseDraggable";