@harnessio/ui 0.5.36 → 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-BVRv2KaR.js → index-uDAAzb4G.js} +10160 -10131
- package/dist/{index-BVRv2KaR.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 +3 -3
|
@@ -4,3 +4,13 @@ declare const tailwindDesignSystem: Config;
|
|
|
4
4
|
export default tailwindDesignSystem;
|
|
5
5
|
|
|
6
6
|
export { }
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
declare module '@tanstack/react-table' {
|
|
10
|
+
interface ColumnMeta<TData, TValue> {
|
|
11
|
+
/** Additional class names applied to the header cell */
|
|
12
|
+
headerClassName?: string;
|
|
13
|
+
/** When true, applies group-header styling (auto-detected when column has nested `columns`) */
|
|
14
|
+
isGroupHeader?: boolean;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -14,3 +14,13 @@ declare const _default: {
|
|
|
14
14
|
export default _default;
|
|
15
15
|
|
|
16
16
|
export { }
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
declare module '@tanstack/react-table' {
|
|
20
|
+
interface ColumnMeta<TData, TValue> {
|
|
21
|
+
/** Additional class names applied to the header cell */
|
|
22
|
+
headerClassName?: string;
|
|
23
|
+
/** When true, applies group-header styling (auto-detected when column has nested `columns`) */
|
|
24
|
+
isGroupHeader?: boolean;
|
|
25
|
+
}
|
|
26
|
+
}
|
package/dist/tailwind.config.js
CHANGED
|
@@ -4053,6 +4053,13 @@ const qe = {
|
|
|
4053
4053
|
}
|
|
4054
4054
|
}
|
|
4055
4055
|
},
|
|
4056
|
+
// Stage footer (all sizes): exclude from intrinsic card width; fill width set by steps
|
|
4057
|
+
".cn-studio-card-group.cn-studio-card-stage > .cn-studio-card-footer": {
|
|
4058
|
+
width: "0",
|
|
4059
|
+
minWidth: "100%",
|
|
4060
|
+
maxWidth: "100%",
|
|
4061
|
+
overflow: "hidden"
|
|
4062
|
+
},
|
|
4056
4063
|
".cn-studio-card-expand-button-main": {
|
|
4057
4064
|
zIndex: "2",
|
|
4058
4065
|
height: "100%",
|
|
@@ -4298,7 +4305,12 @@ const qe = {
|
|
|
4298
4305
|
// Header
|
|
4299
4306
|
"&-header": {
|
|
4300
4307
|
"@apply border-b": "",
|
|
4301
|
-
borderColor: "var(--cn-border-3)"
|
|
4308
|
+
borderColor: "var(--cn-border-3)",
|
|
4309
|
+
// Separator between group row and leaf row in multi-row headers
|
|
4310
|
+
'tr[data-header-depth="0"]:not(:last-child)': {
|
|
4311
|
+
"@apply border-b": "",
|
|
4312
|
+
borderColor: "var(--cn-border-3)"
|
|
4313
|
+
}
|
|
4302
4314
|
},
|
|
4303
4315
|
// Container highlight on hover
|
|
4304
4316
|
"&:where(.cn-table-v2-highlight-hover) tbody > tr": {
|
|
@@ -4366,6 +4378,10 @@ const qe = {
|
|
|
4366
4378
|
gap: "var(--cn-table-header-gap)",
|
|
4367
4379
|
minHeight: "var(--cn-table-header-min)"
|
|
4368
4380
|
},
|
|
4381
|
+
// Group header cell (parent column spanning child columns)
|
|
4382
|
+
"&-head-group": {
|
|
4383
|
+
"@apply uppercase": ""
|
|
4384
|
+
},
|
|
4369
4385
|
// Sortable head cell
|
|
4370
4386
|
"&-head-sortable": {
|
|
4371
4387
|
"@apply cursor-pointer select-none": ""
|