@powerhousedao/design-system 6.1.0-dev.0 → 6.1.0-staging.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/{command-BtOLY735.d.ts → command-B0gVmWvu.d.ts} +14 -14
- package/dist/{command-BtOLY735.d.ts.map → command-B0gVmWvu.d.ts.map} +1 -1
- package/dist/{enum-field-BEyFQh8A.d.ts → enum-field-BTc0P4W0.d.ts} +2 -2
- package/dist/{enum-field-BEyFQh8A.d.ts.map → enum-field-BTc0P4W0.d.ts.map} +1 -1
- package/dist/{radio-group-field-C8MQjHb7.d.ts → radio-group-field-CY2UGZp_.d.ts} +2 -2
- package/dist/{radio-group-field-C8MQjHb7.d.ts.map → radio-group-field-CY2UGZp_.d.ts.map} +1 -1
- package/dist/ui/components/command/command.d.ts +1 -1
- package/dist/ui/components/enum-field/enum-field.d.ts +1 -1
- package/dist/ui/components/index.d.ts +3 -3
- package/dist/ui/components/radio-group-field/radio-group-field.d.ts +1 -1
- package/dist/ui/index.d.ts +3 -3
- package/package.json +4 -4
|
@@ -3,11 +3,11 @@ import React from "react";
|
|
|
3
3
|
//#region src/ui/components/command/command.d.ts
|
|
4
4
|
declare const Command: React.ForwardRefExoticComponent<Omit<{
|
|
5
5
|
children?: React.ReactNode;
|
|
6
|
-
} & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement
|
|
6
|
+
} & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
|
|
7
7
|
ref?: React.Ref<HTMLDivElement>;
|
|
8
8
|
} & {
|
|
9
9
|
asChild?: boolean;
|
|
10
|
-
}, keyof React.HTMLAttributes<HTMLDivElement> | "
|
|
10
|
+
}, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
|
|
11
11
|
label?: string;
|
|
12
12
|
shouldFilter?: boolean;
|
|
13
13
|
filter?: (value: string, search: string, keywords?: string[]) => number;
|
|
@@ -22,7 +22,7 @@ declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<
|
|
|
22
22
|
ref?: React.Ref<HTMLInputElement>;
|
|
23
23
|
} & {
|
|
24
24
|
asChild?: boolean;
|
|
25
|
-
}, "key" | "asChild" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "
|
|
25
|
+
}, "key" | "asChild" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "value" | "type"> & {
|
|
26
26
|
value?: string;
|
|
27
27
|
onValueChange?: (search: string) => void;
|
|
28
28
|
} & React.RefAttributes<HTMLInputElement>, "ref"> & {
|
|
@@ -30,48 +30,48 @@ declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<
|
|
|
30
30
|
} & React.RefAttributes<HTMLInputElement>>;
|
|
31
31
|
declare const CommandList: React.ForwardRefExoticComponent<Omit<{
|
|
32
32
|
children?: React.ReactNode;
|
|
33
|
-
} & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement
|
|
33
|
+
} & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
|
|
34
34
|
ref?: React.Ref<HTMLDivElement>;
|
|
35
35
|
} & {
|
|
36
36
|
asChild?: boolean;
|
|
37
|
-
}, keyof React.HTMLAttributes<HTMLDivElement> | "
|
|
37
|
+
}, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
|
|
38
38
|
label?: string;
|
|
39
39
|
} & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
40
40
|
declare const CommandLoading: React.ForwardRefExoticComponent<Omit<{
|
|
41
41
|
children?: React.ReactNode;
|
|
42
|
-
} & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement
|
|
42
|
+
} & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
|
|
43
43
|
ref?: React.Ref<HTMLDivElement>;
|
|
44
44
|
} & {
|
|
45
45
|
asChild?: boolean;
|
|
46
|
-
}, keyof React.HTMLAttributes<HTMLDivElement> | "
|
|
46
|
+
}, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
|
|
47
47
|
progress?: number;
|
|
48
48
|
label?: string;
|
|
49
49
|
} & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
50
50
|
declare const CommandEmpty: React.ForwardRefExoticComponent<Omit<{
|
|
51
51
|
children?: React.ReactNode;
|
|
52
|
-
} & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement
|
|
52
|
+
} & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
|
|
53
53
|
ref?: React.Ref<HTMLDivElement>;
|
|
54
54
|
} & {
|
|
55
55
|
asChild?: boolean;
|
|
56
|
-
}, keyof React.HTMLAttributes<HTMLDivElement> | "
|
|
56
|
+
}, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
57
57
|
declare const CommandGroup: React.ForwardRefExoticComponent<Omit<{
|
|
58
58
|
children?: React.ReactNode;
|
|
59
|
-
} & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement
|
|
59
|
+
} & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
|
|
60
60
|
ref?: React.Ref<HTMLDivElement>;
|
|
61
61
|
} & {
|
|
62
62
|
asChild?: boolean;
|
|
63
|
-
}, keyof React.HTMLAttributes<HTMLDivElement> | "
|
|
63
|
+
}, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "value" | "heading"> & {
|
|
64
64
|
heading?: React.ReactNode;
|
|
65
65
|
value?: string;
|
|
66
66
|
forceMount?: boolean;
|
|
67
67
|
} & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
68
68
|
declare const CommandItem: React.ForwardRefExoticComponent<Omit<{
|
|
69
69
|
children?: React.ReactNode;
|
|
70
|
-
} & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof React.HTMLAttributes<HTMLDivElement
|
|
70
|
+
} & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
|
|
71
71
|
ref?: React.Ref<HTMLDivElement>;
|
|
72
72
|
} & {
|
|
73
73
|
asChild?: boolean;
|
|
74
|
-
}, keyof React.HTMLAttributes<HTMLDivElement> | "
|
|
74
|
+
}, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "value" | "disabled"> & {
|
|
75
75
|
disabled?: boolean;
|
|
76
76
|
onSelect?: (value: string) => void;
|
|
77
77
|
value?: string;
|
|
@@ -80,4 +80,4 @@ declare const CommandItem: React.ForwardRefExoticComponent<Omit<{
|
|
|
80
80
|
} & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
81
81
|
//#endregion
|
|
82
82
|
export { CommandItem as a, CommandInput as i, CommandEmpty as n, CommandList as o, CommandGroup as r, CommandLoading as s, Command as t };
|
|
83
|
-
//# sourceMappingURL=command-
|
|
83
|
+
//# sourceMappingURL=command-B0gVmWvu.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command-
|
|
1
|
+
{"version":3,"file":"command-B0gVmWvu.d.ts","names":[],"sources":["../src/ui/components/command/command.tsx"],"mappings":";;;cAIM,OAAA,EAAO,KAAA,CAAA,yBAAA,CAAA,IAAA;;;;;;;;;;;;;;;;;cAeP,YAAA,EAAY,KAAA,CAAA,yBAAA,CAAA,IAAA,CAAA,IAAA,CAAA,IAAA,CAAA,IAAA,CAAA,KAAA,CAAA,iBAAA,CAAA,KAAA,CAAA,mBAAA,CAAA,gBAAA,GAAA,gBAAA,iBAAA,KAAA,CAAA,mBAAA,CAAA,gBAAA;;;;;;;;;;cA2CZ,WAAA,EAAW,KAAA,CAAA,yBAAA,CAAA,IAAA;;;;;;;;;cAqBX,cAAA,EAAc,KAAA,CAAA,yBAAA,CAAA,IAAA;;;;;;;;;;cAMd,YAAA,EAAY,KAAA,CAAA,yBAAA,CAAA,IAAA;;;;;;;cAMZ,YAAA,EAAY,KAAA,CAAA,yBAAA,CAAA,IAAA;;;;;;;;;;;cAgBZ,WAAA,EAAW,KAAA,CAAA,yBAAA,CAAA,IAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as RadioGroupFieldProps } from "./radio-group-field-
|
|
1
|
+
import { n as RadioGroupFieldProps } from "./radio-group-field-CY2UGZp_.js";
|
|
2
2
|
import { n as SelectFieldProps } from "./select-field-BClhLm83.js";
|
|
3
3
|
import React from "react";
|
|
4
4
|
|
|
@@ -13,4 +13,4 @@ type EnumFieldProps = ({
|
|
|
13
13
|
declare const EnumField: React.ForwardRefExoticComponent<EnumFieldProps & React.RefAttributes<HTMLDivElement | HTMLButtonElement>>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { EnumFieldProps as n, EnumField as t };
|
|
16
|
-
//# sourceMappingURL=enum-field-
|
|
16
|
+
//# sourceMappingURL=enum-field-BTc0P4W0.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enum-field-
|
|
1
|
+
{"version":3,"file":"enum-field-BTc0P4W0.d.ts","names":[],"sources":["../src/ui/components/enum-field/enum-field.tsx"],"mappings":";;;;;KAUY,cAAA;EAEN,OAAA;AAAA,KACG,oBAAA,GAAuB,gBAAA;EAE1B,OAAA;AAAA,IACE,oBAAA;EAEF,OAAA;AAAA,IACE,gBAAA;AAAA,cAEK,SAAA,EAAS,KAAA,CAAA,yBAAA,CAAA,cAAA,GAAA,KAAA,CAAA,aAAA,CAAA,cAAA,GAAA,iBAAA"}
|
|
@@ -7,9 +7,9 @@ type RadioGroupFieldBaseProps = Omit<HTMLAttributes<HTMLDivElement>, keyof Input
|
|
|
7
7
|
dir?: "ltr" | "rtl";
|
|
8
8
|
};
|
|
9
9
|
type RadioGroupFieldProps = RadioGroupFieldBaseProps & InputBaseProps<string> & FieldErrorHandling & RadioGroupProps;
|
|
10
|
-
declare const RadioGroupField: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, keyof InputBaseProps<string> | keyof FieldErrorHandling | keyof RadioGroupProps
|
|
10
|
+
declare const RadioGroupField: react.ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "dir" | keyof InputBaseProps<string> | keyof FieldErrorHandling | keyof RadioGroupProps> & {
|
|
11
11
|
dir?: "ltr" | "rtl";
|
|
12
12
|
} & InputBaseProps<string> & FieldErrorHandling & RadioGroupProps & react.RefAttributes<HTMLDivElement>>;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { RadioGroupFieldProps as n, RadioGroupField as t };
|
|
15
|
-
//# sourceMappingURL=radio-group-field-
|
|
15
|
+
//# sourceMappingURL=radio-group-field-CY2UGZp_.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"radio-group-field-
|
|
1
|
+
{"version":3,"file":"radio-group-field-CY2UGZp_.d.ts","names":[],"sources":["../src/ui/components/radio-group-field/radio-group-field.tsx"],"mappings":";;;;;KAUK,wBAAA,GAA2B,IAAA,CAC9B,cAAA,CAAe,cAAA,SACP,cAAA,iBACA,kBAAA,SACA,eAAA;EAGR,GAAA;AAAA;AAAA,KAGU,oBAAA,GAAuB,wBAAA,GACjC,cAAA,WACA,kBAAA,GACA,eAAA;AAAA,cAkFW,eAAA,QAAe,yBAAA,CAAA,IAAA,CAAA,cAAA,CAAA,cAAA,iBAAA,cAAA,iBAAA,kBAAA,SAAA,eAAA"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as CommandItem, i as CommandInput, n as CommandEmpty, o as CommandList, r as CommandGroup, s as CommandLoading, t as Command } from "../../../command-
|
|
1
|
+
import { a as CommandItem, i as CommandInput, n as CommandEmpty, o as CommandList, r as CommandGroup, s as CommandLoading, t as Command } from "../../../command-B0gVmWvu.js";
|
|
2
2
|
export { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandLoading };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as EnumFieldProps, t as EnumField } from "../../../enum-field-
|
|
1
|
+
import { n as EnumFieldProps, t as EnumField } from "../../../enum-field-BTc0P4W0.js";
|
|
2
2
|
export { EnumField, EnumFieldProps };
|
|
@@ -2,10 +2,10 @@ import { n as ButtonProps, r as buttonVariants, t as Button } from "../../button
|
|
|
2
2
|
import { n as CharacterCounterProps, t as CharacterCounter } from "../../character-counter-BcuG4STA.js";
|
|
3
3
|
import { n as CheckboxValue, t as CheckboxBase } from "../../checkbox-base-8xXJvAbj.js";
|
|
4
4
|
import { n as CheckboxProps, t as Checkbox } from "../../checkbox-dqrYEK5V.js";
|
|
5
|
-
import { a as CommandItem, i as CommandInput, n as CommandEmpty, o as CommandList, r as CommandGroup, s as CommandLoading, t as Command } from "../../command-
|
|
6
|
-
import { n as RadioGroupFieldProps, t as RadioGroupField } from "../../radio-group-field-
|
|
5
|
+
import { a as CommandItem, i as CommandInput, n as CommandEmpty, o as CommandList, r as CommandGroup, s as CommandLoading, t as Command } from "../../command-B0gVmWvu.js";
|
|
6
|
+
import { n as RadioGroupFieldProps, t as RadioGroupField } from "../../radio-group-field-CY2UGZp_.js";
|
|
7
7
|
import { n as SelectFieldProps, r as SelectFieldRaw, t as SelectField } from "../../select-field-BClhLm83.js";
|
|
8
|
-
import { n as EnumFieldProps, t as EnumField } from "../../enum-field-
|
|
8
|
+
import { n as EnumFieldProps, t as EnumField } from "../../enum-field-BTc0P4W0.js";
|
|
9
9
|
import { n as FormDescriptionProps, t as FormDescription } from "../../form-description-BpST5Ww-.js";
|
|
10
10
|
import { t as FormGroup } from "../../form-group-BauWlFkQ.js";
|
|
11
11
|
import { n as FormLabelProps, t as FormLabel } from "../../form-label-Cz_gcj-B.js";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as RadioGroupFieldProps, t as RadioGroupField } from "../../../radio-group-field-
|
|
1
|
+
import { n as RadioGroupFieldProps, t as RadioGroupField } from "../../../radio-group-field-CY2UGZp_.js";
|
|
2
2
|
export { RadioGroupField, RadioGroupFieldProps };
|
package/dist/ui/index.d.ts
CHANGED
|
@@ -4,10 +4,10 @@ import { n as ButtonProps, r as buttonVariants, t as Button } from "../button-49
|
|
|
4
4
|
import { n as CharacterCounterProps, t as CharacterCounter } from "../character-counter-BcuG4STA.js";
|
|
5
5
|
import { n as CheckboxValue, t as CheckboxBase } from "../checkbox-base-8xXJvAbj.js";
|
|
6
6
|
import { n as CheckboxProps, t as Checkbox } from "../checkbox-dqrYEK5V.js";
|
|
7
|
-
import { a as CommandItem, i as CommandInput, n as CommandEmpty, o as CommandList, r as CommandGroup, s as CommandLoading, t as Command } from "../command-
|
|
8
|
-
import { n as RadioGroupFieldProps, t as RadioGroupField } from "../radio-group-field-
|
|
7
|
+
import { a as CommandItem, i as CommandInput, n as CommandEmpty, o as CommandList, r as CommandGroup, s as CommandLoading, t as Command } from "../command-B0gVmWvu.js";
|
|
8
|
+
import { n as RadioGroupFieldProps, t as RadioGroupField } from "../radio-group-field-CY2UGZp_.js";
|
|
9
9
|
import { n as SelectFieldProps, r as SelectFieldRaw, t as SelectField } from "../select-field-BClhLm83.js";
|
|
10
|
-
import { n as EnumFieldProps, t as EnumField } from "../enum-field-
|
|
10
|
+
import { n as EnumFieldProps, t as EnumField } from "../enum-field-BTc0P4W0.js";
|
|
11
11
|
import { n as FormDescriptionProps, t as FormDescription } from "../form-description-BpST5Ww-.js";
|
|
12
12
|
import { t as FormGroup } from "../form-group-BauWlFkQ.js";
|
|
13
13
|
import { n as FormLabelProps, t as FormLabel } from "../form-label-Cz_gcj-B.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerhousedao/design-system",
|
|
3
|
-
"version": "6.1.0-
|
|
3
|
+
"version": "6.1.0-staging.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"tsx": "4.21.0",
|
|
108
108
|
"vite": "8.0.8",
|
|
109
109
|
"vitest": "4.1.1",
|
|
110
|
-
"@powerhousedao/config": "6.1.0-
|
|
110
|
+
"@powerhousedao/config": "6.1.0-staging.0"
|
|
111
111
|
},
|
|
112
112
|
"peerDependencies": {
|
|
113
113
|
"react": ">=19.0.0",
|
|
@@ -139,8 +139,8 @@
|
|
|
139
139
|
"tailwind-merge": "3.4.0",
|
|
140
140
|
"type-fest": "5.6.0",
|
|
141
141
|
"usehooks-ts": "^3.1.1",
|
|
142
|
-
"@powerhousedao/reactor-browser": "6.1.0-
|
|
143
|
-
"@powerhousedao/shared": "6.1.0-
|
|
142
|
+
"@powerhousedao/reactor-browser": "6.1.0-staging.0",
|
|
143
|
+
"@powerhousedao/shared": "6.1.0-staging.0"
|
|
144
144
|
},
|
|
145
145
|
"scripts": {
|
|
146
146
|
"tsc": "tsc",
|