@qore-project/custom-booking-dayname
Advanced tools
Comparing version 1.0.0 to 1.0.1
import { jsx as _jsx } from "react/jsx-runtime"; | ||
import { defineComponent, useEvaluate } from "@qorebase/app-component"; | ||
import { Text } from "@chakra-ui/react"; | ||
export default defineComponent({ | ||
@@ -19,5 +20,5 @@ name: "Custom Booking Dayname", | ||
var dayName = days[d.getDay()]; | ||
return _jsx("p", { children: dayName }); | ||
return _jsx(Text, Object.assign({ color: "white" }, { children: dayName })); | ||
}, | ||
}); | ||
//# sourceMappingURL=custom-booking-dayname.js.map |
import { jsx } from 'react/jsx-runtime'; | ||
import { defineComponent, useEvaluate } from '@qorebase/app-component'; | ||
import { Text } from '@chakra-ui/react'; | ||
@@ -20,3 +21,3 @@ var customBookingDayname = defineComponent({ | ||
var dayName = days[d.getDay()]; | ||
return jsx("p", { children: dayName }); | ||
return jsx(Text, Object.assign({ color: "white" }, { children: dayName })); | ||
}, | ||
@@ -23,0 +24,0 @@ }); |
{ | ||
"name": "@qore-project/custom-booking-dayname", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"module": "lib/custom-booking-dayname.js", | ||
@@ -5,0 +5,0 @@ "type": "module", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
131619
111