exodeui 6.0.24 → 6.0.26
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/ExodeSEO.d.ts +13 -0
- package/dist/ExodeUICanvas.d.ts +3 -1
- package/dist/__tests__/seo.test.d.ts +1 -0
- package/dist/index.js +19 -19
- package/dist/index.mjs +2687 -2618
- package/dist/types.d.ts +14 -0
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Artboard, SEOConfig } from './types';
|
|
3
|
+
|
|
4
|
+
interface ExodeSEOProps {
|
|
5
|
+
artboard: Artboard;
|
|
6
|
+
config?: SEOConfig;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* ExodeSEO handles automatic metadata management and generates a semantic
|
|
10
|
+
* HTML overlay for search engines and screen readers.
|
|
11
|
+
*/
|
|
12
|
+
export declare const ExodeSEO: React.FC<ExodeSEOProps>;
|
|
13
|
+
export {};
|
package/dist/ExodeUICanvas.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { ExodeUIEngine } from './engine';
|
|
3
|
-
import { Artboard, Fit, Alignment, ComponentEvent } from './types';
|
|
3
|
+
import { Artboard, Fit, Alignment, ComponentEvent, SEOConfig } from './types';
|
|
4
4
|
|
|
5
5
|
export interface ExodeUICanvasProps {
|
|
6
6
|
artboard?: Artboard;
|
|
@@ -10,6 +10,8 @@ export interface ExodeUICanvasProps {
|
|
|
10
10
|
autoPlay?: boolean;
|
|
11
11
|
fit?: Fit;
|
|
12
12
|
alignment?: Alignment;
|
|
13
|
+
enableSEO?: boolean;
|
|
14
|
+
seo?: SEOConfig;
|
|
13
15
|
onReady?: (engine: ExodeUIEngine) => void;
|
|
14
16
|
onTrigger?: (triggerName: string, animationName: string) => void;
|
|
15
17
|
onInputUpdate?: (nameOrId: string, value: any) => void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|