@authdog/react-elements 0.0.1 → 0.0.3

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.
@@ -0,0 +1,5 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+
3
+ declare const Navbar: () => react_jsx_runtime.JSX.Element;
4
+
5
+ export { Navbar };
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";var d=Object.defineProperty;var p=Object.getOwnPropertyDescriptor;var t=Object.getOwnPropertyNames;var v=Object.prototype.hasOwnProperty;var c=(r,o)=>{for(var e in o)d(r,e,{get:o[e],enumerable:!0})},g=(r,o,e,b)=>{if(o&&typeof o=="object"||typeof o=="function")for(let a of t(o))!v.call(r,a)&&a!==e&&d(r,a,{get:()=>o[a],enumerable:!(b=p(o,a))||b.enumerable});return r};var i=r=>g(d({},"__esModule",{value:!0}),r);var h={};c(h,{Navbar:()=>l});module.exports=i(h);var n=require("react/jsx-runtime"),l=()=>(0,n.jsx)("div",{style:{backgroundColor:"blue",padding:"10px",color:"white"},children:"Some change"});
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts","../src/navigation/index.tsx"],"sourcesContent":["export {Navbar} from \"./navigation\";","export const Navbar = () => {\n return (\n <div style={{ backgroundColor: 'blue', padding: '10px', color: 'white' }}>\n Some change\n </div>\n )\n}"],"mappings":"yaAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,YAAAE,IAAA,eAAAC,EAAAH,GCEQ,IAAAI,EAAA,6BAFKC,EAAS,OAEd,OAAC,OAAI,MAAO,CAAE,gBAAiB,OAAQ,QAAS,OAAQ,MAAO,OAAQ,EAAG,uBAE1E","names":["index_exports","__export","Navbar","__toCommonJS","import_jsx_runtime","Navbar"]}
package/dist/index.mjs CHANGED
@@ -1,2 +1,2 @@
1
- import{jsx as r}from"react/jsx-runtime";var o=()=>r("div",{style:{backgroundColor:"blue",padding:"10px",color:"white"},children:"ACME"});export{o as Navbar};
1
+ import{jsx as r}from"react/jsx-runtime";var o=()=>r("div",{style:{backgroundColor:"blue",padding:"10px",color:"white"},children:"Some change"});export{o as Navbar};
2
2
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/navigation/index.tsx"],"sourcesContent":["// import React from 'react';\nexport const Navbar = () => {\n return (\n <div style={{ backgroundColor: 'blue', padding: '10px', color: 'white' }}>\n ACME\n </div>\n )\n}"],"mappings":"AAGQ,cAAAA,MAAA,oBAFD,IAAMC,EAAS,IAEdD,EAAC,OAAI,MAAO,CAAE,gBAAiB,OAAQ,QAAS,OAAQ,MAAO,OAAQ,EAAG,gBAE1E","names":["jsx","Navbar"]}
1
+ {"version":3,"sources":["../src/navigation/index.tsx"],"sourcesContent":["export const Navbar = () => {\n return (\n <div style={{ backgroundColor: 'blue', padding: '10px', color: 'white' }}>\n Some change\n </div>\n )\n}"],"mappings":"AAEQ,cAAAA,MAAA,oBAFD,IAAMC,EAAS,IAEdD,EAAC,OAAI,MAAO,CAAE,gBAAiB,OAAQ,QAAS,OAAQ,MAAO,OAAQ,EAAG,uBAE1E","names":["jsx","Navbar"]}
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "@authdog/react-elements",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Authdog React Elements",
5
- "type": "module",
6
5
  "source": "src/index.ts",
7
- "main": "./dist/index.mjs",
8
- "types": "./dist/index.d.mts",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
- "types": "./dist/index.d.mts",
12
- "import": "./dist/index.mjs"
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.mjs",
13
+ "require": "./dist/index.js"
13
14
  }
14
15
  },
15
16
  "files": [
@@ -21,9 +22,10 @@
21
22
  },
22
23
  "dependencies": {
23
24
  "react": "^18.2.0",
24
- "@authdog/node-commons": "0.0.19"
25
+ "@authdog/node-commons": "0.0.20"
25
26
  },
26
27
  "devDependencies": {
28
+ "@types/node": "^22.14.1",
27
29
  "@types/react": "^18.2.0"
28
30
  },
29
31
  "scripts": {