@vygruppen/spor-react 10.9.2 → 11.0.1
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 +9 -9
- package/CHANGELOG.md +26 -0
- package/dist/{CountryCodeSelect-ATLJUIQ5.mjs → CountryCodeSelect-BANGPTJ2.mjs} +1 -1
- package/dist/{chunk-5GZRUD7N.mjs → chunk-LZYJMYST.mjs} +385 -330
- package/dist/index.d.mts +31 -19
- package/dist/index.d.ts +31 -19
- package/dist/index.js +700 -645
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/button/Button.tsx +7 -3
- package/src/input/CardSelect.tsx +5 -3
- package/src/input/ChoiceChip.tsx +2 -2
- package/src/input/SearchInput.tsx +22 -2
- package/src/layout/RadioCard.tsx +4 -3
- package/src/loader/Skeleton.tsx +7 -1
- package/src/modal/FullScreenDrawer.tsx +0 -2
- package/src/theme/components/alert-expandable.ts +21 -1
- package/src/theme/components/alert-service.ts +6 -2
- package/src/theme/components/card-select.ts +9 -7
- package/src/theme/components/divider.ts +34 -29
- package/src/theme/foundations/sizes.ts +6 -4
- package/src/theme/utils/ghost-utils.ts +3 -2
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@
|
2
|
+
> @vygruppen/spor-react@11.0.1 build
|
3
3
|
> tsup src/index.tsx --dts --treeshake --format cjs,esm
|
4
4
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
@@ -9,12 +9,12 @@
|
|
9
9
|
[34mCJS[39m Build start
|
10
10
|
[34mESM[39m Build start
|
11
11
|
[34mDTS[39m Build start
|
12
|
+
[32mCJS[39m [1mdist/index.js [22m[32m542.11 KB[39m
|
13
|
+
[32mCJS[39m ⚡️ Build success in 2302ms
|
12
14
|
[32mESM[39m [1mdist/index.mjs [22m[32m2.16 KB[39m
|
13
|
-
[32mESM[39m [1mdist/CountryCodeSelect-
|
14
|
-
[32mESM[39m [1mdist/chunk-
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
16
|
-
[
|
17
|
-
[
|
18
|
-
[32mDTS[39m
|
19
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m342.44 KB[39m
|
20
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[32m342.44 KB[39m
|
15
|
+
[32mESM[39m [1mdist/CountryCodeSelect-BANGPTJ2.mjs [22m[32m1.22 KB[39m
|
16
|
+
[32mESM[39m [1mdist/chunk-LZYJMYST.mjs [22m[32m428.19 KB[39m
|
17
|
+
[32mESM[39m ⚡️ Build success in 2302ms
|
18
|
+
[32mDTS[39m ⚡️ Build success in 16073ms
|
19
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m342.86 KB[39m
|
20
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m342.86 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,31 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 11.0.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- e2d26fd: Fix isDisabled for RadioCard and ChoiceChip
|
8
|
+
|
9
|
+
## 11.0.0
|
10
|
+
|
11
|
+
### Major Changes
|
12
|
+
|
13
|
+
- 137bc96: The Button component has been updated to remove SpaceProps from its ButtonProps interface. This change eliminates direct support for spacing-related properties (e.g., margin, padding).
|
14
|
+
- 70b1a86: Theme container tokens: Update values to mirror breakpoint values
|
15
|
+
|
16
|
+
You will need to update your implementation if you have static values related to the container sizes.
|
17
|
+
|
18
|
+
### Minor Changes
|
19
|
+
|
20
|
+
- 47dc850: Update styling for dashed divider
|
21
|
+
- 7c1ab44: CardSelect: adjust css values and component logic to adapt to new design
|
22
|
+
- 717158c: SearchInput: Added support for width-related props
|
23
|
+
|
24
|
+
### Patch Changes
|
25
|
+
|
26
|
+
- e9b34da: ExpandableAlert: made some updates in the styling for different states
|
27
|
+
- f87a8f7: Skeletons: add aria attributes and role
|
28
|
+
|
3
29
|
## 10.9.2
|
4
30
|
|
5
31
|
### Patch Changes
|