@omnia/fx 8.0.364-dev → 8.0.366-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/manifests/omnia.fx.ux.editor.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/VueComponentConnect.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/loc/Localize.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/editor/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editor/settings/DefineJourneyMenuSettings.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/editor/settings/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +33 -0
- package/internal-do-not-import-from-here/ux/journey/SettingsJourneyMenu.d.ts +13 -3
- package/internal-do-not-import-from-here/ux/journey/selection/JourneySelect.d.ts +12 -4
- package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditor.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditorCanvas.d.ts +7 -8
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/progress/Progress.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/qrcode/QRCode.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/rangeslider/RangeSlider.d.ts +10 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +20 -8
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/cropper/ImageCropper.d.ts +0 -6
- /package/internal-do-not-import-from-here/ux/{html/HtmlRenderer.d.ts → aurora/admin/blades/chrome/Chrome.d.ts} +0 -0
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['e0d8cdbf-5683-4f1b-883b-da203e8193a4']","content":{"./node_modules/@omnia/fx/ux/editor/index.js":{"id":"./node_modules/@omnia/fx/ux/editor/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]}}}
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['e0d8cdbf-5683-4f1b-883b-da203e8193a4']","content":{"./node_modules/@omnia/fx/ux/editor/index.js":{"id":"./node_modules/@omnia/fx/ux/editor/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["defineJourneyMenuSettings"]}}}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { ComponentPublicInstance } from "vue";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
|
+
parent?: ComponentPublicInstance;
|
4
|
+
}> & {} & {
|
5
|
+
"v-slots"?: {} & Omit<{
|
6
|
+
default?: import("vue").Slot;
|
7
|
+
}, never>;
|
8
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "parent"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
9
|
+
export default _default;
|
@@ -0,0 +1,21 @@
|
|
1
|
+
export declare namespace ThemingLocalization {
|
2
|
+
type Namespace = "Omnia.Admin.Theming";
|
3
|
+
interface ILocalization {
|
4
|
+
ThemeDesigner: {
|
5
|
+
Title: string;
|
6
|
+
Chrome: string;
|
7
|
+
Themes: string;
|
8
|
+
ColorSchemas: string;
|
9
|
+
Typography: string;
|
10
|
+
Spacing: string;
|
11
|
+
Blueprints: string;
|
12
|
+
Fonts: string;
|
13
|
+
};
|
14
|
+
ThemeSettings: {
|
15
|
+
Title: string;
|
16
|
+
};
|
17
|
+
VelcronStudio: {
|
18
|
+
Title: string;
|
19
|
+
};
|
20
|
+
}
|
21
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Spacing, SpacingValue, setColorOpacity, ColorValue } from "@omnia/fx-models";
|
1
|
+
import { Spacing, SpacingValue, setColorOpacity, ColorValue, ThemeContextType } from "@omnia/fx-models";
|
2
2
|
import { colorStyling, SpacingStyling, generalStylex, IconStyling, FillStyling, BorderStyling, BackgroundStyling, TextStyles } from "./styles";
|
3
3
|
import { useSpacingBlueprintStore } from "../store";
|
4
4
|
import { TypographyStyling } from "./styles/Typography";
|
@@ -80,6 +80,7 @@ export declare function useThemeStyling(): {
|
|
80
80
|
object: typeof TextStyles.getBlueprintTextStylingObject;
|
81
81
|
};
|
82
82
|
};
|
83
|
+
export declare function useSetupTheme(themeType: ThemeContextType): void;
|
83
84
|
declare function generateValueVariable(color: ColorValue): string;
|
84
85
|
declare function generateVariableStyle(color: ColorValue): {
|
85
86
|
[key: string]: string;
|
@@ -1 +1 @@
|
|
1
|
-
export
|
1
|
+
export * from "./settings";
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { type SettingsJourneyMenuItem } from "../../journey/models";
|
2
|
+
import { ConstructComponentProps, defineBlade, VNodeEvents } from "@omnia/fx/ux";
|
3
|
+
interface SettingsJourneyMenuItemState extends SettingsJourneyMenuItem {
|
4
|
+
blade: ReturnType<typeof defineBlade>;
|
5
|
+
}
|
6
|
+
type JourneySettingsMenuElement = (props: ConstructComponentProps<{}> & VNodeEvents) => any;
|
7
|
+
export declare function defineJourneyMenuSettings(): {
|
8
|
+
setup: {
|
9
|
+
addPadding(blade: ReturnType<typeof defineBlade>): Omit</*elided*/ any, "addPadding">;
|
10
|
+
addFilter(blade: ReturnType<typeof defineBlade>): Omit</*elided*/ any, "addFilter">;
|
11
|
+
addItem(item: SettingsJourneyMenuItemState): /*elided*/ any;
|
12
|
+
};
|
13
|
+
MenuSettingsRenderer: JourneySettingsMenuElement;
|
14
|
+
};
|
15
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./DefineJourneyMenuSettings";
|
@@ -31,5 +31,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
31
31
|
} & Omit<{
|
32
32
|
default?: import("vue").Slot;
|
33
33
|
}, "itemRendering">;
|
34
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "grow" | "size" | "class" | "label" | "filters" | "modelValue" | "v-model" | "emit:update:modelValue" | "
|
34
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "grow" | "size" | "class" | "label" | "filters" | "modelValue" | "v-model" | "emit:update:modelValue" | "sortable" | "slot:itemRendering" | "singleSelect" | "emit:item:removed" | "emit:item:sorted"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
35
35
|
export default _default;
|
@@ -35,6 +35,15 @@ declare const _default: {
|
|
35
35
|
identities: Array<IResolvedIdentity>;
|
36
36
|
}) => VNodeChild;
|
37
37
|
}>;
|
38
|
+
avatarStyles: {
|
39
|
+
type: import("vue").PropType<{
|
40
|
+
styles?: {
|
41
|
+
[key: string]: string;
|
42
|
+
};
|
43
|
+
class?: string;
|
44
|
+
}>;
|
45
|
+
required: false;
|
46
|
+
};
|
38
47
|
hideUsername: {
|
39
48
|
type: import("vue").PropType<boolean>;
|
40
49
|
required: false;
|
@@ -125,6 +134,15 @@ declare const _default: {
|
|
125
134
|
identities: Array<IResolvedIdentity>;
|
126
135
|
}) => VNodeChild;
|
127
136
|
}>;
|
137
|
+
avatarStyles: {
|
138
|
+
type: import("vue").PropType<{
|
139
|
+
styles?: {
|
140
|
+
[key: string]: string;
|
141
|
+
};
|
142
|
+
class?: string;
|
143
|
+
}>;
|
144
|
+
required: false;
|
145
|
+
};
|
128
146
|
hideUsername: {
|
129
147
|
type: import("vue").PropType<boolean>;
|
130
148
|
required: false;
|
@@ -212,6 +230,15 @@ declare const _default: {
|
|
212
230
|
identities: Array<IResolvedIdentity>;
|
213
231
|
}) => VNodeChild;
|
214
232
|
}>;
|
233
|
+
avatarStyles: {
|
234
|
+
type: import("vue").PropType<{
|
235
|
+
styles?: {
|
236
|
+
[key: string]: string;
|
237
|
+
};
|
238
|
+
class?: string;
|
239
|
+
}>;
|
240
|
+
required: false;
|
241
|
+
};
|
215
242
|
hideUsername: {
|
216
243
|
type: import("vue").PropType<boolean>;
|
217
244
|
required: false;
|
@@ -332,6 +359,12 @@ declare const _default: {
|
|
332
359
|
presenceRtlOffsetX?: number;
|
333
360
|
presenceOffsetY?: number;
|
334
361
|
hideUsername?: boolean;
|
362
|
+
avatarStyles?: {
|
363
|
+
styles?: {
|
364
|
+
[key: string]: string;
|
365
|
+
};
|
366
|
+
class?: string;
|
367
|
+
};
|
335
368
|
}>, never>;
|
336
369
|
};
|
337
370
|
export default _default;
|
@@ -1,9 +1,19 @@
|
|
1
|
-
import { SettingsJourneyMenuItem } from "@omnia/fx/ux";
|
1
|
+
import { DefineRef, SettingsJourneyMenuItem, useJourneyStore } from "@omnia/fx/ux";
|
2
2
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
3
|
items?: SettingsJourneyMenuItem[];
|
4
|
-
}
|
4
|
+
} & DefineRef<{
|
5
|
+
journeyStore: ReturnType<typeof useJourneyStore>;
|
6
|
+
}>> & {} & {
|
5
7
|
"v-slots"?: {} & Omit<{
|
6
8
|
default?: import("vue").Slot;
|
7
9
|
}, never>;
|
8
|
-
} & {
|
10
|
+
} & {
|
11
|
+
ref?: import("vue").Ref<{
|
12
|
+
journeyStore: ReturnType<typeof useJourneyStore>;
|
13
|
+
}, {
|
14
|
+
journeyStore: ReturnType<typeof useJourneyStore>;
|
15
|
+
}> | ((ref: {
|
16
|
+
journeyStore: ReturnType<typeof useJourneyStore>;
|
17
|
+
}) => void);
|
18
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "items" | "ref"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
9
19
|
export default _default;
|
@@ -1,17 +1,25 @@
|
|
1
1
|
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot, DefineVModel } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
import { JourneySelectItem } from "../models/JourneySelectItem";
|
4
|
-
|
4
|
+
export declare const SelectionTypeDefinitions: readonly ["selection", "custom"];
|
5
|
+
export type SelectionTypes = typeof SelectionTypeDefinitions[number];
|
6
|
+
type BaseProps = DefinePropTheming & DefineVModel<"", Array<JourneySelectItem>, false, null, false, "The v-model of the component"> & DefineProp<"toned", boolean, false, null, "Sets the component to toned"> & DefineProp<"multiple", boolean, false, null, "If it is allowed to select multiple or single"> & DefineProp<"label", string, null, null, "The label of the component"> & DefineProp<"labelAdd", string, null, null, "The add label of the component"> & DefineProp<"items", Array<JourneySelectItem>, false, null, "Items to select from"> & DefineProp<"searchable", boolean, false, null, "If it is allowed to search"> & DefineProp<"sortable", boolean, false, null, "If it is allowed to sort"> & DefineProp<"readonly", boolean, false, null, "Disable add and delete"> & DefineEmit<"search", (searchText: string) => true> & DefineSlot<"selectionItemRender", (item: JourneySelectItem, index: Number, onSave?: (item: JourneySelectItem) => void) => VNodeChild> & DefineSlot<"selectionRender", () => VNodeChild> & DefineSlot<"settingsRender", (item: JourneySelectItem) => VNodeChild> & DefineSlot<"chipRenderer", (item: JourneySelectItem, index: Number) => VNodeChild> & DefineEmit<"showAdd", () => true> & DefineEmit<"showEdit", (item: JourneySelectItem) => true> & DefineEmit<"click:add", () => true> & DefineEmit<"click:update", (item: JourneySelectItem) => true> & DefineEmit<"click:delete", (item: JourneySelectItem) => true>;
|
5
7
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<BaseProps> & {
|
6
8
|
"onUpdate:modelValue"?: (value: JourneySelectItem<any>[]) => any;
|
7
9
|
onSearch?: (searchText: string) => any;
|
10
|
+
"onClick:add"?: () => any;
|
11
|
+
"onClick:delete"?: (item: JourneySelectItem<any>) => any;
|
12
|
+
onShowAdd?: () => any;
|
13
|
+
onShowEdit?: (item: JourneySelectItem<any>) => any;
|
14
|
+
"onClick:update"?: (item: JourneySelectItem<any>) => any;
|
8
15
|
} & {
|
9
16
|
"v-slots"?: {
|
10
|
-
|
17
|
+
selectionItemRender?: (item: JourneySelectItem, index: Number, onSave?: (item: JourneySelectItem) => void) => VNodeChild;
|
18
|
+
selectionRender?: () => VNodeChild;
|
11
19
|
settingsRender?: (item: JourneySelectItem) => VNodeChild;
|
12
20
|
chipRenderer?: (item: JourneySelectItem, index: Number) => VNodeChild;
|
13
21
|
} & Omit<{
|
14
22
|
default?: import("vue").Slot;
|
15
|
-
}, "selectionRender" | "settingsRender" | "chipRenderer">;
|
16
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "multiple" | "colorSchemaType" | "modelValue" | "items" | "colors" | "v-model" | "toned" | "emit:update:modelValue" | "searchable" | "emit:search" | "slot:selectionRender" | "slot:settingsRender" | "slot:chipRenderer"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
23
|
+
}, "selectionItemRender" | "selectionRender" | "settingsRender" | "chipRenderer">;
|
24
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "multiple" | "colorSchemaType" | "modelValue" | "items" | "readonly" | "colors" | "v-model" | "toned" | "emit:update:modelValue" | "searchable" | "emit:click:add" | "emit:search" | "emit:click:delete" | "sortable" | "labelAdd" | "slot:selectionItemRender" | "slot:selectionRender" | "slot:settingsRender" | "slot:chipRenderer" | "emit:showAdd" | "emit:showEdit" | "emit:click:update"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
17
25
|
export default _default;
|
@@ -1,8 +1,11 @@
|
|
1
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
1
2
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
2
3
|
containerId?: string;
|
3
|
-
}
|
4
|
+
} & DefineEmit<"editorChanged", () => void>> & {
|
5
|
+
onEditorChanged?: () => any;
|
6
|
+
} & {
|
4
7
|
"v-slots"?: {} & Omit<{
|
5
8
|
default?: import("vue").Slot;
|
6
9
|
}, never>;
|
7
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "containerId"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
10
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "containerId" | "emit:editorChanged"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
8
11
|
export default _default;
|
@@ -1,5 +1,4 @@
|
|
1
1
|
import { MediaPickerTransformedBase64Image } from "@omnia/fx-models";
|
2
|
-
import ImageEditor from "tui-image-editor";
|
3
2
|
import { MediaPickerBase64Image } from "@omnia/fx-models";
|
4
3
|
declare const _default: {
|
5
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
@@ -22,9 +21,9 @@ declare const _default: {
|
|
22
21
|
type: import("vue").PropType<number>;
|
23
22
|
};
|
24
23
|
}>> & {
|
25
|
-
|
24
|
+
onCanvasChanged?: () => any;
|
26
25
|
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
27
|
-
|
26
|
+
canvasChanged: () => true;
|
28
27
|
}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
29
28
|
P: {};
|
30
29
|
B: {};
|
@@ -52,7 +51,7 @@ declare const _default: {
|
|
52
51
|
type: import("vue").PropType<number>;
|
53
52
|
};
|
54
53
|
}>> & {
|
55
|
-
|
54
|
+
onCanvasChanged?: () => any;
|
56
55
|
}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, {}>;
|
57
56
|
__isFragment?: never;
|
58
57
|
__isTeleport?: never;
|
@@ -77,9 +76,9 @@ declare const _default: {
|
|
77
76
|
type: import("vue").PropType<number>;
|
78
77
|
};
|
79
78
|
}>> & {
|
80
|
-
|
79
|
+
onCanvasChanged?: () => any;
|
81
80
|
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
82
|
-
|
81
|
+
canvasChanged: () => true;
|
83
82
|
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
84
83
|
propsDefinition: Omit<Readonly<{} & {
|
85
84
|
maxHeight?: number;
|
@@ -88,8 +87,8 @@ declare const _default: {
|
|
88
87
|
sourceImage?: MediaPickerBase64Image | MediaPickerTransformedBase64Image;
|
89
88
|
transformations?: string;
|
90
89
|
isRollupRenditionCanvas?: boolean;
|
91
|
-
}>, "
|
92
|
-
|
90
|
+
}>, "onCanvasChanged"> & {
|
91
|
+
onCanvasChanged?: () => any;
|
93
92
|
};
|
94
93
|
};
|
95
94
|
export default _default;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ChipBlueprint, OSizeTypes } from "@omnia/fx-models";
|
2
2
|
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot } from "@omnia/fx/ux";
|
3
3
|
import { VNodeChild } from "vue";
|
4
|
-
type ChipProps = DefinePropTheming & DefineProp<"gradient", boolean, false, false, "Applies a gradient effect to the component."> & DefineProp<"toned", boolean, false, false, "Applies a toned color to the component."> & DefineProp<"size", OSizeTypes, false, null, "The size of the component."> & DefineProp<"text", string, false, null, "Specify content text for the component."> & DefineProp<"color", string, false, null, "The color of the component."> & DefineProp<"closable", boolean, false, false, "Adds remove button and then a chip can be closed."> & DefineProp<"label", boolean, false, false, "Applies a medium size border radius."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the input."> & DefineProp<"blueprint", ChipBlueprint, false, null, "Sets a custom blueprint for the chip."> & DefineProp<"gradient", boolean, false, false, "Applies a gradient effect to the component."> & DefineSlot<"prependAvatar", () => VNodeChild> & DefineSlot<"appendAvatar", () => VNodeChild> & DefineSlot<"prependIcon", () => VNodeChild> & DefineSlot<"appendIcon", () => VNodeChild> & DefineEmit<"click:close", (e: MouseEvent) => void>;
|
4
|
+
type ChipProps = DefinePropTheming & DefineProp<"gradient", boolean, false, false, "Applies a gradient effect to the component."> & DefineProp<"toned", boolean, false, false, "Applies a toned color to the component."> & DefineProp<"size", OSizeTypes, false, null, "The size of the component."> & DefineProp<"text", string, false, null, "Specify content text for the component."> & DefineProp<"color", string, false, null, "The color of the component."> & DefineProp<"closable", boolean, false, false, "Adds remove button and then a chip can be closed."> & DefineProp<"sortable", boolean, false, false, "Adds remove button and then a chip can be closed."> & DefineProp<"label", boolean, false, false, "Applies a medium size border radius."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the input."> & DefineProp<"blueprint", ChipBlueprint, false, null, "Sets a custom blueprint for the chip."> & DefineProp<"gradient", boolean, false, false, "Applies a gradient effect to the component."> & DefineSlot<"prependAvatar", () => VNodeChild> & DefineSlot<"appendAvatar", () => VNodeChild> & DefineSlot<"prependIcon", () => VNodeChild> & DefineSlot<"appendIcon", () => VNodeChild> & DefineEmit<"click:close", (e: MouseEvent) => void>;
|
5
5
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<ChipProps> & {
|
6
6
|
"onClick:close"?: (e: MouseEvent) => any;
|
7
7
|
} & {
|
@@ -13,5 +13,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<ChipProps> &
|
|
13
13
|
} & Omit<{
|
14
14
|
default?: import("vue").Slot;
|
15
15
|
}, "appendAvatar" | "appendIcon" | "prependAvatar" | "prependIcon">;
|
16
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "color" | "blueprint" | "size" | "label" | "disabled" | "colorSchemaType" | "closable" | "gradient" | "colors" | "toned" | "emit:click:close" | "slot:prependAvatar" | "slot:appendAvatar" | "slot:prependIcon" | "slot:appendIcon"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
16
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "text" | "color" | "blueprint" | "size" | "label" | "disabled" | "colorSchemaType" | "closable" | "gradient" | "colors" | "toned" | "emit:click:close" | "sortable" | "slot:prependAvatar" | "slot:appendAvatar" | "slot:prependIcon" | "slot:appendIcon"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
17
17
|
export default _default;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { OProgressSizeTypes, OProgressTypes, OProgressVariants } from "@omnia/fx-models";
|
2
2
|
import { DefineProp } from "@omnia/fx/ux";
|
3
|
-
type ProgressProps = DefineProp<"type", OProgressTypes, false, "circular", "Specific the type of progress to show."> & DefineProp<"variant", OProgressVariants, false, null, "Specific the type of progress"> & DefineProp<"size", OProgressSizeTypes, false, null, "Specific the size of progress"> & DefineProp<"value", number, false, null, "Specific the value of circular progress">;
|
3
|
+
type ProgressProps = DefineProp<"type", OProgressTypes, false, "circular", "Specific the type of progress to show."> & DefineProp<"variant", OProgressVariants, false, null, "Specific the type of progress"> & DefineProp<"size", OProgressSizeTypes | number, false, null, "Specific the size of progress (size type)"> & DefineProp<"width", number, false, null, "Specific the width of progress"> & DefineProp<"indeterminate", boolean, false, false, "Constantly animates, use when loading progress is unknown."> & DefineProp<"value", number, false, null, "Specific the value of circular progress">;
|
4
4
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<ProgressProps> & {} & {
|
5
5
|
"v-slots"?: {} & Omit<{
|
6
6
|
default?: import("vue").Slot;
|
7
7
|
}, never>;
|
8
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "type" | "variant" | "size" | "value"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
8
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "type" | "width" | "variant" | "size" | "value" | "indeterminate"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
9
9
|
export default _default;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { DefineProp, DefinePropTheming } from "@omnia/fx/ux";
|
2
2
|
import { OQRCodeLevel, OQRCodeSizeTypes, SpacingValue } from "@omnia/fx-models";
|
3
|
-
type QRCodeProps = DefinePropTheming & DefineProp<"value", string, false, null, "The value of the QRCode"> & DefineProp<"size", OQRCodeSizeTypes, false, "medium"> & DefineProp<"level", OQRCodeLevel, false, "medium", "The level of the QRCode"> & DefineProp<"margin", SpacingValue, false, null, "Ensures margin of the col from the blueprint.Apply to all dimensions using only one value.">;
|
3
|
+
type QRCodeProps = DefinePropTheming & DefineProp<"value", string, false, null, "The value of the QRCode"> & DefineProp<"size", OQRCodeSizeTypes | number, false, "medium"> & DefineProp<"level", OQRCodeLevel, false, "medium", "The level of the QRCode"> & DefineProp<"margin", SpacingValue, false, null, "Ensures margin of the col from the blueprint.Apply to all dimensions using only one value.">;
|
4
4
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<QRCodeProps> & {} & {
|
5
5
|
"v-slots"?: {} & Omit<{
|
6
6
|
default?: import("vue").Slot;
|
@@ -24,6 +24,9 @@ declare const _default: {
|
|
24
24
|
hint: {
|
25
25
|
type: import("vue").PropType<string>;
|
26
26
|
};
|
27
|
+
toned: {
|
28
|
+
type: import("vue").PropType<boolean>;
|
29
|
+
};
|
27
30
|
noThumbLabel: {
|
28
31
|
type: import("vue").PropType<boolean>;
|
29
32
|
};
|
@@ -100,6 +103,9 @@ declare const _default: {
|
|
100
103
|
hint: {
|
101
104
|
type: import("vue").PropType<string>;
|
102
105
|
};
|
106
|
+
toned: {
|
107
|
+
type: import("vue").PropType<boolean>;
|
108
|
+
};
|
103
109
|
noThumbLabel: {
|
104
110
|
type: import("vue").PropType<boolean>;
|
105
111
|
};
|
@@ -173,6 +179,9 @@ declare const _default: {
|
|
173
179
|
hint: {
|
174
180
|
type: import("vue").PropType<string>;
|
175
181
|
};
|
182
|
+
toned: {
|
183
|
+
type: import("vue").PropType<boolean>;
|
184
|
+
};
|
176
185
|
noThumbLabel: {
|
177
186
|
type: import("vue").PropType<boolean>;
|
178
187
|
};
|
@@ -232,6 +241,7 @@ declare const _default: {
|
|
232
241
|
persistentHint?: boolean;
|
233
242
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
234
243
|
"v-model"?: [number, number];
|
244
|
+
toned?: boolean;
|
235
245
|
min?: string | number;
|
236
246
|
step?: string | number;
|
237
247
|
noThumbLabel?: boolean;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { VueComponentBaseProps } from "./ux/index";
|
2
|
+
import wc1f77fe2582d944ba9521bab47957012d from './ux/VueComponentConnect';
|
2
3
|
import wcf3d75940db51447dbf6719251f5465b0 from './console/components/Console';
|
3
4
|
import wce6b88bd8d41949c8af6fed268ae64430 from './console/components/SocketComponent';
|
4
5
|
import wc5057354b14bb430e854a22e21d9ab7af from './spfx/components/OmniaWPContainerSettings';
|
@@ -52,7 +53,6 @@ import wca673e0befd6649dda5e680ae1cd3535d from './ux/governancedashboard/Numeric
|
|
52
53
|
import wca377536b4fd84773a9730966623601cd from './ux/governancedashboard/BarChartIndicator';
|
53
54
|
import wc08b9c70d2a77433f8492dc0fb50d900e from './ux/grecaptcha/GRecaptcha';
|
54
55
|
import wc64887c3414da45279ea9c905df12c48f from './ux/helptext/HelpText';
|
55
|
-
import wce5a52491260143c8bf9855268a6acbab from './ux/html/HtmlRenderer';
|
56
56
|
import wc7c3b9838bf844a53a446d3795494b304 from './ux/iconpicker/IconPicker';
|
57
57
|
import wca7608d8c42184cbb994910dc06c464a1 from './ux/identities/IdentityRenderer';
|
58
58
|
import wcba60557e3daf48208c919a1806502df5 from './ux/identitypicker/IdentityPickerField';
|
@@ -519,6 +519,7 @@ import wcb19b2cdc3d544c1893c3048886487a73 from './ux/admin/system/submenu/seo/Se
|
|
519
519
|
import wcfeb168ca8f484e06ab3f88d48c078319 from './ux/admin/system/submenu/services/ServicesJourney';
|
520
520
|
import wc3a923c54b15d461597cd678c0d561496 from './ux/admin/system/submenu/systemlogs/SystemLogsJourney';
|
521
521
|
import wc9fbf91affc974ca698437e8ada43bb0c from './ux/admin/system/submenu/tenantcontact/TenantContactJourney';
|
522
|
+
import wc0aa3df9194784591a5be530314b8ac7f from './ux/aurora/admin/blades/chrome/Chrome';
|
522
523
|
import wcd90e0352809742c482bdda733dc8872a from './ux/aurora/admin/blades/colorschemas/ColorSchemasJourney';
|
523
524
|
import wc8142fa90f0d34258bb080a15aa21ab74 from './ux/aurora/admin/blades/fontsmanager/FontManager';
|
524
525
|
import wc682077b575c74b2086cbf438346e0ed3 from './ux/aurora/admin/blades/templates/TemplatesJourney';
|
@@ -571,6 +572,13 @@ declare global {
|
|
571
572
|
}
|
572
573
|
declare global {
|
573
574
|
let omfx: {
|
575
|
+
"connect": typeof wc1f77fe2582d944ba9521bab47957012d extends {
|
576
|
+
propsDefinition: infer TProp;
|
577
|
+
} ? {
|
578
|
+
new (...args: any[]): {
|
579
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
580
|
+
};
|
581
|
+
} : typeof wc1f77fe2582d944ba9521bab47957012d;
|
574
582
|
"omnia": {
|
575
583
|
"console": typeof wcf3d75940db51447dbf6719251f5465b0 extends {
|
576
584
|
propsDefinition: infer TProp;
|
@@ -1405,13 +1413,6 @@ declare global {
|
|
1405
1413
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1406
1414
|
};
|
1407
1415
|
} : typeof wc64887c3414da45279ea9c905df12c48f;
|
1408
|
-
"html": typeof wce5a52491260143c8bf9855268a6acbab extends {
|
1409
|
-
propsDefinition: infer TProp;
|
1410
|
-
} ? {
|
1411
|
-
new (...args: any[]): {
|
1412
|
-
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1413
|
-
};
|
1414
|
-
} : typeof wce5a52491260143c8bf9855268a6acbab;
|
1415
1416
|
"icon": {
|
1416
1417
|
"picker": typeof wc7c3b9838bf844a53a446d3795494b304 extends {
|
1417
1418
|
propsDefinition: infer TProp;
|
@@ -4813,6 +4814,17 @@ declare global {
|
|
4813
4814
|
};
|
4814
4815
|
} : typeof wc9fbf91affc974ca698437e8ada43bb0c;
|
4815
4816
|
};
|
4817
|
+
"chrome": {
|
4818
|
+
"editor": {
|
4819
|
+
"blade": typeof wc0aa3df9194784591a5be530314b8ac7f extends {
|
4820
|
+
propsDefinition: infer TProp;
|
4821
|
+
} ? {
|
4822
|
+
new (...args: any[]): {
|
4823
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
4824
|
+
};
|
4825
|
+
} : typeof wc0aa3df9194784591a5be530314b8ac7f;
|
4826
|
+
};
|
4827
|
+
};
|
4816
4828
|
"themes": {
|
4817
4829
|
"journey": typeof wcbed95d1ec67f4a15986fc72adebdb78f extends {
|
4818
4830
|
propsDefinition: infer TProp;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.366-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": "Omnia Digital Workplace AB",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.366-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
@@ -1,6 +0,0 @@
|
|
1
|
-
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Record<string, any>> & {} & {
|
2
|
-
"v-slots"?: {} & Omit<{
|
3
|
-
default?: import("vue").Slot;
|
4
|
-
}, never>;
|
5
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string> & import("@omnia/fx/ux").VNodeEvents) => any;
|
6
|
-
export default _default;
|
File without changes
|