@xyo-network/react-os 4.4.2 → 4.4.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.
@@ -1,2 +1,7 @@
1
- export * from './components/index.ts';
2
- //# sourceMappingURL=index.d.ts.map
1
+ import React, { PropsWithChildren } from 'react';
2
+
3
+ interface TestComponentProps extends PropsWithChildren {
4
+ }
5
+ declare const TestComponent: React.FC<TestComponentProps>;
6
+
7
+ export { TestComponent, type TestComponentProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xyo-network/react-os",
3
- "version": "4.4.2",
3
+ "version": "4.4.4",
4
4
  "description": "Common React library for all XYO projects that use React",
5
5
  "keywords": [
6
6
  "xyo",
@@ -43,20 +43,20 @@
43
43
  "lint-pkg": "npmPkgJsonLint ."
44
44
  },
45
45
  "dependencies": {
46
- "@mui/icons-material": "^6.4.1",
47
- "@xylabs/react-flexbox": "^5.3.22",
46
+ "@mui/icons-material": "^6.4.4",
47
+ "@xylabs/react-flexbox": "^5.3.23",
48
48
  "date-fns": "^4.1.0"
49
49
  },
50
50
  "devDependencies": {
51
- "@mui/material": "^6.4.1",
52
- "@mui/styles": "^6.4.1",
53
- "@storybook/react": "^8.5.2",
54
- "@xylabs/ts-scripts-yarn3": "^4.2.6",
55
- "@xylabs/tsconfig-react": "^4.2.6",
51
+ "@mui/material": "^6.4.4",
52
+ "@mui/styles": "^6.4.4",
53
+ "@storybook/react": "^8.5.5",
54
+ "@xylabs/ts-scripts-yarn3": "^5.0.24",
55
+ "@xylabs/tsconfig-react": "^5.0.24",
56
56
  "react": "^18.3.1",
57
57
  "react-dom": "^18.3.1",
58
- "react-router-dom": "^7.1.3",
59
- "storybook": "^8.5.2",
58
+ "react-router-dom": "^7.1.5",
59
+ "storybook": "^8.5.5",
60
60
  "typescript": "^5.7.3"
61
61
  },
62
62
  "peerDependencies": {
@@ -1,8 +0,0 @@
1
- import type { PaperProps } from '@mui/material';
2
- import React from 'react';
3
- export interface XyOsProfileProps extends PaperProps {
4
- pfp: string;
5
- xns: string;
6
- }
7
- export declare const XyOsProfile: React.FC<XyOsProfileProps>;
8
- //# sourceMappingURL=Profile.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Profile.d.ts","sourceRoot":"","sources":["../../../../src/components/Profile/Profile.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAA;AAM/C,OAAO,KAAK,MAAM,OAAO,CAAA;AAGzB,MAAM,WAAW,gBAAiB,SAAQ,UAAU;IAClD,GAAG,EAAE,MAAM,CAAA;IACX,GAAG,EAAE,MAAM,CAAA;CACZ;AAED,eAAO,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAkElD,CAAA"}
@@ -1,3 +0,0 @@
1
- import * as React from 'react';
2
- export declare const StatsModal: React.FC;
3
- //# sourceMappingURL=StatsModal.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"StatsModal.d.ts","sourceRoot":"","sources":["../../../../src/components/Profile/StatsModal.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAS9B,eAAO,MAAM,UAAU,EAAE,KAAK,CAAC,EAiC9B,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from './Profile.tsx';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Profile/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA"}
@@ -1,6 +0,0 @@
1
- import type { PropsWithChildren } from 'react';
2
- import React from 'react';
3
- export interface TestComponentProps extends PropsWithChildren {
4
- }
5
- export declare const TestComponent: React.FC<TestComponentProps>;
6
- //# sourceMappingURL=TestComponent.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TestComponent.d.ts","sourceRoot":"","sources":["../../../src/components/TestComponent.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAC9C,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,MAAM,WAAW,kBAAmB,SAAQ,iBAAiB;CAAG;AAEhE,eAAO,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAEtD,CAAA"}
@@ -1,18 +0,0 @@
1
- import type { BoxProps } from '@mui/material';
2
- import React from 'react';
3
- interface ClockProps extends BoxProps {
4
- date: number;
5
- }
6
- export interface XyOsClockProps {
7
- clockSize: 'small' | 'medium' | 'large';
8
- clockType: 'appbar' | 'widget';
9
- }
10
- export declare const XyOsClock: React.FC<XyOsClockProps>;
11
- export declare const SmallAppBarClock: React.FC<ClockProps>;
12
- export declare const MediumAppBarClock: React.FC<ClockProps>;
13
- export declare const LargeAppBarClock: React.FC<ClockProps>;
14
- export declare const SmallWidgetClock: React.FC<ClockProps>;
15
- export declare const MediumWidgetClock: React.FC<ClockProps>;
16
- export declare const LargeWidgetClock: React.FC<ClockProps>;
17
- export {};
18
- //# sourceMappingURL=XyOsClock.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"XyOsClock.d.ts","sourceRoot":"","sources":["../../../../src/components/XyOsClock/XyOsClock.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAK7C,OAAO,KAA8B,MAAM,OAAO,CAAA;AAElD,UAAU,UAAW,SAAQ,QAAQ;IACnC,IAAI,EAAE,MAAM,CAAA;CACb;AAaD,MAAM,WAAW,cAAc;IAC7B,SAAS,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAA;IACvC,SAAS,EAAE,QAAQ,GAAG,QAAQ,CAAA;CAC/B;AAED,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CA8B9C,CAAA;AAED,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAOjD,CAAA;AAED,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAOlD,CAAA;AAED,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAOjD,CAAA;AAED,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CASjD,CAAA;AAED,eAAO,MAAM,iBAAiB,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CASlD,CAAA;AAED,eAAO,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAUjD,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from './XyOsClock.tsx';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/XyOsClock/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from './TestComponent.tsx';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAA"}