@rsmax/toutiao 1.3.13 → 1.3.15-canary.19
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/CHANGELOG.md +4 -0
- package/cjs/index.d.ts +2 -3
- package/cjs/index.js +14 -5
- package/esm/index.d.ts +2 -3
- package/esm/index.js +2 -3
- package/package.json +26 -8
- package/rstest.config.js +6 -0
- package/cjs/api/index.d.ts +0 -3281
- package/cjs/api/index.js +0 -350
- package/esm/api/index.d.ts +0 -3281
- package/esm/api/index.js +0 -343
- package/vitest.config.js +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.3.14](https://github.com/remaxjs/remax/compare/v1.3.13...v1.3.14) (2025-09-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rsmax/toutiao
|
|
9
|
+
|
|
6
10
|
## [1.3.13](https://github.com/remaxjs/remax/compare/v1.3.12...v1.3.13) (2025-06-16)
|
|
7
11
|
|
|
8
12
|
### Bug Fixes
|
package/cjs/index.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export * from './hostComponents';
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './types';
|
|
1
|
+
export * as component from './hostComponents';
|
|
2
|
+
export * as type from './types';
|
package/cjs/index.js
CHANGED
|
@@ -10,10 +10,19 @@ var __createBinding = (this && this.__createBinding) || (Object.create ? (functi
|
|
|
10
10
|
if (k2 === undefined) k2 = k;
|
|
11
11
|
o[k2] = m[k];
|
|
12
12
|
}));
|
|
13
|
-
var
|
|
14
|
-
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
15
24
|
};
|
|
16
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
26
|
+
exports.type = exports.component = void 0;
|
|
27
|
+
exports.component = __importStar(require("./hostComponents"));
|
|
28
|
+
exports.type = __importStar(require("./types"));
|
package/esm/index.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export * from './hostComponents';
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './types';
|
|
1
|
+
export * as component from './hostComponents';
|
|
2
|
+
export * as type from './types';
|
package/esm/index.js
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export * from './hostComponents';
|
|
2
|
-
export * from './
|
|
3
|
-
export * from './types';
|
|
1
|
+
export * as component from './hostComponents';
|
|
2
|
+
export * as type from './types';
|
package/package.json
CHANGED
|
@@ -1,29 +1,46 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsmax/toutiao",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.15-canary.19+89bcd6a",
|
|
4
4
|
"description": "Rsmax for Toutiao",
|
|
5
5
|
"repository": "git+https://github.com/remaxjs/remax.git",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "./cjs/index.js",
|
|
8
8
|
"module": "./esm/index.js",
|
|
9
9
|
"typings": "./esm/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
"./types": {
|
|
12
|
+
"types": "./esm/types/index.d.ts",
|
|
13
|
+
"import": "./esm/types/index.js",
|
|
14
|
+
"require": "./cjs/types/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./component": {
|
|
17
|
+
"types": "./esm/hostComponents/index.d.ts",
|
|
18
|
+
"import": "./esm/hostComponents/index.js",
|
|
19
|
+
"require": "./cjs/hostComponents/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./node": {
|
|
22
|
+
"types": "./esm/node/index.d.ts",
|
|
23
|
+
"import": "./esm/node/index.js",
|
|
24
|
+
"require": "./cjs/node/index.js"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
10
27
|
"scripts": {
|
|
11
28
|
"prebuild": "npm run clean",
|
|
12
29
|
"build": "tsc",
|
|
13
30
|
"build:cjs": "tsc --module CommonJS --outDir cjs",
|
|
14
31
|
"clean": "rimraf cjs esm tsconfig.tsbuildinfo",
|
|
15
|
-
"test": "
|
|
32
|
+
"test": "rstest run"
|
|
16
33
|
},
|
|
17
34
|
"dependencies": {
|
|
18
|
-
"@rsmax/shared": "1.3.
|
|
35
|
+
"@rsmax/shared": "1.3.15-canary.19+89bcd6a",
|
|
19
36
|
"lodash": "^4.17.21"
|
|
20
37
|
},
|
|
21
38
|
"devDependencies": {
|
|
22
39
|
"@douyin-microapp/typings": "^1.3.1",
|
|
23
|
-
"@rsmax/framework-shared": "1.3.
|
|
24
|
-
"@rsmax/runtime": "1.3.
|
|
25
|
-
"@rsmax/types": "1.3.
|
|
26
|
-
"@rsmax/wechat": "1.3.
|
|
40
|
+
"@rsmax/framework-shared": "1.3.15-canary.19+89bcd6a",
|
|
41
|
+
"@rsmax/runtime": "1.3.15-canary.19+89bcd6a",
|
|
42
|
+
"@rsmax/types": "1.3.15-canary.19+89bcd6a",
|
|
43
|
+
"@rsmax/wechat": "1.3.15-canary.19+89bcd6a",
|
|
27
44
|
"@types/react": "^18.3.0",
|
|
28
45
|
"@types/react-test-renderer": "^18.3.0",
|
|
29
46
|
"react": "^18.3.0",
|
|
@@ -32,6 +49,7 @@
|
|
|
32
49
|
"publishConfig": {
|
|
33
50
|
"access": "public"
|
|
34
51
|
},
|
|
52
|
+
"sideEffects": false,
|
|
35
53
|
"esnext": "./esm/index.js",
|
|
36
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "89bcd6a55f580707f23f434c59d0f283a44d2597"
|
|
37
55
|
}
|