@vygruppen/spor-react 12.24.14 → 12.24.16
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 +2 -2
- package/CHANGELOG.md +14 -0
- package/dist/index.cjs +447 -159
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +79 -15
- package/dist/index.d.ts +79 -15
- package/dist/index.mjs +438 -161
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/calendar/CalendarCell.tsx +58 -32
- package/src/calendar/CalendarContext.tsx +9 -0
- package/src/calendar/ScrollCalendar.tsx +14 -4
- package/src/input/Autocomplete.tsx +105 -98
- package/src/input/Menu.tsx +234 -0
- package/src/input/index.ts +1 -0
- package/src/theme/slot-recipes/anatomy.ts +14 -0
- package/src/theme/slot-recipes/index.ts +2 -0
- package/src/theme/slot-recipes/menu.ts +111 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @vygruppen/spor-react@12.24.
|
|
2
|
+
> @vygruppen/spor-react@12.24.16 build /home/runner/work/spor/spor/packages/spor-react
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx, src/icons/index.tsx
|
|
@@ -11,18 +11,18 @@
|
|
|
11
11
|
[34mESM[39m Build start
|
|
12
12
|
[34mCJS[39m Build start
|
|
13
13
|
[34mDTS[39m Build start
|
|
14
|
-
[32mCJS[39m [1mdist/index.cjs [22m[
|
|
14
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m367.03 KB[39m
|
|
15
15
|
[32mCJS[39m [1mdist/icons/index.cjs [22m[32m381.00 B[39m
|
|
16
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m722.10 KB[39m
|
|
16
17
|
[32mCJS[39m [1mdist/icons/index.cjs.map [22m[32m157.00 B[39m
|
|
17
|
-
[32mCJS[39m
|
|
18
|
-
[
|
|
19
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m334.78 KB[39m
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 2628ms
|
|
19
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m342.22 KB[39m
|
|
20
20
|
[32mESM[39m [1mdist/icons/index.mjs [22m[32m110.00 B[39m
|
|
21
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[
|
|
21
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m722.10 KB[39m
|
|
22
22
|
[32mESM[39m [1mdist/icons/index.mjs.map [22m[32m157.00 B[39m
|
|
23
|
-
[32mESM[39m ⚡️ Build success in
|
|
24
|
-
[32mDTS[39m ⚡️ Build success in
|
|
23
|
+
[32mESM[39m ⚡️ Build success in 2628ms
|
|
24
|
+
[32mDTS[39m ⚡️ Build success in 20149ms
|
|
25
25
|
[32mDTS[39m [1mdist/icons/index.d.ts [22m[32m44.00 B[39m
|
|
26
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
|
26
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m150.61 KB[39m
|
|
27
27
|
[32mDTS[39m [1mdist/icons/index.d.cts [22m[32m44.00 B[39m
|
|
28
|
-
[32mDTS[39m [1mdist/index.d.cts [22m[
|
|
28
|
+
[32mDTS[39m [1mdist/index.d.cts [22m[32m150.61 KB[39m
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
> @vygruppen/spor-react@12.24.
|
|
2
|
+
> @vygruppen/spor-react@12.24.16 postinstall /home/runner/work/spor/spor/packages/spor-react
|
|
3
3
|
> chakra typegen src/theme/index.ts
|
|
4
4
|
|
|
5
|
-
[dotenv@17.3.1] injecting env (0) from .env -- tip:
|
|
5
|
+
[dotenv@17.3.1] injecting env (0) from .env -- tip: ⚙️ enable debug logging with { debug: true }
|
|
6
6
|
[90m┌[39m Chakra CLI ⚡️
|
|
7
7
|
[?25l[90m│[39m
|
|
8
8
|
[35m◒[39m Generating conditions types...
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @vygruppen/spor-react
|
|
2
2
|
|
|
3
|
+
## 12.24.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b90fd20: Design adjustments to the menu component
|
|
8
|
+
- 80a1fda: Add new menu-component
|
|
9
|
+
|
|
10
|
+
## 12.24.15
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 2efa3ee: fix(calendar): iOS 26 pointer bug with range selection
|
|
15
|
+
- f7f40c2: feat(autocomplete): Added ref and css props
|
|
16
|
+
|
|
3
17
|
## 12.24.14
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|