@plasmicpkgs/plasmic-soundcloud 0.0.93 → 0.0.94
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/soundcloud.d.ts +17 -17
- 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 "./soundcloud";
|
|
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 "./soundcloud";
|
package/dist/soundcloud.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
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 SoundCloudProps {
|
|
5
|
-
url: string;
|
|
6
|
-
visual: boolean;
|
|
7
|
-
autoPlay: boolean;
|
|
8
|
-
color: string;
|
|
9
|
-
showComments: boolean;
|
|
10
|
-
showUser: boolean;
|
|
11
|
-
showRelated: boolean;
|
|
12
|
-
showTeaser: boolean;
|
|
13
|
-
className: string;
|
|
14
|
-
}
|
|
15
|
-
export declare const SoundCloudMeta: CodeComponentMeta<SoundCloudProps>;
|
|
16
|
-
export declare function SoundCloud({ className, url, autoPlay, color, showComments, showRelated, showTeaser, showUser, visual, }: SoundCloudProps): React.JSX.Element;
|
|
17
|
-
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 SoundCloudProps {
|
|
5
|
+
url: string;
|
|
6
|
+
visual: boolean;
|
|
7
|
+
autoPlay: boolean;
|
|
8
|
+
color: string;
|
|
9
|
+
showComments: boolean;
|
|
10
|
+
showUser: boolean;
|
|
11
|
+
showRelated: boolean;
|
|
12
|
+
showTeaser: boolean;
|
|
13
|
+
className: string;
|
|
14
|
+
}
|
|
15
|
+
export declare const SoundCloudMeta: CodeComponentMeta<SoundCloudProps>;
|
|
16
|
+
export declare function SoundCloud({ className, url, autoPlay, color, showComments, showRelated, showTeaser, showUser, visual, }: SoundCloudProps): React.JSX.Element;
|
|
17
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicpkgs/plasmic-soundcloud",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.94",
|
|
4
4
|
"description": "Plasmic Soundcloud 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.7",
|
|
38
38
|
"@types/dlv": "^1.1.2",
|
|
39
39
|
"@types/react": "^18",
|
|
40
40
|
"@types/react-dom": "^18",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"change-case": "^4.1.2"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "6087f1621240c66b20d4a8fcf02c8bf889c554aa"
|
|
51
51
|
}
|