@vygruppen/spor-react 12.4.2 → 12.4.4
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 +17 -11
- package/.turbo/turbo-postinstall.log +1 -19
- package/CHANGELOG.md +20 -0
- package/dist/icons/index.d.mts +1 -0
- package/dist/icons/index.d.ts +1 -0
- package/dist/icons/index.js +14 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/icons/index.mjs +3 -0
- package/dist/icons/index.mjs.map +1 -0
- package/dist/index.js +155 -166
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +152 -158
- package/dist/index.mjs.map +1 -1
- package/package.json +14 -5
- package/src/icons/index.tsx +1 -0
- package/src/nudge/Nudge.tsx +2 -1
- package/src/theme/semantic-tokens/colors.ts +4 -6
- package/src/theme/tokens/colors.ts +4 -6
- package/src/toast/toast.tsx +1 -1
- package/tsup.config.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.4.
|
2
|
+
> @vygruppen/spor-react@12.4.4 build /home/runner/work/spor/spor/packages/spor-react
|
3
3
|
> tsup
|
4
4
|
|
5
|
-
CLI Building entry: src/index.tsx
|
5
|
+
CLI Building entry: src/index.tsx, src/icons/index.tsx
|
6
6
|
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
|
@@ -10,12 +10,18 @@ CLI Target: node16
|
|
10
10
|
CJS Build start
|
11
11
|
ESM Build start
|
12
12
|
DTS Build start
|
13
|
-
ESM dist/index.mjs
|
14
|
-
ESM dist/index.mjs.map
|
15
|
-
ESM
|
16
|
-
|
17
|
-
|
18
|
-
CJS
|
19
|
-
|
20
|
-
|
21
|
-
|
13
|
+
ESM dist/icons/index.mjs 110.00 B
|
14
|
+
ESM dist/icons/index.mjs.map 157.00 B
|
15
|
+
ESM dist/index.mjs 294.81 KB
|
16
|
+
ESM dist/index.mjs.map 633.53 KB
|
17
|
+
ESM ⚡️ Build success in 2742ms
|
18
|
+
CJS dist/icons/index.js 380.00 B
|
19
|
+
CJS dist/icons/index.js.map 157.00 B
|
20
|
+
CJS dist/index.js 315.09 KB
|
21
|
+
CJS dist/index.js.map 633.53 KB
|
22
|
+
CJS ⚡️ Build success in 2743ms
|
23
|
+
DTS ⚡️ Build success in 28946ms
|
24
|
+
DTS dist/icons/index.d.ts 44.00 B
|
25
|
+
DTS dist/index.d.ts 126.10 KB
|
26
|
+
DTS dist/icons/index.d.mts 44.00 B
|
27
|
+
DTS dist/index.d.mts 126.10 KB
|
@@ -1,26 +1,8 @@
|
|
1
1
|
|
2
|
-
> @vygruppen/spor-react@12.4.
|
2
|
+
> @vygruppen/spor-react@12.4.4 postinstall /home/runner/work/spor/spor/packages/spor-react
|
3
3
|
> chakra typegen src/theme/index.ts
|
4
4
|
|
5
5
|
[90m┌[39m Chakra CLI ⚡️
|
6
|
-
▲ [WARNING] The condition "types" here will never be used as it comes after both "import" and "require" [package.json]
|
7
|
-
|
8
|
-
../spor-design-tokens/package.json:15:6:
|
9
|
-
15 │ "types": "./dist/tokens.d.ts"
|
10
|
-
╵ ~~~~~~~
|
11
|
-
|
12
|
-
The "import" condition comes earlier and will be used for all "import" statements:
|
13
|
-
|
14
|
-
../spor-design-tokens/package.json:13:6:
|
15
|
-
13 │ "import": "./dist/tokens.mjs",
|
16
|
-
╵ ~~~~~~~~
|
17
|
-
|
18
|
-
The "require" condition comes earlier and will be used for all "require" calls:
|
19
|
-
|
20
|
-
../spor-design-tokens/package.json:14:6:
|
21
|
-
14 │ "require": "./dist/tokens.js",
|
22
|
-
╵ ~~~~~~~~~
|
23
|
-
|
24
6
|
[?25l[90m│[39m
|
25
7
|
[35m◒[39m Generating conditions types...
|
26
8
|
[999D[J[32m◇[39m ✅ Generated conditions typings
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
# @vygruppen/spor-react
|
2
2
|
|
3
|
+
## 12.4.4
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 94e9282: Nudge, WizardNudge and Toast does not work after updating chakra in a previous version of spor.
|
8
|
+
Fixed:
|
9
|
+
|
10
|
+
- Toast needed an id for each toast. Auto generated if not supplied from user.
|
11
|
+
- Nudge imported usePopoverContext from ark. Now imports from chakra and works.
|
12
|
+
|
13
|
+
- 7489e4a: Export raw tokens as js module from design tokens to be used in spor in stead of json files. Fixes issue with esm json import.
|
14
|
+
- Updated dependencies [7489e4a]
|
15
|
+
- @vygruppen/spor-design-tokens@4.0.7
|
16
|
+
|
17
|
+
## 12.4.3
|
18
|
+
|
19
|
+
### Patch Changes
|
20
|
+
|
21
|
+
- 144aca1: Support exporting icons directly from spor, which seems to fix SSR issues for icons.
|
22
|
+
|
3
23
|
## 12.4.2
|
4
24
|
|
5
25
|
### Patch Changes
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from '@vygruppen/spor-icon-react';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from '@vygruppen/spor-icon-react';
|
@@ -0,0 +1,14 @@
|
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
var sporIconReact = require('@vygruppen/spor-icon-react');
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
Object.keys(sporIconReact).forEach(function (k) {
|
8
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
9
|
+
enumerable: true,
|
10
|
+
get: function () { return sporIconReact[k]; }
|
11
|
+
});
|
12
|
+
});
|
13
|
+
//# sourceMappingURL=out.js.map
|
14
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../../src/icons/index.tsx"],"names":[],"mappings":";AAAA,cAAc","sourcesContent":["export * from \"@vygruppen/spor-icon-react\";\n"]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"sources":["../../src/icons/index.tsx"],"names":[],"mappings":";AAAA,cAAc","sourcesContent":["export * from \"@vygruppen/spor-icon-react\";\n"]}
|