@doubao-dev/framework 0.0.42 → 0.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/components-style.css +1 -1
- package/dist/api.d.ts +738 -319
- package/dist/components.d.ts +54 -16
- package/dist/config.d.ts +12 -1
- package/dist/index.d.ts +458 -2
- package/jsx-runtime.d.ts +1 -0
- package/package.json +3 -2
- package/types.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@doubao-dev/framework",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
"scripts": {
|
|
79
79
|
"sync:declarations": "node scripts/sync-declarations.cjs",
|
|
80
80
|
"dev": "tsc -p tsconfig.json -w",
|
|
81
|
-
"build": "npm run sync:declarations && rimraf dist && rslib build && tsc"
|
|
81
|
+
"build": "npm run sync:declarations && rimraf dist && rslib build && tsc && npm run sanitize:api-docs",
|
|
82
|
+
"sanitize:api-docs": "node scripts/sanitize-api-declarations.cjs"
|
|
82
83
|
}
|
|
83
84
|
}
|
package/types.d.ts
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
// Generated file. Do not edit this file directly.
|
|
2
2
|
// CSS modules
|
|
3
|
+
/** App version tag resolved by the build and used for deployment. */
|
|
4
|
+
declare const __VERSION_TAG__: string | undefined;
|
|
5
|
+
|
|
3
6
|
type CSSModuleClasses = { readonly [key: string]: string };
|
|
4
7
|
|
|
5
8
|
declare module '*.module.css' {
|