@particle-network/ui-react 0.1.3-beta.2 → 0.1.3-beta.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/dist/components/UXButton/button-theme.d.ts +6 -0
- package/dist/components/UXButton/button-theme.js +22 -0
- package/dist/components/UXButton/use-button.d.ts +1 -1
- package/dist/components/UXChip/index.d.ts +1 -1
- package/dist/components/UXInput/index.d.ts +19 -19
- package/dist/components/UXInput/input.extend.d.ts +8 -8
- package/dist/components/UXSwitch/index.d.ts +8 -8
- package/package.json +22 -4
|
@@ -27,6 +27,7 @@ declare const button: import("tailwind-variants").TVReturnType<{
|
|
|
27
27
|
text: string;
|
|
28
28
|
};
|
|
29
29
|
size: {
|
|
30
|
+
xs: string;
|
|
30
31
|
sm: string;
|
|
31
32
|
md: string;
|
|
32
33
|
lg: string;
|
|
@@ -54,6 +55,7 @@ declare const button: import("tailwind-variants").TVReturnType<{
|
|
|
54
55
|
};
|
|
55
56
|
radius: {
|
|
56
57
|
none: string;
|
|
58
|
+
xs: string;
|
|
57
59
|
sm: string;
|
|
58
60
|
md: string;
|
|
59
61
|
lg: string;
|
|
@@ -91,6 +93,7 @@ declare const button: import("tailwind-variants").TVReturnType<{
|
|
|
91
93
|
text: string;
|
|
92
94
|
};
|
|
93
95
|
size: {
|
|
96
|
+
xs: string;
|
|
94
97
|
sm: string;
|
|
95
98
|
md: string;
|
|
96
99
|
lg: string;
|
|
@@ -118,6 +121,7 @@ declare const button: import("tailwind-variants").TVReturnType<{
|
|
|
118
121
|
};
|
|
119
122
|
radius: {
|
|
120
123
|
none: string;
|
|
124
|
+
xs: string;
|
|
121
125
|
sm: string;
|
|
122
126
|
md: string;
|
|
123
127
|
lg: string;
|
|
@@ -155,6 +159,7 @@ declare const button: import("tailwind-variants").TVReturnType<{
|
|
|
155
159
|
text: string;
|
|
156
160
|
};
|
|
157
161
|
size: {
|
|
162
|
+
xs: string;
|
|
158
163
|
sm: string;
|
|
159
164
|
md: string;
|
|
160
165
|
lg: string;
|
|
@@ -182,6 +187,7 @@ declare const button: import("tailwind-variants").TVReturnType<{
|
|
|
182
187
|
};
|
|
183
188
|
radius: {
|
|
184
189
|
none: string;
|
|
190
|
+
xs: string;
|
|
185
191
|
sm: string;
|
|
186
192
|
md: string;
|
|
187
193
|
lg: string;
|
|
@@ -33,6 +33,7 @@ const button_theme_button = tv({
|
|
|
33
33
|
text: 'bg-transparent min-w-0 w-auto h-auto px-0'
|
|
34
34
|
},
|
|
35
35
|
size: {
|
|
36
|
+
xs: 'gap-2 rounded-small !text-body3 min-w-min font-medium [&_[aria-label="Loading"]>div]:size-3',
|
|
36
37
|
sm: 'gap-2 rounded-small !text-body3 min-w-min font-medium [&_[aria-label="Loading"]>div]:size-3',
|
|
37
38
|
md: 'gap-2 rounded-small text-tiny min-w-min font-medium [&_[aria-label="Loading"]>div]:size-4',
|
|
38
39
|
lg: 'gap-2 rounded-medium text-medium min-w-min font-medium [&_[aria-label="Loading"]>div]:size-6',
|
|
@@ -51,6 +52,7 @@ const button_theme_button = tv({
|
|
|
51
52
|
},
|
|
52
53
|
radius: {
|
|
53
54
|
none: 'rounded-none',
|
|
55
|
+
xs: 'rounded-sm',
|
|
54
56
|
sm: 'rounded-small',
|
|
55
57
|
md: 'rounded-medium',
|
|
56
58
|
lg: 'rounded-large',
|
|
@@ -87,6 +89,16 @@ const button_theme_button = tv({
|
|
|
87
89
|
disableAnimation: false
|
|
88
90
|
},
|
|
89
91
|
compoundVariants: [
|
|
92
|
+
{
|
|
93
|
+
size: 'xs',
|
|
94
|
+
variant: [
|
|
95
|
+
'solid',
|
|
96
|
+
'flat',
|
|
97
|
+
'light',
|
|
98
|
+
'bordered'
|
|
99
|
+
],
|
|
100
|
+
class: 'px-sm h-5'
|
|
101
|
+
},
|
|
90
102
|
{
|
|
91
103
|
size: 'sm',
|
|
92
104
|
variant: [
|
|
@@ -462,6 +474,11 @@ const button_theme_button = tv({
|
|
|
462
474
|
isInGroup: true,
|
|
463
475
|
class: 'rounded-none first:rounded-s-small last:rounded-e-small'
|
|
464
476
|
},
|
|
477
|
+
{
|
|
478
|
+
isInGroup: true,
|
|
479
|
+
size: 'xs',
|
|
480
|
+
class: 'rounded-none first:rounded-s-sm last:rounded-e-sm'
|
|
481
|
+
},
|
|
465
482
|
{
|
|
466
483
|
isInGroup: true,
|
|
467
484
|
size: 'sm',
|
|
@@ -579,6 +596,11 @@ const button_theme_button = tv({
|
|
|
579
596
|
color: 'bearish',
|
|
580
597
|
class: collapseAdjacentVariantBorders.bearish
|
|
581
598
|
},
|
|
599
|
+
{
|
|
600
|
+
isIconOnly: true,
|
|
601
|
+
size: 'xs',
|
|
602
|
+
class: 'min-w-5 w-5 h-5'
|
|
603
|
+
},
|
|
582
604
|
{
|
|
583
605
|
isIconOnly: true,
|
|
584
606
|
size: 'sm',
|
|
@@ -47,7 +47,7 @@ interface Props extends HTMLHeroUIProps<'button'> {
|
|
|
47
47
|
export type UseButtonProps = Props & Omit<AriaButtonProps, keyof ButtonVariantProps> & Omit<ButtonVariantProps, 'isInGroup'>;
|
|
48
48
|
export declare function useButton(props: UseButtonProps): {
|
|
49
49
|
Component: import("@heroui/system-rsc").As<any>;
|
|
50
|
-
children:
|
|
50
|
+
children: ReactNode;
|
|
51
51
|
domRef: import("react").RefObject<HTMLButtonElement>;
|
|
52
52
|
spinner: ReactNode;
|
|
53
53
|
styles: string;
|
|
@@ -298,5 +298,5 @@ declare const UXChip: React.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
298
298
|
isCloseable?: boolean | undefined;
|
|
299
299
|
hasStartContent?: boolean | undefined;
|
|
300
300
|
hasEndContent?: boolean | undefined;
|
|
301
|
-
}, "ref"> &
|
|
301
|
+
}, "ref"> & React.RefAttributes<React.ReactElement<unknown, string | React.JSXElementConstructor<any>>>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
302
302
|
export default UXChip;
|
|
@@ -3,7 +3,7 @@ import ExtendedInput from './input.extend';
|
|
|
3
3
|
export type UXInputProps = React.ComponentPropsWithRef<typeof ExtendedInput>;
|
|
4
4
|
declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
|
|
5
5
|
fullWidth?: boolean | undefined;
|
|
6
|
-
ref?:
|
|
6
|
+
ref?: React.Ref<HTMLInputElement> | undefined;
|
|
7
7
|
children?: React.ReactNode;
|
|
8
8
|
defaultChecked?: any;
|
|
9
9
|
defaultValue?: string | undefined;
|
|
@@ -116,27 +116,27 @@ declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
116
116
|
dangerouslySetInnerHTML?: {
|
|
117
117
|
__html: string | TrustedHTML;
|
|
118
118
|
} | undefined;
|
|
119
|
-
onCopy?:
|
|
119
|
+
onCopy?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
120
120
|
onCopyCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
121
|
-
onCut?:
|
|
121
|
+
onCut?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
122
122
|
onCutCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
123
|
-
onPaste?:
|
|
123
|
+
onPaste?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
124
124
|
onPasteCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
125
|
-
onCompositionEnd?:
|
|
125
|
+
onCompositionEnd?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
126
126
|
onCompositionEndCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
127
|
-
onCompositionStart?:
|
|
127
|
+
onCompositionStart?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
128
128
|
onCompositionStartCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
129
|
-
onCompositionUpdate?:
|
|
129
|
+
onCompositionUpdate?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
130
130
|
onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
131
|
-
onFocus?: (React.FocusEventHandler<HTMLInputElement> & ((e:
|
|
131
|
+
onFocus?: (React.FocusEventHandler<HTMLInputElement> & ((e: React.FocusEvent<HTMLInputElement, Element>) => void)) | undefined;
|
|
132
132
|
onFocusCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
133
|
-
onBlur?: (React.FocusEventHandler<HTMLInputElement> & ((e:
|
|
133
|
+
onBlur?: (React.FocusEventHandler<HTMLInputElement> & ((e: React.FocusEvent<HTMLInputElement, Element>) => void)) | undefined;
|
|
134
134
|
onBlurCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
135
135
|
onChange?: React.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
136
136
|
onChangeCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
137
|
-
onBeforeInput?: (React.InputEventHandler<HTMLInputElement> &
|
|
137
|
+
onBeforeInput?: (React.InputEventHandler<HTMLInputElement> & React.FormEventHandler<HTMLInputElement>) | undefined;
|
|
138
138
|
onBeforeInputCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
139
|
-
onInput?:
|
|
139
|
+
onInput?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
140
140
|
onInputCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
141
141
|
onReset?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
142
142
|
onResetCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
@@ -234,7 +234,7 @@ declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
234
234
|
onMouseOverCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
235
235
|
onMouseUp?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
236
236
|
onMouseUpCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
237
|
-
onSelect?:
|
|
237
|
+
onSelect?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
238
238
|
onSelectCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
239
239
|
onTouchCancel?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
240
240
|
onTouchCancelCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
@@ -301,7 +301,7 @@ declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
301
301
|
type?: string | undefined;
|
|
302
302
|
key?: React.Key | null | undefined;
|
|
303
303
|
labelPlacement?: "inside" | "outside" | "outside-left" | "outside-top" | undefined;
|
|
304
|
-
label?:
|
|
304
|
+
label?: React.ReactNode;
|
|
305
305
|
isInvalid?: boolean | undefined;
|
|
306
306
|
disableAnimation?: boolean | undefined;
|
|
307
307
|
isDisabled?: boolean | undefined;
|
|
@@ -335,12 +335,12 @@ declare const UXInput: React.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
335
335
|
validationState?: import("@react-types/shared").ValidationState | undefined;
|
|
336
336
|
validationBehavior?: "aria" | "native" | undefined;
|
|
337
337
|
validate?: ((value: string) => import("@react-types/shared").ValidationError | true | null | undefined) | undefined;
|
|
338
|
-
description?:
|
|
339
|
-
errorMessage?:
|
|
338
|
+
description?: React.ReactNode;
|
|
339
|
+
errorMessage?: React.ReactNode | ((v: import("@react-types/shared").ValidationResult) => React.ReactNode);
|
|
340
340
|
isClearable?: boolean | undefined;
|
|
341
|
-
baseRef?:
|
|
342
|
-
wrapperRef?:
|
|
343
|
-
innerWrapperRef?:
|
|
341
|
+
baseRef?: React.Ref<HTMLDivElement> | undefined;
|
|
342
|
+
wrapperRef?: React.Ref<HTMLDivElement> | undefined;
|
|
343
|
+
innerWrapperRef?: React.Ref<HTMLDivElement> | undefined;
|
|
344
344
|
textAlign?: "center" | "left" | "right" | undefined;
|
|
345
|
-
}, "ref"> &
|
|
345
|
+
}, "ref"> & React.RefAttributes<React.ReactElement<unknown, string | React.JSXElementConstructor<any>>>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
346
346
|
export default UXInput;
|
|
@@ -113,17 +113,17 @@ declare const ExtendedInput: import("react").ForwardRefExoticComponent<Omit<{
|
|
|
113
113
|
dangerouslySetInnerHTML?: {
|
|
114
114
|
__html: string | TrustedHTML;
|
|
115
115
|
} | undefined;
|
|
116
|
-
onCopy?:
|
|
116
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
117
117
|
onCopyCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
118
|
-
onCut?:
|
|
118
|
+
onCut?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
119
119
|
onCutCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
120
|
-
onPaste?:
|
|
120
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
121
121
|
onPasteCapture?: import("react").ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
122
|
-
onCompositionEnd?:
|
|
122
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
123
123
|
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
124
|
-
onCompositionStart?:
|
|
124
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
125
125
|
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
126
|
-
onCompositionUpdate?:
|
|
126
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
127
127
|
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLInputElement> | undefined;
|
|
128
128
|
onFocus?: (import("react").FocusEventHandler<HTMLInputElement> & ((e: import("react").FocusEvent<HTMLInputElement, Element>) => void)) | undefined;
|
|
129
129
|
onFocusCapture?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
@@ -133,7 +133,7 @@ declare const ExtendedInput: import("react").ForwardRefExoticComponent<Omit<{
|
|
|
133
133
|
onChangeCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
134
134
|
onBeforeInput?: (import("react").InputEventHandler<HTMLInputElement> & import("react").FormEventHandler<HTMLInputElement>) | undefined;
|
|
135
135
|
onBeforeInputCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
136
|
-
onInput?:
|
|
136
|
+
onInput?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
137
137
|
onInputCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
138
138
|
onReset?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
139
139
|
onResetCapture?: import("react").FormEventHandler<HTMLInputElement> | undefined;
|
|
@@ -231,7 +231,7 @@ declare const ExtendedInput: import("react").ForwardRefExoticComponent<Omit<{
|
|
|
231
231
|
onMouseOverCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
232
232
|
onMouseUp?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
233
233
|
onMouseUpCapture?: import("react").MouseEventHandler<HTMLInputElement> | undefined;
|
|
234
|
-
onSelect?:
|
|
234
|
+
onSelect?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
235
235
|
onSelectCapture?: import("react").ReactEventHandler<HTMLInputElement> | undefined;
|
|
236
236
|
onTouchCancel?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
237
237
|
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLInputElement> | undefined;
|
|
@@ -2,8 +2,8 @@ import React from 'react';
|
|
|
2
2
|
import ExtendedSwitch from './switch.extend';
|
|
3
3
|
export type UXSwitchProps = React.ComponentPropsWithRef<typeof ExtendedSwitch>;
|
|
4
4
|
declare const UXSwitch: React.ForwardRefExoticComponent<Omit<Omit<{
|
|
5
|
-
ref?:
|
|
6
|
-
children?:
|
|
5
|
+
ref?: React.Ref<HTMLInputElement> | undefined;
|
|
6
|
+
children?: React.ReactNode;
|
|
7
7
|
defaultChecked?: any;
|
|
8
8
|
defaultValue?: any;
|
|
9
9
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -127,9 +127,9 @@ declare const UXSwitch: React.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
127
127
|
onCompositionStartCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
128
128
|
onCompositionUpdate?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
129
129
|
onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
130
|
-
onFocus?: (React.FocusEventHandler<HTMLInputElement> & ((e:
|
|
130
|
+
onFocus?: (React.FocusEventHandler<HTMLInputElement> & ((e: React.FocusEvent<Element, Element>) => void)) | undefined;
|
|
131
131
|
onFocusCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
132
|
-
onBlur?: (React.FocusEventHandler<HTMLInputElement> & ((e:
|
|
132
|
+
onBlur?: (React.FocusEventHandler<HTMLInputElement> & ((e: React.FocusEvent<Element, Element>) => void)) | undefined;
|
|
133
133
|
onBlurCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
134
134
|
onChange?: React.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
135
135
|
onChangeCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
@@ -309,8 +309,8 @@ declare const UXSwitch: React.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
309
309
|
formNoValidate?: boolean | undefined;
|
|
310
310
|
formTarget?: string | undefined;
|
|
311
311
|
excludeFromTabOrder?: boolean | undefined;
|
|
312
|
-
startContent?:
|
|
313
|
-
endContent?:
|
|
312
|
+
startContent?: React.ReactNode;
|
|
313
|
+
endContent?: React.ReactNode;
|
|
314
314
|
autoComplete?: React.HTMLInputAutoCompleteAttribute | undefined;
|
|
315
315
|
alt?: string | undefined;
|
|
316
316
|
maxLength?: number | undefined;
|
|
@@ -326,6 +326,6 @@ declare const UXSwitch: React.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
326
326
|
onValueChange?: ((isSelected: boolean) => void) | undefined;
|
|
327
327
|
defaultSelected?: boolean | undefined;
|
|
328
328
|
isReadOnly?: boolean | undefined;
|
|
329
|
-
thumbIcon?:
|
|
330
|
-
}, "ref"> &
|
|
329
|
+
thumbIcon?: React.ReactNode | ((props: import("@heroui/switch").SwitchThumbIconProps) => React.ReactNode);
|
|
330
|
+
}, "ref"> & React.RefAttributes<React.ReactElement<unknown, string | React.JSXElementConstructor<any>>>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
331
331
|
export default UXSwitch;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@particle-network/ui-react",
|
|
3
|
-
"version": "0.1.3-beta.
|
|
3
|
+
"version": "0.1.3-beta.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -10,6 +10,24 @@
|
|
|
10
10
|
"./tailwind-preset": "./tailwind-preset.js"
|
|
11
11
|
},
|
|
12
12
|
"types": "./dist/index.d.ts",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"description": "React UI component library for Particle Network design system",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://gitlab.minijoy.work/frontend/ux-design",
|
|
18
|
+
"directory": "packages/ui-react"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"react",
|
|
22
|
+
"ui-components",
|
|
23
|
+
"design-system",
|
|
24
|
+
"particle-network"
|
|
25
|
+
],
|
|
26
|
+
"author": "UniversalX",
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public",
|
|
29
|
+
"registry": "https://registry.npmjs.org/"
|
|
30
|
+
},
|
|
13
31
|
"files": [
|
|
14
32
|
"dist",
|
|
15
33
|
"tailwind-preset.js"
|
|
@@ -21,8 +39,8 @@
|
|
|
21
39
|
"@types/react": "^19.1.10",
|
|
22
40
|
"react": "^19.1.0",
|
|
23
41
|
"typescript": "^5.8.3",
|
|
24
|
-
"@particle-network/
|
|
25
|
-
"@particle-network/
|
|
42
|
+
"@particle-network/eslint-config": "0.2.0",
|
|
43
|
+
"@particle-network/lintstaged-config": "0.0.0"
|
|
26
44
|
},
|
|
27
45
|
"peerDependencies": {
|
|
28
46
|
"react": ">=16.9.0",
|
|
@@ -30,7 +48,7 @@
|
|
|
30
48
|
},
|
|
31
49
|
"dependencies": {
|
|
32
50
|
"ahooks": "^3.9.4",
|
|
33
|
-
"@particle-network/ui-shared": "0.1.0"
|
|
51
|
+
"@particle-network/ui-shared": "0.1.1-beta.0"
|
|
34
52
|
},
|
|
35
53
|
"scripts": {
|
|
36
54
|
"build": "rslib build",
|