@hxdhxd/harmony-flow-ui 0.1.0 → 0.1.2
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 +33 -5
- package/dist/index.cjs +322 -294
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +347 -183
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +321 -293
- package/dist/index.js.map +1 -1
- package/package.json +15 -1
package/dist/index.d.cts
CHANGED
|
@@ -9,8 +9,16 @@ interface ThemeTokens {
|
|
|
9
9
|
colorText: string;
|
|
10
10
|
colorTextMuted: string;
|
|
11
11
|
colorBorder: string;
|
|
12
|
+
radiusControl?: string;
|
|
13
|
+
radiusPanel?: string;
|
|
14
|
+
radiusOverlay?: string;
|
|
15
|
+
shadowPopover?: string;
|
|
16
|
+
shadowModal?: string;
|
|
17
|
+
/** @deprecated COMPAT: 兼容现有消费者;项目内引用清零并进入下一主版本后移除。请改用 radiusControl 或 radiusPanel。 */
|
|
12
18
|
radiusMd: string;
|
|
19
|
+
/** @deprecated COMPAT: 兼容现有消费者;项目内引用清零并进入下一主版本后移除。请改用 radiusPanel 或 radiusOverlay。 */
|
|
13
20
|
radiusLg: string;
|
|
21
|
+
/** @deprecated COMPAT: 兼容现有消费者;项目内引用清零并进入下一主版本后移除。请改用 shadowPopover 或 shadowModal。 */
|
|
14
22
|
shadowElevated: string;
|
|
15
23
|
motionDuration: string;
|
|
16
24
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -9,8 +9,16 @@ interface ThemeTokens {
|
|
|
9
9
|
colorText: string;
|
|
10
10
|
colorTextMuted: string;
|
|
11
11
|
colorBorder: string;
|
|
12
|
+
radiusControl?: string;
|
|
13
|
+
radiusPanel?: string;
|
|
14
|
+
radiusOverlay?: string;
|
|
15
|
+
shadowPopover?: string;
|
|
16
|
+
shadowModal?: string;
|
|
17
|
+
/** @deprecated COMPAT: 兼容现有消费者;项目内引用清零并进入下一主版本后移除。请改用 radiusControl 或 radiusPanel。 */
|
|
12
18
|
radiusMd: string;
|
|
19
|
+
/** @deprecated COMPAT: 兼容现有消费者;项目内引用清零并进入下一主版本后移除。请改用 radiusPanel 或 radiusOverlay。 */
|
|
13
20
|
radiusLg: string;
|
|
21
|
+
/** @deprecated COMPAT: 兼容现有消费者;项目内引用清零并进入下一主版本后移除。请改用 shadowPopover 或 shadowModal。 */
|
|
14
22
|
shadowElevated: string;
|
|
15
23
|
motionDuration: string;
|
|
16
24
|
}
|