@xyo-network/react-os 2.77.0-rc.1 → 2.77.1
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/dist/browser/index.cjs +1 -32
- package/dist/browser/index.cjs.map +1 -1
- package/dist/browser/index.js +1 -9
- package/dist/browser/index.js.map +1 -1
- package/dist/neutral/index.cjs +1 -32
- package/dist/neutral/index.cjs.map +1 -1
- package/dist/neutral/index.js +1 -9
- package/dist/neutral/index.js.map +1 -1
- package/dist/node/index.cjs +1 -36
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.js +1 -9
- package/dist/node/index.js.map +1 -1
- package/package.json +5 -6
package/dist/browser/index.cjs
CHANGED
|
@@ -1,33 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
|
|
20
|
-
// src/index.ts
|
|
21
|
-
var src_exports = {};
|
|
22
|
-
__export(src_exports, {
|
|
23
|
-
TestComponent: () => TestComponent
|
|
24
|
-
});
|
|
25
|
-
module.exports = __toCommonJS(src_exports);
|
|
26
|
-
|
|
27
|
-
// src/components/TestComponent.tsx
|
|
28
|
-
var import_react_flexbox = require("@xylabs/react-flexbox");
|
|
29
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
30
|
-
var TestComponent = ({ children, ...props }) => {
|
|
31
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_flexbox.FlexRow, { ...props, children });
|
|
32
|
-
};
|
|
1
|
+
"use strict";var p=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var x=Object.prototype.hasOwnProperty;var f=(e,o)=>{for(var r in o)p(e,r,{get:o[r],enumerable:!0})},h=(e,o,r,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of C(o))!x.call(e,t)&&t!==r&&p(e,t,{get:()=>o[t],enumerable:!(n=i(o,t))||n.enumerable});return e};var l=e=>h(p({},"__esModule",{value:!0}),e);var d={};f(d,{TestComponent:()=>P});module.exports=l(d);var s=require("@xylabs/react-flexbox"),m=require("react/jsx-runtime"),P=({children:e,...o})=>(0,m.jsx)(s.FlexRow,{...o,children:e});
|
|
33
2
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/components/TestComponent.tsx"],"sourcesContent":["export * from './components'\n","import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/components/TestComponent.tsx"],"sourcesContent":["export * from './components'\n","import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"yaAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,mBAAAE,IAAA,eAAAC,EAAAH,GCAA,IAAAI,EAAwB,iCAMfC,EAAA,6BADIC,EAA8C,CAAC,CAAE,SAAAC,EAAU,GAAGC,CAAM,OACxE,OAAC,WAAS,GAAGA,EAAQ,SAAAD,EAAS","names":["src_exports","__export","TestComponent","__toCommonJS","import_react_flexbox","import_jsx_runtime","TestComponent","children","props"]}
|
package/dist/browser/index.js
CHANGED
|
@@ -1,10 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
import { FlexRow } from "@xylabs/react-flexbox";
|
|
3
|
-
import { jsx } from "react/jsx-runtime";
|
|
4
|
-
var TestComponent = ({ children, ...props }) => {
|
|
5
|
-
return /* @__PURE__ */ jsx(FlexRow, { ...props, children });
|
|
6
|
-
};
|
|
7
|
-
export {
|
|
8
|
-
TestComponent
|
|
9
|
-
};
|
|
1
|
+
import{FlexRow as t}from"@xylabs/react-flexbox";import{jsx as r}from"react/jsx-runtime";var n=({children:o,...e})=>r(t,{...e,children:o});export{n as TestComponent};
|
|
10
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/components/TestComponent.tsx"],"sourcesContent":["import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/components/TestComponent.tsx"],"sourcesContent":["import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"AAAA,OAAS,WAAAA,MAAe,wBAMf,cAAAC,MAAA,oBADF,IAAMC,EAA8C,CAAC,CAAE,SAAAC,EAAU,GAAGC,CAAM,IACxEH,EAACD,EAAA,CAAS,GAAGI,EAAQ,SAAAD,EAAS","names":["FlexRow","jsx","TestComponent","children","props"]}
|
package/dist/neutral/index.cjs
CHANGED
|
@@ -1,33 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
|
|
20
|
-
// src/index.ts
|
|
21
|
-
var src_exports = {};
|
|
22
|
-
__export(src_exports, {
|
|
23
|
-
TestComponent: () => TestComponent
|
|
24
|
-
});
|
|
25
|
-
module.exports = __toCommonJS(src_exports);
|
|
26
|
-
|
|
27
|
-
// src/components/TestComponent.tsx
|
|
28
|
-
var import_react_flexbox = require("@xylabs/react-flexbox");
|
|
29
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
30
|
-
var TestComponent = ({ children, ...props }) => {
|
|
31
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_flexbox.FlexRow, { ...props, children });
|
|
32
|
-
};
|
|
1
|
+
"use strict";var p=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var x=Object.prototype.hasOwnProperty;var f=(e,o)=>{for(var r in o)p(e,r,{get:o[r],enumerable:!0})},h=(e,o,r,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of C(o))!x.call(e,t)&&t!==r&&p(e,t,{get:()=>o[t],enumerable:!(n=i(o,t))||n.enumerable});return e};var l=e=>h(p({},"__esModule",{value:!0}),e);var d={};f(d,{TestComponent:()=>P});module.exports=l(d);var s=require("@xylabs/react-flexbox"),m=require("react/jsx-runtime"),P=({children:e,...o})=>(0,m.jsx)(s.FlexRow,{...o,children:e});
|
|
33
2
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/components/TestComponent.tsx"],"sourcesContent":["export * from './components'\n","import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/components/TestComponent.tsx"],"sourcesContent":["export * from './components'\n","import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"yaAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,mBAAAE,IAAA,eAAAC,EAAAH,GCAA,IAAAI,EAAwB,iCAMfC,EAAA,6BADIC,EAA8C,CAAC,CAAE,SAAAC,EAAU,GAAGC,CAAM,OACxE,OAAC,WAAS,GAAGA,EAAQ,SAAAD,EAAS","names":["src_exports","__export","TestComponent","__toCommonJS","import_react_flexbox","import_jsx_runtime","TestComponent","children","props"]}
|
package/dist/neutral/index.js
CHANGED
|
@@ -1,10 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
import { FlexRow } from "@xylabs/react-flexbox";
|
|
3
|
-
import { jsx } from "react/jsx-runtime";
|
|
4
|
-
var TestComponent = ({ children, ...props }) => {
|
|
5
|
-
return /* @__PURE__ */ jsx(FlexRow, { ...props, children });
|
|
6
|
-
};
|
|
7
|
-
export {
|
|
8
|
-
TestComponent
|
|
9
|
-
};
|
|
1
|
+
import{FlexRow as t}from"@xylabs/react-flexbox";import{jsx as r}from"react/jsx-runtime";var n=({children:o,...e})=>r(t,{...e,children:o});export{n as TestComponent};
|
|
10
2
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/components/TestComponent.tsx"],"sourcesContent":["import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/components/TestComponent.tsx"],"sourcesContent":["import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"AAAA,OAAS,WAAAA,MAAe,wBAMf,cAAAC,MAAA,oBADF,IAAMC,EAA8C,CAAC,CAAE,SAAAC,EAAU,GAAGC,CAAM,IACxEH,EAACD,EAAA,CAAS,GAAGI,EAAQ,SAAAD,EAAS","names":["FlexRow","jsx","TestComponent","children","props"]}
|
package/dist/node/index.cjs
CHANGED
|
@@ -1,37 +1,2 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
|
|
20
|
-
// src/index.ts
|
|
21
|
-
var src_exports = {};
|
|
22
|
-
__export(src_exports, {
|
|
23
|
-
TestComponent: () => TestComponent
|
|
24
|
-
});
|
|
25
|
-
module.exports = __toCommonJS(src_exports);
|
|
26
|
-
|
|
27
|
-
// src/components/TestComponent.tsx
|
|
28
|
-
var import_react_flexbox = require("@xylabs/react-flexbox");
|
|
29
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
|
30
|
-
var TestComponent = ({ children, ...props }) => {
|
|
31
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_flexbox.FlexRow, { ...props, children });
|
|
32
|
-
};
|
|
33
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
34
|
-
0 && (module.exports = {
|
|
35
|
-
TestComponent
|
|
36
|
-
});
|
|
1
|
+
"use strict";var p=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var x=Object.prototype.hasOwnProperty;var f=(e,o)=>{for(var r in o)p(e,r,{get:o[r],enumerable:!0})},h=(e,o,r,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let t of C(o))!x.call(e,t)&&t!==r&&p(e,t,{get:()=>o[t],enumerable:!(n=i(o,t))||n.enumerable});return e};var l=e=>h(p({},"__esModule",{value:!0}),e);var d={};f(d,{TestComponent:()=>P});module.exports=l(d);var s=require("@xylabs/react-flexbox"),m=require("react/jsx-runtime"),P=({children:e,...o})=>(0,m.jsx)(s.FlexRow,{...o,children:e});0&&(module.exports={TestComponent});
|
|
37
2
|
//# sourceMappingURL=index.cjs.map
|
package/dist/node/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts","../../src/components/TestComponent.tsx"],"sourcesContent":["export * from './components'\n","import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts","../../src/components/TestComponent.tsx"],"sourcesContent":["export * from './components'\n","import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"yaAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,mBAAAE,IAAA,eAAAC,EAAAH,GCAA,IAAAI,EAAwB,iCAMfC,EAAA,6BADIC,EAA8C,CAAC,CAAE,SAAAC,EAAU,GAAGC,CAAM,OACxE,OAAC,WAAS,GAAGA,EAAQ,SAAAD,EAAS","names":["src_exports","__export","TestComponent","__toCommonJS","import_react_flexbox","import_jsx_runtime","TestComponent","children","props"]}
|
package/dist/node/index.js
CHANGED
|
@@ -1,10 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
import { FlexRow } from "@xylabs/react-flexbox";
|
|
3
|
-
import { jsx } from "react/jsx-runtime";
|
|
4
|
-
var TestComponent = ({ children, ...props }) => {
|
|
5
|
-
return /* @__PURE__ */ jsx(FlexRow, { ...props, children });
|
|
6
|
-
};
|
|
7
|
-
export {
|
|
8
|
-
TestComponent
|
|
9
|
-
};
|
|
1
|
+
import{FlexRow as t}from"@xylabs/react-flexbox";import{jsx as r}from"react/jsx-runtime";var n=({children:o,...e})=>r(t,{...e,children:o});export{n as TestComponent};
|
|
10
2
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/components/TestComponent.tsx"],"sourcesContent":["import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/components/TestComponent.tsx"],"sourcesContent":["import { FlexRow } from '@xylabs/react-flexbox'\nimport { PropsWithChildren } from 'react'\n\nexport interface TestComponentProps extends PropsWithChildren {}\n\nexport const TestComponent: React.FC<TestComponentProps> = ({ children, ...props }) => {\n return <FlexRow {...props}>{children}</FlexRow>\n}\n"],"mappings":"AAAA,OAAS,WAAAA,MAAe,wBAMf,cAAAC,MAAA,oBADF,IAAMC,EAA8C,CAAC,CAAE,SAAAC,EAAU,GAAGC,CAAM,IACxEH,EAACD,EAAA,CAAS,GAAGI,EAAQ,SAAAD,EAAS","names":["FlexRow","jsx","TestComponent","children","props"]}
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@mui/icons-material": "^5.15.
|
|
13
|
+
"@mui/icons-material": "^5.15.20",
|
|
14
14
|
"@xylabs/react-flexbox": "^3.1.7",
|
|
15
15
|
"date-fns": "^3.6.0"
|
|
16
16
|
},
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@storybook/react": "^7.6.19",
|
|
25
|
-
"@xylabs/ts-scripts-yarn3": "^3.
|
|
26
|
-
"@xylabs/tsconfig-react": "^3.
|
|
25
|
+
"@xylabs/ts-scripts-yarn3": "^3.11.7",
|
|
26
|
+
"@xylabs/tsconfig-react": "^3.11.7",
|
|
27
27
|
"react-router-dom": "^6.23.1",
|
|
28
28
|
"typescript": "^5.4.5"
|
|
29
29
|
},
|
|
@@ -78,7 +78,6 @@
|
|
|
78
78
|
},
|
|
79
79
|
"sideEffects": false,
|
|
80
80
|
"types": "dist/browser/index.d.ts",
|
|
81
|
-
"version": "2.77.
|
|
82
|
-
"type": "module"
|
|
83
|
-
"stableVersion": "2.76.6"
|
|
81
|
+
"version": "2.77.1",
|
|
82
|
+
"type": "module"
|
|
84
83
|
}
|