@vygruppen/spor-react 2.3.3 → 2.4.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 -10
- package/CHANGELOG.md +16 -0
- package/dist/{CountryCodeSelect-WGG2Z3VI.mjs → CountryCodeSelect-5DBHKSF3.mjs} +2 -2
- package/dist/{chunk-QXVLVC2K.mjs → chunk-D5OFVN6X.mjs} +406 -269
- package/dist/index.d.ts +207 -64
- package/dist/index.js +468 -310
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/input/Autosuggest.tsx +102 -0
- package/src/input/Combobox.tsx +105 -0
- package/src/input/FormErrorMessage.tsx +1 -1
- package/src/input/InfoSelect.tsx +12 -8
- package/src/input/ListBox.tsx +169 -80
- package/src/input/NumericStepper.tsx +1 -1
- package/src/input/PhoneNumberInput.tsx +1 -1
- package/src/input/Popover.tsx +39 -32
- package/src/input/index.tsx +3 -1
- package/src/loader/DarkSpinner.tsx +2 -2
- package/src/theme/components/listbox.ts +4 -4
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@2.
|
2
|
+
> @vygruppen/spor-react@2.4.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-D5OFVN6X.mjs".
|
12
13
|
"toTime" is imported from external module "@internationalized/date" but never used in "dist/index.js".
|
13
|
-
|
14
|
-
[
|
15
|
-
[
|
16
|
-
[32mESM[39m
|
17
|
-
[
|
18
|
-
[
|
19
|
-
[
|
20
|
-
[32mDTS[39m
|
21
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m256.10 KB[39m
|
14
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m2.08 KB[39m
|
15
|
+
[32mESM[39m [1mdist/CountryCodeSelect-5DBHKSF3.mjs [22m[32m351.67 KB[39m
|
16
|
+
[32mESM[39m [1mdist/chunk-D5OFVN6X.mjs [22m[32m415.29 KB[39m
|
17
|
+
[32mESM[39m ⚡️ Build success in 5694ms
|
18
|
+
[32mCJS[39m [1mdist/index.js [22m[32m895.09 KB[39m
|
19
|
+
[32mCJS[39m ⚡️ Build success in 5696ms
|
20
|
+
[32mDTS[39m ⚡️ Build success in 21721ms
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m260.75 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 2.4.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 7d5fc2e8: Add Combobox and Autosuggest components
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- 062a4e70: Change the placement of the FormErrorMessage relative to the input fields they address.
|
12
|
+
|
13
|
+
## 2.3.4
|
14
|
+
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- 517c5aad: Fix an issue with the onChange handler for NumericStepper and PhoneNumberInput
|
18
|
+
|
3
19
|
## 2.3.3
|
4
20
|
|
5
21
|
### Patch Changes
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { createTexts, useTranslation, InfoSelect,
|
1
|
+
import { createTexts, useTranslation, InfoSelect, SelectItem } from './chunk-D5OFVN6X.mjs';
|
2
2
|
import React from 'react';
|
3
3
|
|
4
4
|
// ../../node_modules/awesome-phonenumber/index-esm.mjs
|
@@ -6621,7 +6621,7 @@ var CountryCodeSelect = (props) => {
|
|
6621
6621
|
items: callingCodes,
|
6622
6622
|
...props
|
6623
6623
|
},
|
6624
|
-
(item) => /* @__PURE__ */ React.createElement(
|
6624
|
+
(item) => /* @__PURE__ */ React.createElement(SelectItem, { key: item.key }, item.key)
|
6625
6625
|
);
|
6626
6626
|
};
|
6627
6627
|
var CountryCodeSelect_default = CountryCodeSelect;
|