neko-ui 2.3.1 → 2.3.3
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/avatar/group.d.ts +1 -1
- package/lib/avatar/index.d.ts +1 -1
- package/lib/back-top/index.d.ts +1 -0
- package/lib/button/index.d.ts +1 -1
- package/lib/capture-screen/index.d.ts +1 -0
- package/lib/carousel/index.d.ts +1 -0
- package/lib/checkbox/index.d.ts +1 -0
- package/lib/code/index.d.ts +1 -0
- package/lib/color-palette/index.d.ts +1 -0
- package/lib/color-picker/index.d.ts +1 -1
- package/lib/cron/index.d.ts +1 -0
- package/lib/date-picker/index.d.ts +1 -0
- package/lib/dropdown/index.d.ts +1 -1
- package/lib/empty/index.d.ts +1 -0
- package/lib/highlight-text/index.d.ts +1 -0
- package/lib/img/index.d.ts +1 -0
- package/lib/index.d.ts +47 -5
- package/lib/index.js +1 -1
- package/lib/input/index.d.ts +1 -1
- package/lib/input-number/index.d.ts +1 -0
- package/lib/md/index.d.ts +1 -0
- package/lib/menu/index.d.ts +1 -0
- package/lib/pagination/index.d.ts +1 -1
- package/lib/popover/index.d.ts +1 -1
- package/lib/provider/index.d.ts +1 -0
- package/lib/radio/index.d.ts +1 -0
- package/lib/report.html +39 -0
- package/lib/segmented/index.d.ts +1 -0
- package/lib/select/index.d.ts +1 -1
- package/lib/skeleton/index.d.ts +1 -0
- package/lib/spin/index.d.ts +1 -0
- package/lib/switch/index.d.ts +1 -0
- package/lib/table/index.d.ts +1 -1
- package/lib/tabs/index.d.ts +1 -1
- package/lib/tag/index.d.ts +1 -0
- package/lib/tree/index.d.ts +1 -1
- package/lib/typography/index.d.ts +1 -0
- package/package.json +10 -8
package/lib/input/index.d.ts
CHANGED
package/lib/md/index.d.ts
CHANGED
package/lib/menu/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type JSXElement } from 'solid-js';
|
|
2
2
|
import { type BaseOption, type BasicConfig } from '../basic-config';
|
|
3
|
+
import type { CustomElement } from '..';
|
|
3
4
|
declare function Menu(props: MenuProps | MenuMultipleProps): import("solid-js").JSX.Element;
|
|
4
5
|
export interface BaseMenuProps {
|
|
5
6
|
/** 自定义类名 */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type JSXElement } from 'solid-js';
|
|
2
|
-
import type { BasicConfig } from '..';
|
|
2
|
+
import type { BasicConfig, CustomElement } from '..';
|
|
3
3
|
declare function Pagination(_: PaginationProps): import("solid-js").JSX.Element;
|
|
4
4
|
/** API */
|
|
5
5
|
export interface PaginationProps {
|
package/lib/popover/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type JSX, type JSXElement } from 'solid-js';
|
|
2
|
-
import type { BasicConfig } from '..';
|
|
2
|
+
import type { BasicConfig, CustomElement } from '..';
|
|
3
3
|
export interface PopoverProps extends Omit<JSX.HTMLAttributes<HTMLDivElement>, 'onChange'> {
|
|
4
4
|
/** 自定义类名 */
|
|
5
5
|
class?: string;
|
package/lib/provider/index.d.ts
CHANGED