react-native-lunar-calendars
Version:
React Native Calendar Components with Lunar Calendar Support - Fork of react-native-calendars with Vietnamese lunar calendar functionality
110 lines (109 loc) • 3.98 kB
JavaScript
"use strict";
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = styleConstructor;
var react_native_1 = require("react-native");
var defaultStyle = __importStar(require("../../../style"));
var STYLESHEET_ID = 'stylesheet.day.basic';
function styleConstructor(theme) {
if (theme === void 0) { theme = {}; }
var appStyle = __assign(__assign({}, defaultStyle), theme);
return react_native_1.StyleSheet.create(__assign({ base: {
width: 35,
height: 35,
alignItems: 'center',
display: 'flex'
}, text: {
// marginTop: Platform.OS === 'android' ? 4 : 6,
fontSize: appStyle.textDayFontSize,
fontFamily: appStyle.textDayFontFamily,
lineHeight: 20,
fontWeight: '300',
// color: appStyle.dayTextColor,
backgroundColor: 'rgba(255, 255, 255, 0)',
}, alignedText: {
marginTop: react_native_1.Platform.OS === 'android' ? 4 : 6,
}, selected: {
// backgroundColor: appStyle.selectedDayBackgroundColor,
backgroundColor: '#FFB60B',
// borderRadius: 20,
}, todayText: {
color: appStyle.todayTextColor,
}, selectedText: {
color: appStyle.selectedDayTextColor,
}, disabledText: {
color: appStyle.textDisabledColor,
}, dot: {
// width: 42,
height: 1,
marginVertical: 1,
// borderRadius: 2,
opacity: 0,
}, leftFiller: {
width: 4,
height: 4,
marginTop: 1,
marginRight: -2,
}, rightFiller: {
width: 4,
height: 4,
marginTop: 1,
marginLeft: -2,
}, rounded: {
borderRadius: 2,
}, visibleDot: {
opacity: 1,
backgroundColor: appStyle.dotColor,
}, selectedDot: {
backgroundColor: appStyle.selectedDotColor,
}, startingPeriod: {
width: 18,
height: 4,
marginTop: 1,
borderRadius: 2,
opacity: 0,
} }, (theme[STYLESHEET_ID] || {})));
}