imean-service-engine-htmx-plugin 1.2.0 → 1.2.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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -136,7 +136,7 @@ type ModuleType = "list" | "detail" | "form" | "custom";
|
|
|
136
136
|
* 通用配置放在这里,不同类型页面的差异配置通过类来实现
|
|
137
137
|
*/
|
|
138
138
|
interface HtmxAdminModuleOptions {
|
|
139
|
-
type
|
|
139
|
+
type?: ModuleType;
|
|
140
140
|
title?: string;
|
|
141
141
|
description?: string;
|
|
142
142
|
/** 是否使用管理后台布局(默认 true,设置为 false 时不使用侧边栏和头部,只使用 BaseLayout) */
|
package/dist/index.d.ts
CHANGED
|
@@ -136,7 +136,7 @@ type ModuleType = "list" | "detail" | "form" | "custom";
|
|
|
136
136
|
* 通用配置放在这里,不同类型页面的差异配置通过类来实现
|
|
137
137
|
*/
|
|
138
138
|
interface HtmxAdminModuleOptions {
|
|
139
|
-
type
|
|
139
|
+
type?: ModuleType;
|
|
140
140
|
title?: string;
|
|
141
141
|
description?: string;
|
|
142
142
|
/** 是否使用管理后台布局(默认 true,设置为 false 时不使用侧边栏和头部,只使用 BaseLayout) */
|