@plasmicpkgs/plasmic-intercom 0.0.26 → 0.0.28
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.d.ts +7 -7
- package/dist/intercom.d.ts +15 -15
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import registerComponent from "@plasmicapp/host/registerComponent";
|
|
2
|
-
import registerGlobalContext from "@plasmicapp/host/registerGlobalContext";
|
|
3
|
-
export declare function registerAll(loader?: {
|
|
4
|
-
registerComponent: typeof registerComponent;
|
|
5
|
-
registerGlobalContext: typeof registerGlobalContext;
|
|
6
|
-
}): void;
|
|
7
|
-
export * from "./intercom";
|
|
1
|
+
import registerComponent from "@plasmicapp/host/registerComponent";
|
|
2
|
+
import registerGlobalContext from "@plasmicapp/host/registerGlobalContext";
|
|
3
|
+
export declare function registerAll(loader?: {
|
|
4
|
+
registerComponent: typeof registerComponent;
|
|
5
|
+
registerGlobalContext: typeof registerGlobalContext;
|
|
6
|
+
}): void;
|
|
7
|
+
export * from "./intercom";
|
package/dist/intercom.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { CodeComponentMeta } from "@plasmicapp/host/registerComponent";
|
|
2
|
-
import React from "react";
|
|
3
|
-
export declare function ensure<T>(x: T | null | undefined): T;
|
|
4
|
-
interface IntercomProviderProps {
|
|
5
|
-
workSpaceId?: string;
|
|
6
|
-
autoBoot?: boolean;
|
|
7
|
-
buttonText?: string;
|
|
8
|
-
shouldInitialize?: boolean;
|
|
9
|
-
apiBase?: string;
|
|
10
|
-
initializeDelay?: number;
|
|
11
|
-
className?: string;
|
|
12
|
-
}
|
|
13
|
-
export declare const IntercomProviderMeta: CodeComponentMeta<IntercomProviderProps>;
|
|
14
|
-
export declare function IntercomProvider({ apiBase, shouldInitialize, initializeDelay, workSpaceId, }: IntercomProviderProps): React.JSX.Element;
|
|
15
|
-
export {};
|
|
1
|
+
import { CodeComponentMeta } from "@plasmicapp/host/registerComponent";
|
|
2
|
+
import React from "react";
|
|
3
|
+
export declare function ensure<T>(x: T | null | undefined): T;
|
|
4
|
+
interface IntercomProviderProps {
|
|
5
|
+
workSpaceId?: string;
|
|
6
|
+
autoBoot?: boolean;
|
|
7
|
+
buttonText?: string;
|
|
8
|
+
shouldInitialize?: boolean;
|
|
9
|
+
apiBase?: string;
|
|
10
|
+
initializeDelay?: number;
|
|
11
|
+
className?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare const IntercomProviderMeta: CodeComponentMeta<IntercomProviderProps>;
|
|
14
|
+
export declare function IntercomProvider({ apiBase, shouldInitialize, initializeDelay, workSpaceId, }: IntercomProviderProps): React.JSX.Element;
|
|
15
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicpkgs/plasmic-intercom",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.28",
|
|
4
4
|
"description": "Plasmic intercom components.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"start": "tsdx watch",
|
|
16
16
|
"build": "tsdx build",
|
|
17
|
-
"test": "TEST_CWD=`pwd`
|
|
17
|
+
"test": "TEST_CWD=`pwd` pnpm -w test --passWithNoTests",
|
|
18
18
|
"lint": "tsdx lint",
|
|
19
19
|
"prepublishOnly": "npm run build",
|
|
20
20
|
"size": "size-limit",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@plasmicapp/host": "2.0.
|
|
37
|
+
"@plasmicapp/host": "2.0.8",
|
|
38
38
|
"@types/react": "^18",
|
|
39
39
|
"@types/react-dom": "^18",
|
|
40
40
|
"husky": "^7.0.4",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"react-use-intercom": "^2.0.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "f2542f3c07f280e033323f363580af5dd8dc534b"
|
|
50
50
|
}
|