@omnia/fx 8.0.240-dev → 8.0.241-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/layoutcanvas/stores/LayoutCanvasStore.d.ts +12 -2
- package/internal-do-not-import-from-here/ux/markdown2/MarkdownToolbar.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownToolbarStore.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts +12 -2
- package/internal-do-not-import-from-here/ux/oxide/stickycontainer/StickyContainer.d.ts +74 -0
- package/internal-do-not-import-from-here/ux/oxide/stickycontainer/StickyContainer.stylex.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/stickycontainer/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/stickycontainer/docs/SampleComponent.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/oxide/stickycontainer/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/stickycontainer/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/stickycontainer/store/StickyContainerStore.d.ts +45 -0
- package/internal-do-not-import-from-here/ux/oxide/stickycontainer/store/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +13 -0
- package/package.json +2 -2
@@ -24,7 +24,7 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
24
24
|
disableScrolling: boolean;
|
25
25
|
height: string;
|
26
26
|
width: string;
|
27
|
-
|
27
|
+
scrollingDirection: import("@omnia/fx-models").OScrollTypesCombination;
|
28
28
|
coordinates: {
|
29
29
|
readonly left: number;
|
30
30
|
readonly right: number;
|
@@ -38,7 +38,7 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
38
38
|
onMutatedDisableScrolling: MessageBusExposeOnlySubscription<boolean>;
|
39
39
|
onMutatedHeight: MessageBusExposeOnlySubscription<string>;
|
40
40
|
onMutatedWidth: MessageBusExposeOnlySubscription<string>;
|
41
|
-
|
41
|
+
onMutatedScrollingDirection: MessageBusExposeOnlySubscription<import("@omnia/fx-models").OScrollTypesCombination>;
|
42
42
|
onMutatedCoordinates: MessageBusExposeOnlySubscription<{
|
43
43
|
readonly left: number;
|
44
44
|
readonly right: number;
|
@@ -48,6 +48,9 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
48
48
|
} & Record<string, IMessageBusTopicPublishSubscriber<any>>;
|
49
49
|
actions: {
|
50
50
|
onDispatching: {
|
51
|
+
scroll: {
|
52
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
53
|
+
};
|
51
54
|
setHeight: {
|
52
55
|
subscribe(fn: (height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
53
56
|
};
|
@@ -83,6 +86,9 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
83
86
|
};
|
84
87
|
};
|
85
88
|
onDispatched: {
|
89
|
+
scroll: {
|
90
|
+
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
91
|
+
};
|
86
92
|
setHeight: {
|
87
93
|
subscribe(fn: (result: void, height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
88
94
|
};
|
@@ -118,6 +124,9 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
118
124
|
};
|
119
125
|
};
|
120
126
|
onFailure: {
|
127
|
+
scroll: {
|
128
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
129
|
+
};
|
121
130
|
setHeight: {
|
122
131
|
subscribe(fn: (failureReason: any, height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
123
132
|
};
|
@@ -153,6 +162,7 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
153
162
|
};
|
154
163
|
};
|
155
164
|
} & {
|
165
|
+
scroll: () => void;
|
156
166
|
setHeight: (height: string) => void;
|
157
167
|
setWidth: (width: string) => void;
|
158
168
|
setScrolling: (scrolling: import("@omnia/fx-models").OScrollTypesCombination) => void;
|
@@ -1,6 +1,5 @@
|
|
1
|
-
import { guid } from "@omnia/fx-models";
|
2
1
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
-
editorId?:
|
2
|
+
editorId?: string;
|
4
3
|
}>) => {
|
5
4
|
$: import("vue").ComponentInternalInstance;
|
6
5
|
$data: {};
|
@@ -40,7 +39,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
40
39
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
41
40
|
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
42
41
|
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
43
|
-
editorId?:
|
42
|
+
editorId?: string;
|
44
43
|
}> & {
|
45
44
|
"v-slots"?: {} & Omit<{
|
46
45
|
default?: import("vue").Slot;
|
@@ -517,6 +517,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
517
517
|
};
|
518
518
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
519
519
|
};
|
520
|
+
setVisibility: {
|
521
|
+
subscribe(fn: (show: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
522
|
+
};
|
520
523
|
};
|
521
524
|
onDispatched: {
|
522
525
|
setActiveEditorStore: {
|
@@ -689,6 +692,9 @@ export declare const useMarkdownToolbarStore: () => {
|
|
689
692
|
};
|
690
693
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
691
694
|
};
|
695
|
+
setVisibility: {
|
696
|
+
subscribe(fn: (result: void, show: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
697
|
+
};
|
692
698
|
};
|
693
699
|
onFailure: {
|
694
700
|
setActiveEditorStore: {
|
@@ -861,9 +867,13 @@ export declare const useMarkdownToolbarStore: () => {
|
|
861
867
|
};
|
862
868
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
863
869
|
};
|
870
|
+
setVisibility: {
|
871
|
+
subscribe(fn: (failureReason: any, show: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
872
|
+
};
|
864
873
|
};
|
865
874
|
} & {
|
866
875
|
setActiveEditorStore: (store: ReturnType<typeof useMarkdownStore>) => void;
|
876
|
+
setVisibility: (show: boolean) => void;
|
867
877
|
};
|
868
878
|
get: {
|
869
879
|
isActiveStore(): boolean;
|
@@ -198,8 +198,8 @@ declare const _default: {
|
|
198
198
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
199
199
|
getApi?: (store: ReturnType<typeof useScrollContainerStore>) => void;
|
200
200
|
disableScrolling?: boolean;
|
201
|
-
scrolling?: OScrollTypesCombination;
|
202
201
|
compensatScrollbar?: boolean;
|
202
|
+
scrolling?: OScrollTypesCombination;
|
203
203
|
}>, never>;
|
204
204
|
};
|
205
205
|
export default _default;
|
package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts
CHANGED
@@ -9,7 +9,7 @@ export declare const useScrollContainerStore: () => {
|
|
9
9
|
disableScrolling: boolean;
|
10
10
|
height: string;
|
11
11
|
width: string;
|
12
|
-
|
12
|
+
scrollingDirection: OScrollTypesCombination;
|
13
13
|
coordinates: Coordinates;
|
14
14
|
};
|
15
15
|
events: {
|
@@ -18,11 +18,14 @@ export declare const useScrollContainerStore: () => {
|
|
18
18
|
onMutatedDisableScrolling: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
|
19
19
|
onMutatedHeight: import("../../../..").MessageBusExposeOnlySubscription<string>;
|
20
20
|
onMutatedWidth: import("../../../..").MessageBusExposeOnlySubscription<string>;
|
21
|
-
|
21
|
+
onMutatedScrollingDirection: import("../../../..").MessageBusExposeOnlySubscription<OScrollTypesCombination>;
|
22
22
|
onMutatedCoordinates: import("../../../..").MessageBusExposeOnlySubscription<Coordinates>;
|
23
23
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
24
24
|
actions: {
|
25
25
|
onDispatching: {
|
26
|
+
scroll: {
|
27
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
28
|
+
};
|
26
29
|
setHeight: {
|
27
30
|
subscribe(fn: (height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
28
31
|
};
|
@@ -58,6 +61,9 @@ export declare const useScrollContainerStore: () => {
|
|
58
61
|
};
|
59
62
|
};
|
60
63
|
onDispatched: {
|
64
|
+
scroll: {
|
65
|
+
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
66
|
+
};
|
61
67
|
setHeight: {
|
62
68
|
subscribe(fn: (result: void, height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
63
69
|
};
|
@@ -93,6 +99,9 @@ export declare const useScrollContainerStore: () => {
|
|
93
99
|
};
|
94
100
|
};
|
95
101
|
onFailure: {
|
102
|
+
scroll: {
|
103
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
104
|
+
};
|
96
105
|
setHeight: {
|
97
106
|
subscribe(fn: (failureReason: any, height: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
98
107
|
};
|
@@ -128,6 +137,7 @@ export declare const useScrollContainerStore: () => {
|
|
128
137
|
};
|
129
138
|
};
|
130
139
|
} & {
|
140
|
+
scroll: () => void;
|
131
141
|
setHeight: (height: string) => void;
|
132
142
|
setWidth: (width: string) => void;
|
133
143
|
setScrolling: (scrolling: OScrollTypesCombination) => void;
|
@@ -0,0 +1,74 @@
|
|
1
|
+
import { useStickyContainerStore } from "./store";
|
2
|
+
import { VNodeChild } from "vue";
|
3
|
+
declare const _default: {
|
4
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
5
|
+
"v-slots": import("vue").Prop<{
|
6
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
7
|
+
} & {
|
8
|
+
customRenderer?: () => VNodeChild;
|
9
|
+
}>;
|
10
|
+
viewportElementTrackingId: {
|
11
|
+
type: import("vue").PropType<string>;
|
12
|
+
};
|
13
|
+
getApi: {
|
14
|
+
type: import("vue").PropType<(store: ReturnType<typeof useStickyContainerStore>) => void>;
|
15
|
+
};
|
16
|
+
}>>, () => VNodeChild[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
17
|
+
"v-slots": import("vue").Prop<{
|
18
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
19
|
+
} & {
|
20
|
+
customRenderer?: () => VNodeChild;
|
21
|
+
}>;
|
22
|
+
viewportElementTrackingId: {
|
23
|
+
type: import("vue").PropType<string>;
|
24
|
+
};
|
25
|
+
getApi: {
|
26
|
+
type: import("vue").PropType<(store: ReturnType<typeof useStickyContainerStore>) => void>;
|
27
|
+
};
|
28
|
+
}>>, {}, true, {}, {}, {
|
29
|
+
P: {};
|
30
|
+
B: {};
|
31
|
+
D: {};
|
32
|
+
C: {};
|
33
|
+
M: {};
|
34
|
+
Defaults: {};
|
35
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
36
|
+
"v-slots": import("vue").Prop<{
|
37
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
38
|
+
} & {
|
39
|
+
customRenderer?: () => VNodeChild;
|
40
|
+
}>;
|
41
|
+
viewportElementTrackingId: {
|
42
|
+
type: import("vue").PropType<string>;
|
43
|
+
};
|
44
|
+
getApi: {
|
45
|
+
type: import("vue").PropType<(store: ReturnType<typeof useStickyContainerStore>) => void>;
|
46
|
+
};
|
47
|
+
}>>, () => VNodeChild[], {}, {}, {}, {}>;
|
48
|
+
__isFragment?: never;
|
49
|
+
__isTeleport?: never;
|
50
|
+
__isSuspense?: never;
|
51
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
52
|
+
"v-slots": import("vue").Prop<{
|
53
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
54
|
+
} & {
|
55
|
+
customRenderer?: () => VNodeChild;
|
56
|
+
}>;
|
57
|
+
viewportElementTrackingId: {
|
58
|
+
type: import("vue").PropType<string>;
|
59
|
+
};
|
60
|
+
getApi: {
|
61
|
+
type: import("vue").PropType<(store: ReturnType<typeof useStickyContainerStore>) => void>;
|
62
|
+
};
|
63
|
+
}>>, () => VNodeChild[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
64
|
+
propsDefinition: Omit<Readonly<{} & {
|
65
|
+
"v-slots"?: {
|
66
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
67
|
+
} & {
|
68
|
+
customRenderer?: () => VNodeChild;
|
69
|
+
};
|
70
|
+
getApi?: (store: ReturnType<typeof useStickyContainerStore>) => void;
|
71
|
+
viewportElementTrackingId?: string;
|
72
|
+
}>, never>;
|
73
|
+
};
|
74
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1,47 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<Record<string, any>>) => {
|
2
|
+
$: import("vue").ComponentInternalInstance;
|
3
|
+
$data: {};
|
4
|
+
$props: {};
|
5
|
+
$attrs: {
|
6
|
+
[x: string]: unknown;
|
7
|
+
};
|
8
|
+
$refs: {
|
9
|
+
[x: string]: unknown;
|
10
|
+
};
|
11
|
+
$slots: Readonly<{
|
12
|
+
[name: string]: import("vue").Slot<any>;
|
13
|
+
}>;
|
14
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
15
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
16
|
+
$emit: (event: string, ...args: any[]) => void;
|
17
|
+
$el: any;
|
18
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
19
|
+
beforeCreate?: (() => void) | (() => void)[];
|
20
|
+
created?: (() => void) | (() => void)[];
|
21
|
+
beforeMount?: (() => void) | (() => void)[];
|
22
|
+
mounted?: (() => void) | (() => void)[];
|
23
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
24
|
+
updated?: (() => void) | (() => void)[];
|
25
|
+
activated?: (() => void) | (() => void)[];
|
26
|
+
deactivated?: (() => void) | (() => void)[];
|
27
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
28
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
29
|
+
destroyed?: (() => void) | (() => void)[];
|
30
|
+
unmounted?: (() => void) | (() => void)[];
|
31
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
32
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
33
|
+
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)[];
|
34
|
+
};
|
35
|
+
$forceUpdate: () => void;
|
36
|
+
$nextTick: typeof import("vue").nextTick;
|
37
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
38
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
39
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {
|
40
|
+
"v-slots"?: {} & Omit<{
|
41
|
+
default?: import("vue").Slot;
|
42
|
+
}, never>;
|
43
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
|
44
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
45
|
+
[key: string]: any;
|
46
|
+
}>;
|
47
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./store";
|
package/internal-do-not-import-from-here/ux/oxide/stickycontainer/store/StickyContainerStore.d.ts
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
export declare const useStickyContainerStore: () => {
|
2
|
+
state: {
|
3
|
+
isSticky: boolean;
|
4
|
+
hideStickyElement: boolean;
|
5
|
+
contentVisibilityTracking: boolean;
|
6
|
+
};
|
7
|
+
events: {
|
8
|
+
onMutatedIsSticky: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
|
9
|
+
onMutatedHideStickyElement: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
|
10
|
+
onMutatedContentVisibilityTracking: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
|
11
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
12
|
+
actions: {
|
13
|
+
onDispatching: {
|
14
|
+
activateContentVisibilityTracking: {
|
15
|
+
subscribe(fn: (elmentId: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
16
|
+
};
|
17
|
+
calculateIfElementIsSticky: {
|
18
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
19
|
+
};
|
20
|
+
};
|
21
|
+
onDispatched: {
|
22
|
+
activateContentVisibilityTracking: {
|
23
|
+
subscribe(fn: (result: void, elmentId: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
24
|
+
};
|
25
|
+
calculateIfElementIsSticky: {
|
26
|
+
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
27
|
+
};
|
28
|
+
};
|
29
|
+
onFailure: {
|
30
|
+
activateContentVisibilityTracking: {
|
31
|
+
subscribe(fn: (failureReason: any, elmentId: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
32
|
+
};
|
33
|
+
calculateIfElementIsSticky: {
|
34
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
35
|
+
};
|
36
|
+
};
|
37
|
+
} & {
|
38
|
+
activateContentVisibilityTracking: (elmentId: string) => void;
|
39
|
+
calculateIfElementIsSticky: () => void;
|
40
|
+
};
|
41
|
+
get: {
|
42
|
+
startMarkElementId: string;
|
43
|
+
stickyWrapperElementId: string;
|
44
|
+
};
|
45
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./StickyContainerStore";
|
@@ -322,9 +322,9 @@ declare const _default: {
|
|
322
322
|
"onUpdate:modelValue"?: (value: number) => any;
|
323
323
|
modelValue?: number;
|
324
324
|
variant?: "toolbar" | "navigation" | "default" | "header" | "settings";
|
325
|
-
scrolling?: string;
|
326
325
|
stacked?: boolean;
|
327
326
|
disableBlueprint?: boolean;
|
327
|
+
scrolling?: string;
|
328
328
|
hideTabNameIfOnlyOneTab?: boolean;
|
329
329
|
noScrolling?: boolean;
|
330
330
|
alignTabs?: "start" | "center" | "end";
|
@@ -292,6 +292,7 @@ import wc6b7f04ba8fc4487ea496dd8e42b55dbd from './ux/oxide/splitpane/Splitpane';
|
|
292
292
|
import wc170e15fd849e41568ed9b48f88711527 from './ux/oxide/splitpane/SplitpaneItem';
|
293
293
|
import wc7cc2d4feecde4174badc5797ba6fb53e from './ux/oxide/stepper/Stepper';
|
294
294
|
import wca8c8ffd3d8ff46ee969d8fb6b9522104 from './ux/oxide/stepper/StepperStep';
|
295
|
+
import wcfeb57f2e8a1e4cd1b7a59043738bf5e8 from './ux/oxide/stickycontainer/StickyContainer';
|
295
296
|
import wc31cc47b19e7d4c40b826f58d1c955a43 from './ux/oxide/switch/Switch';
|
296
297
|
import wc7345c491927b43438d9f5e14f51fbfad from './ux/oxide/tab/Tabs';
|
297
298
|
import wc8669930d609c497e8cde0c554621db88 from './ux/oxide/tab/Tab';
|
@@ -1413,6 +1414,9 @@ declare global {
|
|
1413
1414
|
"o-stepper-step": typeof wca8c8ffd3d8ff46ee969d8fb6b9522104 extends {
|
1414
1415
|
propsDefinition: infer TProp;
|
1415
1416
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wca8c8ffd3d8ff46ee969d8fb6b9522104 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wca8c8ffd3d8ff46ee969d8fb6b9522104>, "propsDefinition">> : never;
|
1417
|
+
"o-sticky-container": typeof wcfeb57f2e8a1e4cd1b7a59043738bf5e8 extends {
|
1418
|
+
propsDefinition: infer TProp;
|
1419
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcfeb57f2e8a1e4cd1b7a59043738bf5e8 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcfeb57f2e8a1e4cd1b7a59043738bf5e8>, "propsDefinition">> : never;
|
1416
1420
|
"o-switch": typeof wc31cc47b19e7d4c40b826f58d1c955a43 extends {
|
1417
1421
|
propsDefinition: infer TProp;
|
1418
1422
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc31cc47b19e7d4c40b826f58d1c955a43 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc31cc47b19e7d4c40b826f58d1c955a43>, "propsDefinition">> : never;
|
@@ -6507,6 +6511,15 @@ declare global {
|
|
6507
6511
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
6508
6512
|
};
|
6509
6513
|
} : typeof wc7cc2d4feecde4174badc5797ba6fb53e;
|
6514
|
+
"sticky": {
|
6515
|
+
"container": typeof wcfeb57f2e8a1e4cd1b7a59043738bf5e8 extends {
|
6516
|
+
propsDefinition: infer TProp;
|
6517
|
+
} ? {
|
6518
|
+
new (...args: any[]): {
|
6519
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
6520
|
+
};
|
6521
|
+
} : typeof wcfeb57f2e8a1e4cd1b7a59043738bf5e8;
|
6522
|
+
};
|
6510
6523
|
"switch": typeof wc31cc47b19e7d4c40b826f58d1c955a43 extends {
|
6511
6524
|
propsDefinition: infer TProp;
|
6512
6525
|
} ? {
|
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.241-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.241-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|