@omnia/fx 8.0.183-dev → 8.0.185-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/sortable/Sortable.d.ts +1 -0
- package/internal-do-not-import-from-here/libs/sortable/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +43 -1
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/components/containerpicker/ContainerPicker.d.ts +52 -0
- package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +24 -24
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeStoreV2.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/journey/Journey.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/Journey.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/journey/SettingsJourneyMenu.d.ts +56 -0
- package/internal-do-not-import-from-here/ux/journey/docs/ExampleComponentSettings.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/docs/SampleComponentSettings.d.ts +51 -0
- package/internal-do-not-import-from-here/ux/journey/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/models/SettingsBladeRegistration.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/journey/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +22 -0
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +11 -3
- package/internal-do-not-import-from-here/ux/markdown/patches/HtmlInlinePatch.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ThemeStylingPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +15 -6
- package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.css.d.ts +2 -5
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +9 -67
- package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +22 -9
- package/package.json +2 -2
@@ -0,0 +1 @@
|
|
1
|
+
export declare const sortable: any;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./Sortable";
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { SubscriptionHandler } from "@omnia/fx";
|
2
|
-
import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComponentPublicInstance, ComputedOptions, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes, watch, watchEffect } from "vue";
|
2
|
+
import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComponentPublicInstance, ComputedOptions, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes, WatchStopHandle, watch, watchEffect } from "vue";
|
3
3
|
import { LooseRequired, Prettify, UnionToIntersection } from "@vue/shared";
|
4
4
|
import { ColorSchemaTypes, ComponentBundleManifest, Directives, GuidValue } from "@omnia/fx-models";
|
5
5
|
import { ColorSchemaStoreType, VueComponentBaseProps } from ".";
|
@@ -293,6 +293,48 @@ export declare function defineVue(): {
|
|
293
293
|
};
|
294
294
|
export declare function getElementName(componentManifestId: GuidValue): string;
|
295
295
|
export declare function createVueNode(element: VNodeTypes | GuidValue, props?: RawProps, children?: RawChildren | RawSlots): VNode;
|
296
|
+
export declare function internalDVCByFS(injectOptions: any, options: any, extraOptions: any, register: any): (props: ExtractProps<Record<string, any>> & Omit<{}, string | number> & SlotsToProps<ExtractSlotsFromProps<Record<string, any>>> & Omit<VueComponentBaseProps, string>) => {
|
297
|
+
$: import("vue").ComponentInternalInstance;
|
298
|
+
$data: {};
|
299
|
+
$props: {};
|
300
|
+
$attrs: {
|
301
|
+
[x: string]: unknown;
|
302
|
+
};
|
303
|
+
$refs: {
|
304
|
+
[x: string]: unknown;
|
305
|
+
};
|
306
|
+
$slots: Readonly<{
|
307
|
+
[name: string]: Slot<any>;
|
308
|
+
}>;
|
309
|
+
$root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
310
|
+
$parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
311
|
+
$emit: (event: string, ...args: any[]) => void;
|
312
|
+
$el: any;
|
313
|
+
$options: ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
314
|
+
beforeCreate?: (() => void) | (() => void)[];
|
315
|
+
created?: (() => void) | (() => void)[];
|
316
|
+
beforeMount?: (() => void) | (() => void)[];
|
317
|
+
mounted?: (() => void) | (() => void)[];
|
318
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
319
|
+
updated?: (() => void) | (() => void)[];
|
320
|
+
activated?: (() => void) | (() => void)[];
|
321
|
+
deactivated?: (() => void) | (() => void)[];
|
322
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
323
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
324
|
+
destroyed?: (() => void) | (() => void)[];
|
325
|
+
unmounted?: (() => void) | (() => void)[];
|
326
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
327
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
328
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
329
|
+
};
|
330
|
+
$forceUpdate: () => void;
|
331
|
+
$nextTick: typeof import("vue").nextTick;
|
332
|
+
$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>): WatchStopHandle;
|
333
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
334
|
+
propsDefinition: ExtractProps<Record<string, any>> & SlotsToProps<ExtractSlotsFromProps<Record<string, any>>> & {} & Omit<VueComponentBaseProps, string | number>;
|
335
|
+
} & VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
336
|
+
[key: string]: any;
|
337
|
+
}>;
|
296
338
|
export declare function isElement<TElement = typeof omfx>(element: string, cb: (elements: TElement) => any): boolean;
|
297
339
|
declare global {
|
298
340
|
namespace JSX {
|
package/internal-do-not-import-from-here/ux/aurora/components/containerpicker/ContainerPicker.d.ts
CHANGED
@@ -12,6 +12,18 @@ declare const _default: {
|
|
12
12
|
} & {
|
13
13
|
type: import("vue").PropType<string>;
|
14
14
|
};
|
15
|
+
"individual-radius-selection": {
|
16
|
+
type: import("vue").PropType<boolean>;
|
17
|
+
};
|
18
|
+
individualRadiusSelection: {
|
19
|
+
type: import("vue").PropType<boolean>;
|
20
|
+
};
|
21
|
+
"individual-border-width-selection": {
|
22
|
+
type: import("vue").PropType<boolean>;
|
23
|
+
};
|
24
|
+
individualBorderWidthSelection: {
|
25
|
+
type: import("vue").PropType<boolean>;
|
26
|
+
};
|
15
27
|
"allow-custom": {
|
16
28
|
type: import("vue").PropType<boolean>;
|
17
29
|
};
|
@@ -116,6 +128,18 @@ declare const _default: {
|
|
116
128
|
} & {
|
117
129
|
type: import("vue").PropType<string>;
|
118
130
|
};
|
131
|
+
"individual-radius-selection": {
|
132
|
+
type: import("vue").PropType<boolean>;
|
133
|
+
};
|
134
|
+
individualRadiusSelection: {
|
135
|
+
type: import("vue").PropType<boolean>;
|
136
|
+
};
|
137
|
+
"individual-border-width-selection": {
|
138
|
+
type: import("vue").PropType<boolean>;
|
139
|
+
};
|
140
|
+
individualBorderWidthSelection: {
|
141
|
+
type: import("vue").PropType<boolean>;
|
142
|
+
};
|
119
143
|
"allow-custom": {
|
120
144
|
type: import("vue").PropType<boolean>;
|
121
145
|
};
|
@@ -223,6 +247,18 @@ declare const _default: {
|
|
223
247
|
} & {
|
224
248
|
type: import("vue").PropType<string>;
|
225
249
|
};
|
250
|
+
"individual-radius-selection": {
|
251
|
+
type: import("vue").PropType<boolean>;
|
252
|
+
};
|
253
|
+
individualRadiusSelection: {
|
254
|
+
type: import("vue").PropType<boolean>;
|
255
|
+
};
|
256
|
+
"individual-border-width-selection": {
|
257
|
+
type: import("vue").PropType<boolean>;
|
258
|
+
};
|
259
|
+
individualBorderWidthSelection: {
|
260
|
+
type: import("vue").PropType<boolean>;
|
261
|
+
};
|
226
262
|
"allow-custom": {
|
227
263
|
type: import("vue").PropType<boolean>;
|
228
264
|
};
|
@@ -327,6 +363,18 @@ declare const _default: {
|
|
327
363
|
} & {
|
328
364
|
type: import("vue").PropType<string>;
|
329
365
|
};
|
366
|
+
"individual-radius-selection": {
|
367
|
+
type: import("vue").PropType<boolean>;
|
368
|
+
};
|
369
|
+
individualRadiusSelection: {
|
370
|
+
type: import("vue").PropType<boolean>;
|
371
|
+
};
|
372
|
+
"individual-border-width-selection": {
|
373
|
+
type: import("vue").PropType<boolean>;
|
374
|
+
};
|
375
|
+
individualBorderWidthSelection: {
|
376
|
+
type: import("vue").PropType<boolean>;
|
377
|
+
};
|
330
378
|
"allow-custom": {
|
331
379
|
type: import("vue").PropType<boolean>;
|
332
380
|
};
|
@@ -493,10 +541,14 @@ declare const _default: {
|
|
493
541
|
} & {
|
494
542
|
activator?: () => VNodeChild;
|
495
543
|
};
|
544
|
+
individualRadiusSelection?: boolean;
|
545
|
+
individualBorderWidthSelection?: boolean;
|
496
546
|
previewColorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
497
547
|
"preview-color-schema-type"?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
498
548
|
allowCustom?: boolean;
|
499
549
|
"allow-custom"?: boolean;
|
550
|
+
"individual-border-width-selection"?: boolean;
|
551
|
+
"individual-radius-selection"?: boolean;
|
500
552
|
}>, "onUpdate:modelValue" | "onItem:enter" | "onItem:leave"> & {
|
501
553
|
"onUpdate:modelValue"?: (value: ContainerVariant | ContainerBlueprint) => any;
|
502
554
|
"onItem:enter"?: (value: ContainerVariant | ContainerBlueprint) => any;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Blueprint, BlueprintVariant, ButtonBlueprint, ButtonBlueprintType, ButtonTypes, ComponentBlueprints, ContainerVariant, OIconSizes, WebBlueprintItemDefintionType } from "@omnia/fx-models";
|
1
|
+
import { Blueprint, BlueprintVariant, ButtonBlueprint, ButtonBlueprintType, ButtonTypes, ComponentBlueprints, ContainerBlueprint, ContainerVariant, OIconSizes, WebBlueprintItemDefintionType } from "@omnia/fx-models";
|
2
2
|
type blueprintType = "default";
|
3
3
|
export declare const useComponentBlueprintStore: () => {
|
4
4
|
state: {
|
@@ -51,7 +51,7 @@ export declare const useComponentBlueprintStore: () => {
|
|
51
51
|
};
|
52
52
|
container: {
|
53
53
|
hasVariant(type: ContainerVariant | string): boolean;
|
54
|
-
getByType(type: ContainerVariant | string):
|
54
|
+
getByType(type: ContainerVariant | ContainerBlueprint | string): ContainerBlueprint;
|
55
55
|
};
|
56
56
|
};
|
57
57
|
deactivated(): void;
|
@@ -95,12 +95,12 @@ export declare const useSpacingBlueprintStore: () => {
|
|
95
95
|
};
|
96
96
|
container: {
|
97
97
|
hasVariant(type: string): boolean;
|
98
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
98
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
99
99
|
};
|
100
100
|
};
|
101
101
|
deactivated(): void;
|
102
102
|
};
|
103
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
103
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
104
104
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
105
105
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
106
106
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -198,12 +198,12 @@ export declare const useSpacingBlueprintStore: () => {
|
|
198
198
|
};
|
199
199
|
container: {
|
200
200
|
hasVariant(type: string): boolean;
|
201
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
201
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
202
202
|
};
|
203
203
|
};
|
204
204
|
deactivated(): void;
|
205
205
|
};
|
206
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
206
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
207
207
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
208
208
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
209
209
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -301,12 +301,12 @@ export declare const useSpacingBlueprintStore: () => {
|
|
301
301
|
};
|
302
302
|
container: {
|
303
303
|
hasVariant(type: string): boolean;
|
304
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
304
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
305
305
|
};
|
306
306
|
};
|
307
307
|
deactivated(): void;
|
308
308
|
};
|
309
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
309
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
310
310
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
311
311
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
312
312
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -6241,12 +6241,12 @@ export declare const useSpacingBlueprintStore: () => {
|
|
6241
6241
|
};
|
6242
6242
|
container: {
|
6243
6243
|
hasVariant(type: string): boolean;
|
6244
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
6244
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
6245
6245
|
};
|
6246
6246
|
};
|
6247
6247
|
deactivated(): void;
|
6248
6248
|
};
|
6249
|
-
colorSchema: (colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic") => import("@omnia/fx-models").ColorSchema;
|
6249
|
+
colorSchema: (colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema) => import("@omnia/fx-models").ColorSchema;
|
6250
6250
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
6251
6251
|
fillValue: (value: import("@omnia/fx-models").FillDefinitionValue, type: "typography") => any;
|
6252
6252
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
@@ -99,12 +99,12 @@ export declare const useThemeContextStore: () => {
|
|
99
99
|
};
|
100
100
|
container: {
|
101
101
|
hasVariant(type: string): boolean;
|
102
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
102
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
103
103
|
};
|
104
104
|
};
|
105
105
|
deactivated(): void;
|
106
106
|
};
|
107
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
107
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
108
108
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
109
109
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
110
110
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -195,12 +195,12 @@ export declare const useThemeContextStore: () => {
|
|
195
195
|
};
|
196
196
|
container: {
|
197
197
|
hasVariant(type: string): boolean;
|
198
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
198
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
199
199
|
};
|
200
200
|
};
|
201
201
|
deactivated(): void;
|
202
202
|
};
|
203
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
203
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
204
204
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
205
205
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
206
206
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -291,12 +291,12 @@ export declare const useThemeContextStore: () => {
|
|
291
291
|
};
|
292
292
|
container: {
|
293
293
|
hasVariant(type: string): boolean;
|
294
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
294
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
295
295
|
};
|
296
296
|
};
|
297
297
|
deactivated(): void;
|
298
298
|
};
|
299
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
299
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
300
300
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
301
301
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
302
302
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -387,12 +387,12 @@ export declare const useThemeContextStore: () => {
|
|
387
387
|
};
|
388
388
|
container: {
|
389
389
|
hasVariant(type: string): boolean;
|
390
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
390
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
391
391
|
};
|
392
392
|
};
|
393
393
|
deactivated(): void;
|
394
394
|
};
|
395
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
395
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
396
396
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
397
397
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
398
398
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -485,12 +485,12 @@ export declare const useThemeContextStore: () => {
|
|
485
485
|
};
|
486
486
|
container: {
|
487
487
|
hasVariant(type: string): boolean;
|
488
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
488
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
489
489
|
};
|
490
490
|
};
|
491
491
|
deactivated(): void;
|
492
492
|
};
|
493
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
493
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
494
494
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
495
495
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
496
496
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -581,12 +581,12 @@ export declare const useThemeContextStore: () => {
|
|
581
581
|
};
|
582
582
|
container: {
|
583
583
|
hasVariant(type: string): boolean;
|
584
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
584
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
585
585
|
};
|
586
586
|
};
|
587
587
|
deactivated(): void;
|
588
588
|
};
|
589
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
589
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
590
590
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
591
591
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
592
592
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -677,12 +677,12 @@ export declare const useThemeContextStore: () => {
|
|
677
677
|
};
|
678
678
|
container: {
|
679
679
|
hasVariant(type: string): boolean;
|
680
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
680
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
681
681
|
};
|
682
682
|
};
|
683
683
|
deactivated(): void;
|
684
684
|
};
|
685
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
685
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
686
686
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
687
687
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
688
688
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -773,12 +773,12 @@ export declare const useThemeContextStore: () => {
|
|
773
773
|
};
|
774
774
|
container: {
|
775
775
|
hasVariant(type: string): boolean;
|
776
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
776
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
777
777
|
};
|
778
778
|
};
|
779
779
|
deactivated(): void;
|
780
780
|
};
|
781
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
781
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
782
782
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
783
783
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
784
784
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -871,12 +871,12 @@ export declare const useThemeContextStore: () => {
|
|
871
871
|
};
|
872
872
|
container: {
|
873
873
|
hasVariant(type: string): boolean;
|
874
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
874
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
875
875
|
};
|
876
876
|
};
|
877
877
|
deactivated(): void;
|
878
878
|
};
|
879
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
879
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
880
880
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
881
881
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
882
882
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -967,12 +967,12 @@ export declare const useThemeContextStore: () => {
|
|
967
967
|
};
|
968
968
|
container: {
|
969
969
|
hasVariant(type: string): boolean;
|
970
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
970
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
971
971
|
};
|
972
972
|
};
|
973
973
|
deactivated(): void;
|
974
974
|
};
|
975
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
975
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
976
976
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
977
977
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
978
978
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -1063,12 +1063,12 @@ export declare const useThemeContextStore: () => {
|
|
1063
1063
|
};
|
1064
1064
|
container: {
|
1065
1065
|
hasVariant(type: string): boolean;
|
1066
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
1066
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
1067
1067
|
};
|
1068
1068
|
};
|
1069
1069
|
deactivated(): void;
|
1070
1070
|
};
|
1071
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
1071
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
1072
1072
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
1073
1073
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
1074
1074
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -1159,12 +1159,12 @@ export declare const useThemeContextStore: () => {
|
|
1159
1159
|
};
|
1160
1160
|
container: {
|
1161
1161
|
hasVariant(type: string): boolean;
|
1162
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
1162
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
1163
1163
|
};
|
1164
1164
|
};
|
1165
1165
|
deactivated(): void;
|
1166
1166
|
};
|
1167
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
1167
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
1168
1168
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
1169
1169
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
1170
1170
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes, FillDefinitionValue, ThemeDefinitionV2 } from "@omnia/fx-models";
|
1
|
+
import { ColorSchema, ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes, FillDefinitionValue, ThemeDefinitionV2 } from "@omnia/fx-models";
|
2
2
|
export declare const useThemeStoreV2: () => {
|
3
3
|
state: {
|
4
4
|
currentTheme: ThemeDefinitionV2;
|
@@ -77,12 +77,12 @@ export declare const useThemeStoreV2: () => {
|
|
77
77
|
};
|
78
78
|
container: {
|
79
79
|
hasVariant(type: string): boolean;
|
80
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
80
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
81
81
|
};
|
82
82
|
};
|
83
83
|
deactivated(): void;
|
84
84
|
};
|
85
|
-
colorSchema(colorSchemaType: ColorSchemaTypes | ColorSchemaType):
|
85
|
+
colorSchema(colorSchemaType: ColorSchemaTypes | ColorSchemaType | ColorSchema): ColorSchema;
|
86
86
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
87
87
|
fillValue(value: FillDefinitionValue, type: "typography"): any;
|
88
88
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -95,12 +95,12 @@ export declare const useTypographyBlueprintStore: () => {
|
|
95
95
|
};
|
96
96
|
container: {
|
97
97
|
hasVariant(type: string): boolean;
|
98
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
98
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
99
99
|
};
|
100
100
|
};
|
101
101
|
deactivated(): void;
|
102
102
|
};
|
103
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
103
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
104
104
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
105
105
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
106
106
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -198,12 +198,12 @@ export declare const useTypographyBlueprintStore: () => {
|
|
198
198
|
};
|
199
199
|
container: {
|
200
200
|
hasVariant(type: string): boolean;
|
201
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
201
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
202
202
|
};
|
203
203
|
};
|
204
204
|
deactivated(): void;
|
205
205
|
};
|
206
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
206
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
207
207
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
208
208
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
209
209
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -301,12 +301,12 @@ export declare const useTypographyBlueprintStore: () => {
|
|
301
301
|
};
|
302
302
|
container: {
|
303
303
|
hasVariant(type: string): boolean;
|
304
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
304
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
305
305
|
};
|
306
306
|
};
|
307
307
|
deactivated(): void;
|
308
308
|
};
|
309
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
309
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
310
310
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
311
311
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
312
312
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -6241,12 +6241,12 @@ export declare const useTypographyBlueprintStore: () => {
|
|
6241
6241
|
};
|
6242
6242
|
container: {
|
6243
6243
|
hasVariant(type: string): boolean;
|
6244
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
6244
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
6245
6245
|
};
|
6246
6246
|
};
|
6247
6247
|
deactivated(): void;
|
6248
6248
|
};
|
6249
|
-
colorSchema: (colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic") => import("@omnia/fx-models").ColorSchema;
|
6249
|
+
colorSchema: (colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema) => import("@omnia/fx-models").ColorSchema;
|
6250
6250
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
6251
6251
|
fillValue: (value: import("@omnia/fx-models").FillDefinitionValue, type: "typography") => any;
|
6252
6252
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ColorDefinition } from "@omnia/fx-models";
|
2
|
-
export type JourneyVariant = "default" | "editor";
|
2
|
+
export type JourneyVariant = "default" | "editor" | "settings";
|
3
3
|
export declare const JourneyStyles: {
|
4
4
|
wrapper: (color: ColorDefinition, variant: JourneyVariant) => string;
|
5
5
|
bladeWrapper: string;
|
@@ -2,6 +2,12 @@ import { useJourneyStore } from "@omnia/fx/ux";
|
|
2
2
|
import { JourneyVariant } from "./Journey.css";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
5
|
+
"compact-mode": {
|
6
|
+
type: import("vue").PropType<boolean>;
|
7
|
+
};
|
8
|
+
compactMode: {
|
9
|
+
type: import("vue").PropType<boolean>;
|
10
|
+
};
|
5
11
|
variant: {
|
6
12
|
type: import("vue").PropType<JourneyVariant>;
|
7
13
|
} & {
|
@@ -14,6 +20,12 @@ declare const _default: {
|
|
14
20
|
type: import("vue").PropType<(store: ReturnType<typeof useJourneyStore>) => void>;
|
15
21
|
};
|
16
22
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
23
|
+
"compact-mode": {
|
24
|
+
type: import("vue").PropType<boolean>;
|
25
|
+
};
|
26
|
+
compactMode: {
|
27
|
+
type: import("vue").PropType<boolean>;
|
28
|
+
};
|
17
29
|
variant: {
|
18
30
|
type: import("vue").PropType<JourneyVariant>;
|
19
31
|
} & {
|
@@ -33,6 +45,12 @@ declare const _default: {
|
|
33
45
|
M: {};
|
34
46
|
Defaults: {};
|
35
47
|
}, Readonly<import("vue").ExtractPropTypes<{
|
48
|
+
"compact-mode": {
|
49
|
+
type: import("vue").PropType<boolean>;
|
50
|
+
};
|
51
|
+
compactMode: {
|
52
|
+
type: import("vue").PropType<boolean>;
|
53
|
+
};
|
36
54
|
variant: {
|
37
55
|
type: import("vue").PropType<JourneyVariant>;
|
38
56
|
} & {
|
@@ -49,6 +67,12 @@ declare const _default: {
|
|
49
67
|
__isTeleport?: never;
|
50
68
|
__isSuspense?: never;
|
51
69
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
70
|
+
"compact-mode": {
|
71
|
+
type: import("vue").PropType<boolean>;
|
72
|
+
};
|
73
|
+
compactMode: {
|
74
|
+
type: import("vue").PropType<boolean>;
|
75
|
+
};
|
52
76
|
variant: {
|
53
77
|
type: import("vue").PropType<JourneyVariant>;
|
54
78
|
} & {
|
@@ -63,8 +87,10 @@ declare const _default: {
|
|
63
87
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
64
88
|
propsDefinition: Omit<Readonly<{} & {
|
65
89
|
variant?: JourneyVariant;
|
90
|
+
compactMode?: boolean;
|
66
91
|
getApi?: (store: ReturnType<typeof useJourneyStore>) => void;
|
67
92
|
"get-api"?: (store: ReturnType<typeof useJourneyStore>) => void;
|
93
|
+
"compact-mode"?: boolean;
|
68
94
|
}>, never>;
|
69
95
|
};
|
70
96
|
export default _default;
|
@@ -4,7 +4,7 @@ declare const _default: {
|
|
4
4
|
headerButtons: string;
|
5
5
|
headerIcon: string;
|
6
6
|
switchWrapper: string;
|
7
|
-
wrapper: (totalWidth: number, dark: boolean) => string;
|
7
|
+
wrapper: (totalWidth: number, dark: boolean, compactMode: boolean) => string;
|
8
8
|
fullScreenWrapper: string;
|
9
9
|
};
|
10
10
|
export default _default;
|