@m4l/widgets 0.0.1-beta.0

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.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './lib/widgets';
2
+ //# sourceMappingURL=index.d.ts.map
package/index.d.ts.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../packages/widgets/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"}
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ import { M4lWidgets as r } from "./lib/widgets.js";
2
+ export {
3
+ r as M4lWidgets
4
+ };
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Widgets component
3
+ */
4
+ export declare function M4lWidgets(): import("@emotion/react/jsx-runtime").JSX.Element;
5
+ export default M4lWidgets;
6
+ //# sourceMappingURL=widgets.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"widgets.d.ts","sourceRoot":"","sources":["../../../../../packages/widgets/src/lib/widgets.tsx"],"names":[],"mappings":"AAKA;;GAEG;AACH,wBAAgB,UAAU,qDAMzB;AAED,eAAe,UAAU,CAAC"}
package/lib/widgets.js ADDED
@@ -0,0 +1,12 @@
1
+ import { jsx as t } from "@emotion/react/jsx-runtime";
2
+ import e from "@emotion/styled";
3
+ const o = e.div`
4
+ color: pink;
5
+ `;
6
+ function r() {
7
+ return /* @__PURE__ */ t(o, { children: /* @__PURE__ */ t("h1", { children: "Welcome to M4lWidgets!" }) });
8
+ }
9
+ export {
10
+ r as M4lWidgets,
11
+ r as default
12
+ };
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@m4l/widgets",
3
+ "version": "0.0.1-beta.0",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "type": "module",
8
+ "main": "./index.js",
9
+ "module": "./index.js",
10
+ "types": "./index.d.ts",
11
+ "files": [
12
+ "index.js",
13
+ "index.d.ts",
14
+ "*"
15
+ ],
16
+ "exports": {
17
+ "./package.json": "./package.json",
18
+ ".": {
19
+ "types": "./index.d.ts",
20
+ "import": "./index.js",
21
+ "default": "./index.js"
22
+ }
23
+ },
24
+ "peerDependencies": {
25
+ "@emotion/react": "11.14.0",
26
+ "@emotion/styled": "11.14.1",
27
+ "react": "^18.0.0 || ^19.0.0",
28
+ "react-dom": "^18.0.0 || ^19.0.0"
29
+ },
30
+ "dependencies": {
31
+ "@emotion/react": "11.14.0",
32
+ "@emotion/styled": "11.14.1"
33
+ }
34
+ }