@momo-kits/calendar 0.0.49-beta.17 → 0.0.49-beta.18
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/package.json +1 -1
- package/src/Day/index.js +4 -4
package/package.json
CHANGED
package/src/Day/index.js
CHANGED
|
@@ -178,10 +178,6 @@ class Day extends Component {
|
|
|
178
178
|
</TouchableHighlight>
|
|
179
179
|
) : (
|
|
180
180
|
<View style={[style.day]}>
|
|
181
|
-
<Text
|
|
182
|
-
style={[style.dayText, style.dayTextDisabled]}>
|
|
183
|
-
{text}
|
|
184
|
-
</Text>
|
|
185
181
|
{this.lunarDate && this.showLunar && text ? (
|
|
186
182
|
<Text
|
|
187
183
|
style={[
|
|
@@ -195,6 +191,10 @@ class Day extends Component {
|
|
|
195
191
|
) : (
|
|
196
192
|
<View />
|
|
197
193
|
)}
|
|
194
|
+
<Text
|
|
195
|
+
style={[style.dayText, style.dayTextDisabled]}>
|
|
196
|
+
{text}
|
|
197
|
+
</Text>
|
|
198
198
|
</View>
|
|
199
199
|
)}
|
|
200
200
|
</View>
|