reykit 1.0.243 → 1.0.244
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.js +510 -507
- package/dist/src/component/Text.d.ts +4 -3
- package/dist/style/base.css +1 -0
- package/package.json +2 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ReactNode, ComponentProps } from 'react';
|
|
2
|
-
import { default as ReactMarkdown } from 'react-markdown';
|
|
3
2
|
/**
|
|
4
3
|
* Text component of with icon.
|
|
5
4
|
*
|
|
@@ -17,6 +16,8 @@ export declare function IconText({ icon, text, url, hideMobileIcon, hideMobileTe
|
|
|
17
16
|
hideMobileText?: boolean;
|
|
18
17
|
} & ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
19
18
|
/**
|
|
20
|
-
* Text component of
|
|
19
|
+
* Text component of supporting Markdown.
|
|
21
20
|
*/
|
|
22
|
-
export declare function MarkdownText({ ...args }:
|
|
21
|
+
export declare function MarkdownText({ className, children, ...args }: {
|
|
22
|
+
children?: string | null;
|
|
23
|
+
} & ComponentProps<'article'>): import("react/jsx-runtime").JSX.Element;
|
package/dist/style/base.css
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reykit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.244",
|
|
4
4
|
"description": "Kit method set.",
|
|
5
5
|
"author": "reyxbo",
|
|
6
6
|
"keywords": [
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"cmdk": "^1.1.1",
|
|
57
57
|
"date-fns": "^4.1.0",
|
|
58
58
|
"embla-carousel-react": "^8.6.0",
|
|
59
|
+
"github-markdown-css": "^5.9.0",
|
|
59
60
|
"input-otp": "^1.4.2",
|
|
60
61
|
"lucide-react": "^0.575.0",
|
|
61
62
|
"next-themes": "^0.4.6",
|