@knime/scripting-editor 0.0.3 → 0.0.4
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.
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/main'
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { defineComponent as _, openBlock as a, createElementBlock as l, createElementVNode as t, toDisplayString as p, pushScopeId as d, popScopeId as i, createTextVNode as r } from "vue";
|
|
2
|
+
const h = (e) => (d("data-v-af185b77"), e = e(), i(), e), u = { class: "greetings" }, f = { class: "green" }, g = /* @__PURE__ */ h(() => /* @__PURE__ */ t("h3", null, [
|
|
3
|
+
/* @__PURE__ */ r(" You’ve successfully created a project with - yes! "),
|
|
4
|
+
/* @__PURE__ */ t("a", {
|
|
5
|
+
href: "https://vitejs.dev/",
|
|
6
|
+
target: "_blank",
|
|
7
|
+
rel: "noopener"
|
|
8
|
+
}, "Vite"),
|
|
9
|
+
/* @__PURE__ */ r(" + "),
|
|
10
|
+
/* @__PURE__ */ t("a", {
|
|
11
|
+
href: "https://vuejs.org/",
|
|
12
|
+
target: "_blank",
|
|
13
|
+
rel: "noopener"
|
|
14
|
+
}, "Vue 3"),
|
|
15
|
+
/* @__PURE__ */ r(". ")
|
|
16
|
+
], -1)), v = /* @__PURE__ */ _({
|
|
17
|
+
__name: "HelloWorld",
|
|
18
|
+
props: {
|
|
19
|
+
msg: {}
|
|
20
|
+
},
|
|
21
|
+
setup(e) {
|
|
22
|
+
return (o, s) => (a(), l("div", u, [
|
|
23
|
+
t("h1", f, p(o.msg), 1),
|
|
24
|
+
g
|
|
25
|
+
]));
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
const m = (e, o) => {
|
|
29
|
+
const s = e.__vccOpts || e;
|
|
30
|
+
for (const [c, n] of o)
|
|
31
|
+
s[c] = n;
|
|
32
|
+
return s;
|
|
33
|
+
}, b = /* @__PURE__ */ m(v, [["__scopeId", "data-v-af185b77"]]);
|
|
34
|
+
export {
|
|
35
|
+
b as HelloWorld
|
|
36
|
+
};
|
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
h1[data-v-af185b77]{font-weight:500;font-size:2.6rem;position:relative;top:-10px}h3[data-v-af185b77]{font-size:1.2rem}.greetings h1[data-v-af185b77],.greetings h3[data-v-af185b77]{text-align:center}@media (min-width: 1024px){.greetings h1[data-v-af185b77],.greetings h3[data-v-af185b77]{text-align:left}}
|
package/package.json
CHANGED