@vygruppen/spor-react 12.20.0 → 12.20.2

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @vygruppen/spor-react@12.20.0 build /home/runner/work/spor/spor/packages/spor-react
2
+ > @vygruppen/spor-react@12.20.2 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 313.76 KB
15
- ESM dist/icons/index.mjs 110.00 B
16
- ESM dist/index.mjs.map 668.21 KB
17
- ESM dist/icons/index.mjs.map 157.00 B
18
- ESM ⚡️ Build success in 2607ms
14
+ CJS dist/index.cjs 337.20 KB
19
15
  CJS dist/icons/index.cjs 381.00 B
20
- CJS dist/index.cjs 337.04 KB
21
16
  CJS dist/icons/index.cjs.map 157.00 B
22
- CJS dist/index.cjs.map 668.21 KB
23
- CJS ⚡️ Build success in 2608ms
24
- DTS ⚡️ Build success in 18691ms
17
+ CJS dist/index.cjs.map 668.38 KB
18
+ CJS ⚡️ Build success in 2728ms
19
+ ESM dist/index.mjs 313.92 KB
20
+ ESM dist/icons/index.mjs 110.00 B
21
+ ESM dist/icons/index.mjs.map 157.00 B
22
+ ESM dist/index.mjs.map 668.38 KB
23
+ ESM ⚡️ Build success in 2730ms
24
+ DTS ⚡️ Build success in 19350ms
25
25
  DTS dist/icons/index.d.ts 44.00 B
26
26
  DTS dist/index.d.ts 158.95 KB
27
27
  DTS dist/icons/index.d.cts 44.00 B
@@ -1,11 +1,12 @@
1
1
 
2
- > @vygruppen/spor-react@12.20.0 postinstall /home/runner/work/spor/spor/packages/spor-react
2
+ > @vygruppen/spor-react@12.20.2 postinstall /home/runner/work/spor/spor/packages/spor-react
3
3
  > chakra typegen src/theme/index.ts
4
4
 
5
- [dotenv@17.2.2] injecting env (0) from .env -- tip: 📡 observe env with Radar: https://dotenvx.com/radar
5
+ [dotenv@17.2.2] injecting env (0) from .env -- tip: ⚙️ enable debug logging with { debug: true }
6
6
  ┌ Chakra CLI ⚡️
7
7
  [?25l│
8
- ◇ Generated conditions typings
8
+ ◒ Generating conditions types...
9
+ ◇ ✅ Generated conditions typings
9
10
  [?25h[?25l│
10
11
  ◒ Generating recipe types...
11
12
  ◇ ✅ Generated recipe typings
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @vygruppen/spor-react
2
2
 
3
+ ## 12.20.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 322ba1b: Improve check for ssr for Select content
8
+
9
+ ## 12.20.1
10
+
11
+ ### Patch Changes
12
+
13
+ - b3659ad: Don't render SelectContent portalled on server side"
14
+
3
15
  ## 12.20.0
4
16
 
5
17
  ### Minor Changes
package/dist/index.cjs CHANGED
@@ -4127,7 +4127,14 @@ var Select = React29__namespace.forwardRef(
4127
4127
  children: [
4128
4128
  /* @__PURE__ */ jsxRuntime.jsx(SelectTrigger, { "data-attachable": true, children: /* @__PURE__ */ jsxRuntime.jsx(SelectValueText, { withPlaceholder: label ? true : false }) }),
4129
4129
  label && /* @__PURE__ */ jsxRuntime.jsx(SelectLabel, { css: styles.label, children: label }),
4130
- /* @__PURE__ */ jsxRuntime.jsx(SelectContent, { css: styles.selectContent, children })
4130
+ /* @__PURE__ */ jsxRuntime.jsx(
4131
+ SelectContent,
4132
+ {
4133
+ css: styles.selectContent,
4134
+ portalled: typeof document !== "undefined",
4135
+ children
4136
+ }
4137
+ )
4131
4138
  ]
4132
4139
  }
4133
4140
  )