neko-ui 2.3.4 → 2.3.5
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/lib/cron/index.d.ts +4 -0
- package/lib/index.js +1 -1
- package/lib/provider/index.d.ts +2 -0
- package/lib/report.html +2 -2
- package/package.json +1 -1
package/lib/cron/index.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { type JSX } from 'solid-js';
|
|
2
2
|
import type { CustomElement } from '..';
|
|
3
3
|
export interface CronProps extends Omit<JSX.HTMLAttributes<HTMLDivElement>, 'onChange'> {
|
|
4
|
+
/** 自定义类名 */
|
|
5
|
+
class?: string;
|
|
6
|
+
/** 自定义样式表 */
|
|
7
|
+
css?: string;
|
|
4
8
|
/** 隐藏域 */
|
|
5
9
|
exclude?: string[];
|
|
6
10
|
/** 显示表达式
|