@marigold/components 5.3.0 → 5.4.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/dist/index.d.ts +2 -1
- package/dist/index.js +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -545,10 +545,11 @@ interface TextProps extends ThemeComponentProps, HtmlProps<'p'> {
|
|
|
545
545
|
cursor?: string;
|
|
546
546
|
fontSize?: string;
|
|
547
547
|
fontWeight?: string;
|
|
548
|
+
fontStyle?: string;
|
|
548
549
|
outline?: string;
|
|
549
550
|
children?: React.ReactNode;
|
|
550
551
|
}
|
|
551
|
-
declare const Text: ({ variant, size, display, align, color, fontSize, fontWeight, cursor, outline, children, ...props }: TextProps) => JSX.Element;
|
|
552
|
+
declare const Text: ({ variant, size, display, align, color, fontSize, fontStyle, fontWeight, cursor, outline, children, ...props }: TextProps) => JSX.Element;
|
|
552
553
|
|
|
553
554
|
interface TextAreaThemeExtension extends ThemeExtension<'TextArea'> {
|
|
554
555
|
}
|
package/dist/index.js
CHANGED
|
@@ -3090,6 +3090,7 @@ var Text = ({
|
|
|
3090
3090
|
align,
|
|
3091
3091
|
color,
|
|
3092
3092
|
fontSize,
|
|
3093
|
+
fontStyle,
|
|
3093
3094
|
fontWeight,
|
|
3094
3095
|
cursor,
|
|
3095
3096
|
outline,
|
|
@@ -3113,6 +3114,7 @@ var Text = ({
|
|
|
3113
3114
|
cursor,
|
|
3114
3115
|
outline,
|
|
3115
3116
|
fontSize,
|
|
3117
|
+
fontStyle,
|
|
3116
3118
|
fontWeight,
|
|
3117
3119
|
textAlign: align
|
|
3118
3120
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -3097,6 +3097,7 @@ var Text = ({
|
|
|
3097
3097
|
align,
|
|
3098
3098
|
color,
|
|
3099
3099
|
fontSize,
|
|
3100
|
+
fontStyle,
|
|
3100
3101
|
fontWeight,
|
|
3101
3102
|
cursor,
|
|
3102
3103
|
outline,
|
|
@@ -3120,6 +3121,7 @@ var Text = ({
|
|
|
3120
3121
|
cursor,
|
|
3121
3122
|
outline,
|
|
3122
3123
|
fontSize,
|
|
3124
|
+
fontStyle,
|
|
3123
3125
|
fontWeight,
|
|
3124
3126
|
textAlign: align
|
|
3125
3127
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@marigold/components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.0",
|
|
4
4
|
"description": "Components for the Marigold Design System",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -71,21 +71,21 @@
|
|
|
71
71
|
"deepmerge": "^4.2.2",
|
|
72
72
|
"react-is": "18.2.0",
|
|
73
73
|
"react-transition-group": "4.4.5",
|
|
74
|
-
"@marigold/icons": "1.2.
|
|
75
|
-
"@marigold/system": "5.
|
|
74
|
+
"@marigold/icons": "1.2.3",
|
|
75
|
+
"@marigold/system": "5.4.0",
|
|
76
76
|
"@marigold/tokens": "3.1.0",
|
|
77
|
-
"@marigold/types": "1.0.
|
|
77
|
+
"@marigold/types": "1.0.1"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"react": "17.x || 18.x",
|
|
81
81
|
"react-dom": "17.x || 18.x"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
|
-
"@types/react": "18.0.
|
|
84
|
+
"@types/react": "18.0.29",
|
|
85
85
|
"@types/react-transition-group": "4.4.5",
|
|
86
86
|
"react": "18.2.0",
|
|
87
87
|
"react-dom": "18.2.0",
|
|
88
|
-
"tsup": "6.
|
|
88
|
+
"tsup": "6.7.0",
|
|
89
89
|
"@marigold/tsconfig": "0.4.0"
|
|
90
90
|
},
|
|
91
91
|
"scripts": {
|