@yamada-ui/highlight 0.3.14 → 0.3.16
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/highlight.d.mts +1 -1
- package/dist/highlight.d.ts +1 -1
- package/package.json +4 -4
package/dist/highlight.d.mts
CHANGED
@@ -33,7 +33,7 @@ type HighlightProps = TextProps & {
|
|
33
33
|
markProps?: MarkProps;
|
34
34
|
};
|
35
35
|
declare const Highlight: FC<HighlightProps>;
|
36
|
-
type MarkProps = HTMLUIProps<
|
36
|
+
type MarkProps = HTMLUIProps<"mark"> & ThemeProps<"Mark">;
|
37
37
|
declare const Mark: _yamada_ui_core.Component<"mark", MarkProps>;
|
38
38
|
|
39
39
|
export { Highlight, HighlightProps, Mark, MarkProps, useHighlight };
|
package/dist/highlight.d.ts
CHANGED
@@ -33,7 +33,7 @@ type HighlightProps = TextProps & {
|
|
33
33
|
markProps?: MarkProps;
|
34
34
|
};
|
35
35
|
declare const Highlight: FC<HighlightProps>;
|
36
|
-
type MarkProps = HTMLUIProps<
|
36
|
+
type MarkProps = HTMLUIProps<"mark"> & ThemeProps<"Mark">;
|
37
37
|
declare const Mark: _yamada_ui_core.Component<"mark", MarkProps>;
|
38
38
|
|
39
39
|
export { Highlight, HighlightProps, Mark, MarkProps, useHighlight };
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@yamada-ui/highlight",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.16",
|
4
4
|
"description": "Yamada UI highlight component",
|
5
5
|
"keywords": [
|
6
6
|
"yamada",
|
@@ -35,9 +35,9 @@
|
|
35
35
|
"url": "https://github.com/hirotomoyamada/yamada-ui/issues"
|
36
36
|
},
|
37
37
|
"dependencies": {
|
38
|
-
"@yamada-ui/core": "0.12.
|
39
|
-
"@yamada-ui/utils": "0.3.
|
40
|
-
"@yamada-ui/typography": "0.3.
|
38
|
+
"@yamada-ui/core": "0.12.6",
|
39
|
+
"@yamada-ui/utils": "0.3.3",
|
40
|
+
"@yamada-ui/typography": "0.3.16"
|
41
41
|
},
|
42
42
|
"devDependencies": {
|
43
43
|
"react": "^18.0.0",
|