@inkeep/cxkit-docusaurus 0.5.15 → 0.5.17
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/ChatButton.d.cts +13 -0
- package/dist/ChatButton.d.ts +13 -0
- package/dist/Root.d.cts +16 -0
- package/dist/Root.d.ts +16 -0
- package/dist/SearchBar.d.cts +13 -0
- package/dist/SearchBar.d.ts +13 -0
- package/dist/index.d.cts +26 -9
- package/dist/index.d.ts +26 -9
- package/package.json +3 -3
- package/dist/define-config.d.cts +0 -8
- package/dist/define-config.d.ts +0 -8
- package/dist/theme/ChatButton.d.cts +0 -1
- package/dist/theme/ChatButton.d.ts +0 -1
- package/dist/theme/Root.d.cts +0 -4
- package/dist/theme/Root.d.ts +0 -4
- package/dist/theme/SearchBar.d.cts +0 -1
- package/dist/theme/SearchBar.d.ts +0 -1
- package/dist/utils/config.d.cts +0 -3
- package/dist/utils/config.d.ts +0 -3
- package/dist/utils/consts.d.cts +0 -1
- package/dist/utils/consts.d.ts +0 -1
package/dist/Root.d.cts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { default as default_2 } from 'react';
|
|
2
|
+
import { JSX } from 'react/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
declare function Root({ children }: {
|
|
5
|
+
children: default_2.ReactNode;
|
|
6
|
+
}): JSX.Element;
|
|
7
|
+
export default Root;
|
|
8
|
+
|
|
9
|
+
export { }
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
declare global {
|
|
13
|
+
interface Window {
|
|
14
|
+
InkeepConfig: PluginConfig;
|
|
15
|
+
}
|
|
16
|
+
}
|
package/dist/Root.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { default as default_2 } from 'react';
|
|
2
|
+
import { JSX } from 'react/jsx-runtime';
|
|
3
|
+
|
|
4
|
+
declare function Root({ children }: {
|
|
5
|
+
children: default_2.ReactNode;
|
|
6
|
+
}): JSX.Element;
|
|
7
|
+
export default Root;
|
|
8
|
+
|
|
9
|
+
export { }
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
declare global {
|
|
13
|
+
interface Window {
|
|
14
|
+
InkeepConfig: PluginConfig;
|
|
15
|
+
}
|
|
16
|
+
}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,9 +1,26 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import { InkeepPluginOptions } from './types';
|
|
2
|
+
import { Plugin as Plugin_2 } from '@docusaurus/types';
|
|
3
|
+
import { PluginConfig } from './types';
|
|
4
|
+
import { PluginTheme } from './types';
|
|
5
|
+
|
|
6
|
+
export declare const defineConfig: (config: PluginConfig) => void;
|
|
7
|
+
|
|
8
|
+
declare function inkeepPlugin(context: {
|
|
9
|
+
siteConfig: {
|
|
10
|
+
themeConfig: PluginTheme;
|
|
11
|
+
};
|
|
12
|
+
siteDir: string;
|
|
13
|
+
}, options: InkeepPluginOptions): Plugin_2;
|
|
14
|
+
export default inkeepPlugin;
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export * from "@inkeep/cxkit-react";
|
|
18
|
+
|
|
19
|
+
export { }
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
declare global {
|
|
23
|
+
interface Window {
|
|
24
|
+
InkeepConfig: PluginConfig;
|
|
25
|
+
}
|
|
26
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,26 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import { InkeepPluginOptions } from './types';
|
|
2
|
+
import { Plugin as Plugin_2 } from '@docusaurus/types';
|
|
3
|
+
import { PluginConfig } from './types';
|
|
4
|
+
import { PluginTheme } from './types';
|
|
5
|
+
|
|
6
|
+
export declare const defineConfig: (config: PluginConfig) => void;
|
|
7
|
+
|
|
8
|
+
declare function inkeepPlugin(context: {
|
|
9
|
+
siteConfig: {
|
|
10
|
+
themeConfig: PluginTheme;
|
|
11
|
+
};
|
|
12
|
+
siteDir: string;
|
|
13
|
+
}, options: InkeepPluginOptions): Plugin_2;
|
|
14
|
+
export default inkeepPlugin;
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export * from "@inkeep/cxkit-react";
|
|
18
|
+
|
|
19
|
+
export { }
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
declare global {
|
|
23
|
+
interface Window {
|
|
24
|
+
InkeepConfig: PluginConfig;
|
|
25
|
+
}
|
|
26
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/cxkit-docusaurus",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.17",
|
|
4
4
|
"description": "Docusaurus plugin for Inkeep Chat and Search components",
|
|
5
5
|
"license": "Inkeep, Inc. Customer License (IICL) v1.1",
|
|
6
6
|
"homepage": "",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"typescript": "5.7.3",
|
|
36
36
|
"vite": "5.4.11",
|
|
37
37
|
"vite-plugin-dts": "4.4.0",
|
|
38
|
-
"@inkeep/cxkit-types": "0.5.
|
|
38
|
+
"@inkeep/cxkit-types": "0.5.17"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"merge-anything": "5.1.7",
|
|
42
42
|
"path": "^0.12.7",
|
|
43
|
-
"@inkeep/cxkit-react": "0.5.
|
|
43
|
+
"@inkeep/cxkit-react": "0.5.17"
|
|
44
44
|
},
|
|
45
45
|
"module": "dist/index.js",
|
|
46
46
|
"types": "dist/index.d.ts",
|
package/dist/define-config.d.cts
DELETED
package/dist/define-config.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function ChatButtonWrapper(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function ChatButtonWrapper(): import("react/jsx-runtime").JSX.Element | null;
|
package/dist/theme/Root.d.cts
DELETED
package/dist/theme/Root.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function SearchBarWrapper(): import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export default function SearchBarWrapper(): import("react/jsx-runtime").JSX.Element | null;
|
package/dist/utils/config.d.cts
DELETED
package/dist/utils/config.d.ts
DELETED
package/dist/utils/consts.d.cts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const PLUGIN_NAME = "docusaurus-plugin-inkeep";
|
package/dist/utils/consts.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const PLUGIN_NAME = "docusaurus-plugin-inkeep";
|