@lingxiteam/assets 4.1.1-alpha.1 → 4.2.1-alpha.1
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/es/rootConfig/index.d.ts +3 -1
- package/es/rootConfig/index.js +2 -1
- package/es/rootConfig/todoActionList.js +654 -53
- package/es/rootConfig/todoCallback.d.ts +83 -0
- package/es/rootConfig/todoCallback.js +412 -0
- package/lib/rootConfig/index.d.ts +3 -1
- package/lib/rootConfig/index.js +3 -1
- package/lib/rootConfig/todoActionList.js +654 -53
- package/lib/rootConfig/todoCallback.d.ts +83 -0
- package/lib/rootConfig/todoCallback.js +424 -0
- package/package.json +1 -1
package/es/rootConfig/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as mobileRootConfig from './mobile';
|
|
2
2
|
import * as pcRootConfig from './pc';
|
|
3
|
+
import * as todoCallback from './todoCallback';
|
|
3
4
|
export { getTodoActionListByKey } from './todoActionList';
|
|
4
5
|
export { default as todoOptionList } from './todoOptionList';
|
|
5
|
-
export {
|
|
6
|
+
export type { KV } from './todoCallback';
|
|
7
|
+
export { mobileRootConfig, pcRootConfig, todoCallback, };
|
package/es/rootConfig/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as mobileRootConfig from './mobile';
|
|
2
2
|
import * as pcRootConfig from './pc';
|
|
3
|
+
import * as todoCallback from './todoCallback';
|
|
3
4
|
export { getTodoActionListByKey } from './todoActionList';
|
|
4
5
|
export { default as todoOptionList } from './todoOptionList';
|
|
5
|
-
export { mobileRootConfig, pcRootConfig };
|
|
6
|
+
export { mobileRootConfig, pcRootConfig, todoCallback };
|