@bryntum/grid-thin-trial 7.1.1 → 7.1.3
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/README.md +277 -20
- package/grid.css +10 -1
- package/grid.css.map +2 -2
- package/grid.d.ts +445 -263
- package/lib/column/ActionColumn.js +1 -1
- package/lib/column/CheckColumn.js +1 -1
- package/lib/column/Column.js +1 -1
- package/lib/column/DateColumn.js +1 -1
- package/lib/column/NumberColumn.js +1 -1
- package/lib/column/TimeColumn.js +1 -1
- package/lib/column/TreeColumn.css +2 -1
- package/lib/data/ColumnStore.js +1 -1
- package/lib/feature/CellEdit.js +1 -1
- package/lib/feature/ColumnResize.css +1 -0
- package/lib/feature/Filter.css +1 -0
- package/lib/feature/Filter.js +1 -1
- package/lib/feature/FilterBar.js +1 -1
- package/lib/feature/Group.css +2 -0
- package/lib/feature/GroupSummary.js +1 -1
- package/lib/feature/RowReorder.css +1 -0
- package/lib/feature/RowReorder.js +1 -1
- package/lib/feature/Sort.css +1 -0
- package/lib/feature/Summary.js +1 -1
- package/lib/feature/TreeGroup.js +1 -1
- package/lib/feature/export/PdfExport.js +4 -4
- package/lib/feature/export/mixin/PrintMixin.js +1 -1
- package/lib/row/Row.js +1 -1
- package/lib/row/RowManager.js +1 -1
- package/lib/util/GridLocation.js +1 -1
- package/lib/util/SubGridScroller.js +1 -1
- package/lib/view/GridBase.css +2 -1
- package/lib/view/GridBase.js +1 -1
- package/lib/view/Header.js +1 -1
- package/lib/view/SubGrid.js +1 -1
- package/lib/view/TreeGrid.js +1 -1
- package/lib/view/export/ExportDialog.js +1 -1
- package/lib/view/mixin/GridElementEvents.js +1 -1
- package/lib/view/mixin/GridNavigation.js +1 -1
- package/lib/view/mixin/GridSubGrids.js +1 -1
- package/lib/widget/GroupBar.css +1 -0
- package/package.json +1 -1
- package/postinstall.cjs +4 -5
package/README.md
CHANGED
|
@@ -1,52 +1,309 @@
|
|
|
1
|
-
|
|
1
|
+
<br>
|
|
2
|
+
<br>
|
|
2
3
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
<p align="center">
|
|
5
|
+
<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>
|
|
6
|
+
</p>
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
<br>
|
|
9
|
+
|
|
10
|
+
# Bryntum Grid Thin (Trial)
|
|
11
|
+
|
|
12
|
+
Bryntum Grid is a high-performance JavaScript data grid component.. It integrates smoothly with React, Vue, Angular, or plain vanilla JS.
|
|
8
13
|
|
|
9
14
|
For more information about all features, visit the [Bryntum Grid site](https://bryntum.com/products/grid/).
|
|
10
15
|
|
|
11
|
-
|
|
16
|
+
<p align="center">
|
|
17
|
+
<img src="https://bryntum.com/products/grid/examples/meta/thumb.2048.png" alt="Bryntum Grid Screenshot" width="600">
|
|
18
|
+
</p>
|
|
19
|
+
|
|
20
|
+
## What is the Thin Package?
|
|
21
|
+
|
|
22
|
+
The **Thin package** contains only product-specific code and styling, making it ideal for:
|
|
23
|
+
|
|
24
|
+
* **Combining multiple Bryntum products** in a single application
|
|
25
|
+
* **Reducing bundle size** - no duplicated code when using multiple products
|
|
26
|
+
* **Avoiding runtime conflicts** - prevents duplicate class registrations
|
|
27
|
+
|
|
28
|
+
### Thin vs Regular Package
|
|
29
|
+
|
|
30
|
+
| Package Type | Contains | Best For |
|
|
31
|
+
|------------------------------------|-----------------------------------------------------------------------|--------------------------------------------------------|
|
|
32
|
+
| **Regular** (`@bryntum/grid`) | Product + all dependencies<br/>(e.g., Scheduler includes Grid + Core) | Single product apps |
|
|
33
|
+
| **Thin** (`@bryntum/grid-thin`) | Product-specific code only | Multiple product apps or optimized single product apps |
|
|
34
|
+
|
|
35
|
+
### When to Use Thin Package?
|
|
36
|
+
|
|
37
|
+
**Use Thin if:**
|
|
38
|
+
|
|
39
|
+
- Combining multiple Bryntum products (e.g., Grid + Scheduler + Gantt)
|
|
40
|
+
- Using thin framework wrappers (`@bryntum/grid-react-thin`)
|
|
41
|
+
- Want smallest possible bundle size
|
|
42
|
+
- Building with modern build tools (Webpack 5+, Vite, Rollup)
|
|
43
|
+
|
|
44
|
+
**Use Regular if:**
|
|
12
45
|
|
|
13
|
-
|
|
14
|
-
|
|
46
|
+
- Building a single product application with standard setup
|
|
47
|
+
- Using direct `<script>` tag inclusion
|
|
48
|
+
- Prefer simpler dependency management
|
|
15
49
|
|
|
16
|
-
|
|
17
|
-
detailed information on the sign-up/login process.
|
|
50
|
+
## Highlights
|
|
18
51
|
|
|
19
|
-
|
|
52
|
+
* Virtual rendering with [infinite scroll](https://bryntum.com/products/grid/examples/infinite-scroll) handles millions of rows
|
|
53
|
+
* [Excel-like cell editing](https://bryntum.com/products/grid/examples/celledit) with inline validation and keyboard shortcuts
|
|
54
|
+
* [Tree grids](https://bryntum.com/products/grid/examples/tree) and [nested views](https://bryntum.com/products/grid/examples/master-detail) for hierarchical data
|
|
55
|
+
* [Advanced filtering](https://bryntum.com/products/grid/examples/facet-filter) and [instant search](https://bryntum.com/products/grid/examples/search) across massive datasets
|
|
56
|
+
* [Custom cell renderers](https://bryntum.com/products/grid/examples/renderers) for charts, progress bars, and rich HTML
|
|
57
|
+
* [Row grouping](https://bryntum.com/products/grid/examples/grouping) with [aggregation and summaries](https://bryntum.com/products/grid/examples/groupsummary)
|
|
58
|
+
* [AI content generation](https://bryntum.com/products/grid/examples/ai-review-grid) using cell formulas
|
|
59
|
+
* [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
|
|
60
|
+
* WCAG 2.1 [accessible](https://bryntum.com/products/grid/examples/basic), [30+ locales](https://bryntum.com/products/grid/examples/localization), TypeScript definitions included
|
|
61
|
+
* [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
|
|
62
|
+
* [Export to Excel](https://bryntum.com/products/grid/examples/exporttoexcel) and [PDF](https://bryntum.com/products/grid/examples/export) with professional formatting
|
|
63
|
+
* Touch-friendly and [responsive layouts](https://bryntum.com/products/grid/examples/responsive) optimized for mobile devices
|
|
20
64
|
|
|
21
|
-
|
|
22
|
-
command depends on the package manager used by the application.
|
|
65
|
+
## Package Contents
|
|
23
66
|
|
|
24
|
-
|
|
67
|
+
| Path | Description |
|
|
68
|
+
|---------------------------------------|------------------------------------------------|
|
|
69
|
+
| `grid.module.js`, `grid.umd.js` | JavaScript bundles (ES module and UMD formats) |
|
|
70
|
+
| `grid.css` | Structural CSS (required) |
|
|
71
|
+
| `*.d.ts` | TypeScript type definitions |
|
|
72
|
+
| `*.css` | Theme stylesheets |
|
|
73
|
+
|
|
74
|
+
**Note:** Trial packages do not include minified bundles or source maps.
|
|
75
|
+
|
|
76
|
+
## Supported Versions
|
|
77
|
+
|
|
78
|
+
* [NodeJS](https://nodejs.org/en): `>= 20.0.0`
|
|
79
|
+
* [TypeScript](https://www.typescriptlang.org/): `>= 3.6.0`
|
|
80
|
+
* [Angular](https://angularjs.org/): `>= 9.0.0`
|
|
81
|
+
* [React](https://react.dev/): `>= 16.0.0`
|
|
82
|
+
* [Vue](https://vuejs.org/): `>= 3.0.0`
|
|
83
|
+
* [Ionic](https://ionicframework.com/): `>= 5.0.0`
|
|
84
|
+
* [Vite](https://vite.dev/): `>= 4.0.0`
|
|
85
|
+
* [Webpack](https://webpack.js.org/): `>= 4.0.0`
|
|
86
|
+
|
|
87
|
+
## Try Bryntum Online Demos
|
|
88
|
+
|
|
89
|
+
Explore our comprehensive collection of demos:
|
|
90
|
+
|
|
91
|
+
* [View Online Demos](https://bryntum.com/products/grid/examples/)
|
|
92
|
+
* [JavaScript Demos](https://bryntum.com/products/grid/examples/?framework=javascript)
|
|
93
|
+
* [React Demos](https://bryntum.com/products/grid/examples/?framework=react)
|
|
94
|
+
* [Vue Demos](https://bryntum.com/products/grid/examples/?framework=vue)
|
|
95
|
+
* [Angular Demos](https://bryntum.com/products/grid/examples/?framework=angular)
|
|
96
|
+
|
|
97
|
+
## Installation
|
|
98
|
+
|
|
99
|
+
This is a **trial package** with limited functionality.
|
|
100
|
+
|
|
101
|
+
### Why Use npm Aliasing?
|
|
102
|
+
|
|
103
|
+
Trial packages use npm aliasing to install `@bryntum/grid-thin-trial` under the `@bryntum/grid-thin` name. This
|
|
104
|
+
approach provides a seamless upgrade path - when you purchase a license, you only need to update the alias in
|
|
105
|
+
`package.json` without changing any application code.
|
|
25
106
|
|
|
26
107
|
Install using `npm`:
|
|
27
108
|
|
|
28
109
|
```shell
|
|
29
|
-
npm install @bryntum/grid-thin@npm
|
|
110
|
+
npm install @bryntum/grid-thin@npm:@bryntum/grid-thin-trial@latest
|
|
30
111
|
```
|
|
31
112
|
|
|
32
|
-
|
|
113
|
+
Or using `yarn`:
|
|
33
114
|
|
|
34
115
|
```shell
|
|
35
|
-
yarn add @bryntum/grid-thin@npm
|
|
116
|
+
yarn add @bryntum/grid-thin@npm:@bryntum/grid-thin-trial@latest
|
|
36
117
|
```
|
|
37
118
|
|
|
38
|
-
|
|
119
|
+
Alternatively, add to `package.json` dependencies:
|
|
120
|
+
|
|
121
|
+
```json
|
|
122
|
+
"dependencies": {
|
|
123
|
+
"@bryntum/grid-thin": "npm:@bryntum/grid-thin-trial@latest"
|
|
124
|
+
}
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
Visit our [npm repository guide](https://bryntum.com/products/grid/docs/guide/Grid/npm-repository) to learn more about installation and migrating from
|
|
128
|
+
trial to licensed packages.
|
|
129
|
+
|
|
130
|
+
## Combining Multiple Products
|
|
131
|
+
|
|
132
|
+
When combining multiple Bryntum products, install all needed thin packages with aliasing:
|
|
133
|
+
|
|
134
|
+
```shell
|
|
135
|
+
# Example: Using Grid and Scheduler together
|
|
136
|
+
npm install @bryntum/grid-thin@npm:@bryntum/grid-thin-trial@latest
|
|
137
|
+
npm install @bryntum/scheduler-thin@npm:@bryntum/scheduler-thin-trial@latest
|
|
138
|
+
npm install @bryntum/scheduler-react-thin@latest
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
## Required Dependencies
|
|
142
|
+
|
|
143
|
+
Thin packages contain only product-specific code and **do not automatically install dependencies**. You must manually
|
|
144
|
+
install all required API packages for the underlying products.
|
|
145
|
+
|
|
146
|
+
### API Packages (Required):
|
|
147
|
+
|
|
148
|
+
```json
|
|
149
|
+
{
|
|
150
|
+
"dependencies": {
|
|
151
|
+
"@bryntum/core-thin": "latest",
|
|
152
|
+
"@bryntum/grid-thin": "latest"
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
### Dependency Chain Overview
|
|
158
|
+
|
|
159
|
+
The following table shows which thin API packages are required for each Bryntum product:
|
|
160
|
+
|
|
161
|
+
| Product | Core | Engine | Grid | Scheduler | Scheduler Pro | Product Package |
|
|
162
|
+
|-------------------|:----:|:------:|:----:|:---------:|:-------------:|:----------------------------:|
|
|
163
|
+
| **Grid** | ✓ | | ✓ | | | `@bryntum/grid-thin` |
|
|
164
|
+
| **Scheduler** | ✓ | ✓ | ✓ | ✓ | | `@bryntum/scheduler-thin` |
|
|
165
|
+
| **Scheduler Pro** | ✓ | ✓ | ✓ | ✓ | ✓ | `@bryntum/schedulerpro-thin` |
|
|
166
|
+
| **Gantt** | ✓ | ✓ | ✓ | ✓ | ✓ | `@bryntum/gantt-thin` |
|
|
167
|
+
| **Calendar** | ✓ | ✓ | ✓ | ✓ | | `@bryntum/calendar-thin` |
|
|
168
|
+
| **TaskBoard** | ✓ | ✓ | | | | `@bryntum/taskboard-thin` |
|
|
169
|
+
|
|
170
|
+
### Important Notes
|
|
171
|
+
|
|
172
|
+
**About Core Framework Wrappers:**
|
|
173
|
+
|
|
174
|
+
`@bryntum/core-[framework]-thin` packages (e.g., `@bryntum/core-react-thin`) are **optional** and only needed if you use
|
|
175
|
+
Bryntum Core UI widgets directly in your app, such as:
|
|
176
|
+
|
|
177
|
+
- `BryntumButton`
|
|
178
|
+
- `BryntumCombo`
|
|
179
|
+
- `BryntumTextField`
|
|
180
|
+
- Other Core widgets
|
|
181
|
+
|
|
182
|
+
If you only use the main product component (Grid, Scheduler, etc.), you don't need the Core framework wrapper.
|
|
183
|
+
|
|
184
|
+
## Quick Start
|
|
185
|
+
|
|
186
|
+
```typescript
|
|
187
|
+
import { Grid } from '@bryntum/grid-thin';
|
|
188
|
+
import './style.css';
|
|
189
|
+
|
|
190
|
+
const grid = new Grid({
|
|
191
|
+
appendTo : 'app',
|
|
192
|
+
columns : [
|
|
193
|
+
{ field : 'name', text : 'Name', width : 200 },
|
|
194
|
+
{ field : 'city', text : 'City', flex : 1 }
|
|
195
|
+
],
|
|
196
|
+
data : [
|
|
197
|
+
{ name : 'Dan Stevenson', city : 'Los Angeles' },
|
|
198
|
+
{ name : 'Talisha Babin', city : 'Paris' }
|
|
199
|
+
]
|
|
200
|
+
});
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
## Themes
|
|
204
|
+
|
|
205
|
+
### Svalbard (default)
|
|
206
|
+
|
|
207
|
+
| Light | Dark |
|
|
208
|
+
|--------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------|
|
|
209
|
+
| <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> |
|
|
210
|
+
|
|
211
|
+
### Stockholm
|
|
212
|
+
|
|
213
|
+
| Light | Dark |
|
|
214
|
+
|----------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
|
|
215
|
+
| <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> |
|
|
216
|
+
|
|
217
|
+
### Visby
|
|
218
|
+
|
|
219
|
+
| Light | Dark |
|
|
220
|
+
|--------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|
|
|
221
|
+
| <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> |
|
|
222
|
+
|
|
223
|
+
### Material 3
|
|
224
|
+
|
|
225
|
+
| Light | Dark |
|
|
226
|
+
|-----------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------|
|
|
227
|
+
| <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> |
|
|
228
|
+
|
|
229
|
+
### High Contrast
|
|
230
|
+
|
|
231
|
+
| Light | Dark |
|
|
232
|
+
|------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------|
|
|
233
|
+
| <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> |
|
|
234
|
+
|
|
235
|
+
### Fluent 2
|
|
236
|
+
|
|
237
|
+
| Light | Dark |
|
|
238
|
+
|-------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------|
|
|
239
|
+
| <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> |
|
|
240
|
+
|
|
241
|
+
For more information on customizing themes, see the [Styling guide](https://bryntum.com/products/grid/docs/guide/Grid/customization/styling).
|
|
242
|
+
|
|
243
|
+
## Framework Integrations
|
|
244
|
+
|
|
245
|
+
Thin packages use thin framework wrappers. Each wrapper follows native framework patterns and lifecycle management.
|
|
246
|
+
|
|
247
|
+
**Note:** The framework wrappers are public and can be installed normally. They require the thin core package (installed
|
|
248
|
+
above with aliasing) to be present.
|
|
249
|
+
|
|
250
|
+
### React
|
|
251
|
+
|
|
252
|
+
```shell
|
|
253
|
+
npm install @bryntum/grid-react-thin@latest
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
For details, see [React Multiple Products](https://bryntum.com/products/grid/docs/guide/Grid/integration/react/multiple-products).
|
|
257
|
+
|
|
258
|
+
### Angular
|
|
259
|
+
|
|
260
|
+
```shell
|
|
261
|
+
npm install @bryntum/grid-angular-thin@latest
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
For details, see [Angular Multiple Products](https://bryntum.com/products/grid/docs/guide/Grid/integration/angular/multiple-products).
|
|
265
|
+
|
|
266
|
+
### Vue 3
|
|
267
|
+
|
|
268
|
+
```shell
|
|
269
|
+
npm install @bryntum/grid-vue-3-thin@latest
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
For details, see [Vue Multiple Products](https://bryntum.com/products/grid/docs/guide/Grid/integration/vue/multiple-products).
|
|
273
|
+
|
|
274
|
+
## Explore All Bryntum Products
|
|
275
|
+
|
|
276
|
+
* [Bryntum Grid](https://bryntum.com/products/grid/) - High-performance data grid
|
|
277
|
+
* [Bryntum Scheduler](https://bryntum.com/products/scheduler/) - Resource scheduling component
|
|
278
|
+
* [Bryntum Scheduler Pro](https://bryntum.com/products/schedulerpro/) - Advanced scheduling with dependencies
|
|
279
|
+
* [Bryntum Gantt](https://bryntum.com/products/gantt/) - Project planning and management
|
|
280
|
+
* [Bryntum Calendar](https://bryntum.com/products/calendar/) - Full-featured calendar component
|
|
281
|
+
* [Bryntum TaskBoard](https://bryntum.com/products/taskboard/) - Kanban-style task management
|
|
282
|
+
|
|
283
|
+
Explore our comprehensive collection of demos:
|
|
284
|
+
|
|
285
|
+
| 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 |
|
|
286
|
+
|-------------------|:------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------:|:----------------------------------------------------------------------:|:------------------------------------------------------------------------------:|
|
|
287
|
+
| **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) |
|
|
288
|
+
| **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) |
|
|
289
|
+
| **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) |
|
|
290
|
+
| **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) |
|
|
291
|
+
| **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) |
|
|
292
|
+
| **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) |
|
|
293
|
+
|
|
294
|
+
## Online references
|
|
39
295
|
|
|
40
|
-
* [Bryntum npm repository guide](https://bryntum.com/products/grid/docs/guide/Grid/npm-repository)
|
|
41
296
|
* [Bryntum Grid documentation](https://bryntum.com/products/grid/docs/)
|
|
42
297
|
* [Bryntum Grid examples](https://bryntum.com/products/grid/examples/)
|
|
298
|
+
|
|
43
299
|
* [Bryntum Support Forum](https://forum.bryntum.com/)
|
|
44
300
|
* [Contact us](https://bryntum.com/contact/)
|
|
45
301
|
|
|
46
|
-
|
|
302
|
+
## License and copyright
|
|
47
303
|
|
|
48
304
|
Bryntum Grid is commercial software and requires a paid license.
|
|
49
305
|
Please visit the [Bryntum Grid End User License](https://bryntum.com/products/grid/license/) for the full text of the license.
|
|
50
306
|
|
|
51
307
|
Copyright © 2009-2026, Bryntum
|
|
52
308
|
All rights reserved.
|
|
309
|
+
|
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) *
|
|
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;
|