@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/types.d.ts
CHANGED
|
@@ -127,3 +127,13 @@ export declare enum YamlEntityType {
|
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
export { }
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
declare module '@tanstack/react-table' {
|
|
133
|
+
interface ColumnMeta<TData, TValue> {
|
|
134
|
+
/** Additional class names applied to the header cell */
|
|
135
|
+
headerClassName?: string;
|
|
136
|
+
/** When true, applies group-header styling (auto-detected when column has nested `columns`) */
|
|
137
|
+
isGroupHeader?: boolean;
|
|
138
|
+
}
|
|
139
|
+
}
|
package/dist/utils.d.ts
CHANGED
|
@@ -317,3 +317,13 @@ export declare const wrapConditionalObjectElement: <T>(element: T, isPassing: bo
|
|
|
317
317
|
export declare const ZOOM_INC_DEC_LEVEL = 0.1;
|
|
318
318
|
|
|
319
319
|
export { }
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
declare module '@tanstack/react-table' {
|
|
323
|
+
interface ColumnMeta<TData, TValue> {
|
|
324
|
+
/** Additional class names applied to the header cell */
|
|
325
|
+
headerClassName?: string;
|
|
326
|
+
/** When true, applies group-header styling (auto-detected when column has nested `columns`) */
|
|
327
|
+
isGroupHeader?: boolean;
|
|
328
|
+
}
|
|
329
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/ui",
|
|
3
3
|
"description": "Harness Canary UI component library",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.38",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -121,8 +121,8 @@
|
|
|
121
121
|
"vaul": "^1.1.2",
|
|
122
122
|
"yaml": "^2.7.0",
|
|
123
123
|
"zod": "^3.23.8",
|
|
124
|
-
"@harnessio/pipeline-graph": "1.9.6",
|
|
125
124
|
"@harnessio/core-design-system": "0.0.1",
|
|
125
|
+
"@harnessio/pipeline-graph": "1.9.6",
|
|
126
126
|
"@harnessio/yaml-editor": "0.26.0"
|
|
127
127
|
},
|
|
128
128
|
"peerDependencies": {
|