shineout 3.7.0-beta.39 → 3.7.0-beta.40
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/cjs/grid/grid.d.ts +3 -1
- package/cjs/grid/grid.js +18 -7
- package/cjs/grid/grid.type.d.ts +1 -1
- package/cjs/index.js +1 -1
- package/dist/shineout.js +50 -17
- package/dist/shineout.js.map +1 -1
- package/dist/shineout.min.js +1 -1
- package/dist/shineout.min.js.map +1 -1
- package/esm/grid/grid.d.ts +3 -1
- package/esm/grid/grid.js +17 -1
- package/esm/grid/grid.type.d.ts +1 -1
- package/esm/index.js +1 -1
- package/package.json +5 -5
package/esm/grid/grid.d.ts
CHANGED
package/esm/grid/grid.js
CHANGED
|
@@ -1 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
3
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
5
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
6
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
7
|
+
import { Grid } from '@sheinx/base';
|
|
8
|
+
import { useGridStyle } from '@sheinx/shineout-style';
|
|
9
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
|
+
export default (function (props) {
|
|
11
|
+
var jssStyle = {
|
|
12
|
+
grid: useGridStyle
|
|
13
|
+
};
|
|
14
|
+
return /*#__PURE__*/_jsx(Grid, _objectSpread({
|
|
15
|
+
jssStyle: jssStyle
|
|
16
|
+
}, props));
|
|
17
|
+
});
|
package/esm/grid/grid.type.d.ts
CHANGED
package/esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shineout",
|
|
3
|
-
"version": "3.7.0-beta.
|
|
3
|
+
"version": "3.7.0-beta.40",
|
|
4
4
|
"description": "A components library for React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"module": "./esm/index.js",
|
|
17
17
|
"typings": "./cjs/index.d.ts",
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@sheinx/base": "3.7.0-beta.
|
|
20
|
-
"@sheinx/hooks": "3.7.0-beta.
|
|
21
|
-
"@sheinx/shineout-style": "3.7.0-beta.
|
|
22
|
-
"@sheinx/theme": "3.7.0-beta.
|
|
19
|
+
"@sheinx/base": "3.7.0-beta.40",
|
|
20
|
+
"@sheinx/hooks": "3.7.0-beta.40",
|
|
21
|
+
"@sheinx/shineout-style": "3.7.0-beta.40",
|
|
22
|
+
"@sheinx/theme": "3.7.0-beta.40",
|
|
23
23
|
"classnames": "^2.0.0",
|
|
24
24
|
"immer": "^10.0.0",
|
|
25
25
|
"deep-eql": "^4.0.0"
|