@vygruppen/spor-react 3.0.4 → 3.1.1
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 +21 -0
- package/dist/{CountryCodeSelect-PXKYFQHM.mjs → CountryCodeSelect-PU2FEIUH.mjs} +308 -423
- package/dist/{chunk-ETCK74GR.mjs → chunk-GIRK7GTN.mjs} +473 -497
- package/dist/index.d.ts +114 -107
- package/dist/index.js +1378 -1413
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
- package/src/accordion/Expandable.tsx +2 -2
- package/src/alert/ExpandableAlert.tsx +2 -1
- package/src/datepicker/DateField.tsx +3 -1
- package/src/datepicker/DateTimeSegment.tsx +2 -1
- package/src/datepicker/TimeField.tsx +3 -1
- package/src/datepicker/TimePicker.tsx +4 -4
- package/src/input/Combobox.tsx +3 -7
- package/src/input/Popover.tsx +17 -9
- package/src/input/Textarea.tsx +12 -6
- package/src/loader/SkeletonText.tsx +3 -2
- package/src/theme/components/textarea.ts +9 -1
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@3.
|
2
|
+
> @vygruppen/spor-react@3.1.1 build
|
3
3
|
> tsup src/index.tsx --dts --treeshake --format cjs,esm
|
4
4
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
@@ -9,13 +9,13 @@
|
|
9
9
|
[34mCJS[39m Build start
|
10
10
|
[34mESM[39m Build start
|
11
11
|
[34mDTS[39m Build start
|
12
|
-
"toTime"
|
13
|
-
"toTime"
|
12
|
+
"toZoned" and "toTime" are imported from external module "@internationalized/date" but never used in "dist/index.js".
|
13
|
+
"toZoned" and "toTime" are imported from external module "@internationalized/date" but never used in "dist/chunk-GIRK7GTN.mjs".
|
14
|
+
[32mCJS[39m [1mdist/index.js [22m[32m901.12 KB[39m
|
15
|
+
[32mCJS[39m ⚡️ Build success in 5792ms
|
14
16
|
[32mESM[39m [1mdist/index.mjs [22m[32m2.01 KB[39m
|
15
|
-
[32mESM[39m [1mdist/CountryCodeSelect-
|
16
|
-
[32mESM[39m [1mdist/chunk-
|
17
|
-
[32mESM[39m ⚡️ Build success in
|
18
|
-
[
|
19
|
-
[
|
20
|
-
[32mDTS[39m ⚡️ Build success in 17743ms
|
21
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m259.22 KB[39m
|
17
|
+
[32mESM[39m [1mdist/CountryCodeSelect-PU2FEIUH.mjs [22m[32m350.82 KB[39m
|
18
|
+
[32mESM[39m [1mdist/chunk-GIRK7GTN.mjs [22m[32m418.55 KB[39m
|
19
|
+
[32mESM[39m ⚡️ Build success in 5793ms
|
20
|
+
[32mDTS[39m ⚡️ Build success in 21467ms
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m250.91 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 3.1.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- ffaf999e: Add the possibility to not use overlay in PopOver.
|
8
|
+
- fc9d0b88: Fix paddings and text color in DatePicker and TimePicker
|
9
|
+
- 81aed3c7: Fix Expandable title
|
10
|
+
- dec74c7d: Update react-aria
|
11
|
+
- 615e1a46: Propagate Box props through ExpandableAlert
|
12
|
+
|
13
|
+
## 3.1.0
|
14
|
+
|
15
|
+
### Minor Changes
|
16
|
+
|
17
|
+
- a522876f: Adds floating label variant on TextArea
|
18
|
+
|
19
|
+
### Patch Changes
|
20
|
+
|
21
|
+
- 003cefc9: Combobox: Fix some behavioral issues with opening and closing
|
22
|
+
- 0a6ddedb: SkeletonText: export props directly from Chakra
|
23
|
+
|
3
24
|
## 3.0.4
|
4
25
|
|
5
26
|
### Patch Changes
|