@vygruppen/spor-react 12.21.2 → 12.22.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/.turbo/turbo-postinstall.log +4 -3
- package/CHANGELOG.md +20 -0
- package/dist/index.cjs +745 -364
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +46 -19
- package/dist/index.d.ts +46 -19
- package/dist/index.mjs +619 -246
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/input/AttachedInputs.tsx +82 -3
- package/src/input/Autocomplete.tsx +209 -0
- package/src/input/Field.tsx +35 -6
- package/src/input/Input.tsx +2 -0
- package/src/input/index.ts +1 -0
- package/src/input/useFLoatingInputState.tsx +26 -16
- package/src/layout/index.tsx +1 -0
- package/src/pagination/Pagination.tsx +1 -1
- package/src/popover/index.tsx +1 -0
- package/src/theme/recipes/attached-inputs.ts +18 -0
- package/src/theme/slot-recipes/anatomy.ts +6 -0
- package/src/theme/slot-recipes/autocomplete.ts +130 -0
- package/src/theme/slot-recipes/index.ts +2 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @vygruppen/spor-react@12.
|
|
2
|
+
> @vygruppen/spor-react@12.22.0 build /home/runner/work/spor/spor/packages/spor-react
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
CLI Building entry: src/index.tsx, src/icons/index.tsx
|
|
@@ -11,18 +11,18 @@ CLI Cleaning output folder
|
|
|
11
11
|
ESM Build start
|
|
12
12
|
CJS Build start
|
|
13
13
|
DTS Build start
|
|
14
|
-
CJS dist/index.cjs
|
|
14
|
+
CJS dist/index.cjs 350.37 KB
|
|
15
15
|
CJS dist/icons/index.cjs 381.00 B
|
|
16
|
-
CJS dist/index.cjs.map 672.88 KB
|
|
17
16
|
CJS dist/icons/index.cjs.map 157.00 B
|
|
18
|
-
CJS
|
|
19
|
-
|
|
17
|
+
CJS dist/index.cjs.map 691.17 KB
|
|
18
|
+
CJS ⚡️ Build success in 2624ms
|
|
20
19
|
ESM dist/icons/index.mjs 110.00 B
|
|
21
|
-
ESM dist/index.mjs.
|
|
20
|
+
ESM dist/index.mjs 326.47 KB
|
|
22
21
|
ESM dist/icons/index.mjs.map 157.00 B
|
|
23
|
-
ESM
|
|
24
|
-
|
|
22
|
+
ESM dist/index.mjs.map 691.17 KB
|
|
23
|
+
ESM ⚡️ Build success in 2625ms
|
|
24
|
+
DTS ⚡️ Build success in 21358ms
|
|
25
25
|
DTS dist/icons/index.d.ts 44.00 B
|
|
26
|
-
DTS dist/index.d.ts
|
|
26
|
+
DTS dist/index.d.ts 160.43 KB
|
|
27
27
|
DTS dist/icons/index.d.cts 44.00 B
|
|
28
|
-
DTS dist/index.d.cts
|
|
28
|
+
DTS dist/index.d.cts 160.43 KB
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
> @vygruppen/spor-react@12.
|
|
2
|
+
> @vygruppen/spor-react@12.22.0 postinstall /home/runner/work/spor/spor/packages/spor-react
|
|
3
3
|
> chakra typegen src/theme/index.ts
|
|
4
4
|
|
|
5
|
-
[dotenv@17.2.
|
|
5
|
+
[dotenv@17.2.3] injecting env (0) from .env -- tip: 🔐 prevent building .env in docker: https://dotenvx.com/prebuild
|
|
6
6
|
[90m┌[39m Chakra CLI ⚡️
|
|
7
7
|
[?25l[90m│[39m
|
|
8
|
-
[
|
|
8
|
+
[35m◒[39m Generating conditions types...
|
|
9
|
+
[999D[J[32m◇[39m ✅ Generated conditions typings
|
|
9
10
|
[?25h[?25l[90m│[39m
|
|
10
11
|
[35m◒[39m Generating recipe types...
|
|
11
12
|
[999D[J[32m◇[39m ✅ Generated recipe typings
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @vygruppen/spor-react
|
|
2
2
|
|
|
3
|
+
## 12.22.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 287df68: Add new Autocomplete component based on Chakra UI's official Combobox
|
|
8
|
+
|
|
9
|
+
The new Autocomplete component replaces the overly complex custom combobox implementation with a simpler, more accessible solution built on Chakra UI's well-maintained Combobox component.
|
|
10
|
+
|
|
11
|
+
**Features:**
|
|
12
|
+
- Supports both core and floating label variants
|
|
13
|
+
- Integrates seamlessly with existing Input and Field components
|
|
14
|
+
- Handles internal/external filtering, loading states, multiple selection, and grouped items
|
|
15
|
+
- Improved accessibility and universal design standards compliance
|
|
16
|
+
- Modern UI with refined design and animations
|
|
17
|
+
- Adds flip-switch support in AttachedInputs to simplify travel search implementation
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 375c0a8: replaced aria-selected with aria-current to fix uu error
|
|
22
|
+
|
|
3
23
|
## 12.21.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|