alytus-ff 0.1.12 → 0.1.13
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/alytus-ff.js
CHANGED
|
@@ -1,23 +1,27 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
const s =
|
|
1
|
+
import { defineComponent as l, openBlock as p, createElementBlock as a, toDisplayString as c } from "vue";
|
|
2
|
+
const s = l({
|
|
3
3
|
name: "WelcomeText",
|
|
4
4
|
props: {
|
|
5
5
|
fullName: {
|
|
6
6
|
type: String,
|
|
7
7
|
required: !0
|
|
8
|
+
},
|
|
9
|
+
no: {
|
|
10
|
+
type: Number,
|
|
11
|
+
default: 0
|
|
8
12
|
}
|
|
9
13
|
}
|
|
10
|
-
}),
|
|
14
|
+
}), u = (e, t) => {
|
|
11
15
|
const r = e.__vccOpts || e;
|
|
12
16
|
for (const [n, o] of t)
|
|
13
17
|
r[n] = o;
|
|
14
18
|
return r;
|
|
15
19
|
};
|
|
16
|
-
function
|
|
17
|
-
return
|
|
20
|
+
function f(e, t, r, n, o, m) {
|
|
21
|
+
return p(), a("h1", null, "Welcome, " + c(e.fullName) + " " + c(e.no), 1);
|
|
18
22
|
}
|
|
19
|
-
const
|
|
23
|
+
const _ = /* @__PURE__ */ u(s, [["render", f], ["__scopeId", "data-v-34d102f4"]]), d = (e) => e ? e.replace(/(?:\r\n|\r|\n)/g, "<br>") : "";
|
|
20
24
|
export {
|
|
21
|
-
|
|
25
|
+
_ as WelcomeText,
|
|
22
26
|
d as nl2br
|
|
23
27
|
};
|
package/dist/alytus-ff.umd.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(e
|
|
1
|
+
(function(n,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],e):(n=typeof globalThis<"u"?globalThis:n||self,e(n["Alytus FF"]={},n.Vue))})(this,function(n,e){"use strict";const l=e.defineComponent({name:"WelcomeText",props:{fullName:{type:String,required:!0},no:{type:Number,default:0}}}),f=(t,r)=>{const o=t.__vccOpts||t;for(const[i,c]of r)o[i]=c;return o};function s(t,r,o,i,c,d){return e.openBlock(),e.createElementBlock("h1",null,"Welcome, "+e.toDisplayString(t.fullName)+" "+e.toDisplayString(t.no),1)}const u=f(l,[["render",s],["__scopeId","data-v-34d102f4"]]),p=t=>t?t.replace(/(?:\r\n|\r|\n)/g,"<br>"):"";n.WelcomeText=u,n.nl2br=p,Object.defineProperty(n,Symbol.toStringTag,{value:"Module"})});
|
|
@@ -3,10 +3,20 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
+
no: {
|
|
7
|
+
type: NumberConstructor;
|
|
8
|
+
default: number;
|
|
9
|
+
};
|
|
6
10
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
11
|
fullName: {
|
|
8
12
|
type: StringConstructor;
|
|
9
13
|
required: true;
|
|
10
14
|
};
|
|
11
|
-
|
|
15
|
+
no: {
|
|
16
|
+
type: NumberConstructor;
|
|
17
|
+
default: number;
|
|
18
|
+
};
|
|
19
|
+
}>> & Readonly<{}>, {
|
|
20
|
+
no: number;
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
22
|
export default _default;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
h1[data-v-
|
|
1
|
+
h1[data-v-34d102f4]{color:#f354f2}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<h1>Welcome, {{fullName}}</h1>
|
|
2
|
+
<h1>Welcome, {{fullName}} {{no}}</h1>
|
|
3
3
|
</template>
|
|
4
4
|
|
|
5
5
|
<script lang="ts">
|
|
@@ -11,6 +11,10 @@ export default defineComponent({
|
|
|
11
11
|
fullName: {
|
|
12
12
|
type: String,
|
|
13
13
|
required: true
|
|
14
|
+
},
|
|
15
|
+
no: {
|
|
16
|
+
type: Number,
|
|
17
|
+
default: 0
|
|
14
18
|
}
|
|
15
19
|
}
|
|
16
20
|
})
|
|
@@ -18,6 +22,6 @@ export default defineComponent({
|
|
|
18
22
|
|
|
19
23
|
<style lang="scss" scoped>
|
|
20
24
|
h1 {
|
|
21
|
-
color: #
|
|
25
|
+
color: #f354f2;
|
|
22
26
|
}
|
|
23
27
|
</style>
|