@sheinx/base 3.8.5-beta.4 → 3.8.5-beta.5
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/date-picker/day.js +1 -1
- package/esm/date-picker/day.js +1 -1
- package/package.json +2 -2
package/cjs/date-picker/day.js
CHANGED
|
@@ -130,7 +130,7 @@ var Day = function Day(props) {
|
|
|
130
130
|
}, 'week');
|
|
131
131
|
};
|
|
132
132
|
var renderFooter = function renderFooter() {
|
|
133
|
-
var showLeft = props.type === 'datetime' || props.type === 'date';
|
|
133
|
+
var showLeft = props.type === 'datetime' || props.type === 'date' || props.type === 'week';
|
|
134
134
|
var timeStr = func.getTimeStr();
|
|
135
135
|
if (!showLeft && !props.showSelNow) return null;
|
|
136
136
|
var format = props.format;
|
package/esm/date-picker/day.js
CHANGED
|
@@ -125,7 +125,7 @@ var Day = function Day(props) {
|
|
|
125
125
|
}, 'week');
|
|
126
126
|
};
|
|
127
127
|
var renderFooter = function renderFooter() {
|
|
128
|
-
var showLeft = props.type === 'datetime' || props.type === 'date';
|
|
128
|
+
var showLeft = props.type === 'datetime' || props.type === 'date' || props.type === 'week';
|
|
129
129
|
var timeStr = func.getTimeStr();
|
|
130
130
|
if (!showLeft && !props.showSelNow) return null;
|
|
131
131
|
var format = props.format;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sheinx/base",
|
|
3
|
-
"version": "3.8.5-beta.
|
|
3
|
+
"version": "3.8.5-beta.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"module": "./esm/index.js",
|
|
11
11
|
"typings": "./cjs/index.d.ts",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@sheinx/hooks": "3.8.5-beta.
|
|
13
|
+
"@sheinx/hooks": "3.8.5-beta.5",
|
|
14
14
|
"immer": "^10.0.0",
|
|
15
15
|
"classnames": "^2.0.0",
|
|
16
16
|
"@shined/reactive": "^0.1.3-alpha.0"
|