@topvisor/ui 0.0.4 → 0.0.5-0

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/README.md CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  # UI kit Topvisor Vue
3
2
 
4
3
  ## Vue компоненты
@@ -1,18 +1,7 @@
1
1
  define(["exports", "vue"], function(exports, vue) {
2
2
  "use strict"; vue = vue ?? Vue;
3
- const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
4
- __name: "button",
5
- props: {
6
- label: {}
7
- },
8
- setup(__props) {
9
- return (_ctx, _cache) => {
10
- return vue.toDisplayString(_ctx.label);
11
- };
12
- }
13
- });
14
3
  const _sfc_main = /* @__PURE__ */ vue.defineComponent({
15
- __name: "button2",
4
+ __name: "button",
16
5
  props: {
17
6
  label: {}
18
7
  },
@@ -22,7 +11,6 @@ define(["exports", "vue"], function(exports, vue) {
22
11
  };
23
12
  }
24
13
  });
25
- exports.Button = _sfc_main$1;
26
- exports.Button2 = _sfc_main;
14
+ exports.Button = _sfc_main;
27
15
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
28
16
  });
package/l/forms/forms.js CHANGED
@@ -1,17 +1,6 @@
1
1
  import { defineComponent, toDisplayString } from "vue";
2
- const _sfc_main$1 = /* @__PURE__ */ defineComponent({
3
- __name: "button",
4
- props: {
5
- label: {}
6
- },
7
- setup(__props) {
8
- return (_ctx, _cache) => {
9
- return toDisplayString(_ctx.label);
10
- };
11
- }
12
- });
13
2
  const _sfc_main = /* @__PURE__ */ defineComponent({
14
- __name: "button2",
3
+ __name: "button",
15
4
  props: {
16
5
  label: {}
17
6
  },
@@ -22,6 +11,5 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
22
11
  }
23
12
  });
24
13
  export {
25
- _sfc_main$1 as Button,
26
- _sfc_main as Button2
14
+ _sfc_main as Button
27
15
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@topvisor/ui",
3
3
  "private": false,
4
- "version": "0.0.4",
4
+ "version": "0.0.5-0",
5
5
  "type": "module",
6
6
  "description": "Topvisor UI-kit Vue",
7
7
  "author": "Topvisor",
@@ -1,15 +0,0 @@
1
- define(["vue"], function(vue) {
2
- "use strict"; vue = vue ?? Vue;
3
- const _sfc_main = /* @__PURE__ */ vue.defineComponent({
4
- __name: "button2",
5
- props: {
6
- label: {}
7
- },
8
- setup(__props) {
9
- return (_ctx, _cache) => {
10
- return vue.toDisplayString(_ctx.label);
11
- };
12
- }
13
- });
14
- return _sfc_main;
15
- });
@@ -1,15 +0,0 @@
1
- import { defineComponent, toDisplayString } from "vue";
2
- const _sfc_main = /* @__PURE__ */ defineComponent({
3
- __name: "button2",
4
- props: {
5
- label: {}
6
- },
7
- setup(__props) {
8
- return (_ctx, _cache) => {
9
- return toDisplayString(_ctx.label);
10
- };
11
- }
12
- });
13
- export {
14
- _sfc_main as default
15
- };