@vygruppen/spor-react 2.0.1 → 2.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 +10 -8
- package/CHANGELOG.md +12 -0
- package/dist/CountryCodeSelect-AH34A2N4.mjs +6629 -0
- package/dist/chunk-XYGGYJ2I.mjs +13978 -0
- package/dist/index.d.ts +123 -50
- package/dist/index.js +19766 -11336
- package/dist/index.mjs +1 -13822
- package/package.json +4 -4
- package/src/datepicker/DateTimeSegment.tsx +1 -0
- package/src/datepicker/TimePicker.tsx +0 -1
- package/src/input/AttachedInputs.tsx +55 -0
- package/src/input/CardSelect.tsx +1 -0
- package/src/input/CountryCodeSelect.tsx +52 -0
- package/src/input/FormErrorMessage.tsx +6 -2
- package/src/input/InfoSelect.tsx +37 -9
- package/src/input/Input.tsx +6 -5
- package/src/input/NativeSelect.tsx +6 -1
- package/src/input/PasswordInput.tsx +1 -0
- package/src/input/PhoneNumberInput.tsx +113 -0
- package/src/input/SearchInput.tsx +1 -0
- package/src/input/index.tsx +2 -0
- package/src/theme/components/datepicker.ts +0 -1
- package/src/theme/components/info-select.ts +8 -7
- package/src/theme/components/input.ts +8 -6
- package/src/theme/components/select.ts +1 -1
- package/src/theme/utils/sr-utils.ts +13 -0
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@2.0
|
2
|
+
> @vygruppen/spor-react@2.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
|
@@ -8,12 +8,14 @@
|
|
8
8
|
[34mCLI[39m Target: node14
|
9
9
|
[34mCJS[39m Build start
|
10
10
|
[34mESM[39m Build start
|
11
|
-
"toTime" is imported from external module "@internationalized/date" but never used in "dist/index.mjs".
|
12
11
|
[34mDTS[39m Build start
|
13
|
-
|
14
|
-
[32mESM[39m
|
12
|
+
"toTime" is imported from external module "@internationalized/date" but never used in "dist/chunk-XYGGYJ2I.mjs".
|
13
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m1.96 KB[39m
|
14
|
+
[32mESM[39m [1mdist/CountryCodeSelect-AH34A2N4.mjs [22m[32m351.43 KB[39m
|
15
|
+
[32mESM[39m [1mdist/chunk-XYGGYJ2I.mjs [22m[32m400.22 KB[39m
|
16
|
+
[32mESM[39m ⚡️ Build success in 2690ms
|
15
17
|
"toTime" is imported from external module "@internationalized/date" but never used in "dist/index.js".
|
16
|
-
[32mCJS[39m [1mdist/index.js [22m[
|
17
|
-
[32mCJS[39m ⚡️ Build success in
|
18
|
-
[32mDTS[39m ⚡️ Build success in
|
19
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
18
|
+
[32mCJS[39m [1mdist/index.js [22m[32m876.75 KB[39m
|
19
|
+
[32mCJS[39m ⚡️ Build success in 4372ms
|
20
|
+
[32mDTS[39m ⚡️ Build success in 18129ms
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m251.13 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 2.1.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 29ace9be: Add new components – PhoneNumberInput and AttachedInputs
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- 08cf2ccc: Set the correct text size on all inputs and selects
|
12
|
+
- Updated dependencies [f48edb9f]
|
13
|
+
- @vygruppen/spor-icon-react@3.0.0
|
14
|
+
|
3
15
|
## 2.0.1
|
4
16
|
|
5
17
|
### Patch Changes
|