@vygruppen/spor-react 13.4.5 → 13.4.6
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 +8 -8
- package/.turbo/turbo-postinstall.log +4 -3
- package/CHANGELOG.md +10 -0
- package/dist/index.cjs +10 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/theme/slot-recipes/select.ts +11 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @vygruppen/spor-react@13.4.
|
|
2
|
+
> @vygruppen/spor-react@13.4.6 build /home/runner/work/spor/spor/packages/spor-react
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
CLI Building entry: src/index.tsx, src/icons/index.tsx
|
|
@@ -11,17 +11,17 @@ CLI Cleaning output folder
|
|
|
11
11
|
ESM Build start
|
|
12
12
|
CJS Build start
|
|
13
13
|
DTS Build start
|
|
14
|
-
ESM dist/index.mjs 351.
|
|
14
|
+
ESM dist/index.mjs 351.42 KB
|
|
15
15
|
ESM dist/icons/index.mjs 110.00 B
|
|
16
|
-
ESM dist/index.mjs.map 747.
|
|
16
|
+
ESM dist/index.mjs.map 747.49 KB
|
|
17
17
|
ESM dist/icons/index.mjs.map 157.00 B
|
|
18
|
-
ESM ⚡️ Build success in
|
|
19
|
-
CJS dist/index.cjs
|
|
18
|
+
ESM ⚡️ Build success in 2649ms
|
|
19
|
+
CJS dist/index.cjs 376.00 KB
|
|
20
20
|
CJS dist/icons/index.cjs 381.00 B
|
|
21
|
-
CJS dist/index.cjs.map 747.03 KB
|
|
22
21
|
CJS dist/icons/index.cjs.map 157.00 B
|
|
23
|
-
CJS
|
|
24
|
-
|
|
22
|
+
CJS dist/index.cjs.map 747.49 KB
|
|
23
|
+
CJS ⚡️ Build success in 2649ms
|
|
24
|
+
DTS ⚡️ Build success in 20906ms
|
|
25
25
|
DTS dist/icons/index.d.ts 44.00 B
|
|
26
26
|
DTS dist/index.d.ts 154.14 KB
|
|
27
27
|
DTS dist/icons/index.d.cts 44.00 B
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
> @vygruppen/spor-react@13.4.
|
|
2
|
+
> @vygruppen/spor-react@13.4.6 postinstall /home/runner/work/spor/spor/packages/spor-react
|
|
3
3
|
> chakra typegen src/theme/index.ts
|
|
4
4
|
|
|
5
|
-
◇ injected env (0) from .env // tip: ⌘
|
|
5
|
+
◇ injected env (0) from .env // tip: ⌘ suppress logs { quiet: true }
|
|
6
6
|
[90m┌[39m Chakra CLI ⚡️
|
|
7
7
|
[?25l[90m│[39m
|
|
8
|
-
[
|
|
8
|
+
[35m◒[39m Generating conditions types...
|
|
9
|
+
[1G[J[32m◇[39m ✅ Generated conditions typings
|
|
9
10
|
[?25h[?25l[90m│[39m
|
|
10
11
|
[35m◒[39m Generating recipe types...
|
|
11
12
|
[1G[J[32m◇[39m ✅ Generated recipe typings
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @vygruppen/spor-react
|
|
2
2
|
|
|
3
|
+
## 13.4.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4500a7b: Select: Fix border radius and spacing when dropdown opens above the trigger
|
|
8
|
+
- Updated dependencies [cc9028e]
|
|
9
|
+
- Updated dependencies [5ee8079]
|
|
10
|
+
- @vygruppen/spor-design-tokens@5.0.6
|
|
11
|
+
- @vygruppen/spor-icon-react@5.0.2
|
|
12
|
+
|
|
3
13
|
## 13.4.5
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -11387,6 +11387,12 @@ var selectSlotRecipe = react.defineSlotRecipe({
|
|
|
11387
11387
|
listStyle: "none",
|
|
11388
11388
|
borderBottomRadius: "sm",
|
|
11389
11389
|
marginTop: -1,
|
|
11390
|
+
"&[data-placement^='top']": {
|
|
11391
|
+
borderTopRadius: "sm",
|
|
11392
|
+
borderBottomRadius: 0,
|
|
11393
|
+
marginTop: 0,
|
|
11394
|
+
marginBottom: -1
|
|
11395
|
+
},
|
|
11390
11396
|
_open: {
|
|
11391
11397
|
animationStyle: "slide-fade-in",
|
|
11392
11398
|
animationDuration: "fast",
|
|
@@ -11455,6 +11461,10 @@ var selectSlotRecipe = react.defineSlotRecipe({
|
|
|
11455
11461
|
_open: {
|
|
11456
11462
|
borderBottomRadius: 0
|
|
11457
11463
|
},
|
|
11464
|
+
"&:has([data-placement^='top'][data-state='open'])": {
|
|
11465
|
+
borderTopRadius: 0,
|
|
11466
|
+
borderBottomRadius: "sm"
|
|
11467
|
+
},
|
|
11458
11468
|
_invalid: {
|
|
11459
11469
|
outline: "2px solid",
|
|
11460
11470
|
outlineColor: "outline.error"
|