@seo-console/package 1.0.0 → 1.0.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/dist/components/index.d.mts +48 -3
- package/dist/components/index.d.ts +48 -3
- package/dist/components/index.js +3 -1
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +3 -1
- package/dist/components/index.mjs.map +1 -1
- package/dist/hooks/index.js +443 -3
- package/dist/hooks/index.js.map +1 -1
- package/dist/hooks/index.mjs +443 -3
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.d.mts +71 -66
- package/dist/index.d.ts +71 -66
- package/dist/index.js +804 -692
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +788 -682
- package/dist/index.mjs.map +1 -1
- package/dist/robots-generator-B1KOf8vn.d.ts +166 -0
- package/dist/robots-generator-D6T5HVNx.d.mts +166 -0
- package/dist/{index-6lAOwFXQ.d.mts → seo-schema-D8EwzllB.d.mts} +1 -46
- package/dist/{index-6lAOwFXQ.d.ts → seo-schema-D8EwzllB.d.ts} +1 -46
- package/dist/server.d.mts +88 -0
- package/dist/server.d.ts +88 -0
- package/dist/server.js +1547 -0
- package/dist/server.js.map +1 -0
- package/dist/server.mjs +1485 -0
- package/dist/server.mjs.map +1 -0
- package/package.json +13 -3
|
@@ -1,4 +1,49 @@
|
|
|
1
|
-
|
|
2
|
-
import '
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { S as SEORecord } from '../seo-schema-D8EwzllB.mjs';
|
|
3
|
+
import * as React from 'react';
|
|
3
4
|
import 'zod';
|
|
4
|
-
|
|
5
|
+
|
|
6
|
+
declare function SEORecordList(): react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
interface SEORecordFormProps {
|
|
9
|
+
record?: SEORecord;
|
|
10
|
+
onSuccess?: () => void;
|
|
11
|
+
onCancel?: () => void;
|
|
12
|
+
}
|
|
13
|
+
declare function SEORecordForm({ record, onSuccess, onCancel }: SEORecordFormProps): react_jsx_runtime.JSX.Element;
|
|
14
|
+
|
|
15
|
+
declare function ValidationDashboard(): react_jsx_runtime.JSX.Element;
|
|
16
|
+
|
|
17
|
+
interface OGImagePreviewProps {
|
|
18
|
+
imageUrl: string;
|
|
19
|
+
expectedWidth?: number;
|
|
20
|
+
expectedHeight?: number;
|
|
21
|
+
title?: string;
|
|
22
|
+
description?: string;
|
|
23
|
+
}
|
|
24
|
+
declare function OGImagePreview({ imageUrl, expectedWidth, expectedHeight, title, description, }: OGImagePreviewProps): react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
27
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link";
|
|
28
|
+
size?: "default" | "sm" | "lg" | "icon";
|
|
29
|
+
}
|
|
30
|
+
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
31
|
+
|
|
32
|
+
declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
33
|
+
declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
34
|
+
declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
35
|
+
declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
36
|
+
declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
37
|
+
declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
38
|
+
|
|
39
|
+
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
40
|
+
}
|
|
41
|
+
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
|
|
42
|
+
|
|
43
|
+
interface SpinnerProps {
|
|
44
|
+
className?: string;
|
|
45
|
+
size?: "sm" | "default" | "lg";
|
|
46
|
+
}
|
|
47
|
+
declare function Spinner({ className, size }: SpinnerProps): react_jsx_runtime.JSX.Element;
|
|
48
|
+
|
|
49
|
+
export { Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Input, OGImagePreview, SEORecordForm, SEORecordList, Spinner, ValidationDashboard };
|
|
@@ -1,4 +1,49 @@
|
|
|
1
|
-
|
|
2
|
-
import '
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { S as SEORecord } from '../seo-schema-D8EwzllB.js';
|
|
3
|
+
import * as React from 'react';
|
|
3
4
|
import 'zod';
|
|
4
|
-
|
|
5
|
+
|
|
6
|
+
declare function SEORecordList(): react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
interface SEORecordFormProps {
|
|
9
|
+
record?: SEORecord;
|
|
10
|
+
onSuccess?: () => void;
|
|
11
|
+
onCancel?: () => void;
|
|
12
|
+
}
|
|
13
|
+
declare function SEORecordForm({ record, onSuccess, onCancel }: SEORecordFormProps): react_jsx_runtime.JSX.Element;
|
|
14
|
+
|
|
15
|
+
declare function ValidationDashboard(): react_jsx_runtime.JSX.Element;
|
|
16
|
+
|
|
17
|
+
interface OGImagePreviewProps {
|
|
18
|
+
imageUrl: string;
|
|
19
|
+
expectedWidth?: number;
|
|
20
|
+
expectedHeight?: number;
|
|
21
|
+
title?: string;
|
|
22
|
+
description?: string;
|
|
23
|
+
}
|
|
24
|
+
declare function OGImagePreview({ imageUrl, expectedWidth, expectedHeight, title, description, }: OGImagePreviewProps): react_jsx_runtime.JSX.Element;
|
|
25
|
+
|
|
26
|
+
interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
27
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link";
|
|
28
|
+
size?: "default" | "sm" | "lg" | "icon";
|
|
29
|
+
}
|
|
30
|
+
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
31
|
+
|
|
32
|
+
declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
33
|
+
declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
34
|
+
declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
35
|
+
declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
|
|
36
|
+
declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
37
|
+
declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
|
|
38
|
+
|
|
39
|
+
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
40
|
+
}
|
|
41
|
+
declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
|
|
42
|
+
|
|
43
|
+
interface SpinnerProps {
|
|
44
|
+
className?: string;
|
|
45
|
+
size?: "sm" | "default" | "lg";
|
|
46
|
+
}
|
|
47
|
+
declare function Spinner({ className, size }: SpinnerProps): react_jsx_runtime.JSX.Element;
|
|
48
|
+
|
|
49
|
+
export { Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Input, OGImagePreview, SEORecordForm, SEORecordList, Spinner, ValidationDashboard };
|
package/dist/components/index.js
CHANGED
|
@@ -3412,7 +3412,9 @@ function SEORecordList() {
|
|
|
3412
3412
|
// src/components/seo/ValidationDashboard.tsx
|
|
3413
3413
|
var import_react4 = require("react");
|
|
3414
3414
|
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
3415
|
-
var Link = ({ href, children, ...props }) =>
|
|
3415
|
+
var Link = ({ href, children, ...props }) => {
|
|
3416
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("a", { href, ...props, children });
|
|
3417
|
+
};
|
|
3416
3418
|
function ValidationDashboard() {
|
|
3417
3419
|
const [records, setRecords] = (0, import_react4.useState)([]);
|
|
3418
3420
|
const [loading, setLoading] = (0, import_react4.useState)(true);
|