web-component-gallery 2.2.34 → 2.2.35
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/index.umd.js +1 -1
- package/dist/js.umd.js +1 -1
- package/dist/styles.umd.js +1 -1
- package/lib/index.js +5 -2
- package/lib/table-examples/index.js +1 -4
- package/lib/table-examples/styles/index.less +0 -1
- package/lib/transfer-table/index.js +7 -0
- package/lib/transfer-table/styles/index.js +1 -0
- package/package.json +1 -1
- /package/lib/{table-examples/TransferTable.vue → transfer-table/index.vue} +0 -0
- /package/lib/{table-examples/styles/TransferTable.less → transfer-table/styles/index.less} +0 -0
package/dist/styles.umd.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.rui=t():e.rui=t()}(self,function(){return function(){var e={
|
|
1
|
+
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.rui=t():e.rui=t()}(self,function(){return function(){var e={55766:function(e,t,o){"use strict";o.r(t)}},t={};function o(r){var n=t[r];if(void 0!==n)return n.exports;var u=t[r]={exports:{}};return e[r](u,u.exports,o),u.exports}o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};return o(55766),{}}()});
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
//
|
|
1
|
+
// lib/index.js
|
|
2
2
|
import SvgIcon from './svg-icon'
|
|
3
|
-
//
|
|
3
|
+
// form
|
|
4
4
|
import Model from './model'
|
|
5
5
|
import Search from './search'
|
|
6
6
|
import FormComp from './form-comp'
|
|
@@ -11,6 +11,7 @@ import Directory from './directory'
|
|
|
11
11
|
import Modal from './modal'
|
|
12
12
|
// table
|
|
13
13
|
import Table from './table'
|
|
14
|
+
import TransferTable from './transfer-table'
|
|
14
15
|
// time
|
|
15
16
|
import DateTime from './date-time'
|
|
16
17
|
// weather
|
|
@@ -43,6 +44,7 @@ const components = {
|
|
|
43
44
|
Directory,
|
|
44
45
|
Modal,
|
|
45
46
|
Table,
|
|
47
|
+
TransferTable,
|
|
46
48
|
DateTime,
|
|
47
49
|
Weather,
|
|
48
50
|
Browse,
|
|
@@ -74,6 +76,7 @@ export {
|
|
|
74
76
|
Directory,
|
|
75
77
|
Modal,
|
|
76
78
|
Table,
|
|
79
|
+
TransferTable,
|
|
77
80
|
DateTime,
|
|
78
81
|
Weather,
|
|
79
82
|
Browse,
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
/*
|
|
2
|
-
import TransferTable from './TransferTable.vue'
|
|
1
|
+
/* table-examples */
|
|
3
2
|
|
|
4
3
|
const components = {
|
|
5
|
-
TransferTable
|
|
6
4
|
}
|
|
7
5
|
|
|
8
6
|
const install = function (Vue) {
|
|
@@ -13,7 +11,6 @@ const install = function (Vue) {
|
|
|
13
11
|
}
|
|
14
12
|
|
|
15
13
|
export {
|
|
16
|
-
TransferTable
|
|
17
14
|
}
|
|
18
15
|
|
|
19
16
|
export default {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import './TransferTable.less';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require('./index.less');
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|