@vygruppen/spor-react 12.6.4 → 12.7.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 +15 -14
- package/.turbo/turbo-postinstall.log +1 -1
- package/CHANGELOG.md +20 -0
- package/dist/icons/{index.js → index.cjs} +1 -1
- package/dist/{index.js → index.cjs} +322 -302
- package/dist/index.cjs.map +1 -0
- package/dist/{index.d.mts → index.d.cts} +99 -2
- package/dist/index.d.ts +99 -2
- package/dist/index.mjs +322 -302
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -6
- package/src/button/ButtonGroup.tsx +5 -15
- package/src/dialog/Dialog.tsx +1 -1
- package/src/input/AttachedInputs.tsx +6 -4
- package/src/input/Input.tsx +9 -8
- package/src/layout/PressableCard.tsx +12 -5
- package/src/layout/StaticCard.tsx +6 -4
- package/src/theme/recipes/index.ts +2 -0
- package/src/theme/slot-recipes/anatomy.ts +2 -0
- package/src/theme/slot-recipes/collapsible.ts +21 -0
- package/src/theme/slot-recipes/index.ts +2 -0
- package/tsup.config.ts +9 -3
- package/dist/index.js.map +0 -1
- /package/dist/icons/{index.js.map → index.cjs.map} +0 -0
- /package/dist/icons/{index.d.mts → index.d.cts} +0 -0
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.
|
2
|
+
> @vygruppen/spor-react@12.7.1 build /home/runner/work/spor/spor/packages/spor-react
|
3
3
|
> tsup
|
4
4
|
|
5
5
|
CLI Building entry: src/index.tsx, src/icons/index.tsx
|
@@ -7,21 +7,22 @@ CLI Using tsconfig: tsconfig.json
|
|
7
7
|
CLI tsup v7.3.0
|
8
8
|
CLI Using tsup config: /home/runner/work/spor/spor/packages/spor-react/tsup.config.ts
|
9
9
|
CLI Target: node16
|
10
|
-
|
10
|
+
CLI Cleaning output folder
|
11
11
|
ESM Build start
|
12
|
+
CJS Build start
|
12
13
|
DTS Build start
|
13
|
-
|
14
|
+
CJS dist/index.cjs 312.51 KB
|
15
|
+
CJS dist/icons/index.cjs 381.00 B
|
16
|
+
CJS dist/index.cjs.map 625.36 KB
|
17
|
+
CJS dist/icons/index.cjs.map 157.00 B
|
18
|
+
CJS ⚡️ Build success in 3033ms
|
19
|
+
ESM dist/index.mjs 291.82 KB
|
14
20
|
ESM dist/icons/index.mjs 110.00 B
|
15
|
-
ESM dist/index.mjs.map
|
21
|
+
ESM dist/index.mjs.map 625.36 KB
|
16
22
|
ESM dist/icons/index.mjs.map 157.00 B
|
17
|
-
ESM ⚡️ Build success in
|
18
|
-
|
19
|
-
CJS dist/icons/index.js 380.00 B
|
20
|
-
CJS dist/index.js.map 623.43 KB
|
21
|
-
CJS dist/icons/index.js.map 157.00 B
|
22
|
-
CJS ⚡️ Build success in 2737ms
|
23
|
-
DTS ⚡️ Build success in 29941ms
|
23
|
+
ESM ⚡️ Build success in 3037ms
|
24
|
+
DTS ⚡️ Build success in 29431ms
|
24
25
|
DTS dist/icons/index.d.ts 44.00 B
|
25
|
-
DTS dist/index.d.ts
|
26
|
-
DTS dist/icons/index.d.
|
27
|
-
DTS dist/index.d.
|
26
|
+
DTS dist/index.d.ts 155.95 KB
|
27
|
+
DTS dist/icons/index.d.cts 44.00 B
|
28
|
+
DTS dist/index.d.cts 155.95 KB
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 12.7.1
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 3e21810: Make label optional in inputprops, so i.e. SearchInput and PhoneNumber, not required.
|
8
|
+
- 6a454d2: Use key for recipes, to allow customizing recipes. Also fix recipe for collapsible
|
9
|
+
|
10
|
+
## 12.7.0
|
11
|
+
|
12
|
+
### Minor Changes
|
13
|
+
|
14
|
+
- ac8f61d: Add type module to all packages, update entries and outputs for ESM/CJS compatibility.
|
15
|
+
|
16
|
+
### Patch Changes
|
17
|
+
|
18
|
+
- Updated dependencies [ac8f61d]
|
19
|
+
- @vygruppen/spor-loader@0.7.0
|
20
|
+
- @vygruppen/spor-icon-react@4.2.1
|
21
|
+
- @vygruppen/spor-design-tokens@4.0.7
|
22
|
+
|
3
23
|
## 12.6.4
|
4
24
|
|
5
25
|
### Patch Changes
|