@plasmicpkgs/plasmic-embed-css 0.1.233 → 0.1.234
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 +10 -10
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import registerGlobalContext, { GlobalContextMeta } from "@plasmicapp/host/registerGlobalContext";
|
|
2
|
-
import React from "react";
|
|
3
|
-
export interface EmbedCssProps {
|
|
4
|
-
css?: string;
|
|
5
|
-
}
|
|
6
|
-
export declare function EmbedCss({ css, children, }: React.PropsWithChildren<EmbedCssProps>): React.JSX.Element;
|
|
7
|
-
export declare const embedCssMeta: GlobalContextMeta<EmbedCssProps>;
|
|
8
|
-
export declare function registerEmbedCss(loader?: {
|
|
9
|
-
registerGlobalContext: typeof registerGlobalContext;
|
|
10
|
-
}, customEmbedCssMeta?: GlobalContextMeta<EmbedCssProps>): void;
|
|
1
|
+
import registerGlobalContext, { GlobalContextMeta } from "@plasmicapp/host/registerGlobalContext";
|
|
2
|
+
import React from "react";
|
|
3
|
+
export interface EmbedCssProps {
|
|
4
|
+
css?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare function EmbedCss({ css, children, }: React.PropsWithChildren<EmbedCssProps>): React.JSX.Element;
|
|
7
|
+
export declare const embedCssMeta: GlobalContextMeta<EmbedCssProps>;
|
|
8
|
+
export declare function registerEmbedCss(loader?: {
|
|
9
|
+
registerGlobalContext: typeof registerGlobalContext;
|
|
10
|
+
}, customEmbedCssMeta?: GlobalContextMeta<EmbedCssProps>): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicpkgs/plasmic-embed-css",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.234",
|
|
4
4
|
"description": "Plasmic embed css code components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "tsdx build",
|
|
23
23
|
"start": "tsdx watch",
|
|
24
|
-
"test": "TEST_CWD=`pwd`
|
|
24
|
+
"test": "TEST_CWD=`pwd` pnpm -w test --passWithNoTests",
|
|
25
25
|
"lint": "tsdx lint",
|
|
26
26
|
"prepublishOnly": "npm run build",
|
|
27
27
|
"size": "size-limit",
|
|
28
28
|
"analyze": "size-limit --why"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@plasmicapp/host": "2.0.
|
|
31
|
+
"@plasmicapp/host": "2.0.7",
|
|
32
32
|
"@types/node": "^17.0.14",
|
|
33
33
|
"@types/react": "^18",
|
|
34
34
|
"tsdx": "^0.14.1",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"react": ">=16.8.0",
|
|
40
40
|
"react-dom": ">=16.8.0"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "6087f1621240c66b20d4a8fcf02c8bf889c554aa"
|
|
43
43
|
}
|