@vygruppen/spor-react 12.9.0 → 12.10.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 +12 -12
- package/.turbo/turbo-postinstall.log +1 -1
- package/CHANGELOG.md +13 -0
- package/dist/index.cjs +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/provider/SporProvider.tsx +12 -1
- package/src/theme/slot-recipes/choice-chip.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.
|
2
|
+
> @vygruppen/spor-react@12.10.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
|
@@ -11,18 +11,18 @@ CLI Cleaning output folder
|
|
11
11
|
ESM Build start
|
12
12
|
CJS Build start
|
13
13
|
DTS Build start
|
14
|
-
|
15
|
-
CJS dist/icons/index.cjs 381.00 B
|
16
|
-
CJS dist/icons/index.cjs.map 157.00 B
|
17
|
-
CJS dist/index.cjs.map 629.60 KB
|
18
|
-
CJS ⚡️ Build success in 3398ms
|
19
|
-
ESM dist/index.mjs 294.02 KB
|
14
|
+
ESM dist/index.mjs 294.10 KB
|
20
15
|
ESM dist/icons/index.mjs 110.00 B
|
21
|
-
ESM dist/index.mjs.map
|
16
|
+
ESM dist/index.mjs.map 630.10 KB
|
22
17
|
ESM dist/icons/index.mjs.map 157.00 B
|
23
|
-
ESM ⚡️ Build success in
|
24
|
-
|
18
|
+
ESM ⚡️ Build success in 3192ms
|
19
|
+
CJS dist/index.cjs 315.51 KB
|
20
|
+
CJS dist/icons/index.cjs 381.00 B
|
21
|
+
CJS dist/icons/index.cjs.map 157.00 B
|
22
|
+
CJS dist/index.cjs.map 630.10 KB
|
23
|
+
CJS ⚡️ Build success in 3193ms
|
24
|
+
DTS ⚡️ Build success in 31693ms
|
25
25
|
DTS dist/icons/index.d.ts 44.00 B
|
26
|
-
DTS dist/index.d.ts 156.
|
26
|
+
DTS dist/index.d.ts 156.80 KB
|
27
27
|
DTS dist/icons/index.d.cts 44.00 B
|
28
|
-
DTS dist/index.d.cts 156.
|
28
|
+
DTS dist/index.d.cts 156.80 KB
|
package/CHANGELOG.md
CHANGED
@@ -1,11 +1,24 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 12.10.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- c367662: Bump to 12.10.0 - error with previous changeset.
|
8
|
+
|
3
9
|
## 12.9.0
|
4
10
|
|
5
11
|
### Minor Changes
|
6
12
|
|
7
13
|
- 5e4f450: Drawer: Make it possible to close a drawer by swiping
|
8
14
|
|
15
|
+
### Patch Changes
|
16
|
+
|
17
|
+
- e375b23: Make it possible to turn off automatic system detection for color mode
|
18
|
+
- a4ed71b: Add gap between icon and text in ChoiceChip
|
19
|
+
- Updated dependencies [33ffcc7]
|
20
|
+
- @vygruppen/spor-design-tokens@4.0.8
|
21
|
+
|
9
22
|
## 12.8.10
|
10
23
|
|
11
24
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
@@ -5134,9 +5134,10 @@ var texts25 = createTexts({
|
|
5134
5134
|
var SporProvider = ({
|
5135
5135
|
language = "nb" /* NorwegianBokmal */,
|
5136
5136
|
theme = system,
|
5137
|
+
enableSystemColorMode = true,
|
5137
5138
|
children
|
5138
5139
|
}) => {
|
5139
|
-
return /* @__PURE__ */ jsxRuntime.jsx(LanguageProvider, { language, children: /* @__PURE__ */ jsxRuntime.jsx(react.ChakraProvider, { value: theme, children: /* @__PURE__ */ jsxRuntime.jsxs(ColorModeProvider, { children: [
|
5140
|
+
return /* @__PURE__ */ jsxRuntime.jsx(LanguageProvider, { language, children: /* @__PURE__ */ jsxRuntime.jsx(react.ChakraProvider, { value: theme, children: /* @__PURE__ */ jsxRuntime.jsxs(ColorModeProvider, { enableSystem: enableSystemColorMode, children: [
|
5140
5141
|
/* @__PURE__ */ jsxRuntime.jsx(Toaster, {}),
|
5141
5142
|
/* @__PURE__ */ jsxRuntime.jsx(react$1.Global, { styles: fontFaces }),
|
5142
5143
|
children
|
@@ -6905,6 +6906,7 @@ var choiceChipSlotRecipe = react.defineSlotRecipe({
|
|
6905
6906
|
label: {
|
6906
6907
|
display: "flex",
|
6907
6908
|
alignItems: "center",
|
6909
|
+
gap: "1",
|
6908
6910
|
fontSize: "xs"
|
6909
6911
|
}
|
6910
6912
|
},
|