@omnia/fx 8.0.65-dev → 8.0.66-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/libs/swiper/Swiper.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +9 -14
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/stores/docs/Store.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/ActionToolbar.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/features/FeaturesJourney.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/hub/feed/components/SenderItem.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/SharedRendererStyles.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/models/Validation.d.ts +5 -7
- package/internal-do-not-import-from-here/ux/models/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +74 -4
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/{swiper/Swiper.d.ts → slidepanel/SlidePanel.d.ts} +92 -4
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/docs/SampleComponent.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/store/SlidePanelStore.d.ts +45 -0
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/store/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/use/UseValidation.d.ts +3 -3
- package/internal-do-not-import-from-here/wctypings.d.ts +21 -14
- package/package.json +2 -2
- /package/internal-do-not-import-from-here/ux/oxide/{swiper/SwiperSlide.d.ts → slidepanel/Slide.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/oxide/{swiper/docs/SampleComponent.d.ts → slidepanel/block/SlidePanelBlock.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/oxide/{swiper → slidepanel}/docs/ExampleComponents.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/oxide/{swiper → slidepanel}/docs/index.d.ts +0 -0
@@ -1,8 +1,8 @@
|
|
1
1
|
import { SubscriptionHandler } from "@omnia/fx";
|
2
|
-
import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComputedOptions, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes,
|
2
|
+
import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComputedOptions, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes, watch, watchEffect } from "vue";
|
3
3
|
import { LooseRequired, Prettify, UnionToIntersection } from "@vue/shared";
|
4
4
|
import { ComponentBundleManifest, Directives, GuidValue, ThemeableComponentProps } from "@omnia/fx-models";
|
5
|
-
import {
|
5
|
+
import { IValidator } from "./models/Validation";
|
6
6
|
import { useBlueprintSetup } from "./use/UseBlueprintSetup";
|
7
7
|
import { useColorSchemaSetup } from "./use/UseColorSchemaSetup";
|
8
8
|
export declare function definePropFunctionType<T>(): PropType<T>;
|
@@ -115,35 +115,30 @@ type UseState = <T = any>(state?: T) => {
|
|
115
115
|
state: T;
|
116
116
|
setState(state: T): void;
|
117
117
|
};
|
118
|
-
type
|
118
|
+
type InternalSetupContext<ExtractedPropsType, Props, E = EmitsOptions> = {
|
119
119
|
props: ExtractedPropsType;
|
120
120
|
attrs: Data;
|
121
121
|
slots: ExtractPropSlots<Props>;
|
122
122
|
models?: Required<ExtractPropModels<Props>>;
|
123
123
|
colors: ReturnType<typeof useColorSchemaSetup>;
|
124
124
|
blueprints: ReturnType<typeof useBlueprintSetup>;
|
125
|
-
validator:
|
125
|
+
validator: IValidator;
|
126
126
|
emit: EmitFn<E>;
|
127
127
|
expose: (exposed?: Record<string, any>) => void;
|
128
128
|
useState: UseState;
|
129
|
-
computed: typeof computed;
|
130
129
|
watch: typeof watch;
|
131
130
|
watchEffect: typeof watchEffect;
|
132
131
|
subscriptions: SubscriptionHandler;
|
133
|
-
}
|
132
|
+
};
|
133
|
+
export type SetupContext<TProp, E extends EmitsOptions = {}> = InternalSetupContext<TProp, TProp, E>;
|
134
134
|
interface ComponentOptionsBaseExtends<Props, RawBindings, D, C extends ComputedOptions, M extends MethodOptions, Mixin extends ComponentOptionsMixin, Extends extends ComponentOptionsMixin, E extends EmitsOptions, EE extends string = string, Defaults = {}, I extends ComponentInjectOptions = {}, II extends string = string> extends ComponentOptionsBase<ExcludeJsxPropKeys<Props>, RawBindings, D, C, M, Mixin, Extends, E, EE, Defaults, I, II> {
|
135
|
-
setup?: (this: void, ctx:
|
135
|
+
setup?: (this: void, ctx: InternalSetupContext<LooseRequired<ExcludeJsxPropKeys<Props> & Prettify<UnwrapMixinsType<IntersectionMixin<Mixin> & IntersectionMixin<Extends>, "P">>>, Props, E>) => Promise<RawBindings> | RawBindings | RenderFunction | void;
|
136
136
|
}
|
137
|
-
export declare function defineVueComponent<Props extends Record<string, any>, E extends EmitsOptions = {}, EE extends string = string, S extends SlotsType = {}>(setup: (ctx: SetupContext<Props, E
|
137
|
+
export declare function defineVueComponent<Props extends Record<string, any>, E extends EmitsOptions = {}, EE extends string = string, S extends SlotsType = {}>(setup: (ctx: SetupContext<Props, E>) => RenderFunction | Promise<RenderFunction>, options?: Pick<ComponentOptions, "name" | "inheritAttrs"> & {
|
138
138
|
props?: (keyof Props)[];
|
139
139
|
emits?: E | EE[];
|
140
140
|
slots?: S;
|
141
|
-
}, register?: (manifest: ComponentBundleManifest, component: TsxComponentV3<Props, {}, {}, {}, {}, {}, {}, E, EE>) => void):
|
142
|
-
export declare function defineVueComponent<Props extends Record<string, any>, E extends EmitsOptions = {}, EE extends string = string, S extends SlotsType = {}>(setup: (ctx: SetupContext<Props, E, S>) => RenderFunction | Promise<RenderFunction>, options?: Pick<ComponentOptions, "name" | "inheritAttrs"> & {
|
143
|
-
props?: ComponentObjectPropsOptions<Props>;
|
144
|
-
emits?: E | EE[];
|
145
|
-
slots?: S;
|
146
|
-
}, register?: (manifest: ComponentBundleManifest, component: TsxComponentV3<Props, {}, {}, {}, {}, {}, {}, E, EE>) => void): TsxComponentV3<Props, {}, {}, {}, {}, {}, {}, E, EE>;
|
141
|
+
}, register?: (manifest: ComponentBundleManifest, component: TsxComponentV3<Props, {}, {}, {}, {}, {}, {}, E, EE>) => void): (props: Props & EmitsToProps<E>) => any;
|
147
142
|
export declare function defineVueComponent<Props = {}, RawBindings = {}, D = {}, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithoutProps<Props, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II>, register?: (manifest: ComponentBundleManifest, component: TsxComponentV3<Props, RawBindings, D, C, M, Mixin, Extends, E, EE>) => void): TsxComponentV3<Props, RawBindings, D, C, M, Mixin, Extends, E, EE>;
|
148
143
|
export declare function defineVueComponent<Props extends Object, RawBindings = {}, D = {}, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithObjectPropsCustom<ComponentObjectPropsOptions<Props>, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II>, register?: (manifest: ComponentBundleManifest, component: TsxComponentV3<Props, RawBindings, D, C, M, Mixin, Extends, E, EE>) => void): TsxComponentV3<RemoveDefinePropApi<ComponentObjectPropsOptions<Props>>, RawBindings, D, C, M, Mixin, Extends, E, EE>;
|
149
144
|
export declare function defineVueComponent<PropNames extends string, RawBindings, D, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithArrayProps<PropNames, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II>, register?: (manifest: ComponentBundleManifest, component: TsxComponentV3<Readonly<{
|
@@ -9,27 +9,39 @@ export declare const useMyStore: () => {
|
|
9
9
|
export declare const useMyActionStore: () => {
|
10
10
|
state: {
|
11
11
|
title: string;
|
12
|
+
description: string;
|
12
13
|
};
|
13
14
|
events: {
|
14
15
|
onMutatedTitle: import("../../../../..").MessageBusExposeOnlySubscription<string>;
|
16
|
+
onMutatedDescription: import("../../../../..").MessageBusExposeOnlySubscription<string>;
|
15
17
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
16
18
|
actions: {
|
17
19
|
onDispatching: {
|
18
20
|
setMyTitle: {
|
19
21
|
subscribe(fn: (value: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
20
22
|
};
|
23
|
+
setMyDescriptionAsync: {
|
24
|
+
subscribe(fn: (value: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
25
|
+
};
|
21
26
|
};
|
22
27
|
onDispatched: {
|
23
28
|
setMyTitle: {
|
24
29
|
subscribe(fn: (result: void, value: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
25
30
|
};
|
31
|
+
setMyDescriptionAsync: {
|
32
|
+
subscribe(fn: (result: string, value: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
33
|
+
};
|
26
34
|
};
|
27
35
|
onFailure: {
|
28
36
|
setMyTitle: {
|
29
37
|
subscribe(fn: (failureReason: any, value: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
30
38
|
};
|
39
|
+
setMyDescriptionAsync: {
|
40
|
+
subscribe(fn: (failureReason: any, value: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
41
|
+
};
|
31
42
|
};
|
32
43
|
} & {
|
33
44
|
setMyTitle(value: string): void;
|
45
|
+
setMyDescriptionAsync(value: string): Promise<string>;
|
34
46
|
};
|
35
47
|
};
|
@@ -27,7 +27,7 @@ declare const _default: {
|
|
27
27
|
}>> & {
|
28
28
|
onHandleFeatureAction?: (action: string, featureId: GuidValue) => any;
|
29
29
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
30
|
-
handleFeatureAction: (action: string, featureId: GuidValue) =>
|
30
|
+
handleFeatureAction: (action: string, featureId: GuidValue) => true;
|
31
31
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
32
32
|
"target-resolver-type": {
|
33
33
|
type: import("vue").PropType<string>;
|
@@ -85,7 +85,7 @@ declare const _default: {
|
|
85
85
|
}>> & {
|
86
86
|
onHandleFeatureAction?: (action: string, featureId: GuidValue) => any;
|
87
87
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
88
|
-
handleFeatureAction: (action: string, featureId: GuidValue) =>
|
88
|
+
handleFeatureAction: (action: string, featureId: GuidValue) => true;
|
89
89
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
90
90
|
propsDefinition: Omit<Readonly<{} & {
|
91
91
|
appInstanceId?: GuidValue;
|
@@ -16,7 +16,7 @@ declare const _default: {
|
|
16
16
|
}>> & {
|
17
17
|
onInstanceClosed?: () => any;
|
18
18
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
19
|
-
instanceClosed: () =>
|
19
|
+
instanceClosed: () => true;
|
20
20
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
21
21
|
"target-resolver-type": {
|
22
22
|
type: import("vue").PropType<string>;
|
@@ -74,7 +74,7 @@ declare const _default: {
|
|
74
74
|
}>> & {
|
75
75
|
onInstanceClosed?: () => any;
|
76
76
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
77
|
-
instanceClosed: () =>
|
77
|
+
instanceClosed: () => true;
|
78
78
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
79
79
|
propsDefinition: Omit<Readonly<{} & {
|
80
80
|
appInstanceId?: GuidValue;
|
@@ -14,7 +14,7 @@ declare const _default: {
|
|
14
14
|
type: import("vue").PropType<boolean>;
|
15
15
|
};
|
16
16
|
singleSelect: {
|
17
|
-
type: import("vue").PropType<
|
17
|
+
type: import("vue").PropType<boolean>;
|
18
18
|
};
|
19
19
|
size: {
|
20
20
|
type: import("vue").PropType<"small" | "default" | "x-small">;
|
@@ -64,7 +64,7 @@ declare const _default: {
|
|
64
64
|
type: import("vue").PropType<boolean>;
|
65
65
|
};
|
66
66
|
singleSelect: {
|
67
|
-
type: import("vue").PropType<
|
67
|
+
type: import("vue").PropType<boolean>;
|
68
68
|
};
|
69
69
|
size: {
|
70
70
|
type: import("vue").PropType<"small" | "default" | "x-small">;
|
@@ -123,7 +123,7 @@ declare const _default: {
|
|
123
123
|
type: import("vue").PropType<boolean>;
|
124
124
|
};
|
125
125
|
singleSelect: {
|
126
|
-
type: import("vue").PropType<
|
126
|
+
type: import("vue").PropType<boolean>;
|
127
127
|
};
|
128
128
|
size: {
|
129
129
|
type: import("vue").PropType<"small" | "default" | "x-small">;
|
@@ -179,7 +179,7 @@ declare const _default: {
|
|
179
179
|
type: import("vue").PropType<boolean>;
|
180
180
|
};
|
181
181
|
singleSelect: {
|
182
|
-
type: import("vue").PropType<
|
182
|
+
type: import("vue").PropType<boolean>;
|
183
183
|
};
|
184
184
|
size: {
|
185
185
|
type: import("vue").PropType<"small" | "default" | "x-small">;
|
@@ -243,7 +243,7 @@ declare const _default: {
|
|
243
243
|
itemRendering?: (element: VNodeChild, item: FilterPickerFilter) => VNodeChild;
|
244
244
|
};
|
245
245
|
sortable?: boolean;
|
246
|
-
singleSelect?:
|
246
|
+
singleSelect?: boolean;
|
247
247
|
}>, "onUpdate:modelValue" | "onItem:removed" | "onItem:sorted"> & {
|
248
248
|
"onUpdate:modelValue"?: (value: FilterPickerFilter[]) => any;
|
249
249
|
"onItem:removed"?: (value: FilterPickerFilter) => any;
|
@@ -152,7 +152,6 @@ declare const _default: {
|
|
152
152
|
blockInstanceCreated: (blockInstance: any) => any;
|
153
153
|
blockInstanceCacheKeyUpdated: (blockInstance: any) => any;
|
154
154
|
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
155
|
-
/**What should be here???? */
|
156
155
|
propsDefinition: Omit<Readonly<{} & {
|
157
156
|
block?: Block;
|
158
157
|
themeTargetId?: string;
|
package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/SharedRendererStyles.css.d.ts
CHANGED
@@ -37,7 +37,6 @@ export declare function useSharedRendererStyles(): {
|
|
37
37
|
getStylesForSpacingInContainer: (sectionSettings: SectionSettings, fullHeight: boolean) => string;
|
38
38
|
createMediaBreakPointForDevice: (sectionSettings: SectionSettings, deviceBreakPoint: DisplayBreakPoint) => types.NestedCSSProperties;
|
39
39
|
getStylesForMarginCollapsAndSpacing: (sectionSettings: SectionSettings) => string;
|
40
|
-
setScrollContainer: (containerId: string, referenceElementIds: string[]) => void;
|
41
40
|
};
|
42
41
|
tabs: {
|
43
42
|
alignTextAndIcon: (settings: TabbedSectionSettings, iconAndText: boolean) => string;
|
@@ -2,18 +2,16 @@ export declare const ValidationOnDefinitions: readonly ["lazy", "input", "blur",
|
|
2
2
|
export type ValidationOnTypes = typeof ValidationOnDefinitions[number];
|
3
3
|
export type ValidationResult = string | boolean;
|
4
4
|
export type ValidationRule = ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>);
|
5
|
-
export interface
|
5
|
+
export interface IValidator {
|
6
6
|
validate(): Promise<boolean>;
|
7
7
|
resetValidation(): void;
|
8
|
-
}
|
9
|
-
export interface IValidatorBase extends IValidationScope {
|
10
8
|
createRules(): IValidationRuleBuilder;
|
11
9
|
overrideValidate(func: () => Promise<boolean>): any;
|
12
10
|
overrideResetValidation(func: () => void): void;
|
13
11
|
}
|
14
|
-
export interface
|
15
|
-
register(validation:
|
16
|
-
unregister(validation:
|
12
|
+
export interface IValidatorRegistration extends IValidator {
|
13
|
+
register(validation: IValidator): any;
|
14
|
+
unregister(validation: IValidator): any;
|
17
15
|
destroy(): any;
|
18
16
|
}
|
19
17
|
export interface IValidationRuleBuilder {
|
@@ -27,7 +25,7 @@ export interface IValidationRuleBuilder {
|
|
27
25
|
custom<T>(this: T, callback: ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>)): Omit<T, "custom">;
|
28
26
|
done(): ValidationRule[];
|
29
27
|
}
|
30
|
-
export interface IInternalValidator extends
|
28
|
+
export interface IInternalValidator extends IValidatorRegistration {
|
31
29
|
builtinValidate(): Promise<boolean>;
|
32
30
|
builtinResetValidation(): void;
|
33
31
|
}
|
@@ -51,6 +51,6 @@ export * from "./SharePointVideoSettingsStyles";
|
|
51
51
|
export * from "./AppLayoutPlaceHolder";
|
52
52
|
export * from "./DataTable";
|
53
53
|
export * from "./Directives";
|
54
|
-
export { ValidationOnDefinitions, type IValidationRuleBuilder, type
|
54
|
+
export { ValidationOnDefinitions, type IValidationRuleBuilder, type IValidator, type ValidationRule, type ValidationResult } from "./Validation";
|
55
55
|
export type { ValidationOnTypes } from "./Validation";
|
56
56
|
export * from "./SpecialUserConfiguration";
|
@@ -12,12 +12,23 @@ declare const _default: {
|
|
12
12
|
disableScrolling: {
|
13
13
|
type: import("vue").PropType<boolean>;
|
14
14
|
};
|
15
|
+
toned: {
|
16
|
+
type: import("vue").PropType<boolean>;
|
17
|
+
};
|
18
|
+
filled: {
|
19
|
+
type: import("vue").PropType<boolean>;
|
20
|
+
};
|
15
21
|
width: {
|
16
22
|
type: import("vue").PropType<string>;
|
17
23
|
};
|
18
24
|
height: {
|
19
25
|
type: import("vue").PropType<string>;
|
20
26
|
};
|
27
|
+
colorSchemaType?: any;
|
28
|
+
container?: any;
|
29
|
+
colors?: any;
|
30
|
+
blueprintType?: any;
|
31
|
+
blueprint?: any;
|
21
32
|
class: {
|
22
33
|
type: import("vue").PropType<String | String[]>;
|
23
34
|
required: boolean;
|
@@ -33,17 +44,34 @@ declare const _default: {
|
|
33
44
|
disableScrolling: {
|
34
45
|
type: import("vue").PropType<boolean>;
|
35
46
|
};
|
47
|
+
toned: {
|
48
|
+
type: import("vue").PropType<boolean>;
|
49
|
+
};
|
50
|
+
filled: {
|
51
|
+
type: import("vue").PropType<boolean>;
|
52
|
+
};
|
36
53
|
width: {
|
37
54
|
type: import("vue").PropType<string>;
|
38
55
|
};
|
39
56
|
height: {
|
40
57
|
type: import("vue").PropType<string>;
|
41
58
|
};
|
59
|
+
colorSchemaType?: any;
|
60
|
+
container?: any;
|
61
|
+
colors?: any;
|
62
|
+
blueprintType?: any;
|
63
|
+
blueprint?: any;
|
42
64
|
class: {
|
43
65
|
type: import("vue").PropType<String | String[]>;
|
44
66
|
required: boolean;
|
45
67
|
};
|
46
|
-
}>>, {
|
68
|
+
}>>, {
|
69
|
+
container?: any;
|
70
|
+
blueprint?: any;
|
71
|
+
colorSchemaType?: any;
|
72
|
+
blueprintType?: any;
|
73
|
+
colors?: any;
|
74
|
+
}, true, {}, {}, {
|
47
75
|
P: {};
|
48
76
|
B: {};
|
49
77
|
D: {};
|
@@ -61,17 +89,34 @@ declare const _default: {
|
|
61
89
|
disableScrolling: {
|
62
90
|
type: import("vue").PropType<boolean>;
|
63
91
|
};
|
92
|
+
toned: {
|
93
|
+
type: import("vue").PropType<boolean>;
|
94
|
+
};
|
95
|
+
filled: {
|
96
|
+
type: import("vue").PropType<boolean>;
|
97
|
+
};
|
64
98
|
width: {
|
65
99
|
type: import("vue").PropType<string>;
|
66
100
|
};
|
67
101
|
height: {
|
68
102
|
type: import("vue").PropType<string>;
|
69
103
|
};
|
104
|
+
colorSchemaType?: any;
|
105
|
+
container?: any;
|
106
|
+
colors?: any;
|
107
|
+
blueprintType?: any;
|
108
|
+
blueprint?: any;
|
70
109
|
class: {
|
71
110
|
type: import("vue").PropType<String | String[]>;
|
72
111
|
required: boolean;
|
73
112
|
};
|
74
|
-
}>>, () => JSX.Element, {}, {}, {}, {
|
113
|
+
}>>, () => JSX.Element, {}, {}, {}, {
|
114
|
+
container?: any;
|
115
|
+
blueprint?: any;
|
116
|
+
colorSchemaType?: any;
|
117
|
+
blueprintType?: any;
|
118
|
+
colors?: any;
|
119
|
+
}>;
|
75
120
|
__isFragment?: never;
|
76
121
|
__isTeleport?: never;
|
77
122
|
__isSuspense?: never;
|
@@ -86,21 +131,46 @@ declare const _default: {
|
|
86
131
|
disableScrolling: {
|
87
132
|
type: import("vue").PropType<boolean>;
|
88
133
|
};
|
134
|
+
toned: {
|
135
|
+
type: import("vue").PropType<boolean>;
|
136
|
+
};
|
137
|
+
filled: {
|
138
|
+
type: import("vue").PropType<boolean>;
|
139
|
+
};
|
89
140
|
width: {
|
90
141
|
type: import("vue").PropType<string>;
|
91
142
|
};
|
92
143
|
height: {
|
93
144
|
type: import("vue").PropType<string>;
|
94
145
|
};
|
146
|
+
colorSchemaType?: any;
|
147
|
+
container?: any;
|
148
|
+
colors?: any;
|
149
|
+
blueprintType?: any;
|
150
|
+
blueprint?: any;
|
95
151
|
class: {
|
96
152
|
type: import("vue").PropType<String | String[]>;
|
97
153
|
required: boolean;
|
98
154
|
};
|
99
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
100
|
-
|
155
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
156
|
+
container?: any;
|
157
|
+
blueprint?: any;
|
158
|
+
colorSchemaType?: any;
|
159
|
+
blueprintType?: any;
|
160
|
+
colors?: any;
|
161
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
162
|
+
propsDefinition: Omit<Readonly<{
|
163
|
+
container?: any;
|
164
|
+
blueprint?: any;
|
165
|
+
colorSchemaType?: any;
|
166
|
+
blueprintType?: any;
|
167
|
+
colors?: any;
|
168
|
+
} & {
|
101
169
|
class?: String | String[];
|
102
170
|
width?: string;
|
103
171
|
height?: string;
|
172
|
+
filled?: boolean;
|
173
|
+
toned?: boolean;
|
104
174
|
disableScrolling?: boolean;
|
105
175
|
scrolling?: OScrollTypesCombination;
|
106
176
|
storeHook?: (store: ReturnType<typeof useScrollContainerStore>) => void;
|
package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts
CHANGED
@@ -27,6 +27,9 @@ export declare const useScrollContainerStore: () => {
|
|
27
27
|
setScrolling: {
|
28
28
|
subscribe(fn: (scrolling: OScrollTypesCombination) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
29
29
|
};
|
30
|
+
calculateScrollHeight: {
|
31
|
+
subscribe(fn: (referenceElementIds: string[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
32
|
+
};
|
30
33
|
scrollToStart: {
|
31
34
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
32
35
|
};
|
@@ -44,6 +47,9 @@ export declare const useScrollContainerStore: () => {
|
|
44
47
|
setScrolling: {
|
45
48
|
subscribe(fn: (result: void, scrolling: OScrollTypesCombination) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
46
49
|
};
|
50
|
+
calculateScrollHeight: {
|
51
|
+
subscribe(fn: (result: void, referenceElementIds: string[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
52
|
+
};
|
47
53
|
scrollToStart: {
|
48
54
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
49
55
|
};
|
@@ -61,6 +67,9 @@ export declare const useScrollContainerStore: () => {
|
|
61
67
|
setScrolling: {
|
62
68
|
subscribe(fn: (failureReason: any, scrolling: OScrollTypesCombination) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
63
69
|
};
|
70
|
+
calculateScrollHeight: {
|
71
|
+
subscribe(fn: (failureReason: any, referenceElementIds: string[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
72
|
+
};
|
64
73
|
scrollToStart: {
|
65
74
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
66
75
|
};
|
@@ -72,6 +81,7 @@ export declare const useScrollContainerStore: () => {
|
|
72
81
|
setHeight: (height: string) => void;
|
73
82
|
setWidth: (width: string) => void;
|
74
83
|
setScrolling: (scrolling: OScrollTypesCombination) => void;
|
84
|
+
calculateScrollHeight: (referenceElementIds: string[]) => void;
|
75
85
|
scrollToStart: () => void;
|
76
86
|
scrollTo: (elementId: string, anchor?: "start" | "end") => void;
|
77
87
|
};
|
package/internal-do-not-import-from-here/ux/oxide/{swiper/Swiper.d.ts → slidepanel/SlidePanel.d.ts}
RENAMED
@@ -1,37 +1,74 @@
|
|
1
|
+
import { useSlidePanelStore } from "@omnia/fx/ux";
|
1
2
|
declare const _default: {
|
2
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
|
+
storeHook: {
|
5
|
+
type: import("vue").PropType<(store: ReturnType<typeof useSlidePanelStore>) => void>;
|
6
|
+
};
|
3
7
|
slideSpacing: {
|
4
8
|
type: import("vue").PropType<number>;
|
5
9
|
};
|
6
10
|
slidesPerView: {
|
7
11
|
type: import("vue").PropType<number>;
|
8
12
|
};
|
13
|
+
delay: {
|
14
|
+
type: import("vue").PropType<number>;
|
15
|
+
required: false;
|
16
|
+
};
|
9
17
|
scrollbar: {
|
10
18
|
type: import("vue").PropType<boolean>;
|
11
19
|
};
|
20
|
+
autoplay: {
|
21
|
+
type: import("vue").PropType<boolean>;
|
22
|
+
};
|
12
23
|
pagination: {
|
13
24
|
type: import("vue").PropType<boolean>;
|
14
25
|
};
|
15
26
|
navigation: {
|
16
27
|
type: import("vue").PropType<boolean>;
|
17
28
|
};
|
29
|
+
colorSchemaType?: any;
|
30
|
+
container?: any;
|
31
|
+
colors?: any;
|
32
|
+
blueprintType?: any;
|
33
|
+
blueprint?: any;
|
18
34
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
35
|
+
storeHook: {
|
36
|
+
type: import("vue").PropType<(store: ReturnType<typeof useSlidePanelStore>) => void>;
|
37
|
+
};
|
19
38
|
slideSpacing: {
|
20
39
|
type: import("vue").PropType<number>;
|
21
40
|
};
|
22
41
|
slidesPerView: {
|
23
42
|
type: import("vue").PropType<number>;
|
24
43
|
};
|
44
|
+
delay: {
|
45
|
+
type: import("vue").PropType<number>;
|
46
|
+
required: false;
|
47
|
+
};
|
25
48
|
scrollbar: {
|
26
49
|
type: import("vue").PropType<boolean>;
|
27
50
|
};
|
51
|
+
autoplay: {
|
52
|
+
type: import("vue").PropType<boolean>;
|
53
|
+
};
|
28
54
|
pagination: {
|
29
55
|
type: import("vue").PropType<boolean>;
|
30
56
|
};
|
31
57
|
navigation: {
|
32
58
|
type: import("vue").PropType<boolean>;
|
33
59
|
};
|
34
|
-
|
60
|
+
colorSchemaType?: any;
|
61
|
+
container?: any;
|
62
|
+
colors?: any;
|
63
|
+
blueprintType?: any;
|
64
|
+
blueprint?: any;
|
65
|
+
}>>, {
|
66
|
+
container?: any;
|
67
|
+
blueprint?: any;
|
68
|
+
colorSchemaType?: any;
|
69
|
+
blueprintType?: any;
|
70
|
+
colors?: any;
|
71
|
+
}, true, {}, {}, {
|
35
72
|
P: {};
|
36
73
|
B: {};
|
37
74
|
D: {};
|
@@ -39,46 +76,97 @@ declare const _default: {
|
|
39
76
|
M: {};
|
40
77
|
Defaults: {};
|
41
78
|
}, Readonly<import("vue").ExtractPropTypes<{
|
79
|
+
storeHook: {
|
80
|
+
type: import("vue").PropType<(store: ReturnType<typeof useSlidePanelStore>) => void>;
|
81
|
+
};
|
42
82
|
slideSpacing: {
|
43
83
|
type: import("vue").PropType<number>;
|
44
84
|
};
|
45
85
|
slidesPerView: {
|
46
86
|
type: import("vue").PropType<number>;
|
47
87
|
};
|
88
|
+
delay: {
|
89
|
+
type: import("vue").PropType<number>;
|
90
|
+
required: false;
|
91
|
+
};
|
48
92
|
scrollbar: {
|
49
93
|
type: import("vue").PropType<boolean>;
|
50
94
|
};
|
95
|
+
autoplay: {
|
96
|
+
type: import("vue").PropType<boolean>;
|
97
|
+
};
|
51
98
|
pagination: {
|
52
99
|
type: import("vue").PropType<boolean>;
|
53
100
|
};
|
54
101
|
navigation: {
|
55
102
|
type: import("vue").PropType<boolean>;
|
56
103
|
};
|
57
|
-
|
104
|
+
colorSchemaType?: any;
|
105
|
+
container?: any;
|
106
|
+
colors?: any;
|
107
|
+
blueprintType?: any;
|
108
|
+
blueprint?: any;
|
109
|
+
}>>, () => JSX.Element, {}, {}, {}, {
|
110
|
+
container?: any;
|
111
|
+
blueprint?: any;
|
112
|
+
colorSchemaType?: any;
|
113
|
+
blueprintType?: any;
|
114
|
+
colors?: any;
|
115
|
+
}>;
|
58
116
|
__isFragment?: never;
|
59
117
|
__isTeleport?: never;
|
60
118
|
__isSuspense?: never;
|
61
119
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
120
|
+
storeHook: {
|
121
|
+
type: import("vue").PropType<(store: ReturnType<typeof useSlidePanelStore>) => void>;
|
122
|
+
};
|
62
123
|
slideSpacing: {
|
63
124
|
type: import("vue").PropType<number>;
|
64
125
|
};
|
65
126
|
slidesPerView: {
|
66
127
|
type: import("vue").PropType<number>;
|
67
128
|
};
|
129
|
+
delay: {
|
130
|
+
type: import("vue").PropType<number>;
|
131
|
+
required: false;
|
132
|
+
};
|
68
133
|
scrollbar: {
|
69
134
|
type: import("vue").PropType<boolean>;
|
70
135
|
};
|
136
|
+
autoplay: {
|
137
|
+
type: import("vue").PropType<boolean>;
|
138
|
+
};
|
71
139
|
pagination: {
|
72
140
|
type: import("vue").PropType<boolean>;
|
73
141
|
};
|
74
142
|
navigation: {
|
75
143
|
type: import("vue").PropType<boolean>;
|
76
144
|
};
|
77
|
-
|
78
|
-
|
145
|
+
colorSchemaType?: any;
|
146
|
+
container?: any;
|
147
|
+
colors?: any;
|
148
|
+
blueprintType?: any;
|
149
|
+
blueprint?: any;
|
150
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
151
|
+
container?: any;
|
152
|
+
blueprint?: any;
|
153
|
+
colorSchemaType?: any;
|
154
|
+
blueprintType?: any;
|
155
|
+
colors?: any;
|
156
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
157
|
+
propsDefinition: Omit<Readonly<{
|
158
|
+
container?: any;
|
159
|
+
blueprint?: any;
|
160
|
+
colorSchemaType?: any;
|
161
|
+
blueprintType?: any;
|
162
|
+
colors?: any;
|
163
|
+
} & {
|
79
164
|
navigation?: boolean;
|
80
165
|
scrollbar?: boolean;
|
166
|
+
storeHook?: (store: ReturnType<typeof useSlidePanelStore>) => void;
|
81
167
|
pagination?: boolean;
|
168
|
+
autoplay?: boolean;
|
169
|
+
delay?: number;
|
82
170
|
slidesPerView?: number;
|
83
171
|
slideSpacing?: number;
|
84
172
|
}>, never>;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
3
|
+
P: {};
|
4
|
+
B: {};
|
5
|
+
D: {};
|
6
|
+
C: {};
|
7
|
+
M: {};
|
8
|
+
Defaults: {};
|
9
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
|
10
|
+
__isFragment?: never;
|
11
|
+
__isTeleport?: never;
|
12
|
+
__isSuspense?: never;
|
13
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
14
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
15
|
+
};
|
16
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./store";
|
@@ -0,0 +1,45 @@
|
|
1
|
+
import { Swiper } from "swiper/types";
|
2
|
+
export declare const useSlidePanelStore: () => {
|
3
|
+
state: {};
|
4
|
+
events: {} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
5
|
+
actions: {
|
6
|
+
onDispatching: {
|
7
|
+
init: {
|
8
|
+
subscribe(fn: (swiperObj: Swiper) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
9
|
+
};
|
10
|
+
nextSlide: {
|
11
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
12
|
+
};
|
13
|
+
prevSlide: {
|
14
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
15
|
+
};
|
16
|
+
};
|
17
|
+
onDispatched: {
|
18
|
+
init: {
|
19
|
+
subscribe(fn: (result: void, swiperObj: Swiper) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
20
|
+
};
|
21
|
+
nextSlide: {
|
22
|
+
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
23
|
+
};
|
24
|
+
prevSlide: {
|
25
|
+
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
26
|
+
};
|
27
|
+
};
|
28
|
+
onFailure: {
|
29
|
+
init: {
|
30
|
+
subscribe(fn: (failureReason: any, swiperObj: Swiper) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
31
|
+
};
|
32
|
+
nextSlide: {
|
33
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
34
|
+
};
|
35
|
+
prevSlide: {
|
36
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
37
|
+
};
|
38
|
+
};
|
39
|
+
} & {
|
40
|
+
init: (swiperObj: Swiper) => void;
|
41
|
+
nextSlide: () => void;
|
42
|
+
prevSlide: () => void;
|
43
|
+
};
|
44
|
+
get: {};
|
45
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./SlidePanelStore";
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { IInternalValidator,
|
2
|
-
export declare function createValidator():
|
1
|
+
import { IInternalValidator, IValidatorRegistration, IValidator } from "../models/Validation";
|
2
|
+
export declare function createValidator(): IValidatorRegistration;
|
3
3
|
export declare function useInternalValidator(): {
|
4
|
-
setValidator: (validator:
|
4
|
+
setValidator: (validator: IValidator) => void;
|
5
5
|
validator: IInternalValidator;
|
6
6
|
};
|
@@ -211,13 +211,13 @@ import wc4c41fd8799ae43468150fd47661e8100 from './ux/oxide/rating/Rating';
|
|
211
211
|
import wc177587e103904861b5d4d491388a01b1 from './ux/oxide/scrollcontainer/ScrollContainer';
|
212
212
|
import wc578e2a4d5cd247a4b1291911256253a7 from './ux/oxide/select/Select';
|
213
213
|
import wc2ade92721b3c426fac97c63026f77351 from './ux/oxide/skeletonloader/SkeletonLoader';
|
214
|
+
import wc8b0bddecd5d74fcba7aac87913137ca3 from './ux/oxide/slidepanel/SlidePanel';
|
215
|
+
import wc3fa834509fe3419fb005e2dd17325449 from './ux/oxide/slidepanel/Slide';
|
214
216
|
import wcd108fdde5ca942d7ae92195eb74b5452 from './ux/oxide/slider/Slider';
|
215
217
|
import wca19feddcd78b4065b7650162fd088379 from './ux/oxide/snackbar/Snackbar';
|
216
218
|
import wcc26ccc7aeae04f76a062e83c6df302fc from './ux/oxide/spacer/Spacer';
|
217
219
|
import wc7cc2d4feecde4174badc5797ba6fb53e from './ux/oxide/stepper/Stepper';
|
218
220
|
import wca8c8ffd3d8ff46ee969d8fb6b9522104 from './ux/oxide/stepper/StepperStep';
|
219
|
-
import wc8b0bddecd5d74fcba7aac87913137ca3 from './ux/oxide/swiper/Swiper';
|
220
|
-
import wc3fa834509fe3419fb005e2dd17325449 from './ux/oxide/swiper/SwiperSlide';
|
221
221
|
import wc31cc47b19e7d4c40b826f58d1c955a43 from './ux/oxide/switch/Switch';
|
222
222
|
import wc7345c491927b43438d9f5e14f51fbfad from './ux/oxide/tab/Tabs';
|
223
223
|
import wc8669930d609c497e8cde0c554621db88 from './ux/oxide/tab/Tab';
|
@@ -273,6 +273,7 @@ import wc41f1eb15438a488b8b227b1ff31ca66f from './ux/layoutcanvas/editor/develop
|
|
273
273
|
import wcd89913a1055942b38285fcab85751865 from './ux/layoutcanvas/editor/devicepreviewer/DevicePreviewer';
|
274
274
|
import wcac5f615df97543cf97b3ae930ba113d0 from './ux/mediagallery/gallerydialogproviders/slider/Slider';
|
275
275
|
import wc12d1bca1d50b4186acd50014584389c9 from './ux/mediagallery/galleryviewproviders/photowall/PhotoWall';
|
276
|
+
import wcca498a9d23e947afa4c5695f01ba7959 from './ux/oxide/slidepanel/block/SlidePanelBlock';
|
276
277
|
import wc916c23c53dbf4d5a8e421e9449c6b203 from './ux/properties/builtins/birthday/BirthdayDisplay';
|
277
278
|
import wc644e39fe6d4f4e23b1777aefd9c23939 from './ux/properties/builtins/birthday/BirthdayEditor';
|
278
279
|
import wcf61d06a945754742a1896847765fbea5 from './ux/properties/builtins/boolean/BooleanDisplay';
|
@@ -582,13 +583,13 @@ declare global {
|
|
582
583
|
"o-scroll-container": typeof wc177587e103904861b5d4d491388a01b1.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc177587e103904861b5d4d491388a01b1.propsDefinition>;
|
583
584
|
"o-select": typeof wc578e2a4d5cd247a4b1291911256253a7.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc578e2a4d5cd247a4b1291911256253a7.propsDefinition>;
|
584
585
|
"o-skeleton-loader": typeof wc2ade92721b3c426fac97c63026f77351.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc2ade92721b3c426fac97c63026f77351.propsDefinition>;
|
586
|
+
"o-slide-panel": typeof wc8b0bddecd5d74fcba7aac87913137ca3.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8b0bddecd5d74fcba7aac87913137ca3.propsDefinition>;
|
587
|
+
"o-slide": typeof wc3fa834509fe3419fb005e2dd17325449.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc3fa834509fe3419fb005e2dd17325449.propsDefinition>;
|
585
588
|
"o-slider": typeof wcd108fdde5ca942d7ae92195eb74b5452.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcd108fdde5ca942d7ae92195eb74b5452.propsDefinition>;
|
586
589
|
"o-snackbar": typeof wca19feddcd78b4065b7650162fd088379.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wca19feddcd78b4065b7650162fd088379.propsDefinition>;
|
587
590
|
"o-spacer": typeof wcc26ccc7aeae04f76a062e83c6df302fc.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcc26ccc7aeae04f76a062e83c6df302fc.propsDefinition>;
|
588
591
|
"o-stepper": typeof wc7cc2d4feecde4174badc5797ba6fb53e.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc7cc2d4feecde4174badc5797ba6fb53e.propsDefinition>;
|
589
592
|
"o-stepper-step": typeof wca8c8ffd3d8ff46ee969d8fb6b9522104.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wca8c8ffd3d8ff46ee969d8fb6b9522104.propsDefinition>;
|
590
|
-
"o-swiper": typeof wc8b0bddecd5d74fcba7aac87913137ca3.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8b0bddecd5d74fcba7aac87913137ca3.propsDefinition>;
|
591
|
-
"o-swiper-slide": typeof wc3fa834509fe3419fb005e2dd17325449.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc3fa834509fe3419fb005e2dd17325449.propsDefinition>;
|
592
593
|
"o-switch": typeof wc31cc47b19e7d4c40b826f58d1c955a43.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc31cc47b19e7d4c40b826f58d1c955a43.propsDefinition>;
|
593
594
|
"o-tabs": typeof wc7345c491927b43438d9f5e14f51fbfad.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc7345c491927b43438d9f5e14f51fbfad.propsDefinition>;
|
594
595
|
"o-tab": typeof wc8669930d609c497e8cde0c554621db88.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8669930d609c497e8cde0c554621db88.propsDefinition>;
|
@@ -644,6 +645,7 @@ declare global {
|
|
644
645
|
"omfx-device-previewer": typeof wcd89913a1055942b38285fcab85751865.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcd89913a1055942b38285fcab85751865.propsDefinition>;
|
645
646
|
"omniafx-media-gallery-dialog-slider": typeof wcac5f615df97543cf97b3ae930ba113d0.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcac5f615df97543cf97b3ae930ba113d0.propsDefinition>;
|
646
647
|
"omniafx-media-gallery-display-photowall": typeof wc12d1bca1d50b4186acd50014584389c9.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc12d1bca1d50b4186acd50014584389c9.propsDefinition>;
|
648
|
+
"omfx-slidepanel-block": typeof wcca498a9d23e947afa4c5695f01ba7959.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcca498a9d23e947afa4c5695f01ba7959.propsDefinition>;
|
647
649
|
"omfx-properties-birthday-display": typeof wc916c23c53dbf4d5a8e421e9449c6b203.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc916c23c53dbf4d5a8e421e9449c6b203.propsDefinition>;
|
648
650
|
"omfx-properties-birthday-editor": typeof wc644e39fe6d4f4e23b1777aefd9c23939.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc644e39fe6d4f4e23b1777aefd9c23939.propsDefinition>;
|
649
651
|
"omfx-properties-boolean-display": typeof wcf61d06a945754742a1896847765fbea5.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcf61d06a945754742a1896847765fbea5.propsDefinition>;
|
@@ -1799,6 +1801,16 @@ declare global {
|
|
1799
1801
|
$props: typeof wc2ade92721b3c426fac97c63026f77351.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc2ade92721b3c426fac97c63026f77351.propsDefinition>;
|
1800
1802
|
};
|
1801
1803
|
};
|
1804
|
+
"OSlidePanel": {
|
1805
|
+
new (...args: any[]): {
|
1806
|
+
$props: typeof wc8b0bddecd5d74fcba7aac87913137ca3.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8b0bddecd5d74fcba7aac87913137ca3.propsDefinition>;
|
1807
|
+
};
|
1808
|
+
};
|
1809
|
+
"OSlide": {
|
1810
|
+
new (...args: any[]): {
|
1811
|
+
$props: typeof wc3fa834509fe3419fb005e2dd17325449.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc3fa834509fe3419fb005e2dd17325449.propsDefinition>;
|
1812
|
+
};
|
1813
|
+
};
|
1802
1814
|
"OSlider": {
|
1803
1815
|
new (...args: any[]): {
|
1804
1816
|
$props: typeof wcd108fdde5ca942d7ae92195eb74b5452.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcd108fdde5ca942d7ae92195eb74b5452.propsDefinition>;
|
@@ -1824,16 +1836,6 @@ declare global {
|
|
1824
1836
|
$props: typeof wca8c8ffd3d8ff46ee969d8fb6b9522104.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wca8c8ffd3d8ff46ee969d8fb6b9522104.propsDefinition>;
|
1825
1837
|
};
|
1826
1838
|
};
|
1827
|
-
"OSwiper": {
|
1828
|
-
new (...args: any[]): {
|
1829
|
-
$props: typeof wc8b0bddecd5d74fcba7aac87913137ca3.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc8b0bddecd5d74fcba7aac87913137ca3.propsDefinition>;
|
1830
|
-
};
|
1831
|
-
};
|
1832
|
-
"OSwiperSlide": {
|
1833
|
-
new (...args: any[]): {
|
1834
|
-
$props: typeof wc3fa834509fe3419fb005e2dd17325449.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc3fa834509fe3419fb005e2dd17325449.propsDefinition>;
|
1835
|
-
};
|
1836
|
-
};
|
1837
1839
|
"OSwitch": {
|
1838
1840
|
new (...args: any[]): {
|
1839
1841
|
$props: typeof wc31cc47b19e7d4c40b826f58d1c955a43.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc31cc47b19e7d4c40b826f58d1c955a43.propsDefinition>;
|
@@ -2109,6 +2111,11 @@ declare global {
|
|
2109
2111
|
$props: typeof wc12d1bca1d50b4186acd50014584389c9.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc12d1bca1d50b4186acd50014584389c9.propsDefinition>;
|
2110
2112
|
};
|
2111
2113
|
};
|
2114
|
+
"SlidepanelBlock": {
|
2115
|
+
new (...args: any[]): {
|
2116
|
+
$props: typeof wcca498a9d23e947afa4c5695f01ba7959.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcca498a9d23e947afa4c5695f01ba7959.propsDefinition>;
|
2117
|
+
};
|
2118
|
+
};
|
2112
2119
|
"PropertiesBirthdayDisplay": {
|
2113
2120
|
new (...args: any[]): {
|
2114
2121
|
$props: typeof wc916c23c53dbf4d5a8e421e9449c6b203.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc916c23c53dbf4d5a8e421e9449c6b203.propsDefinition>;
|
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.66-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.66-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|
/package/internal-do-not-import-from-here/ux/oxide/{swiper/SwiperSlide.d.ts → slidepanel/Slide.d.ts}
RENAMED
File without changes
|
File without changes
|
/package/internal-do-not-import-from-here/ux/oxide/{swiper → slidepanel}/docs/ExampleComponents.d.ts
RENAMED
File without changes
|
File without changes
|