@vygruppen/spor-react 5.2.0 → 5.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.
- package/.turbo/turbo-build.log +11 -11
- package/CHANGELOG.md +20 -0
- package/dist/{CountryCodeSelect-IUVBFVKP.mjs → CountryCodeSelect-HHNSD6TX.mjs} +1 -1
- package/dist/{chunk-HOS74XL2.mjs → chunk-S2IJI3LY.mjs} +325 -92
- package/dist/index.d.mts +130 -57
- package/dist/index.d.ts +130 -57
- package/dist/index.js +372 -111
- package/dist/index.mjs +1 -1
- package/package.json +2 -1
- package/src/datepicker/DateRangePicker.tsx +6 -4
- package/src/index.tsx +1 -0
- package/src/input/CardSelect.tsx +5 -1
- package/src/input/InfoSelect.tsx +6 -0
- package/src/progress-indicator/ProgressDot.tsx +23 -0
- package/src/progress-indicator/ProgressIndicator.tsx +56 -0
- package/src/progress-indicator/index.tsx +1 -0
- package/src/provider/SporProvider.tsx +9 -2
- package/src/theme/components/card-select.ts +31 -24
- package/src/theme/components/index.ts +1 -0
- package/src/theme/components/info-select.ts +32 -3
- package/src/theme/components/listbox.ts +10 -12
- package/src/theme/components/progress-indicator.ts +45 -0
- package/src/theme/index.ts +18 -0
- package/src/theme/utils/background-utils.ts +96 -11
- package/src/theme/utils/border-utils.ts +40 -9
- package/src/theme/utils/types.ts +11 -0
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@5.
|
2
|
+
> @vygruppen/spor-react@5.4.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-S2IJI3LY.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-HOS74XL2.mjs".
|
13
13
|
[34mDTS[39m Build start
|
14
|
-
[
|
15
|
-
[
|
16
|
-
[32mESM[39m [1mdist/
|
17
|
-
[32mESM[39m
|
18
|
-
[
|
19
|
-
[
|
20
|
-
[32mDTS[39m ⚡️ Build success in
|
21
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[
|
22
|
-
[32mDTS[39m [1mdist/index.d.mts [22m[
|
14
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m2.16 KB[39m
|
15
|
+
[32mESM[39m [1mdist/CountryCodeSelect-HHNSD6TX.mjs [22m[32m1.19 KB[39m
|
16
|
+
[32mESM[39m [1mdist/chunk-S2IJI3LY.mjs [22m[32m397.83 KB[39m
|
17
|
+
[32mESM[39m ⚡️ Build success in 2102ms
|
18
|
+
[32mCJS[39m [1mdist/index.js [22m[32m507.24 KB[39m
|
19
|
+
[32mCJS[39m ⚡️ Build success in 2103ms
|
20
|
+
[32mDTS[39m ⚡️ Build success in 12028ms
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m265.18 KB[39m
|
22
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m265.18 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 5.4.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 3781bb2: CardSelect: added dark mode update and new prop for background also changed outline to base and card to float in variants
|
8
|
+
|
9
|
+
## 5.3.0
|
10
|
+
|
11
|
+
### Minor Changes
|
12
|
+
|
13
|
+
- 2559f03: ProgressIndicator: Brand new component for showing progress across multiple steps
|
14
|
+
- fc1b71d: DateRangePicker: Make full date range type nullable in onChange
|
15
|
+
|
16
|
+
### Patch Changes
|
17
|
+
|
18
|
+
- e0703c8: InfoSelect: Fixes colors slightly to adhere to intended design
|
19
|
+
SporProvider: Added brand-prop to select brand theme customizations
|
20
|
+
- a5b9922: ProgressIndicator: Remove ProgressDot import, as it wasn't meant for public exposure.
|
21
|
+
- 9d31d59: general: Fix a bug with brand styles overriding all colors
|
22
|
+
|
3
23
|
## 5.2.0
|
4
24
|
|
5
25
|
### Minor Changes
|