@vygruppen/spor-react 2.0.1 → 2.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 -8
- package/CHANGELOG.md +18 -0
- package/dist/CountryCodeSelect-EO6T7EEK.mjs +6629 -0
- package/dist/chunk-5HQ3SCBT.mjs +13978 -0
- package/dist/index.d.ts +123 -50
- package/dist/index.js +19792 -11366
- 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/stepper/StepperStep.tsx +1 -1
- 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.
|
2
|
+
> @vygruppen/spor-react@2.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
|
@@ -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 ⚡️ Build success in 1767ms
|
12
|
+
"toTime" is imported from external module "@internationalized/date" but never used in "dist/chunk-5HQ3SCBT.mjs".
|
15
13
|
"toTime" is imported from external module "@internationalized/date" but never used in "dist/index.js".
|
16
|
-
[
|
17
|
-
[
|
18
|
-
[
|
19
|
-
[
|
14
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m1.96 KB[39m
|
15
|
+
[32mESM[39m [1mdist/CountryCodeSelect-EO6T7EEK.mjs [22m[32m351.43 KB[39m
|
16
|
+
[32mESM[39m [1mdist/chunk-5HQ3SCBT.mjs [22m[32m400.22 KB[39m
|
17
|
+
[32mESM[39m ⚡️ Build success in 4766ms
|
18
|
+
[32mCJS[39m [1mdist/index.js [22m[32m876.65 KB[39m
|
19
|
+
[32mCJS[39m ⚡️ Build success in 4768ms
|
20
|
+
[32mDTS[39m ⚡️ Build success in 17306ms
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m251.13 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 2.1.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 0559a3f9: Fix broken dependency
|
8
|
+
|
9
|
+
## 2.1.0
|
10
|
+
|
11
|
+
### Minor Changes
|
12
|
+
|
13
|
+
- 29ace9be: Add new components – PhoneNumberInput and AttachedInputs
|
14
|
+
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- 08cf2ccc: Set the correct text size on all inputs and selects
|
18
|
+
- Updated dependencies [f48edb9f]
|
19
|
+
- @vygruppen/spor-icon-react@3.0.0
|
20
|
+
|
3
21
|
## 2.0.1
|
4
22
|
|
5
23
|
### Patch Changes
|