@vygruppen/spor-react 6.2.2 → 7.0.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 +20 -0
- package/dist/{CountryCodeSelect-FJ6OGX3Z.mjs → CountryCodeSelect-OK6RZ6AY.mjs} +1 -1
- package/dist/{chunk-2OBDF3T7.mjs → chunk-CYU6YFQK.mjs} +167 -642
- package/dist/index.d.mts +483 -497
- package/dist/index.d.ts +483 -497
- package/dist/index.js +196 -673
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/button/Button.tsx +4 -4
- package/src/input/NumericStepper.tsx +0 -4
- package/src/theme/components/accordion.ts +4 -15
- package/src/theme/components/breadcrumb.ts +2 -14
- package/src/theme/components/button.ts +5 -55
- package/src/theme/components/card-select.ts +11 -26
- package/src/theme/components/card.ts +2 -18
- package/src/theme/components/checkbox.ts +4 -12
- package/src/theme/components/choice-chip.ts +2 -11
- package/src/theme/components/close-button.ts +2 -14
- package/src/theme/components/code.ts +1 -1
- package/src/theme/components/datepicker.ts +14 -65
- package/src/theme/components/drawer.ts +7 -7
- package/src/theme/components/fab.ts +6 -63
- package/src/theme/components/form-label.ts +1 -1
- package/src/theme/components/form.ts +1 -1
- package/src/theme/components/info-select.ts +5 -35
- package/src/theme/components/info-tag.ts +1 -1
- package/src/theme/components/input.ts +9 -31
- package/src/theme/components/link.ts +5 -29
- package/src/theme/components/listbox.ts +3 -5
- package/src/theme/components/media-controller-button.ts +5 -46
- package/src/theme/components/modal.ts +7 -7
- package/src/theme/components/popover.ts +7 -15
- package/src/theme/components/progress-indicator.ts +1 -5
- package/src/theme/components/radio.ts +5 -11
- package/src/theme/components/select.ts +2 -2
- package/src/theme/components/stepper.ts +6 -6
- package/src/theme/components/switch.ts +5 -73
- package/src/theme/components/table.ts +18 -18
- package/src/theme/components/tabs.ts +11 -14
- package/src/theme/components/travel-tag.ts +2 -15
- package/src/theme/font-faces.ts +1 -1
- package/src/theme/utils/focus-util.ts +10 -0
- package/tsconfig.json +2 -2
- package/src/theme/utils/focus-utils.ts +0 -16
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@
|
2
|
+
> @vygruppen/spor-react@7.0.0 build
|
3
3
|
> tsup src/index.tsx --dts --treeshake --format cjs,esm
|
4
4
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
@@ -8,15 +8,15 @@
|
|
8
8
|
[34mCLI[39m Target: node16
|
9
9
|
[34mCJS[39m Build start
|
10
10
|
[34mESM[39m Build start
|
11
|
+
"Collapse" is imported from external module "@chakra-ui/react" but never used in "dist/chunk-CYU6YFQK.mjs".
|
11
12
|
"Collapse" is imported from external module "@chakra-ui/react" but never used in "dist/index.js".
|
12
|
-
"Collapse" is imported from external module "@chakra-ui/react" but never used in "dist/chunk-2OBDF3T7.mjs".
|
13
13
|
[34mDTS[39m Build start
|
14
|
-
[32mCJS[39m [1mdist/index.js [22m[32m507.17 KB[39m
|
15
|
-
[32mCJS[39m ⚡️ Build success in 2068ms
|
16
14
|
[32mESM[39m [1mdist/index.mjs [22m[32m2.16 KB[39m
|
17
|
-
[32mESM[39m [1mdist/CountryCodeSelect-
|
18
|
-
[32mESM[39m [1mdist/chunk-
|
19
|
-
[32mESM[39m ⚡️ Build success in
|
20
|
-
[
|
21
|
-
[
|
22
|
-
[32mDTS[39m
|
15
|
+
[32mESM[39m [1mdist/CountryCodeSelect-OK6RZ6AY.mjs [22m[32m1.19 KB[39m
|
16
|
+
[32mESM[39m [1mdist/chunk-CYU6YFQK.mjs [22m[32m385.72 KB[39m
|
17
|
+
[32mESM[39m ⚡️ Build success in 2175ms
|
18
|
+
[32mCJS[39m [1mdist/index.js [22m[32m492.77 KB[39m
|
19
|
+
[32mCJS[39m ⚡️ Build success in 2175ms
|
20
|
+
[32mDTS[39m ⚡️ Build success in 10809ms
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m262.80 KB[39m
|
22
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m262.80 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 7.0.0
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- 6e1c175: New focus styles!
|
8
|
+
|
9
|
+
This release simplifies our focus styles a bunch, making it easier to use our components with your keyboard or other assistive technologies.
|
10
|
+
|
11
|
+
The change isn't breaking per-se, but it's a pretty big visual change, so you might want to look through your application before you upgrade.
|
12
|
+
|
13
|
+
### Patch Changes
|
14
|
+
|
15
|
+
- 78b1cd0: Button: Make the text centered when the width is full
|
16
|
+
|
17
|
+
## 6.2.3
|
18
|
+
|
19
|
+
### Patch Changes
|
20
|
+
|
21
|
+
- b3b8e17: Added missing semicolon to font-faces
|
22
|
+
|
3
23
|
## 6.2.2
|
4
24
|
|
5
25
|
### Patch Changes
|