@xylabs/sdk-react 3.1.0-rc.6 → 3.1.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/README.md +40 -6
- package/dist/browser/index.cjs +43 -0
- package/dist/browser/index.cjs.map +1 -0
- package/dist/browser/index.d.cts +24 -0
- package/dist/browser/index.d.cts.map +1 -0
- package/dist/browser/index.d.mts +1 -0
- package/dist/browser/index.d.mts.map +1 -1
- package/dist/browser/index.d.ts +1 -0
- package/dist/browser/index.d.ts.map +1 -1
- package/dist/browser/index.js +2 -0
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.cjs +69 -0
- package/dist/node/index.cjs.map +1 -0
- package/dist/node/index.d.cts +24 -0
- package/dist/node/index.d.cts.map +1 -0
- package/dist/node/index.d.mts +1 -0
- package/dist/node/index.d.mts.map +1 -1
- package/dist/node/index.d.ts +1 -0
- package/dist/node/index.d.ts.map +1 -1
- package/dist/node/index.js +24 -64
- package/dist/node/index.js.map +1 -1
- package/package.json +79 -74
- package/src/index.ts +1 -0
- package/typedoc.json +5 -0
- package/dist/node/index.mjs +0 -23
- package/dist/node/index.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
[![main-build][]][main-build-link]
|
|
6
6
|
[![npm-badge][]][npm-link]
|
|
7
|
+
[![npm-downloads-badge][]][npm-link]
|
|
8
|
+
[![jsdelivr-badge][]][jsdelivr-link]
|
|
9
|
+
[![npm-license-badge][]](LICENSE)
|
|
7
10
|
[![codacy-badge][]][codacy-link]
|
|
8
11
|
[![codeclimate-badge][]][codeclimate-link]
|
|
9
12
|
[![snyk-badge][]][snyk-link]
|
|
@@ -21,7 +24,15 @@
|
|
|
21
24
|
|
|
22
25
|
## Description
|
|
23
26
|
|
|
24
|
-
Common React code that is used
|
|
27
|
+
Common React code that is used throughout XYO projects that use React.
|
|
28
|
+
|
|
29
|
+
Features:
|
|
30
|
+
|
|
31
|
+
- Mono-repo that publishes individual packages to npm
|
|
32
|
+
- Fully written in TypeScript
|
|
33
|
+
- Tree-shaking focused; include only what you need during bundling
|
|
34
|
+
- UI components built from the mui library
|
|
35
|
+
- Crypto utilities backed by the Ethers.js library
|
|
25
36
|
|
|
26
37
|
## Install
|
|
27
38
|
|
|
@@ -37,10 +48,24 @@ Using yarn:
|
|
|
37
48
|
yarn add @xylabs/sdk-react
|
|
38
49
|
```
|
|
39
50
|
|
|
51
|
+
## Documentation
|
|
52
|
+
[Developer Reference](https://xylabs.github.io/sdk-react)
|
|
53
|
+
|
|
54
|
+
[Storybook](https://xylabs.github.io/sdk-react/storybook)
|
|
55
|
+
|
|
40
56
|
## Scripts
|
|
41
57
|
|
|
42
|
-
|
|
43
|
-
|
|
58
|
+
Using npm:
|
|
59
|
+
|
|
60
|
+
```sh
|
|
61
|
+
npm xy --help
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
Using yarn:
|
|
65
|
+
|
|
66
|
+
```sh
|
|
67
|
+
yarn xy --help
|
|
68
|
+
```
|
|
44
69
|
|
|
45
70
|
### Build (Storybook)
|
|
46
71
|
|
|
@@ -60,7 +85,10 @@ yarn start
|
|
|
60
85
|
|
|
61
86
|
## Maintainers
|
|
62
87
|
|
|
63
|
-
- [Arie Trouw](https://github.com/arietrouw) [arietrouw.com](https://arietrouw.com)
|
|
88
|
+
- [Arie Trouw](https://github.com/arietrouw) ([arietrouw.com](https://arietrouw.com))
|
|
89
|
+
- [Matt Jones](https://github.com/jonesmac)
|
|
90
|
+
- [Joel Carter](https://github.com/JoelBCarter)
|
|
91
|
+
- [Jordan Trouw](https://github.com/jordantrouw)
|
|
64
92
|
|
|
65
93
|
## License
|
|
66
94
|
|
|
@@ -79,10 +107,16 @@ See the [LICENSE](LICENSE) file for license details
|
|
|
79
107
|
[npm-link]: https://www.npmjs.com/package/@xylabs/sdk-react
|
|
80
108
|
|
|
81
109
|
[codacy-badge]: https://app.codacy.com/project/badge/Grade/c2a69d4530ed4b7da6ddb070169dd339
|
|
82
|
-
[codacy-link]: https://
|
|
110
|
+
[codacy-link]: https://app.codacy.com/gh/xylabs/sdk-react
|
|
83
111
|
|
|
84
112
|
[codeclimate-badge]: https://api.codeclimate.com/v1/badges/c461e0bc2b00c0b01ac0/maintainability
|
|
85
113
|
[codeclimate-link]: https://codeclimate.com/github/xylabs/sdk-react/maintainability
|
|
86
114
|
|
|
87
115
|
[snyk-badge]: https://snyk.io/test/github/xylabs/sdk-react/badge.svg?targetFile=package.json
|
|
88
|
-
[snyk-link]: https://snyk.io/test/github/xylabs/sdk-react?targetFile=package.json
|
|
116
|
+
[snyk-link]: https://snyk.io/test/github/xylabs/sdk-react?targetFile=package.json
|
|
117
|
+
|
|
118
|
+
[npm-downloads-badge]: https://img.shields.io/npm/dw/@xylabs/sdk-react
|
|
119
|
+
[npm-license-badge]: https://img.shields.io/npm/l/@xylabs/sdk-react
|
|
120
|
+
|
|
121
|
+
[jsdelivr-badge]: https://data.jsdelivr.com/v1/package/npm/@xylabs/sdk-react/badge
|
|
122
|
+
[jsdelivr-link]: https://www.jsdelivr.com/package/npm/@xylabs/sdk-react
|
|
@@ -0,0 +1,43 @@
|
|
|
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 __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
16
|
+
|
|
17
|
+
// src/index.ts
|
|
18
|
+
var src_exports = {};
|
|
19
|
+
module.exports = __toCommonJS(src_exports);
|
|
20
|
+
__reExport(src_exports, require("@xylabs/react-accordion"), module.exports);
|
|
21
|
+
__reExport(src_exports, require("@xylabs/react-animation"), module.exports);
|
|
22
|
+
__reExport(src_exports, require("@xylabs/react-appbar"), module.exports);
|
|
23
|
+
__reExport(src_exports, require("@xylabs/react-async-effect"), module.exports);
|
|
24
|
+
__reExport(src_exports, require("@xylabs/react-button"), module.exports);
|
|
25
|
+
__reExport(src_exports, require("@xylabs/react-common"), module.exports);
|
|
26
|
+
__reExport(src_exports, require("@xylabs/react-cookie-consent"), module.exports);
|
|
27
|
+
__reExport(src_exports, require("@xylabs/react-crypto"), module.exports);
|
|
28
|
+
__reExport(src_exports, require("@xylabs/react-dialogs"), module.exports);
|
|
29
|
+
__reExport(src_exports, require("@xylabs/react-experiments"), module.exports);
|
|
30
|
+
__reExport(src_exports, require("@xylabs/react-flexbox"), module.exports);
|
|
31
|
+
__reExport(src_exports, require("@xylabs/react-identicon"), module.exports);
|
|
32
|
+
__reExport(src_exports, require("@xylabs/react-invertible-theme"), module.exports);
|
|
33
|
+
__reExport(src_exports, require("@xylabs/react-link"), module.exports);
|
|
34
|
+
__reExport(src_exports, require("@xylabs/react-number-status"), module.exports);
|
|
35
|
+
__reExport(src_exports, require("@xylabs/react-pixel"), module.exports);
|
|
36
|
+
__reExport(src_exports, require("@xylabs/react-pixel-debugger"), module.exports);
|
|
37
|
+
__reExport(src_exports, require("@xylabs/react-promise"), module.exports);
|
|
38
|
+
__reExport(src_exports, require("@xylabs/react-quick-tip-button"), module.exports);
|
|
39
|
+
__reExport(src_exports, require("@xylabs/react-render-spin-check"), module.exports);
|
|
40
|
+
__reExport(src_exports, require("@xylabs/react-rich-result"), module.exports);
|
|
41
|
+
__reExport(src_exports, require("@xylabs/react-scroll-to-top"), module.exports);
|
|
42
|
+
__reExport(src_exports, require("@xylabs/react-shared"), module.exports);
|
|
43
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xylabs/react-accordion'\nexport * from '@xylabs/react-animation'\nexport * from '@xylabs/react-appbar'\nexport * from '@xylabs/react-async-effect'\nexport * from '@xylabs/react-button'\nexport * from '@xylabs/react-common'\nexport * from '@xylabs/react-cookie-consent'\nexport * from '@xylabs/react-crypto'\nexport * from '@xylabs/react-dialogs'\nexport * from '@xylabs/react-experiments'\nexport * from '@xylabs/react-flexbox'\nexport * from '@xylabs/react-identicon'\nexport * from '@xylabs/react-invertible-theme'\nexport * from '@xylabs/react-link'\nexport * from '@xylabs/react-number-status'\nexport * from '@xylabs/react-pixel'\nexport * from '@xylabs/react-pixel-debugger'\nexport * from '@xylabs/react-promise'\nexport * from '@xylabs/react-quick-tip-button'\nexport * from '@xylabs/react-render-spin-check'\nexport * from '@xylabs/react-rich-result'\nexport * from '@xylabs/react-scroll-to-top'\nexport * from '@xylabs/react-shared'\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,oCAAd;AACA,wBAAc,oCADd;AAEA,wBAAc,iCAFd;AAGA,wBAAc,uCAHd;AAIA,wBAAc,iCAJd;AAKA,wBAAc,iCALd;AAMA,wBAAc,yCANd;AAOA,wBAAc,iCAPd;AAQA,wBAAc,kCARd;AASA,wBAAc,sCATd;AAUA,wBAAc,kCAVd;AAWA,wBAAc,oCAXd;AAYA,wBAAc,2CAZd;AAaA,wBAAc,+BAbd;AAcA,wBAAc,wCAdd;AAeA,wBAAc,gCAfd;AAgBA,wBAAc,yCAhBd;AAiBA,wBAAc,kCAjBd;AAkBA,wBAAc,2CAlBd;AAmBA,wBAAc,4CAnBd;AAoBA,wBAAc,sCApBd;AAqBA,wBAAc,wCArBd;AAsBA,wBAAc,iCAtBd;","names":[]}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export * from '@xylabs/react-accordion';
|
|
2
|
+
export * from '@xylabs/react-animation';
|
|
3
|
+
export * from '@xylabs/react-appbar';
|
|
4
|
+
export * from '@xylabs/react-async-effect';
|
|
5
|
+
export * from '@xylabs/react-button';
|
|
6
|
+
export * from '@xylabs/react-common';
|
|
7
|
+
export * from '@xylabs/react-cookie-consent';
|
|
8
|
+
export * from '@xylabs/react-crypto';
|
|
9
|
+
export * from '@xylabs/react-dialogs';
|
|
10
|
+
export * from '@xylabs/react-experiments';
|
|
11
|
+
export * from '@xylabs/react-flexbox';
|
|
12
|
+
export * from '@xylabs/react-identicon';
|
|
13
|
+
export * from '@xylabs/react-invertible-theme';
|
|
14
|
+
export * from '@xylabs/react-link';
|
|
15
|
+
export * from '@xylabs/react-number-status';
|
|
16
|
+
export * from '@xylabs/react-pixel';
|
|
17
|
+
export * from '@xylabs/react-pixel-debugger';
|
|
18
|
+
export * from '@xylabs/react-promise';
|
|
19
|
+
export * from '@xylabs/react-quick-tip-button';
|
|
20
|
+
export * from '@xylabs/react-render-spin-check';
|
|
21
|
+
export * from '@xylabs/react-rich-result';
|
|
22
|
+
export * from '@xylabs/react-scroll-to-top';
|
|
23
|
+
export * from '@xylabs/react-shared';
|
|
24
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA;AACpC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA"}
|
package/dist/browser/index.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA;AACpC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA;AACpC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA"}
|
package/dist/browser/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA;AACpC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA;AACpC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA"}
|
package/dist/browser/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xylabs/react-accordion'\nexport * from '@xylabs/react-appbar'\nexport * from '@xylabs/react-async-effect'\nexport * from '@xylabs/react-button'\nexport * from '@xylabs/react-common'\nexport * from '@xylabs/react-cookie-consent'\nexport * from '@xylabs/react-crypto'\nexport * from '@xylabs/react-dialogs'\nexport * from '@xylabs/react-experiments'\nexport * from '@xylabs/react-flexbox'\nexport * from '@xylabs/react-identicon'\nexport * from '@xylabs/react-invertible-theme'\nexport * from '@xylabs/react-link'\nexport * from '@xylabs/react-number-status'\nexport * from '@xylabs/react-pixel'\nexport * from '@xylabs/react-pixel-debugger'\nexport * from '@xylabs/react-promise'\nexport * from '@xylabs/react-quick-tip-button'\nexport * from '@xylabs/react-render-spin-check'\nexport * from '@xylabs/react-rich-result'\nexport * from '@xylabs/react-scroll-to-top'\nexport * from '@xylabs/react-shared'\n"],"mappings":"AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xylabs/react-accordion'\nexport * from '@xylabs/react-animation'\nexport * from '@xylabs/react-appbar'\nexport * from '@xylabs/react-async-effect'\nexport * from '@xylabs/react-button'\nexport * from '@xylabs/react-common'\nexport * from '@xylabs/react-cookie-consent'\nexport * from '@xylabs/react-crypto'\nexport * from '@xylabs/react-dialogs'\nexport * from '@xylabs/react-experiments'\nexport * from '@xylabs/react-flexbox'\nexport * from '@xylabs/react-identicon'\nexport * from '@xylabs/react-invertible-theme'\nexport * from '@xylabs/react-link'\nexport * from '@xylabs/react-number-status'\nexport * from '@xylabs/react-pixel'\nexport * from '@xylabs/react-pixel-debugger'\nexport * from '@xylabs/react-promise'\nexport * from '@xylabs/react-quick-tip-button'\nexport * from '@xylabs/react-render-spin-check'\nexport * from '@xylabs/react-rich-result'\nexport * from '@xylabs/react-scroll-to-top'\nexport * from '@xylabs/react-shared'\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
|
|
@@ -0,0 +1,69 @@
|
|
|
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 __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
15
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
16
|
+
|
|
17
|
+
// src/index.ts
|
|
18
|
+
var src_exports = {};
|
|
19
|
+
module.exports = __toCommonJS(src_exports);
|
|
20
|
+
__reExport(src_exports, require("@xylabs/react-accordion"), module.exports);
|
|
21
|
+
__reExport(src_exports, require("@xylabs/react-animation"), module.exports);
|
|
22
|
+
__reExport(src_exports, require("@xylabs/react-appbar"), module.exports);
|
|
23
|
+
__reExport(src_exports, require("@xylabs/react-async-effect"), module.exports);
|
|
24
|
+
__reExport(src_exports, require("@xylabs/react-button"), module.exports);
|
|
25
|
+
__reExport(src_exports, require("@xylabs/react-common"), module.exports);
|
|
26
|
+
__reExport(src_exports, require("@xylabs/react-cookie-consent"), module.exports);
|
|
27
|
+
__reExport(src_exports, require("@xylabs/react-crypto"), module.exports);
|
|
28
|
+
__reExport(src_exports, require("@xylabs/react-dialogs"), module.exports);
|
|
29
|
+
__reExport(src_exports, require("@xylabs/react-experiments"), module.exports);
|
|
30
|
+
__reExport(src_exports, require("@xylabs/react-flexbox"), module.exports);
|
|
31
|
+
__reExport(src_exports, require("@xylabs/react-identicon"), module.exports);
|
|
32
|
+
__reExport(src_exports, require("@xylabs/react-invertible-theme"), module.exports);
|
|
33
|
+
__reExport(src_exports, require("@xylabs/react-link"), module.exports);
|
|
34
|
+
__reExport(src_exports, require("@xylabs/react-number-status"), module.exports);
|
|
35
|
+
__reExport(src_exports, require("@xylabs/react-pixel"), module.exports);
|
|
36
|
+
__reExport(src_exports, require("@xylabs/react-pixel-debugger"), module.exports);
|
|
37
|
+
__reExport(src_exports, require("@xylabs/react-promise"), module.exports);
|
|
38
|
+
__reExport(src_exports, require("@xylabs/react-quick-tip-button"), module.exports);
|
|
39
|
+
__reExport(src_exports, require("@xylabs/react-render-spin-check"), module.exports);
|
|
40
|
+
__reExport(src_exports, require("@xylabs/react-rich-result"), module.exports);
|
|
41
|
+
__reExport(src_exports, require("@xylabs/react-scroll-to-top"), module.exports);
|
|
42
|
+
__reExport(src_exports, require("@xylabs/react-shared"), module.exports);
|
|
43
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
44
|
+
0 && (module.exports = {
|
|
45
|
+
...require("@xylabs/react-accordion"),
|
|
46
|
+
...require("@xylabs/react-animation"),
|
|
47
|
+
...require("@xylabs/react-appbar"),
|
|
48
|
+
...require("@xylabs/react-async-effect"),
|
|
49
|
+
...require("@xylabs/react-button"),
|
|
50
|
+
...require("@xylabs/react-common"),
|
|
51
|
+
...require("@xylabs/react-cookie-consent"),
|
|
52
|
+
...require("@xylabs/react-crypto"),
|
|
53
|
+
...require("@xylabs/react-dialogs"),
|
|
54
|
+
...require("@xylabs/react-experiments"),
|
|
55
|
+
...require("@xylabs/react-flexbox"),
|
|
56
|
+
...require("@xylabs/react-identicon"),
|
|
57
|
+
...require("@xylabs/react-invertible-theme"),
|
|
58
|
+
...require("@xylabs/react-link"),
|
|
59
|
+
...require("@xylabs/react-number-status"),
|
|
60
|
+
...require("@xylabs/react-pixel"),
|
|
61
|
+
...require("@xylabs/react-pixel-debugger"),
|
|
62
|
+
...require("@xylabs/react-promise"),
|
|
63
|
+
...require("@xylabs/react-quick-tip-button"),
|
|
64
|
+
...require("@xylabs/react-render-spin-check"),
|
|
65
|
+
...require("@xylabs/react-rich-result"),
|
|
66
|
+
...require("@xylabs/react-scroll-to-top"),
|
|
67
|
+
...require("@xylabs/react-shared")
|
|
68
|
+
});
|
|
69
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xylabs/react-accordion'\nexport * from '@xylabs/react-animation'\nexport * from '@xylabs/react-appbar'\nexport * from '@xylabs/react-async-effect'\nexport * from '@xylabs/react-button'\nexport * from '@xylabs/react-common'\nexport * from '@xylabs/react-cookie-consent'\nexport * from '@xylabs/react-crypto'\nexport * from '@xylabs/react-dialogs'\nexport * from '@xylabs/react-experiments'\nexport * from '@xylabs/react-flexbox'\nexport * from '@xylabs/react-identicon'\nexport * from '@xylabs/react-invertible-theme'\nexport * from '@xylabs/react-link'\nexport * from '@xylabs/react-number-status'\nexport * from '@xylabs/react-pixel'\nexport * from '@xylabs/react-pixel-debugger'\nexport * from '@xylabs/react-promise'\nexport * from '@xylabs/react-quick-tip-button'\nexport * from '@xylabs/react-render-spin-check'\nexport * from '@xylabs/react-rich-result'\nexport * from '@xylabs/react-scroll-to-top'\nexport * from '@xylabs/react-shared'\n"],"mappings":";;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,oCAAd;AACA,wBAAc,oCADd;AAEA,wBAAc,iCAFd;AAGA,wBAAc,uCAHd;AAIA,wBAAc,iCAJd;AAKA,wBAAc,iCALd;AAMA,wBAAc,yCANd;AAOA,wBAAc,iCAPd;AAQA,wBAAc,kCARd;AASA,wBAAc,sCATd;AAUA,wBAAc,kCAVd;AAWA,wBAAc,oCAXd;AAYA,wBAAc,2CAZd;AAaA,wBAAc,+BAbd;AAcA,wBAAc,wCAdd;AAeA,wBAAc,gCAfd;AAgBA,wBAAc,yCAhBd;AAiBA,wBAAc,kCAjBd;AAkBA,wBAAc,2CAlBd;AAmBA,wBAAc,4CAnBd;AAoBA,wBAAc,sCApBd;AAqBA,wBAAc,wCArBd;AAsBA,wBAAc,iCAtBd;","names":[]}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export * from '@xylabs/react-accordion';
|
|
2
|
+
export * from '@xylabs/react-animation';
|
|
3
|
+
export * from '@xylabs/react-appbar';
|
|
4
|
+
export * from '@xylabs/react-async-effect';
|
|
5
|
+
export * from '@xylabs/react-button';
|
|
6
|
+
export * from '@xylabs/react-common';
|
|
7
|
+
export * from '@xylabs/react-cookie-consent';
|
|
8
|
+
export * from '@xylabs/react-crypto';
|
|
9
|
+
export * from '@xylabs/react-dialogs';
|
|
10
|
+
export * from '@xylabs/react-experiments';
|
|
11
|
+
export * from '@xylabs/react-flexbox';
|
|
12
|
+
export * from '@xylabs/react-identicon';
|
|
13
|
+
export * from '@xylabs/react-invertible-theme';
|
|
14
|
+
export * from '@xylabs/react-link';
|
|
15
|
+
export * from '@xylabs/react-number-status';
|
|
16
|
+
export * from '@xylabs/react-pixel';
|
|
17
|
+
export * from '@xylabs/react-pixel-debugger';
|
|
18
|
+
export * from '@xylabs/react-promise';
|
|
19
|
+
export * from '@xylabs/react-quick-tip-button';
|
|
20
|
+
export * from '@xylabs/react-render-spin-check';
|
|
21
|
+
export * from '@xylabs/react-rich-result';
|
|
22
|
+
export * from '@xylabs/react-scroll-to-top';
|
|
23
|
+
export * from '@xylabs/react-shared';
|
|
24
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA;AACpC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA"}
|
package/dist/node/index.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA;AACpC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA;AACpC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA"}
|
package/dist/node/index.d.ts
CHANGED
package/dist/node/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA;AACpC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,yBAAyB,CAAA;AACvC,cAAc,sBAAsB,CAAA;AACpC,cAAc,4BAA4B,CAAA;AAC1C,cAAc,sBAAsB,CAAA;AACpC,cAAc,sBAAsB,CAAA;AACpC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,sBAAsB,CAAA;AACpC,cAAc,uBAAuB,CAAA;AACrC,cAAc,2BAA2B,CAAA;AACzC,cAAc,uBAAuB,CAAA;AACrC,cAAc,yBAAyB,CAAA;AACvC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,oBAAoB,CAAA;AAClC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,qBAAqB,CAAA;AACnC,cAAc,8BAA8B,CAAA;AAC5C,cAAc,uBAAuB,CAAA;AACrC,cAAc,gCAAgC,CAAA;AAC9C,cAAc,iCAAiC,CAAA;AAC/C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,sBAAsB,CAAA"}
|
package/dist/node/index.js
CHANGED
|
@@ -1,65 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
__reExport(src_exports, require("@xylabs/react-dialogs"), module.exports);
|
|
26
|
-
__reExport(src_exports, require("@xylabs/react-experiments"), module.exports);
|
|
27
|
-
__reExport(src_exports, require("@xylabs/react-flexbox"), module.exports);
|
|
28
|
-
__reExport(src_exports, require("@xylabs/react-identicon"), module.exports);
|
|
29
|
-
__reExport(src_exports, require("@xylabs/react-invertible-theme"), module.exports);
|
|
30
|
-
__reExport(src_exports, require("@xylabs/react-link"), module.exports);
|
|
31
|
-
__reExport(src_exports, require("@xylabs/react-number-status"), module.exports);
|
|
32
|
-
__reExport(src_exports, require("@xylabs/react-pixel"), module.exports);
|
|
33
|
-
__reExport(src_exports, require("@xylabs/react-pixel-debugger"), module.exports);
|
|
34
|
-
__reExport(src_exports, require("@xylabs/react-promise"), module.exports);
|
|
35
|
-
__reExport(src_exports, require("@xylabs/react-quick-tip-button"), module.exports);
|
|
36
|
-
__reExport(src_exports, require("@xylabs/react-render-spin-check"), module.exports);
|
|
37
|
-
__reExport(src_exports, require("@xylabs/react-rich-result"), module.exports);
|
|
38
|
-
__reExport(src_exports, require("@xylabs/react-scroll-to-top"), module.exports);
|
|
39
|
-
__reExport(src_exports, require("@xylabs/react-shared"), module.exports);
|
|
40
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
41
|
-
0 && (module.exports = {
|
|
42
|
-
...require("@xylabs/react-accordion"),
|
|
43
|
-
...require("@xylabs/react-appbar"),
|
|
44
|
-
...require("@xylabs/react-async-effect"),
|
|
45
|
-
...require("@xylabs/react-button"),
|
|
46
|
-
...require("@xylabs/react-common"),
|
|
47
|
-
...require("@xylabs/react-cookie-consent"),
|
|
48
|
-
...require("@xylabs/react-crypto"),
|
|
49
|
-
...require("@xylabs/react-dialogs"),
|
|
50
|
-
...require("@xylabs/react-experiments"),
|
|
51
|
-
...require("@xylabs/react-flexbox"),
|
|
52
|
-
...require("@xylabs/react-identicon"),
|
|
53
|
-
...require("@xylabs/react-invertible-theme"),
|
|
54
|
-
...require("@xylabs/react-link"),
|
|
55
|
-
...require("@xylabs/react-number-status"),
|
|
56
|
-
...require("@xylabs/react-pixel"),
|
|
57
|
-
...require("@xylabs/react-pixel-debugger"),
|
|
58
|
-
...require("@xylabs/react-promise"),
|
|
59
|
-
...require("@xylabs/react-quick-tip-button"),
|
|
60
|
-
...require("@xylabs/react-render-spin-check"),
|
|
61
|
-
...require("@xylabs/react-rich-result"),
|
|
62
|
-
...require("@xylabs/react-scroll-to-top"),
|
|
63
|
-
...require("@xylabs/react-shared")
|
|
64
|
-
});
|
|
1
|
+
// src/index.ts
|
|
2
|
+
export * from "@xylabs/react-accordion";
|
|
3
|
+
export * from "@xylabs/react-animation";
|
|
4
|
+
export * from "@xylabs/react-appbar";
|
|
5
|
+
export * from "@xylabs/react-async-effect";
|
|
6
|
+
export * from "@xylabs/react-button";
|
|
7
|
+
export * from "@xylabs/react-common";
|
|
8
|
+
export * from "@xylabs/react-cookie-consent";
|
|
9
|
+
export * from "@xylabs/react-crypto";
|
|
10
|
+
export * from "@xylabs/react-dialogs";
|
|
11
|
+
export * from "@xylabs/react-experiments";
|
|
12
|
+
export * from "@xylabs/react-flexbox";
|
|
13
|
+
export * from "@xylabs/react-identicon";
|
|
14
|
+
export * from "@xylabs/react-invertible-theme";
|
|
15
|
+
export * from "@xylabs/react-link";
|
|
16
|
+
export * from "@xylabs/react-number-status";
|
|
17
|
+
export * from "@xylabs/react-pixel";
|
|
18
|
+
export * from "@xylabs/react-pixel-debugger";
|
|
19
|
+
export * from "@xylabs/react-promise";
|
|
20
|
+
export * from "@xylabs/react-quick-tip-button";
|
|
21
|
+
export * from "@xylabs/react-render-spin-check";
|
|
22
|
+
export * from "@xylabs/react-rich-result";
|
|
23
|
+
export * from "@xylabs/react-scroll-to-top";
|
|
24
|
+
export * from "@xylabs/react-shared";
|
|
65
25
|
//# sourceMappingURL=index.js.map
|
package/dist/node/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xylabs/react-accordion'\nexport * from '@xylabs/react-appbar'\nexport * from '@xylabs/react-async-effect'\nexport * from '@xylabs/react-button'\nexport * from '@xylabs/react-common'\nexport * from '@xylabs/react-cookie-consent'\nexport * from '@xylabs/react-crypto'\nexport * from '@xylabs/react-dialogs'\nexport * from '@xylabs/react-experiments'\nexport * from '@xylabs/react-flexbox'\nexport * from '@xylabs/react-identicon'\nexport * from '@xylabs/react-invertible-theme'\nexport * from '@xylabs/react-link'\nexport * from '@xylabs/react-number-status'\nexport * from '@xylabs/react-pixel'\nexport * from '@xylabs/react-pixel-debugger'\nexport * from '@xylabs/react-promise'\nexport * from '@xylabs/react-quick-tip-button'\nexport * from '@xylabs/react-render-spin-check'\nexport * from '@xylabs/react-rich-result'\nexport * from '@xylabs/react-scroll-to-top'\nexport * from '@xylabs/react-shared'\n"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xylabs/react-accordion'\nexport * from '@xylabs/react-animation'\nexport * from '@xylabs/react-appbar'\nexport * from '@xylabs/react-async-effect'\nexport * from '@xylabs/react-button'\nexport * from '@xylabs/react-common'\nexport * from '@xylabs/react-cookie-consent'\nexport * from '@xylabs/react-crypto'\nexport * from '@xylabs/react-dialogs'\nexport * from '@xylabs/react-experiments'\nexport * from '@xylabs/react-flexbox'\nexport * from '@xylabs/react-identicon'\nexport * from '@xylabs/react-invertible-theme'\nexport * from '@xylabs/react-link'\nexport * from '@xylabs/react-number-status'\nexport * from '@xylabs/react-pixel'\nexport * from '@xylabs/react-pixel-debugger'\nexport * from '@xylabs/react-promise'\nexport * from '@xylabs/react-quick-tip-button'\nexport * from '@xylabs/react-render-spin-check'\nexport * from '@xylabs/react-rich-result'\nexport * from '@xylabs/react-scroll-to-top'\nexport * from '@xylabs/react-shared'\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
|
package/package.json
CHANGED
|
@@ -13,73 +13,72 @@
|
|
|
13
13
|
"packages/*"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@xylabs/react-accordion": "~3.1.0
|
|
17
|
-
"@xylabs/react-
|
|
18
|
-
"@xylabs/react-
|
|
19
|
-
"@xylabs/react-
|
|
20
|
-
"@xylabs/react-
|
|
21
|
-
"@xylabs/react-
|
|
22
|
-
"@xylabs/react-
|
|
23
|
-
"@xylabs/react-
|
|
24
|
-
"@xylabs/react-
|
|
25
|
-
"@xylabs/react-
|
|
26
|
-
"@xylabs/react-
|
|
27
|
-
"@xylabs/react-
|
|
28
|
-
"@xylabs/react-
|
|
29
|
-
"@xylabs/react-
|
|
30
|
-
"@xylabs/react-
|
|
31
|
-
"@xylabs/react-pixel
|
|
32
|
-
"@xylabs/react-
|
|
33
|
-
"@xylabs/react-
|
|
34
|
-
"@xylabs/react-
|
|
35
|
-
"@xylabs/react-
|
|
36
|
-
"@xylabs/react-
|
|
37
|
-
"@xylabs/react-
|
|
16
|
+
"@xylabs/react-accordion": "~3.1.0",
|
|
17
|
+
"@xylabs/react-animation": "~3.1.0",
|
|
18
|
+
"@xylabs/react-appbar": "~3.1.0",
|
|
19
|
+
"@xylabs/react-async-effect": "~3.1.0",
|
|
20
|
+
"@xylabs/react-button": "~3.1.0",
|
|
21
|
+
"@xylabs/react-common": "~3.1.0",
|
|
22
|
+
"@xylabs/react-cookie-consent": "~3.1.0",
|
|
23
|
+
"@xylabs/react-crypto": "~3.1.0",
|
|
24
|
+
"@xylabs/react-dialogs": "~3.1.0",
|
|
25
|
+
"@xylabs/react-experiments": "~3.1.0",
|
|
26
|
+
"@xylabs/react-flexbox": "~3.1.0",
|
|
27
|
+
"@xylabs/react-identicon": "~3.1.0",
|
|
28
|
+
"@xylabs/react-invertible-theme": "~3.1.0",
|
|
29
|
+
"@xylabs/react-link": "~3.1.0",
|
|
30
|
+
"@xylabs/react-number-status": "~3.1.0",
|
|
31
|
+
"@xylabs/react-pixel": "~3.1.0",
|
|
32
|
+
"@xylabs/react-pixel-debugger": "~3.1.0",
|
|
33
|
+
"@xylabs/react-promise": "~3.1.0",
|
|
34
|
+
"@xylabs/react-quick-tip-button": "~3.1.0",
|
|
35
|
+
"@xylabs/react-render-spin-check": "~3.1.0",
|
|
36
|
+
"@xylabs/react-rich-result": "~3.1.0",
|
|
37
|
+
"@xylabs/react-scroll-to-top": "~3.1.0",
|
|
38
|
+
"@xylabs/react-shared": "~3.1.0"
|
|
38
39
|
},
|
|
39
40
|
"description": "Common React library for all XY Labs projects that use React",
|
|
40
41
|
"devDependencies": {
|
|
41
|
-
"@babel/core": "^7.
|
|
42
|
-
"@babel/preset-env": "^7.
|
|
43
|
-
"@babel/preset-react": "^7.
|
|
44
|
-
"@babel/preset-typescript": "^7.
|
|
45
|
-
"@emotion/react": "^11.11.
|
|
42
|
+
"@babel/core": "^7.23.9",
|
|
43
|
+
"@babel/preset-env": "^7.23.9",
|
|
44
|
+
"@babel/preset-react": "^7.23.3",
|
|
45
|
+
"@babel/preset-typescript": "^7.23.3",
|
|
46
|
+
"@emotion/react": "^11.11.3",
|
|
46
47
|
"@emotion/styled": "^11.11.0",
|
|
47
|
-
"@mui/material": "^5.
|
|
48
|
-
"@storybook/addon-actions": "^7.
|
|
49
|
-
"@storybook/addon-docs": "^7.
|
|
50
|
-
"@storybook/addon-essentials": "^7.
|
|
51
|
-
"@storybook/addon-interactions": "^7.
|
|
52
|
-
"@storybook/addon-links": "^7.
|
|
53
|
-
"@storybook/addon-mdx-gfm": "^7.
|
|
54
|
-
"@storybook/addons": "^7.
|
|
55
|
-
"@storybook/api": "^7.
|
|
56
|
-
"@storybook/components": "^7.
|
|
57
|
-
"@storybook/core-events": "^7.
|
|
48
|
+
"@mui/material": "^5.15.10",
|
|
49
|
+
"@storybook/addon-actions": "^7.6.16",
|
|
50
|
+
"@storybook/addon-docs": "^7.6.16",
|
|
51
|
+
"@storybook/addon-essentials": "^7.6.16",
|
|
52
|
+
"@storybook/addon-interactions": "^7.6.16",
|
|
53
|
+
"@storybook/addon-links": "^7.6.16",
|
|
54
|
+
"@storybook/addon-mdx-gfm": "^7.6.16",
|
|
55
|
+
"@storybook/addons": "^7.6.16",
|
|
56
|
+
"@storybook/api": "^7.6.16",
|
|
57
|
+
"@storybook/components": "^7.6.16",
|
|
58
|
+
"@storybook/core-events": "^7.6.16",
|
|
58
59
|
"@storybook/mdx1-csf": "^1.0.0",
|
|
59
|
-
"@storybook/react": "^7.
|
|
60
|
-
"@storybook/react-webpack5": "^7.
|
|
61
|
-
"@storybook/testing-library": "^0.2.
|
|
62
|
-
"@storybook/theming": "^7.
|
|
63
|
-
"@
|
|
64
|
-
"@typescript-eslint/parser": "^6.7.2",
|
|
65
|
-
"@xylabs/eslint-config-react": "^3.0.55",
|
|
60
|
+
"@storybook/react": "^7.6.16",
|
|
61
|
+
"@storybook/react-webpack5": "^7.6.16",
|
|
62
|
+
"@storybook/testing-library": "^0.2.2",
|
|
63
|
+
"@storybook/theming": "^7.6.16",
|
|
64
|
+
"@xylabs/eslint-config-react": "^3.4.1",
|
|
66
65
|
"@xylabs/pixel": "^1.4.14",
|
|
67
|
-
"@xylabs/ts-scripts-yarn3": "^3.
|
|
68
|
-
"@xylabs/tsconfig-react": "^3.
|
|
69
|
-
"axios": "^1.
|
|
70
|
-
"eslint": "^8.
|
|
71
|
-
"eslint-import-resolver-typescript": "^3.6.
|
|
66
|
+
"@xylabs/ts-scripts-yarn3": "^3.4.1",
|
|
67
|
+
"@xylabs/tsconfig-react": "^3.4.1",
|
|
68
|
+
"axios": "^1.6.7",
|
|
69
|
+
"eslint": "^8.56.0",
|
|
70
|
+
"eslint-import-resolver-typescript": "^3.6.1",
|
|
72
71
|
"eslint-plugin-deprecation": "^2.0.0",
|
|
73
|
-
"eslint-plugin-import": "^2.
|
|
72
|
+
"eslint-plugin-import": "^2.29.1",
|
|
74
73
|
"jest": "^29.7.0",
|
|
75
74
|
"react": "^18.2.0",
|
|
76
75
|
"react-dom": "^18.2.0",
|
|
77
|
-
"remark-gfm": "^
|
|
78
|
-
"rimraf": "^
|
|
79
|
-
"storybook": "^7.
|
|
80
|
-
"storybook-dark-mode": "^3.0.
|
|
81
|
-
"typescript": "^5.
|
|
82
|
-
"webpack": "^5.
|
|
76
|
+
"remark-gfm": "^4.0.0",
|
|
77
|
+
"rimraf": "^5.0.5",
|
|
78
|
+
"storybook": "^7.6.16",
|
|
79
|
+
"storybook-dark-mode": "^3.0.3",
|
|
80
|
+
"typescript": "^5.3.3",
|
|
81
|
+
"webpack": "^5.90.3"
|
|
83
82
|
},
|
|
84
83
|
"peerDependencies": {
|
|
85
84
|
"@mui/icons-material": "^5",
|
|
@@ -89,33 +88,36 @@
|
|
|
89
88
|
"axios": "^1",
|
|
90
89
|
"react": "^18",
|
|
91
90
|
"react-dom": "^18",
|
|
92
|
-
"react-helmet": "^6"
|
|
93
|
-
"react-router-dom": "^6"
|
|
91
|
+
"react-helmet": "^6"
|
|
94
92
|
},
|
|
95
93
|
"exports": {
|
|
96
94
|
".": {
|
|
97
95
|
"node": {
|
|
98
96
|
"import": {
|
|
99
97
|
"types": "./dist/node/index.d.mts",
|
|
100
|
-
"default": "./dist/node/index.
|
|
98
|
+
"default": "./dist/node/index.js"
|
|
101
99
|
},
|
|
102
100
|
"require": {
|
|
103
|
-
"types": "./dist/node/index.d.
|
|
104
|
-
"default": "./dist/node/index.
|
|
101
|
+
"types": "./dist/node/index.d.cts",
|
|
102
|
+
"default": "./dist/node/index.cjs"
|
|
105
103
|
}
|
|
106
104
|
},
|
|
107
105
|
"browser": {
|
|
108
|
-
"
|
|
109
|
-
|
|
106
|
+
"import": {
|
|
107
|
+
"types": "./dist/browser/index.d.mts",
|
|
108
|
+
"default": "./dist/browser/index.js"
|
|
109
|
+
},
|
|
110
|
+
"require": {
|
|
111
|
+
"types": "./dist/browser/index.d.cts",
|
|
112
|
+
"default": "./dist/browser/index.cjs"
|
|
113
|
+
}
|
|
110
114
|
},
|
|
111
115
|
"default": "./dist/browser/index.js"
|
|
112
116
|
},
|
|
113
|
-
"./dist/docs.json": {
|
|
114
|
-
"default": "./dist/docs.json"
|
|
115
|
-
},
|
|
116
117
|
"./package.json": "./package.json"
|
|
117
118
|
},
|
|
118
|
-
"
|
|
119
|
+
"types": "dist/browser/index.d.ts",
|
|
120
|
+
"main": "./dist/browser/index.cjs",
|
|
119
121
|
"module": "./dist/browser/index.js",
|
|
120
122
|
"homepage": "https://xylabs.com",
|
|
121
123
|
"keywords": [
|
|
@@ -123,25 +125,28 @@
|
|
|
123
125
|
"typescript",
|
|
124
126
|
"react"
|
|
125
127
|
],
|
|
126
|
-
"license": "LGPL-3.0",
|
|
128
|
+
"license": "LGPL-3.0-only",
|
|
127
129
|
"publishConfig": {
|
|
128
130
|
"access": "public"
|
|
129
131
|
},
|
|
132
|
+
"resolutions": {
|
|
133
|
+
"typescript": "5.2.2"
|
|
134
|
+
},
|
|
130
135
|
"repository": {
|
|
131
136
|
"type": "git",
|
|
132
137
|
"url": "https://github.com/xylabs/sdk-react.git"
|
|
133
138
|
},
|
|
134
139
|
"scripts": {
|
|
135
140
|
"build-storybook": "storybook build",
|
|
136
|
-
"start": "storybook dev -p 6006"
|
|
141
|
+
"start": "storybook dev -p 6006",
|
|
142
|
+
"build-typedoc-site": "xy gen-docs @xylabs/sdk-react && storybook build -o ./docs/storybook"
|
|
137
143
|
},
|
|
138
144
|
"sideEffects": false,
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"packageManager": "yarn@3.6.1",
|
|
145
|
+
"version": "3.1.0",
|
|
146
|
+
"packageManager": "yarn@4.0.2",
|
|
142
147
|
"volta": {
|
|
143
148
|
"node": "18.17.1",
|
|
144
149
|
"yarn": "3.4.1"
|
|
145
150
|
},
|
|
146
|
-
"
|
|
151
|
+
"type": "module"
|
|
147
152
|
}
|
package/src/index.ts
CHANGED
package/typedoc.json
ADDED
package/dist/node/index.mjs
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
export * from "@xylabs/react-accordion";
|
|
2
|
-
export * from "@xylabs/react-appbar";
|
|
3
|
-
export * from "@xylabs/react-async-effect";
|
|
4
|
-
export * from "@xylabs/react-button";
|
|
5
|
-
export * from "@xylabs/react-common";
|
|
6
|
-
export * from "@xylabs/react-cookie-consent";
|
|
7
|
-
export * from "@xylabs/react-crypto";
|
|
8
|
-
export * from "@xylabs/react-dialogs";
|
|
9
|
-
export * from "@xylabs/react-experiments";
|
|
10
|
-
export * from "@xylabs/react-flexbox";
|
|
11
|
-
export * from "@xylabs/react-identicon";
|
|
12
|
-
export * from "@xylabs/react-invertible-theme";
|
|
13
|
-
export * from "@xylabs/react-link";
|
|
14
|
-
export * from "@xylabs/react-number-status";
|
|
15
|
-
export * from "@xylabs/react-pixel";
|
|
16
|
-
export * from "@xylabs/react-pixel-debugger";
|
|
17
|
-
export * from "@xylabs/react-promise";
|
|
18
|
-
export * from "@xylabs/react-quick-tip-button";
|
|
19
|
-
export * from "@xylabs/react-render-spin-check";
|
|
20
|
-
export * from "@xylabs/react-rich-result";
|
|
21
|
-
export * from "@xylabs/react-scroll-to-top";
|
|
22
|
-
export * from "@xylabs/react-shared";
|
|
23
|
-
//# sourceMappingURL=index.mjs.map
|
package/dist/node/index.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/index.ts"],"sourcesContent":["export * from '@xylabs/react-accordion'\nexport * from '@xylabs/react-appbar'\nexport * from '@xylabs/react-async-effect'\nexport * from '@xylabs/react-button'\nexport * from '@xylabs/react-common'\nexport * from '@xylabs/react-cookie-consent'\nexport * from '@xylabs/react-crypto'\nexport * from '@xylabs/react-dialogs'\nexport * from '@xylabs/react-experiments'\nexport * from '@xylabs/react-flexbox'\nexport * from '@xylabs/react-identicon'\nexport * from '@xylabs/react-invertible-theme'\nexport * from '@xylabs/react-link'\nexport * from '@xylabs/react-number-status'\nexport * from '@xylabs/react-pixel'\nexport * from '@xylabs/react-pixel-debugger'\nexport * from '@xylabs/react-promise'\nexport * from '@xylabs/react-quick-tip-button'\nexport * from '@xylabs/react-render-spin-check'\nexport * from '@xylabs/react-rich-result'\nexport * from '@xylabs/react-scroll-to-top'\nexport * from '@xylabs/react-shared'\n"],"mappings":"AAAA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;","names":[]}
|