@noxickon/onyx 6.6.0 → 6.7.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.
@@ -6,6 +6,12 @@ export declare const dataTableVariants: import('tailwind-variants').TVReturnType
6
6
  toolbar: string;
7
7
  };
8
8
  };
9
+ stickyHeader: {
10
+ true: {
11
+ scrollScrollbar: string;
12
+ };
13
+ false: {};
14
+ };
9
15
  sortActive: {
10
16
  true: {
11
17
  headSort: string;
@@ -36,6 +42,8 @@ export declare const dataTableVariants: import('tailwind-variants').TVReturnType
36
42
  filterChipsRow: string;
37
43
  selectionActions: string;
38
44
  scroll: string;
45
+ scrollViewport: string;
46
+ scrollScrollbar: string;
39
47
  selectCol: string;
40
48
  frozenHead: string;
41
49
  frozenCell: string[];
@@ -52,6 +60,7 @@ export declare const dataTableVariants: import('tailwind-variants').TVReturnType
52
60
  footer: string;
53
61
  spinner: string;
54
62
  empty: string;
63
+ virtualSpacerCell: string;
55
64
  configPanel: string;
56
65
  configTitle: string;
57
66
  configList: string;
@@ -72,6 +81,12 @@ export declare const dataTableVariants: import('tailwind-variants').TVReturnType
72
81
  toolbar: string;
73
82
  };
74
83
  };
84
+ stickyHeader: {
85
+ true: {
86
+ scrollScrollbar: string;
87
+ };
88
+ false: {};
89
+ };
75
90
  sortActive: {
76
91
  true: {
77
92
  headSort: string;
@@ -102,6 +117,8 @@ export declare const dataTableVariants: import('tailwind-variants').TVReturnType
102
117
  filterChipsRow: string;
103
118
  selectionActions: string;
104
119
  scroll: string;
120
+ scrollViewport: string;
121
+ scrollScrollbar: string;
105
122
  selectCol: string;
106
123
  frozenHead: string;
107
124
  frozenCell: string[];
@@ -118,6 +135,7 @@ export declare const dataTableVariants: import('tailwind-variants').TVReturnType
118
135
  footer: string;
119
136
  spinner: string;
120
137
  empty: string;
138
+ virtualSpacerCell: string;
121
139
  configPanel: string;
122
140
  configTitle: string;
123
141
  configList: string;
@@ -138,6 +156,12 @@ export declare const dataTableVariants: import('tailwind-variants').TVReturnType
138
156
  toolbar: string;
139
157
  };
140
158
  };
159
+ stickyHeader: {
160
+ true: {
161
+ scrollScrollbar: string;
162
+ };
163
+ false: {};
164
+ };
141
165
  sortActive: {
142
166
  true: {
143
167
  headSort: string;
@@ -168,6 +192,8 @@ export declare const dataTableVariants: import('tailwind-variants').TVReturnType
168
192
  filterChipsRow: string;
169
193
  selectionActions: string;
170
194
  scroll: string;
195
+ scrollViewport: string;
196
+ scrollScrollbar: string;
171
197
  selectCol: string;
172
198
  frozenHead: string;
173
199
  frozenCell: string[];
@@ -184,6 +210,7 @@ export declare const dataTableVariants: import('tailwind-variants').TVReturnType
184
210
  footer: string;
185
211
  spinner: string;
186
212
  empty: string;
213
+ virtualSpacerCell: string;
187
214
  configPanel: string;
188
215
  configTitle: string;
189
216
  configList: string;
@@ -15,7 +15,9 @@ var t = e({
15
15
  collapseClip: "overflow-hidden",
16
16
  filterChipsRow: "flex min-h-[calc(var(--control-h-md)+1.25rem+1px)] flex-wrap items-center gap-2 border-b border-line px-3.5 py-2.5",
17
17
  selectionActions: "flex min-w-0 items-center gap-3",
18
- scroll: "relative w-full overflow-auto [-webkit-overflow-scrolling:touch]",
18
+ scroll: "relative w-full",
19
+ scrollViewport: "max-h-(--ox-data-table-max-h) [-webkit-overflow-scrolling:touch]",
20
+ scrollScrollbar: "",
19
21
  selectCol: "pointer-coarse:w-11",
20
22
  frozenHead: "pointer-coarse:sticky pointer-coarse:left-(--ox-frozen-left) pointer-coarse:z-30 pointer-coarse:bg-card",
21
23
  frozenCell: [
@@ -45,6 +47,7 @@ var t = e({
45
47
  footer: "flex items-center justify-center gap-2 border-t border-line py-2.5 text-xs text-fg-subtle",
46
48
  spinner: "size-3.5 animate-spin rounded-full border-2 border-line border-t-primary",
47
49
  empty: "px-6 py-12 text-center text-body text-fg-subtle pointer-coarse:px-6 pointer-coarse:py-12",
50
+ virtualSpacerCell: "border-0 p-0",
48
51
  configPanel: "flex w-64 flex-col",
49
52
  configTitle: "px-2 pt-1.5 pb-2 text-body font-semibold text-fg",
50
53
  configList: "flex flex-col gap-0.5 py-1",
@@ -64,6 +67,10 @@ var t = e({
64
67
  comfortable: {},
65
68
  compact: { toolbar: "min-h-12 py-2" }
66
69
  },
70
+ stickyHeader: {
71
+ true: { scrollScrollbar: "data-[orientation=vertical]:pt-[calc(var(--ox-data-table-head-h,0px)+2px)]" },
72
+ false: {}
73
+ },
67
74
  sortActive: {
68
75
  true: {
69
76
  headSort: "text-fg",
@@ -3,7 +3,7 @@ import { DataTableVariants } from './DataTable.styles';
3
3
  type DataTableDensity = NonNullable<DataTableVariants['density']>;
4
4
  type DataTableAlign = 'start' | 'center' | 'end';
5
5
  type SortDirection = 'asc' | 'desc';
6
- type DataTablePaginationMode = 'pages' | 'infinite';
6
+ type DataTablePaginationMode = 'pages' | 'infinite' | 'virtual';
7
7
  type DataTablePaginationLayout = 'end' | 'center' | 'split';
8
8
  type ColumnAccessor<TRow> = keyof TRow | ((row: TRow) => unknown);
9
9
  interface OxDataTableColumn<TRow> {
@@ -47,6 +47,7 @@ interface OxDataTableProps<TRow> {
47
47
  density?: DataTableDensity;
48
48
  emptyState?: ReactNode;
49
49
  endReachedThreshold?: number;
50
+ estimateSize?: (index: number) => number;
50
51
  frozenColumns?: string[];
51
52
  getRowCanExpand?: (row: TRow) => boolean;
52
53
  getRowId: (row: TRow) => string;
@@ -60,6 +61,7 @@ interface OxDataTableProps<TRow> {
60
61
  onPageChange?: (page: number) => void;
61
62
  onSelectionChange?: (ids: Set<string>) => void;
62
63
  onSortChange?: (columnId: string, direction: SortDirection | null) => void;
64
+ overscan?: number;
63
65
  page?: number;
64
66
  pageSize?: number;
65
67
  paginationMode?: DataTablePaginationMode;
@@ -11,9 +11,9 @@ function a(a) {
11
11
  if (o[13] !== s || o[14] !== c || o[15] !== l || o[16] !== u || o[17] !== w || o[18] !== C || o[19] !== S || o[20] !== b || o[21] !== x || o[22] !== d || o[23] !== f || o[24] !== g || o[25] !== _ || o[26] !== v) {
12
12
  let t = e();
13
13
  T = /* @__PURE__ */ r(i.Root, {
14
+ "data-ox-slot": "scroll-area",
14
15
  ...d,
15
16
  className: t.root({ class: c }),
16
- "data-ox-slot": "scroll-area",
17
17
  children: [
18
18
  /* @__PURE__ */ n(i.Viewport, {
19
19
  className: t.viewport({ class: _ }),
@@ -1,5 +1,5 @@
1
1
  import { OxTableBodyProps, OxTableCaptionProps, OxTableCellProps, OxTableExpandedRowProps, OxTableExpandTriggerProps, OxTableFooterProps, OxTableHeadProps, OxTableProps, OxTableRowProps, OxTableSectionProps, OxTableSelectAllCellProps, OxTableSelectCellProps } from './Table.types';
2
- declare function OxTableRoot({ children, className, defaultExpandedRows, defaultSelectedRows, density, dividers, hover, onSelectedChange, selectable, selectedRows, stickyHeader, stripe, unwrapped, wrapperClassName, ...props }: OxTableProps): import("react").JSX.Element;
2
+ declare function OxTableRoot({ children, className, defaultExpandedRows, defaultSelectedRows, density, dividers, expandedRows, hover, onExpandedChange, onSelectedChange, selectable, selectableRowIds, selectedRows, stickyHeader, stripe, unwrapped, wrapperClassName, ...props }: OxTableProps): import("react").JSX.Element;
3
3
  declare function OxTableHeader({ children, className, ...props }: OxTableSectionProps): import("react").JSX.Element;
4
4
  declare function OxTableBody({ children, className, ...props }: OxTableBodyProps): import("react").JSX.Element;
5
5
  declare function OxTableFooter({ children, className, ...props }: OxTableFooterProps): import("react").JSX.Element;
@@ -29,86 +29,92 @@ function y() {
29
29
  }, e[4] = i, e[5] = p), p;
30
30
  }
31
31
  function b(e) {
32
- let t = a(54), n, o, s, p, m, h, g, _, v, b, x, S, C, w, T;
33
- t[0] === e ? (n = t[1], o = t[2], s = t[3], p = t[4], m = t[5], h = t[6], g = t[7], _ = t[8], v = t[9], b = t[10], x = t[11], S = t[12], C = t[13], w = t[14], T = t[15]) : ({children: n, className: o, defaultExpandedRows: s, defaultSelectedRows: p, density: _, dividers: v, hover: b, onSelectedChange: m, selectable: x, selectedRows: g, stickyHeader: S, stripe: C, unwrapped: w, wrapperClassName: T, ...h} = e, t[0] = e, t[1] = n, t[2] = o, t[3] = s, t[4] = p, t[5] = m, t[6] = h, t[7] = g, t[8] = _, t[9] = v, t[10] = b, t[11] = x, t[12] = S, t[13] = C, t[14] = w, t[15] = T);
34
- let E = _ === void 0 ? "comfortable" : _, D = v === void 0 ? "rows" : v, O = b === void 0 ? !0 : b, k = x === void 0 ? !1 : x, A = S === void 0 ? !0 : S, j = C === void 0 ? !1 : C, ee = w === void 0 ? !1 : w, M = c(), te = i({ density: E }), N;
35
- t[16] === p ? N = t[17] : (N = p ?? /* @__PURE__ */ new Set(), t[16] = p, t[17] = N);
36
- let P;
37
- t[18] !== m || t[19] !== g || t[20] !== N ? (P = {
38
- prop: g,
39
- defaultProp: N,
40
- onChange: m
41
- }, t[18] = m, t[19] = g, t[20] = N, t[21] = P) : P = t[21];
42
- let [F, I] = r(P), L;
43
- t[22] === s ? L = t[23] : (L = () => s ?? /* @__PURE__ */ new Set(), t[22] = s, t[23] = L);
44
- let [R, ne] = u(L), { ids: z, register: B } = y(), [V, re] = u(0), H = l(0), U;
45
- t[24] === Symbol.for("react.memo_cache_sentinel") ? (U = () => (H.current += 1, re(H.current), () => {
46
- --H.current, re(H.current);
47
- }), t[24] = U) : U = t[24];
48
- let ie = U, W;
49
- t[25] === I ? W = t[26] : (W = (e) => {
50
- I((t) => {
32
+ let t = a(63), n, o, s, p, m, h, g, _, v, b, x, S, C, w, T, E, D, O;
33
+ t[0] === e ? (n = t[1], o = t[2], s = t[3], p = t[4], m = t[5], h = t[6], g = t[7], _ = t[8], v = t[9], b = t[10], x = t[11], S = t[12], C = t[13], w = t[14], T = t[15], E = t[16], D = t[17], O = t[18]) : ({children: n, className: o, defaultExpandedRows: s, defaultSelectedRows: p, density: x, dividers: S, expandedRows: m, hover: C, onExpandedChange: h, onSelectedChange: g, selectable: w, selectableRowIds: v, selectedRows: b, stickyHeader: T, stripe: E, unwrapped: D, wrapperClassName: O, ..._} = e, t[0] = e, t[1] = n, t[2] = o, t[3] = s, t[4] = p, t[5] = m, t[6] = h, t[7] = g, t[8] = _, t[9] = v, t[10] = b, t[11] = x, t[12] = S, t[13] = C, t[14] = w, t[15] = T, t[16] = E, t[17] = D, t[18] = O);
34
+ let k = x === void 0 ? "comfortable" : x, A = S === void 0 ? "rows" : S, j = C === void 0 ? !0 : C, M = w === void 0 ? !1 : w, N = T === void 0 ? !0 : T, ee = E === void 0 ? !1 : E, te = D === void 0 ? !1 : D, ne = c(), re = i({ density: k }), P;
35
+ t[19] === p ? P = t[20] : (P = p ?? /* @__PURE__ */ new Set(), t[19] = p, t[20] = P);
36
+ let F;
37
+ t[21] !== g || t[22] !== b || t[23] !== P ? (F = {
38
+ prop: b,
39
+ defaultProp: P,
40
+ onChange: g
41
+ }, t[21] = g, t[22] = b, t[23] = P, t[24] = F) : F = t[24];
42
+ let [I, L] = r(F), R;
43
+ t[25] === s ? R = t[26] : (R = s ?? /* @__PURE__ */ new Set(), t[25] = s, t[26] = R);
44
+ let z;
45
+ t[27] !== m || t[28] !== h || t[29] !== R ? (z = {
46
+ prop: m,
47
+ defaultProp: R,
48
+ onChange: h
49
+ }, t[27] = m, t[28] = h, t[29] = R, t[30] = z) : z = t[30];
50
+ let [B, ie] = r(z), { ids: ae, register: oe } = y(), V = v ?? ae, [se, ce] = u(0), H = l(0), U;
51
+ t[31] === Symbol.for("react.memo_cache_sentinel") ? (U = () => (H.current += 1, ce(H.current), () => {
52
+ --H.current, ce(H.current);
53
+ }), t[31] = U) : U = t[31];
54
+ let le = U, W;
55
+ t[32] === L ? W = t[33] : (W = (e) => {
56
+ L((t) => {
51
57
  let n = new Set(t);
52
58
  return n.has(e) ? n.delete(e) : n.add(e), n;
53
59
  });
54
- }, t[25] = I, t[26] = W);
60
+ }, t[32] = L, t[33] = W);
55
61
  let G = W, K = "none";
56
- if (z.length > 0) {
57
- let e = z.filter((e) => F.has(e)).length;
58
- e > 0 && (K = e === z.length ? "all" : "some");
62
+ if (V.length > 0) {
63
+ let e = V.filter((e) => I.has(e)).length;
64
+ e > 0 && (K = e === V.length ? "all" : "some");
59
65
  }
60
66
  let q;
61
- t[27] !== z || t[28] !== I ? (q = () => {
62
- I((e) => {
63
- let t = new Set(e), n = z.every((e) => t.has(e));
64
- for (let e of z) n ? t.delete(e) : t.add(e);
67
+ t[34] !== V || t[35] !== L ? (q = () => {
68
+ L((e) => {
69
+ let t = new Set(e), n = V.every((e) => t.has(e));
70
+ for (let e of V) n ? t.delete(e) : t.add(e);
65
71
  return t;
66
72
  });
67
- }, t[27] = z, t[28] = I, t[29] = q) : q = t[29];
68
- let J = q, Y;
69
- t[30] === Symbol.for("react.memo_cache_sentinel") ? (Y = (e) => {
70
- ne((t) => {
73
+ }, t[34] = V, t[35] = L, t[36] = q) : q = t[36];
74
+ let ue = q, J;
75
+ t[37] === ie ? J = t[38] : (J = (e) => {
76
+ ie((t) => {
71
77
  let n = new Set(t);
72
78
  return n.has(e) ? n.delete(e) : n.add(e), n;
73
79
  });
74
- }, t[30] = Y) : Y = t[30];
75
- let ae = Y, X;
76
- t[31] === F ? X = t[32] : (X = (e) => F.has(e), t[31] = F, t[32] = X);
77
- let oe = X, Z;
78
- t[33] === R ? Z = t[34] : (Z = (e) => R.has(e), t[33] = R, t[34] = Z);
79
- let se = Z, Q;
80
- t[35] !== M || t[36] !== V || t[37] !== E || t[38] !== D || t[39] !== O || t[40] !== se || t[41] !== oe || t[42] !== B || t[43] !== k || t[44] !== K || t[45] !== A || t[46] !== j || t[47] !== J || t[48] !== G ? (Q = {
81
- baseId: M,
82
- columnCount: V,
83
- density: E,
84
- dividers: D,
85
- hover: O,
86
- isRowExpanded: se,
87
- isRowSelected: oe,
88
- registerColumn: ie,
89
- registerSelectableRow: B,
90
- selectable: k,
80
+ }, t[37] = ie, t[38] = J);
81
+ let de = J, Y;
82
+ t[39] === I ? Y = t[40] : (Y = (e) => I.has(e), t[39] = I, t[40] = Y);
83
+ let fe = Y, X;
84
+ t[41] === B ? X = t[42] : (X = (e) => B.has(e), t[41] = B, t[42] = X);
85
+ let Z = X, Q;
86
+ t[43] !== ne || t[44] !== se || t[45] !== k || t[46] !== A || t[47] !== j || t[48] !== Z || t[49] !== fe || t[50] !== oe || t[51] !== M || t[52] !== K || t[53] !== N || t[54] !== ee || t[55] !== ue || t[56] !== de || t[57] !== G ? (Q = {
87
+ baseId: ne,
88
+ columnCount: se,
89
+ density: k,
90
+ dividers: A,
91
+ hover: j,
92
+ isRowExpanded: Z,
93
+ isRowSelected: fe,
94
+ registerColumn: le,
95
+ registerSelectableRow: oe,
96
+ selectable: M,
91
97
  selectionState: K,
92
- stickyHeader: A,
93
- stripe: j,
94
- toggleAll: J,
95
- toggleExpanded: ae,
98
+ stickyHeader: N,
99
+ stripe: ee,
100
+ toggleAll: ue,
101
+ toggleExpanded: de,
96
102
  toggleSelected: G
97
- }, t[35] = M, t[36] = V, t[37] = E, t[38] = D, t[39] = O, t[40] = se, t[41] = oe, t[42] = B, t[43] = k, t[44] = K, t[45] = A, t[46] = j, t[47] = J, t[48] = G, t[49] = Q) : Q = t[49];
98
- let ce = Q, le = /* @__PURE__ */ d("table", {
99
- ...h,
100
- className: te.table({ class: o }),
103
+ }, t[43] = ne, t[44] = se, t[45] = k, t[46] = A, t[47] = j, t[48] = Z, t[49] = fe, t[50] = oe, t[51] = M, t[52] = K, t[53] = N, t[54] = ee, t[55] = ue, t[56] = de, t[57] = G, t[58] = Q) : Q = t[58];
104
+ let pe = Q, me = /* @__PURE__ */ d("table", {
105
+ ..._,
106
+ className: re.table({ class: o }),
101
107
  "data-ox-slot": "table",
102
108
  children: n
103
- }), ue = f, de = ee ? le : /* @__PURE__ */ d("div", {
104
- className: te.wrapper({ class: T }),
109
+ }), he = f, ge = te ? me : /* @__PURE__ */ d("div", {
110
+ className: re.wrapper({ class: O }),
105
111
  "data-ox-slot": "table-wrapper",
106
- children: le
112
+ children: me
107
113
  }), $;
108
- return t[50] !== ue || t[51] !== ce || t[52] !== de ? ($ = /* @__PURE__ */ d(ue, {
109
- value: ce,
110
- children: de
111
- }), t[50] = ue, t[51] = ce, t[52] = de, t[53] = $) : $ = t[53], $;
114
+ return t[59] !== he || t[60] !== pe || t[61] !== ge ? ($ = /* @__PURE__ */ d(he, {
115
+ value: pe,
116
+ children: ge
117
+ }), t[59] = he, t[60] = pe, t[61] = ge, t[62] = $) : $ = t[62], $;
112
118
  }
113
119
  function x(e) {
114
120
  let t = a(19), n, r, o;
@@ -1,4 +1,4 @@
1
- import { ComponentPropsWithoutRef, ReactNode } from 'react';
1
+ import { ComponentPropsWithoutRef, ReactNode, Ref } from 'react';
2
2
  import { TableVariants } from './Table.styles';
3
3
  type TableDensity = NonNullable<TableVariants['density']>;
4
4
  type TableDividers = NonNullable<TableVariants['dividers']>;
@@ -11,9 +11,12 @@ interface OxTableProps extends Omit<ComponentPropsWithoutRef<'table'>, 'classNam
11
11
  defaultSelectedRows?: Set<string>;
12
12
  density?: TableDensity;
13
13
  dividers?: TableDividers;
14
+ expandedRows?: Set<string>;
14
15
  hover?: boolean;
16
+ onExpandedChange?: (ids: Set<string>) => void;
15
17
  onSelectedChange?: (ids: Set<string>) => void;
16
18
  selectable?: boolean;
19
+ selectableRowIds?: string[];
17
20
  selectedRows?: Set<string>;
18
21
  stickyHeader?: boolean;
19
22
  stripe?: boolean;
@@ -23,6 +26,7 @@ interface OxTableProps extends Omit<ComponentPropsWithoutRef<'table'>, 'classNam
23
26
  interface OxTableSectionProps extends Omit<ComponentPropsWithoutRef<'thead'>, 'className'> {
24
27
  children: ReactNode;
25
28
  className?: string;
29
+ ref?: Ref<HTMLTableSectionElement>;
26
30
  }
27
31
  interface OxTableBodyProps extends Omit<ComponentPropsWithoutRef<'tbody'>, 'className'> {
28
32
  children: ReactNode;
@@ -39,6 +43,7 @@ interface OxTableCaptionProps extends Omit<ComponentPropsWithoutRef<'caption'>,
39
43
  interface OxTableRowProps extends Omit<ComponentPropsWithoutRef<'tr'>, 'className'> {
40
44
  children: ReactNode;
41
45
  className?: string;
46
+ ref?: Ref<HTMLTableRowElement>;
42
47
  rowId?: string;
43
48
  selected?: boolean;
44
49
  }
@@ -72,6 +77,7 @@ interface OxTableExpandedRowProps extends Omit<ComponentPropsWithoutRef<'tr'>, '
72
77
  children: ReactNode;
73
78
  className?: string;
74
79
  colSpan?: number;
80
+ ref?: Ref<HTMLTableRowElement>;
75
81
  rowId: string;
76
82
  }
77
83
  export type { OxTableBodyProps, OxTableCaptionProps, OxTableCellProps, OxTableExpandedRowProps, OxTableExpandTriggerProps, OxTableFooterProps, OxTableHeadProps, OxTableProps, OxTableRowProps, OxTableSectionProps, OxTableSelectAllCellProps, OxTableSelectCellProps, TableAlign, TableDensity, TableDividers, TableSticky, };
package/dist/hooks.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { useOxMediaQuery as e } from "./hooks/useMediaQuery/useMediaQuery.js";
2
2
  import { useOxPagination as t } from "./hooks/usePagination/usePagination.js";
3
- import { oxBreakpoints as n, useOxBreakpoint as r, useOxBreakpointDown as i, useOxBreakpointUp as a } from "./hooks/useBreakpoint/useBreakpoint.js";
4
- import { useOxVirtualizer as o } from "./hooks/useVirtualizer/useVirtualizer.js";
3
+ import { useOxVirtualizer as n } from "./hooks/useVirtualizer/useVirtualizer.js";
4
+ import { oxBreakpoints as r, useOxBreakpoint as i, useOxBreakpointDown as a, useOxBreakpointUp as o } from "./hooks/useBreakpoint/useBreakpoint.js";
5
5
  import { useOxCommandShortcut as s } from "./hooks/useCommandShortcut/useCommandShortcut.js";
6
6
  import { useOxDebounce as c, useOxDebouncedValue as l } from "./hooks/useDebounce/useDebounce.js";
7
7
  import { OxFormErrors as u, formErrors as d, useOxForm as f } from "./hooks/useForm/useForm.js";
@@ -11,4 +11,4 @@ import { useOxPoll as h } from "./hooks/usePoll/usePoll.js";
11
11
  import { useOxQuery as g } from "./hooks/useQuery/useQuery.js";
12
12
  import { oxHistoryStateAdapter as _, oxLocalStorageAdapter as v, oxSessionStorageAdapter as y } from "./hooks/useRemember/useRemember.adapters.js";
13
13
  import { useOxRemember as b } from "./hooks/useRemember/useRemember.js";
14
- export { u as OxFormErrors, d as formErrors, n as oxBreakpoints, _ as oxHistoryStateAdapter, v as oxLocalStorageAdapter, y as oxSessionStorageAdapter, p as standardSchemaResolver, r as useOxBreakpoint, i as useOxBreakpointDown, a as useOxBreakpointUp, s as useOxCommandShortcut, c as useOxDebounce, l as useOxDebouncedValue, m as useOxFilter, f as useOxForm, e as useOxMediaQuery, t as useOxPagination, h as useOxPoll, g as useOxQuery, b as useOxRemember, o as useOxVirtualizer };
14
+ export { u as OxFormErrors, d as formErrors, r as oxBreakpoints, _ as oxHistoryStateAdapter, v as oxLocalStorageAdapter, y as oxSessionStorageAdapter, p as standardSchemaResolver, i as useOxBreakpoint, a as useOxBreakpointDown, o as useOxBreakpointUp, s as useOxCommandShortcut, c as useOxDebounce, l as useOxDebouncedValue, m as useOxFilter, f as useOxForm, e as useOxMediaQuery, t as useOxPagination, h as useOxPoll, g as useOxQuery, b as useOxRemember, n as useOxVirtualizer };
package/dist/index.js CHANGED
@@ -24,29 +24,29 @@ import { OxInput as D } from "./components/Input/index.js";
24
24
  import { OxCopyInput as O } from "./components/CopyInput/CopyInput.js";
25
25
  import { OxPagination as k } from "./components/Pagination/index.js";
26
26
  import { OxPopover as A } from "./components/Popover/index.js";
27
- import { OxSkeleton as j } from "./components/Skeleton/Skeleton2.js";
28
- import { OxTable as M } from "./components/Table/index.js";
29
- import { OxDataTable as N } from "./components/DataTable/index.js";
30
- import { OxDescriptionList as P } from "./components/DescriptionList/index.js";
31
- import { OxDialog as F } from "./components/Dialog/index.js";
32
- import { OxDrawer as I } from "./components/Drawer/index.js";
33
- import { OxField as L } from "./components/Field/index.js";
34
- import { OxFieldset as R } from "./components/Fieldset/index.js";
35
- import { OxFooter as z } from "./components/Footer/index.js";
36
- import { OxHeader as B } from "./components/Header/index.js";
37
- import { OxHoldToDelete as V } from "./components/HoldToDelete/HoldToDelete2.js";
38
- import { OxKbd as H } from "./components/Kbd/Kbd.js";
39
- import { OxMain as U } from "./components/Main/Main.js";
40
- import { OxMeter as W } from "./components/Meter/index.js";
41
- import { OxNavigationMenu as G } from "./components/NavigationMenu/index.js";
42
- import { OxNumberInput as K } from "./components/NumberInput/index.js";
43
- import { OxOtpField as q } from "./components/OtpField/OtpField.js";
44
- import { OxPageProgress as J } from "./components/PageProgress/PageProgress.js";
45
- import { OxProgress as Y } from "./components/Progress/index.js";
46
- import { OxRadio as X, OxRadioGroup as Z } from "./components/Radio/Radio.js";
47
- import { OxResponsiveOverlay as Q } from "./components/ResponsiveOverlay/index.js";
48
- import { OxSelect as $ } from "./components/Select/index.js";
49
- import { OxScrollArea as ee } from "./components/ScrollArea/ScrollArea2.js";
27
+ import { OxScrollArea as j } from "./components/ScrollArea/ScrollArea2.js";
28
+ import { OxSkeleton as M } from "./components/Skeleton/Skeleton2.js";
29
+ import { OxTable as N } from "./components/Table/index.js";
30
+ import { OxDataTable as P } from "./components/DataTable/index.js";
31
+ import { OxDescriptionList as F } from "./components/DescriptionList/index.js";
32
+ import { OxDialog as I } from "./components/Dialog/index.js";
33
+ import { OxDrawer as L } from "./components/Drawer/index.js";
34
+ import { OxField as R } from "./components/Field/index.js";
35
+ import { OxFieldset as z } from "./components/Fieldset/index.js";
36
+ import { OxFooter as B } from "./components/Footer/index.js";
37
+ import { OxHeader as V } from "./components/Header/index.js";
38
+ import { OxHoldToDelete as H } from "./components/HoldToDelete/HoldToDelete2.js";
39
+ import { OxKbd as U } from "./components/Kbd/Kbd.js";
40
+ import { OxMain as W } from "./components/Main/Main.js";
41
+ import { OxMeter as G } from "./components/Meter/index.js";
42
+ import { OxNavigationMenu as K } from "./components/NavigationMenu/index.js";
43
+ import { OxNumberInput as q } from "./components/NumberInput/index.js";
44
+ import { OxOtpField as J } from "./components/OtpField/OtpField.js";
45
+ import { OxPageProgress as Y } from "./components/PageProgress/PageProgress.js";
46
+ import { OxProgress as X } from "./components/Progress/index.js";
47
+ import { OxRadio as Z, OxRadioGroup as Q } from "./components/Radio/Radio.js";
48
+ import { OxResponsiveOverlay as $ } from "./components/ResponsiveOverlay/index.js";
49
+ import { OxSelect as ee } from "./components/Select/index.js";
50
50
  import { OxSeparator as te } from "./components/Separator/Separator.js";
51
51
  import { OxSidebar as ne } from "./components/Sidebar/index.js";
52
52
  import { OxTooltip as re, OxTooltipProvider as ie } from "./components/Tooltip/Tooltip.js";
@@ -63,4 +63,4 @@ import { OxToast as ge } from "./components/Toast/index.js";
63
63
  import { OxToggle as _e } from "./components/Toggle/index.js";
64
64
  import { OxTypewriter as ve } from "./components/Typewriter/index.js";
65
65
  import { OxVirtualList as ye } from "./components/VirtualList/VirtualList.js";
66
- export { e as OxAccordion, t as OxAlert, r as OxAlertDialog, i as OxAnimatedGradientText, a as OxAppLayout, s as OxAutocomplete, u as OxAvatar, d as OxAvatarGroup, f as OxBadge, m as OxBlurSwitch, g as OxBreadcrumb, p as OxButton, _ as OxCard, C as OxCheckbox, w as OxCheckboxGroup, de as OxChip, v as OxCollapsible, y as OxCombobox, S as OxCommand, T as OxContextMenu, E as OxCopyButton, O as OxCopyInput, N as OxDataTable, P as OxDescriptionList, F as OxDialog, I as OxDrawer, h as OxDropdown, L as OxField, R as OxFieldset, z as OxFooter, B as OxHeader, V as OxHoldToDelete, n as OxIconTile, D as OxInput, H as OxKbd, U as OxMain, W as OxMeter, G as OxNavigationMenu, K as OxNumberInput, q as OxOtpField, J as OxPageProgress, k as OxPagination, A as OxPopover, Y as OxProgress, X as OxRadio, Z as OxRadioGroup, Q as OxResponsiveOverlay, ee as OxScrollArea, $ as OxSelect, te as OxSeparator, ne as OxSidebar, ae as OxSidebarRail, j as OxSkeleton, le as OxSlider, o as OxSpinner, ue as OxStatusDisplay, oe as OxSwitch, se as OxTabBar, M as OxTable, ce as OxTabs, fe as OxTextarea, ge as OxToast, _e as OxToggle, re as OxTooltip, ie as OxTooltipProvider, ve as OxTypewriter, ye as OxVirtualList, pe as createOxToastManager, me as oxToast, c as useOxAutocompleteFilter, l as useOxAutocompleteFilteredItems, b as useOxComboboxFilter, x as useOxComboboxFilteredItems, he as useOxToast };
66
+ export { e as OxAccordion, t as OxAlert, r as OxAlertDialog, i as OxAnimatedGradientText, a as OxAppLayout, s as OxAutocomplete, u as OxAvatar, d as OxAvatarGroup, f as OxBadge, m as OxBlurSwitch, g as OxBreadcrumb, p as OxButton, _ as OxCard, C as OxCheckbox, w as OxCheckboxGroup, de as OxChip, v as OxCollapsible, y as OxCombobox, S as OxCommand, T as OxContextMenu, E as OxCopyButton, O as OxCopyInput, P as OxDataTable, F as OxDescriptionList, I as OxDialog, L as OxDrawer, h as OxDropdown, R as OxField, z as OxFieldset, B as OxFooter, V as OxHeader, H as OxHoldToDelete, n as OxIconTile, D as OxInput, U as OxKbd, W as OxMain, G as OxMeter, K as OxNavigationMenu, q as OxNumberInput, J as OxOtpField, Y as OxPageProgress, k as OxPagination, A as OxPopover, X as OxProgress, Z as OxRadio, Q as OxRadioGroup, $ as OxResponsiveOverlay, j as OxScrollArea, ee as OxSelect, te as OxSeparator, ne as OxSidebar, ae as OxSidebarRail, M as OxSkeleton, le as OxSlider, o as OxSpinner, ue as OxStatusDisplay, oe as OxSwitch, se as OxTabBar, N as OxTable, ce as OxTabs, fe as OxTextarea, ge as OxToast, _e as OxToggle, re as OxTooltip, ie as OxTooltipProvider, ve as OxTypewriter, ye as OxVirtualList, pe as createOxToastManager, me as oxToast, c as useOxAutocompleteFilter, l as useOxAutocompleteFilteredItems, b as useOxComboboxFilter, x as useOxComboboxFilteredItems, he as useOxToast };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noxickon/onyx",
3
- "version": "6.6.0",
3
+ "version": "6.7.0",
4
4
  "type": "module",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",