@vygruppen/spor-react 12.6.3 → 12.7.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 +15 -14
- package/.turbo/turbo-postinstall.log +1 -1
- package/CHANGELOG.md +21 -0
- package/dist/icons/{index.js → index.cjs} +1 -1
- package/dist/{index.js → index.cjs} +17 -18
- package/dist/index.cjs.map +1 -0
- package/dist/{index.d.mts → index.d.cts} +11 -8
- package/dist/index.d.ts +11 -8
- package/dist/index.mjs +16 -17
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -7
- package/src/datepicker/DateRangePicker.tsx +1 -1
- package/src/theme/recipes/button.ts +8 -7
- package/src/theme/slot-recipes/field.ts +6 -8
- 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.0 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
|
14
|
+
CJS dist/icons/index.cjs 381.00 B
|
15
|
+
CJS dist/icons/index.cjs.map 157.00 B
|
16
|
+
CJS dist/index.cjs 311.49 KB
|
17
|
+
CJS dist/index.cjs.map 623.43 KB
|
18
|
+
CJS ⚡️ Build success in 3080ms
|
13
19
|
ESM dist/icons/index.mjs 110.00 B
|
14
20
|
ESM dist/icons/index.mjs.map 157.00 B
|
15
|
-
ESM dist/index.mjs 290.
|
16
|
-
ESM dist/index.mjs.map 623.
|
17
|
-
ESM ⚡️ Build success in
|
18
|
-
|
19
|
-
CJS dist/icons/index.js.map 157.00 B
|
20
|
-
CJS dist/index.js 311.51 KB
|
21
|
-
CJS dist/index.js.map 623.48 KB
|
22
|
-
CJS ⚡️ Build success in 2689ms
|
23
|
-
DTS ⚡️ Build success in 28559ms
|
21
|
+
ESM dist/index.mjs 290.84 KB
|
22
|
+
ESM dist/index.mjs.map 623.43 KB
|
23
|
+
ESM ⚡️ Build success in 3081ms
|
24
|
+
DTS ⚡️ Build success in 33114ms
|
24
25
|
DTS dist/icons/index.d.ts 44.00 B
|
25
|
-
DTS dist/index.d.ts 153.
|
26
|
-
DTS dist/icons/index.d.
|
27
|
-
DTS dist/index.d.
|
26
|
+
DTS dist/index.d.ts 153.52 KB
|
27
|
+
DTS dist/icons/index.d.cts 44.00 B
|
28
|
+
DTS dist/index.d.cts 153.52 KB
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 12.7.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- ac8f61d: Add type module to all packages, update entries and outputs for ESM/CJS compatibility.
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- Updated dependencies [ac8f61d]
|
12
|
+
- @vygruppen/spor-loader@0.7.0
|
13
|
+
- @vygruppen/spor-icon-react@4.2.1
|
14
|
+
- @vygruppen/spor-design-tokens@4.0.7
|
15
|
+
|
16
|
+
## 12.6.4
|
17
|
+
|
18
|
+
### Patch Changes
|
19
|
+
|
20
|
+
- f88c33b: Field: Fix styling for multi line errorText, where arrow collided with the error box.
|
21
|
+
DateRangePicker: Use same value type as DatePicker.
|
22
|
+
Button: Update style from figma, different padding and font sizes.
|
23
|
+
|
3
24
|
## 12.6.3
|
4
25
|
|
5
26
|
### Patch Changes
|
@@ -5558,8 +5558,6 @@ var buttonRecipe = react.defineRecipe({
|
|
5558
5558
|
cursor: "pointer",
|
5559
5559
|
textWrap: "wrap",
|
5560
5560
|
width: "fit-content",
|
5561
|
-
paddingX: 3,
|
5562
|
-
paddingY: 1,
|
5563
5561
|
_disabled: {
|
5564
5562
|
cursor: "not-allowed",
|
5565
5563
|
pointerEvents: "none",
|
@@ -5639,27 +5637,30 @@ var buttonRecipe = react.defineRecipe({
|
|
5639
5637
|
xs: {
|
5640
5638
|
minHeight: 5,
|
5641
5639
|
minWidth: 5,
|
5642
|
-
|
5643
|
-
fontSize: "xs",
|
5640
|
+
paddingX: 1.5,
|
5641
|
+
fontSize: "mobile.xs",
|
5644
5642
|
fontWeight: "normal"
|
5645
5643
|
},
|
5646
5644
|
sm: {
|
5647
5645
|
minHeight: 6,
|
5648
5646
|
minWidth: 6,
|
5649
|
-
|
5647
|
+
paddingX: 2,
|
5648
|
+
fontSize: "mobile.sm",
|
5650
5649
|
fontWeight: "normal"
|
5651
5650
|
},
|
5652
5651
|
md: {
|
5653
5652
|
minHeight: 7,
|
5654
5653
|
minWidth: 7,
|
5655
|
-
fontSize: "
|
5656
|
-
fontWeight: "bold"
|
5654
|
+
fontSize: "mobile.md",
|
5655
|
+
fontWeight: "bold",
|
5656
|
+
paddingX: 3
|
5657
5657
|
},
|
5658
5658
|
lg: {
|
5659
5659
|
minHeight: 8,
|
5660
5660
|
minWidth: 8,
|
5661
|
-
fontSize: "
|
5662
|
-
fontWeight: "bold"
|
5661
|
+
fontSize: "mobile.md",
|
5662
|
+
fontWeight: "bold",
|
5663
|
+
paddingX: 3
|
5663
5664
|
}
|
5664
5665
|
}
|
5665
5666
|
},
|
@@ -7611,15 +7612,13 @@ var fieldSlotRecipe = react.defineSlotRecipe({
|
|
7611
7612
|
_after: {
|
7612
7613
|
content: "''",
|
7613
7614
|
position: "absolute",
|
7614
|
-
|
7615
|
+
top: 0,
|
7615
7616
|
left: "1em",
|
7616
|
-
width: 0,
|
7617
|
-
height: 0,
|
7618
|
-
|
7619
|
-
|
7620
|
-
|
7621
|
-
borderBottom: "0.5em solid",
|
7622
|
-
borderColor: "lightRed"
|
7617
|
+
width: "0.5rem",
|
7618
|
+
height: "0.5rem",
|
7619
|
+
backgroundColor: "lightRed",
|
7620
|
+
transform: "translateY(-50%) rotate(45deg)",
|
7621
|
+
pointerEvents: "none"
|
7623
7622
|
}
|
7624
7623
|
}
|
7625
7624
|
}
|
@@ -10944,4 +10943,4 @@ exports.useColorMode = useColorMode;
|
|
10944
10943
|
exports.useColorModeValue = useColorModeValue;
|
10945
10944
|
exports.useTranslation = useTranslation;
|
10946
10945
|
//# sourceMappingURL=out.js.map
|
10947
|
-
//# sourceMappingURL=index.
|
10946
|
+
//# sourceMappingURL=index.cjs.map
|