react-native-resource-calendar 1.0.15 → 1.0.16
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.md +1 -4
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1025,14 +1025,14 @@ var EventBlock = React19__default.memo(({
|
|
|
1025
1025
|
editable: false,
|
|
1026
1026
|
allowFontScaling: false,
|
|
1027
1027
|
underlineColorAndroid: "transparent",
|
|
1028
|
-
style: {
|
|
1028
|
+
style: [{
|
|
1029
1029
|
width: "100%",
|
|
1030
1030
|
fontFamily: timeFace,
|
|
1031
1031
|
fontSize: getTextSize(hourHeight),
|
|
1032
1032
|
pointerEvents: "none",
|
|
1033
1033
|
padding: 0,
|
|
1034
1034
|
margin: 0
|
|
1035
|
-
},
|
|
1035
|
+
}, resolved?.time],
|
|
1036
1036
|
defaultValue: `${start} - ${end}`
|
|
1037
1037
|
}
|
|
1038
1038
|
), Body ? /* @__PURE__ */ React19__default.createElement(Body, { event, ctx: { hourHeight } }) : /* @__PURE__ */ React19__default.createElement(React19__default.Fragment, null, /* @__PURE__ */ React19__default.createElement(Row_default, { style: { alignItems: "center", height: 18 } }, /* @__PURE__ */ React19__default.createElement(
|
|
@@ -1144,14 +1144,14 @@ var DraggableEvent = ({
|
|
|
1144
1144
|
editable: false,
|
|
1145
1145
|
allowFontScaling: false,
|
|
1146
1146
|
underlineColorAndroid: "transparent",
|
|
1147
|
-
style: {
|
|
1147
|
+
style: [{
|
|
1148
1148
|
width: "100%",
|
|
1149
1149
|
fontFamily: timeFace,
|
|
1150
1150
|
fontSize: getTextSize(hourHeight),
|
|
1151
1151
|
pointerEvents: "none",
|
|
1152
1152
|
padding: 0,
|
|
1153
1153
|
margin: 0
|
|
1154
|
-
},
|
|
1154
|
+
}, resolved?.time],
|
|
1155
1155
|
defaultValue: initialDisplayTime,
|
|
1156
1156
|
animatedProps: animatedTimeProps
|
|
1157
1157
|
}
|