knight-ui 1.0.0 → 1.0.2
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 +1 -1
- package/component/basic/Button.d.ts +1 -1
- package/component/input/AutoComplete.d.ts +1 -1
- package/component/input/Input.d.ts +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +6 -3
- package/test/index.d.ts +1 -1
- package/tokens/tokens.css +497 -0
- /package/component/{_internal → internal}/BodyScrollLock.d.ts +0 -0
- /package/component/{_internal → internal}/ClickOutside.d.ts +0 -0
- /package/component/{_internal → internal}/Mask.d.ts +0 -0
- /package/component/{_internal → internal}/OverlayZIndex.d.ts +0 -0
- /package/component/{_internal → internal}/Portal.d.ts +0 -0
- /package/component/{_internal → internal}/index.d.ts +0 -0
- /package/component/{_tokens → tokens}/index.d.ts +0 -0
- /package/component/{_types → types}/base.d.ts +0 -0
- /package/component/{_types → types}/index.d.ts +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { AbstractUI, type UIProps, type UIState } from "../../base";
|
|
3
|
-
import type { ComponentSize, ButtonVariant, ButtonTheme } from "../
|
|
3
|
+
import type { ComponentSize, ButtonVariant, ButtonTheme } from "../types";
|
|
4
4
|
declare class ButtonGroup extends AbstractUI<ButtonGroupProps, UIState> {
|
|
5
5
|
static displayName: string;
|
|
6
6
|
protected OnRenderContent(): React.ReactElement;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { AbstractUI, type UIProps, type UIState } from "../../base";
|
|
3
|
-
import type { ValidateStatus } from "../
|
|
3
|
+
import type { ValidateStatus } from "../types";
|
|
4
4
|
export interface AutoCompleteOption {
|
|
5
5
|
value: string;
|
|
6
6
|
label?: React.ReactNode;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { AbstractUI, type UIProps, type UIState } from "../../base";
|
|
3
|
-
import type { ValidateStatus } from "../
|
|
3
|
+
import type { ValidateStatus } from "../types";
|
|
4
4
|
declare class TextArea extends AbstractUI<TextAreaProps, TextAreaState> {
|
|
5
5
|
static displayName: string;
|
|
6
6
|
private textareaRef;
|