@moduix/react 2.2.5 → 2.4.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/components/chart/Chart.d.ts +17 -0
- package/dist/components/chart/Chart.js +156 -0
- package/dist/components/chart/Chart.module.js +18 -0
- package/dist/components/chart/Chart_module.css +138 -0
- package/dist/components/chart/index.d.ts +1 -0
- package/dist/components/chart/index.js +1 -0
- package/dist/components/json-tree-view/JsonTreeView.d.ts +8 -0
- package/dist/components/json-tree-view/JsonTreeView.js +41 -0
- package/dist/components/json-tree-view/JsonTreeView.module.js +6 -0
- package/dist/components/json-tree-view/JsonTreeView_module.css +147 -0
- package/dist/components/json-tree-view/index.d.ts +1 -0
- package/dist/components/json-tree-view/index.js +1 -0
- package/dist/components/navigation-menu/NavigationMenu.d.ts +18 -0
- package/dist/components/navigation-menu/NavigationMenu.js +139 -0
- package/dist/components/navigation-menu/NavigationMenu.module.js +36 -0
- package/dist/components/navigation-menu/NavigationMenu_module.css +469 -0
- package/dist/components/navigation-menu/index.d.ts +1 -0
- package/dist/components/navigation-menu/index.js +1 -0
- package/dist/components/toggle-group/ToggleGroup_module.css +5 -0
- package/package.json +48 -28
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { ChartValue } from '@tanstack/charts';
|
|
2
|
+
import type { RendererChartProps } from '@tanstack/charts/react/tooltip';
|
|
3
|
+
declare const Chart: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & import("@ark-ui/react/factory").PolymorphicProps & import("react").RefAttributes<HTMLElement>> & {
|
|
4
|
+
Root: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & import("@ark-ui/react/factory").PolymorphicProps & import("react").RefAttributes<HTMLElement>>;
|
|
5
|
+
Plot: <TDatum, TXValue extends ChartValue = ChartValue, TYValue extends ChartValue = ChartValue>({ className, motion, renderTooltipBody, renderer, ...props }: Omit<RendererChartProps<TDatum, TXValue, TYValue>, "renderer"> & {
|
|
6
|
+
motion?: boolean;
|
|
7
|
+
renderer?: RendererChartProps<TDatum, TXValue, TYValue>["renderer"];
|
|
8
|
+
}) => import("react").JSX.Element;
|
|
9
|
+
Header: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & import("@ark-ui/react/factory").PolymorphicProps & import("react").RefAttributes<HTMLElement>>;
|
|
10
|
+
Title: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & import("@ark-ui/react/factory").PolymorphicProps & import("react").RefAttributes<HTMLElement>>;
|
|
11
|
+
Description: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & import("@ark-ui/react/factory").PolymorphicProps & import("react").RefAttributes<HTMLElement>>;
|
|
12
|
+
Legend: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & import("@ark-ui/react/factory").PolymorphicProps & import("react").RefAttributes<HTMLElement>>;
|
|
13
|
+
LegendItem: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & import("@ark-ui/react/factory").PolymorphicProps & {
|
|
14
|
+
color?: string;
|
|
15
|
+
} & import("react").RefAttributes<HTMLElement>>;
|
|
16
|
+
};
|
|
17
|
+
export { Chart };
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
3
|
+
import { ark } from "@ark-ui/react/factory";
|
|
4
|
+
import { motion as motion_motion } from "@tanstack/charts/motion";
|
|
5
|
+
import { RendererChart } from "@tanstack/charts/react/tooltip";
|
|
6
|
+
import { svgChartRenderer } from "@tanstack/charts/svg/renderer";
|
|
7
|
+
import { clsx } from "clsx";
|
|
8
|
+
import { forwardRef } from "react";
|
|
9
|
+
import { normalizeClassName } from "../../internal/normalizeClassName.js";
|
|
10
|
+
import Chart_module from "./Chart.module.js";
|
|
11
|
+
const defaultChartRenderer = motion_motion({
|
|
12
|
+
transition: {
|
|
13
|
+
type: 'spring',
|
|
14
|
+
stiffness: 260,
|
|
15
|
+
damping: 30,
|
|
16
|
+
mass: 0.8
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
const Chart_ChartRoot = /*#__PURE__*/ forwardRef(function({ className, ...props }, ref) {
|
|
20
|
+
return /*#__PURE__*/ jsx(ark.figure, {
|
|
21
|
+
ref: ref,
|
|
22
|
+
"data-scope": "chart",
|
|
23
|
+
"data-part": "root",
|
|
24
|
+
"data-slot": "chart-root",
|
|
25
|
+
className: clsx(Chart_module.root, normalizeClassName(className)),
|
|
26
|
+
...props
|
|
27
|
+
});
|
|
28
|
+
});
|
|
29
|
+
const renderDefaultTooltipBody = ({ content })=>{
|
|
30
|
+
if ('string' == typeof content) return /*#__PURE__*/ jsx("span", {
|
|
31
|
+
"data-slot": "chart-tooltip-text",
|
|
32
|
+
children: content
|
|
33
|
+
});
|
|
34
|
+
return /*#__PURE__*/ jsxs("div", {
|
|
35
|
+
"data-slot": "chart-tooltip-body",
|
|
36
|
+
className: Chart_module.defaultTooltipContent,
|
|
37
|
+
children: [
|
|
38
|
+
content.title ? /*#__PURE__*/ jsxs("div", {
|
|
39
|
+
"data-slot": "chart-tooltip-title",
|
|
40
|
+
className: Chart_module.tooltipTitle,
|
|
41
|
+
children: [
|
|
42
|
+
content.color ? /*#__PURE__*/ jsx("span", {
|
|
43
|
+
"aria-hidden": "true",
|
|
44
|
+
"data-slot": "chart-tooltip-swatch",
|
|
45
|
+
className: Chart_module.tooltipSwatch,
|
|
46
|
+
style: {
|
|
47
|
+
backgroundColor: content.color
|
|
48
|
+
}
|
|
49
|
+
}) : null,
|
|
50
|
+
content.title
|
|
51
|
+
]
|
|
52
|
+
}) : null,
|
|
53
|
+
content.rows.length ? /*#__PURE__*/ jsx("div", {
|
|
54
|
+
"data-slot": "chart-tooltip-rows",
|
|
55
|
+
className: Chart_module.tooltipRows,
|
|
56
|
+
children: content.rows.map((row, index)=>/*#__PURE__*/ jsxs("div", {
|
|
57
|
+
"data-has-swatch": row.color ? '' : void 0,
|
|
58
|
+
"data-slot": "chart-tooltip-row",
|
|
59
|
+
className: Chart_module.tooltipRow,
|
|
60
|
+
children: [
|
|
61
|
+
row.color ? /*#__PURE__*/ jsx("span", {
|
|
62
|
+
"aria-hidden": "true",
|
|
63
|
+
"data-slot": "chart-tooltip-swatch",
|
|
64
|
+
className: Chart_module.tooltipSwatch,
|
|
65
|
+
style: {
|
|
66
|
+
backgroundColor: row.color
|
|
67
|
+
}
|
|
68
|
+
}) : null,
|
|
69
|
+
/*#__PURE__*/ jsx("span", {
|
|
70
|
+
"data-slot": "chart-tooltip-label",
|
|
71
|
+
className: Chart_module.tooltipLabel,
|
|
72
|
+
children: row.label
|
|
73
|
+
}),
|
|
74
|
+
/*#__PURE__*/ jsx("span", {
|
|
75
|
+
"data-slot": "chart-tooltip-value",
|
|
76
|
+
className: Chart_module.tooltipValue,
|
|
77
|
+
children: row.value
|
|
78
|
+
})
|
|
79
|
+
]
|
|
80
|
+
}, `${row.label}-${index}`))
|
|
81
|
+
}) : null
|
|
82
|
+
]
|
|
83
|
+
});
|
|
84
|
+
};
|
|
85
|
+
const Chart_ChartPlot = function({ className, motion = true, renderTooltipBody, renderer, ...props }) {
|
|
86
|
+
return /*#__PURE__*/ jsx(RendererChart, {
|
|
87
|
+
...props,
|
|
88
|
+
renderer: renderer ?? (motion ? defaultChartRenderer : svgChartRenderer),
|
|
89
|
+
renderTooltipBody: renderTooltipBody ?? renderDefaultTooltipBody,
|
|
90
|
+
className: clsx(Chart_module.plot, normalizeClassName(className))
|
|
91
|
+
});
|
|
92
|
+
};
|
|
93
|
+
const Chart_ChartHeader = /*#__PURE__*/ forwardRef(function({ className, ...props }, ref) {
|
|
94
|
+
return /*#__PURE__*/ jsx(ark.figcaption, {
|
|
95
|
+
ref: ref,
|
|
96
|
+
"data-scope": "chart",
|
|
97
|
+
"data-part": "header",
|
|
98
|
+
"data-slot": "chart-header",
|
|
99
|
+
className: clsx(Chart_module.header, normalizeClassName(className)),
|
|
100
|
+
...props
|
|
101
|
+
});
|
|
102
|
+
});
|
|
103
|
+
const Chart_ChartTitle = /*#__PURE__*/ forwardRef(function({ className, ...props }, ref) {
|
|
104
|
+
return /*#__PURE__*/ jsx(ark.h3, {
|
|
105
|
+
ref: ref,
|
|
106
|
+
"data-scope": "chart",
|
|
107
|
+
"data-part": "title",
|
|
108
|
+
"data-slot": "chart-title",
|
|
109
|
+
className: clsx(Chart_module.title, normalizeClassName(className)),
|
|
110
|
+
...props
|
|
111
|
+
});
|
|
112
|
+
});
|
|
113
|
+
const Chart_ChartDescription = /*#__PURE__*/ forwardRef(function({ className, ...props }, ref) {
|
|
114
|
+
return /*#__PURE__*/ jsx(ark.p, {
|
|
115
|
+
ref: ref,
|
|
116
|
+
"data-scope": "chart",
|
|
117
|
+
"data-part": "description",
|
|
118
|
+
"data-slot": "chart-description",
|
|
119
|
+
className: clsx(Chart_module.description, normalizeClassName(className)),
|
|
120
|
+
...props
|
|
121
|
+
});
|
|
122
|
+
});
|
|
123
|
+
const Chart_ChartLegend = /*#__PURE__*/ forwardRef(function({ className, ...props }, ref) {
|
|
124
|
+
return /*#__PURE__*/ jsx(ark.ul, {
|
|
125
|
+
ref: ref,
|
|
126
|
+
"data-scope": "chart",
|
|
127
|
+
"data-part": "legend",
|
|
128
|
+
"data-slot": "chart-legend",
|
|
129
|
+
className: clsx(Chart_module.legend, normalizeClassName(className)),
|
|
130
|
+
...props
|
|
131
|
+
});
|
|
132
|
+
});
|
|
133
|
+
const Chart_ChartLegendItem = /*#__PURE__*/ forwardRef(function({ className, color, style, ...props }, ref) {
|
|
134
|
+
return /*#__PURE__*/ jsx(ark.li, {
|
|
135
|
+
ref: ref,
|
|
136
|
+
"data-scope": "chart",
|
|
137
|
+
"data-part": "legend-item",
|
|
138
|
+
"data-slot": "chart-legend-item",
|
|
139
|
+
className: clsx(Chart_module.legendItem, normalizeClassName(className)),
|
|
140
|
+
style: color ? {
|
|
141
|
+
'--moduix-chart-legend-indicator-color': color,
|
|
142
|
+
...style
|
|
143
|
+
} : style,
|
|
144
|
+
...props
|
|
145
|
+
});
|
|
146
|
+
});
|
|
147
|
+
const Chart = Object.assign(Chart_ChartRoot, {
|
|
148
|
+
Root: Chart_ChartRoot,
|
|
149
|
+
Plot: Chart_ChartPlot,
|
|
150
|
+
Header: Chart_ChartHeader,
|
|
151
|
+
Title: Chart_ChartTitle,
|
|
152
|
+
Description: Chart_ChartDescription,
|
|
153
|
+
Legend: Chart_ChartLegend,
|
|
154
|
+
LegendItem: Chart_ChartLegendItem
|
|
155
|
+
});
|
|
156
|
+
export { Chart };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import "./Chart_module.css";
|
|
2
|
+
const Chart_module = {
|
|
3
|
+
root: "root-zPwhEi",
|
|
4
|
+
plot: "plot-Ww_CVs",
|
|
5
|
+
header: "header-_H34PS",
|
|
6
|
+
title: "title-zKDqX9",
|
|
7
|
+
description: "description-jUUbjj",
|
|
8
|
+
legend: "legend-iiFN8q",
|
|
9
|
+
legendItem: "legendItem-B4_u7q",
|
|
10
|
+
defaultTooltipContent: "defaultTooltipContent-EbORpR",
|
|
11
|
+
tooltipRows: "tooltipRows-x57rNP",
|
|
12
|
+
tooltipTitle: "tooltipTitle-rt8wqo",
|
|
13
|
+
tooltipRow: "tooltipRow-ZRjXCf",
|
|
14
|
+
tooltipSwatch: "tooltipSwatch-a9pNfu",
|
|
15
|
+
tooltipLabel: "tooltipLabel-gfLt3N",
|
|
16
|
+
tooltipValue: "tooltipValue-HkEHds"
|
|
17
|
+
};
|
|
18
|
+
export default Chart_module;
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
@layer moduix.components {
|
|
2
|
+
.root-zPwhEi {
|
|
3
|
+
box-sizing: border-box;
|
|
4
|
+
gap: var(--moduix-chart-gap, var(--moduix-spacing-5));
|
|
5
|
+
width: 100%;
|
|
6
|
+
min-width: 0;
|
|
7
|
+
padding: var(--moduix-chart-padding, var(--moduix-spacing-5));
|
|
8
|
+
border: var(--moduix-chart-border-width, var(--moduix-border-width-sm)) solid
|
|
9
|
+
var(--moduix-chart-border-color, var(--moduix-color-border));
|
|
10
|
+
border-radius: var(--moduix-chart-radius, var(--moduix-radius-lg));
|
|
11
|
+
background-color: var(--moduix-chart-bg, var(--moduix-color-card));
|
|
12
|
+
box-shadow: var(--moduix-chart-shadow, var(--moduix-shadow-sm));
|
|
13
|
+
color: var(--moduix-color-card-foreground);
|
|
14
|
+
margin: 0;
|
|
15
|
+
display: grid;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.plot-Ww_CVs {
|
|
19
|
+
border-radius: var(--moduix-chart-plot-radius, var(--moduix-radius-md));
|
|
20
|
+
min-width: 0;
|
|
21
|
+
color: var(--moduix-chart-axis-color, var(--moduix-color-muted-foreground));
|
|
22
|
+
--ts-chart-tooltip-background: var(--moduix-chart-tooltip-bg, var(--moduix-color-popover));
|
|
23
|
+
--ts-chart-tooltip-border: var(--moduix-chart-tooltip-border-width, var(--moduix-border-width-sm))
|
|
24
|
+
solid var(--moduix-chart-tooltip-border-color, var(--moduix-color-border));
|
|
25
|
+
--ts-chart-tooltip-border-radius: var(--moduix-chart-tooltip-radius, var(--moduix-radius-md));
|
|
26
|
+
--ts-chart-tooltip-color: var(--moduix-chart-tooltip-color, var(--moduix-color-popover-foreground));
|
|
27
|
+
--ts-chart-tooltip-font: var(--moduix-weight-medium)
|
|
28
|
+
var(--moduix-chart-tooltip-font-size, var(--moduix-text-xs)) /
|
|
29
|
+
var(--moduix-chart-tooltip-line-height, var(--moduix-line-height-text-xs))
|
|
30
|
+
var(--moduix-font-sans);
|
|
31
|
+
--ts-chart-tooltip-padding: var(--moduix-chart-tooltip-padding, var(--moduix-spacing-3));
|
|
32
|
+
--ts-chart-tooltip-shadow: var(--moduix-chart-tooltip-shadow, var(--moduix-shadow-lg));
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.plot-Ww_CVs .ts-chart {
|
|
36
|
+
border-radius: var(--moduix-chart-plot-radius, var(--moduix-radius-md));
|
|
37
|
+
outline: none;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.plot-Ww_CVs .ts-chart:focus-visible {
|
|
41
|
+
outline: var(--moduix-chart-focus-ring-width, var(--moduix-focus-ring-width, var(--moduix-border-width-md)))
|
|
42
|
+
solid var(--moduix-chart-focus-ring-color, var(--moduix-color-ring));
|
|
43
|
+
outline-offset: var(--moduix-chart-focus-ring-offset, var(--moduix-focus-ring-offset));
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.header-_H34PS {
|
|
47
|
+
gap: var(--moduix-spacing-1);
|
|
48
|
+
display: grid;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.title-zKDqX9 {
|
|
52
|
+
color: currentColor;
|
|
53
|
+
font-size: var(--moduix-text-lg);
|
|
54
|
+
font-weight: var(--moduix-weight-semibold);
|
|
55
|
+
line-height: var(--moduix-line-height-text-lg);
|
|
56
|
+
margin: 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.description-jUUbjj {
|
|
60
|
+
color: var(--moduix-color-muted-foreground);
|
|
61
|
+
font-size: var(--moduix-text-sm);
|
|
62
|
+
line-height: var(--moduix-line-height-text-sm);
|
|
63
|
+
margin: 0;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.legend-iiFN8q {
|
|
67
|
+
gap: var(--moduix-spacing-3);
|
|
68
|
+
flex-wrap: wrap;
|
|
69
|
+
margin: 0;
|
|
70
|
+
padding: 0;
|
|
71
|
+
list-style: none;
|
|
72
|
+
display: flex;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.legendItem-B4_u7q {
|
|
76
|
+
align-items: center;
|
|
77
|
+
gap: var(--moduix-spacing-2);
|
|
78
|
+
color: var(--moduix-color-muted-foreground);
|
|
79
|
+
font-size: var(--moduix-text-sm);
|
|
80
|
+
line-height: var(--moduix-line-height-text-sm);
|
|
81
|
+
display: inline-flex;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.legendItem-B4_u7q:before {
|
|
85
|
+
width: var(--moduix-spacing-2-5);
|
|
86
|
+
height: var(--moduix-spacing-2-5);
|
|
87
|
+
border-radius: var(--moduix-radius-full);
|
|
88
|
+
background-color: var(--moduix-chart-legend-indicator-color, var(--moduix-color-muted-foreground));
|
|
89
|
+
box-shadow: inset 0 0 0 var(--moduix-border-width-sm) #00000014;
|
|
90
|
+
content: "";
|
|
91
|
+
flex: none;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.defaultTooltipContent-EbORpR, .tooltipRows-x57rNP {
|
|
95
|
+
gap: var(--moduix-spacing-1);
|
|
96
|
+
display: grid;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.tooltipTitle-rt8wqo {
|
|
100
|
+
align-items: center;
|
|
101
|
+
gap: var(--moduix-spacing-2);
|
|
102
|
+
color: var(--moduix-color-popover-foreground);
|
|
103
|
+
font-weight: var(--moduix-weight-semibold);
|
|
104
|
+
display: flex;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.tooltipRow-ZRjXCf {
|
|
108
|
+
align-items: center;
|
|
109
|
+
column-gap: var(--moduix-spacing-2);
|
|
110
|
+
grid-template-columns: minmax(0, 1fr) auto;
|
|
111
|
+
display: grid;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.tooltipRow-ZRjXCf[data-has-swatch] {
|
|
115
|
+
grid-template-columns: var(--moduix-spacing-2-5) minmax(0, 1fr) auto;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.tooltipSwatch-a9pNfu {
|
|
119
|
+
width: var(--moduix-spacing-2-5);
|
|
120
|
+
height: var(--moduix-spacing-2-5);
|
|
121
|
+
border-radius: var(--moduix-radius-full);
|
|
122
|
+
box-shadow: inset 0 0 0 var(--moduix-border-width-sm) #00000014;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.tooltipLabel-gfLt3N {
|
|
126
|
+
min-width: 0;
|
|
127
|
+
color: var(--moduix-color-muted-foreground);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.tooltipValue-HkEHds {
|
|
131
|
+
color: var(--moduix-color-popover-foreground);
|
|
132
|
+
font-weight: var(--moduix-weight-semibold);
|
|
133
|
+
font-variant-numeric: tabular-nums;
|
|
134
|
+
text-align: right;
|
|
135
|
+
white-space: nowrap;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Chart.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./Chart.js";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { JsonTreeView as JsonTreeViewPrimitive, useJsonTreeView } from '@ark-ui/react/json-tree-view';
|
|
2
|
+
declare const JsonTreeView: import("react").ForwardRefExoticComponent<Omit<JsonTreeViewPrimitive.RootProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>> & {
|
|
3
|
+
Root: import("react").ForwardRefExoticComponent<Omit<JsonTreeViewPrimitive.RootProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
4
|
+
RootProvider: import("react").ForwardRefExoticComponent<Omit<JsonTreeViewPrimitive.RootProviderProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
5
|
+
Tree: import("react").ForwardRefExoticComponent<Omit<JsonTreeViewPrimitive.TreeProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
6
|
+
};
|
|
7
|
+
export { JsonTreeView, useJsonTreeView };
|
|
8
|
+
export type { JsonTreeViewRootProps, JsonTreeViewRootProviderProps, JsonTreeViewTreeProps, UseJsonTreeViewProps, UseJsonTreeViewReturn, } from '@ark-ui/react/json-tree-view';
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import { JsonTreeView, useJsonTreeView } from "@ark-ui/react/json-tree-view";
|
|
4
|
+
import { clsx } from "clsx";
|
|
5
|
+
import { forwardRef } from "react";
|
|
6
|
+
import { ChevronRightIcon } from "../../internal/icons/ui/index.js";
|
|
7
|
+
import { normalizeClassName } from "../../internal/normalizeClassName.js";
|
|
8
|
+
import JsonTreeView_module from "./JsonTreeView.module.js";
|
|
9
|
+
const JsonTreeView_JsonTreeViewRoot = /*#__PURE__*/ forwardRef(function({ className, ...props }, ref) {
|
|
10
|
+
return /*#__PURE__*/ jsx(JsonTreeView.Root, {
|
|
11
|
+
ref: ref,
|
|
12
|
+
className: clsx(JsonTreeView_module.root, normalizeClassName(className)),
|
|
13
|
+
...props,
|
|
14
|
+
"data-slot": "json-tree-view-root"
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
const JsonTreeView_JsonTreeViewRootProvider = /*#__PURE__*/ forwardRef(function({ className, ...props }, ref) {
|
|
18
|
+
return /*#__PURE__*/ jsx(JsonTreeView.RootProvider, {
|
|
19
|
+
ref: ref,
|
|
20
|
+
className: clsx(JsonTreeView_module.root, normalizeClassName(className)),
|
|
21
|
+
...props,
|
|
22
|
+
"data-slot": "json-tree-view-root-provider"
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
const JsonTreeView_JsonTreeViewTree = /*#__PURE__*/ forwardRef(function({ arrow, className, ...props }, ref) {
|
|
26
|
+
return /*#__PURE__*/ jsx(JsonTreeView.Tree, {
|
|
27
|
+
ref: ref,
|
|
28
|
+
arrow: arrow ?? /*#__PURE__*/ jsx(ChevronRightIcon, {
|
|
29
|
+
"aria-hidden": "true"
|
|
30
|
+
}),
|
|
31
|
+
className: clsx(JsonTreeView_module.tree, normalizeClassName(className)),
|
|
32
|
+
...props,
|
|
33
|
+
"data-slot": "json-tree-view-tree"
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
const JsonTreeView_JsonTreeView = Object.assign(JsonTreeView_JsonTreeViewRoot, {
|
|
37
|
+
Root: JsonTreeView_JsonTreeViewRoot,
|
|
38
|
+
RootProvider: JsonTreeView_JsonTreeViewRootProvider,
|
|
39
|
+
Tree: JsonTreeView_JsonTreeViewTree
|
|
40
|
+
});
|
|
41
|
+
export { JsonTreeView_JsonTreeView as JsonTreeView, useJsonTreeView };
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
@layer moduix.components {
|
|
2
|
+
.root-jp1ege {
|
|
3
|
+
box-sizing: border-box;
|
|
4
|
+
width: 100%;
|
|
5
|
+
min-width: 0;
|
|
6
|
+
color: var(--moduix-color-foreground);
|
|
7
|
+
font-family: var(--moduix-font-mono);
|
|
8
|
+
font-size: var(--moduix-text-xs);
|
|
9
|
+
line-height: var(--moduix-line-height-text-xs);
|
|
10
|
+
flex-direction: column;
|
|
11
|
+
display: flex;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.root-jp1ege[data-disabled] {
|
|
15
|
+
opacity: var(--moduix-opacity-disabled);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.tree-a99RSA, .root-jp1ege :where([data-scope="json-tree-view"][data-part="branch"]) {
|
|
19
|
+
gap: var(--moduix-spacing-1);
|
|
20
|
+
flex-direction: column;
|
|
21
|
+
min-width: 0;
|
|
22
|
+
display: flex;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.root-jp1ege :where([data-scope="json-tree-view"][data-part="branch-control"], [data-scope="json-tree-view"][data-part="item"]) {
|
|
26
|
+
box-sizing: border-box;
|
|
27
|
+
width: 100%;
|
|
28
|
+
min-width: 0;
|
|
29
|
+
min-height: calc(var(--moduix-line-height-text-xs) + (var(--moduix-spacing-0-5) * 2));
|
|
30
|
+
align-items: center;
|
|
31
|
+
gap: var(--moduix-spacing-0-5);
|
|
32
|
+
border-radius: var(--moduix-radius-xs);
|
|
33
|
+
padding-block: var(--moduix-spacing-0-5);
|
|
34
|
+
color: inherit;
|
|
35
|
+
cursor: pointer;
|
|
36
|
+
font: inherit;
|
|
37
|
+
outline: var(--moduix-border-width-sm) solid transparent;
|
|
38
|
+
outline-offset: calc(var(--moduix-border-width-sm) * -1);
|
|
39
|
+
text-align: start;
|
|
40
|
+
transition: background-color var(--moduix-transition-default),
|
|
41
|
+
outline-color var(--moduix-transition-default);
|
|
42
|
+
-webkit-user-select: none;
|
|
43
|
+
user-select: none;
|
|
44
|
+
background-color: #0000;
|
|
45
|
+
border: 0;
|
|
46
|
+
padding-inline-start: calc(var(--moduix-spacing-1) + ((var(--depth, 1) - 1) * 1rem));
|
|
47
|
+
padding-inline-end: var(--moduix-spacing-1);
|
|
48
|
+
display: flex;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.root-jp1ege :where([data-scope="json-tree-view"][data-part="branch-control"], [data-scope="json-tree-view"][data-part="item"]):not([data-disabled]):hover, .root-jp1ege :where([data-scope="json-tree-view"][data-part="branch-control"], [data-scope="json-tree-view"][data-part="item"])[data-selected] {
|
|
52
|
+
background-color: color-mix(in oklab,
|
|
53
|
+
var(--moduix-color-accent) 72%,
|
|
54
|
+
var(--moduix-color-background));
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.root-jp1ege :where([data-scope="json-tree-view"][data-part="branch-control"], [data-scope="json-tree-view"][data-part="item"]):focus-visible, .root-jp1ege :where([data-scope="json-tree-view"][data-part="branch-control"], [data-scope="json-tree-view"][data-part="item"])[data-focus] {
|
|
58
|
+
outline-color: var(--moduix-color-ring);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.root-jp1ege :where([data-scope="json-tree-view"][data-part="branch-control"], [data-scope="json-tree-view"][data-part="item"])[data-disabled] {
|
|
62
|
+
color: var(--moduix-color-muted-foreground);
|
|
63
|
+
cursor: default;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.root-jp1ege :where([data-scope="json-tree-view"][data-part="branch-indicator"]) {
|
|
67
|
+
width: var(--moduix-spacing-3);
|
|
68
|
+
height: var(--moduix-spacing-3);
|
|
69
|
+
flex: 0 0 var(--moduix-spacing-3);
|
|
70
|
+
color: color-mix(in oklab,
|
|
71
|
+
var(--moduix-color-muted-foreground) 42%,
|
|
72
|
+
var(--moduix-color-foreground));
|
|
73
|
+
transition: transform var(--moduix-transition-default);
|
|
74
|
+
justify-content: center;
|
|
75
|
+
align-items: center;
|
|
76
|
+
display: inline-flex;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.root-jp1ege :where([data-scope="json-tree-view"][data-part="branch-indicator"])[data-state="open"] {
|
|
80
|
+
transform: rotate(90deg);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.root-jp1ege :where([data-scope="json-tree-view"][data-part="branch-indicator"]) svg {
|
|
84
|
+
width: var(--moduix-spacing-3);
|
|
85
|
+
height: var(--moduix-spacing-3);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.root-jp1ege :where([data-scope="json-tree-view"][data-part="branch-text"], [data-scope="json-tree-view"][data-part="item-text"]) {
|
|
89
|
+
overflow-wrap: anywhere;
|
|
90
|
+
min-width: 0;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.root-jp1ege :where([data-scope="json-tree-view"][data-part="branch-content"]) {
|
|
94
|
+
gap: var(--moduix-spacing-1);
|
|
95
|
+
flex-direction: column;
|
|
96
|
+
min-width: 0;
|
|
97
|
+
display: flex;
|
|
98
|
+
overflow: hidden;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.root-jp1ege :where([data-kind="key"]) {
|
|
102
|
+
color: color-mix(in oklab, var(--moduix-color-chart-1) 72%, var(--moduix-color-foreground));
|
|
103
|
+
font-weight: var(--moduix-weight-medium);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.root-jp1ege :where([data-kind="colon"], [data-kind="brace"], [data-kind="preview-text"]) {
|
|
107
|
+
color: var(--moduix-color-muted-foreground);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.root-jp1ege :where([data-kind="brace"]) {
|
|
111
|
+
font-weight: var(--moduix-weight-medium);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.root-jp1ege :where([data-kind="preview"][data-type="string"]) {
|
|
115
|
+
color: color-mix(in oklab, var(--moduix-color-success) 78%, var(--moduix-color-foreground));
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.root-jp1ege :where([data-kind="preview"][data-type="number"], [data-kind="preview"][data-type="bigint"]) {
|
|
119
|
+
color: color-mix(in oklab, var(--moduix-color-chart-3) 78%, var(--moduix-color-foreground));
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.root-jp1ege :where([data-kind="preview"][data-type="boolean"]) {
|
|
123
|
+
color: color-mix(in oklab, var(--moduix-color-chart-4) 74%, var(--moduix-color-foreground));
|
|
124
|
+
font-weight: var(--moduix-weight-medium);
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.root-jp1ege :where([data-kind="preview"][data-type="null"], [data-kind="preview"][data-type="undefined"]) {
|
|
128
|
+
color: var(--moduix-color-muted-foreground);
|
|
129
|
+
font-style: italic;
|
|
130
|
+
font-weight: var(--moduix-weight-medium);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.root-jp1ege :where([data-kind="preview"][data-type="error"], [data-kind="error-stack"], [data-kind="operator"]) {
|
|
134
|
+
color: var(--moduix-color-destructive);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.root-jp1ege :where([data-kind="preview"][data-type="function"], [data-kind="function-type"], [data-kind="function-body"]) {
|
|
138
|
+
color: color-mix(in oklab, var(--moduix-color-chart-5) 72%, var(--moduix-color-foreground));
|
|
139
|
+
font-style: italic;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.root-jp1ege :where([data-kind="constructor"]) {
|
|
143
|
+
color: var(--moduix-color-muted-foreground);
|
|
144
|
+
font-weight: var(--moduix-weight-medium);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './JsonTreeView.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./JsonTreeView.js";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { NavigationMenu as NavigationMenuPrimitive, useNavigationMenu, useNavigationMenuContext } from '@ark-ui/react/navigation-menu';
|
|
2
|
+
declare const NavigationMenu: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.RootProps & import("react").RefAttributes<HTMLElement>, "ref"> & import("react").RefAttributes<HTMLElement>> & {
|
|
3
|
+
Root: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.RootProps & import("react").RefAttributes<HTMLElement>, "ref"> & import("react").RefAttributes<HTMLElement>>;
|
|
4
|
+
RootProvider: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.RootProviderProps & import("react").RefAttributes<HTMLElement>, "ref"> & import("react").RefAttributes<HTMLElement>>;
|
|
5
|
+
Context: (props: NavigationMenuPrimitive.ContextProps) => import("react").ReactNode;
|
|
6
|
+
List: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.ListProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
7
|
+
Item: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.ItemProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
8
|
+
Trigger: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.TriggerProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
|
9
|
+
Content: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.ContentProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
10
|
+
Link: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.LinkProps & import("react").RefAttributes<HTMLAnchorElement>, "ref"> & import("react").RefAttributes<HTMLAnchorElement>>;
|
|
11
|
+
Indicator: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.IndicatorProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
12
|
+
ItemIndicator: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.ItemIndicatorProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
13
|
+
Arrow: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.ArrowProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
14
|
+
ViewportPositioner: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.ViewportPositionerProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
15
|
+
Viewport: import("react").ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.ViewportProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
|
16
|
+
useNavigationMenu: (props?: import("@ark-ui/react/navigation-menu").UseNavigationMenuProps) => import("@ark-ui/react/navigation-menu").UseNavigationMenuReturn;
|
|
17
|
+
};
|
|
18
|
+
export { NavigationMenu, useNavigationMenu, useNavigationMenuContext };
|