@interactify-live/player-react-native
Version:
React Native library for Interactify player with media display, widgets, and MQTT integration
40 lines (39 loc) • 831 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ShapeType = exports.FontStyle = exports.FontWeight = exports.Alignment = void 0;
// Text alignment enum
exports.Alignment = {
LEFT: "left",
CENTER: "center",
RIGHT: "right",
JUSTIFY: "justify",
};
// Font weight enum
exports.FontWeight = {
NORMAL: "normal",
BOLD: "bold",
BOLDER: "bolder",
LIGHTER: "lighter",
100: "100",
200: "200",
300: "300",
400: "400",
500: "500",
600: "600",
700: "700",
800: "800",
900: "900",
};
// Font style enum
exports.FontStyle = {
NORMAL: "normal",
ITALIC: "italic",
OBLIQUE: "oblique",
};
// Shape types enum
exports.ShapeType = {
RECTANGLE: "rectangle",
CIRCLE: "circle",
ELLIPSE: "ellipse",
TRIANGLE: "triangle",
};