@omnia/fx 8.0.455-dev → 8.0.457-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/componentblueprints/store/ComponentEditorStore.d.ts +5 -8
- package/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/componentblueprints/store/HeaderEditorStore.d.ts +5 -4
- package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/store/ButtonStyleEditorStore.d.ts +1 -8
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderPicker.d.ts +13 -10
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderPicker_old.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderStyleEditor.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/store/HeaderPickerStore.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/store/HeaderStyleEditorStore.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/aurora/components/input/InputBlueprintViewer.d.ts +23 -0
- package/internal-do-not-import-from-here/ux/aurora/components/input/InputStylePicker.d.ts +10 -6
- package/internal-do-not-import-from-here/ux/aurora/components/input/store/InputStylePickerStore.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/aurora/components/tabs/store/TabStyleEditorStore.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/aurora/shared-mobile/ThemeProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/shared-mobile/stylex/Typings.d.ts +513 -513
- package/internal-do-not-import-from-here/ux/shared-mobile/stylex/index.d.ts +67 -65
- package/internal-do-not-import-from-here/wctypings.d.ts +14 -4
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/input/InputBlueprintsViewer.d.ts +0 -26
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ComponentBlueprints, guid, ITemplateRegistration, FontAwesomeIcon, BlueprintsStrategyBase } from "@omnia/fx-models";
|
2
|
-
export declare const BluprintTypes: readonly ["buttons", "icons", "tabs", "
|
2
|
+
export declare const BluprintTypes: readonly ["buttons", "icons", "tabs", "inputs", "headers"];
|
3
3
|
export type BlueprintType = typeof BluprintTypes[number];
|
4
4
|
export interface IBlueprintItem {
|
5
5
|
title: string;
|
@@ -114,22 +114,23 @@ export declare const useComponentsEditorStore: () => {
|
|
114
114
|
headerEditorStore: {
|
115
115
|
state: {
|
116
116
|
blueprints: import("@omnia/fx-models").HeaderBlueprints;
|
117
|
-
|
117
|
+
editingBlueprint: import("@omnia/fx-models").HeaderBlueprint;
|
118
118
|
editingVariant: import("@omnia/fx-models").BlueprintVariant;
|
119
119
|
editingDefinition: import("@omnia/fx-models").VelcronAppDefinition;
|
120
|
+
strategy: BlueprintsStrategyBase;
|
120
121
|
};
|
121
122
|
events: import("@omnia/fx/stores").StoreEvents<{
|
122
123
|
blueprints: import("@omnia/fx-models").HeaderBlueprints;
|
123
|
-
|
124
|
+
editingBlueprint: import("@omnia/fx-models").HeaderBlueprint;
|
124
125
|
editingVariant: import("@omnia/fx-models").BlueprintVariant;
|
125
126
|
editingDefinition: import("@omnia/fx-models").VelcronAppDefinition;
|
127
|
+
strategy: BlueprintsStrategyBase;
|
126
128
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
127
129
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
128
130
|
setEditingBlueprint(variant: import("@omnia/fx-models").BlueprintVariant): void;
|
129
131
|
deleteEditingVariant(): void;
|
130
132
|
setEditingBlueprints(blueprints: ComponentBlueprints): void;
|
131
133
|
addVariant(): string;
|
132
|
-
loadEditingVelcronDefinition(): void;
|
133
134
|
applyChanges(): void;
|
134
135
|
}>;
|
135
136
|
} & {
|
@@ -170,10 +171,6 @@ export declare const useComponentsEditorStore: () => {
|
|
170
171
|
tabBlade: guid;
|
171
172
|
tabBladeEdit: guid;
|
172
173
|
componentsBlade: guid;
|
173
|
-
typographyBlade: guid;
|
174
|
-
spacingBlade: guid;
|
175
|
-
containersBlade: guid;
|
176
|
-
containerEditBlade: guid;
|
177
174
|
headersBlade: guid;
|
178
175
|
headersBladeEdit: guid;
|
179
176
|
inputBlade: guid;
|
@@ -1,23 +1,24 @@
|
|
1
|
-
import { BlueprintVariant, ComponentBlueprints, HeaderBlueprint, HeaderBlueprints, VelcronAppDefinition } from "@omnia/fx-models";
|
1
|
+
import { BlueprintsStrategyBase, BlueprintVariant, ComponentBlueprints, HeaderBlueprint, HeaderBlueprints, VelcronAppDefinition } from "@omnia/fx-models";
|
2
2
|
export declare const useHeadersEditorStore: () => {
|
3
3
|
state: {
|
4
4
|
blueprints: HeaderBlueprints;
|
5
|
-
|
5
|
+
editingBlueprint: HeaderBlueprint;
|
6
6
|
editingVariant: BlueprintVariant;
|
7
7
|
editingDefinition: VelcronAppDefinition;
|
8
|
+
strategy: BlueprintsStrategyBase;
|
8
9
|
};
|
9
10
|
events: import("@omnia/fx/stores").StoreEvents<{
|
10
11
|
blueprints: HeaderBlueprints;
|
11
|
-
|
12
|
+
editingBlueprint: HeaderBlueprint;
|
12
13
|
editingVariant: BlueprintVariant;
|
13
14
|
editingDefinition: VelcronAppDefinition;
|
15
|
+
strategy: BlueprintsStrategyBase;
|
14
16
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
15
17
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
16
18
|
setEditingBlueprint(variant: BlueprintVariant): void;
|
17
19
|
deleteEditingVariant(): void;
|
18
20
|
setEditingBlueprints(blueprints: ComponentBlueprints): void;
|
19
21
|
addVariant(): string;
|
20
|
-
loadEditingVelcronDefinition(): void;
|
21
22
|
applyChanges(): void;
|
22
23
|
}>;
|
23
24
|
} & {
|
@@ -5,7 +5,6 @@ export declare const useButtonStyleEditorStore: () => {
|
|
5
5
|
textBlueprint: TextBlueprint;
|
6
6
|
upperCase: boolean;
|
7
7
|
defaultColorSchemaType: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
8
|
-
templateOption: string;
|
9
8
|
enableDynamicColor: boolean;
|
10
9
|
velcronTemplate: boolean;
|
11
10
|
settings: {
|
@@ -13,17 +12,11 @@ export declare const useButtonStyleEditorStore: () => {
|
|
13
12
|
};
|
14
13
|
};
|
15
14
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
16
|
-
setTemplateOption: (value: string) => void;
|
17
15
|
updateName: (name: string) => void;
|
18
16
|
initState: (model: ButtonBlueprint | ButtonBlueprintVariant, buttonLabel: string) => void;
|
19
17
|
}>;
|
20
18
|
get: {};
|
21
|
-
datatTypes: {
|
22
|
-
templateOptions: {
|
23
|
-
title: string;
|
24
|
-
value: string;
|
25
|
-
}[];
|
26
|
-
};
|
19
|
+
datatTypes: {};
|
27
20
|
rules: {
|
28
21
|
isAdvanceModeEnabled: () => boolean;
|
29
22
|
showInputField(): string | boolean;
|
package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderPicker.d.ts
CHANGED
@@ -1,22 +1,25 @@
|
|
1
|
-
import {
|
2
|
-
import { HeaderBlueprint } from "@omnia/fx-models";
|
1
|
+
import { BlueprintsStrategyBase, BlueprintVariant, HeaderBlueprint, HeaderBlueprints } from "@omnia/fx-models";
|
3
2
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
4
|
-
"emit:update:modelValue": (value: HeaderBlueprint) => void;
|
3
|
+
"emit:update:modelValue": (value: BlueprintVariant | HeaderBlueprint) => void;
|
5
4
|
} & {
|
6
|
-
"v-model"?: HeaderBlueprint;
|
5
|
+
"v-model"?: BlueprintVariant | HeaderBlueprint;
|
7
6
|
} & {
|
8
|
-
modelValue?: HeaderBlueprint;
|
7
|
+
modelValue?: BlueprintVariant | HeaderBlueprint;
|
9
8
|
} & {
|
10
9
|
label?: string;
|
11
10
|
} & {
|
12
|
-
|
11
|
+
toned?: boolean;
|
13
12
|
} & {
|
14
|
-
|
15
|
-
} &
|
16
|
-
|
13
|
+
blueprints?: HeaderBlueprints;
|
14
|
+
} & {
|
15
|
+
baseStrategy?: BlueprintsStrategyBase;
|
16
|
+
} & {
|
17
|
+
customStyling?: boolean;
|
18
|
+
}> & {
|
19
|
+
"onUpdate:modelValue"?: (value: BlueprintVariant | HeaderBlueprint) => any;
|
17
20
|
} & {
|
18
21
|
"v-slots"?: {} & Omit<{
|
19
22
|
default?: import("vue").Slot;
|
20
23
|
}, never>;
|
21
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "modelValue" | "emit:update:modelValue" | "v-model" | "
|
24
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "modelValue" | "emit:update:modelValue" | "v-model" | "toned" | "blueprints" | "baseStrategy" | "customStyling"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
22
25
|
export default _default;
|
package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderPicker_old.d.ts
ADDED
File without changes
|
package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderRenderer.d.ts
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
import { HeaderBlueprint } from "@omnia/fx-models";
|
1
|
+
import { BlueprintVariant, HeaderBlueprint } from "@omnia/fx-models";
|
2
2
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
|
-
"emit:update:modelValue": (value: HeaderBlueprint) => void;
|
3
|
+
"emit:update:modelValue": (value: BlueprintVariant | HeaderBlueprint) => void;
|
4
4
|
} & {
|
5
|
-
"v-model"?: HeaderBlueprint;
|
5
|
+
"v-model"?: BlueprintVariant | HeaderBlueprint;
|
6
6
|
} & {
|
7
|
-
modelValue?: HeaderBlueprint;
|
7
|
+
modelValue?: BlueprintVariant | HeaderBlueprint;
|
8
8
|
}> & {
|
9
|
-
"onUpdate:modelValue"?: (value: HeaderBlueprint) => any;
|
9
|
+
"onUpdate:modelValue"?: (value: BlueprintVariant | HeaderBlueprint) => any;
|
10
10
|
} & {
|
11
11
|
"v-slots"?: {} & Omit<{
|
12
12
|
default?: import("vue").Slot;
|
package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderStyleEditor.d.ts
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
import { HeaderBlueprint } 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
|
+
"emit:update:modelValue": (value: HeaderBlueprint) => void;
|
6
|
+
} & {
|
7
|
+
"v-model"?: HeaderBlueprint;
|
8
|
+
} & {
|
9
|
+
modelValue?: HeaderBlueprint;
|
10
|
+
} & {
|
11
|
+
headerLabel?: string;
|
12
|
+
} & {
|
13
|
+
toned?: boolean;
|
14
|
+
} & {
|
15
|
+
toolbarCallback?: (value: () => VNodeChild) => void;
|
16
|
+
} & DefineSlot<"activator", () => VNodeChild> & DefineSlot<"definitionButton", () => VNodeChild>> & {
|
17
|
+
"onUpdate:modelValue"?: (value: HeaderBlueprint) => any;
|
18
|
+
} & {
|
19
|
+
"v-slots"?: {
|
20
|
+
activator?: () => VNodeChild;
|
21
|
+
definitionButton?: () => VNodeChild;
|
22
|
+
} & Omit<{
|
23
|
+
default?: import("vue").Slot;
|
24
|
+
}, "activator" | "definitionButton">;
|
25
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "modelValue" | "emit:update:modelValue" | "v-model" | "toned" | "slot:activator" | "toolbarCallback" | "slot:definitionButton" | "headerLabel"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
26
|
+
export default _default;
|
@@ -0,0 +1,32 @@
|
|
1
|
+
import { BlueprintsStrategyBase, BlueprintVariant, HeaderBlueprint, HeaderBlueprints } from "@omnia/fx-models";
|
2
|
+
export interface ButtonType {
|
3
|
+
id: string;
|
4
|
+
title: string;
|
5
|
+
}
|
6
|
+
export declare const useHeaderPickerStore: () => {
|
7
|
+
state: {
|
8
|
+
showSelectionMenu: boolean;
|
9
|
+
internalModel: BlueprintVariant | HeaderBlueprint;
|
10
|
+
blueprints: HeaderBlueprints;
|
11
|
+
baseStrategy: BlueprintsStrategyBase;
|
12
|
+
};
|
13
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
14
|
+
selectItem(value: HeaderBlueprint | BlueprintVariant): void;
|
15
|
+
initState: (model: HeaderBlueprint | BlueprintVariant, blueprints: HeaderBlueprints, baseStrategy: BlueprintsStrategyBase) => void;
|
16
|
+
}>;
|
17
|
+
get: {
|
18
|
+
blueprint: {
|
19
|
+
fallbackBlueprint: (variant: BlueprintVariant) => any;
|
20
|
+
byVariant: (type: BlueprintVariant) => any;
|
21
|
+
};
|
22
|
+
};
|
23
|
+
rules: {
|
24
|
+
isDefaultBlueprint: (variant: BlueprintVariant) => boolean;
|
25
|
+
isPlaceHolder: (variant: BlueprintVariant) => boolean;
|
26
|
+
};
|
27
|
+
dataTypes: {
|
28
|
+
itemTypes: BlueprintVariant[];
|
29
|
+
};
|
30
|
+
} & {
|
31
|
+
dispose?: () => void;
|
32
|
+
};
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { ButtonBlueprint, ButtonBlueprintVariant, HeaderBlueprint, VelcronAppDefinition, VelcronRendererResolverReference } from "@omnia/fx-models";
|
2
|
+
export declare const useHeaderStyleEditorStore: () => {
|
3
|
+
state: {
|
4
|
+
internalModel: HeaderBlueprint;
|
5
|
+
viewRenderer: VelcronRendererResolverReference;
|
6
|
+
velcronTemplate: boolean;
|
7
|
+
editingDefinition: VelcronAppDefinition;
|
8
|
+
settings: {
|
9
|
+
headerLabel: string;
|
10
|
+
};
|
11
|
+
};
|
12
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
13
|
+
setRenderer: (renderer: VelcronRendererResolverReference) => void;
|
14
|
+
setDesignMode: (isTemplate: boolean) => void;
|
15
|
+
loadVelcronDefinitionForRenderer: () => void;
|
16
|
+
updateName: (name: string) => void;
|
17
|
+
initState: (model: ButtonBlueprint | ButtonBlueprintVariant, buttonLabel: string) => void;
|
18
|
+
}>;
|
19
|
+
get: {};
|
20
|
+
datatTypes: {};
|
21
|
+
rules: {
|
22
|
+
isAdvanceModeEnabled: () => boolean;
|
23
|
+
showInputField(): string | boolean;
|
24
|
+
isVelcronTemplate(): boolean;
|
25
|
+
};
|
26
|
+
} & {
|
27
|
+
dispose?: () => void;
|
28
|
+
};
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { InputBlueprint } from "@omnia/fx-models";
|
2
|
+
import { DefineEmit } from "@omnia/fx/ux";
|
3
|
+
export type EditorVariant = "default" | "picker";
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
5
|
+
blueprint?: InputBlueprint;
|
6
|
+
} & {
|
7
|
+
toned?: boolean;
|
8
|
+
} & {
|
9
|
+
variant?: EditorVariant;
|
10
|
+
} & {
|
11
|
+
label?: string;
|
12
|
+
} & {
|
13
|
+
sampleText?: string;
|
14
|
+
} & {
|
15
|
+
selectable?: boolean;
|
16
|
+
} & DefineEmit<"click:select", () => true>> & {
|
17
|
+
"onClick:select"?: () => any;
|
18
|
+
} & {
|
19
|
+
"v-slots"?: {} & Omit<{
|
20
|
+
default?: import("vue").Slot;
|
21
|
+
}, never>;
|
22
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "blueprint" | "variant" | "toned" | "emit:click:select" | "selectable" | "sampleText"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
23
|
+
export default _default;
|
@@ -1,21 +1,25 @@
|
|
1
|
-
import { BlueprintVariant,
|
1
|
+
import { BlueprintsStrategyBase, BlueprintVariant, InputBlueprint, InputBlueprints } from "@omnia/fx-models";
|
2
2
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
|
-
"emit:update:modelValue": (value: BlueprintVariant |
|
3
|
+
"emit:update:modelValue": (value: BlueprintVariant | InputBlueprint) => void;
|
4
4
|
} & {
|
5
|
-
"v-model"?: BlueprintVariant |
|
5
|
+
"v-model"?: BlueprintVariant | InputBlueprint;
|
6
6
|
} & {
|
7
|
-
modelValue?: BlueprintVariant |
|
7
|
+
modelValue?: BlueprintVariant | InputBlueprint;
|
8
8
|
} & {
|
9
9
|
label?: string;
|
10
10
|
} & {
|
11
11
|
toned?: boolean;
|
12
|
+
} & {
|
13
|
+
blueprints?: InputBlueprints;
|
14
|
+
} & {
|
15
|
+
baseStrategy?: BlueprintsStrategyBase;
|
12
16
|
} & {
|
13
17
|
customStyling?: boolean;
|
14
18
|
}> & {
|
15
|
-
"onUpdate:modelValue"?: (value: BlueprintVariant |
|
19
|
+
"onUpdate:modelValue"?: (value: BlueprintVariant | InputBlueprint) => any;
|
16
20
|
} & {
|
17
21
|
"v-slots"?: {} & Omit<{
|
18
22
|
default?: import("vue").Slot;
|
19
23
|
}, never>;
|
20
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "modelValue" | "emit:update:modelValue" | "v-model" | "toned" | "customStyling"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
24
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "modelValue" | "emit:update:modelValue" | "v-model" | "toned" | "blueprints" | "baseStrategy" | "customStyling"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
21
25
|
export default _default;
|
package/internal-do-not-import-from-here/ux/aurora/components/input/store/InputStylePickerStore.d.ts
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
import { BlueprintsStrategyBase, BlueprintVariant, InputBlueprint, InputBlueprints } from "@omnia/fx-models";
|
2
|
+
export interface ButtonType {
|
3
|
+
id: string;
|
4
|
+
title: string;
|
5
|
+
}
|
6
|
+
export declare const useInputStylePickerStore: () => {
|
7
|
+
state: {
|
8
|
+
showSelectionMenu: boolean;
|
9
|
+
internalModel: BlueprintVariant | InputBlueprint;
|
10
|
+
blueprints: InputBlueprints;
|
11
|
+
baseStrategy: BlueprintsStrategyBase;
|
12
|
+
};
|
13
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
14
|
+
selectItem(value: InputBlueprint | BlueprintVariant): void;
|
15
|
+
initState: (model: InputBlueprint | BlueprintVariant, blueprints: InputBlueprints, baseStrategy: BlueprintsStrategyBase) => void;
|
16
|
+
}>;
|
17
|
+
get: {
|
18
|
+
blueprint: {
|
19
|
+
fallbackBlueprint: (variant: BlueprintVariant) => any;
|
20
|
+
byVariant: (type: BlueprintVariant) => any;
|
21
|
+
};
|
22
|
+
};
|
23
|
+
rules: {
|
24
|
+
isDefaultBlueprint: (variant: BlueprintVariant) => boolean;
|
25
|
+
isPlaceHolder: (variant: BlueprintVariant) => boolean;
|
26
|
+
};
|
27
|
+
dataTypes: {
|
28
|
+
itemTypes: BlueprintVariant[];
|
29
|
+
};
|
30
|
+
} & {
|
31
|
+
dispose?: () => void;
|
32
|
+
};
|
package/internal-do-not-import-from-here/ux/aurora/components/tabs/store/TabStyleEditorStore.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ColorSchemaType, ColorValue, guid, TabsBlueprint, TextBlueprint } from "@omnia/fx-models";
|
1
|
+
import { ColorSchemaType, ColorValue, guid, TabsBlueprint, TextBlueprint, VelcronRendererResolverReference } from "@omnia/fx-models";
|
2
2
|
export declare const useTabStyleEditorStore: () => {
|
3
3
|
state: {
|
4
4
|
internalModel: TabsBlueprint;
|
@@ -7,11 +7,14 @@ export declare const useTabStyleEditorStore: () => {
|
|
7
7
|
activeTab: {
|
8
8
|
model: any;
|
9
9
|
textBlueprint: TextBlueprint;
|
10
|
+
viewTemplate: VelcronRendererResolverReference;
|
10
11
|
};
|
11
12
|
inactiveTab: {
|
12
13
|
model: any;
|
13
14
|
textBlueprint: TextBlueprint;
|
15
|
+
viewTemplate: VelcronRendererResolverReference;
|
14
16
|
};
|
17
|
+
velcronTemplate: boolean;
|
15
18
|
alignment: any;
|
16
19
|
iconPosition: any;
|
17
20
|
dynamiColorSchemaType: ColorSchemaType;
|
@@ -20,13 +23,16 @@ export declare const useTabStyleEditorStore: () => {
|
|
20
23
|
sliderColor: ColorValue;
|
21
24
|
};
|
22
25
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
26
|
+
setDesignMode: (isTemplate: boolean) => void;
|
23
27
|
activeTab: () => {
|
24
28
|
setTextBlueprint: (textBlueprint: TextBlueprint) => void;
|
25
29
|
ensure(): void;
|
30
|
+
setViewTemplate: (viewTemplate: VelcronRendererResolverReference) => void;
|
26
31
|
};
|
27
32
|
inActiveTab: () => {
|
28
33
|
setTextBlueprint: (textBlueprint: TextBlueprint) => void;
|
29
34
|
ensure(): void;
|
35
|
+
setViewTemplate: (viewTemplate: VelcronRendererResolverReference) => void;
|
30
36
|
};
|
31
37
|
ensureInheritedSettings: () => void;
|
32
38
|
updateName: (name: string) => void;
|
@@ -24,7 +24,7 @@ export declare const useThemeProviderStore: () => {
|
|
24
24
|
readonly defaultSpacingBlueprints: SpacingBlueprint;
|
25
25
|
readonly defaultLightColorSchema: ColorSchemas;
|
26
26
|
readonly defaultDarkColorSchema: ColorSchemas;
|
27
|
-
readonly
|
27
|
+
readonly componentBlueprintStrategy: ComponentBlueprintStrategyType;
|
28
28
|
};
|
29
29
|
readonly events: {
|
30
30
|
onMutatedAdminTheme: import("@omnia/fx-models/internal-do-not-import-from-here/shared").MessageBusExposeOnlySubscription<ResolvedThemeDefinition>;
|