@bryntum/grid-thin-trial 7.1.1 → 7.1.2

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.
Files changed (40) hide show
  1. package/README.md +272 -20
  2. package/grid.css +10 -1
  3. package/grid.css.map +2 -2
  4. package/grid.d.ts +58 -36
  5. package/lib/column/ActionColumn.js +1 -1
  6. package/lib/column/CheckColumn.js +1 -1
  7. package/lib/column/Column.js +1 -1
  8. package/lib/column/DateColumn.js +1 -1
  9. package/lib/column/TimeColumn.js +1 -1
  10. package/lib/column/TreeColumn.css +2 -1
  11. package/lib/data/ColumnStore.js +1 -1
  12. package/lib/feature/CellEdit.js +1 -1
  13. package/lib/feature/ColumnResize.css +1 -0
  14. package/lib/feature/Filter.css +1 -0
  15. package/lib/feature/Filter.js +1 -1
  16. package/lib/feature/FilterBar.js +1 -1
  17. package/lib/feature/Group.css +2 -0
  18. package/lib/feature/GroupSummary.js +1 -1
  19. package/lib/feature/RowReorder.css +1 -0
  20. package/lib/feature/RowReorder.js +1 -1
  21. package/lib/feature/Sort.css +1 -0
  22. package/lib/feature/Summary.js +1 -1
  23. package/lib/feature/TreeGroup.js +1 -1
  24. package/lib/feature/export/PdfExport.js +4 -4
  25. package/lib/feature/export/mixin/PrintMixin.js +1 -1
  26. package/lib/row/Row.js +1 -1
  27. package/lib/row/RowManager.js +1 -1
  28. package/lib/util/GridLocation.js +1 -1
  29. package/lib/util/SubGridScroller.js +1 -1
  30. package/lib/view/GridBase.css +2 -1
  31. package/lib/view/GridBase.js +1 -1
  32. package/lib/view/Header.js +1 -1
  33. package/lib/view/TreeGrid.js +1 -1
  34. package/lib/view/export/ExportDialog.js +1 -1
  35. package/lib/view/mixin/GridElementEvents.js +1 -1
  36. package/lib/view/mixin/GridNavigation.js +1 -1
  37. package/lib/view/mixin/GridSubGrids.js +1 -1
  38. package/lib/widget/GroupBar.css +1 -0
  39. package/package.json +1 -1
  40. package/postinstall.cjs +4 -5
package/README.md CHANGED
@@ -1,52 +1,304 @@
1
- # Bryntum Grid Thin Trial
1
+ <p align="center">
2
+ <a href="https://bryntum.com/" rel="noopener" target="_blank"><img width="350" src="https://bryntum.com/resources/bryntum_logo_blue.svg" alt="Bryntum logo"></a>
3
+ </p>
2
4
 
3
- Bryntum Grid is a high performance JavaScript data grid component.
4
- This package is designed for combining multiple Bryntum products with thin framework wrappers for Bryntum Grid.
5
- Please refer to the Bryntum Grid documentation.
5
+ # Bryntum Grid Thin (Trial)
6
6
 
7
- It integrates seamlessly with React, Vue, Angular, or plain vanilla JS.
7
+ Bryntum Grid is a high-performance JavaScript data grid component.. It integrates smoothly with React, Vue, Angular, or plain vanilla JS.
8
8
 
9
9
  For more information about all features, visit the [Bryntum Grid site](https://bryntum.com/products/grid/).
10
10
 
11
- # Bryntum repository access setup
11
+ <p align="center">
12
+ <img src="https://bryntum.com/products/grid/examples/meta/thumb.2048.png" alt="Bryntum Grid Screenshot" width="600">
13
+ </p>
12
14
 
13
- This npm package requires access to the private Bryntum npm repository. You must be logged in to this repository as a
14
- licensed or trial user to access it.
15
+ ## What is the Thin Package?
15
16
 
16
- Please check the [Online npm repository guide](https://bryntum.com/products/grid/docs/guide/Grid/npm-repository) for
17
- detailed information on the sign-up/login process.
17
+ The **Thin package** contains only product-specific code and styling, making it ideal for:
18
18
 
19
- # Installation
19
+ * **Combining multiple Bryntum products** in a single application
20
+ * **Reducing bundle size** - no duplicated code when using multiple products
21
+ * **Avoiding runtime conflicts** - prevents duplicate class registrations
20
22
 
21
- The installation is performed by issuing the installation command in the root of the application folder. The specific
22
- command depends on the package manager used by the application.
23
+ ### Thin vs Regular Package
23
24
 
24
- The following are most frequently used:
25
+ | Package Type | Contains | Best For |
26
+ |------------------------------------|-----------------------------------------------------------------------|--------------------------------------------------------|
27
+ | **Regular** (`@bryntum/grid`) | Product + all dependencies<br/>(e.g., Scheduler includes Grid + Core) | Single product apps |
28
+ | **Thin** (`@bryntum/grid-thin`) | Product-specific code only | Multiple product apps or optimized single product apps |
29
+
30
+ ### When to Use Thin Package?
31
+
32
+ **Use Thin if:**
33
+
34
+ - Combining multiple Bryntum products (e.g., Grid + Scheduler + Gantt)
35
+ - Using thin framework wrappers (`@bryntum/grid-react-thin`)
36
+ - Want smallest possible bundle size
37
+ - Building with modern build tools (Webpack 5+, Vite, Rollup)
38
+
39
+ **Use Regular if:**
40
+
41
+ - Building a single product application with standard setup
42
+ - Using direct `<script>` tag inclusion
43
+ - Prefer simpler dependency management
44
+
45
+ ## Highlights
46
+
47
+ * Virtual rendering with [infinite scroll](https://bryntum.com/products/grid/examples/infinite-scroll) handles millions of rows
48
+ * [Excel-like cell editing](https://bryntum.com/products/grid/examples/celledit) with inline validation and keyboard shortcuts
49
+ * [Tree grids](https://bryntum.com/products/grid/examples/tree) and [nested views](https://bryntum.com/products/grid/examples/master-detail) for hierarchical data
50
+ * [Advanced filtering](https://bryntum.com/products/grid/examples/facet-filter) and [instant search](https://bryntum.com/products/grid/examples/search) across massive datasets
51
+ * [Custom cell renderers](https://bryntum.com/products/grid/examples/renderers) for charts, progress bars, and rich HTML
52
+ * [Row grouping](https://bryntum.com/products/grid/examples/grouping) with [aggregation and summaries](https://bryntum.com/products/grid/examples/groupsummary)
53
+ * [AI content generation](https://bryntum.com/products/grid/examples/ai-review-grid) using cell formulas
54
+ * [50+ built-in widgets](https://bryntum.com/products/grid/examples/widgetcolumn) and [6 modern themes](https://bryntum.com/products/grid/examples/themes) with full customization
55
+ * WCAG 2.1 [accessible](https://bryntum.com/products/grid/examples/basic), [30+ locales](https://bryntum.com/products/grid/examples/localization), TypeScript definitions included
56
+ * [React](https://bryntum.com/products/grid/examples/?framework=react), [Vue](https://bryntum.com/products/grid/examples/?framework=vue), and [Angular](https://bryntum.com/products/grid/examples/?framework=angular) wrappers following native framework patterns
57
+ * [Export to Excel](https://bryntum.com/products/grid/examples/exporttoexcel) and [PDF](https://bryntum.com/products/grid/examples/export) with professional formatting
58
+ * Touch-friendly and [responsive layouts](https://bryntum.com/products/grid/examples/responsive) optimized for mobile devices
59
+
60
+ ## Package Contents
61
+
62
+ | Path | Description |
63
+ |---------------------------------------|------------------------------------------------|
64
+ | `grid.module.js`, `grid.umd.js` | JavaScript bundles (ES module and UMD formats) |
65
+ | `grid.css` | Structural CSS (required) |
66
+ | `*.d.ts` | TypeScript type definitions |
67
+ | `*.css` | Theme stylesheets |
68
+
69
+ **Note:** Trial packages do not include minified bundles or source maps.
70
+
71
+ ## Supported Versions
72
+
73
+ * [NodeJS](https://nodejs.org/en): `>= 20.0.0`
74
+ * [TypeScript](https://www.typescriptlang.org/): `>= 3.6.0`
75
+ * [Angular](https://angularjs.org/): `>= 9.0.0`
76
+ * [React](https://react.dev/): `>= 16.0.0`
77
+ * [Vue](https://vuejs.org/): `>= 3.0.0`
78
+ * [Ionic](https://ionicframework.com/): `>= 5.0.0`
79
+ * [Vite](https://vite.dev/): `>= 4.0.0`
80
+ * [Webpack](https://webpack.js.org/): `>= 4.0.0`
81
+
82
+ ## Try Bryntum Online Demos
83
+
84
+ Explore our comprehensive collection of demos:
85
+
86
+ * [View Online Demos](https://bryntum.com/products/grid/examples/)
87
+ * [JavaScript Demos](https://bryntum.com/products/grid/examples/?framework=javascript)
88
+ * [React Demos](https://bryntum.com/products/grid/examples/?framework=react)
89
+ * [Vue Demos](https://bryntum.com/products/grid/examples/?framework=vue)
90
+ * [Angular Demos](https://bryntum.com/products/grid/examples/?framework=angular)
91
+
92
+ ## Installation
93
+
94
+ This is a **trial package** with limited functionality.
95
+
96
+ ### Why Use npm Aliasing?
97
+
98
+ Trial packages use npm aliasing to install `@bryntum/grid-thin-trial` under the `@bryntum/grid-thin` name. This
99
+ approach provides a seamless upgrade path - when you purchase a license, you only need to update the alias in
100
+ `package.json` without changing any application code.
25
101
 
26
102
  Install using `npm`:
27
103
 
28
104
  ```shell
29
- npm install @bryntum/grid-thin@npm:bryntum/grid-thin-trial
105
+ npm install @bryntum/grid-thin@npm:@bryntum/grid-thin-trial@latest
106
+ ```
107
+
108
+ Or using `yarn`:
109
+
110
+ ```shell
111
+ yarn add @bryntum/grid-thin@npm:@bryntum/grid-thin-trial@latest
112
+ ```
113
+
114
+ Alternatively, add to `package.json` dependencies:
115
+
116
+ ```json
117
+ "dependencies": {
118
+ "@bryntum/grid-thin": "npm:@bryntum/grid-thin-trial@latest"
119
+ }
30
120
  ```
31
121
 
32
- Install using `yarn`:
122
+ Visit our [npm repository guide](https://bryntum.com/products/grid/docs/guide/Grid/npm-repository) to learn more about installation and migrating from
123
+ trial to licensed packages.
124
+
125
+ ## Combining Multiple Products
126
+
127
+ When combining multiple Bryntum products, install all needed thin packages with aliasing:
33
128
 
34
129
  ```shell
35
- yarn add @bryntum/grid-thin@npm:bryntum/grid-thin-trial
130
+ # Example: Using Grid and Scheduler together
131
+ npm install @bryntum/grid-thin@npm:@bryntum/grid-thin-trial@latest
132
+ npm install @bryntum/scheduler-thin@npm:@bryntum/scheduler-thin-trial@latest
133
+ npm install @bryntum/scheduler-react-thin@latest
36
134
  ```
37
135
 
38
- # Online references
136
+ ## Required Dependencies
137
+
138
+ Thin packages contain only product-specific code and **do not automatically install dependencies**. You must manually
139
+ install all required API packages for the underlying products.
140
+
141
+ ### API Packages (Required):
142
+
143
+ ```json
144
+ {
145
+ "dependencies": {
146
+ "@bryntum/core-thin": "latest",
147
+ "@bryntum/grid-thin": "latest"
148
+ }
149
+ }
150
+ ```
151
+
152
+ ### Dependency Chain Overview
153
+
154
+ The following table shows which thin API packages are required for each Bryntum product:
155
+
156
+ | Product | Core | Engine | Grid | Scheduler | Scheduler Pro | Product Package |
157
+ |-------------------|:----:|:------:|:----:|:---------:|:-------------:|:----------------------------:|
158
+ | **Grid** | ✓ | | ✓ | | | `@bryntum/grid-thin` |
159
+ | **Scheduler** | ✓ | ✓ | ✓ | ✓ | | `@bryntum/scheduler-thin` |
160
+ | **Scheduler Pro** | ✓ | ✓ | ✓ | ✓ | ✓ | `@bryntum/schedulerpro-thin` |
161
+ | **Gantt** | ✓ | ✓ | ✓ | ✓ | ✓ | `@bryntum/gantt-thin` |
162
+ | **Calendar** | ✓ | ✓ | ✓ | ✓ | | `@bryntum/calendar-thin` |
163
+ | **TaskBoard** | ✓ | ✓ | | | | `@bryntum/taskboard-thin` |
164
+
165
+ ### Important Notes
166
+
167
+ **About Core Framework Wrappers:**
168
+
169
+ `@bryntum/core-[framework]-thin` packages (e.g., `@bryntum/core-react-thin`) are **optional** and only needed if you use
170
+ Bryntum Core UI widgets directly in your app, such as:
171
+
172
+ - `BryntumButton`
173
+ - `BryntumCombo`
174
+ - `BryntumTextField`
175
+ - Other Core widgets
176
+
177
+ If you only use the main product component (Grid, Scheduler, etc.), you don't need the Core framework wrapper.
178
+
179
+ ## Quick Start
180
+
181
+ ```typescript
182
+ import { Grid } from '@bryntum/grid-thin';
183
+ import './style.css';
184
+
185
+ const grid = new Grid({
186
+ appendTo : 'app',
187
+ columns : [
188
+ { field : 'name', text : 'Name', width : 200 },
189
+ { field : 'city', text : 'City', flex : 1 }
190
+ ],
191
+ data : [
192
+ { name : 'Dan Stevenson', city : 'Los Angeles' },
193
+ { name : 'Talisha Babin', city : 'Paris' }
194
+ ]
195
+ });
196
+ ```
197
+
198
+ ## Themes
199
+
200
+ ### Svalbard (default)
201
+
202
+ | Light | Dark |
203
+ |--------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
204
+ | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=svalbard-light"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.svalbard-light.png" alt="Svalbard Light" width="300"></a> | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=svalbard-dark"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.svalbard-dark.png" alt="Svalbard Dark" width="300"></a> |
205
+
206
+ ### Stockholm
207
+
208
+ | Light | Dark |
209
+ |----------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
210
+ | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=stockholm-light"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.stockholm-light.png" alt="Stockholm Light" width="300"></a> | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=stockholm-dark"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.stockholm-dark.png" alt="Stockholm Dark" width="300"></a> |
211
+
212
+ ### Visby
213
+
214
+ | Light | Dark |
215
+ |--------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
216
+ | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=visby-light"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.visby-light.png" alt="Visby Light" width="300"></a> | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=visby-dark"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.visby-dark.png" alt="Visby Dark" width="300"></a> |
217
+
218
+ ### Material 3
219
+
220
+ | Light | Dark |
221
+ |-----------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
222
+ | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=material3-light"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.material3-light.png" alt="Material 3 Light" width="300"></a> | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=material3-dark"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.material3-dark.png" alt="Material 3 Dark" width="300"></a> |
223
+
224
+ ### High Contrast
225
+
226
+ | Light | Dark |
227
+ |------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
228
+ | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=high-contrast-light"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.high-contrast-light.png" alt="High Contrast Light" width="300"></a> | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=high-contrast-dark"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.high-contrast-dark.png" alt="High Contrast Dark" width="300"></a> |
229
+
230
+ ### Fluent 2
231
+
232
+ | Light | Dark |
233
+ |-------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------|
234
+ | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=fluent2-light"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.fluent2-light.png" alt="Fluent 2 Light" width="300"></a> | <a href="https://bryntum.com/products/grid/examples/grouping/?theme=fluent2-dark"><img src="https://bryntum.com/products/grid/docs/data/Grid/images/themes/thumb.fluent2-dark.png" alt="Fluent 2 Dark" width="300"></a> |
235
+
236
+ For more information on customizing themes, see the [Styling guide](https://bryntum.com/products/grid/docs/guide/Grid/customization/styling).
237
+
238
+ ## Framework Integrations
239
+
240
+ Thin packages use thin framework wrappers. Each wrapper follows native framework patterns and lifecycle management.
241
+
242
+ **Note:** The framework wrappers are public and can be installed normally. They require the thin core package (installed
243
+ above with aliasing) to be present.
244
+
245
+ ### React
246
+
247
+ ```shell
248
+ npm install @bryntum/grid-react-thin@latest
249
+ ```
250
+
251
+ For details, see [React Multiple Products](https://bryntum.com/products/grid/docs/guide/Grid/integration/react/multiple-products).
252
+
253
+ ### Angular
254
+
255
+ ```shell
256
+ npm install @bryntum/grid-angular-thin@latest
257
+ ```
258
+
259
+ For details, see [Angular Multiple Products](https://bryntum.com/products/grid/docs/guide/Grid/integration/angular/multiple-products).
260
+
261
+ ### Vue 3
262
+
263
+ ```shell
264
+ npm install @bryntum/grid-vue-3-thin@latest
265
+ ```
266
+
267
+ For details, see [Vue Multiple Products](https://bryntum.com/products/grid/docs/guide/Grid/integration/vue/multiple-products).
268
+
269
+ ## Explore All Bryntum Products
270
+
271
+ * [Bryntum Grid](https://bryntum.com/products/grid/) - High-performance data grid
272
+ * [Bryntum Scheduler](https://bryntum.com/products/scheduler/) - Resource scheduling component
273
+ * [Bryntum Scheduler Pro](https://bryntum.com/products/schedulerpro/) - Advanced scheduling with dependencies
274
+ * [Bryntum Gantt](https://bryntum.com/products/gantt/) - Project planning and management
275
+ * [Bryntum Calendar](https://bryntum.com/products/calendar/) - Full-featured calendar component
276
+ * [Bryntum TaskBoard](https://bryntum.com/products/taskboard/) - Kanban-style task management
277
+
278
+ Explore our comprehensive collection of demos:
279
+
280
+ | Product | <img src="https://bryntum.com/products/grid/docs/data/Core/images/logo/js.svg" alt="JavaScript" width="30"><br>JavaScript | <img src="https://bryntum.com/products/grid/docs/data/Core/images/logo/react.svg" alt="React" width="30"><br>React | <img src="https://bryntum.com/products/grid/docs/data/Core/images/logo/vue.svg" alt="Vue" width="30"><br>Vue | <img src="https://bryntum.com/products/grid/docs/data/Core/images/logo/angular.svg" alt="Angular" width="30"><br>Angular |
281
+ |-------------------|:------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------:|:----------------------------------------------------------------------:|:------------------------------------------------------------------------------:|
282
+ | **Grid** | [Grid JavaScript demos](https://bryntum.com/products/grid/examples/?framework=javascript) | [Grid React demos](https://bryntum.com/products/grid/examples/?framework=react) | [Grid Vue demos](https://bryntum.com/products/grid/examples/?framework=vue) | [Grid Angular demos](https://bryntum.com/products/grid/examples/?framework=angular) |
283
+ | **Scheduler** | [Scheduler JavaScript demos](https://bryntum.com/products/scheduler/examples/?framework=javascript) | [Scheduler React demos](https://bryntum.com/products/scheduler/examples/?framework=react) | [Scheduler Vue demos](https://bryntum.com/products/scheduler/examples/?framework=vue) | [Scheduler Angular demos](https://bryntum.com/products/scheduler/examples/?framework=angular) |
284
+ | **Scheduler Pro** | [Scheduler Pro JavaScript demos](https://bryntum.com/products/schedulerpro/examples/?framework=javascript) | [Scheduler Pro React demos](https://bryntum.com/products/schedulerpro/examples/?framework=react) | [Scheduler Pro Vue demos](https://bryntum.com/products/schedulerpro/examples/?framework=vue) | [Scheduler Pro Angular demos](https://bryntum.com/products/schedulerpro/examples/?framework=angular) |
285
+ | **Gantt** | [Gantt JavaScript demos](https://bryntum.com/products/gantt/examples/?framework=javascript) | [Gantt React demos](https://bryntum.com/products/gantt/examples/?framework=react) | [Gantt Vue demos](https://bryntum.com/products/gantt/examples/?framework=vue) | [Gantt Angular demos](https://bryntum.com/products/gantt/examples/?framework=angular) |
286
+ | **Calendar** | [Calendar JavaScript demos](https://bryntum.com/products/calendar/examples/?framework=javascript) | [Calendar React demos](https://bryntum.com/products/calendar/examples/?framework=react) | [Calendar Vue demos](https://bryntum.com/products/calendar/examples/?framework=vue) | [Calendar Angular demos](https://bryntum.com/products/calendar/examples/?framework=angular) |
287
+ | **TaskBoard** | [TaskBoard JavaScript demos](https://bryntum.com/products/taskboard/examples/?framework=javascript) | [TaskBoard React demos](https://bryntum.com/products/taskboard/examples/?framework=react) | [TaskBoard Vue demos](https://bryntum.com/products/taskboard/examples/?framework=vue) | [TaskBoard Angular demos](https://bryntum.com/products/taskboard/examples/?framework=angular) |
288
+
289
+ ## Online references
39
290
 
40
- * [Bryntum npm repository guide](https://bryntum.com/products/grid/docs/guide/Grid/npm-repository)
41
291
  * [Bryntum Grid documentation](https://bryntum.com/products/grid/docs/)
42
292
  * [Bryntum Grid examples](https://bryntum.com/products/grid/examples/)
293
+
43
294
  * [Bryntum Support Forum](https://forum.bryntum.com/)
44
295
  * [Contact us](https://bryntum.com/contact/)
45
296
 
46
- # License and copyright
297
+ ## License and copyright
47
298
 
48
299
  Bryntum Grid is commercial software and requires a paid license.
49
300
  Please visit the [Bryntum Grid End User License](https://bryntum.com/products/grid/license/) for the full text of the license.
50
301
 
51
302
  Copyright © 2009-2026, Bryntum
52
303
  All rights reserved.
304
+
package/grid.css CHANGED
@@ -276,6 +276,7 @@
276
276
  background: var(--b-neutral-90);
277
277
  content: var(--b-column-resize-touch-resizing-icon);
278
278
  font-family: var(--b-widget-icon-font-family);
279
+ font-weight: var(--b-widget-icon-font-weight);
279
280
  }
280
281
  .b-grid-header.b-resizing {
281
282
  --b-grid-header-background: var(--b-column-resize-header-resizing-background);
@@ -349,6 +350,7 @@
349
350
  .b-filter-icon::before {
350
351
  content: var(--b-grid-filter-icon);
351
352
  font-family: var(--b-widget-icon-font-family);
353
+ font-weight: var(--b-widget-icon-font-weight);
352
354
  }
353
355
  .b-filter-icon:hover {
354
356
  --bi-grid-filter-icon-opacity: var(--bi-grid-filter-icon-hover-opacity);
@@ -498,6 +500,7 @@
498
500
  font-style: normal;
499
501
  content: var(--b-group-header-icon);
500
502
  font-family: var(--b-widget-icon-font-family);
503
+ font-weight: var(--b-widget-icon-font-weight);
501
504
  }
502
505
  .b-group-row {
503
506
  --b-grid-cell-background: var(--b-group-header-background);
@@ -548,6 +551,7 @@
548
551
  .b-group-state-icon:before {
549
552
  content: var(--b-group-collapse-icon);
550
553
  font-family: var(--b-widget-icon-font-family);
554
+ font-weight: var(--b-widget-icon-font-weight);
551
555
  }
552
556
  .b-grid-group-collapsed .b-group-state-icon {
553
557
  rotate: -90deg;
@@ -1003,6 +1007,7 @@
1003
1007
  font-size: 0.8em;
1004
1008
  content: var(--b-row-reorder-grip-icon);
1005
1009
  font-family: var(--b-widget-icon-font-family);
1010
+ font-weight: var(--b-widget-icon-font-weight);
1006
1011
  padding-inline: var(--b-grid-cell-padding-inline);
1007
1012
  margin-inline-start: calc(var(--b-grid-cell-padding-inline) * -1);
1008
1013
  }
@@ -1145,6 +1150,7 @@
1145
1150
  transition: rotate .2s;
1146
1151
  content: var(--b-sort-header-icon);
1147
1152
  font-family: var(--b-widget-icon-font-family);
1153
+ font-weight: var(--b-widget-icon-font-weight);
1148
1154
  rotate: var(--bi-grid-sort-icon-rotate);
1149
1155
  }
1150
1156
  :is(.b-grid-header.b-asc, .b-grid-header.b-desc) .b-sort-icon {
@@ -1648,6 +1654,7 @@ html.b-print-root,
1648
1654
  }
1649
1655
  .b-grid-base .fa::before {
1650
1656
  font-family: var(--b-widget-icon-font-family);
1657
+ font-weight: var(--b-widget-icon-font-weight);
1651
1658
  }
1652
1659
  .b-no-transitions .b-grid-row {
1653
1660
  transition: none !important;
@@ -2126,6 +2133,7 @@ div.b-grid-header-container .b-yscroll-pad {
2126
2133
  color: var(--b-group-bar-separator-color);
2127
2134
  content: var(--b-group-bar-separator-icon);
2128
2135
  font-family: var(--b-widget-icon-font-family);
2136
+ font-weight: var(--b-widget-icon-font-weight);
2129
2137
  }
2130
2138
  .b-rtl :is(.b-group-bar .b-chip):not(:last-child):after {
2131
2139
  scale: -1 0;
@@ -2441,6 +2449,7 @@ div.b-grid-header-container .b-yscroll-pad {
2441
2449
  margin-inline-end: .6em;
2442
2450
  text-align: center;
2443
2451
  font-family: var(--b-widget-icon-font-family);
2452
+ font-weight: var(--b-widget-icon-font-weight);
2444
2453
  color: var(--b-tree-expander-color);
2445
2454
  width: var(--b-tree-icon-width);
2446
2455
  min-width: var(--b-tree-icon-width);
@@ -2478,7 +2487,7 @@ div.b-grid-header-container .b-yscroll-pad {
2478
2487
  padding-inline-start: calc(var(--b-tree-indent-size) * var(--b-tree-level));
2479
2488
  }
2480
2489
  .b-tree:not(.b-show-tree-lines) .b-tree-leaf-cell .b-tree-parent-has-icon {
2481
- padding-inline-start: calc(var(--b-tree-indent-size) * (var(--b-tree-level) - 1) + var(--b-tree-icon-width) + var(--b-tree-cell-gap));
2490
+ padding-inline-start: calc(var(--b-tree-indent-size) * var(--b-tree-level) + var(--b-tree-icon-width) + var(--b-tree-cell-gap));
2482
2491
  }
2483
2492
  .b-tree-line {
2484
2493
  flex-shrink: 0;