@wq/material-web
Version:
Web bindings for @wq/material
50 lines (44 loc) • 1.23 kB
JavaScript
import react from "@wq/react";
import App from "./App.js";
import * as components from "./components/index.js";
import * as inputs from "./inputs/index.js";
import * as icons from "./icons.js";
import { format, parse } from "./inputs/date-utils.js";
export default {
name: "material",
dependencies: [react],
config: {
theme: {
primary: "#7500ae",
secondary: "#0088bd",
},
inputFormat: {
date: "yyyy-MM-dd",
time: "HH:mm",
datetime: "yyyy-MM-dd HH:mm",
},
},
components: { App, ...components },
inputs: { ...inputs },
icons: { ...icons },
init(config) {
if (!config) {
return;
}
if (config.theme) {
if (config.theme.palette) {
this.config.theme = config.theme;
} else {
Object.assign(this.config.theme, config.theme);
}
}
if (config.inputFormat) {
Object.assign(this.config.inputFormat, config.inputFormat);
}
},
};
export { App };
export * from "./components/index.js";
export * from "./inputs/index.js";
export * from "./hooks.js";
export { format, parse };