@harnessio/ui 0.5.37 → 0.5.38
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.d.ts +10 -0
- package/dist/components.js +1 -1
- package/dist/context.d.ts +10 -0
- package/dist/hooks.d.ts +10 -0
- package/dist/{index-BKbGD9qc.js → index-uDAAzb4G.js} +1014 -996
- package/dist/{index-BKbGD9qc.js.map → index-uDAAzb4G.js.map} +1 -1
- package/dist/index.d.ts +10 -0
- package/dist/index.js +1 -1
- package/dist/locales.d.ts +10 -0
- package/dist/styles.css +1 -1
- package/dist/tailwind-design-system.d.ts +10 -0
- package/dist/tailwind.config.d.ts +10 -0
- package/dist/tailwind.config.js +17 -1
- package/dist/tailwind.config.js.map +1 -1
- package/dist/types.d.ts +10 -0
- package/dist/utils.d.ts +10 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -8090,3 +8090,13 @@ declare enum YamlEntityType {
|
|
|
8090
8090
|
declare const ZOOM_INC_DEC_LEVEL = 0.1;
|
|
8091
8091
|
|
|
8092
8092
|
export { }
|
|
8093
|
+
|
|
8094
|
+
|
|
8095
|
+
declare module '@tanstack/react-table' {
|
|
8096
|
+
interface ColumnMeta<TData, TValue> {
|
|
8097
|
+
/** Additional class names applied to the header cell */
|
|
8098
|
+
headerClassName?: string;
|
|
8099
|
+
/** When true, applies group-header styling (auto-detected when column has nested `columns`) */
|
|
8100
|
+
isGroupHeader?: boolean;
|
|
8101
|
+
}
|
|
8102
|
+
}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as s } from "./index-Bvr23CG5.js";
|
|
2
|
-
import { i as e } from "./index-
|
|
2
|
+
import { i as e } from "./index-uDAAzb4G.js";
|
|
3
3
|
import { i as a } from "./index-DOfoODGt.js";
|
|
4
4
|
import { i as m } from "./index-CnTWfvOd.js";
|
|
5
5
|
import { i as f } from "./index-yGuTXfMI.js";
|
package/dist/locales.d.ts
CHANGED
|
@@ -562,3 +562,13 @@ export declare const resources: {
|
|
|
562
562
|
};
|
|
563
563
|
|
|
564
564
|
export { }
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
declare module '@tanstack/react-table' {
|
|
568
|
+
interface ColumnMeta<TData, TValue> {
|
|
569
|
+
/** Additional class names applied to the header cell */
|
|
570
|
+
headerClassName?: string;
|
|
571
|
+
/** When true, applies group-header styling (auto-detected when column has nested `columns`) */
|
|
572
|
+
isGroupHeader?: boolean;
|
|
573
|
+
}
|
|
574
|
+
}
|