@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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @vygruppen/spor-react@2.3.3 build
2
+ > @vygruppen/spor-react@2.4.0 build
3
3
  > tsup src/index.tsx --dts --treeshake --format cjs,esm
4
4
 
5
5
  CLI Building entry: src/index.tsx
@@ -9,13 +9,13 @@
9
9
  CJS Build start
10
10
  ESM Build start
11
11
  DTS 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
- "toTime" is imported from external module "@internationalized/date" but never used in "dist/chunk-QXVLVC2K.mjs".
14
- CJS dist/index.js 890.77 KB
15
- CJS ⚡️ Build success in 4231ms
16
- ESM dist/index.mjs 2.02 KB
17
- ESM dist/CountryCodeSelect-WGG2Z3VI.mjs 351.65 KB
18
- ESM dist/chunk-QXVLVC2K.mjs 411.46 KB
19
- ESM ⚡️ Build success in 4233ms
20
- DTS ⚡️ Build success in 17246ms
21
- DTS dist/index.d.ts 256.10 KB
14
+ ESM dist/index.mjs 2.08 KB
15
+ ESM dist/CountryCodeSelect-5DBHKSF3.mjs 351.67 KB
16
+ ESM dist/chunk-D5OFVN6X.mjs 415.29 KB
17
+ ESM ⚡️ Build success in 5694ms
18
+ CJS dist/index.js 895.09 KB
19
+ CJS ⚡️ Build success in 5696ms
20
+ DTS ⚡️ Build success in 21721ms
21
+ DTS dist/index.d.ts 260.75 KB
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, Item } from './chunk-QXVLVC2K.mjs';
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(Item, { key: item.key }, item.key)
6624
+ (item) => /* @__PURE__ */ React.createElement(SelectItem, { key: item.key }, item.key)
6625
6625
  );
6626
6626
  };
6627
6627
  var CountryCodeSelect_default = CountryCodeSelect;