@zenkigen-inc/component-ui 1.10.1 → 1.11.0
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/avatar/avatar.d.ts +0 -1
- package/dist/breadcrumb/breadcrumb.d.ts +1 -3
- package/dist/checkbox/checked-icon.d.ts +0 -1
- package/dist/checkbox/minus-icon.d.ts +0 -1
- package/dist/evaluation-star/evaluation-star.d.ts +0 -1
- package/dist/icon/icon.d.ts +0 -1
- package/dist/icon-button/icon-button.d.ts +0 -1
- package/dist/index.esm.js +11 -30922
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +12 -30927
- package/dist/index.js.map +1 -1
- package/dist/loading/loading.d.ts +0 -1
- package/dist/modal/modal-context.d.ts +0 -1
- package/dist/pagination/pagination-button.d.ts +0 -1
- package/dist/pagination/pagination-context.d.ts +0 -1
- package/dist/pagination/pagination.d.ts +0 -1
- package/dist/pagination-select/pagination-select.d.ts +0 -1
- package/dist/select/select-context.d.ts +0 -1
- package/dist/select/select-item.d.ts +0 -1
- package/dist/select-sort/select-list.d.ts +0 -1
- package/dist/tab/tab.d.ts +2 -2
- package/dist/tag/delete-icon.d.ts +0 -1
- package/dist/tag/tag.d.ts +0 -1
- package/dist/text-area/text-area.d.ts +4 -4
- package/dist/text-input/text-input.d.ts +3 -3
- package/dist/tooltip/tail-icon.d.ts +0 -1
- package/dist/tooltip/tooltip-content.d.ts +1 -1
- package/dist/tooltip/tooltip.hook.d.ts +1 -1
- package/package.json +8 -7
package/dist/tab/tab.d.ts
CHANGED
|
@@ -6,8 +6,8 @@ export declare function Tab({ children }: Props): import("react").JSX.Element;
|
|
|
6
6
|
export declare namespace Tab {
|
|
7
7
|
var Item: ({ isSelected, ...props }: {
|
|
8
8
|
id: string;
|
|
9
|
-
isSelected?: boolean
|
|
10
|
-
isDisabled?: boolean
|
|
9
|
+
isSelected?: boolean;
|
|
10
|
+
isDisabled?: boolean;
|
|
11
11
|
children?: ReactNode;
|
|
12
12
|
onClick: (id: string) => void;
|
|
13
13
|
}) => import("react").JSX.Element;
|
package/dist/tag/tag.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { CSSProperties, TextareaHTMLAttributes } from 'react';
|
|
2
2
|
export declare const TextArea: import("react").ForwardRefExoticComponent<TextareaHTMLAttributes<HTMLTextAreaElement> & {
|
|
3
|
-
size?: "medium" | "large"
|
|
3
|
+
size?: "medium" | "large";
|
|
4
4
|
value: string;
|
|
5
|
-
height?: CSSProperties[
|
|
6
|
-
isResizable?: boolean
|
|
7
|
-
isError?: boolean
|
|
5
|
+
height?: CSSProperties["height"];
|
|
6
|
+
isResizable?: boolean;
|
|
7
|
+
isError?: boolean;
|
|
8
8
|
} & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { InputHTMLAttributes } from 'react';
|
|
2
2
|
export declare const TextInput: import("react").ForwardRefExoticComponent<Omit<InputHTMLAttributes<HTMLInputElement>, "size"> & {
|
|
3
|
-
size?: "medium" | "large"
|
|
3
|
+
size?: "medium" | "large";
|
|
4
4
|
value: string;
|
|
5
|
-
isError?: boolean
|
|
6
|
-
onClickClearButton?: (
|
|
5
|
+
isError?: boolean;
|
|
6
|
+
onClickClearButton?: () => void;
|
|
7
7
|
} & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -3,7 +3,7 @@ import type { TooltipHorizontalAlign, TooltipPosition, TooltipSize, TooltipVerti
|
|
|
3
3
|
export declare const TooltipContent: ({ content, horizontalAlign, verticalPosition, size, tooltipPosition, maxWidth, isPortal, }: {
|
|
4
4
|
content: ReactNode;
|
|
5
5
|
size: TooltipSize;
|
|
6
|
-
maxWidth: CSSProperties[
|
|
6
|
+
maxWidth: CSSProperties["maxWidth"];
|
|
7
7
|
verticalPosition: TooltipVerticalPosition;
|
|
8
8
|
horizontalAlign: TooltipHorizontalAlign;
|
|
9
9
|
tooltipPosition: TooltipPosition;
|
|
@@ -3,7 +3,7 @@ import type { TooltipHorizontalAlign, TooltipPosition, TooltipSize, TooltipVerti
|
|
|
3
3
|
export declare const useTooltip: () => {
|
|
4
4
|
calculatePosition: (args: {
|
|
5
5
|
dimensions: DOMRect;
|
|
6
|
-
maxWidth?: CSSProperties[
|
|
6
|
+
maxWidth?: CSSProperties["width"];
|
|
7
7
|
verticalPosition: TooltipVerticalPosition;
|
|
8
8
|
horizontalAlign: TooltipHorizontalAlign;
|
|
9
9
|
tooltipSize: TooltipSize;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenkigen-inc/component-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"repository": "https://github.com/zenkigen/zenkigen-component",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -14,20 +14,21 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"type-check": "tsc --noEmit",
|
|
16
16
|
"generate-component": "hygen generator components",
|
|
17
|
-
"build": "rimraf dist && microbundle --no-compress -f modern,esm,cjs --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react --globals react/jsx-runtime=jsx --tsconfig tsconfig.build.json"
|
|
17
|
+
"build": "rimraf dist && microbundle --no-compress -f modern,esm,cjs --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react --globals react/jsx-runtime=jsx --tsconfig tsconfig.build.json --external none",
|
|
18
|
+
"build-lib": "rimraf dist && microbundle --no-compress -f modern,esm,cjs --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react --globals react/jsx-runtime=jsx --tsconfig tsconfig.build.json"
|
|
18
19
|
},
|
|
19
20
|
"devDependencies": {
|
|
20
21
|
"hygen": "6.2.11",
|
|
21
22
|
"microbundle": "0.15.1",
|
|
22
|
-
"typescript": "5.4
|
|
23
|
+
"typescript": "5.5.4"
|
|
23
24
|
},
|
|
24
25
|
"peerDependencies": {
|
|
25
|
-
"
|
|
26
|
-
"react": "^18.0.0"
|
|
26
|
+
"react": "^18.0.0",
|
|
27
|
+
"react-dom": "^18.0.0"
|
|
27
28
|
},
|
|
28
29
|
"dependencies": {
|
|
29
|
-
"@zenkigen-inc/component-icons": "1.
|
|
30
|
-
"@zenkigen-inc/component-theme": "1.
|
|
30
|
+
"@zenkigen-inc/component-icons": "1.11.0",
|
|
31
|
+
"@zenkigen-inc/component-theme": "1.11.0",
|
|
31
32
|
"clsx": "2.1.1"
|
|
32
33
|
}
|
|
33
34
|
}
|