@vygruppen/spor-react 12.3.3 → 12.3.5
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 +1 -1
- package/CHANGELOG.md +13 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/input/PhoneNumberInput.tsx +2 -0
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.3.
|
2
|
+
> @vygruppen/spor-react@12.3.5 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
|
-
CJS dist/index.js 315.
|
14
|
-
CJS dist/index.js.map 633.
|
15
|
-
CJS ⚡️ Build success in
|
16
|
-
ESM dist/index.mjs 294.
|
17
|
-
ESM dist/index.mjs.map 633.
|
18
|
-
ESM ⚡️ Build success in
|
19
|
-
DTS ⚡️ Build success in
|
13
|
+
CJS dist/index.js 315.48 KB
|
14
|
+
CJS dist/index.js.map 633.72 KB
|
15
|
+
CJS ⚡️ Build success in 2757ms
|
16
|
+
ESM dist/index.mjs 294.85 KB
|
17
|
+
ESM dist/index.mjs.map 633.72 KB
|
18
|
+
ESM ⚡️ Build success in 2758ms
|
19
|
+
DTS ⚡️ Build success in 23171ms
|
20
20
|
DTS dist/index.d.ts 129.65 KB
|
21
21
|
DTS dist/index.d.mts 129.65 KB
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 12.3.5
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 8575c1b: make @chakra-ui/cli a dependency in package.json to run postinstall script
|
8
|
+
|
9
|
+
## 12.3.4
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- 646f611: PhoneNumberInput: Wrapped CountryCodeSelect and Input in Box and added Flex values
|
14
|
+
- 3d79d62: Patch lottie-web to work with newer versions of node (node > 20)
|
15
|
+
|
3
16
|
## 12.3.3
|
4
17
|
|
5
18
|
### Patch Changes
|
package/dist/index.js
CHANGED
@@ -4230,6 +4230,8 @@ var PhoneNumberInput = React28.forwardRef((props, ref) => {
|
|
4230
4230
|
outline: invalid ? "1px solid" : "none",
|
4231
4231
|
outlineColor: invalid ? "outline.error" : "none",
|
4232
4232
|
borderRadius: invalid ? "sm" : "none",
|
4233
|
+
display: "grid",
|
4234
|
+
gridTemplateColumns: "1fr 10fr",
|
4233
4235
|
children: /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
4234
4236
|
/* @__PURE__ */ jsxRuntime.jsx(
|
4235
4237
|
CountryCodeSelect,
|