@xsolla/xui-feedback 0.64.0-pr56.1768440195

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,4 @@
1
+ export * from '@xsolla/xui-notification';
2
+ export * from '@xsolla/xui-spinner';
3
+ export * from '@xsolla/xui-toggletip';
4
+ export * from '@xsolla/xui-tooltip';
@@ -0,0 +1,4 @@
1
+ export * from '@xsolla/xui-notification';
2
+ export * from '@xsolla/xui-spinner';
3
+ export * from '@xsolla/xui-toggletip';
4
+ export * from '@xsolla/xui-tooltip';
@@ -0,0 +1,30 @@
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.tsx
18
+ var index_exports = {};
19
+ module.exports = __toCommonJS(index_exports);
20
+ __reExport(index_exports, require("@xsolla/xui-notification"), module.exports);
21
+ __reExport(index_exports, require("@xsolla/xui-spinner"), module.exports);
22
+ __reExport(index_exports, require("@xsolla/xui-toggletip"), module.exports);
23
+ __reExport(index_exports, require("@xsolla/xui-tooltip"), module.exports);
24
+ // Annotate the CommonJS export names for ESM import in node:
25
+ 0 && (module.exports = {
26
+ ...require("@xsolla/xui-notification"),
27
+ ...require("@xsolla/xui-spinner"),
28
+ ...require("@xsolla/xui-toggletip"),
29
+ ...require("@xsolla/xui-tooltip")
30
+ });
@@ -0,0 +1,5 @@
1
+ // src/index.tsx
2
+ export * from "@xsolla/xui-notification";
3
+ export * from "@xsolla/xui-spinner";
4
+ export * from "@xsolla/xui-toggletip";
5
+ export * from "@xsolla/xui-tooltip";
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@xsolla/xui-feedback",
3
+ "version": "0.64.0-pr56.1768440195",
4
+ "main": "./web/index.js",
5
+ "types": "./web/index.d.ts",
6
+ "scripts": {
7
+ "build:web": "PLATFORM=web tsup src/index.tsx --dts --format esm,cjs --env.PLATFORM web --clean --outDir dist/web",
8
+ "build:native": "PLATFORM=native tsup src/index.tsx --dts --format esm,cjs --env.PLATFORM native --clean --outDir dist/native"
9
+ },
10
+ "dependencies": {
11
+ "@xsolla/xui-notification": "0.64.0-pr56.1768440195",
12
+ "@xsolla/xui-spinner": "0.64.0-pr56.1768440195",
13
+ "@xsolla/xui-toggletip": "0.64.0-pr56.1768440195",
14
+ "@xsolla/xui-tooltip": "0.64.0-pr56.1768440195"
15
+ },
16
+ "devDependencies": {
17
+ "esbuild-plugin-alias": "^0.2.1",
18
+ "tsup": "^8.0.0"
19
+ },
20
+ "license": "MIT",
21
+ "module": "./web/index.mjs",
22
+ "react-native": "./native/index.js",
23
+ "exports": {
24
+ ".": {
25
+ "react-native": {
26
+ "types": "./native/index.d.ts",
27
+ "import": "./native/index.mjs",
28
+ "require": "./native/index.js"
29
+ },
30
+ "import": {
31
+ "types": "./web/index.d.ts",
32
+ "default": "./web/index.mjs"
33
+ },
34
+ "require": {
35
+ "types": "./web/index.d.ts",
36
+ "default": "./web/index.js"
37
+ },
38
+ "default": {
39
+ "types": "./web/index.d.ts",
40
+ "default": "./web/index.js"
41
+ }
42
+ }
43
+ }
44
+ }
@@ -0,0 +1,4 @@
1
+ export * from '@xsolla/xui-notification';
2
+ export * from '@xsolla/xui-spinner';
3
+ export * from '@xsolla/xui-toggletip';
4
+ export * from '@xsolla/xui-tooltip';
package/web/index.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ export * from '@xsolla/xui-notification';
2
+ export * from '@xsolla/xui-spinner';
3
+ export * from '@xsolla/xui-toggletip';
4
+ export * from '@xsolla/xui-tooltip';
package/web/index.js ADDED
@@ -0,0 +1,30 @@
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.tsx
18
+ var index_exports = {};
19
+ module.exports = __toCommonJS(index_exports);
20
+ __reExport(index_exports, require("@xsolla/xui-notification"), module.exports);
21
+ __reExport(index_exports, require("@xsolla/xui-spinner"), module.exports);
22
+ __reExport(index_exports, require("@xsolla/xui-toggletip"), module.exports);
23
+ __reExport(index_exports, require("@xsolla/xui-tooltip"), module.exports);
24
+ // Annotate the CommonJS export names for ESM import in node:
25
+ 0 && (module.exports = {
26
+ ...require("@xsolla/xui-notification"),
27
+ ...require("@xsolla/xui-spinner"),
28
+ ...require("@xsolla/xui-toggletip"),
29
+ ...require("@xsolla/xui-tooltip")
30
+ });
package/web/index.mjs ADDED
@@ -0,0 +1,5 @@
1
+ // src/index.tsx
2
+ export * from "@xsolla/xui-notification";
3
+ export * from "@xsolla/xui-spinner";
4
+ export * from "@xsolla/xui-toggletip";
5
+ export * from "@xsolla/xui-tooltip";