@teamix/pro 2.0.0-beta.2 → 2.0.0-beta.3
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/pro.min.js +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +12 -13
- package/package.json +1 -1
package/es/index.d.ts
CHANGED
@@ -4,7 +4,7 @@ import ProInfo from '@teamix/pro-info';
|
|
4
4
|
import ProPageContainer from '@teamix/pro-page-container';
|
5
5
|
import ProPageHeader from '@teamix/pro-page-header';
|
6
6
|
import ProTable from '@teamix/pro-table';
|
7
|
-
import ProAction from '
|
7
|
+
import ProAction from '@teamix/pro-action';
|
8
8
|
import * as utils from '@teamix/utils';
|
9
9
|
import './global.scss';
|
10
10
|
import hooks from './hooks';
|
package/es/index.js
CHANGED
@@ -8,7 +8,7 @@ import ProInfo from '@teamix/pro-info';
|
|
8
8
|
import ProPageContainer from '@teamix/pro-page-container';
|
9
9
|
import ProPageHeader from '@teamix/pro-page-header';
|
10
10
|
import ProTable from '@teamix/pro-table';
|
11
|
-
import ProAction from
|
11
|
+
import ProAction from '@teamix/pro-action';
|
12
12
|
// import { ProTimeline } from '../../timeline';
|
13
13
|
import * as utils from '@teamix/utils';
|
14
14
|
import "./global.scss";
|
package/lib/index.d.ts
CHANGED
@@ -4,7 +4,7 @@ import ProInfo from '@teamix/pro-info';
|
|
4
4
|
import ProPageContainer from '@teamix/pro-page-container';
|
5
5
|
import ProPageHeader from '@teamix/pro-page-header';
|
6
6
|
import ProTable from '@teamix/pro-table';
|
7
|
-
import ProAction from '
|
7
|
+
import ProAction from '@teamix/pro-action';
|
8
8
|
import * as utils from '@teamix/utils';
|
9
9
|
import './global.scss';
|
10
10
|
import hooks from './hooks';
|
package/lib/index.js
CHANGED
@@ -20,7 +20,7 @@ var _exportNames = {
|
|
20
20
|
Object.defineProperty(exports, "ProAction", {
|
21
21
|
enumerable: true,
|
22
22
|
get: function get() {
|
23
|
-
return
|
23
|
+
return _proAction.default;
|
24
24
|
}
|
25
25
|
});
|
26
26
|
Object.defineProperty(exports, "ProField", {
|
@@ -123,34 +123,33 @@ Object.keys(_proTable).forEach(function (key) {
|
|
123
123
|
}
|
124
124
|
});
|
125
125
|
});
|
126
|
-
var
|
127
|
-
|
128
|
-
exports.utils = utils;
|
129
|
-
Object.keys(utils).forEach(function (key) {
|
126
|
+
var _proAction = _interopRequireWildcard(require("@teamix/pro-action"));
|
127
|
+
Object.keys(_proAction).forEach(function (key) {
|
130
128
|
if (key === "default" || key === "__esModule") return;
|
131
129
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
132
|
-
if (key in exports && exports[key] ===
|
130
|
+
if (key in exports && exports[key] === _proAction[key]) return;
|
133
131
|
Object.defineProperty(exports, key, {
|
134
132
|
enumerable: true,
|
135
133
|
get: function get() {
|
136
|
-
return
|
134
|
+
return _proAction[key];
|
137
135
|
}
|
138
136
|
});
|
139
137
|
});
|
140
|
-
require("
|
141
|
-
|
142
|
-
|
143
|
-
Object.keys(_proAction).forEach(function (key) {
|
138
|
+
var utils = _interopRequireWildcard(require("@teamix/utils"));
|
139
|
+
exports.utils = utils;
|
140
|
+
Object.keys(utils).forEach(function (key) {
|
144
141
|
if (key === "default" || key === "__esModule") return;
|
145
142
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
146
|
-
if (key in exports && exports[key] ===
|
143
|
+
if (key in exports && exports[key] === utils[key]) return;
|
147
144
|
Object.defineProperty(exports, key, {
|
148
145
|
enumerable: true,
|
149
146
|
get: function get() {
|
150
|
-
return
|
147
|
+
return utils[key];
|
151
148
|
}
|
152
149
|
});
|
153
150
|
});
|
151
|
+
require("./global.scss");
|
152
|
+
var _hooks = _interopRequireDefault(require("./hooks"));
|
154
153
|
var _proForm = require("@teamix/pro-form");
|
155
154
|
Object.keys(_proForm).forEach(function (key) {
|
156
155
|
if (key === "default" || key === "__esModule") return;
|