@vygruppen/spor-react 11.3.8 → 11.3.10
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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +12 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/layout/RadioCard.tsx +1 -0
- package/src/theme/components/select.ts +8 -0
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@11.3.
|
2
|
+
> @vygruppen/spor-react@11.3.10 build /home/runner/work/spor/spor/packages/spor-react
|
3
3
|
> tsup
|
4
4
|
|
5
5
|
CLI Building entry: src/index.tsx
|
@@ -10,12 +10,12 @@ CLI Target: node16
|
|
10
10
|
CJS Build start
|
11
11
|
ESM Build start
|
12
12
|
DTS Build start
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
DTS ⚡️ Build success in
|
20
|
-
DTS dist/index.d.ts 342.
|
21
|
-
DTS dist/index.d.mts 342.
|
13
|
+
CJS dist/index.js 288.32 KB
|
14
|
+
CJS dist/index.js.map 592.61 KB
|
15
|
+
CJS ⚡️ Build success in 2340ms
|
16
|
+
ESM dist/index.mjs 269.43 KB
|
17
|
+
ESM dist/index.mjs.map 592.61 KB
|
18
|
+
ESM ⚡️ Build success in 2342ms
|
19
|
+
DTS ⚡️ Build success in 16835ms
|
20
|
+
DTS dist/index.d.ts 342.21 KB
|
21
|
+
DTS dist/index.d.mts 342.21 KB
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 11.3.10
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- a3f39e5: Update RadioCard to specify input value
|
8
|
+
|
9
|
+
## 11.3.9
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- d05f2af: Fix white text on white background in NativeSelect's options on Windows
|
14
|
+
|
3
15
|
## 11.3.8
|
4
16
|
|
5
17
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
@@ -5920,6 +5920,10 @@ declare const theme: {
|
|
5920
5920
|
transformOrigin: string;
|
5921
5921
|
transform: ("scale(0.825) translateY(-12px)" | "scale(0.825) translateY(-14px)")[];
|
5922
5922
|
};
|
5923
|
+
"& option, & optgroup": {
|
5924
|
+
color: string;
|
5925
|
+
backgroundColor: string;
|
5926
|
+
};
|
5923
5927
|
};
|
5924
5928
|
field: {
|
5925
5929
|
appearance: string;
|
package/dist/index.d.ts
CHANGED
@@ -5920,6 +5920,10 @@ declare const theme: {
|
|
5920
5920
|
transformOrigin: string;
|
5921
5921
|
transform: ("scale(0.825) translateY(-12px)" | "scale(0.825) translateY(-14px)")[];
|
5922
5922
|
};
|
5923
|
+
"& option, & optgroup": {
|
5924
|
+
color: string;
|
5925
|
+
backgroundColor: string;
|
5926
|
+
};
|
5923
5927
|
};
|
5924
5928
|
field: {
|
5925
5929
|
appearance: string;
|
package/dist/index.js
CHANGED
@@ -1456,6 +1456,7 @@ var RadioCard = react.forwardRef(
|
|
1456
1456
|
type: "radio",
|
1457
1457
|
id: inputId,
|
1458
1458
|
name,
|
1459
|
+
value,
|
1459
1460
|
ref,
|
1460
1461
|
checked: isChecked,
|
1461
1462
|
onChange: () => onChange(value),
|
@@ -8176,6 +8177,13 @@ var config34 = helpers27.defineMultiStyleConfig({
|
|
8176
8177
|
"scale(0.825) translateY(-12px)",
|
8177
8178
|
"scale(0.825) translateY(-14px)"
|
8178
8179
|
]
|
8180
|
+
},
|
8181
|
+
"& option, & optgroup": {
|
8182
|
+
color: themeTools.mode("text.default.light", "text.default.dark")(props),
|
8183
|
+
backgroundColor: themeTools.mode(
|
8184
|
+
"surface.default.light",
|
8185
|
+
"surface.default.dark"
|
8186
|
+
)(props)
|
8179
8187
|
}
|
8180
8188
|
},
|
8181
8189
|
field: {
|