@yaoxiu/marketing-dsl 2.2.1 → 2.4.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 +15 -0
- package/dist/{chunk-DTHKC5AL.js → chunk-DT3ZINDI.js} +381 -45
- package/dist/docs/index.cjs +1562 -91
- package/dist/docs/index.d.cts +4 -3
- package/dist/docs/index.d.ts +4 -3
- package/dist/docs/index.js +1530 -95
- package/dist/index.cjs +542 -85
- package/dist/index.d.cts +119 -3
- package/dist/index.d.ts +119 -3
- package/dist/index.js +154 -44
- package/dist/report/index.d.cts +1 -1
- package/dist/report/index.d.ts +1 -1
- package/dist/{types-Bj0xyWnx.d.cts → types-8FNxDXp0.d.cts} +116 -2
- package/dist/{types-Bj0xyWnx.d.ts → types-8FNxDXp0.d.ts} +116 -2
- package/package.json +1 -1
package/dist/docs/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as Dsl } from '../types-
|
|
1
|
+
import { D as Dsl } from '../types-8FNxDXp0.cjs';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* 开发文档的数据结构。
|
|
@@ -86,7 +86,7 @@ interface DocMeta {
|
|
|
86
86
|
* 序号是写在 `title` 里的(正文有大量「见第 N 节」的交叉引用)。
|
|
87
87
|
*/
|
|
88
88
|
|
|
89
|
-
/** 完整文档章节列表(0~
|
|
89
|
+
/** 完整文档章节列表(0~15 节) */
|
|
90
90
|
declare const sections: DocSection[];
|
|
91
91
|
|
|
92
92
|
declare const meta: DocMeta;
|
|
@@ -95,7 +95,8 @@ declare const meta: DocMeta;
|
|
|
95
95
|
* 调试用示例 DSL。
|
|
96
96
|
*
|
|
97
97
|
* ①② 是最小骨架,③④ 是运营 demo 真实弹窗的完整复刻,⑤⑥ 是多视图,⑦ 是换肤换布局,
|
|
98
|
-
* ⑧ 是通栏 banner(宽度由页面决定、只能声明比例),⑨⑩
|
|
98
|
+
* ⑧ 是通栏 banner(宽度由页面决定、只能声明比例),⑨⑩ 是商品编辑抽屉里两个**固定尺寸**坑位,
|
|
99
|
+
* ⑪⑫ 是搬家成功页两个线上弹窗的一比一复刻(动画、hover、相对时长倒计时的完整用法)。
|
|
99
100
|
* 后端数据源($source)用法见 ③。
|
|
100
101
|
*/
|
|
101
102
|
|
package/dist/docs/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as Dsl } from '../types-
|
|
1
|
+
import { D as Dsl } from '../types-8FNxDXp0.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* 开发文档的数据结构。
|
|
@@ -86,7 +86,7 @@ interface DocMeta {
|
|
|
86
86
|
* 序号是写在 `title` 里的(正文有大量「见第 N 节」的交叉引用)。
|
|
87
87
|
*/
|
|
88
88
|
|
|
89
|
-
/** 完整文档章节列表(0~
|
|
89
|
+
/** 完整文档章节列表(0~15 节) */
|
|
90
90
|
declare const sections: DocSection[];
|
|
91
91
|
|
|
92
92
|
declare const meta: DocMeta;
|
|
@@ -95,7 +95,8 @@ declare const meta: DocMeta;
|
|
|
95
95
|
* 调试用示例 DSL。
|
|
96
96
|
*
|
|
97
97
|
* ①② 是最小骨架,③④ 是运营 demo 真实弹窗的完整复刻,⑤⑥ 是多视图,⑦ 是换肤换布局,
|
|
98
|
-
* ⑧ 是通栏 banner(宽度由页面决定、只能声明比例),⑨⑩
|
|
98
|
+
* ⑧ 是通栏 banner(宽度由页面决定、只能声明比例),⑨⑩ 是商品编辑抽屉里两个**固定尺寸**坑位,
|
|
99
|
+
* ⑪⑫ 是搬家成功页两个线上弹窗的一比一复刻(动画、hover、相对时长倒计时的完整用法)。
|
|
99
100
|
* 后端数据源($source)用法见 ③。
|
|
100
101
|
*/
|
|
101
102
|
|