@win2win/shared-ui 0.0.3 → 0.0.5
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 +24 -15
- package/dist/components/TestUi.vue.d.ts +2 -0
- package/dist/favicon.ico +0 -0
- package/dist/index.d.ts +1 -0
- package/dist/w2w-shared-ui.js +14 -0
- package/dist/w2w-shared-ui.umd.cjs +1 -0
- package/package.json +37 -49
- package/dist/demo.html +0 -1
- package/dist/img/logo.03709c7d.svg +0 -15
- package/dist/w2w-shared-ui.common.js +0 -127
- package/dist/w2w-shared-ui.common.js.map +0 -1
- package/dist/w2w-shared-ui.umd.js +0 -170
- package/dist/w2w-shared-ui.umd.js.map +0 -1
- package/dist/w2w-shared-ui.umd.min.js +0 -2
- package/dist/w2w-shared-ui.umd.min.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,24 +1,33 @@
|
|
|
1
1
|
# w2w-shared-ui
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
This template should help get you started developing with Vue 3 in Vite.
|
|
4
|
+
|
|
5
|
+
## Recommended IDE Setup
|
|
6
|
+
|
|
7
|
+
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
|
|
8
|
+
|
|
9
|
+
## Type Support for `.vue` Imports in TS
|
|
10
|
+
|
|
11
|
+
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
|
|
12
|
+
|
|
13
|
+
## Customize configuration
|
|
14
|
+
|
|
15
|
+
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
16
|
+
|
|
17
|
+
## Project Setup
|
|
18
|
+
|
|
19
|
+
```sh
|
|
5
20
|
npm install
|
|
6
21
|
```
|
|
7
22
|
|
|
8
|
-
###
|
|
9
|
-
```
|
|
10
|
-
npm run serve
|
|
11
|
-
```
|
|
23
|
+
### Compile and Hot-Reload for Development
|
|
12
24
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
npm run build
|
|
25
|
+
```sh
|
|
26
|
+
npm run dev
|
|
16
27
|
```
|
|
17
28
|
|
|
18
|
-
###
|
|
19
|
-
```
|
|
20
|
-
npm run lint
|
|
21
|
-
```
|
|
29
|
+
### Type-Check, Compile and Minify for Production
|
|
22
30
|
|
|
23
|
-
|
|
24
|
-
|
|
31
|
+
```sh
|
|
32
|
+
npm run build
|
|
33
|
+
```
|
package/dist/favicon.ico
ADDED
|
Binary file
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TestUi } from './components/TestUi.vue';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { openBlock as r, createElementBlock as s } from "vue";
|
|
2
|
+
const _ = (t, e) => {
|
|
3
|
+
const c = t.__vccOpts || t;
|
|
4
|
+
for (const [n, o] of e)
|
|
5
|
+
c[n] = o;
|
|
6
|
+
return c;
|
|
7
|
+
}, f = {};
|
|
8
|
+
function l(t, e) {
|
|
9
|
+
return r(), s("h1", null, "Test W2W UI!");
|
|
10
|
+
}
|
|
11
|
+
const p = /* @__PURE__ */ _(f, [["render", l]]);
|
|
12
|
+
export {
|
|
13
|
+
p as TestUi
|
|
14
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(function(e,t){typeof exports=="object"&&typeof module<"u"?t(exports,require("vue")):typeof define=="function"&&define.amd?define(["exports","vue"],t):(e=typeof globalThis<"u"?globalThis:e||self,t(e.W2WSharedUi={},e.Vue))})(this,function(e,t){"use strict";const i=(n,o)=>{const c=n.__vccOpts||n;for(const[u,d]of o)c[u]=d;return c},r={};function s(n,o){return t.openBlock(),t.createElementBlock("h1",null,"Test W2W UI!")}const f=i(r,[["render",s]]);e.TestUi=f,Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})});
|
package/package.json
CHANGED
|
@@ -1,59 +1,47 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@win2win/shared-ui",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"
|
|
5
|
-
|
|
3
|
+
"version": "0.0.5",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/w2w-shared-ui.umd.cjs",
|
|
10
|
+
"module": "dist/w2w-shared-ui.js",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/w2w-shared-ui.js",
|
|
14
|
+
"require": "./dist/w2w-shared-ui.umd.cjs"
|
|
15
|
+
},
|
|
16
|
+
"./style.css": "./dist/style.css"
|
|
17
|
+
},
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
6
19
|
"scripts": {
|
|
7
|
-
"dev": "
|
|
8
|
-
"build": "
|
|
9
|
-
"
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
22
|
+
"types": "vue-tsc ",
|
|
23
|
+
"preview": "vite preview",
|
|
24
|
+
"build-only": "vite build",
|
|
25
|
+
"type-check": "vue-tsc --build --force",
|
|
10
26
|
"deploy": "npm publish --access public"
|
|
11
27
|
},
|
|
12
28
|
"dependencies": {
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
"vue": "^3.
|
|
17
|
-
"quasar": "^2.16.0",
|
|
18
|
-
"@quasar/extras": "^1.0.0"
|
|
29
|
+
"@quasar/extras": "^1.16.12",
|
|
30
|
+
"pinia": "^2.1.7",
|
|
31
|
+
"quasar": "^2.16.8",
|
|
32
|
+
"vue": "^3.4.29"
|
|
19
33
|
},
|
|
20
34
|
"devDependencies": {
|
|
21
|
-
"@
|
|
22
|
-
"@
|
|
23
|
-
"@
|
|
24
|
-
"@
|
|
25
|
-
"@vue/
|
|
26
|
-
"
|
|
27
|
-
"@vue/compiler-sfc": "^3.4.37",
|
|
28
|
-
"eslint": "^7.32.0",
|
|
29
|
-
"eslint-plugin-vue": "^8.0.3",
|
|
35
|
+
"@quasar/vite-plugin": "^1.7.0",
|
|
36
|
+
"@tsconfig/node20": "^20.1.4",
|
|
37
|
+
"@types/node": "^20.14.5",
|
|
38
|
+
"@vitejs/plugin-vue": "^5.0.5",
|
|
39
|
+
"@vue/tsconfig": "^0.5.1",
|
|
40
|
+
"npm-run-all2": "^6.2.0",
|
|
30
41
|
"sass": "^1.77.8",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"vue-
|
|
35
|
-
|
|
36
|
-
"quasar": "^2.16.0",
|
|
37
|
-
"@quasar/extras": "^1.0.0"
|
|
38
|
-
},
|
|
39
|
-
"eslintConfig": {
|
|
40
|
-
"root": true,
|
|
41
|
-
"env": {
|
|
42
|
-
"node": true
|
|
43
|
-
},
|
|
44
|
-
"extends": [
|
|
45
|
-
"plugin:vue/vue3-essential",
|
|
46
|
-
"eslint:recommended"
|
|
47
|
-
],
|
|
48
|
-
"parserOptions": {
|
|
49
|
-
"parser": "@babel/eslint-parser"
|
|
50
|
-
},
|
|
51
|
-
"rules": {}
|
|
52
|
-
},
|
|
53
|
-
"browserslist": [
|
|
54
|
-
"> 1%",
|
|
55
|
-
"last 2 versions",
|
|
56
|
-
"not dead",
|
|
57
|
-
"not ie 11"
|
|
58
|
-
]
|
|
42
|
+
"typescript": "~5.4.0",
|
|
43
|
+
"vite": "^5.3.1",
|
|
44
|
+
"vite-plugin-dts": "^4.0.2",
|
|
45
|
+
"vue-tsc": "^2.0.21"
|
|
46
|
+
}
|
|
59
47
|
}
|
package/dist/demo.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!doctype html><meta charset="utf-8"><title>w2w-shared-ui demo</title><script src="./w2w-shared-ui.umd.js"></script><link rel="stylesheet" href="./w2w-shared-ui.css"><script>console.log(w2w-shared-ui)</script>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 356 360">
|
|
2
|
-
<path
|
|
3
|
-
d="M43.4 303.4c0 3.8-2.3 6.3-7.1 6.3h-15v-22h14.4c4.3 0 6.2 2.2 6.2 5.2 0 2.6-1.5 4.4-3.4 5 2.8.4 4.9 2.5 4.9 5.5zm-8-13H24.1v6.9H35c2.1 0 4-1.3 4-3.8 0-2.2-1.3-3.1-3.7-3.1zm5.1 12.6c0-2.3-1.8-3.7-4-3.7H24.2v7.7h11.7c3.4 0 4.6-1.8 4.6-4zm36.3 4v2.7H56v-22h20.6v2.7H58.9v6.8h14.6v2.3H58.9v7.5h17.9zm23-5.8v8.5H97v-8.5l-11-13.4h3.4l8.9 11 8.8-11h3.4l-10.8 13.4zm19.1-1.8V298c0-7.9 5.2-10.7 12.7-10.7 7.5 0 13 2.8 13 10.7v1.4c0 7.9-5.5 10.8-13 10.8s-12.7-3-12.7-10.8zm22.7 0V298c0-5.7-3.9-8-10-8-6 0-9.8 2.3-9.8 8v1.4c0 5.8 3.8 8.1 9.8 8.1 6 0 10-2.3 10-8.1zm37.2-11.6v21.9h-2.9l-15.8-17.9v17.9h-2.8v-22h3l15.6 18v-18h2.9zm37.9 10.2v1.3c0 7.8-5.2 10.4-12.4 10.4H193v-22h11.2c7.2 0 12.4 2.8 12.4 10.3zm-3 0c0-5.3-3.3-7.6-9.4-7.6h-8.4V307h8.4c6 0 9.5-2 9.5-7.7V298zm50.8-7.6h-9.7v19.3h-3v-19.3h-9.7v-2.6h22.4v2.6zm34.4-2.6v21.9h-3v-10.1h-16.8v10h-2.8v-21.8h2.8v9.2H296v-9.2h2.9zm34.9 19.2v2.7h-20.7v-22h20.6v2.7H316v6.8h14.5v2.3H316v7.5h17.8zM24 340.2v7.3h13.9v2.4h-14v9.6H21v-22h20v2.7H24zm41.5 11.4h-9.8v7.9H53v-22h13.3c5.1 0 8 1.9 8 6.8 0 3.7-2 6.3-5.6 7l6 8.2h-3.3l-5.8-8zm-9.8-2.6H66c3.1 0 5.3-1.5 5.3-4.7 0-3.3-2.2-4.1-5.3-4.1H55.7v8.8zm47.9 6.2H89l-2 4.3h-3.2l10.7-22.2H98l10.7 22.2h-3.2l-2-4.3zm-1-2.3l-6.3-13-6 13h12.2zm46.3-15.3v21.9H146v-17.2L135.7 358h-2.1l-10.2-15.6v17h-2.8v-21.8h3l11 16.9 11.3-17h3zm35 19.3v2.6h-20.7v-22h20.6v2.7H166v6.8h14.5v2.3H166v7.6h17.8zm47-19.3l-8.3 22h-3l-7.1-18.6-7 18.6h-3l-8.2-22h3.3L204 356l6.8-18.5h3.4L221 356l6.6-18.5h3.3zm10 11.6v-1.4c0-7.8 5.2-10.7 12.7-10.7 7.6 0 13 2.9 13 10.7v1.4c0 7.9-5.4 10.8-13 10.8-7.5 0-12.7-3-12.7-10.8zm22.8 0v-1.4c0-5.7-4-8-10-8s-9.9 2.3-9.9 8v1.4c0 5.8 3.8 8.2 9.8 8.2 6.1 0 10-2.4 10-8.2zm28.3 2.4h-9.8v7.9h-2.8v-22h13.2c5.2 0 8 1.9 8 6.8 0 3.7-2 6.3-5.6 7l6 8.2h-3.3l-5.8-8zm-9.8-2.6h10.2c3 0 5.2-1.5 5.2-4.7 0-3.3-2.1-4.1-5.2-4.1h-10.2v8.8zm40.3-1.5l-6.8 5.6v6.4h-2.9v-22h2.9v12.3l15.2-12.2h3.7l-9.9 8.1 10.3 13.8h-3.6l-8.9-12z" />
|
|
4
|
-
<path fill="#050A14"
|
|
5
|
-
d="M188.4 71.7a10.4 10.4 0 01-20.8 0 10.4 10.4 0 1120.8 0zM224.2 45c-2.2-3.9-5-7.5-8.2-10.7l-12 7c-3.7-3.2-8-5.7-12.6-7.3a49.4 49.4 0 00-9.7 13.9 59 59 0 0140.1 14l7.6-4.4a57 57 0 00-5.2-12.5zM178 125.1c4.5 0 9-.6 13.4-1.7v-14a40 40 0 0012.5-7.2 47.7 47.7 0 00-7.1-15.3 59 59 0 01-32.2 27.7v8.7c4.4 1.2 8.9 1.8 13.4 1.8zM131.8 45c-2.3 4-4 8.1-5.2 12.5l12 7a40 40 0 000 14.4c5.7 1.5 11.3 2 16.9 1.5a59 59 0 01-8-41.7l-7.5-4.3c-3.2 3.2-6 6.7-8.2 10.6z" />
|
|
6
|
-
<path fill="#00B4FF"
|
|
7
|
-
d="M224.2 98.4c2.3-3.9 4-8 5.2-12.4l-12-7a40 40 0 000-14.5c-5.7-1.5-11.3-2-16.9-1.5a59 59 0 018 41.7l7.5 4.4c3.2-3.2 6-6.8 8.2-10.7zm-92.4 0c2.2 4 5 7.5 8.2 10.7l12-7a40 40 0 0012.6 7.3c4-4.1 7.3-8.8 9.7-13.8a59 59 0 01-40-14l-7.7 4.4c1.2 4.3 3 8.5 5.2 12.4zm46.2-80c-4.5 0-9 .5-13.4 1.7V34a40 40 0 00-12.5 7.2c1.5 5.7 4 10.8 7.1 15.4a59 59 0 0132.2-27.7V20a53.3 53.3 0 00-13.4-1.8z" />
|
|
8
|
-
<path fill="#00B4FF"
|
|
9
|
-
d="M178 9.2a62.6 62.6 0 11-.1 125.2A62.6 62.6 0 01178 9.2m0-9.2a71.7 71.7 0 100 143.5A71.7 71.7 0 00178 0z" />
|
|
10
|
-
<path fill="#050A14"
|
|
11
|
-
d="M96.6 212v4.3c-9.2-.8-15.4-5.8-15.4-17.8V180h4.6v18.4c0 8.6 4 12.6 10.8 13.5zm16-31.9v18.4c0 8.9-4.3 12.8-10.9 13.5v4.4c9.2-.7 15.5-5.6 15.5-18v-18.3h-4.7zM62.2 199v-2.2c0-12.7-8.8-17.4-21-17.4-12.1 0-20.7 4.7-20.7 17.4v2.2c0 12.8 8.6 17.6 20.7 17.6 1.5 0 3-.1 4.4-.3l11.8 6.2 2-3.3-8.2-4-6.4-3.1a32 32 0 01-3.6.2c-9.8 0-16-3.9-16-13.3v-2.2c0-9.3 6.2-13.1 16-13.1 9.9 0 16.3 3.8 16.3 13.1v2.2c0 5.3-2.1 8.7-5.6 10.8l4.8 2.4c3.4-2.8 5.5-7 5.5-13.2zM168 215.6h5.1L156 179.7h-4.8l17 36zM143 205l7.4-15.7-2.4-5-15.1 31.4h5.1l3.3-7h18.3l-1.8-3.7H143zm133.7 10.7h5.2l-17.3-35.9h-4.8l17 36zm-25-10.7l7.4-15.7-2.4-5-15.1 31.4h5.1l3.3-7h18.3l-1.7-3.7h-14.8zm73.8-2.5c6-1.2 9-5.4 9-11.4 0-8-4.5-10.9-12.9-10.9h-21.4v35.5h4.6v-31.3h16.5c5 0 8.5 1.4 8.5 6.7 0 5.2-3.5 7.7-8.5 7.7h-11.4v4.1h10.7l9.3 12.8h5.5l-9.9-13.2zm-117.4 9.9c-9.7 0-14.7-2.5-18.6-6.3l-2.2 3.8c5.1 5 11 6.7 21 6.7 1.6 0 3.1-.1 4.6-.3l-1.9-4h-3zm18.4-7c0-6.4-4.7-8.6-13.8-9.4l-10.1-1c-6.7-.7-9.3-2.2-9.3-5.6 0-2.5 1.4-4 4.6-5l-1.8-3.8c-4.7 1.4-7.5 4.2-7.5 8.9 0 5.2 3.4 8.7 13 9.6l11.3 1.2c6.4.6 8.9 2 8.9 5.4 0 2.7-2.1 4.7-6 5.8l1.8 3.9c5.3-1.6 8.9-4.7 8.9-10zm-20.3-21.9c7.9 0 13.3 1.8 18.1 5.7l1.8-3.9a30 30 0 00-19.6-5.9c-2 0-4 .1-5.7.3l1.9 4 3.5-.2z" />
|
|
12
|
-
<path fill="#00B4FF"
|
|
13
|
-
d="M.5 251.9c29.6-.5 59.2-.8 88.8-1l88.7-.3 88.7.3 44.4.4 44.4.6-44.4.6-44.4.4-88.7.3-88.7-.3a7981 7981 0 01-88.8-1z" />
|
|
14
|
-
<path fill="none" d="M-565.2 324H-252v15.8h-313.2z" />
|
|
15
|
-
</svg>
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
/******/ (function() { // webpackBootstrap
|
|
2
|
-
/******/ "use strict";
|
|
3
|
-
/******/ // The require scope
|
|
4
|
-
/******/ var __webpack_require__ = {};
|
|
5
|
-
/******/
|
|
6
|
-
/************************************************************************/
|
|
7
|
-
/******/ /* webpack/runtime/define property getters */
|
|
8
|
-
/******/ !function() {
|
|
9
|
-
/******/ // define getter functions for harmony exports
|
|
10
|
-
/******/ __webpack_require__.d = function(exports, definition) {
|
|
11
|
-
/******/ for(var key in definition) {
|
|
12
|
-
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
13
|
-
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
14
|
-
/******/ }
|
|
15
|
-
/******/ }
|
|
16
|
-
/******/ };
|
|
17
|
-
/******/ }();
|
|
18
|
-
/******/
|
|
19
|
-
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
20
|
-
/******/ !function() {
|
|
21
|
-
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
22
|
-
/******/ }();
|
|
23
|
-
/******/
|
|
24
|
-
/******/ /* webpack/runtime/make namespace object */
|
|
25
|
-
/******/ !function() {
|
|
26
|
-
/******/ // define __esModule on exports
|
|
27
|
-
/******/ __webpack_require__.r = function(exports) {
|
|
28
|
-
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
29
|
-
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
30
|
-
/******/ }
|
|
31
|
-
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
32
|
-
/******/ };
|
|
33
|
-
/******/ }();
|
|
34
|
-
/******/
|
|
35
|
-
/******/ /* webpack/runtime/publicPath */
|
|
36
|
-
/******/ !function() {
|
|
37
|
-
/******/ __webpack_require__.p = "";
|
|
38
|
-
/******/ }();
|
|
39
|
-
/******/
|
|
40
|
-
/************************************************************************/
|
|
41
|
-
var __webpack_exports__ = {};
|
|
42
|
-
// ESM COMPAT FLAG
|
|
43
|
-
__webpack_require__.r(__webpack_exports__);
|
|
44
|
-
|
|
45
|
-
// EXPORTS
|
|
46
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
47
|
-
TestComponent: function() { return /* reexport */ TestComponent; },
|
|
48
|
-
"default": function() { return /* binding */ entry_lib; }
|
|
49
|
-
});
|
|
50
|
-
|
|
51
|
-
;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
52
|
-
/* eslint-disable no-var */
|
|
53
|
-
// This file is imported into lib/wc client bundles.
|
|
54
|
-
|
|
55
|
-
if (typeof window !== 'undefined') {
|
|
56
|
-
var currentScript = window.document.currentScript
|
|
57
|
-
if (false) { var getCurrentScript; }
|
|
58
|
-
|
|
59
|
-
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
60
|
-
if (src) {
|
|
61
|
-
__webpack_require__.p = src[1] // eslint-disable-line
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
// Indicate to webpack that this file can be concatenated
|
|
66
|
-
/* harmony default export */ var setPublicPath = (null);
|
|
67
|
-
|
|
68
|
-
;// CONCATENATED MODULE: external {"commonjs":"vue","commonjs2":"vue","root":"Vue"}
|
|
69
|
-
var external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject = require("vue");
|
|
70
|
-
;// CONCATENATED MODULE: ./src/assets/logo.svg
|
|
71
|
-
var logo_namespaceObject = __webpack_require__.p + "img/logo.03709c7d.svg";
|
|
72
|
-
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!./node_modules/vue-cli-plugin-quasar/lib/loader.js.transform-quasar-imports.js!./node_modules/vue-cli-plugin-quasar/lib/loader.vue.auto-import-quasar.js??ruleSet[0].use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[1]!./src/components/TestComponent.vue?vue&type=script&setup=true&lang=ts
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
const _hoisted_1 = /*#__PURE__*/(0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.createElementVNode)("img", {
|
|
77
|
-
alt: "Quasar logo",
|
|
78
|
-
src: logo_namespaceObject,
|
|
79
|
-
style: {
|
|
80
|
-
"width": "200px",
|
|
81
|
-
"height": "200px"
|
|
82
|
-
}
|
|
83
|
-
}, null, -1);
|
|
84
|
-
|
|
85
|
-
/* harmony default export */ var TestComponentvue_type_script_setup_true_lang_ts = (/*#__PURE__*/(0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.defineComponent)({
|
|
86
|
-
__name: 'TestComponent',
|
|
87
|
-
setup(__props) {
|
|
88
|
-
const title = (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.ref)('TEST COMPONENT');
|
|
89
|
-
return (_ctx, _cache) => {
|
|
90
|
-
return (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.openBlock)(), (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.createElementBlock)(external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.Fragment, null, [_hoisted_1, (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.createTextVNode)(" " + (0,external_commonjs_vue_commonjs2_vue_root_Vue_namespaceObject.toDisplayString)(title.value), 1)], 64);
|
|
91
|
-
};
|
|
92
|
-
}
|
|
93
|
-
}));
|
|
94
|
-
;// CONCATENATED MODULE: ./src/components/TestComponent.vue?vue&type=script&setup=true&lang=ts
|
|
95
|
-
|
|
96
|
-
;// CONCATENATED MODULE: ./src/components/TestComponent.vue
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
const __exports__ = TestComponentvue_type_script_setup_true_lang_ts;
|
|
101
|
-
|
|
102
|
-
/* harmony default export */ var TestComponent = (__exports__);
|
|
103
|
-
;// CONCATENATED MODULE: ./src/index.ts
|
|
104
|
-
|
|
105
|
-
// Importar otros componentes aquí
|
|
106
|
-
|
|
107
|
-
// Exportar otros componentes aquí
|
|
108
|
-
// Crear un plugin de instalación
|
|
109
|
-
const install = Vue => {
|
|
110
|
-
Vue.component('TestComponent', TestComponent);
|
|
111
|
-
// Registrar otros componentes aquí
|
|
112
|
-
// Vue.component('AnotherComponent', AnotherComponent);
|
|
113
|
-
};
|
|
114
|
-
// Exportar el plugin de instalación como el valor predeterminado
|
|
115
|
-
/* harmony default export */ var src_0 = ({
|
|
116
|
-
install
|
|
117
|
-
});
|
|
118
|
-
;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
/* harmony default export */ var entry_lib = (src_0);
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
module.exports = __webpack_exports__;
|
|
125
|
-
/******/ })()
|
|
126
|
-
;
|
|
127
|
-
//# sourceMappingURL=w2w-shared-ui.common.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"w2w-shared-ui.common.js","mappings":";;UAAA;UACA;;;;;WCDA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA,8CAA8C;;;;;WCA9C;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;WCNA;;;;;;;;;;;;;;;ACAA;AACA;;AAEA;AACA;AACA,MAAM,KAAuC,EAAE,yBAQ5C;;AAEH;AACA;AACA,IAAI,qBAAuB;AAC3B;AACA;;AAEA;AACA,kDAAe,IAAI;;;ACtBnB,IAAI,4DAA4B;;;;ACAyB;AAC2K;AACzL;AAG3C,MAAMe,UAAU,GAAG,aAAaZ,mFAAmB,CAAC,KAAK,EAAE;EACzDa,GAAG,EAAE,aAAa;EAClBC,GAAG,EAAEH,oBAAU;EACfI,KAAK,EAAE;IAAC,OAAO,EAAC,OAAO;IAAC,QAAQ,EAAC;EAAO;CACzC,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;ACAc;ADK1B,iGAA4BjB,gFAAgB,CAAC;EAC3CmB,MAAM,EAAE,eAAe;EACvBC,KAAKA,CAACC,OAAO;ICLb,MAAMC,KAAK,GAAGJ,oEAAG,CAAC,gBAAgB,CAAC;IDSrC,OAAO,CAACK,IAAS,EAACC,MAAW,KAAI;MAC/B,OAAQd,0EAAU,EAAE,EAAEE,mFAAmB,CAACJ,qEAAS,EAAE,IAAI,EAAE,CACzDM,UAAU,EACVR,gFAAgB,CAAC,GAAG,GAAGF,gFAAgB,CAACkB,KAAK,CAACG,KAAK,CAAC,EAAE,CAAC,CAAC,CACzD,EAAE,EAAE,CAAC;IACR,CAAC;EACD;CAEC,CAAC;;AE5B6d;;ACApZ;AACL;;AAEtE,oBAAoB,+CAAM;;AAE1B,kDAAe;;ACL4C;AAC3D;AACyB;AACzB;AAEA;AACA,MAAME,OAAO,GAAIC,GAAQ,IAAI;EAC3BA,GAAG,CAACC,SAAS,CAAC,eAAe,EAAEH,aAAa,CAAC;EAC7C;EACA;AACF,CAAC;AAED;AACA,0CAAe;EACbC;CACD;;ACfuB;AACA;AACxB,8CAAe,KAAG;AACI","sources":["webpack://@win2win/shared-ui/webpack/bootstrap","webpack://@win2win/shared-ui/webpack/runtime/define property getters","webpack://@win2win/shared-ui/webpack/runtime/hasOwnProperty shorthand","webpack://@win2win/shared-ui/webpack/runtime/make namespace object","webpack://@win2win/shared-ui/webpack/runtime/publicPath","webpack://@win2win/shared-ui/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://@win2win/shared-ui/external commonjs2 {\"commonjs\":\"vue\",\"commonjs2\":\"vue\",\"root\":\"Vue\"}","webpack://@win2win/shared-ui/./src/components/TestComponent.vue?9529","webpack://@win2win/shared-ui/./src/components/TestComponent.vue","webpack://@win2win/shared-ui/./src/components/TestComponent.vue?17fb","webpack://@win2win/shared-ui/./src/components/TestComponent.vue?c2b5","webpack://@win2win/shared-ui/./src/index.ts","webpack://@win2win/shared-ui/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.p = \"\";","/* eslint-disable no-var */\n// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var currentScript = window.document.currentScript\n if (process.env.NEED_CURRENTSCRIPT_POLYFILL) {\n var getCurrentScript = require('@soda/get-current-script')\n currentScript = getCurrentScript()\n\n // for backward compatibility, because previously we directly included the polyfill\n if (!('currentScript' in document)) {\n Object.defineProperty(document, 'currentScript', { get: getCurrentScript })\n }\n }\n\n var src = currentScript && currentScript.src.match(/(.+\\/)[^/]+\\.js(\\?.*)?$/)\n if (src) {\n __webpack_public_path__ = src[1] // eslint-disable-line\n }\n}\n\n// Indicate to webpack that this file can be concatenated\nexport default null\n","var __WEBPACK_NAMESPACE_OBJECT__ = require(\"vue\");","import { defineComponent as _defineComponent } from 'vue'\nimport { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\"\nimport _imports_0 from '../assets/logo.svg'\n\n\nconst _hoisted_1 = /*#__PURE__*/_createElementVNode(\"img\", {\n alt: \"Quasar logo\",\n src: _imports_0,\n style: {\"width\":\"200px\",\"height\":\"200px\"}\n}, null, -1)\n\nimport { ref } from 'vue';\n\n \nexport default /*#__PURE__*/_defineComponent({\n __name: 'TestComponent',\n setup(__props) {\n\nconst title = ref('TEST COMPONENT')\n\nreturn (_ctx: any,_cache: any) => {\n return (_openBlock(), _createElementBlock(_Fragment, null, [\n _hoisted_1,\n _createTextVNode(\" \" + _toDisplayString(title.value), 1)\n ], 64))\n}\n}\n\n})","<template>\n <img alt=\"Quasar logo\" src=\"../assets/logo.svg\" style=\"width: 200px; height: 200px\">\n {{title}}\n</template>\n\n<style>\n</style>\n\n<script setup lang=\"ts\">\nimport { ref } from 'vue';\n\n const title = ref('TEST COMPONENT')\n</script>\n","export { default } from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!../../node_modules/vue-cli-plugin-quasar/lib/loader.js.transform-quasar-imports.js!../../node_modules/vue-cli-plugin-quasar/lib/loader.vue.auto-import-quasar.js??ruleSet[0].use[0]!../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[1]!./TestComponent.vue?vue&type=script&setup=true&lang=ts\"; export * from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??clonedRuleSet-41.use[2]!../../node_modules/vue-cli-plugin-quasar/lib/loader.js.transform-quasar-imports.js!../../node_modules/vue-cli-plugin-quasar/lib/loader.vue.auto-import-quasar.js??ruleSet[0].use[0]!../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[1]!./TestComponent.vue?vue&type=script&setup=true&lang=ts\"","import script from \"./TestComponent.vue?vue&type=script&setup=true&lang=ts\"\nexport * from \"./TestComponent.vue?vue&type=script&setup=true&lang=ts\"\n\nconst __exports__ = script;\n\nexport default __exports__","import TestComponent from './components/TestComponent.vue';\n// Importar otros componentes aquí\nexport { TestComponent };\n// Exportar otros componentes aquí\n\n// Crear un plugin de instalación\nconst install = (Vue: any) => {\n Vue.component('TestComponent', TestComponent);\n // Registrar otros componentes aquí\n // Vue.component('AnotherComponent', AnotherComponent);\n};\n\n// Exportar el plugin de instalación como el valor predeterminado\nexport default {\n install,\n};","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n"],"names":["defineComponent","_defineComponent","createElementVNode","_createElementVNode","toDisplayString","_toDisplayString","createTextVNode","_createTextVNode","Fragment","_Fragment","openBlock","_openBlock","createElementBlock","_createElementBlock","_imports_0","_hoisted_1","alt","src","style","ref","__name","setup","__props","title","_ctx","_cache","value","TestComponent","install","Vue","component"],"sourceRoot":""}
|
|
@@ -1,170 +0,0 @@
|
|
|
1
|
-
(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
|
-
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
|
-
module.exports = factory(require("vue"));
|
|
4
|
-
else if(typeof define === 'function' && define.amd)
|
|
5
|
-
define([], factory);
|
|
6
|
-
else if(typeof exports === 'object')
|
|
7
|
-
exports["w2w-shared-ui"] = factory(require("vue"));
|
|
8
|
-
else
|
|
9
|
-
root["w2w-shared-ui"] = factory(root["Vue"]);
|
|
10
|
-
})((typeof self !== 'undefined' ? self : this), function(__WEBPACK_EXTERNAL_MODULE__274__) {
|
|
11
|
-
return /******/ (function() { // webpackBootstrap
|
|
12
|
-
/******/ "use strict";
|
|
13
|
-
/******/ var __webpack_modules__ = ({
|
|
14
|
-
|
|
15
|
-
/***/ 274:
|
|
16
|
-
/***/ (function(module) {
|
|
17
|
-
|
|
18
|
-
module.exports = __WEBPACK_EXTERNAL_MODULE__274__;
|
|
19
|
-
|
|
20
|
-
/***/ })
|
|
21
|
-
|
|
22
|
-
/******/ });
|
|
23
|
-
/************************************************************************/
|
|
24
|
-
/******/ // The module cache
|
|
25
|
-
/******/ var __webpack_module_cache__ = {};
|
|
26
|
-
/******/
|
|
27
|
-
/******/ // The require function
|
|
28
|
-
/******/ function __webpack_require__(moduleId) {
|
|
29
|
-
/******/ // Check if module is in cache
|
|
30
|
-
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
|
31
|
-
/******/ if (cachedModule !== undefined) {
|
|
32
|
-
/******/ return cachedModule.exports;
|
|
33
|
-
/******/ }
|
|
34
|
-
/******/ // Create a new module (and put it into the cache)
|
|
35
|
-
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
36
|
-
/******/ // no module.id needed
|
|
37
|
-
/******/ // no module.loaded needed
|
|
38
|
-
/******/ exports: {}
|
|
39
|
-
/******/ };
|
|
40
|
-
/******/
|
|
41
|
-
/******/ // Execute the module function
|
|
42
|
-
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
43
|
-
/******/
|
|
44
|
-
/******/ // Return the exports of the module
|
|
45
|
-
/******/ return module.exports;
|
|
46
|
-
/******/ }
|
|
47
|
-
/******/
|
|
48
|
-
/************************************************************************/
|
|
49
|
-
/******/ /* webpack/runtime/define property getters */
|
|
50
|
-
/******/ !function() {
|
|
51
|
-
/******/ // define getter functions for harmony exports
|
|
52
|
-
/******/ __webpack_require__.d = function(exports, definition) {
|
|
53
|
-
/******/ for(var key in definition) {
|
|
54
|
-
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
55
|
-
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
56
|
-
/******/ }
|
|
57
|
-
/******/ }
|
|
58
|
-
/******/ };
|
|
59
|
-
/******/ }();
|
|
60
|
-
/******/
|
|
61
|
-
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
62
|
-
/******/ !function() {
|
|
63
|
-
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
64
|
-
/******/ }();
|
|
65
|
-
/******/
|
|
66
|
-
/******/ /* webpack/runtime/make namespace object */
|
|
67
|
-
/******/ !function() {
|
|
68
|
-
/******/ // define __esModule on exports
|
|
69
|
-
/******/ __webpack_require__.r = function(exports) {
|
|
70
|
-
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
71
|
-
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
72
|
-
/******/ }
|
|
73
|
-
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
74
|
-
/******/ };
|
|
75
|
-
/******/ }();
|
|
76
|
-
/******/
|
|
77
|
-
/******/ /* webpack/runtime/publicPath */
|
|
78
|
-
/******/ !function() {
|
|
79
|
-
/******/ __webpack_require__.p = "";
|
|
80
|
-
/******/ }();
|
|
81
|
-
/******/
|
|
82
|
-
/************************************************************************/
|
|
83
|
-
var __webpack_exports__ = {};
|
|
84
|
-
// ESM COMPAT FLAG
|
|
85
|
-
__webpack_require__.r(__webpack_exports__);
|
|
86
|
-
|
|
87
|
-
// EXPORTS
|
|
88
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
89
|
-
TestComponent: function() { return /* reexport */ TestComponent; },
|
|
90
|
-
"default": function() { return /* binding */ entry_lib; }
|
|
91
|
-
});
|
|
92
|
-
|
|
93
|
-
;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
94
|
-
/* eslint-disable no-var */
|
|
95
|
-
// This file is imported into lib/wc client bundles.
|
|
96
|
-
|
|
97
|
-
if (typeof window !== 'undefined') {
|
|
98
|
-
var currentScript = window.document.currentScript
|
|
99
|
-
if (false) { var getCurrentScript; }
|
|
100
|
-
|
|
101
|
-
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
102
|
-
if (src) {
|
|
103
|
-
__webpack_require__.p = src[1] // eslint-disable-line
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
// Indicate to webpack that this file can be concatenated
|
|
108
|
-
/* harmony default export */ var setPublicPath = (null);
|
|
109
|
-
|
|
110
|
-
// EXTERNAL MODULE: external {"commonjs":"vue","commonjs2":"vue","root":"Vue"}
|
|
111
|
-
var external_commonjs_vue_commonjs2_vue_root_Vue_ = __webpack_require__(274);
|
|
112
|
-
;// CONCATENATED MODULE: ./src/assets/logo.svg
|
|
113
|
-
var logo_namespaceObject = __webpack_require__.p + "img/logo.03709c7d.svg";
|
|
114
|
-
;// CONCATENATED MODULE: ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js!./node_modules/ts-loader/index.js??clonedRuleSet-88.use[2]!./node_modules/vue-cli-plugin-quasar/lib/loader.js.transform-quasar-imports.js!./node_modules/vue-cli-plugin-quasar/lib/loader.vue.auto-import-quasar.js??ruleSet[0].use[0]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[1]!./src/components/TestComponent.vue?vue&type=script&setup=true&lang=ts
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
const _hoisted_1 = /*#__PURE__*/(0,external_commonjs_vue_commonjs2_vue_root_Vue_.createElementVNode)("img", {
|
|
119
|
-
alt: "Quasar logo",
|
|
120
|
-
src: logo_namespaceObject,
|
|
121
|
-
style: {
|
|
122
|
-
"width": "200px",
|
|
123
|
-
"height": "200px"
|
|
124
|
-
}
|
|
125
|
-
}, null, -1);
|
|
126
|
-
|
|
127
|
-
/* harmony default export */ var TestComponentvue_type_script_setup_true_lang_ts = (/*#__PURE__*/(0,external_commonjs_vue_commonjs2_vue_root_Vue_.defineComponent)({
|
|
128
|
-
__name: 'TestComponent',
|
|
129
|
-
setup(__props) {
|
|
130
|
-
const title = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.ref)('TEST COMPONENT');
|
|
131
|
-
return (_ctx, _cache) => {
|
|
132
|
-
return (0,external_commonjs_vue_commonjs2_vue_root_Vue_.openBlock)(), (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createElementBlock)(external_commonjs_vue_commonjs2_vue_root_Vue_.Fragment, null, [_hoisted_1, (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createTextVNode)(" " + (0,external_commonjs_vue_commonjs2_vue_root_Vue_.toDisplayString)(title.value), 1)], 64);
|
|
133
|
-
};
|
|
134
|
-
}
|
|
135
|
-
}));
|
|
136
|
-
;// CONCATENATED MODULE: ./src/components/TestComponent.vue?vue&type=script&setup=true&lang=ts
|
|
137
|
-
|
|
138
|
-
;// CONCATENATED MODULE: ./src/components/TestComponent.vue
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
const __exports__ = TestComponentvue_type_script_setup_true_lang_ts;
|
|
143
|
-
|
|
144
|
-
/* harmony default export */ var TestComponent = (__exports__);
|
|
145
|
-
;// CONCATENATED MODULE: ./src/index.ts
|
|
146
|
-
|
|
147
|
-
// Importar otros componentes aquí
|
|
148
|
-
|
|
149
|
-
// Exportar otros componentes aquí
|
|
150
|
-
// Crear un plugin de instalación
|
|
151
|
-
const install = Vue => {
|
|
152
|
-
Vue.component('TestComponent', TestComponent);
|
|
153
|
-
// Registrar otros componentes aquí
|
|
154
|
-
// Vue.component('AnotherComponent', AnotherComponent);
|
|
155
|
-
};
|
|
156
|
-
// Exportar el plugin de instalación como el valor predeterminado
|
|
157
|
-
/* harmony default export */ var src_0 = ({
|
|
158
|
-
install
|
|
159
|
-
});
|
|
160
|
-
;// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
/* harmony default export */ var entry_lib = (src_0);
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
/******/ return __webpack_exports__;
|
|
167
|
-
/******/ })()
|
|
168
|
-
;
|
|
169
|
-
});
|
|
170
|
-
//# sourceMappingURL=w2w-shared-ui.umd.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"w2w-shared-ui.umd.js","mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD,O;;;;;;;ACVA;;;;;;UCAA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA,8CAA8C;;;;;WCA9C;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;WCNA;;;;;;;;;;;;;;;ACAA;AACA;;AAEA;AACA;AACA,MAAM,KAAuC,EAAE,yBAQ5C;;AAEH;AACA;AACA,IAAI,qBAAuB;AAC3B;AACA;;AAEA;AACA,kDAAe,IAAI;;;;;;;ACtBsC;AAC2K;AACzL;AAG3C,MAAMe,UAAU,GAAG,aAAaZ,oEAAmB,CAAC,KAAK,EAAE;EACzDa,GAAG,EAAE,aAAa;EAClBC,GAAG,EAAEH,oBAAU;EACfI,KAAK,EAAE;IAAC,OAAO,EAAC,OAAO;IAAC,QAAQ,EAAC;EAAO;CACzC,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;ACAc;ADK1B,iGAA4BjB,iEAAgB,CAAC;EAC3CmB,MAAM,EAAE,eAAe;EACvBC,KAAKA,CAACC,OAAO;ICLb,MAAMC,KAAK,GAAGJ,qDAAG,CAAC,gBAAgB,CAAC;IDSrC,OAAO,CAACK,IAAS,EAACC,MAAW,KAAI;MAC/B,OAAQd,2DAAU,EAAE,EAAEE,oEAAmB,CAACJ,sDAAS,EAAE,IAAI,EAAE,CACzDM,UAAU,EACVR,iEAAgB,CAAC,GAAG,GAAGF,iEAAgB,CAACkB,KAAK,CAACG,KAAK,CAAC,EAAE,CAAC,CAAC,CACzD,EAAE,EAAE,CAAC;IACR,CAAC;EACD;CAEC,CAAC;;AE5B6d;;ACApZ;AACL;;AAEtE,oBAAoB,+CAAM;;AAE1B,kDAAe;;ACL4C;AAC3D;AACyB;AACzB;AAEA;AACA,MAAME,OAAO,GAAIC,GAAQ,IAAI;EAC3BA,GAAG,CAACC,SAAS,CAAC,eAAe,EAAEH,aAAa,CAAC;EAC7C;EACA;AACF,CAAC;AAED;AACA,0CAAe;EACbC;CACD;;ACfuB;AACA;AACxB,8CAAe,KAAG;AACI","sources":["webpack://w2w-shared-ui/webpack/universalModuleDefinition","webpack://w2w-shared-ui/external umd {\"commonjs\":\"vue\",\"commonjs2\":\"vue\",\"root\":\"Vue\"}","webpack://w2w-shared-ui/webpack/bootstrap","webpack://w2w-shared-ui/webpack/runtime/define property getters","webpack://w2w-shared-ui/webpack/runtime/hasOwnProperty shorthand","webpack://w2w-shared-ui/webpack/runtime/make namespace object","webpack://w2w-shared-ui/webpack/runtime/publicPath","webpack://w2w-shared-ui/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://w2w-shared-ui/./src/components/TestComponent.vue?9529","webpack://w2w-shared-ui/./src/components/TestComponent.vue","webpack://w2w-shared-ui/./src/components/TestComponent.vue?9fa5","webpack://w2w-shared-ui/./src/components/TestComponent.vue?c2b5","webpack://w2w-shared-ui/./src/index.ts","webpack://w2w-shared-ui/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"vue\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"w2w-shared-ui\"] = factory(require(\"vue\"));\n\telse\n\t\troot[\"w2w-shared-ui\"] = factory(root[\"Vue\"]);\n})((typeof self !== 'undefined' ? self : this), function(__WEBPACK_EXTERNAL_MODULE__274__) {\nreturn ","module.exports = __WEBPACK_EXTERNAL_MODULE__274__;","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.p = \"\";","/* eslint-disable no-var */\n// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var currentScript = window.document.currentScript\n if (process.env.NEED_CURRENTSCRIPT_POLYFILL) {\n var getCurrentScript = require('@soda/get-current-script')\n currentScript = getCurrentScript()\n\n // for backward compatibility, because previously we directly included the polyfill\n if (!('currentScript' in document)) {\n Object.defineProperty(document, 'currentScript', { get: getCurrentScript })\n }\n }\n\n var src = currentScript && currentScript.src.match(/(.+\\/)[^/]+\\.js(\\?.*)?$/)\n if (src) {\n __webpack_public_path__ = src[1] // eslint-disable-line\n }\n}\n\n// Indicate to webpack that this file can be concatenated\nexport default null\n","import { defineComponent as _defineComponent } from 'vue'\nimport { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\"\nimport _imports_0 from '../assets/logo.svg'\n\n\nconst _hoisted_1 = /*#__PURE__*/_createElementVNode(\"img\", {\n alt: \"Quasar logo\",\n src: _imports_0,\n style: {\"width\":\"200px\",\"height\":\"200px\"}\n}, null, -1)\n\nimport { ref } from 'vue';\n\n \nexport default /*#__PURE__*/_defineComponent({\n __name: 'TestComponent',\n setup(__props) {\n\nconst title = ref('TEST COMPONENT')\n\nreturn (_ctx: any,_cache: any) => {\n return (_openBlock(), _createElementBlock(_Fragment, null, [\n _hoisted_1,\n _createTextVNode(\" \" + _toDisplayString(title.value), 1)\n ], 64))\n}\n}\n\n})","<template>\n <img alt=\"Quasar logo\" src=\"../assets/logo.svg\" style=\"width: 200px; height: 200px\">\n {{title}}\n</template>\n\n<style>\n</style>\n\n<script setup lang=\"ts\">\nimport { ref } from 'vue';\n\n const title = ref('TEST COMPONENT')\n</script>\n","export { default } from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??clonedRuleSet-88.use[2]!../../node_modules/vue-cli-plugin-quasar/lib/loader.js.transform-quasar-imports.js!../../node_modules/vue-cli-plugin-quasar/lib/loader.vue.auto-import-quasar.js??ruleSet[0].use[0]!../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[1]!./TestComponent.vue?vue&type=script&setup=true&lang=ts\"; export * from \"-!../../node_modules/thread-loader/dist/cjs.js!../../node_modules/babel-loader/lib/index.js!../../node_modules/ts-loader/index.js??clonedRuleSet-88.use[2]!../../node_modules/vue-cli-plugin-quasar/lib/loader.js.transform-quasar-imports.js!../../node_modules/vue-cli-plugin-quasar/lib/loader.vue.auto-import-quasar.js??ruleSet[0].use[0]!../../node_modules/vue-loader/dist/index.js??ruleSet[0].use[1]!./TestComponent.vue?vue&type=script&setup=true&lang=ts\"","import script from \"./TestComponent.vue?vue&type=script&setup=true&lang=ts\"\nexport * from \"./TestComponent.vue?vue&type=script&setup=true&lang=ts\"\n\nconst __exports__ = script;\n\nexport default __exports__","import TestComponent from './components/TestComponent.vue';\n// Importar otros componentes aquí\nexport { TestComponent };\n// Exportar otros componentes aquí\n\n// Crear un plugin de instalación\nconst install = (Vue: any) => {\n Vue.component('TestComponent', TestComponent);\n // Registrar otros componentes aquí\n // Vue.component('AnotherComponent', AnotherComponent);\n};\n\n// Exportar el plugin de instalación como el valor predeterminado\nexport default {\n install,\n};","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n"],"names":["defineComponent","_defineComponent","createElementVNode","_createElementVNode","toDisplayString","_toDisplayString","createTextVNode","_createTextVNode","Fragment","_Fragment","openBlock","_openBlock","createElementBlock","_createElementBlock","_imports_0","_hoisted_1","alt","src","style","ref","__name","setup","__props","title","_ctx","_cache","value","TestComponent","install","Vue","component"],"sourceRoot":""}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
(function(e,t){"object"===typeof exports&&"object"===typeof module?module.exports=t(require("vue")):"function"===typeof define&&define.amd?define([],t):"object"===typeof exports?exports["w2w-shared-ui"]=t(require("vue")):e["w2w-shared-ui"]=t(e["Vue"])})("undefined"!==typeof self?self:this,(function(e){return function(){"use strict";var t={274:function(t){t.exports=e}},n={};function o(e){var r=n[e];if(void 0!==r)return r.exports;var u=n[e]={exports:{}};return t[e](u,u.exports,o),u.exports}!function(){o.d=function(e,t){for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}}(),function(){o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}}(),function(){o.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}}(),function(){o.p=""}();var r={};if(o.r(r),o.d(r,{TestComponent:function(){return d},default:function(){return v}}),"undefined"!==typeof window){var u=window.document.currentScript,i=u&&u.src.match(/(.+\/)[^/]+\.js(\?.*)?$/);i&&(o.p=i[1])}var c=o(274),f=o.p+"img/logo.03709c7d.svg";const p=(0,c.createElementVNode)("img",{alt:"Quasar logo",src:f,style:{width:"200px",height:"200px"}},null,-1);var s=(0,c.defineComponent)({__name:"TestComponent",setup(e){const t=(0,c.ref)("TEST COMPONENT");return(e,n)=>((0,c.openBlock)(),(0,c.createElementBlock)(c.Fragment,null,[p,(0,c.createTextVNode)(" "+(0,c.toDisplayString)(t.value),1)],64))}});const a=s;var d=a;const l=e=>{e.component("TestComponent",d)};var m={install:l},v=m;return r}()}));
|
|
2
|
-
//# sourceMappingURL=w2w-shared-ui.umd.min.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"w2w-shared-ui.umd.min.js","mappings":"CAAA,SAA2CA,EAAMC,GAC1B,kBAAZC,SAA0C,kBAAXC,OACxCA,OAAOD,QAAUD,EAAQG,QAAQ,QACR,oBAAXC,QAAyBA,OAAOC,IAC9CD,OAAO,GAAIJ,GACe,kBAAZC,QACdA,QAAQ,iBAAmBD,EAAQG,QAAQ,QAE3CJ,EAAK,iBAAmBC,EAAQD,EAAK,OACtC,EATD,CASoB,qBAATO,KAAuBA,KAAOC,MAAO,SAASC,GACzD,O,+CCVAN,EAAOD,QAAUO,C,GCCbC,EAA2B,CAAC,EAGhC,SAASC,EAAoBC,GAE5B,IAAIC,EAAeH,EAAyBE,GAC5C,QAAqBE,IAAjBD,EACH,OAAOA,EAAaX,QAGrB,IAAIC,EAASO,EAAyBE,GAAY,CAGjDV,QAAS,CAAC,GAOX,OAHAa,EAAoBH,GAAUT,EAAQA,EAAOD,QAASS,GAG/CR,EAAOD,OACf,E,WCrBAS,EAAoBK,EAAI,SAASd,EAASe,GACzC,IAAI,IAAIC,KAAOD,EACXN,EAAoBQ,EAAEF,EAAYC,KAASP,EAAoBQ,EAAEjB,EAASgB,IAC5EE,OAAOC,eAAenB,EAASgB,EAAK,CAAEI,YAAY,EAAMC,IAAKN,EAAWC,IAG3E,C,eCPAP,EAAoBQ,EAAI,SAASK,EAAKC,GAAQ,OAAOL,OAAOM,UAAUC,eAAeC,KAAKJ,EAAKC,EAAO,C,eCCtGd,EAAoBkB,EAAI,SAAS3B,GACX,qBAAX4B,QAA0BA,OAAOC,aAC1CX,OAAOC,eAAenB,EAAS4B,OAAOC,YAAa,CAAEC,MAAO,WAE7DZ,OAAOC,eAAenB,EAAS,aAAc,CAAE8B,OAAO,GACvD,C,eCNArB,EAAoBsB,EAAI,E,aCGxB,G,gFAAsB,qBAAXC,OAAwB,CACjC,IAAIC,EAAgBD,OAAOE,SAASD,cAWhCE,EAAMF,GAAiBA,EAAcE,IAAIC,MAAM,2BAC/CD,IACF,IAA0BA,EAAI,GAElC,CAGA,I,uCCjBA,MAAME,GAA0BC,EAAAA,EAAAA,oBAAoB,MAAO,CACzDC,IAAK,cACLJ,IAAKK,EACLC,MAAO,CAAC,MAAQ,QAAQ,OAAS,UAChC,MAAO,GAKV,OAA4BC,EAAAA,EAAAA,iBAAiB,CAC3CC,OAAQ,gBACRC,KAAAA,CAAMC,GCLN,MAAMC,GAAQC,EAAAA,EAAAA,KAAI,kBDSpB,MAAO,CAACC,EAAUC,MACRC,EAAAA,EAAAA,cAAcC,EAAAA,EAAAA,oBAAoBC,EAAAA,SAAW,KAAM,CACzDf,GACAgB,EAAAA,EAAAA,iBAAiB,KAAMC,EAAAA,EAAAA,iBAAiBR,EAAMhB,OAAQ,IACrD,IAEL,IEvBA,MAAMyB,EAAc,EAEpB,QCCA,MAAMC,EAAWC,IACfA,EAAIC,UAAU,gBAAiBC,EAAc,EAM/C,OACEH,WCZF,I","sources":["webpack://w2w-shared-ui/webpack/universalModuleDefinition","webpack://w2w-shared-ui/external umd {\"commonjs\":\"vue\",\"commonjs2\":\"vue\",\"root\":\"Vue\"}","webpack://w2w-shared-ui/webpack/bootstrap","webpack://w2w-shared-ui/webpack/runtime/define property getters","webpack://w2w-shared-ui/webpack/runtime/hasOwnProperty shorthand","webpack://w2w-shared-ui/webpack/runtime/make namespace object","webpack://w2w-shared-ui/webpack/runtime/publicPath","webpack://w2w-shared-ui/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://w2w-shared-ui/./src/components/TestComponent.vue?9529","webpack://w2w-shared-ui/./src/components/TestComponent.vue","webpack://w2w-shared-ui/./src/components/TestComponent.vue?c2b5","webpack://w2w-shared-ui/./src/index.ts","webpack://w2w-shared-ui/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"vue\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"w2w-shared-ui\"] = factory(require(\"vue\"));\n\telse\n\t\troot[\"w2w-shared-ui\"] = factory(root[\"Vue\"]);\n})((typeof self !== 'undefined' ? self : this), function(__WEBPACK_EXTERNAL_MODULE__274__) {\nreturn ","module.exports = __WEBPACK_EXTERNAL_MODULE__274__;","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// define getter functions for harmony exports\n__webpack_require__.d = function(exports, definition) {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }","// define __esModule on exports\n__webpack_require__.r = function(exports) {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.p = \"\";","/* eslint-disable no-var */\n// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var currentScript = window.document.currentScript\n if (process.env.NEED_CURRENTSCRIPT_POLYFILL) {\n var getCurrentScript = require('@soda/get-current-script')\n currentScript = getCurrentScript()\n\n // for backward compatibility, because previously we directly included the polyfill\n if (!('currentScript' in document)) {\n Object.defineProperty(document, 'currentScript', { get: getCurrentScript })\n }\n }\n\n var src = currentScript && currentScript.src.match(/(.+\\/)[^/]+\\.js(\\?.*)?$/)\n if (src) {\n __webpack_public_path__ = src[1] // eslint-disable-line\n }\n}\n\n// Indicate to webpack that this file can be concatenated\nexport default null\n","import { defineComponent as _defineComponent } from 'vue'\nimport { createElementVNode as _createElementVNode, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock } from \"vue\"\nimport _imports_0 from '../assets/logo.svg'\n\n\nconst _hoisted_1 = /*#__PURE__*/_createElementVNode(\"img\", {\n alt: \"Quasar logo\",\n src: _imports_0,\n style: {\"width\":\"200px\",\"height\":\"200px\"}\n}, null, -1)\n\nimport { ref } from 'vue';\n\n \nexport default /*#__PURE__*/_defineComponent({\n __name: 'TestComponent',\n setup(__props) {\n\nconst title = ref('TEST COMPONENT')\n\nreturn (_ctx: any,_cache: any) => {\n return (_openBlock(), _createElementBlock(_Fragment, null, [\n _hoisted_1,\n _createTextVNode(\" \" + _toDisplayString(title.value), 1)\n ], 64))\n}\n}\n\n})","<template>\n <img alt=\"Quasar logo\" src=\"../assets/logo.svg\" style=\"width: 200px; height: 200px\">\n {{title}}\n</template>\n\n<style>\n</style>\n\n<script setup lang=\"ts\">\nimport { ref } from 'vue';\n\n const title = ref('TEST COMPONENT')\n</script>\n","import script from \"./TestComponent.vue?vue&type=script&setup=true&lang=ts\"\nexport * from \"./TestComponent.vue?vue&type=script&setup=true&lang=ts\"\n\nconst __exports__ = script;\n\nexport default __exports__","import TestComponent from './components/TestComponent.vue';\n// Importar otros componentes aquí\nexport { TestComponent };\n// Exportar otros componentes aquí\n\n// Crear un plugin de instalación\nconst install = (Vue: any) => {\n Vue.component('TestComponent', TestComponent);\n // Registrar otros componentes aquí\n // Vue.component('AnotherComponent', AnotherComponent);\n};\n\n// Exportar el plugin de instalación como el valor predeterminado\nexport default {\n install,\n};","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n"],"names":["root","factory","exports","module","require","define","amd","self","this","__WEBPACK_EXTERNAL_MODULE__274__","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","undefined","__webpack_modules__","d","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","r","Symbol","toStringTag","value","p","window","currentScript","document","src","match","_hoisted_1","_createElementVNode","alt","_imports_0","style","_defineComponent","__name","setup","__props","title","ref","_ctx","_cache","_openBlock","_createElementBlock","_Fragment","_createTextVNode","_toDisplayString","__exports__","install","Vue","component","TestComponent"],"sourceRoot":""}
|