@luxfi/ui 7.4.13 → 7.4.15
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/bank.d.cts +11 -11
- package/dist/bank.d.ts +11 -11
- package/dist/button.cjs +0 -12
- package/dist/button.d.cts +1 -5
- package/dist/button.d.ts +1 -5
- package/dist/button.js +1 -12
- package/dist/dialog.d.cts +6 -6
- package/dist/dialog.d.ts +6 -6
- package/dist/drawer.d.cts +2 -2
- package/dist/drawer.d.ts +2 -2
- package/dist/expiration-selector.cjs +4 -5
- package/dist/expiration-selector.js +4 -5
- package/dist/heading.cjs +12 -3
- package/dist/heading.js +12 -3
- package/dist/index.cjs +38 -32
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +39 -32
- package/dist/input.cjs +5 -5
- package/dist/input.d.cts +1 -1
- package/dist/input.d.ts +1 -1
- package/dist/input.js +5 -5
- package/dist/lux.config.cjs +2 -0
- package/dist/lux.config.d.cts +781 -233
- package/dist/lux.config.d.ts +781 -233
- package/dist/lux.config.js +2 -0
- package/dist/option-position.cjs +10 -2
- package/dist/option-position.js +10 -2
- package/dist/provider.cjs +2 -0
- package/dist/provider.js +2 -0
- package/dist/textarea.cjs +10 -10
- package/dist/textarea.js +10 -10
- package/package.json +18 -14
- package/src/button.tsx +0 -18
- package/src/heading.tsx +12 -3
- package/src/index.ts +0 -1
- package/src/input.tsx +6 -6
- package/src/lux.config.ts +19 -0
- package/src/textarea.tsx +6 -6
package/dist/bank.d.cts
CHANGED
|
@@ -27,11 +27,11 @@ declare const bankColors: {
|
|
|
27
27
|
readonly divider: "#222222";
|
|
28
28
|
readonly disabled: "#444444";
|
|
29
29
|
};
|
|
30
|
-
declare const BankCard: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
30
|
+
declare const BankCard: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {
|
|
31
31
|
size?: "sm" | "md" | "lg" | undefined;
|
|
32
32
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
33
33
|
type BankCardProps = GetProps<typeof BankCard>;
|
|
34
|
-
declare const BankInput: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
34
|
+
declare const BankInput: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
35
35
|
size?: "sm" | "md" | "lg" | undefined;
|
|
36
36
|
unstyled?: boolean | undefined;
|
|
37
37
|
invalid?: boolean | undefined;
|
|
@@ -39,21 +39,21 @@ declare const BankInput: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _ha
|
|
|
39
39
|
type BankInputProps = GetProps<typeof BankInput> & {
|
|
40
40
|
placeholderTextColor?: string;
|
|
41
41
|
};
|
|
42
|
-
declare const BankButton: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
42
|
+
declare const BankButton: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {
|
|
43
43
|
disabled?: boolean | undefined;
|
|
44
44
|
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
45
45
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
46
|
-
declare const BankButtonText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
46
|
+
declare const BankButtonText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
47
47
|
unstyled?: boolean | undefined;
|
|
48
48
|
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
49
49
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
50
50
|
type BankButtonProps = GetProps<typeof BankButton>;
|
|
51
|
-
declare const BankHeading: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
51
|
+
declare const BankHeading: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
52
52
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
53
53
|
unstyled?: boolean | undefined;
|
|
54
54
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
55
55
|
type BankHeadingProps = GetProps<typeof BankHeading>;
|
|
56
|
-
declare const BankText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
56
|
+
declare const BankText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
57
57
|
unstyled?: boolean | undefined;
|
|
58
58
|
variant?: "default" | "label" | "link" | "error" | "success" | "muted" | undefined;
|
|
59
59
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
@@ -63,21 +63,21 @@ declare function BankField({ label, error, children, }: {
|
|
|
63
63
|
error?: string;
|
|
64
64
|
children: React__default.ReactNode;
|
|
65
65
|
}): react_jsx_runtime.JSX.Element;
|
|
66
|
-
declare const BankAlert: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
66
|
+
declare const BankAlert: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {
|
|
67
67
|
status?: "error" | "success" | undefined;
|
|
68
68
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
69
|
-
declare const BankAlertText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
69
|
+
declare const BankAlertText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
70
70
|
status?: "error" | "success" | undefined;
|
|
71
71
|
unstyled?: boolean | undefined;
|
|
72
72
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
73
73
|
type BankAlertProps = GetProps<typeof BankAlert>;
|
|
74
|
-
declare const BankPinBox: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
74
|
+
declare const BankPinBox: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
75
75
|
unstyled?: boolean | undefined;
|
|
76
76
|
invalid?: boolean | undefined;
|
|
77
77
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
78
78
|
type BankPinBoxProps = GetProps<typeof BankPinBox>;
|
|
79
|
-
declare const BankDivider: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
80
|
-
declare const BankPage: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
79
|
+
declare const BankDivider: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {}, _hanzogui_web.StaticConfigPublic>;
|
|
80
|
+
declare const BankPage: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {}, _hanzogui_web.StaticConfigPublic>;
|
|
81
81
|
type BankPageProps = GetProps<typeof BankPage>;
|
|
82
82
|
|
|
83
83
|
export { BankAlert, type BankAlertProps, BankAlertText, BankButton, type BankButtonProps, BankButtonText, BankCard, type BankCardProps, BankDivider, BankField, BankHeading, type BankHeadingProps, BankInput, type BankInputProps, BankPage, type BankPageProps, BankPinBox, type BankPinBoxProps, BankText, type BankTextProps, bankColors };
|
package/dist/bank.d.ts
CHANGED
|
@@ -27,11 +27,11 @@ declare const bankColors: {
|
|
|
27
27
|
readonly divider: "#222222";
|
|
28
28
|
readonly disabled: "#444444";
|
|
29
29
|
};
|
|
30
|
-
declare const BankCard: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
30
|
+
declare const BankCard: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {
|
|
31
31
|
size?: "sm" | "md" | "lg" | undefined;
|
|
32
32
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
33
33
|
type BankCardProps = GetProps<typeof BankCard>;
|
|
34
|
-
declare const BankInput: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
34
|
+
declare const BankInput: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
35
35
|
size?: "sm" | "md" | "lg" | undefined;
|
|
36
36
|
unstyled?: boolean | undefined;
|
|
37
37
|
invalid?: boolean | undefined;
|
|
@@ -39,21 +39,21 @@ declare const BankInput: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _ha
|
|
|
39
39
|
type BankInputProps = GetProps<typeof BankInput> & {
|
|
40
40
|
placeholderTextColor?: string;
|
|
41
41
|
};
|
|
42
|
-
declare const BankButton: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
42
|
+
declare const BankButton: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {
|
|
43
43
|
disabled?: boolean | undefined;
|
|
44
44
|
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
45
45
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
46
|
-
declare const BankButtonText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
46
|
+
declare const BankButtonText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
47
47
|
unstyled?: boolean | undefined;
|
|
48
48
|
variant?: "primary" | "secondary" | "ghost" | undefined;
|
|
49
49
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
50
50
|
type BankButtonProps = GetProps<typeof BankButton>;
|
|
51
|
-
declare const BankHeading: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
51
|
+
declare const BankHeading: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
52
52
|
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
53
53
|
unstyled?: boolean | undefined;
|
|
54
54
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
55
55
|
type BankHeadingProps = GetProps<typeof BankHeading>;
|
|
56
|
-
declare const BankText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
56
|
+
declare const BankText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
57
57
|
unstyled?: boolean | undefined;
|
|
58
58
|
variant?: "default" | "label" | "link" | "error" | "success" | "muted" | undefined;
|
|
59
59
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
@@ -63,21 +63,21 @@ declare function BankField({ label, error, children, }: {
|
|
|
63
63
|
error?: string;
|
|
64
64
|
children: React__default.ReactNode;
|
|
65
65
|
}): react_jsx_runtime.JSX.Element;
|
|
66
|
-
declare const BankAlert: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
66
|
+
declare const BankAlert: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {
|
|
67
67
|
status?: "error" | "success" | undefined;
|
|
68
68
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
69
|
-
declare const BankAlertText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
69
|
+
declare const BankAlertText: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
70
70
|
status?: "error" | "success" | undefined;
|
|
71
71
|
unstyled?: boolean | undefined;
|
|
72
72
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
73
73
|
type BankAlertProps = GetProps<typeof BankAlert>;
|
|
74
|
-
declare const BankPinBox: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.
|
|
74
|
+
declare const BankPinBox: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiTextElement, _hanzogui_core.RNGuiTextNonStyleProps, _hanzogui_web.TextStylePropsBase, {
|
|
75
75
|
unstyled?: boolean | undefined;
|
|
76
76
|
invalid?: boolean | undefined;
|
|
77
77
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
78
78
|
type BankPinBoxProps = GetProps<typeof BankPinBox>;
|
|
79
|
-
declare const BankDivider: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
80
|
-
declare const BankPage: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
79
|
+
declare const BankDivider: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {}, _hanzogui_web.StaticConfigPublic>;
|
|
80
|
+
declare const BankPage: _hanzogui_web.GuiComponent<_hanzogui_web.TamaDefer, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {}, _hanzogui_web.StaticConfigPublic>;
|
|
81
81
|
type BankPageProps = GetProps<typeof BankPage>;
|
|
82
82
|
|
|
83
83
|
export { BankAlert, type BankAlertProps, BankAlertText, BankButton, type BankButtonProps, BankButtonText, BankCard, type BankCardProps, BankDivider, BankField, BankHeading, type BankHeadingProps, BankInput, type BankInputProps, BankPage, type BankPageProps, BankPinBox, type BankPinBoxProps, BankText, type BankTextProps, bankColors };
|
package/dist/button.cjs
CHANGED
|
@@ -495,17 +495,6 @@ var Button = React2__namespace.forwardRef(
|
|
|
495
495
|
return button;
|
|
496
496
|
}
|
|
497
497
|
);
|
|
498
|
-
var SIZE_CLASSES = {
|
|
499
|
-
"2xs": "px-2 h-5 min-w-5 text-xs rounded-sm gap-1",
|
|
500
|
-
xs: "px-2 h-6 min-w-6 text-sm rounded-sm gap-1",
|
|
501
|
-
sm: "px-3 h-8 min-w-8 text-sm rounded-md gap-1",
|
|
502
|
-
md: "px-3 h-10 min-w-10 text-base rounded-md gap-2"
|
|
503
|
-
};
|
|
504
|
-
function buttonVariants(opts) {
|
|
505
|
-
const v = opts?.variant ?? "solid";
|
|
506
|
-
const s = opts?.size ?? "md";
|
|
507
|
-
return [BASE_CLASSES, VARIANT_CLASSES[v] ?? "", SIZE_CLASSES[s] ?? ""].filter(Boolean).join(" ");
|
|
508
|
-
}
|
|
509
498
|
var ButtonGroup = React2__namespace.forwardRef(
|
|
510
499
|
function ButtonGroup2(props, ref) {
|
|
511
500
|
const { className, ...rest } = props;
|
|
@@ -571,4 +560,3 @@ var ButtonGroupRadio = React2__namespace.forwardRef(
|
|
|
571
560
|
exports.Button = Button;
|
|
572
561
|
exports.ButtonGroup = ButtonGroup;
|
|
573
562
|
exports.ButtonGroupRadio = ButtonGroupRadio;
|
|
574
|
-
exports.buttonVariants = buttonVariants;
|
package/dist/button.d.cts
CHANGED
|
@@ -35,10 +35,6 @@ interface ButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>
|
|
|
35
35
|
readonly 'data-call-strategy'?: string;
|
|
36
36
|
}
|
|
37
37
|
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
38
|
-
declare function buttonVariants(opts?: {
|
|
39
|
-
variant?: string;
|
|
40
|
-
size?: string;
|
|
41
|
-
}): string;
|
|
42
38
|
interface ButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
43
39
|
}
|
|
44
40
|
declare const ButtonGroup: React.ForwardRefExoticComponent<ButtonGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -52,4 +48,4 @@ interface ButtonGroupRadioProps extends Omit<React.HTMLAttributes<HTMLDivElement
|
|
|
52
48
|
}
|
|
53
49
|
declare const ButtonGroupRadio: React.ForwardRefExoticComponent<ButtonGroupRadioProps & React.RefAttributes<HTMLDivElement>>;
|
|
54
50
|
|
|
55
|
-
export { Button, ButtonGroup, type ButtonGroupProps, ButtonGroupRadio, type ButtonGroupRadioProps, type ButtonProps
|
|
51
|
+
export { Button, ButtonGroup, type ButtonGroupProps, ButtonGroupRadio, type ButtonGroupRadioProps, type ButtonProps };
|
package/dist/button.d.ts
CHANGED
|
@@ -35,10 +35,6 @@ interface ButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>
|
|
|
35
35
|
readonly 'data-call-strategy'?: string;
|
|
36
36
|
}
|
|
37
37
|
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
|
|
38
|
-
declare function buttonVariants(opts?: {
|
|
39
|
-
variant?: string;
|
|
40
|
-
size?: string;
|
|
41
|
-
}): string;
|
|
42
38
|
interface ButtonGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
43
39
|
}
|
|
44
40
|
declare const ButtonGroup: React.ForwardRefExoticComponent<ButtonGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -52,4 +48,4 @@ interface ButtonGroupRadioProps extends Omit<React.HTMLAttributes<HTMLDivElement
|
|
|
52
48
|
}
|
|
53
49
|
declare const ButtonGroupRadio: React.ForwardRefExoticComponent<ButtonGroupRadioProps & React.RefAttributes<HTMLDivElement>>;
|
|
54
50
|
|
|
55
|
-
export { Button, ButtonGroup, type ButtonGroupProps, ButtonGroupRadio, type ButtonGroupRadioProps, type ButtonProps
|
|
51
|
+
export { Button, ButtonGroup, type ButtonGroupProps, ButtonGroupRadio, type ButtonGroupRadioProps, type ButtonProps };
|
package/dist/button.js
CHANGED
|
@@ -473,17 +473,6 @@ var Button = React2.forwardRef(
|
|
|
473
473
|
return button;
|
|
474
474
|
}
|
|
475
475
|
);
|
|
476
|
-
var SIZE_CLASSES = {
|
|
477
|
-
"2xs": "px-2 h-5 min-w-5 text-xs rounded-sm gap-1",
|
|
478
|
-
xs: "px-2 h-6 min-w-6 text-sm rounded-sm gap-1",
|
|
479
|
-
sm: "px-3 h-8 min-w-8 text-sm rounded-md gap-1",
|
|
480
|
-
md: "px-3 h-10 min-w-10 text-base rounded-md gap-2"
|
|
481
|
-
};
|
|
482
|
-
function buttonVariants(opts) {
|
|
483
|
-
const v = opts?.variant ?? "solid";
|
|
484
|
-
const s = opts?.size ?? "md";
|
|
485
|
-
return [BASE_CLASSES, VARIANT_CLASSES[v] ?? "", SIZE_CLASSES[s] ?? ""].filter(Boolean).join(" ");
|
|
486
|
-
}
|
|
487
476
|
var ButtonGroup = React2.forwardRef(
|
|
488
477
|
function ButtonGroup2(props, ref) {
|
|
489
478
|
const { className, ...rest } = props;
|
|
@@ -546,4 +535,4 @@ var ButtonGroupRadio = React2.forwardRef(
|
|
|
546
535
|
}
|
|
547
536
|
);
|
|
548
537
|
|
|
549
|
-
export { Button, ButtonGroup, ButtonGroupRadio
|
|
538
|
+
export { Button, ButtonGroup, ButtonGroupRadio };
|
package/dist/dialog.d.cts
CHANGED
|
@@ -52,7 +52,7 @@ declare const DialogBody: React.ForwardRefExoticComponent<DialogBodyProps & Reac
|
|
|
52
52
|
interface DialogFooterProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
53
53
|
}
|
|
54
54
|
declare const DialogFooter: React.ForwardRefExoticComponent<DialogFooterProps & React.RefAttributes<HTMLDivElement>>;
|
|
55
|
-
declare const DialogBackdrop: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.
|
|
55
|
+
declare const DialogBackdrop: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {
|
|
56
56
|
open?: boolean | undefined;
|
|
57
57
|
unstyled?: boolean | undefined;
|
|
58
58
|
elevation?: number | _hanzogui_web.SizeTokens | undefined;
|
|
@@ -61,7 +61,7 @@ declare const DialogBackdrop: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetF
|
|
|
61
61
|
forceMount?: boolean;
|
|
62
62
|
} & {
|
|
63
63
|
scope?: _hanzo_gui.DialogScopes;
|
|
64
|
-
}, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
64
|
+
}, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps & {
|
|
65
65
|
forceMount?: boolean;
|
|
66
66
|
} & {
|
|
67
67
|
scope?: _hanzo_gui.DialogScopes;
|
|
@@ -95,9 +95,9 @@ declare const DialogDescription: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.G
|
|
|
95
95
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
96
96
|
interface DialogTriggerProps extends React.ComponentPropsWithoutRef<'button'> {
|
|
97
97
|
}
|
|
98
|
-
declare const DialogTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.
|
|
98
|
+
declare const DialogTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {}>, "scope"> & {
|
|
99
99
|
scope?: _hanzo_gui.DialogScopes;
|
|
100
|
-
}, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
100
|
+
}, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps & {
|
|
101
101
|
scope?: _hanzo_gui.DialogScopes;
|
|
102
102
|
}, _hanzogui_web.StackStyleBase, {}, _hanzogui_web.StaticConfigPublic>;
|
|
103
103
|
/**
|
|
@@ -105,11 +105,11 @@ declare const DialogTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFi
|
|
|
105
105
|
* This mirrors the Chakra `Dialog.ActionTrigger` behavior which wraps
|
|
106
106
|
* children in a close action.
|
|
107
107
|
*/
|
|
108
|
-
declare const DialogActionTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.
|
|
108
|
+
declare const DialogActionTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {}>, "scope" | "displayWhenAdapted"> & {
|
|
109
109
|
displayWhenAdapted?: boolean;
|
|
110
110
|
} & {
|
|
111
111
|
scope?: _hanzo_gui.DialogScopes;
|
|
112
|
-
}, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
112
|
+
}, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps & {
|
|
113
113
|
displayWhenAdapted?: boolean;
|
|
114
114
|
} & {
|
|
115
115
|
scope?: _hanzo_gui.DialogScopes;
|
package/dist/dialog.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ declare const DialogBody: React.ForwardRefExoticComponent<DialogBodyProps & Reac
|
|
|
52
52
|
interface DialogFooterProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
53
53
|
}
|
|
54
54
|
declare const DialogFooter: React.ForwardRefExoticComponent<DialogFooterProps & React.RefAttributes<HTMLDivElement>>;
|
|
55
|
-
declare const DialogBackdrop: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.
|
|
55
|
+
declare const DialogBackdrop: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {
|
|
56
56
|
open?: boolean | undefined;
|
|
57
57
|
unstyled?: boolean | undefined;
|
|
58
58
|
elevation?: number | _hanzogui_web.SizeTokens | undefined;
|
|
@@ -61,7 +61,7 @@ declare const DialogBackdrop: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetF
|
|
|
61
61
|
forceMount?: boolean;
|
|
62
62
|
} & {
|
|
63
63
|
scope?: _hanzo_gui.DialogScopes;
|
|
64
|
-
}, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
64
|
+
}, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps & {
|
|
65
65
|
forceMount?: boolean;
|
|
66
66
|
} & {
|
|
67
67
|
scope?: _hanzo_gui.DialogScopes;
|
|
@@ -95,9 +95,9 @@ declare const DialogDescription: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.G
|
|
|
95
95
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
96
96
|
interface DialogTriggerProps extends React.ComponentPropsWithoutRef<'button'> {
|
|
97
97
|
}
|
|
98
|
-
declare const DialogTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.
|
|
98
|
+
declare const DialogTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {}>, "scope"> & {
|
|
99
99
|
scope?: _hanzo_gui.DialogScopes;
|
|
100
|
-
}, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
100
|
+
}, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps & {
|
|
101
101
|
scope?: _hanzo_gui.DialogScopes;
|
|
102
102
|
}, _hanzogui_web.StackStyleBase, {}, _hanzogui_web.StaticConfigPublic>;
|
|
103
103
|
/**
|
|
@@ -105,11 +105,11 @@ declare const DialogTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFi
|
|
|
105
105
|
* This mirrors the Chakra `Dialog.ActionTrigger` behavior which wraps
|
|
106
106
|
* children in a close action.
|
|
107
107
|
*/
|
|
108
|
-
declare const DialogActionTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.
|
|
108
|
+
declare const DialogActionTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {}>, "scope" | "displayWhenAdapted"> & {
|
|
109
109
|
displayWhenAdapted?: boolean;
|
|
110
110
|
} & {
|
|
111
111
|
scope?: _hanzo_gui.DialogScopes;
|
|
112
|
-
}, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
112
|
+
}, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps & {
|
|
113
113
|
displayWhenAdapted?: boolean;
|
|
114
114
|
} & {
|
|
115
115
|
scope?: _hanzo_gui.DialogScopes;
|
package/dist/drawer.d.cts
CHANGED
|
@@ -56,11 +56,11 @@ declare const DrawerDescription: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.G
|
|
|
56
56
|
unstyled?: boolean | undefined;
|
|
57
57
|
size?: _hanzogui_web.FontSizeTokens | undefined;
|
|
58
58
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
59
|
-
declare const DrawerActionTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.
|
|
59
|
+
declare const DrawerActionTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {}>, "scope" | "displayWhenAdapted"> & {
|
|
60
60
|
displayWhenAdapted?: boolean;
|
|
61
61
|
} & {
|
|
62
62
|
scope?: _hanzo_gui.DialogScopes;
|
|
63
|
-
}, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
63
|
+
}, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps & {
|
|
64
64
|
displayWhenAdapted?: boolean;
|
|
65
65
|
} & {
|
|
66
66
|
scope?: _hanzo_gui.DialogScopes;
|
package/dist/drawer.d.ts
CHANGED
|
@@ -56,11 +56,11 @@ declare const DrawerDescription: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.G
|
|
|
56
56
|
unstyled?: boolean | undefined;
|
|
57
57
|
size?: _hanzogui_web.FontSizeTokens | undefined;
|
|
58
58
|
}, _hanzogui_web.StaticConfigPublic>;
|
|
59
|
-
declare const DrawerActionTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.
|
|
59
|
+
declare const DrawerActionTrigger: _hanzogui_web.GuiComponent<Omit<_hanzogui_web.GetFinalProps<_hanzogui_core.RNGuiViewNonStyleProps, _hanzogui_web.StackStyleBase, {}>, "scope" | "displayWhenAdapted"> & {
|
|
60
60
|
displayWhenAdapted?: boolean;
|
|
61
61
|
} & {
|
|
62
62
|
scope?: _hanzo_gui.DialogScopes;
|
|
63
|
-
}, _hanzogui_web.GuiElement, _hanzogui_core.
|
|
63
|
+
}, _hanzogui_web.GuiElement, _hanzogui_core.RNGuiViewNonStyleProps & {
|
|
64
64
|
displayWhenAdapted?: boolean;
|
|
65
65
|
} & {
|
|
66
66
|
scope?: _hanzo_gui.DialogScopes;
|
|
@@ -38,18 +38,17 @@ var GROUP_LABELS = {
|
|
|
38
38
|
var SHAPE = {
|
|
39
39
|
selected: {
|
|
40
40
|
borderColor: "transparent",
|
|
41
|
-
backgroundColor: "var(--color-selected-control-bg)"
|
|
42
|
-
color: "var(--color-selected-control-text)"
|
|
41
|
+
backgroundColor: "var(--color-selected-control-bg)"
|
|
43
42
|
},
|
|
44
43
|
resting: {
|
|
45
44
|
borderColor: "var(--color-border-divider)",
|
|
46
45
|
backgroundColor: "var(--card)",
|
|
47
|
-
|
|
48
|
-
hoverStyle: { borderColor: "var(--color-hover)", color: "var(--color-hover)" }
|
|
46
|
+
hoverStyle: { borderColor: "var(--color-hover)" }
|
|
49
47
|
}
|
|
50
48
|
};
|
|
51
49
|
function ExpirationPill({ exp, isSelected, onClick }) {
|
|
52
50
|
const shape = isSelected ? SHAPE.selected : SHAPE.resting;
|
|
51
|
+
const dateColor = isSelected ? "var(--color-selected-control-text)" : "var(--color-text-secondary)";
|
|
53
52
|
const dteColor = exp.dte <= 7 && !isSelected ? "var(--color-status-warn)" : isSelected ? "var(--color-selected-control-text)" : "var(--muted-foreground)";
|
|
54
53
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
55
54
|
gui.YStack,
|
|
@@ -68,7 +67,7 @@ function ExpirationPill({ exp, isSelected, onClick }) {
|
|
|
68
67
|
cursor: "pointer",
|
|
69
68
|
...shape,
|
|
70
69
|
children: [
|
|
71
|
-
/* @__PURE__ */ jsxRuntime.jsx(gui.Text, {
|
|
70
|
+
/* @__PURE__ */ jsxRuntime.jsx(gui.Text, { fontSize: 12, fontWeight: "500", style: { whiteSpace: "nowrap" }, color: dateColor, children: formatExpDate(exp.date) }),
|
|
72
71
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
73
72
|
gui.Text,
|
|
74
73
|
{
|
|
@@ -16,18 +16,17 @@ var GROUP_LABELS = {
|
|
|
16
16
|
var SHAPE = {
|
|
17
17
|
selected: {
|
|
18
18
|
borderColor: "transparent",
|
|
19
|
-
backgroundColor: "var(--color-selected-control-bg)"
|
|
20
|
-
color: "var(--color-selected-control-text)"
|
|
19
|
+
backgroundColor: "var(--color-selected-control-bg)"
|
|
21
20
|
},
|
|
22
21
|
resting: {
|
|
23
22
|
borderColor: "var(--color-border-divider)",
|
|
24
23
|
backgroundColor: "var(--card)",
|
|
25
|
-
|
|
26
|
-
hoverStyle: { borderColor: "var(--color-hover)", color: "var(--color-hover)" }
|
|
24
|
+
hoverStyle: { borderColor: "var(--color-hover)" }
|
|
27
25
|
}
|
|
28
26
|
};
|
|
29
27
|
function ExpirationPill({ exp, isSelected, onClick }) {
|
|
30
28
|
const shape = isSelected ? SHAPE.selected : SHAPE.resting;
|
|
29
|
+
const dateColor = isSelected ? "var(--color-selected-control-text)" : "var(--color-text-secondary)";
|
|
31
30
|
const dteColor = exp.dte <= 7 && !isSelected ? "var(--color-status-warn)" : isSelected ? "var(--color-selected-control-text)" : "var(--muted-foreground)";
|
|
32
31
|
return /* @__PURE__ */ jsxs(
|
|
33
32
|
YStack,
|
|
@@ -46,7 +45,7 @@ function ExpirationPill({ exp, isSelected, onClick }) {
|
|
|
46
45
|
cursor: "pointer",
|
|
47
46
|
...shape,
|
|
48
47
|
children: [
|
|
49
|
-
/* @__PURE__ */ jsx(Text, {
|
|
48
|
+
/* @__PURE__ */ jsx(Text, { fontSize: 12, fontWeight: "500", style: { whiteSpace: "nowrap" }, color: dateColor, children: formatExpDate(exp.date) }),
|
|
50
49
|
/* @__PURE__ */ jsxs(
|
|
51
50
|
Text,
|
|
52
51
|
{
|
package/dist/heading.cjs
CHANGED
|
@@ -12,9 +12,18 @@ var React__default = /*#__PURE__*/_interopDefault(React);
|
|
|
12
12
|
// src/heading.tsx
|
|
13
13
|
var TAG = { "1": gui.H1, "2": gui.H2, "3": gui.H3 };
|
|
14
14
|
var RAMP = {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
// Tokens, not numbers. `$n` publishes as `var(--text-*, <px>)` through the
|
|
16
|
+
// shared config, and @hanzo/design multiplies `--text-*` by `--type-scale` —
|
|
17
|
+
// so these three lines are what lets a person's type-size setting reach a
|
|
18
|
+
// heading at all. Written as `18` they would render identically today and
|
|
19
|
+
// never move again.
|
|
20
|
+
//
|
|
21
|
+
// lineHeight is deliberately absent: gui derives it from the resolved size,
|
|
22
|
+
// so it scales WITH the text. A fixed 24 next to an adjustable size is how
|
|
23
|
+
// you get 32px text in a 24px box.
|
|
24
|
+
"1": { fontSize: "$6", $lg: { fontSize: "$10", letterSpacing: -0.5 } },
|
|
25
|
+
"2": { fontSize: "$5", $lg: { fontSize: "$8" } },
|
|
26
|
+
"3": { fontSize: "$3", fontWeight: "600", $lg: { fontSize: "$6", fontWeight: "500" } }
|
|
18
27
|
};
|
|
19
28
|
var Heading = React__default.default.forwardRef(
|
|
20
29
|
function Heading2({ level, ...rest }, ref) {
|
package/dist/heading.js
CHANGED
|
@@ -6,9 +6,18 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
6
6
|
// src/heading.tsx
|
|
7
7
|
var TAG = { "1": H1, "2": H2, "3": H3 };
|
|
8
8
|
var RAMP = {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
// Tokens, not numbers. `$n` publishes as `var(--text-*, <px>)` through the
|
|
10
|
+
// shared config, and @hanzo/design multiplies `--text-*` by `--type-scale` —
|
|
11
|
+
// so these three lines are what lets a person's type-size setting reach a
|
|
12
|
+
// heading at all. Written as `18` they would render identically today and
|
|
13
|
+
// never move again.
|
|
14
|
+
//
|
|
15
|
+
// lineHeight is deliberately absent: gui derives it from the resolved size,
|
|
16
|
+
// so it scales WITH the text. A fixed 24 next to an adjustable size is how
|
|
17
|
+
// you get 32px text in a 24px box.
|
|
18
|
+
"1": { fontSize: "$6", $lg: { fontSize: "$10", letterSpacing: -0.5 } },
|
|
19
|
+
"2": { fontSize: "$5", $lg: { fontSize: "$8" } },
|
|
20
|
+
"3": { fontSize: "$3", fontWeight: "600", $lg: { fontSize: "$6", fontWeight: "500" } }
|
|
12
21
|
};
|
|
13
22
|
var Heading = React.forwardRef(
|
|
14
23
|
function Heading2({ level, ...rest }, ref) {
|
package/dist/index.cjs
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
var gui = require('@hanzo/gui');
|
|
5
5
|
var reactQuery = require('@tanstack/react-query');
|
|
6
6
|
var React32 = require('react');
|
|
7
|
+
var guiConfig = require('@hanzo/ui/gui-config');
|
|
7
8
|
var v5 = require('@hanzogui/config/v5');
|
|
8
9
|
var v5Css = require('@hanzogui/config/v5-css');
|
|
9
10
|
var jsxRuntime = require('react/jsx-runtime');
|
|
@@ -195,6 +196,7 @@ var luxThemes = {
|
|
|
195
196
|
};
|
|
196
197
|
var config = gui.createGui({
|
|
197
198
|
...v5.defaultConfig,
|
|
199
|
+
...guiConfig.config,
|
|
198
200
|
animations: v5Css.animations,
|
|
199
201
|
settings: {
|
|
200
202
|
...v5.defaultConfig.settings,
|
|
@@ -2243,17 +2245,6 @@ var Button = React32__namespace.forwardRef(
|
|
|
2243
2245
|
return button;
|
|
2244
2246
|
}
|
|
2245
2247
|
);
|
|
2246
|
-
var SIZE_CLASSES = {
|
|
2247
|
-
"2xs": "px-2 h-5 min-w-5 text-xs rounded-sm gap-1",
|
|
2248
|
-
xs: "px-2 h-6 min-w-6 text-sm rounded-sm gap-1",
|
|
2249
|
-
sm: "px-3 h-8 min-w-8 text-sm rounded-md gap-1",
|
|
2250
|
-
md: "px-3 h-10 min-w-10 text-base rounded-md gap-2"
|
|
2251
|
-
};
|
|
2252
|
-
function buttonVariants(opts) {
|
|
2253
|
-
const v = opts?.variant ?? "solid";
|
|
2254
|
-
const s = opts?.size ?? "md";
|
|
2255
|
-
return [BASE_CLASSES, VARIANT_CLASSES[v] ?? "", SIZE_CLASSES[s] ?? ""].filter(Boolean).join(" ");
|
|
2256
|
-
}
|
|
2257
2248
|
var ButtonGroup = React32__namespace.forwardRef(
|
|
2258
2249
|
function ButtonGroup2(props, ref) {
|
|
2259
2250
|
const { className, ...rest } = props;
|
|
@@ -3279,9 +3270,18 @@ var Field = React32__namespace.forwardRef(
|
|
|
3279
3270
|
);
|
|
3280
3271
|
var TAG = { "1": gui.H1, "2": gui.H2, "3": gui.H3 };
|
|
3281
3272
|
var RAMP = {
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3273
|
+
// Tokens, not numbers. `$n` publishes as `var(--text-*, <px>)` through the
|
|
3274
|
+
// shared config, and @hanzo/design multiplies `--text-*` by `--type-scale` —
|
|
3275
|
+
// so these three lines are what lets a person's type-size setting reach a
|
|
3276
|
+
// heading at all. Written as `18` they would render identically today and
|
|
3277
|
+
// never move again.
|
|
3278
|
+
//
|
|
3279
|
+
// lineHeight is deliberately absent: gui derives it from the resolved size,
|
|
3280
|
+
// so it scales WITH the text. A fixed 24 next to an adjustable size is how
|
|
3281
|
+
// you get 32px text in a 24px box.
|
|
3282
|
+
"1": { fontSize: "$6", $lg: { fontSize: "$10", letterSpacing: -0.5 } },
|
|
3283
|
+
"2": { fontSize: "$5", $lg: { fontSize: "$8" } },
|
|
3284
|
+
"3": { fontSize: "$3", fontWeight: "600", $lg: { fontSize: "$6", fontWeight: "500" } }
|
|
3285
3285
|
};
|
|
3286
3286
|
var Heading = React32__namespace.default.forwardRef(
|
|
3287
3287
|
function Heading2({ level, ...rest }, ref) {
|
|
@@ -3649,11 +3649,11 @@ var Image = React32__namespace.default.forwardRef(
|
|
|
3649
3649
|
}
|
|
3650
3650
|
);
|
|
3651
3651
|
var SIZE5 = {
|
|
3652
|
-
xs: { height: 24, paddingHorizontal: 8, fontSize:
|
|
3653
|
-
sm: { height: 32, paddingHorizontal: 12, fontSize:
|
|
3654
|
-
md: { height: 40, paddingHorizontal: 16, fontSize:
|
|
3655
|
-
lg: { height: 48, paddingHorizontal: 16, fontSize:
|
|
3656
|
-
"2xl": { height: 56, paddingHorizontal: 16, fontSize:
|
|
3652
|
+
xs: { height: 24, paddingHorizontal: 8, fontSize: "$1", borderRadius: 4 },
|
|
3653
|
+
sm: { height: 32, paddingHorizontal: 12, fontSize: "$3", borderRadius: 6 },
|
|
3654
|
+
md: { height: 40, paddingHorizontal: 16, fontSize: "$5", borderRadius: 6 },
|
|
3655
|
+
lg: { height: 48, paddingHorizontal: 16, fontSize: "$6", borderRadius: 8 },
|
|
3656
|
+
"2xl": { height: 56, paddingHorizontal: 16, fontSize: "$7", borderRadius: 8 }
|
|
3657
3657
|
};
|
|
3658
3658
|
var VARIANT3 = {
|
|
3659
3659
|
outline: { borderWidth: 1, borderStyle: "solid" },
|
|
@@ -5880,11 +5880,11 @@ var Tag = React32__namespace.forwardRef(
|
|
|
5880
5880
|
}
|
|
5881
5881
|
);
|
|
5882
5882
|
var SIZE10 = {
|
|
5883
|
-
xs: { paddingHorizontal: 8, paddingVertical: 4, fontSize:
|
|
5884
|
-
sm: { paddingHorizontal: 12, paddingVertical: 8, fontSize:
|
|
5885
|
-
md: { paddingHorizontal: 16, paddingVertical: 8, fontSize:
|
|
5886
|
-
lg: { paddingHorizontal: 16, paddingVertical: 12, fontSize:
|
|
5887
|
-
"2xl": { paddingHorizontal: 16, paddingVertical: 12, fontSize:
|
|
5883
|
+
xs: { paddingHorizontal: 8, paddingVertical: 4, fontSize: "$1", borderRadius: 4 },
|
|
5884
|
+
sm: { paddingHorizontal: 12, paddingVertical: 8, fontSize: "$3", borderRadius: 6 },
|
|
5885
|
+
md: { paddingHorizontal: 16, paddingVertical: 8, fontSize: "$5", borderRadius: 6 },
|
|
5886
|
+
lg: { paddingHorizontal: 16, paddingVertical: 12, fontSize: "$6", borderRadius: 8 },
|
|
5887
|
+
"2xl": { paddingHorizontal: 16, paddingVertical: 12, fontSize: "$7", borderRadius: 8 }
|
|
5888
5888
|
};
|
|
5889
5889
|
var Textarea = React32__namespace.default.forwardRef(
|
|
5890
5890
|
({ size = "md", variant = "outline", className, onChange, onChangeText, ...rest }, ref) => {
|
|
@@ -7284,8 +7284,16 @@ function ActionButton({ onClick, children }) {
|
|
|
7284
7284
|
paddingVertical: 4,
|
|
7285
7285
|
backgroundColor: "var(--color-button-subtle-bg)",
|
|
7286
7286
|
cursor: "pointer",
|
|
7287
|
-
|
|
7288
|
-
|
|
7287
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
7288
|
+
gui.Text,
|
|
7289
|
+
{
|
|
7290
|
+
fontSize: 12,
|
|
7291
|
+
fontWeight: "500",
|
|
7292
|
+
color: "var(--color-button-subtle-fg)",
|
|
7293
|
+
hoverStyle: { color: "var(--color-hover)" },
|
|
7294
|
+
children
|
|
7295
|
+
}
|
|
7296
|
+
)
|
|
7289
7297
|
}
|
|
7290
7298
|
);
|
|
7291
7299
|
}
|
|
@@ -7308,18 +7316,17 @@ var GROUP_LABELS = {
|
|
|
7308
7316
|
var SHAPE = {
|
|
7309
7317
|
selected: {
|
|
7310
7318
|
borderColor: "transparent",
|
|
7311
|
-
backgroundColor: "var(--color-selected-control-bg)"
|
|
7312
|
-
color: "var(--color-selected-control-text)"
|
|
7319
|
+
backgroundColor: "var(--color-selected-control-bg)"
|
|
7313
7320
|
},
|
|
7314
7321
|
resting: {
|
|
7315
7322
|
borderColor: "var(--color-border-divider)",
|
|
7316
7323
|
backgroundColor: "var(--card)",
|
|
7317
|
-
|
|
7318
|
-
hoverStyle: { borderColor: "var(--color-hover)", color: "var(--color-hover)" }
|
|
7324
|
+
hoverStyle: { borderColor: "var(--color-hover)" }
|
|
7319
7325
|
}
|
|
7320
7326
|
};
|
|
7321
7327
|
function ExpirationPill({ exp, isSelected, onClick }) {
|
|
7322
7328
|
const shape = isSelected ? SHAPE.selected : SHAPE.resting;
|
|
7329
|
+
const dateColor = isSelected ? "var(--color-selected-control-text)" : "var(--color-text-secondary)";
|
|
7323
7330
|
const dteColor = exp.dte <= 7 && !isSelected ? "var(--color-status-warn)" : isSelected ? "var(--color-selected-control-text)" : "var(--muted-foreground)";
|
|
7324
7331
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
7325
7332
|
gui.YStack,
|
|
@@ -7338,7 +7345,7 @@ function ExpirationPill({ exp, isSelected, onClick }) {
|
|
|
7338
7345
|
cursor: "pointer",
|
|
7339
7346
|
...shape,
|
|
7340
7347
|
children: [
|
|
7341
|
-
/* @__PURE__ */ jsxRuntime.jsx(gui.Text, {
|
|
7348
|
+
/* @__PURE__ */ jsxRuntime.jsx(gui.Text, { fontSize: 12, fontWeight: "500", style: { whiteSpace: "nowrap" }, color: dateColor, children: formatExpDate(exp.date) }),
|
|
7342
7349
|
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
7343
7350
|
gui.Text,
|
|
7344
7351
|
{
|
|
@@ -7805,7 +7812,6 @@ exports.Toaster = Toaster;
|
|
|
7805
7812
|
exports.Tooltip = Tooltip;
|
|
7806
7813
|
exports.UserMenu = UserMenu;
|
|
7807
7814
|
exports.bankColors = bankColors;
|
|
7808
|
-
exports.buttonVariants = buttonVariants;
|
|
7809
7815
|
exports.cn = cn;
|
|
7810
7816
|
exports.config = config;
|
|
7811
7817
|
exports.createListCollection = createListCollection;
|
package/dist/index.d.cts
CHANGED
|
@@ -10,7 +10,7 @@ export { AccordionItem, AccordionItemContent, AccordionItemTrigger, AccordionRoo
|
|
|
10
10
|
export { Alert, AlertProps } from './alert.cjs';
|
|
11
11
|
export { Avatar, AvatarGroup, AvatarProps } from './avatar.cjs';
|
|
12
12
|
export { Badge, BadgeProps } from './badge.cjs';
|
|
13
|
-
export { Button, ButtonGroup, ButtonGroupProps, ButtonGroupRadio, ButtonGroupRadioProps, ButtonProps
|
|
13
|
+
export { Button, ButtonGroup, ButtonGroupProps, ButtonGroupRadio, ButtonGroupRadioProps, ButtonProps } from './button.cjs';
|
|
14
14
|
export { Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps } from './checkbox.cjs';
|
|
15
15
|
export { CloseButton, CloseButtonProps } from './close-button.cjs';
|
|
16
16
|
export { CollapsibleDetails, CollapsibleList } from './collapsible.cjs';
|
|
@@ -54,7 +54,7 @@ import '@tanstack/react-query';
|
|
|
54
54
|
import 'react';
|
|
55
55
|
import 'clsx';
|
|
56
56
|
import '@hanzogui/web';
|
|
57
|
-
import '@hanzogui/
|
|
57
|
+
import '@hanzogui/config/v5';
|
|
58
58
|
import '@hanzo/gui';
|
|
59
59
|
import 'react/jsx-runtime';
|
|
60
60
|
import '@hanzogui/core';
|