@vygruppen/spor-react 5.2.0 → 5.3.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 +14 -0
- package/dist/{CountryCodeSelect-IUVBFVKP.mjs → CountryCodeSelect-BITN7VNA.mjs} +1 -1
- package/dist/{chunk-HOS74XL2.mjs → chunk-55HLEY3T.mjs} +286 -61
- package/dist/index.d.mts +103 -34
- package/dist/index.d.ts +103 -34
- package/dist/index.js +327 -73
- 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/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/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 +103 -10
- 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.3.0 build
|
3
3
|
> tsup src/index.tsx --dts --treeshake --format cjs,esm
|
4
4
|
|
5
5
|
[34mCLI[39m Building entry: src/index.tsx
|
@@ -9,14 +9,14 @@
|
|
9
9
|
[34mCJS[39m Build start
|
10
10
|
[34mESM[39m Build start
|
11
11
|
"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
12
|
[34mDTS[39m Build start
|
14
|
-
|
15
|
-
[32mCJS[39m
|
16
|
-
[
|
17
|
-
[32mESM[39m [1mdist/
|
18
|
-
[32mESM[39m [1mdist/
|
19
|
-
[32mESM[39m
|
20
|
-
[
|
21
|
-
[32mDTS[39m
|
22
|
-
[32mDTS[39m [1mdist/index.d.
|
13
|
+
"Collapse" is imported from external module "@chakra-ui/react" but never used in "dist/chunk-55HLEY3T.mjs".
|
14
|
+
[32mCJS[39m [1mdist/index.js [22m[32m507.32 KB[39m
|
15
|
+
[32mCJS[39m ⚡️ Build success in 2031ms
|
16
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m2.16 KB[39m
|
17
|
+
[32mESM[39m [1mdist/CountryCodeSelect-BITN7VNA.mjs [22m[32m1.19 KB[39m
|
18
|
+
[32mESM[39m [1mdist/chunk-55HLEY3T.mjs [22m[32m397.85 KB[39m
|
19
|
+
[32mESM[39m ⚡️ Build success in 2033ms
|
20
|
+
[32mDTS[39m ⚡️ Build success in 12838ms
|
21
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m265.02 KB[39m
|
22
|
+
[32mDTS[39m [1mdist/index.d.mts [22m[32m265.02 KB[39m
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 5.3.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 2559f03: ProgressIndicator: Brand new component for showing progress across multiple steps
|
8
|
+
- fc1b71d: DateRangePicker: Make full date range type nullable in onChange
|
9
|
+
|
10
|
+
### Patch Changes
|
11
|
+
|
12
|
+
- e0703c8: InfoSelect: Fixes colors slightly to adhere to intended design
|
13
|
+
SporProvider: Added brand-prop to select brand theme customizations
|
14
|
+
- a5b9922: ProgressIndicator: Remove ProgressDot import, as it wasn't meant for public exposure.
|
15
|
+
- 9d31d59: general: Fix a bug with brand styles overriding all colors
|
16
|
+
|
3
17
|
## 5.2.0
|
4
18
|
|
5
19
|
### Minor Changes
|