nubomed-ui 1.0.7 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
package/demo.html ADDED
@@ -0,0 +1,5 @@
1
+ <!doctype html><meta charset="utf-8"><title>nubomed-ui demo</title><script src="//unpkg.com/vue@2"></script><script src="./nubomed-ui.umd.js"></script><link rel="stylesheet" href="./nubomed-ui.css"><div id="app"><demo></demo></div><script>new Vue({
2
+ components: {
3
+ demo: nubomed-ui
4
+ }
5
+ }).$mount('#app')</script>
@@ -0,0 +1,192 @@
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/publicPath */
25
+ /******/ !function() {
26
+ /******/ __webpack_require__.p = "";
27
+ /******/ }();
28
+ /******/
29
+ /************************************************************************/
30
+ var __webpack_exports__ = {};
31
+
32
+ // EXPORTS
33
+ __webpack_require__.d(__webpack_exports__, {
34
+ "default": function() { return /* binding */ entry_lib; }
35
+ });
36
+
37
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
38
+ /* eslint-disable no-var */
39
+ // This file is imported into lib/wc client bundles.
40
+
41
+ if (typeof window !== 'undefined') {
42
+ var currentScript = window.document.currentScript
43
+ if (false) { var getCurrentScript; }
44
+
45
+ var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
46
+ if (src) {
47
+ __webpack_require__.p = src[1] // eslint-disable-line
48
+ }
49
+ }
50
+
51
+ // Indicate to webpack that this file can be concatenated
52
+ /* harmony default export */ var setPublicPath = (null);
53
+
54
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/App.vue?vue&type=template&id=6f7648f2
55
+ var render = function render() {
56
+ var _vm = this,
57
+ _c = _vm._self._c;
58
+ return _c('div', {
59
+ attrs: {
60
+ "id": "app"
61
+ }
62
+ }, [_c('router-view')], 1);
63
+ };
64
+ var staticRenderFns = [];
65
+
66
+ ;// ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
67
+ /* globals __VUE_SSR_CONTEXT__ */
68
+
69
+ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
70
+ // This module is a runtime utility for cleaner component module output and will
71
+ // be included in the final webpack user bundle.
72
+
73
+ function normalizeComponent(
74
+ scriptExports,
75
+ render,
76
+ staticRenderFns,
77
+ functionalTemplate,
78
+ injectStyles,
79
+ scopeId,
80
+ moduleIdentifier /* server only */,
81
+ shadowMode /* vue-cli only */
82
+ ) {
83
+ // Vue.extend constructor export interop
84
+ var options =
85
+ typeof scriptExports === 'function' ? scriptExports.options : scriptExports
86
+
87
+ // render functions
88
+ if (render) {
89
+ options.render = render
90
+ options.staticRenderFns = staticRenderFns
91
+ options._compiled = true
92
+ }
93
+
94
+ // functional template
95
+ if (functionalTemplate) {
96
+ options.functional = true
97
+ }
98
+
99
+ // scopedId
100
+ if (scopeId) {
101
+ options._scopeId = 'data-v-' + scopeId
102
+ }
103
+
104
+ var hook
105
+ if (moduleIdentifier) {
106
+ // server build
107
+ hook = function (context) {
108
+ // 2.3 injection
109
+ context =
110
+ context || // cached call
111
+ (this.$vnode && this.$vnode.ssrContext) || // stateful
112
+ (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
113
+ // 2.2 with runInNewContext: true
114
+ if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
115
+ context = __VUE_SSR_CONTEXT__
116
+ }
117
+ // inject component styles
118
+ if (injectStyles) {
119
+ injectStyles.call(this, context)
120
+ }
121
+ // register component module identifier for async chunk inferrence
122
+ if (context && context._registeredComponents) {
123
+ context._registeredComponents.add(moduleIdentifier)
124
+ }
125
+ }
126
+ // used by ssr in case component is cached and beforeCreate
127
+ // never gets called
128
+ options._ssrRegister = hook
129
+ } else if (injectStyles) {
130
+ hook = shadowMode
131
+ ? function () {
132
+ injectStyles.call(
133
+ this,
134
+ (options.functional ? this.parent : this).$root.$options.shadowRoot
135
+ )
136
+ }
137
+ : injectStyles
138
+ }
139
+
140
+ if (hook) {
141
+ if (options.functional) {
142
+ // for template-only hot-reload because in that case the render fn doesn't
143
+ // go through the normalizer
144
+ options._injectStyles = hook
145
+ // register for functional component in vue file
146
+ var originalRender = options.render
147
+ options.render = function renderWithStyleInjection(h, context) {
148
+ hook.call(context)
149
+ return originalRender(h, context)
150
+ }
151
+ } else {
152
+ // inject component registration as beforeCreate hook
153
+ var existing = options.beforeCreate
154
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
155
+ }
156
+ }
157
+
158
+ return {
159
+ exports: scriptExports,
160
+ options: options
161
+ }
162
+ }
163
+
164
+ ;// ./src/App.vue
165
+
166
+ var script = {}
167
+
168
+
169
+ /* normalize component */
170
+ ;
171
+ var component = normalizeComponent(
172
+ script,
173
+ render,
174
+ staticRenderFns,
175
+ false,
176
+ null,
177
+ null,
178
+ null
179
+
180
+ )
181
+
182
+ /* harmony default export */ var App = (component.exports);
183
+ ;// ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
184
+
185
+
186
+ /* harmony default export */ var entry_lib = (App);
187
+
188
+
189
+ module.exports = __webpack_exports__["default"];
190
+ /******/ })()
191
+ ;
192
+ //# sourceMappingURL=nubomed-ui.common.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nubomed-ui.common.js","mappings":";;UAAA;UACA;;;;;WCDA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA,8CAA8C;;;;;WCA9C;;;;;;;;;;;;ACAA;AACA;;AAEA;AACA;AACA,MAAM,KAAuC,EAAE,yBAQ5C;;AAEH;AACA;AACA,IAAI,qBAAuB;AAC3B;AACA;;AAEA;AACA,kDAAe,IAAI;;;ACtBnB,IAAIA,MAAM,GAAG,SAASA,MAAMA,CAAA,EAAE;EAAC,IAAIC,GAAG,GAAC,IAAI;IAACC,EAAE,GAACD,GAAG,CAACE,KAAK,CAACD,EAAE;EAAC,OAAOA,EAAE,CAAC,KAAK,EAAC;IAACE,KAAK,EAAC;MAAC,IAAI,EAAC;IAAK;EAAC,CAAC,EAAC,CAACF,EAAE,CAAC,aAAa,CAAC,CAAC,EAAC,CAAC,CAAC;AACvH,CAAC;AACD,IAAIG,eAAe,GAAG,EAAE;;;ACFxB;;AAEA;AACA;AACA;;AAEe;AACf;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM;AACN;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;;AC/FiF;AACjF;;;AAGA;AACA,CAAgG;AAChG,gBAAgB,kBAAU;AAC1B;AACA,EAAE,MAAM;AACR,EAAE,eAAe;AACjB;AACA;AACA;AACA;AACA;AACA;;AAEA,wCAAe;;ACjBS;AACA;AACxB,8CAAe,GAAG;AACI","sources":["webpack://nubomed-ui/webpack/bootstrap","webpack://nubomed-ui/webpack/runtime/define property getters","webpack://nubomed-ui/webpack/runtime/hasOwnProperty shorthand","webpack://nubomed-ui/webpack/runtime/publicPath","webpack://nubomed-ui/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://nubomed-ui/./src/App.vue","webpack://nubomed-ui/./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js","webpack://nubomed-ui/./src/App.vue?0e40","webpack://nubomed-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); }","__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 render = function render(){var _vm=this,_c=_vm._self._c;return _c('div',{attrs:{\"id\":\"app\"}},[_c('router-view')],1)\n}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent(\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier /* server only */,\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options =\n typeof scriptExports === 'function' ? scriptExports.options : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) {\n // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () {\n injectStyles.call(\n this,\n (options.functional ? this.parent : this).$root.$options.shadowRoot\n )\n }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functional component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection(h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing ? [].concat(existing, hook) : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import { render, staticRenderFns } from \"./App.vue?vue&type=template&id=6f7648f2\"\nvar script = {}\n\n\n/* normalize component */\nimport normalizer from \"!../node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n"],"names":["render","_vm","_c","_self","attrs","staticRenderFns"],"sourceRoot":""}