@omnia/fx 8.0.538-dev → 8.0.540-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/aurora/components/textstylepicker/TextStylePicker.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/store/TextStylePickerStore.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/aurora/store/TextStyleConfigurationStore.d.ts +8 -3
- package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Typography.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/editorchrome/EditorChrome.css.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/editorchrome/buttons/ToolbarButton.css.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/editorchrome/define/DefineChromeAction.d.ts +36 -0
- package/internal-do-not-import-from-here/ux/editorchrome/define/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/editorchrome/renderers/ChromeActionItemRenderer.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/editorchrome/toolbars/Toolbar.css.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutrenderinghooks/LayoutBlock.css.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutrenderinghooks/LayoutSection.css.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutColumnRenderer.css.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.css.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/richtexteditorrenderer/RichTextEditorRenderer.css.d.ts +44 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +8 -0
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextStyle/TextStyleToolbar.css.d.ts +0 -3
@@ -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":"9a97c476-5a09-4522-b16d-db752dc06c7e","buildMeta":{"exportsType":"namespace"},"expo.js":["defineEditorChromeConfiguration","defineEditorChromeView","defineJourneyMenuSettings","defineLayoutEditorCanvas","useBlockJourneyMenuSettings","useEditorChromeConfigurationHelper","useJourneyMenuSettingsStore"]}}}
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['e0d8cdbf-5683-4f1b-883b-da203e8193a4']","content":{"./node_modules/@omnia/fx/ux/editor/index.js":{"id":"9a97c476-5a09-4522-b16d-db752dc06c7e","buildMeta":{"exportsType":"namespace"},"expo.js":["defineChromeAction","defineEditorChromeConfiguration","defineEditorChromeView","defineJourneyMenuSettings","defineLayoutEditorCanvas","useBlockJourneyMenuSettings","useEditorChromeConfigurationHelper","useJourneyMenuSettingsStore"]}}}
|
package/internal-do-not-import-from-here/ux/aurora/components/textstylepicker/TextStylePicker.d.ts
CHANGED
@@ -24,6 +24,10 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
24
24
|
breakpoint?: TextStyleBreakpointType;
|
25
25
|
} & {
|
26
26
|
showSlots?: boolean;
|
27
|
+
} & {
|
28
|
+
clearable?: boolean;
|
29
|
+
} & {
|
30
|
+
ignoreStylingInSelection?: boolean;
|
27
31
|
} & {
|
28
32
|
toned?: boolean;
|
29
33
|
} & {
|
@@ -43,5 +47,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
43
47
|
default?: import("vue").Slot;
|
44
48
|
$stable?: boolean;
|
45
49
|
}, "activator">;
|
46
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "variant" | "toned" | "v-model" | "modelValue" | "emit:update:modelValue" | "placeholder" | "slot:activator" | "customTyping" | "viewType" | "previewType" | "textBlueprint" | "typographyBlueprint" | "breakpoint" | "showSlots" | "sampleText"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
50
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "variant" | "toned" | "v-model" | "modelValue" | "emit:update:modelValue" | "placeholder" | "slot:activator" | "customTyping" | "viewType" | "previewType" | "textBlueprint" | "typographyBlueprint" | "breakpoint" | "showSlots" | "clearable" | "ignoreStylingInSelection" | "sampleText"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
47
51
|
export default _default;
|
@@ -1,4 +1,6 @@
|
|
1
1
|
import { ThemedTextStyleValue, TextStyleValue, TypographyBlueprint, TextStyleBreakpointType, TextStyleConfiguration } from "@omnia/fx-models";
|
2
|
+
import { usePickerStore } from "internal/fx/ux/oxide/picker/stores/PickerStore";
|
3
|
+
import { PickerVariant } from "internal/fx/ux/oxide/picker/models/SharedSettings";
|
2
4
|
export type ViewTypes = "type-scale" | "system-styles" | "custom-styles" | "system-styles custom-styles" | "default";
|
3
5
|
/**Default will us the tenant styles */
|
4
6
|
export declare const useTextStylePickerStore: () => {
|
@@ -9,8 +11,12 @@ export declare const useTextStylePickerStore: () => {
|
|
9
11
|
typographyBlueprint: TypographyBlueprint;
|
10
12
|
breakPoint: TextStyleBreakpointType;
|
11
13
|
configurations: TextStyleConfiguration[];
|
14
|
+
settings: {
|
15
|
+
variant: PickerVariant;
|
16
|
+
};
|
12
17
|
};
|
13
18
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
19
|
+
setPickerStore(store: ReturnType<typeof usePickerStore>): void;
|
14
20
|
clear: () => void;
|
15
21
|
setScaleValue(value: number): void;
|
16
22
|
select: (value: TextStyleValue | TextStyleConfiguration) => void;
|
@@ -20,7 +26,7 @@ export declare const useTextStylePickerStore: () => {
|
|
20
26
|
readonly iconSize: number;
|
21
27
|
readonly textStyle: TextStyleValue;
|
22
28
|
fontSize: (textStyle: TextStyleValue | number) => any;
|
23
|
-
displayText: (textStyle:
|
29
|
+
displayText: (textStyle: TextStyleValue | TextStyleConfiguration | number) => any;
|
24
30
|
displayIcon: (textStyle: ThemedTextStyleValue) => import("@omnia/fx-models").FontAwesomeIcon;
|
25
31
|
};
|
26
32
|
rules: {
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { guid, HeadingConfiguration, TextStyleConfiguration } from "@omnia/fx-models";
|
2
|
+
import { NestedCSSProperties } from "typestyle/lib/types";
|
2
3
|
export interface TextStyleSettings {
|
3
4
|
headings: Array<HeadingConfiguration>; /**Old depricated stuff... */
|
4
5
|
textStyles: Array<TextStyleConfiguration>;
|
@@ -16,17 +17,21 @@ export declare const useTextStyleConfigurationStore: () => {
|
|
16
17
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
17
18
|
init(): Promise<void>;
|
18
19
|
save: (configurations: Array<TextStyleConfiguration>) => Promise<boolean>;
|
20
|
+
createNew: () => TextStyleConfiguration;
|
19
21
|
}>;
|
20
22
|
get: {
|
21
23
|
configurations: {
|
22
24
|
readonly active: TextStyleConfiguration[];
|
23
25
|
readonly disabled: TextStyleConfiguration[];
|
24
26
|
readonly default: TextStyleConfiguration;
|
27
|
+
byId: (id: guid) => TextStyleConfiguration;
|
25
28
|
};
|
26
29
|
textStyling: {
|
27
|
-
byId: (id: guid) =>
|
28
|
-
byConfiguration: (configuration: TextStyleConfiguration) =>
|
29
|
-
default: () =>
|
30
|
+
byId: (id: guid) => any;
|
31
|
+
byConfiguration: (configuration: TextStyleConfiguration) => any;
|
32
|
+
default: () => any;
|
33
|
+
object: (id: guid) => any;
|
34
|
+
toSelector: (id: guid, selector: string) => NestedCSSProperties;
|
30
35
|
};
|
31
36
|
};
|
32
37
|
deactivated(): void;
|
@@ -58,6 +58,23 @@ export declare function useThemeStyling(): {
|
|
58
58
|
queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
|
59
59
|
queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
|
60
60
|
};
|
61
|
+
typeStylingObject: (value: import("@omnia/fx-models").TextStyleValue, blueprint: import("@omnia/fx-models").TypographyBlueprint) => {
|
62
|
+
baseStyles: {
|
63
|
+
fontFamily: string;
|
64
|
+
fontSize: string;
|
65
|
+
fontWeight: number;
|
66
|
+
lineHeight: string;
|
67
|
+
fontStyle: string;
|
68
|
+
textTransform: any;
|
69
|
+
letterSpacing: string;
|
70
|
+
textDecoration: string;
|
71
|
+
$nest: {};
|
72
|
+
};
|
73
|
+
mediumStyles: any;
|
74
|
+
smallStyles: any;
|
75
|
+
queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
|
76
|
+
queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
|
77
|
+
};
|
61
78
|
};
|
62
79
|
spacing: {
|
63
80
|
paddingStylex: (value: Spacing | SpacingValue, blueprint?: ReturnType<typeof useSpacingBlueprintStore>) => import("../..").StylexValue;
|
@@ -54,6 +54,7 @@ export declare const typographyStyles: {
|
|
54
54
|
typographyTypeStyling: typeof typographyTypeStyling;
|
55
55
|
typographyStyling: typeof typographyStyling;
|
56
56
|
typographyStylingFromValue: typeof typographyStylingByValue;
|
57
|
+
typographyStylingObjectFromValue: typeof typographyStylingObjectByValue;
|
57
58
|
};
|
58
59
|
export interface TypographyTypesResult {
|
59
60
|
display: {
|
@@ -105,6 +106,23 @@ export interface TypographyTypesResult {
|
|
105
106
|
typographyType: (typographyType: string) => string;
|
106
107
|
}
|
107
108
|
declare function typographyStylingByValue(value: TextStyleValue, blueprint: TypographyBlueprint): string;
|
109
|
+
declare function typographyStylingObjectByValue(value: TextStyleValue, blueprint: TypographyBlueprint): {
|
110
|
+
baseStyles: {
|
111
|
+
fontFamily: string;
|
112
|
+
fontSize: string;
|
113
|
+
fontWeight: number;
|
114
|
+
lineHeight: string;
|
115
|
+
fontStyle: string;
|
116
|
+
textTransform: any;
|
117
|
+
letterSpacing: string;
|
118
|
+
textDecoration: string;
|
119
|
+
$nest: {};
|
120
|
+
};
|
121
|
+
mediumStyles: any;
|
122
|
+
smallStyles: any;
|
123
|
+
queryOnSmallScreen: MediaQuery;
|
124
|
+
queryOnMediumScreen: MediaQuery;
|
125
|
+
};
|
108
126
|
declare function typographyTypeStyling(typographyType: TextStyleTypes | TextStyleType, size: TextStyleSize | TextStyleSizes, blueprint: TypographyBlueprint): {
|
109
127
|
baseStyles: {
|
110
128
|
fontFamily: string;
|
@@ -50,6 +50,23 @@ export declare const EditorChromeStyles: {
|
|
50
50
|
queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
|
51
51
|
queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
|
52
52
|
};
|
53
|
+
typeStylingObject: (value: import("@omnia/fx-models").TextStyleValue, blueprint: import("@omnia/fx-models").TypographyBlueprint) => {
|
54
|
+
baseStyles: {
|
55
|
+
fontFamily: string;
|
56
|
+
fontSize: string;
|
57
|
+
fontWeight: number;
|
58
|
+
lineHeight: string;
|
59
|
+
fontStyle: string;
|
60
|
+
textTransform: any;
|
61
|
+
letterSpacing: string;
|
62
|
+
textDecoration: string;
|
63
|
+
$nest: {};
|
64
|
+
};
|
65
|
+
mediumStyles: any;
|
66
|
+
smallStyles: any;
|
67
|
+
queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
|
68
|
+
queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
|
69
|
+
};
|
53
70
|
};
|
54
71
|
spacing: {
|
55
72
|
paddingStylex: (value: import("@omnia/fx-models").Spacing | import("@omnia/fx-models").SpacingValue, blueprint?: ReturnType<typeof import("../").useSpacingBlueprintStore>) => import("../").StylexValue;
|
@@ -49,6 +49,23 @@ export declare const ToolbarButtonStyles: {
|
|
49
49
|
queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
|
50
50
|
queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
|
51
51
|
};
|
52
|
+
typeStylingObject: (value: import("@omnia/fx-models").TextStyleValue, blueprint: import("@omnia/fx-models").TypographyBlueprint) => {
|
53
|
+
baseStyles: {
|
54
|
+
fontFamily: string;
|
55
|
+
fontSize: string;
|
56
|
+
fontWeight: number;
|
57
|
+
lineHeight: string;
|
58
|
+
fontStyle: string;
|
59
|
+
textTransform: any;
|
60
|
+
letterSpacing: string;
|
61
|
+
textDecoration: string;
|
62
|
+
$nest: {};
|
63
|
+
};
|
64
|
+
mediumStyles: any;
|
65
|
+
smallStyles: any;
|
66
|
+
queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
|
67
|
+
queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
|
68
|
+
};
|
52
69
|
};
|
53
70
|
spacing: {
|
54
71
|
paddingStylex: (value: import("@omnia/fx-models").Spacing | import("@omnia/fx-models").SpacingValue, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => import("@omnia/fx/ux").StylexValue;
|
@@ -0,0 +1,36 @@
|
|
1
|
+
import { SetupFactoryContext } from "@omnia/fx";
|
2
|
+
import { guid, IIcon, InstanceLifetimes } from "@omnia/fx-models";
|
3
|
+
import { type ConfirmDialogOptions } from "../../confirmdialog";
|
4
|
+
import { VNodeChild } from "vue";
|
5
|
+
export interface SetupChromeActionontext extends SetupFactoryContext {
|
6
|
+
defineAction(action: ChromeActionOptions): ChromeActionInstance;
|
7
|
+
}
|
8
|
+
export type ChromeActionOptions = {
|
9
|
+
id?: guid;
|
10
|
+
active?: boolean;
|
11
|
+
disableToggle?: boolean;
|
12
|
+
disabled?: boolean;
|
13
|
+
hidden?: boolean;
|
14
|
+
compactMode?: {
|
15
|
+
showText?: boolean;
|
16
|
+
hide?: boolean;
|
17
|
+
};
|
18
|
+
confirmation?: ConfirmDialogOptions;
|
19
|
+
requiredRoles?: guid[];
|
20
|
+
excludedRoles?: guid[];
|
21
|
+
title?: string | (() => string);
|
22
|
+
toolTip?: string | (() => string);
|
23
|
+
description?: string;
|
24
|
+
loading?: boolean | (() => boolean);
|
25
|
+
icon?: IIcon;
|
26
|
+
clickHandler?: (e: MouseEvent, store: any) => void | Promise<void>;
|
27
|
+
activator?: (activatorRenderer: VNodeChild) => VNodeChild;
|
28
|
+
};
|
29
|
+
export type ChromeActionInstance = ChromeActionOptions & {
|
30
|
+
id: guid;
|
31
|
+
};
|
32
|
+
export declare function defineChromeAction(setup: (ctx: SetupChromeActionontext) => ChromeActionInstance, lifetime?: InstanceLifetimes): () => ChromeActionOptions & {
|
33
|
+
id: guid;
|
34
|
+
} & {
|
35
|
+
dispose?: () => void;
|
36
|
+
};
|
package/internal-do-not-import-from-here/ux/editorchrome/renderers/ChromeActionItemRenderer.d.ts
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
import { ChromeActionItem } from "@omnia/fx-models";
|
2
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
5
|
+
action: ChromeActionItem;
|
6
|
+
} & DefineSlot<"renderer", (action: ChromeActionItem) => VNodeChild>> & {} & {
|
7
|
+
"v-slots"?: {
|
8
|
+
renderer?: (action: ChromeActionItem) => VNodeChild;
|
9
|
+
} & Omit<{
|
10
|
+
default?: import("vue").Slot;
|
11
|
+
$stable?: boolean;
|
12
|
+
}, "renderer">;
|
13
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "slot:renderer" | "action"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
14
|
+
export default _default;
|
@@ -49,6 +49,23 @@ export declare const ToolbarStyles: {
|
|
49
49
|
queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
|
50
50
|
queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
|
51
51
|
};
|
52
|
+
typeStylingObject: (value: import("@omnia/fx-models").TextStyleValue, blueprint: import("@omnia/fx-models").TypographyBlueprint) => {
|
53
|
+
baseStyles: {
|
54
|
+
fontFamily: string;
|
55
|
+
fontSize: string;
|
56
|
+
fontWeight: number;
|
57
|
+
lineHeight: string;
|
58
|
+
fontStyle: string;
|
59
|
+
textTransform: any;
|
60
|
+
letterSpacing: string;
|
61
|
+
textDecoration: string;
|
62
|
+
$nest: {};
|
63
|
+
};
|
64
|
+
mediumStyles: any;
|
65
|
+
smallStyles: any;
|
66
|
+
queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
|
67
|
+
queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
|
68
|
+
};
|
52
69
|
};
|
53
70
|
spacing: {
|
54
71
|
paddingStylex: (value: import("@omnia/fx-models").Spacing | import("@omnia/fx-models").SpacingValue, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => import("@omnia/fx/ux").StylexValue;
|
@@ -51,6 +51,23 @@ export declare const LayoutBlockStyles: {
|
|
51
51
|
queryOnSmallScreen: MediaQuery;
|
52
52
|
queryOnMediumScreen: MediaQuery;
|
53
53
|
};
|
54
|
+
typeStylingObject: (value: import("@omnia/fx-models").TextStyleValue, blueprint: import("@omnia/fx-models").TypographyBlueprint) => {
|
55
|
+
baseStyles: {
|
56
|
+
fontFamily: string;
|
57
|
+
fontSize: string;
|
58
|
+
fontWeight: number;
|
59
|
+
lineHeight: string;
|
60
|
+
fontStyle: string;
|
61
|
+
textTransform: any;
|
62
|
+
letterSpacing: string;
|
63
|
+
textDecoration: string;
|
64
|
+
$nest: {};
|
65
|
+
};
|
66
|
+
mediumStyles: any;
|
67
|
+
smallStyles: any;
|
68
|
+
queryOnSmallScreen: MediaQuery;
|
69
|
+
queryOnMediumScreen: MediaQuery;
|
70
|
+
};
|
54
71
|
};
|
55
72
|
spacing: {
|
56
73
|
paddingStylex: (value: import("@omnia/fx-models").Spacing | import("@omnia/fx-models").SpacingValue, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => import("@omnia/fx/ux").StylexValue;
|
@@ -51,6 +51,23 @@ export declare const LayoutSectionStyles: {
|
|
51
51
|
queryOnSmallScreen: MediaQuery;
|
52
52
|
queryOnMediumScreen: MediaQuery;
|
53
53
|
};
|
54
|
+
typeStylingObject: (value: import("@omnia/fx-models").TextStyleValue, blueprint: import("@omnia/fx-models").TypographyBlueprint) => {
|
55
|
+
baseStyles: {
|
56
|
+
fontFamily: string;
|
57
|
+
fontSize: string;
|
58
|
+
fontWeight: number;
|
59
|
+
lineHeight: string;
|
60
|
+
fontStyle: string;
|
61
|
+
textTransform: any;
|
62
|
+
letterSpacing: string;
|
63
|
+
textDecoration: string;
|
64
|
+
$nest: {};
|
65
|
+
};
|
66
|
+
mediumStyles: any;
|
67
|
+
smallStyles: any;
|
68
|
+
queryOnSmallScreen: MediaQuery;
|
69
|
+
queryOnMediumScreen: MediaQuery;
|
70
|
+
};
|
54
71
|
};
|
55
72
|
spacing: {
|
56
73
|
paddingStylex: (value: import("@omnia/fx-models").Spacing | import("@omnia/fx-models").SpacingValue, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => import("@omnia/fx/ux").StylexValue;
|
@@ -50,6 +50,23 @@ export declare const LayoutColumnRendererStyles: {
|
|
50
50
|
queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
|
51
51
|
queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
|
52
52
|
};
|
53
|
+
typeStylingObject: (value: import("@omnia/fx-models").TextStyleValue, blueprint: import("@omnia/fx-models").TypographyBlueprint) => {
|
54
|
+
baseStyles: {
|
55
|
+
fontFamily: string;
|
56
|
+
fontSize: string;
|
57
|
+
fontWeight: number;
|
58
|
+
lineHeight: string;
|
59
|
+
fontStyle: string;
|
60
|
+
textTransform: any;
|
61
|
+
letterSpacing: string;
|
62
|
+
textDecoration: string;
|
63
|
+
$nest: {};
|
64
|
+
};
|
65
|
+
mediumStyles: any;
|
66
|
+
smallStyles: any;
|
67
|
+
queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
|
68
|
+
queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
|
69
|
+
};
|
53
70
|
};
|
54
71
|
spacing: {
|
55
72
|
paddingStylex: (value: import("@omnia/fx-models").Spacing | import("@omnia/fx-models").SpacingValue, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => import("@omnia/fx/ux").StylexValue;
|
@@ -20,5 +20,5 @@ declare const _default: <TItem extends readonly any[], TReturnObject extends boo
|
|
20
20
|
default?: import("vue").Slot;
|
21
21
|
$stable?: boolean;
|
22
22
|
}, keyof (OSelectProps<TItem, TReturnObject> extends infer T_4 ? { [K_3 in keyof T_4 as K_3 extends `slot:${infer N_1}` ? N_1 : never]: OSelectProps<TItem, TReturnObject>[K_3]; } : never)>;
|
23
|
-
} & (OSelectProps<TItem, TReturnObject> extends infer T_5 ? { [K_4 in keyof T_5 as K_4 extends "ref" ? "ref" : never]: import("vue").Ref<OSelectProps<TItem, TReturnObject>[K_4], OSelectProps<TItem, TReturnObject>[K_4]> | ((ref: OSelectProps<TItem, TReturnObject>[K_4]) => void); } : never) & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "blueprint" | "maxHeight" | "label" | "error" | "colorSchemaType" | "variant" | "class" | "multiple" | "disabled" | "rules" | "colors" | "toned" | "v-model" | "modelValue" | "emit:update:modelValue" | "placeholder" | "items" | "itemHeight" | "loading" | "readonly" | "errorMessages" | "hideDetails" | "hint" | "persistentHint" | "itemValue" | "searchable" | "hideSelected" | "
|
23
|
+
} & (OSelectProps<TItem, TReturnObject> extends infer T_5 ? { [K_4 in keyof T_5 as K_4 extends "ref" ? "ref" : never]: import("vue").Ref<OSelectProps<TItem, TReturnObject>[K_4], OSelectProps<TItem, TReturnObject>[K_4]> | ((ref: OSelectProps<TItem, TReturnObject>[K_4]) => void); } : never) & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "blueprint" | "maxHeight" | "label" | "error" | "colorSchemaType" | "variant" | "class" | "multiple" | "disabled" | "rules" | "colors" | "toned" | "v-model" | "modelValue" | "emit:update:modelValue" | "placeholder" | "items" | "itemHeight" | "loading" | "readonly" | "errorMessages" | "hideDetails" | "hint" | "persistentHint" | "itemValue" | "searchable" | "hideSelected" | "clearable" | "itemTitle" | "returnObject" | "chips" | "hideNoData" | "menuIcon" | "multiSelectionStyle" | "emit:click:button" | "emit:update:search" | "emit:update:focused" | "slot:append-item" | "slot:prepend-inner" | "slot:append-inner" | "itemDeletable" | keyof (TReturnObject extends true ? SlotsWithReturnObject<TItem> : SlotsWithoutReturnObject)> & import("@omnia/fx/ux").VNodeEvents) => any;
|
24
24
|
export default _default;
|
@@ -1,2 +1,49 @@
|
|
1
1
|
import "prosemirror-view/style/prosemirror.css";
|
2
2
|
import "prosemirror-gapcursor/style/gapcursor.css";
|
3
|
+
/**
|
4
|
+
* Styles for the RichTextEditor component
|
5
|
+
*/
|
6
|
+
export declare const TextStyling: {
|
7
|
+
textStyleStore: {
|
8
|
+
state: {
|
9
|
+
configurations: import("@omnia/fx-models").TextStyleConfiguration[];
|
10
|
+
hasMigrations: boolean;
|
11
|
+
};
|
12
|
+
events: import("../mobile").StoreEvents<{
|
13
|
+
configurations: import("@omnia/fx-models").TextStyleConfiguration[];
|
14
|
+
hasMigrations: boolean;
|
15
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
16
|
+
rules: {};
|
17
|
+
actions: import("../mobile").StoreReturnDefineAction<{
|
18
|
+
init(): Promise<void>;
|
19
|
+
save: (configurations: Array<import("@omnia/fx-models").TextStyleConfiguration>) => Promise<boolean>;
|
20
|
+
createNew: () => import("@omnia/fx-models").TextStyleConfiguration;
|
21
|
+
}>;
|
22
|
+
get: {
|
23
|
+
configurations: {
|
24
|
+
readonly active: import("@omnia/fx-models").TextStyleConfiguration[];
|
25
|
+
readonly disabled: import("@omnia/fx-models").TextStyleConfiguration[];
|
26
|
+
readonly default: import("@omnia/fx-models").TextStyleConfiguration;
|
27
|
+
byId: (id: import("@omnia/fx-models").guid) => import("@omnia/fx-models").TextStyleConfiguration;
|
28
|
+
};
|
29
|
+
textStyling: {
|
30
|
+
byId: (id: import("@omnia/fx-models").guid) => any;
|
31
|
+
byConfiguration: (configuration: import("@omnia/fx-models").TextStyleConfiguration) => any;
|
32
|
+
default: () => any;
|
33
|
+
object: (id: import("@omnia/fx-models").guid) => any;
|
34
|
+
toSelector: (id: import("@omnia/fx-models").guid, selector: string) => import("typestyle/lib/types").NestedCSSProperties;
|
35
|
+
};
|
36
|
+
};
|
37
|
+
deactivated(): void;
|
38
|
+
} & {
|
39
|
+
dispose?: () => void;
|
40
|
+
};
|
41
|
+
containerQueries: {
|
42
|
+
breakPoint: (styles: import("typestyle/lib/types").NestedCSSProperties, breakPoint: {
|
43
|
+
maxWidth?: number;
|
44
|
+
minWidth?: number;
|
45
|
+
}, name?: import("@omnia/fx-models").ContainerBreakpointTypes) => {};
|
46
|
+
device: (styles: import("typestyle/lib/types").NestedCSSProperties, breakpoint: import("@omnia/fx-models").DisplayBreakpointTypes) => {};
|
47
|
+
};
|
48
|
+
default: () => string;
|
49
|
+
};
|
package/internal-do-not-import-from-here/ux/richtexteditorrenderer/RichTextEditorRenderer.css.d.ts
CHANGED
@@ -1 +1,44 @@
|
|
1
|
-
export {
|
1
|
+
export declare const TextStyling: {
|
2
|
+
textStyleStore: {
|
3
|
+
state: {
|
4
|
+
configurations: import("@omnia/fx-models").TextStyleConfiguration[];
|
5
|
+
hasMigrations: boolean;
|
6
|
+
};
|
7
|
+
events: import("../mobile").StoreEvents<{
|
8
|
+
configurations: import("@omnia/fx-models").TextStyleConfiguration[];
|
9
|
+
hasMigrations: boolean;
|
10
|
+
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
11
|
+
rules: {};
|
12
|
+
actions: import("../mobile").StoreReturnDefineAction<{
|
13
|
+
init(): Promise<void>;
|
14
|
+
save: (configurations: Array<import("@omnia/fx-models").TextStyleConfiguration>) => Promise<boolean>;
|
15
|
+
createNew: () => import("@omnia/fx-models").TextStyleConfiguration;
|
16
|
+
}>;
|
17
|
+
get: {
|
18
|
+
configurations: {
|
19
|
+
readonly active: import("@omnia/fx-models").TextStyleConfiguration[];
|
20
|
+
readonly disabled: import("@omnia/fx-models").TextStyleConfiguration[];
|
21
|
+
readonly default: import("@omnia/fx-models").TextStyleConfiguration;
|
22
|
+
byId: (id: import("@omnia/fx-models").guid) => import("@omnia/fx-models").TextStyleConfiguration;
|
23
|
+
};
|
24
|
+
textStyling: {
|
25
|
+
byId: (id: import("@omnia/fx-models").guid) => any;
|
26
|
+
byConfiguration: (configuration: import("@omnia/fx-models").TextStyleConfiguration) => any;
|
27
|
+
default: () => any;
|
28
|
+
object: (id: import("@omnia/fx-models").guid) => any;
|
29
|
+
toSelector: (id: import("@omnia/fx-models").guid, selector: string) => import("typestyle/lib/types").NestedCSSProperties;
|
30
|
+
};
|
31
|
+
};
|
32
|
+
deactivated(): void;
|
33
|
+
} & {
|
34
|
+
dispose?: () => void;
|
35
|
+
};
|
36
|
+
containerQueries: {
|
37
|
+
breakPoint: (styles: import("typestyle/lib/types").NestedCSSProperties, breakPoint: {
|
38
|
+
maxWidth?: number;
|
39
|
+
minWidth?: number;
|
40
|
+
}, name?: import("@omnia/fx-models").ContainerBreakpointTypes) => {};
|
41
|
+
device: (styles: import("typestyle/lib/types").NestedCSSProperties, breakpoint: import("@omnia/fx-models").DisplayBreakpointTypes) => {};
|
42
|
+
};
|
43
|
+
default: () => string;
|
44
|
+
};
|
@@ -23,6 +23,7 @@ import wc60feadd89e4d4c2eb095cee9f104ee96 from './ux/dynamicplaceholder/DynamicP
|
|
23
23
|
import wcac8a9be60cfb47f288f602ececa6687f from './ux/dynamicplaceholder/DynamicPlaceholderSettings';
|
24
24
|
import wc710dc11b823c4a80b2a031395c206325 from './ux/editorchrome/EditorChrome_old';
|
25
25
|
import wc0e9f4c84ccb64abc958671f40207f4dc from './ux/editorchrome/EditorChrome';
|
26
|
+
import wca9dc29070baf4880b2d66554dcc84ba2 from './ux/editorchrome/renderers/ChromeActionItemRenderer';
|
26
27
|
import wc41a6d1b1b02e4b368aac19ded6b391a1 from './ux/enterpriseglossary/EnterpriseGlossaryPicker';
|
27
28
|
import wc0619d10d541645aaabbdc17d5b867501 from './ux/enterprisepropertysets/Picker';
|
28
29
|
import wc82e8cb4daeee4ea6a50c727b93bbbac3 from './ux/errormessage/ErrorMessage';
|
@@ -1063,6 +1064,13 @@ declare global {
|
|
1063
1064
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1064
1065
|
};
|
1065
1066
|
} : typeof wc0e9f4c84ccb64abc958671f40207f4dc;
|
1067
|
+
"action": typeof wca9dc29070baf4880b2d66554dcc84ba2 extends {
|
1068
|
+
propsDefinition: infer TProp;
|
1069
|
+
} ? {
|
1070
|
+
new (...args: any[]): {
|
1071
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1072
|
+
};
|
1073
|
+
} : typeof wca9dc29070baf4880b2d66554dcc84ba2;
|
1066
1074
|
};
|
1067
1075
|
"canvas": {
|
1068
1076
|
"block": {
|
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.540-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.540-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|