@tduniec/plugin-template-designer 0.3.2 → 0.3.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/index.d.ts +2 -2
- package/dist/package.json.esm.js +1 -1
- package/dist/plugin.esm.js +2 -0
- package/dist/plugin.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2,11 +2,11 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
2
2
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
3
3
|
import { SvgIconProps } from '@material-ui/core/SvgIcon';
|
|
4
4
|
|
|
5
|
+
declare const TemplateDesignerIcon: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
6
|
+
|
|
5
7
|
declare const templateDesignerPlugin: _backstage_core_plugin_api.BackstagePlugin<{
|
|
6
8
|
root: _backstage_core_plugin_api.RouteRef<undefined>;
|
|
7
9
|
}, {}, {}>;
|
|
8
10
|
declare const TemplateDesignerPage: () => react_jsx_runtime.JSX.Element;
|
|
9
11
|
|
|
10
|
-
declare const TemplateDesignerIcon: (props: SvgIconProps) => react_jsx_runtime.JSX.Element;
|
|
11
|
-
|
|
12
12
|
export { TemplateDesignerIcon, TemplateDesignerPage, templateDesignerPlugin };
|
package/dist/package.json.esm.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
var name = "@tduniec/plugin-template-designer";
|
|
2
2
|
var description = "Template Designer turns blank Backstage YAML into a storyboard-like canvas, guiding anyone through drag-and-drop scaffolder authoring before ever touching code. Rally non-experts, broadcast best practices, and accelerate template launches directly inside Backstage.";
|
|
3
|
-
var version = "0.3.
|
|
3
|
+
var version = "0.3.2";
|
|
4
4
|
var license = "Apache-2.0";
|
|
5
5
|
var keywords = [
|
|
6
6
|
"backstage",
|
package/dist/plugin.esm.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { createPlugin, createRoutableExtension } from '@backstage/core-plugin-api';
|
|
2
2
|
import { rootRouteRef } from './routes.esm.js';
|
|
3
|
+
import 'react/jsx-runtime';
|
|
4
|
+
import '@material-ui/core/SvgIcon';
|
|
3
5
|
|
|
4
6
|
const templateDesignerPlugin = createPlugin({
|
|
5
7
|
id: "template-designer",
|
package/dist/plugin.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.ts"],"sourcesContent":["import {\n createPlugin,\n createRoutableExtension,\n} from \"@backstage/core-plugin-api\";\n\nimport { rootRouteRef } from \"./routes\";\n\nexport const templateDesignerPlugin = createPlugin({\n id: \"template-designer\",\n routes: {\n root: rootRouteRef,\n },\n});\n\nexport const TemplateDesignerPage = templateDesignerPlugin.provide(\n createRoutableExtension({\n name: \"TemplateDesignerPage\",\n component: () =>\n import(\"./components/TemplateDesigner\").then((m) => m.TemplateDesigner),\n mountPoint: rootRouteRef,\n })\n);\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.ts"],"sourcesContent":["import {\n createPlugin,\n createRoutableExtension,\n} from \"@backstage/core-plugin-api\";\n\nimport { rootRouteRef } from \"./routes\";\n\nexport const templateDesignerPlugin = createPlugin({\n id: \"template-designer\",\n routes: {\n root: rootRouteRef,\n },\n});\n\nexport const TemplateDesignerPage = templateDesignerPlugin.provide(\n createRoutableExtension({\n name: \"TemplateDesignerPage\",\n component: () =>\n import(\"./components/TemplateDesigner\").then((m) => m.TemplateDesigner),\n mountPoint: rootRouteRef,\n })\n);\n\nexport { TemplateDesignerIcon } from \"./components/TemplateDesignerIcon\";\n"],"names":[],"mappings":";;;;;AAOO,MAAM,yBAAyB,YAAA,CAAa;AAAA,EACjD,EAAA,EAAI,mBAAA;AAAA,EACJ,MAAA,EAAQ;AAAA,IACN,IAAA,EAAM;AAAA;AAEV,CAAC;AAEM,MAAM,uBAAuB,sBAAA,CAAuB,OAAA;AAAA,EACzD,uBAAA,CAAwB;AAAA,IACtB,IAAA,EAAM,sBAAA;AAAA,IACN,SAAA,EAAW,MACT,OAAO,4CAA+B,EAAE,IAAA,CAAK,CAAC,CAAA,KAAM,CAAA,CAAE,gBAAgB,CAAA;AAAA,IACxE,UAAA,EAAY;AAAA,GACb;AACH;;;;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tduniec/plugin-template-designer",
|
|
3
3
|
"description": "Template Designer turns blank Backstage YAML into a storyboard-like canvas, guiding anyone through drag-and-drop scaffolder authoring before ever touching code. Rally non-experts, broadcast best practices, and accelerate template launches directly inside Backstage.",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.3",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"backstage",
|