@apolitical/component-library 0.0.4-beta.2 → 0.0.4-beta.4
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/index.css +1 -0
- package/index.js +1 -1
- package/index.mjs +7 -5
- package/package.json +1 -1
- package/style.css +0 -1
package/index.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._container_a7v7k_1 h1{color:#4f43ba}
|
package/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),n={};function
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),n="_container_a7v7k_1",o={container:n};function t(r){return e.jsx("div",{className:o.container,children:e.jsx("h1",{children:"Component library demo!"})})}exports.Demo=t;
|
package/index.mjs
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
const r = {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { jsx as n } from "react/jsx-runtime";
|
|
2
|
+
const o = "_container_a7v7k_1", r = {
|
|
3
|
+
container: o
|
|
4
|
+
};
|
|
5
|
+
function c(e) {
|
|
6
|
+
return /* @__PURE__ */ n("div", { className: r.container, children: /* @__PURE__ */ n("h1", { children: "Component library demo!" }) });
|
|
5
7
|
}
|
|
6
8
|
export {
|
|
7
|
-
|
|
9
|
+
c as Demo
|
|
8
10
|
};
|
package/package.json
CHANGED
package/style.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
h1{color:#4f43ba}
|