@vygruppen/spor-react 13.1.4 → 13.2.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 +12 -12
- package/.turbo/turbo-postinstall.log +3 -4
- package/CHANGELOG.md +19 -0
- package/dist/index.cjs +496 -150
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +252 -41
- package/dist/index.d.ts +252 -41
- package/dist/index.mjs +494 -151
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/alert/Alert.tsx +42 -1
- package/src/input/ChoiceChip.tsx +133 -71
- package/src/input/Field.tsx +4 -1
- package/src/input/FilterChip.tsx +85 -0
- package/src/input/NumericStepper.tsx +6 -1
- package/src/input/index.ts +1 -0
- package/src/theme/recipes/badge.ts +19 -3
- package/src/theme/recipes/pressable-card.ts +3 -3
- package/src/theme/slot-recipes/anatomy.ts +1 -0
- package/src/theme/slot-recipes/choice-chip.ts +77 -49
- package/src/theme/slot-recipes/filter-chip.ts +197 -0
- package/src/theme/slot-recipes/index.ts +3 -1
- package/src/theme/slot-recipes/numeric-stepper.ts +3 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @vygruppen/spor-react@13.1
|
|
2
|
+
> @vygruppen/spor-react@13.2.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
|
|
@@ -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
|
-
ESM dist/index.mjs 338.58 KB
|
|
16
|
-
ESM dist/icons/index.mjs.map 157.00 B
|
|
17
|
-
ESM dist/index.mjs.map 721.19 KB
|
|
18
|
-
ESM ⚡️ Build success in 2721ms
|
|
19
|
-
CJS dist/index.cjs 362.66 KB
|
|
14
|
+
CJS dist/index.cjs 371.92 KB
|
|
20
15
|
CJS dist/icons/index.cjs 381.00 B
|
|
21
|
-
CJS dist/index.cjs.map
|
|
16
|
+
CJS dist/index.cjs.map 738.73 KB
|
|
22
17
|
CJS dist/icons/index.cjs.map 157.00 B
|
|
23
|
-
CJS ⚡️ Build success in
|
|
24
|
-
|
|
18
|
+
CJS ⚡️ Build success in 2149ms
|
|
19
|
+
ESM dist/index.mjs 347.58 KB
|
|
20
|
+
ESM dist/icons/index.mjs 110.00 B
|
|
21
|
+
ESM dist/index.mjs.map 738.73 KB
|
|
22
|
+
ESM dist/icons/index.mjs.map 157.00 B
|
|
23
|
+
ESM ⚡️ Build success in 2149ms
|
|
24
|
+
DTS ⚡️ Build success in 17187ms
|
|
25
25
|
DTS dist/icons/index.d.ts 44.00 B
|
|
26
|
-
DTS dist/index.d.ts
|
|
26
|
+
DTS dist/index.d.ts 150.09 KB
|
|
27
27
|
DTS dist/icons/index.d.cts 44.00 B
|
|
28
|
-
DTS dist/index.d.cts
|
|
28
|
+
DTS dist/index.d.cts 150.09 KB
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
|
|
2
|
-
> @vygruppen/spor-react@13.1
|
|
2
|
+
> @vygruppen/spor-react@13.2.1 postinstall /home/runner/work/spor/spor/packages/spor-react
|
|
3
3
|
> chakra typegen src/theme/index.ts
|
|
4
4
|
|
|
5
|
-
◇ injected env (0) from .env // tip:
|
|
5
|
+
◇ injected env (0) from .env // tip: ⌘ override existing { override: true }
|
|
6
6
|
[90m┌[39m Chakra CLI ⚡️
|
|
7
7
|
[?25l[90m│[39m
|
|
8
|
-
[
|
|
9
|
-
[1G[J[32m◇[39m ✅ Generated conditions typings
|
|
8
|
+
[32m◇[39m ✅ Generated conditions typings
|
|
10
9
|
[?25h[?25l[90m│[39m
|
|
11
10
|
[35m◒[39m Generating recipe types...
|
|
12
11
|
[1G[J[32m◇[39m ✅ Generated recipe typings
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @vygruppen/spor-react
|
|
2
2
|
|
|
3
|
+
## 13.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b6f6c99: NumericStepper: Highlight the inputfield with an outline, and adjust width of textfield when withInput-prop is false
|
|
8
|
+
- 6ee3004: Add brightRed to badge's colorPalette
|
|
9
|
+
- 4c85213: Badge: adjust the fontsize down to match design
|
|
10
|
+
- b91bffd: Update token values for CargoNet dark theme
|
|
11
|
+
- ac0c26f: Alert: Add role="alert" and aria-label that reflects the level of severity based on the variant
|
|
12
|
+
- Updated dependencies [37467a9]
|
|
13
|
+
- Updated dependencies [b91bffd]
|
|
14
|
+
- @vygruppen/spor-design-tokens@5.0.3
|
|
15
|
+
|
|
16
|
+
## 13.2.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 305f387: Introduces two new Chip-components: ChoiceChip and FilterChip. ChoiceChip becomes a singleselect chip, where the user can only select a singluar item among the chips that are grouped together. FilterChip is introduced as the new multipleselect chip, where the user can select multiple items among the chips that are grouped together.
|
|
21
|
+
|
|
3
22
|
## 13.1.4
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|