@omnia/fx 8.0.107-dev → 8.0.108-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.
@@ -6,3 +6,10 @@ export declare const colors: stylex.VarGroup<Readonly<{
|
|
6
6
|
background: string;
|
7
7
|
lineColor: string;
|
8
8
|
}>, symbol>;
|
9
|
+
export declare const dracula: stylex.Theme<stylex.VarGroup<Readonly<{
|
10
|
+
primaryText: string;
|
11
|
+
secondaryText: string;
|
12
|
+
accent: string;
|
13
|
+
background: string;
|
14
|
+
lineColor: string;
|
15
|
+
}>, symbol>, symbol>;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { DefineSlot,
|
1
|
+
import { DefineSlot, SelectItemKey, ValidationRule } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
import { OSelectRenderingItem } from "@omnia/fx-models";
|
4
4
|
import { VSelectSlots } from "../../ComponentTypings";
|
@@ -547,9 +547,9 @@ declare const _default: <T extends unknown, V extends unknown>(props: {
|
|
547
547
|
} & {
|
548
548
|
items?: T[];
|
549
549
|
} & {
|
550
|
-
itemTitle?: SelectItemKey<
|
550
|
+
itemTitle?: SelectItemKey<T>;
|
551
551
|
} & {
|
552
|
-
itemValue?: SelectItemKey<
|
552
|
+
itemValue?: SelectItemKey<T>;
|
553
553
|
} & {
|
554
554
|
variant?: "default" | "add" | "picker" | "combobox";
|
555
555
|
} & {
|
@@ -1158,9 +1158,9 @@ declare const _default: <T extends unknown, V extends unknown>(props: {
|
|
1158
1158
|
} & {
|
1159
1159
|
items?: T[];
|
1160
1160
|
} & {
|
1161
|
-
itemTitle?: SelectItemKey<
|
1161
|
+
itemTitle?: SelectItemKey<T>;
|
1162
1162
|
} & {
|
1163
|
-
itemValue?: SelectItemKey<
|
1163
|
+
itemValue?: SelectItemKey<T>;
|
1164
1164
|
} & {
|
1165
1165
|
variant?: "default" | "add" | "picker" | "combobox";
|
1166
1166
|
} & {
|
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.108-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": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.108-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|