@vygruppen/spor-react 3.0.3 → 3.1.0
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 +9 -9
- package/CHANGELOG.md +18 -0
- package/dist/{CountryCodeSelect-7ASYXAQD.mjs → CountryCodeSelect-WPMTKT2L.mjs} +308 -423
- package/dist/{chunk-B2RY6AU2.mjs → chunk-V6MFUVYF.mjs} +407 -371
- package/dist/index.d.ts +116 -110
- package/dist/index.js +1014 -989
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/datepicker/DateField.tsx +47 -27
- package/src/datepicker/DatePicker.tsx +122 -107
- package/src/datepicker/DateTimeSegment.tsx +41 -32
- package/src/input/Combobox.tsx +3 -7
- package/src/input/Popover.tsx +7 -1
- 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.0
|
2
|
+
> @vygruppen/spor-react@3.1.0 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" is imported from external module "@internationalized/date" but never used in "dist/chunk-V6MFUVYF.mjs".
|
12
13
|
"toTime" is imported from external module "@internationalized/date" but never used in "dist/index.js".
|
13
|
-
"toTime" is imported from external module "@internationalized/date" but never used in "dist/chunk-B2RY6AU2.mjs".
|
14
|
-
[32mCJS[39m [1mdist/index.js [22m[32m896.58 KB[39m
|
15
|
-
[32mCJS[39m ⚡️ Build success in 5703ms
|
16
14
|
[32mESM[39m [1mdist/index.mjs [22m[32m2.01 KB[39m
|
17
|
-
[32mESM[39m [1mdist/CountryCodeSelect-
|
18
|
-
[32mESM[39m [1mdist/chunk-
|
19
|
-
[32mESM[39m ⚡️ Build success in
|
20
|
-
[
|
21
|
-
[
|
15
|
+
[32mESM[39m [1mdist/CountryCodeSelect-WPMTKT2L.mjs [22m[32m350.82 KB[39m
|
16
|
+
[32mESM[39m [1mdist/chunk-V6MFUVYF.mjs [22m[32m417.44 KB[39m
|
17
|
+
[32mESM[39m ⚡️ Build success in 5288ms
|
18
|
+
[32mCJS[39m [1mdist/index.js [22m[32m899.96 KB[39m
|
19
|
+
[32mCJS[39m ⚡️ Build success in 5289ms
|
20
|
+
[32mDTS[39m ⚡️ Build success in 18707ms
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m250.87 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 3.1.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- a522876f: Adds floating label variant on TextArea
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- 003cefc9: Combobox: Fix some behavioral issues with opening and closing
|
12
|
+
- 0a6ddedb: SkeletonText: export props directly from Chakra
|
13
|
+
|
14
|
+
## 3.0.4
|
15
|
+
|
16
|
+
### Patch Changes
|
17
|
+
|
18
|
+
- 6cbe41ca: Combobox: Remove popover backdrop
|
19
|
+
- 3d852b87: Datepicker: Add ref support
|
20
|
+
|
3
21
|
## 3.0.3
|
4
22
|
|
5
23
|
### Patch Changes
|