@yamada-ui/resizable 1.2.0 → 1.2.1-dev-20241120143220
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
|
|
1
|
-
import { HTMLUIPropsWithoutAs,
|
1
|
+
import { HTMLUIPropsWithoutAs, ComponentArgs, FC, HTMLUIProps } from '@yamada-ui/core';
|
2
2
|
import { IconProps } from '@yamada-ui/icon';
|
3
3
|
import { Merge } from '@yamada-ui/utils';
|
4
4
|
import { RefAttributes, ReactElement } from 'react';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { HTMLUIPropsWithoutAs,
|
1
|
+
import { HTMLUIPropsWithoutAs, ComponentArgs, FC, HTMLUIProps } from '@yamada-ui/core';
|
2
2
|
import { IconProps } from '@yamada-ui/icon';
|
3
3
|
import { Merge } from '@yamada-ui/utils';
|
4
4
|
import { RefAttributes, ReactElement } from 'react';
|
package/dist/use-resizable.d.mts
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
import * as react from 'react';
|
2
2
|
import { ForwardedRef, RefObject, MouseEventHandler } from 'react';
|
3
|
-
import { HTMLUIProps, HTMLUIPropsWithoutAs, CSSUIObject
|
3
|
+
import { PropGetter, HTMLUIProps, HTMLUIPropsWithoutAs, CSSUIObject } from '@yamada-ui/core';
|
4
4
|
import { Merge } from '@yamada-ui/utils';
|
5
|
-
import {
|
5
|
+
import { PanelGroupStorage, ImperativePanelGroupHandle, ImperativePanelHandle, PanelGroupOnLayout, PanelGroupProps, PanelProps, PanelResizeHandleProps } from 'react-resizable-panels';
|
6
6
|
|
7
7
|
type ResizableDirection = "horizontal" | "vertical";
|
8
8
|
type As = keyof HTMLElementTagNameMap;
|
package/dist/use-resizable.d.ts
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
import * as react from 'react';
|
2
2
|
import { ForwardedRef, RefObject, MouseEventHandler } from 'react';
|
3
|
-
import { HTMLUIProps, HTMLUIPropsWithoutAs, CSSUIObject
|
3
|
+
import { PropGetter, HTMLUIProps, HTMLUIPropsWithoutAs, CSSUIObject } from '@yamada-ui/core';
|
4
4
|
import { Merge } from '@yamada-ui/utils';
|
5
|
-
import {
|
5
|
+
import { PanelGroupStorage, ImperativePanelGroupHandle, ImperativePanelHandle, PanelGroupOnLayout, PanelGroupProps, PanelProps, PanelResizeHandleProps } from 'react-resizable-panels';
|
6
6
|
|
7
7
|
type ResizableDirection = "horizontal" | "vertical";
|
8
8
|
type As = keyof HTMLElementTagNameMap;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@yamada-ui/resizable",
|
3
|
-
"version": "1.2.
|
3
|
+
"version": "1.2.1-dev-20241120143220",
|
4
4
|
"description": "Yamada UI resizable component",
|
5
5
|
"keywords": [
|
6
6
|
"yamada",
|
@@ -36,7 +36,7 @@
|
|
36
36
|
"url": "https://github.com/yamada-ui/yamada-ui/issues"
|
37
37
|
},
|
38
38
|
"dependencies": {
|
39
|
-
"react-resizable-panels": "^2.1.
|
39
|
+
"react-resizable-panels": "^2.1.7",
|
40
40
|
"@yamada-ui/core": "1.15.5",
|
41
41
|
"@yamada-ui/icon": "1.1.13",
|
42
42
|
"@yamada-ui/utils": "1.5.4"
|