@arbidocs/blocks 0.3.179 → 0.3.180
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/index.cjs +12 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +12 -7
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/components/grid.css +10 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbidocs/blocks",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.180",
|
|
4
4
|
"description": "Composable AI-native back-office blocks on top of @arbidocs/react — prompt library, theme system, shell, builders and vertical primitives.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"typecheck": "tsc --noEmit"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@arbidocs/react": "0.3.
|
|
41
|
-
"@arbidocs/sdk": "0.3.
|
|
40
|
+
"@arbidocs/react": "0.3.180",
|
|
41
|
+
"@arbidocs/sdk": "0.3.180",
|
|
42
42
|
"ag-grid-community": "^35.3.0",
|
|
43
43
|
"ag-grid-react": "^35.3.0",
|
|
44
44
|
"class-variance-authority": "^0.7.1",
|
package/src/components/grid.css
CHANGED
|
@@ -189,6 +189,16 @@
|
|
|
189
189
|
align-items: center !important;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
|
+
/* Sort indicators all down the LEFT edge, including the numeric columns whose
|
|
193
|
+
labels sit right over their figures. AG Grid right-aligns those headers by
|
|
194
|
+
flipping the label to row-reverse, which drags the sort arrow to the far
|
|
195
|
+
right — so the arrows zig-zag across a header row instead of forming one
|
|
196
|
+
scannable column. Opt-in via `.grid-sort-left` on the grid, so tables that
|
|
197
|
+
want AG Grid's default keep it. */
|
|
198
|
+
.grid-sort-left .ag-right-aligned-header .ag-header-cell-label {
|
|
199
|
+
flex-direction: row;
|
|
200
|
+
}
|
|
201
|
+
|
|
192
202
|
/* White dividers between header columns - use theme variable */
|
|
193
203
|
.ag-header-cell:not(:last-child)::after {
|
|
194
204
|
content: '';
|