@plasmicpkgs/plasmic-chakra-ui 0.0.2 → 0.0.3
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/plasmic-chakra-ui.cjs.development.js +274 -417
- package/dist/plasmic-chakra-ui.cjs.development.js.map +1 -1
- package/dist/plasmic-chakra-ui.cjs.production.min.js +1 -1
- package/dist/plasmic-chakra-ui.cjs.production.min.js.map +1 -1
- package/dist/plasmic-chakra-ui.esm.js +274 -417
- package/dist/plasmic-chakra-ui.esm.js.map +1 -1
- package/dist/utils.d.ts +13 -0
- package/package.json +2 -2
package/dist/utils.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const CHAKRA_UI_IMPORT_PATH = "@chakra-ui/react";
|
|
2
|
+
export declare const getPlasmicComponentName: (componentName: string) => string;
|
|
3
|
+
export declare const getDisplayComponentName: (componentName: string) => string;
|
|
4
|
+
export declare const getComponentNameAndImportMeta: (componentName: string, parentComponentName?: string | undefined, opts?: {
|
|
5
|
+
displayName?: string | undefined;
|
|
6
|
+
importPath?: string | undefined;
|
|
7
|
+
} | undefined) => {
|
|
8
|
+
parentComponentName?: string;
|
|
9
|
+
name: string;
|
|
10
|
+
displayName: string;
|
|
11
|
+
importPath: string;
|
|
12
|
+
importName: string;
|
|
13
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicpkgs/plasmic-chakra-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Plasmic registration calls for chakra ui components.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"@plasmicapp/host": "1.0.76",
|
|
49
49
|
"react": ">=16.8.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "dddfcce87d89cbc9633d9619d74741840a7bd866"
|
|
52
52
|
}
|