shineout 3.7.8-beta.1 → 3.7.8-beta.2
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-zh_CN.md +1 -1
- package/README.md +1 -1
- package/cjs/index.js +1 -1
- package/dist/shineout.js +9 -5
- package/dist/shineout.js.map +1 -1
- package/dist/shineout.min.js +1 -1
- package/dist/shineout.min.js.map +1 -1
- package/esm/index.js +1 -1
- package/package.json +7 -7
package/README-zh_CN.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
<p align="center">
|
|
12
12
|
<a href="https://www.npmjs.com/package/shineout"><img src="https://img.shields.io/npm/v/shineout.svg?style=flat-square"></a>
|
|
13
13
|
<a href="https://www.npmjs.com/package/shineout"><img src="https://img.shields.io/npm/dm/shineout.svg?style=flat-square"></a>
|
|
14
|
-
<img src="https://img.shields.io/badge/React-%3E%3D16.
|
|
14
|
+
<img src="https://img.shields.io/badge/React-%3E%3D16.14.0-green.svg?style=flat-square">
|
|
15
15
|
</p>
|
|
16
16
|
|
|
17
17
|
## ✨ 特性
|
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ English | [简体中文](./README-zh_CN.md)
|
|
|
11
11
|
<p align="center">
|
|
12
12
|
<a href="https://www.npmjs.com/package/shineout"><img src="https://img.shields.io/npm/v/shineout.svg?style=flat-square"></a>
|
|
13
13
|
<a href="https://www.npmjs.com/package/shineout"><img src="https://img.shields.io/npm/dm/shineout.svg?style=flat-square"></a>
|
|
14
|
-
<img src="https://img.shields.io/badge/React-%3E%3D16.
|
|
14
|
+
<img src="https://img.shields.io/badge/React-%3E%3D16.14.0-green.svg?style=flat-square">
|
|
15
15
|
</p>
|
|
16
16
|
|
|
17
17
|
## ✨ Features
|
package/cjs/index.js
CHANGED
|
@@ -522,5 +522,5 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
|
522
522
|
// 此文件由脚本自动生成,请勿直接修改。
|
|
523
523
|
// This file was generated automatically by a script. Please do not modify it directly.
|
|
524
524
|
var _default = exports.default = {
|
|
525
|
-
version: '3.7.8-beta.
|
|
525
|
+
version: '3.7.8-beta.2'
|
|
526
526
|
};
|
package/dist/shineout.js
CHANGED
|
@@ -12234,7 +12234,7 @@ var handleStyle = function handleStyle(style) {
|
|
|
12234
12234
|
};
|
|
12235
12235
|
/* harmony default export */ var jss_style_handleStyle = (handleStyle);
|
|
12236
12236
|
;// CONCATENATED MODULE: ../shineout-style/src/version.ts
|
|
12237
|
-
/* harmony default export */ var version = ('3.7.8-beta.
|
|
12237
|
+
/* harmony default export */ var version = ('3.7.8-beta.2');
|
|
12238
12238
|
;// CONCATENATED MODULE: ../shineout-style/src/jss-style/index.tsx
|
|
12239
12239
|
|
|
12240
12240
|
|
|
@@ -45939,7 +45939,9 @@ var useTime = function useTime(props) {
|
|
|
45939
45939
|
_props$secondStep = props.secondStep,
|
|
45940
45940
|
secondStep = _props$secondStep === void 0 ? 1 : _props$secondStep,
|
|
45941
45941
|
staticMin = props.staticMin,
|
|
45942
|
-
staticMax = props.staticMax
|
|
45942
|
+
staticMax = props.staticMax,
|
|
45943
|
+
position = props.position,
|
|
45944
|
+
rangeDate = props.rangeDate;
|
|
45943
45945
|
var min = util.resetTimeByFormat(mi, format, options);
|
|
45944
45946
|
var max = util.resetTimeByFormat(ma, format, options);
|
|
45945
45947
|
var current = props.value || util.newDate(undefined, options);
|
|
@@ -45965,7 +45967,7 @@ var useTime = function useTime(props) {
|
|
|
45965
45967
|
disabledTime = props.disabledTime;
|
|
45966
45968
|
if (disabledTime) {
|
|
45967
45969
|
var _time = util.format(date, util.TIME_FORMAT, options);
|
|
45968
|
-
if (typeof disabledTime === 'function') return disabledTime(_time);
|
|
45970
|
+
if (typeof disabledTime === 'function') return disabledTime(_time, position, rangeDate === null || rangeDate === void 0 ? void 0 : rangeDate[0], rangeDate === null || rangeDate === void 0 ? void 0 : rangeDate[1]);
|
|
45969
45971
|
return disabledTime === _time;
|
|
45970
45972
|
}
|
|
45971
45973
|
var isDis = disabled && typeof disabled === 'function' ? disabled(date) : false;
|
|
@@ -46316,7 +46318,9 @@ var Time = function Time(props) {
|
|
|
46316
46318
|
disabledTime: props.disabledTime,
|
|
46317
46319
|
hourStep: props.hourStep,
|
|
46318
46320
|
minuteStep: props.minuteStep,
|
|
46319
|
-
secondStep: props.secondStep
|
|
46321
|
+
secondStep: props.secondStep,
|
|
46322
|
+
position: props.position,
|
|
46323
|
+
rangeDate: props.rangeDate
|
|
46320
46324
|
}),
|
|
46321
46325
|
func = _useTimePick.func,
|
|
46322
46326
|
times = _useTimePick.times;
|
|
@@ -71834,7 +71838,7 @@ var upload_interface = __webpack_require__(8821);
|
|
|
71834
71838
|
|
|
71835
71839
|
|
|
71836
71840
|
/* harmony default export */ var src_0 = ({
|
|
71837
|
-
version: '3.7.8-beta.
|
|
71841
|
+
version: '3.7.8-beta.2'
|
|
71838
71842
|
});
|
|
71839
71843
|
}();
|
|
71840
71844
|
/******/ return __webpack_exports__;
|