@omnia/fx 8.0.341-dev → 8.0.343-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/Exposes.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/StyleFlow.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaPicker.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaPicker.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/aurora/components/input/InputStyleEditor.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/aurora/components/themepreview/ThemePreview.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/docs/Docs.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/docs/imports.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/theming/components/index.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/theming/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseglossary/componentbase/EnterpriseGlossaryTermComponentBase.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/html/HtmlRenderer.d.ts +3 -9
- package/internal-do-not-import-from-here/ux/letteravatar/LetterAvatar.d.ts +5 -19
- package/internal-do-not-import-from-here/ux/oxide/form/Form.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/picker/Picker.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/oxide/picker/Picker.stylex.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/oxide/picker/PickerSelection.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/oxide/picker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/picker/docs/SampleComponent.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/oxide/picker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/picker/models/SharedSettings.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/select/Select.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +39 -1
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker copy.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/letteravatar/ILetterAvatar.d.ts +0 -23
- package/internal-do-not-import-from-here/ux/letteravatar/LetterAvatar.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/letteravatar/index.d.ts +0 -1
- /package/internal-do-not-import-from-here/ux/aurora/components/{themepicker/ThemeViewer.d.ts → themepreview/ComponentPreview.d.ts} +0 -0
@@ -18,7 +18,6 @@ export * from "./enterpriseproperties";
|
|
18
18
|
export * from "./errormessage";
|
19
19
|
export * from "./features";
|
20
20
|
export * from "./languagepicker";
|
21
|
-
export * from "./letteravatar";
|
22
21
|
export * from "./models";
|
23
22
|
export * from "./multilingualinput";
|
24
23
|
export * from "./permissioninput";
|
@@ -112,6 +112,7 @@ export declare namespace StyleFlow {
|
|
112
112
|
gridTemplateColumns(gridTemplateColumns: string | number): import("./Styles.stylex").StylexValue;
|
113
113
|
objectFit(objectFit: string): import("./Styles.stylex").StylexValue;
|
114
114
|
hover: {
|
115
|
+
opacity: (opacity: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
115
116
|
cursor: (cursor: string, important?: boolean) => import("./Styles.stylex").StylexValue;
|
116
117
|
transform: (transform: string) => import("./Styles.stylex").StylexValue;
|
117
118
|
background: (background: string) => import("./Styles.stylex").StylexValue;
|
@@ -102,6 +102,7 @@ export declare const cssRules: {
|
|
102
102
|
gridTemplateColumns(gridTemplateColumns: string | number): StylexValue;
|
103
103
|
objectFit(objectFit: string): StylexValue;
|
104
104
|
hover: {
|
105
|
+
opacity: (opacity: string, important?: boolean) => StylexValue;
|
105
106
|
cursor: (cursor: string, important?: boolean) => StylexValue;
|
106
107
|
transform: (transform: string) => StylexValue;
|
107
108
|
background: (background: string) => StylexValue;
|
@@ -96,6 +96,9 @@ declare const _default: {
|
|
96
96
|
enableDynamicColor: {
|
97
97
|
type: import("vue").PropType<boolean>;
|
98
98
|
};
|
99
|
+
toned: {
|
100
|
+
type: import("vue").PropType<boolean>;
|
101
|
+
};
|
99
102
|
customSchema: {
|
100
103
|
type: import("vue").PropType<boolean>;
|
101
104
|
};
|
@@ -226,6 +229,9 @@ declare const _default: {
|
|
226
229
|
enableDynamicColor: {
|
227
230
|
type: import("vue").PropType<boolean>;
|
228
231
|
};
|
232
|
+
toned: {
|
233
|
+
type: import("vue").PropType<boolean>;
|
234
|
+
};
|
229
235
|
customSchema: {
|
230
236
|
type: import("vue").PropType<boolean>;
|
231
237
|
};
|
@@ -349,6 +355,9 @@ declare const _default: {
|
|
349
355
|
enableDynamicColor: {
|
350
356
|
type: import("vue").PropType<boolean>;
|
351
357
|
};
|
358
|
+
toned: {
|
359
|
+
type: import("vue").PropType<boolean>;
|
360
|
+
};
|
352
361
|
customSchema: {
|
353
362
|
type: import("vue").PropType<boolean>;
|
354
363
|
};
|
@@ -458,6 +467,7 @@ declare const _default: {
|
|
458
467
|
themeDefinition?: ResolvedThemeDefinition;
|
459
468
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
460
469
|
"v-model"?: "background" | "primary" | "secondary" | "accent1" | ColorSchema | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic" | ColorSchemaTypes;
|
470
|
+
toned?: boolean;
|
461
471
|
defaultColorSchemaType?: "background" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "accent6" | "accent7" | "accent8" | "accent9" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
462
472
|
enableDynamicColor?: boolean;
|
463
473
|
customSchema?: boolean;
|
@@ -10,5 +10,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
10
10
|
modelValue?: InputBlueprint;
|
11
11
|
} & {
|
12
12
|
themeType?: ThemeContextType;
|
13
|
+
} & {
|
14
|
+
blueprintStrategy?: string;
|
13
15
|
} & DefineEmit<"click:confirm", (value: TabsBlueprint) => void> & DefineEmit<"init:actionButtons", (value: () => VNodeChild) => void>>) => any;
|
14
16
|
export default _default;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { ThemeContextType, ResolvedThemeDefinition } from "@omnia/fx-models";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
3
|
+
"emit:update:modelValue": (value: ResolvedThemeDefinition) => void;
|
4
|
+
} & {
|
5
|
+
"v-model"?: ResolvedThemeDefinition;
|
6
|
+
} & {
|
7
|
+
modelValue?: ResolvedThemeDefinition;
|
8
|
+
} & {
|
9
|
+
themeType?: ThemeContextType;
|
10
|
+
} & {
|
11
|
+
hideColorSchemas?: boolean;
|
12
|
+
} & {
|
13
|
+
toned?: boolean;
|
14
|
+
}>) => any;
|
15
|
+
export default _default;
|
@@ -37,6 +37,7 @@ export declare const builtInDocumeantionAreas: {
|
|
37
37
|
omfx: DocumentationArea;
|
38
38
|
velcron: DocumentationArea;
|
39
39
|
bestPractice: DocumentationArea;
|
40
|
+
theming: DocumentationArea;
|
40
41
|
};
|
41
42
|
export declare const builtInDocumentationCategories: {
|
42
43
|
containment: DocumentationCategory;
|
@@ -66,6 +67,9 @@ export declare const frameworkDocumentationCategories: {
|
|
66
67
|
export declare const bestPracticesCategories: {
|
67
68
|
typescript: DocumentationCategory;
|
68
69
|
};
|
70
|
+
export declare const themingCategories: {
|
71
|
+
preview: DocumentationCategory;
|
72
|
+
};
|
69
73
|
export interface ComponentSpecRegistration {
|
70
74
|
spec: DocumentationSpec;
|
71
75
|
category: DocumentationCategory;
|
@@ -102,6 +106,7 @@ export declare class DocumentationSpec {
|
|
102
106
|
private typeValueMapping;
|
103
107
|
private exampleComponents;
|
104
108
|
markdownSections: Array<MarkdownSection>;
|
109
|
+
customComponents: Array<string>;
|
105
110
|
themingSupport: boolean;
|
106
111
|
toneSupport: boolean;
|
107
112
|
cssClassSupport: boolean;
|
@@ -128,6 +133,7 @@ export declare class DocumentationSpec {
|
|
128
133
|
getTypeValueMapping(name: string): TypeValueMapping;
|
129
134
|
getExampleComponents(): Array<ExampleComponentSpec | VelcronExampleDefinitionSpec>;
|
130
135
|
addMarkdownSection(title: string, markdown: string): DocumentationSpec;
|
136
|
+
addCustomComponentRenderer(component: string): DocumentationSpec;
|
131
137
|
}
|
132
138
|
export declare class VelcronComponentSpec {
|
133
139
|
private name;
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./components/index.md";
|
@@ -1,22 +1,16 @@
|
|
1
1
|
declare const _default: {
|
2
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{}>>, () => import("vue").
|
3
|
-
[key: string]: any;
|
4
|
-
}>[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
5
3
|
P: {};
|
6
4
|
B: {};
|
7
5
|
D: {};
|
8
6
|
C: {};
|
9
7
|
M: {};
|
10
8
|
Defaults: {};
|
11
|
-
}, Readonly<import("vue").ExtractPropTypes<{}>>, () =>
|
12
|
-
[key: string]: any;
|
13
|
-
}>[], {}, {}, {}, {}>;
|
9
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
|
14
10
|
__isFragment?: never;
|
15
11
|
__isTeleport?: never;
|
16
12
|
__isSuspense?: never;
|
17
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => import("vue").
|
18
|
-
[key: string]: any;
|
19
|
-
}>[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
13
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
20
14
|
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
21
15
|
};
|
22
16
|
export default _default;
|
@@ -1,19 +1,5 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
size: number;
|
7
|
-
color: string;
|
8
|
-
private initals;
|
9
|
-
private backGroundColor;
|
10
|
-
static colors: string[];
|
11
|
-
private dataURI;
|
12
|
-
onNameUpdate(): void;
|
13
|
-
setBackgroundColor(): void;
|
14
|
-
mounted(): void;
|
15
|
-
getImageDataURI(): void;
|
16
|
-
getInitials(input: any): string;
|
17
|
-
startWithAlphanumeric(input: string): boolean;
|
18
|
-
render(): JSX.Element;
|
19
|
-
}
|
1
|
+
import { DefineProp } from "@omnia/fx/ux";
|
2
|
+
import { OSizeTypes } from "@omnia/fx-models";
|
3
|
+
type LetterAvatarProps = DefineProp<"name", string> & DefineProp<"size", OSizeTypes> & DefineProp<"color", string>;
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<LetterAvatarProps>) => any;
|
5
|
+
export default _default;
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { DefinePropTheming, DefineProp } from "@omnia/fx/ux";
|
2
|
-
type FormProps = DefinePropTheming & DefineProp<"class", String | String[]>;
|
2
|
+
type FormProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null>;
|
3
3
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<FormProps>) => any;
|
4
4
|
export default _default;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { DefineProp, DefinePropTheming, DefineSlot, DefineVModel } from "@omnia/fx/ux";
|
2
|
+
import { InputBlueprint } from "@omnia/fx/models";
|
3
|
+
import { VNodeChild } from "vue";
|
4
|
+
type PickerProps = DefinePropTheming & DefineVModel<"", any, false, null, false, "The v-model of the component"> & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null, "Sets the text of the component."> & DefineProp<"placeholder", string, false, null, "Sets the placeholder of the component."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineProp<"fullWidthSelection", boolean, false, null, "If the selected component takes over selection"> & DefineProp<"visibleOnContentClick", boolean, false, null, "Sets the component to disabled"> & DefineSlot<"selectionRenderer", () => VNodeChild> & DefineSlot<"activator", () => VNodeChild>;
|
5
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<PickerProps>) => any;
|
6
|
+
export default _default;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { OSelectTypes, TextBlueprint } from "@omnia/fx-models";
|
2
|
+
import { useColorSchemaStore, useTypographyBlueprintStore } from "@omnia/fx/ux";
|
3
|
+
export declare const PickerStyles: {
|
4
|
+
textAndFont: (textBlueprint: TextBlueprint, colors: ReturnType<typeof useColorSchemaStore>, typography: ReturnType<typeof useTypographyBlueprintStore>) => string;
|
5
|
+
iconWrapper: string;
|
6
|
+
iconNotExpanded: string;
|
7
|
+
iconExpanded: string;
|
8
|
+
selectorBackground: string;
|
9
|
+
selectorWrapper: (colors: ReturnType<typeof useColorSchemaStore>) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
10
|
+
overlay: (dark: boolean) => string;
|
11
|
+
componentWrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
12
|
+
componentVariantWrapper: (colors: ReturnType<typeof useColorSchemaStore>, variant: OSelectTypes, hasValue: boolean, hasLabel: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
13
|
+
};
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import { DefineEmit, DefineProp, DefinePropTheming, DefineVModel } from "@omnia/fx/ux";
|
2
|
+
import { InputBlueprint } from "@omnia/fx/models";
|
3
|
+
type PickerSelectionProps = DefinePropTheming & DefineVModel<"", any, false, null, false, "The v-model of the component"> & DefineProp<"class", String | String[]> & DefineProp<"label", string, false, null, "Sets the text of the component."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"disabled", boolean, false, null, "Sets the component to disabled"> & DefineProp<"clearable", boolean, false, null, "If a clear icon can be shown"> & DefineProp<"toned", boolean, false, null, "Sets the component to disabled"> & DefineEmit<"click:clear", () => void>;
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<PickerSelectionProps>) => any;
|
5
|
+
export default _default;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ExampleComponents: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const spec: import("@omnia/fx/ux").DocumentationSpec;
|
@@ -13,7 +13,7 @@ export interface OSelectSlots extends Omit<VSelectSlots, "item" | "selection" |
|
|
13
13
|
declare const defaultRules: ValidationRule[];
|
14
14
|
type SlotsWithReturnObject<TItem> = DefineSlot<"chip", (item: OSelectRenderingItem<ItemType<TItem>>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<ItemType<TItem>>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<ItemType<TItem>>, index: Number) => VNodeChild>;
|
15
15
|
type SlotsWithoutReturnObject = DefineSlot<"chip", (item: OSelectRenderingItem<any>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<any>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<any>, index: Number) => VNodeChild>;
|
16
|
-
type BaseProps<TItem, TReturnObject extends boolean> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", any, false, null, true, "The v-model of the component"> & DefineProp<"rules", ValidationRule[], false, typeof defaultRules, "Accepts a mixed array of types function. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string."> & DefineProp<"label", string, false, null, "Sets the label of the component."> & DefineProp<"hint", string, false, null, "Sets the hint of the component."> & DefineProp<"items", TItem, false, null, "TItem must be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the item-title, item-value and item-disabled props."> & DefineProp<"itemTitle", ItemValueType<ItemType<TItem>>, false, null, "Property on supplied items that contains its title."> & DefineProp<"itemValue", ItemValueType<ItemType<TItem>>, false, null, "Property on supplied items that contains its value."> & DefineProp<"variant", OSelectTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"returnObject", TReturnObject, false, null, "Changes the selection behavior to return the object directly rather than the value specified with item-value."> & DefineProp<"clearable", boolean, false, null, "Allows for the component to be cleared."> & DefineProp<"searchable", boolean, false, null, "Allows to searching when user typing."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"toned", boolean> & DefineProp<"readonly", boolean, false, null, "Puts input in readonly state."> & DefineProp<"multiple", boolean, false, false, "Multiple selection."> & DefineProp<"hideNoData", boolean, false, false, "Hidden no data message."> & DefineProp<"menuIcon", IIcon, false, null, "Custom menu icon."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the input."> & DefineProp<"persistentHint", boolean, false, null, "Forces hint to always be visible."> & DefineProp<"hideSelected", boolean, false, null, "Hide selected items from all items list."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> & DefineProp<"errorMessages", string | readonly string[], false, null, "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation."> & DefineProp<"error", boolean, false, false, "Puts the input in a manual error state."> & DefineEmit<"update:search", (value: string) => void, "Emit when search input value is changed. Only works when searchable prop is true."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineSlot<"append-item", () => VNodeChild> & DefineSlot<"prepend-inner", () => VNodeChild> & DefineSlot<"append-inner", () => VNodeChild> & DefineProp<"maxHeight", number, false, 300> & DefineProp<"itemHeight", number, false, 40>;
|
16
|
+
type BaseProps<TItem, TReturnObject extends boolean> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", any, false, null, true, "The v-model of the component"> & DefineProp<"rules", ValidationRule[], false, typeof defaultRules, "Accepts a mixed array of types function. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string."> & DefineProp<"label", string, false, null, "Sets the label of the component."> & DefineProp<"hint", string, false, null, "Sets the hint of the component."> & DefineProp<"items", TItem, false, null, "TItem must be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the item-title, item-value and item-disabled props."> & DefineProp<"itemTitle", ItemValueType<ItemType<TItem>>, false, null, "Property on supplied items that contains its title."> & DefineProp<"itemValue", ItemValueType<ItemType<TItem>>, false, null, "Property on supplied items that contains its value."> & DefineProp<"variant", OSelectTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"returnObject", TReturnObject, false, null, "Changes the selection behavior to return the object directly rather than the value specified with item-value."> & DefineProp<"clearable", boolean, false, null, "Allows for the component to be cleared."> & DefineProp<"searchable", boolean, false, null, "Allows to searching when user typing."> & DefineProp<"blueprint", InputBlueprint, false, null, "Sets a custom blueprint for the text."> & DefineProp<"toned", boolean> & DefineProp<"chips", boolean, false, false, "Puts input in readonly state."> & DefineProp<"readonly", boolean, false, null, "Puts input in readonly state."> & DefineProp<"multiple", boolean, false, false, "Multiple selection."> & DefineProp<"hideNoData", boolean, false, false, "Hidden no data message."> & DefineProp<"menuIcon", IIcon, false, null, "Custom menu icon."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the input."> & DefineProp<"persistentHint", boolean, false, null, "Forces hint to always be visible."> & DefineProp<"hideSelected", boolean, false, null, "Hide selected items from all items list."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> & DefineProp<"errorMessages", string | readonly string[], false, null, "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation."> & DefineProp<"error", boolean, false, false, "Puts the input in a manual error state."> & DefineEmit<"update:search", (value: string) => void, "Emit when search input value is changed. Only works when searchable prop is true."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineSlot<"append-item", () => VNodeChild> & DefineSlot<"prepend-inner", () => VNodeChild> & DefineSlot<"append-inner", () => VNodeChild> & DefineProp<"maxHeight", number, false, 300> & DefineProp<"itemHeight", number, false, 40>;
|
17
17
|
export type OSelectProps<TItem, TReturnObject extends boolean> = BaseProps<TItem, TReturnObject> & DefineType<TReturnObject extends true ? SlotsWithReturnObject<TItem> : SlotsWithoutReturnObject>;
|
18
18
|
declare const _default: <TItem extends readonly any[], TReturnObject extends boolean>(props: import("@omnia/fx/ux").ConstructComponentProps<OSelectProps<TItem, TReturnObject>>) => any;
|
19
19
|
export default _default;
|
@@ -3,5 +3,5 @@ import { useColorSchemaStore, useTypographyBlueprintStore } from "@omnia/fx/ux";
|
|
3
3
|
export declare const SelectStyles: {
|
4
4
|
textAndFont: (textBlueprint: TextBlueprint, colors: ReturnType<typeof useColorSchemaStore>, typography: ReturnType<typeof useTypographyBlueprintStore>) => string;
|
5
5
|
componentWrapper: Readonly<import("@omnia/fx/ux").StylexValue>;
|
6
|
-
componentVariantWrapper: (variant: OSelectTypes, hasValue: boolean, hasLabel: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
6
|
+
componentVariantWrapper: (colors: ReturnType<typeof useColorSchemaStore>, variant: OSelectTypes, hasValue: boolean, hasLabel: boolean) => Readonly<import("@omnia/fx/ux").StylexValue>;
|
7
7
|
};
|
@@ -67,6 +67,7 @@ import wc828a4c20542945858e792ec584148a5c from './ux/journey/JourneyMenu';
|
|
67
67
|
import wcd91fa8e10e3b4350bb158f9cbeace0e8 from './ux/journey/SettingsJourneyMenu';
|
68
68
|
import wc3392707566c844e39f57097aade4e81c from './ux/jsonexportimport/ExportImport';
|
69
69
|
import wc20b4e8166fb44f2b8b240724eb5f2db2 from './ux/languagepicker/LanguagePicker';
|
70
|
+
import wcfc7e793728e64099ab1b37b8f89e8693 from './ux/letteravatar/LetterAvatar';
|
70
71
|
import wc6c2ac8bf4da44a2b8e544eaf5b42099f from './ux/limited-label/LimitedLabel';
|
71
72
|
import wc9e7b4a48efba4dc390986eeb638b34cd from './ux/links/LinkPicker';
|
72
73
|
import wc4892102894624a4ca84e67df764cbe93 from './ux/links/LinkRenderer';
|
@@ -293,6 +294,8 @@ import wc48b4d391d03f4a01a9485b845917d229 from './ux/oxide/navigationdrawer/Navi
|
|
293
294
|
import wc16277e3059db453eb98ad6946d315c39 from './ux/oxide/notification/Notification';
|
294
295
|
import wcecbd3b3dbc834cf0856597772da1320c from './ux/oxide/pagination/Pagination';
|
295
296
|
import wc1d8d2a2328244f1eab96344841305976 from './ux/oxide/panel/Panel';
|
297
|
+
import wc3857ab99b85e440e9b7f7f58994ef84d from './ux/oxide/picker/Picker';
|
298
|
+
import wc6ccd40605ed148628cc8db37257ab282 from './ux/oxide/picker/PickerSelection';
|
296
299
|
import wc247719ac6d3843ec889face452544a21 from './ux/oxide/progress/Progress';
|
297
300
|
import wc48962186dfb94f37adc76f475b80015d from './ux/oxide/radio/RadioGroup';
|
298
301
|
import wc2d9c50d3dcb1421cafb8eab80be243a1 from './ux/oxide/radio/Radio';
|
@@ -393,7 +396,8 @@ import wcfd6b575dc7c44149ac3129492fc83aa6 from './ux/aurora/components/tabs/TabB
|
|
393
396
|
import wc287d666180644ba5ab5def0471a75a89 from './ux/aurora/components/textstylepicker/TextStylePicker';
|
394
397
|
import wc252ece0016594978b3ddfafdd59adda4 from './ux/aurora/components/themepicker/ThemePicker';
|
395
398
|
import wcb89e133162f54c1fb2cd6d03cc2e4fe2 from './ux/aurora/components/themepicker/ThemeEditor';
|
396
|
-
import wc73e1c232690249f78967e3e3f6d92bd7 from './ux/aurora/components/
|
399
|
+
import wc73e1c232690249f78967e3e3f6d92bd7 from './ux/aurora/components/themepreview/ThemePreview';
|
400
|
+
import wcc6eec07d48af435ab0c75195d9c7dcfc from './ux/aurora/components/themepreview/ComponentPreview';
|
397
401
|
import wc54730f05dd2c4f2da1c830b3985b36a9 from './ux/aurora/components/typography/TypographyPicker';
|
398
402
|
import wc99a73153b5c647da9d6de517f51e53f0 from './ux/aurora/components/typography/TypographyEditor';
|
399
403
|
import wc2f742a14a560434abb899360a69c314b from './ux/aurora/components/typography/TypographyBlueprintsViewer';
|
@@ -1605,6 +1609,15 @@ declare global {
|
|
1605
1609
|
};
|
1606
1610
|
} : typeof wc20b4e8166fb44f2b8b240724eb5f2db2;
|
1607
1611
|
};
|
1612
|
+
"letter": {
|
1613
|
+
"avatar": typeof wcfc7e793728e64099ab1b37b8f89e8693 extends {
|
1614
|
+
propsDefinition: infer TProp;
|
1615
|
+
} ? {
|
1616
|
+
new (...args: any[]): {
|
1617
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1618
|
+
};
|
1619
|
+
} : typeof wcfc7e793728e64099ab1b37b8f89e8693;
|
1620
|
+
};
|
1608
1621
|
"limited": {
|
1609
1622
|
"label": typeof wc6c2ac8bf4da44a2b8e544eaf5b42099f extends {
|
1610
1623
|
propsDefinition: infer TProp;
|
@@ -2775,6 +2788,15 @@ declare global {
|
|
2775
2788
|
};
|
2776
2789
|
} : typeof wc73e1c232690249f78967e3e3f6d92bd7;
|
2777
2790
|
};
|
2791
|
+
"component": {
|
2792
|
+
"preview": typeof wcc6eec07d48af435ab0c75195d9c7dcfc extends {
|
2793
|
+
propsDefinition: infer TProp;
|
2794
|
+
} ? {
|
2795
|
+
new (...args: any[]): {
|
2796
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
2797
|
+
};
|
2798
|
+
} : typeof wcc6eec07d48af435ab0c75195d9c7dcfc;
|
2799
|
+
};
|
2778
2800
|
"designer": {
|
2779
2801
|
"preview": typeof wc136c9c57149747f198180bdf38a6b297 extends {
|
2780
2802
|
propsDefinition: infer TProp;
|
@@ -5069,6 +5091,22 @@ declare global {
|
|
5069
5091
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5070
5092
|
};
|
5071
5093
|
} : typeof wc1d8d2a2328244f1eab96344841305976;
|
5094
|
+
"picker": {
|
5095
|
+
"wrapper": typeof wc3857ab99b85e440e9b7f7f58994ef84d extends {
|
5096
|
+
propsDefinition: infer TProp;
|
5097
|
+
} ? {
|
5098
|
+
new (...args: any[]): {
|
5099
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5100
|
+
};
|
5101
|
+
} : typeof wc3857ab99b85e440e9b7f7f58994ef84d;
|
5102
|
+
"selection": typeof wc6ccd40605ed148628cc8db37257ab282 extends {
|
5103
|
+
propsDefinition: infer TProp;
|
5104
|
+
} ? {
|
5105
|
+
new (...args: any[]): {
|
5106
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5107
|
+
};
|
5108
|
+
} : typeof wc6ccd40605ed148628cc8db37257ab282;
|
5109
|
+
};
|
5072
5110
|
"progress": typeof wc247719ac6d3843ec889face452544a21 extends {
|
5073
5111
|
propsDefinition: infer TProp;
|
5074
5112
|
} ? {
|
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.343-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.343-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker copy.d.ts
DELETED
File without changes
|
@@ -1,23 +0,0 @@
|
|
1
|
-
import { TsxAllowUnknowProperties } from "..";
|
2
|
-
export interface ILetterAvatarProperties {
|
3
|
-
name?: string;
|
4
|
-
size?: number;
|
5
|
-
color?: string;
|
6
|
-
}
|
7
|
-
/**Letter Avatar */
|
8
|
-
export interface ILetterAvatar extends ILetterAvatarProperties {
|
9
|
-
[name: string]: any;
|
10
|
-
}
|
11
|
-
declare global {
|
12
|
-
namespace JSX {
|
13
|
-
interface Element {
|
14
|
-
}
|
15
|
-
interface ElementClass {
|
16
|
-
}
|
17
|
-
interface ElementAttributesProperty {
|
18
|
-
}
|
19
|
-
interface IntrinsicElements {
|
20
|
-
"omfx-letter-avatar": TsxAllowUnknowProperties<ILetterAvatar>;
|
21
|
-
}
|
22
|
-
}
|
23
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
export declare const letterAvatarWrapper: string;
|
@@ -1 +0,0 @@
|
|
1
|
-
export * from "./ILetterAvatar";
|