@vygruppen/spor-react 11.2.0 → 11.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 +19 -16
- package/CHANGELOG.md +26 -0
- package/README.md +1 -0
- package/dist/index.d.mts +243 -241
- package/dist/index.d.ts +243 -241
- package/dist/index.js +916 -6798
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +834 -6719
- package/dist/index.mjs.map +1 -0
- package/package.json +25 -12
- package/src/button/IconButton.tsx +1 -1
- package/src/datepicker/CalendarTriggerButton.tsx +1 -1
- package/src/datepicker/StyledField.tsx +1 -1
- package/src/datepicker/TimePicker.tsx +3 -2
- package/src/input/ChoiceChip.tsx +1 -1
- package/src/input/InfoSelect.tsx +2 -2
- package/src/input/InputElement.tsx +0 -1
- package/src/input/PhoneNumberInput.tsx +2 -6
- package/src/input/Switch.tsx +2 -3
- package/src/layout/Divider.tsx +1 -1
- package/src/layout/PressableCard.tsx +2 -7
- package/src/layout/StaticCard.tsx +2 -7
- package/src/linjetag/TravelTag.tsx +1 -1
- package/src/toast/useToast.tsx +58 -36
- package/src/typography/Badge.tsx +1 -1
- package/src/typography/Code.tsx +1 -1
- package/src/typography/Heading.tsx +1 -1
- package/tsup.config.ts +9 -0
package/.turbo/turbo-build.log
CHANGED
@@ -1,18 +1,21 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@11.
|
3
|
-
> tsup
|
2
|
+
> @vygruppen/spor-react@11.3.0 build /home/runner/work/spor/spor/packages/spor-react
|
3
|
+
> tsup
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
5
|
+
CLI Building entry: src/index.tsx
|
6
|
+
CLI Using tsconfig: tsconfig.json
|
7
|
+
CLI tsup v7.3.0
|
8
|
+
CLI Using tsup config: /home/runner/work/spor/spor/packages/spor-react/tsup.config.ts
|
9
|
+
CLI Target: node16
|
10
|
+
CJS Build start
|
11
|
+
ESM Build start
|
12
|
+
DTS Build start
|
13
|
+
CJS dist/index.js 288.06 KB
|
14
|
+
CJS dist/index.js.map 592.06 KB
|
15
|
+
CJS ⚡️ Build success in 2529ms
|
16
|
+
ESM dist/index.mjs 269.27 KB
|
17
|
+
ESM dist/index.mjs.map 592.06 KB
|
18
|
+
ESM ⚡️ Build success in 2530ms
|
19
|
+
DTS ⚡️ Build success in 17962ms
|
20
|
+
DTS dist/index.d.ts 341.98 KB
|
21
|
+
DTS dist/index.d.mts 341.98 KB
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,31 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 11.3.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- 000e30a: - Replace npm with pnpm as package manager.
|
8
|
+
- Update CI pipelines and Docker to use pnpm.
|
9
|
+
- Update Docker to install from frozen lockfile to ensure exact dependency versions.
|
10
|
+
- Fix dependency cycle between spor-react-icons and spor-package.
|
11
|
+
- Update docs to use pnpm.
|
12
|
+
- Install correct npm packages in apps/packages in monorepo.
|
13
|
+
- Replace npm-feed installs with direct "workspace:\*" installs for better local development.
|
14
|
+
- Replace inline commands for tsup with tsup.config.ts files.
|
15
|
+
|
16
|
+
### Patch Changes
|
17
|
+
|
18
|
+
- Updated dependencies [000e30a]
|
19
|
+
- @vygruppen/spor-design-tokens@3.10.0
|
20
|
+
- @vygruppen/spor-icon-react@3.13.0
|
21
|
+
- @vygruppen/spor-loader@0.5.0
|
22
|
+
|
23
|
+
## 11.2.1
|
24
|
+
|
25
|
+
### Patch Changes
|
26
|
+
|
27
|
+
- f11e119: Set htmlFor correctly for label in ChoiceButton to link it to input
|
28
|
+
|
3
29
|
## 11.2.0
|
4
30
|
|
5
31
|
### Minor Changes
|