@omnia/fx 8.0.546-dev → 8.0.547-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.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/services/shared-mobile/MediaPickerService.d.ts +2 -2
- package/internal-do-not-import-from-here/services/shared-mobile/TagService.d.ts +5 -0
- package/internal-do-not-import-from-here/services/shared-mobile/index.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/mediapicker/ImageTransformerStore.d.ts +6 -5
- package/internal-do-not-import-from-here/stores/mediapicker/handlers/imagetransformer/flip.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/mediapicker/handlers/imagetransformer/rotate.d.ts +1 -1
- package/internal-do-not-import-from-here/stores/shared-mobile/MediaPickerStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/loc/Localize.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/textstyles/blades/TextStyleBreakpointBlade.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/textstyles/blades/TextStyleDetailBlade.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/textstyles/store/TextStyleEditorStore.d.ts +168 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-designer/themes/EditMediaResourcesBlade.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/themes/store/ThemeEditorStore.d.ts +11 -2
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/SelectAppThemeJourney.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/SelectBPThemeJourney.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/SelectTenantAdminThemeJourney.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/SelectTenantThemeJourney.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes → theme-selection}/ThemeSelectionJourney.d.ts +3 -7
- package/internal-do-not-import-from-here/ux/aurora/admin/theme-selection/store/ThemesJourneyStore.d.ts +73 -0
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/{ThemePicker.d.ts → ThemeDefinitionPicker.d.ts} +4 -1
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeSwitcher.css.d.ts +95 -0
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeSwitcher.d.ts +25 -0
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeViewer.css.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/store/{ThemePickerStore.d.ts → ThemeDefinitionPickerStore.d.ts} +4 -7
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/store/ThemeSwitcherStore.d.ts +54 -0
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeStorage.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/aurora/styling/animations/SwitchAnimationEffect.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/aurora/styling/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/context/ContextPicker.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/context/ContextSuggestion.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/context/PluginRegistrationHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/context/plugins/EnterpriseGlossary.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/context/plugins/EnterpriseProperty.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/context/plugins/PluginRegistrations.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/context/stores/ContextPickerStore.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/DefineRef.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/DefineRef.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/omfx/components/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/FlowEditor.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/context/ContextButton.d.ts +233 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/context/ContextPlugin.d.ts +20 -0
- package/internal-do-not-import-from-here/ux/iconpicker/IconPicker.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/models/flow/ContextNode.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/models/flow/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/btn/shared-mobile/useBtnComponent.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/speeddial/SpeedDial.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/switch/SwitchSlider.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/oxide/switch/SwitchSlider.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/oxide/switch/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/switch/docs/SampleSwitchSlider.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/oxide/switch/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/vuetify/VuetifyCore.d.ts +14 -14
- package/internal-do-not-import-from-here/wctypings.d.ts +123 -66
- package/package.json +3 -3
- package/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/themes/store/ThemesJourneyStore.d.ts +0 -38
- /package/internal-do-not-import-from-here/ux/aurora/admin/{DesignJourney.d.ts → theme-designer/DesignToolsJourney.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/ThemeDesigner.d.ts → theme-designer/ThemeDesignMenu.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/chrome/Chrome.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/colorschemas/ColorSchemasJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/colorschemas/blades/ColorSchemaDefinitionBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/colorschemas/store/ColorSchemaEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/BlueprintsJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/BlueprintPreview.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/ButtonBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/ButtonsBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/EditBlueprints.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/HeaderBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/HeaderBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/IconsBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/IconsBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/InputBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/InputBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/TabBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/blades/TabBladeEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/ButtonsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/ComponentEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/HeaderEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/IconsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/InputEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/componentblueprints/store/TabsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/ContainerFillsBlade.stylex.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/FillsJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/containerBlades/ContainerFillsBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/containerBlades/ContainerFillsEditBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/store/ContainerFillsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/store/FillsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/store/TextFillsEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/textBlades/TextFillsBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fills/textBlades/TextFillsEditBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fontsmanager/FontManager.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fontsmanager/blade/FontDefinitionBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/fontsmanager/store/FontManagerStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/spacing/SpacingJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/spacing/blades/EditSpacingBlueprintBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/spacing/blades/EditSpacingDefinitionBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/spacing/store/SpacingEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/store/ThemeDesignerStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/TemplatesJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/blades/ButtonTemplateEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/blades/ButtonTemplates.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/blades/TabTemplateEdit.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/blades/TabTemplates.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/templates/store/TemplateEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{DesignAppJourney.d.ts → theme-designer/textstyles/TextStyles.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes/blades → theme-designer/themes}/EditColorSchemasBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{DesignBPJourney.d.ts → theme-designer/themes/EditLayoutWidthBlade.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes/blades → theme-designer/themes}/EditThemeBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes/blades → theme-designer/themes}/EditThemeBladeStyles.stylex.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes/blades/SelectionThemeBlade.d.ts → theme-designer/themes/ThemeDesignJourney.d.ts} +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes/blades → theme-designer/themes}/ViewThemeBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/TypographyJourney.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/EditScaleBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/EditTextStyleBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/EditTextStylesBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/EditTypographyBlueprintBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/SelectBreakpointBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/blades/ViewTypeScaleBlade.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/components/FontPicker.css.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/components/FontPicker.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/components/FontRegistration.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner → theme-designer}/typography/store/TypographyEditorStore.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes → theme-selection}/models/Theme.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/admin/{themedesigner/themes → theme-selection}/models/index.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/aurora/components/themepicker/{ThemePicker.css.d.ts → ThemeDefinitionPicker.css.d.ts} +0 -0
@@ -1,6 +1,7 @@
|
|
1
1
|
import { DefineSlot, DefineEmit } from "@omnia/fx/ux";
|
2
2
|
import { Func, guid, ITemplateRegistration, ResolvedThemeDefinition, TemplateRegistrationType } from "@omnia/fx-models";
|
3
3
|
import { VNodeChild } from "vue";
|
4
|
+
import { ModelType } from "./store/ThemeDefinitionPickerStore";
|
4
5
|
type ThemePickerVariant = "picker" | "virtual-list" | "journey";
|
5
6
|
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
6
7
|
variant?: ThemePickerVariant;
|
@@ -14,6 +15,8 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
14
15
|
navigation?: boolean;
|
15
16
|
} & {
|
16
17
|
filter?: "custom";
|
18
|
+
} & {
|
19
|
+
modelType?: ModelType;
|
17
20
|
} & {
|
18
21
|
"emit:update:modelValue": (value: guid | ResolvedThemeDefinition) => void;
|
19
22
|
} & {
|
@@ -30,5 +33,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
30
33
|
default?: import("vue").Slot;
|
31
34
|
$stable?: boolean;
|
32
35
|
}, "activator">;
|
33
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "filter" | "label" | "variant" | "toned" | "v-model" | "modelValue" | "emit:update:modelValue" | "navigation" | "slot:activator" | "enableClear" | "emit:item:selected"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
36
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "filter" | "label" | "variant" | "toned" | "v-model" | "modelValue" | "emit:update:modelValue" | "navigation" | "slot:activator" | "modelType" | "enableClear" | "emit:item:selected"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
34
37
|
export default _default;
|
package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeSwitcher.css.d.ts
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
export declare const ThemeSwitcherStyles: {
|
2
|
+
themeStyling: {
|
3
|
+
input: {
|
4
|
+
stylex: typeof import("../../styling/styles/InputStyling").InputStyling.getFieldBlueprintStylex;
|
5
|
+
};
|
6
|
+
icons: {
|
7
|
+
stylex: typeof import("../../styling/styles").IconStyling.getIconBlueprintStylex;
|
8
|
+
};
|
9
|
+
colors: {
|
10
|
+
dividingOpacity: typeof import("../../styling/styles").colorStyling.dividingOpacity;
|
11
|
+
backgroundOpacity: typeof import("../../styling/styles").colorStyling.backgroundOpacity;
|
12
|
+
setColorOpacity: typeof import("@omnia/fx-models").setColorOpacity;
|
13
|
+
};
|
14
|
+
elementStyling: {
|
15
|
+
colorStylex: typeof import("../../styling/styles").colorStyling.getColorStylingx;
|
16
|
+
selectedTableRowStylex: typeof import("../../styling/styles").generalStylex.getSelectedTableRowStylex;
|
17
|
+
scrollStylex: typeof import("../../styling/styles").generalStylex.getScrollStylex;
|
18
|
+
borderDividerStylex: typeof import("../../styling/styles").generalStylex.getBorderDividerStylex;
|
19
|
+
hoverStylex: typeof import("../../styling/styles").generalStylex.getHoverStylex;
|
20
|
+
css: {
|
21
|
+
generateAllStylesSchema: () => {
|
22
|
+
[key: string]: string;
|
23
|
+
};
|
24
|
+
generateVariableStyle: (color: import("@omnia/fx-models").ColorValue) => {
|
25
|
+
[key: string]: string;
|
26
|
+
};
|
27
|
+
generateValueVariable: (color: import("@omnia/fx-models").ColorValue) => string;
|
28
|
+
};
|
29
|
+
};
|
30
|
+
typography: {
|
31
|
+
valueStylex: typeof import("../../styling/styles/Typography").TypographyStyling.typographyStylexFromValueStylex;
|
32
|
+
typeStylex: typeof import("../../styling/styles/Typography").TypographyStyling.typographyTypeStylex;
|
33
|
+
stylex: typeof import("../../styling/styles/Typography").TypographyStyling.typographyStylex;
|
34
|
+
fontStyling: typeof import("../../styling/styles/Typography").fontStyling;
|
35
|
+
typeStyling: (typographyType: import("@omnia/fx-models").TextStyleTypes | import("@omnia/fx-models").TextStyleType, size: import("@omnia/fx-models").TextStyleSize | import("@omnia/fx-models").TextStyleSizes, blueprint: import("@omnia/fx-models").TypographyBlueprint) => {
|
36
|
+
baseStyles: {
|
37
|
+
fontFamily: string;
|
38
|
+
fontSize: string;
|
39
|
+
fontWeight: number;
|
40
|
+
lineHeight: string;
|
41
|
+
fontStyle: string;
|
42
|
+
textTransform: any;
|
43
|
+
letterSpacing: string;
|
44
|
+
textDecoration: string;
|
45
|
+
$nest: {};
|
46
|
+
};
|
47
|
+
mediumStyles: any;
|
48
|
+
smallStyles: any;
|
49
|
+
queryOnSmallScreen: import("typestyle/lib/types").MediaQuery;
|
50
|
+
queryOnMediumScreen: import("typestyle/lib/types").MediaQuery;
|
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
|
+
};
|
69
|
+
};
|
70
|
+
spacing: {
|
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;
|
72
|
+
marginStylex: (value: import("@omnia/fx-models").Spacing | import("@omnia/fx-models").SpacingValue, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => import("@omnia/fx/ux").StylexValue;
|
73
|
+
value: (value: import("@omnia/fx-models").SpacingValue, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => number;
|
74
|
+
values: (value: import("@omnia/fx-models").Spacing, blueprint?: ReturnType<typeof import("@omnia/fx/ux").useSpacingBlueprintStore>) => import("@omnia/fx-models").Spacing;
|
75
|
+
};
|
76
|
+
fill: {
|
77
|
+
stylex: typeof import("../../styling/styles").FillStyling.getBlueprintFillStylex;
|
78
|
+
stylexObject: typeof import("../../styling/styles").FillStyling.getBlueprintFillObjectStylex;
|
79
|
+
};
|
80
|
+
border: {
|
81
|
+
stylex: typeof import("../../styling/styles").BorderStyling.getBlueprintBorderStylex;
|
82
|
+
stylexObject: typeof import("../../styling/styles").BorderStyling.getBlueprintBorderObjectStylex;
|
83
|
+
};
|
84
|
+
background: {
|
85
|
+
stylex: typeof import("../../styling/styles").BackgroundStyling.getBlueprintBackgroundStylex;
|
86
|
+
stylexObject: typeof import("../../styling/styles").BackgroundStyling.getBlueprintBackgroundObjectStylex;
|
87
|
+
};
|
88
|
+
text: {
|
89
|
+
stylex: typeof import("../../styling/styles").TextStyles.getBlueprintTextStylex;
|
90
|
+
object: typeof import("../../styling/styles").TextStyles.getBlueprintTextStylingObject;
|
91
|
+
};
|
92
|
+
};
|
93
|
+
button: (dark: boolean, border: "left" | "right" | "left right") => string;
|
94
|
+
overlay: (dark: boolean) => string;
|
95
|
+
};
|
@@ -0,0 +1,25 @@
|
|
1
|
+
import { DefineSlot } from "@omnia/fx/ux";
|
2
|
+
import { Func } from "@omnia/fx-models";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
import { useThemeSwitcherStore, ThemeSwitcherVariant } from "./store/ThemeSwitcherStore";
|
5
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
6
|
+
variant?: ThemeSwitcherVariant;
|
7
|
+
} & {
|
8
|
+
label?: string;
|
9
|
+
} & {
|
10
|
+
adminTheme?: boolean;
|
11
|
+
} & {
|
12
|
+
showAccessibility?: boolean;
|
13
|
+
} & {
|
14
|
+
getApi?: (store: ReturnType<typeof useThemeSwitcherStore>) => null;
|
15
|
+
} & {
|
16
|
+
border?: "left" | "right" | "left right";
|
17
|
+
} & DefineSlot<"activator", Func<[VNodeChild]>>> & {} & {
|
18
|
+
"v-slots"?: {
|
19
|
+
activator?: Func<[VNodeChild]>;
|
20
|
+
} & Omit<{
|
21
|
+
default?: import("vue").Slot;
|
22
|
+
$stable?: boolean;
|
23
|
+
}, "activator">;
|
24
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "border" | "label" | "variant" | "adminTheme" | "slot:activator" | "getApi" | "showAccessibility"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
25
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeViewer.css.d.ts
CHANGED
@@ -1,7 +1,5 @@
|
|
1
1
|
import { ColorSchema, ResolvedThemeDefinition } from "@omnia/fx-models";
|
2
2
|
export declare const ThemeViewerStyles: {
|
3
3
|
itemContainer: (definition: ResolvedThemeDefinition, selectedView: boolean) => string;
|
4
|
-
IconColumn: string;
|
5
|
-
titleColumn: string;
|
6
4
|
colorPreview: (schema: ColorSchema) => string;
|
7
5
|
};
|
@@ -1,10 +1,6 @@
|
|
1
1
|
import { guid, ITemplateRegistration, ResolvedThemeDefinition } from "@omnia/fx-models";
|
2
|
-
export
|
3
|
-
|
4
|
-
linearGradient = "linear",
|
5
|
-
radialGradient = "radial"
|
6
|
-
}
|
7
|
-
export declare const useThemePickerStore: () => {
|
2
|
+
export type ModelType = "object" | "guid";
|
3
|
+
export declare const useThemeDefinitionPickerStore: () => {
|
8
4
|
state: {
|
9
5
|
internalModel: guid | ResolvedThemeDefinition;
|
10
6
|
pickerStore: {
|
@@ -38,11 +34,12 @@ export declare const useThemePickerStore: () => {
|
|
38
34
|
} & {
|
39
35
|
dispose?: () => void;
|
40
36
|
};
|
37
|
+
modelType: ModelType;
|
41
38
|
};
|
42
39
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
43
40
|
clear: () => void;
|
44
41
|
select: (theme: ITemplateRegistration<ResolvedThemeDefinition>) => void;
|
45
|
-
initState: (model: ResolvedThemeDefinition | guid) => void;
|
42
|
+
initState: (model: ResolvedThemeDefinition | guid, modelType: ModelType) => void;
|
46
43
|
}>;
|
47
44
|
get: {
|
48
45
|
selectedRegistration: () => ITemplateRegistration<any, import("@omnia/fx-models").TemplateRegistrationType>;
|
@@ -0,0 +1,54 @@
|
|
1
|
+
import { ITemplateRegistration, ResolvedThemeDefinition, ThemeSelection, ThemeSelectionValue, UserThemeManager } from "@omnia/fx-models";
|
2
|
+
import { useColorSchemaStore } from "@omnia/fx/ux";
|
3
|
+
export type ModelType = "object" | "guid";
|
4
|
+
export type ThemeSwitcherVariant = "editor" | "admin" | "user-profile" | "default-list" | "default-icon";
|
5
|
+
export declare const useThemeSwitcherStore: () => {
|
6
|
+
state: {
|
7
|
+
themeSelectorRenderingMode: "hidden" | "switch" | "multi-select";
|
8
|
+
themeContext: {
|
9
|
+
themeSettings: ThemeSelection;
|
10
|
+
userSelection: UserThemeManager;
|
11
|
+
};
|
12
|
+
editingSelections: {
|
13
|
+
accessibilityEnabled: boolean;
|
14
|
+
};
|
15
|
+
themeDefinitions: ITemplateRegistration<ResolvedThemeDefinition, import("@omnia/fx-models").TemplateRegistrationType>[];
|
16
|
+
settings: {
|
17
|
+
variant: ThemeSwitcherVariant;
|
18
|
+
adminTheme: boolean;
|
19
|
+
showAccessibility: boolean;
|
20
|
+
};
|
21
|
+
icons: ThemeSelectionValue;
|
22
|
+
};
|
23
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
24
|
+
saveSettings: () => Promise<void>;
|
25
|
+
setAccessibilityMode: (enabled: boolean) => Promise<void>;
|
26
|
+
selectTheme: (theme: ITemplateRegistration<ResolvedThemeDefinition>) => Promise<void>;
|
27
|
+
toggleThemeSelection: () => Promise<void>;
|
28
|
+
ensureThemeDefinitionSelection: () => void;
|
29
|
+
init: () => Promise<void>;
|
30
|
+
setRenderingMode: () => void;
|
31
|
+
initAccessibilitySettings: () => Promise<void>;
|
32
|
+
}>;
|
33
|
+
get: {
|
34
|
+
readonly currentThemeDefinition: ResolvedThemeDefinition;
|
35
|
+
displayIcon: (colors: ReturnType<typeof useColorSchemaStore>) => import("@omnia/fx-models").IIcon | import("@omnia/fx-models").FontAwesomeIcon;
|
36
|
+
themeToggleIcon: {
|
37
|
+
default: (colors: ReturnType<typeof useColorSchemaStore>) => import("@omnia/fx-models").IIcon | import("@omnia/fx-models").FontAwesomeIcon;
|
38
|
+
additional: (colors: ReturnType<typeof useColorSchemaStore>) => import("@omnia/fx-models").IIcon | import("@omnia/fx-models").FontAwesomeIcon;
|
39
|
+
};
|
40
|
+
};
|
41
|
+
rules: {
|
42
|
+
readonly isUserProfile: boolean;
|
43
|
+
readonly showAccessibilitySelection: boolean;
|
44
|
+
readonly hideThemeSelection: boolean;
|
45
|
+
readonly isToggleSwitch: boolean;
|
46
|
+
readonly isMultiSelection: boolean;
|
47
|
+
readonly isAdminTheme: boolean;
|
48
|
+
isSelected: (theme: ITemplateRegistration<ResolvedThemeDefinition>) => boolean;
|
49
|
+
readonly isCurrentThemeAdditional: boolean;
|
50
|
+
readonly hasAccessibilityThemes: boolean;
|
51
|
+
};
|
52
|
+
} & {
|
53
|
+
dispose?: () => void;
|
54
|
+
};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ThemeRegistration } from "@omnia/fx-models/internal-do-not-import-from-here/shared/aurora/stores";
|
2
|
-
import { ColorSchema, ComponentBlueprints, guid, ResolvedThemeDefinition, SpacingBlueprint, TemplateRegistrationType, ThemeDefinition, TypographyBlueprint } from "@omnia/fx-models";
|
2
|
+
import { ColorSchema, ComponentBlueprints, guid, ResolvedThemeDefinition, SpacingBlueprint, TemplateRegistrationType, ThemeDefinition, ThemeSelection, TypographyBlueprint } from "@omnia/fx-models";
|
3
3
|
type ThemesResolved = Array<ThemeDefinition | ColorSchema | TypographyBlueprint | SpacingBlueprint | ComponentBlueprints>;
|
4
4
|
export declare const useThemeProviderStore: () => {
|
5
5
|
state: {
|
@@ -15,14 +15,17 @@ export declare const useThemeProviderStore: () => {
|
|
15
15
|
isLoaded: boolean;
|
16
16
|
}, Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>>;
|
17
17
|
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
18
|
+
reloadTheme(): Promise<void>;
|
18
19
|
loadAll(): Promise<ThemesResolved>;
|
19
20
|
save(theme: ThemeRegistration): Promise<unknown>;
|
20
21
|
delete(id: guid): Promise<unknown>;
|
21
22
|
}>;
|
22
23
|
get: {
|
24
|
+
readonly additionalThemeId: guid;
|
23
25
|
readonly adminTheme: ResolvedThemeDefinition;
|
24
26
|
readonly defaultTheme: ResolvedThemeDefinition;
|
25
27
|
getByType: (type: TemplateRegistrationType) => Array<any>;
|
28
|
+
themeSettings: () => ThemeSelection;
|
26
29
|
};
|
27
30
|
} & {
|
28
31
|
dispose?: () => void;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { DefineEmit, DefineProp } from "@omnia/fx/ux";
|
2
|
+
import { Suggestion } from "@omnia/fx-models";
|
3
|
+
type Props = DefineProp<"label", string> & DefineProp<"variant", "picker" | "default", false, "default"> & DefineEmit<"select", (item: Suggestion) => true>;
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Props> & {
|
5
|
+
onSelect?: (item: Suggestion) => any;
|
6
|
+
} & {
|
7
|
+
"v-slots"?: {} & Omit<{
|
8
|
+
default?: import("vue").Slot;
|
9
|
+
$stable?: boolean;
|
10
|
+
}, never>;
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "label" | "variant" | "emit:select"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
12
|
+
export default _default;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { Suggestion } from "@omnia/fx-models";
|
2
|
+
import { DefineEmit, DefineProp } from "@omnia/fx/ux";
|
3
|
+
type Props = DefineProp<"variant", "dropdown" | "default", false, "default"> & DefineProp<"width", string | number, false, "100%"> & DefineProp<"height", string | number, false, 300> & DefineProp<"triggerAllContexts", boolean, false, false> & DefineEmit<"select", (item: Suggestion) => true>;
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<Props> & {
|
5
|
+
onSelect?: (item: Suggestion) => any;
|
6
|
+
} & {
|
7
|
+
"v-slots"?: {} & Omit<{
|
8
|
+
default?: import("vue").Slot;
|
9
|
+
$stable?: boolean;
|
10
|
+
}, never>;
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "height" | "width" | "variant" | "triggerAllContexts" | "emit:select"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
12
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { ContextPlugin, Suggestion } from "@omnia/fx-models";
|
2
|
+
export declare const useContextPickerStore: () => {
|
3
|
+
state: {
|
4
|
+
suggestedItems: any[];
|
5
|
+
appliedContexts: ContextPlugin<any>[];
|
6
|
+
selected: any;
|
7
|
+
loading: boolean;
|
8
|
+
};
|
9
|
+
actions: import("@omnia/fx/stores").StoreReturnDefineAction<{
|
10
|
+
pickContexts: (contexts: ContextPlugin | ContextPlugin[]) => Promise<void>;
|
11
|
+
ensureData: (contextsToCheck?: ContextPlugin[]) => Promise<void>;
|
12
|
+
gatherAllSuggestions: <TQuery>(query: TQuery) => Promise<void>;
|
13
|
+
triggerSelection: (suggestion: Suggestion, applyForAll?: boolean) => Promise<void>;
|
14
|
+
gatherAppliedContextsSuggestions: <TQuery>(query: TQuery) => Promise<void>;
|
15
|
+
}>;
|
16
|
+
} & {
|
17
|
+
dispose?: () => void;
|
18
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -28,5 +28,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
28
28
|
default?: import("vue").Slot;
|
29
29
|
$stable?: boolean;
|
30
30
|
}, never>;
|
31
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "spacing" | "
|
31
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "spacing" | "context" | "getApi" | "renderContent" | "appendLeftSection" | "prependLeftSection" | "appendMainSection" | "prependMainSection" | "appendRightSection" | "prependRightSection" | "dialogScopedInjectables"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
32
32
|
export default _default;
|
@@ -8,5 +8,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<SettingProps
|
|
8
8
|
default?: import("vue").Slot;
|
9
9
|
$stable?: boolean;
|
10
10
|
}, never>;
|
11
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "context" | "propertyDefinitionAsHash"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
12
12
|
export default _default;
|
@@ -8,5 +8,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<SettingProps
|
|
8
8
|
default?: import("vue").Slot;
|
9
9
|
$stable?: boolean;
|
10
10
|
}, never>;
|
11
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "context" | "propertyDefinitionAsHash"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
12
12
|
export default _default;
|
@@ -8,5 +8,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<SettingProps
|
|
8
8
|
default?: import("vue").Slot;
|
9
9
|
$stable?: boolean;
|
10
10
|
}, never>;
|
11
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "context" | "propertyDefinitionAsHash"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
12
12
|
export default _default;
|
@@ -8,5 +8,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<SettingProps
|
|
8
8
|
default?: import("vue").Slot;
|
9
9
|
$stable?: boolean;
|
10
10
|
}, never>;
|
11
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "context" | "propertyDefinitionAsHash"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
12
12
|
export default _default;
|
@@ -8,5 +8,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<SettingProps
|
|
8
8
|
default?: import("vue").Slot;
|
9
9
|
$stable?: boolean;
|
10
10
|
}, never>;
|
11
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "context" | "propertyDefinitionAsHash"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
12
12
|
export default _default;
|
@@ -8,5 +8,5 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<SettingProps
|
|
8
8
|
default?: import("vue").Slot;
|
9
9
|
$stable?: boolean;
|
10
10
|
}, never>;
|
11
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "
|
11
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "modelValue" | "emit:update:modelValue" | "context" | "propertyDefinitionAsHash"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
12
12
|
export default _default;
|
@@ -19,12 +19,13 @@ declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
|
19
19
|
}) => void;
|
20
20
|
} & {
|
21
21
|
plugins?: FlowEditorPluginSettings[];
|
22
|
-
} & DefineEmit<"update:modelValue", (value: FlowContent) => true>> & {
|
22
|
+
} & DefineEmit<"focus", () => true> & DefineEmit<"update:modelValue", (value: FlowContent) => true>> & {
|
23
|
+
onFocus?: () => any;
|
23
24
|
"onUpdate:modelValue"?: (value: FlowContent) => any;
|
24
25
|
} & {
|
25
26
|
"v-slots"?: {} & Omit<{
|
26
27
|
default?: import("vue").Slot;
|
27
28
|
$stable?: boolean;
|
28
29
|
}, never>;
|
29
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "toolbar" | "v-model" | "modelValue" | "emit:update:modelValue" | "placeholder" | "plugins" | "getApi"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
30
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "toolbar" | "v-model" | "modelValue" | "emit:update:modelValue" | "placeholder" | "plugins" | "getApi" | "emit:focus"> & import("@omnia/fx/ux").VNodeEvents) => any;
|
30
31
|
export default _default;
|