@bryntum/scheduler-thin-trial 7.2.2 → 7.2.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/lib/column/ResourceCollapseColumn.js +1 -1
- package/lib/data/mixin/RecurringTimeSpansMixin.js +1 -1
- package/lib/feature/Dependencies.js +1 -1
- package/lib/feature/EventDrag.js +1 -1
- package/lib/feature/RowResize.js +1 -1
- package/lib/feature/SimpleEventEdit.css +2 -2
- package/lib/feature/SimpleEventEdit.js +1 -1
- package/lib/feature/base/DragBase.js +1 -1
- package/lib/feature/mixin/RecurringEventEdit.js +1 -1
- package/lib/model/mixin/ProjectModelCommon.js +1 -1
- package/lib/view/TimelineBase.css +1 -1
- package/lib/view/TimelineBase.js +1 -1
- package/lib/view/TimelineHistogram.css +3 -0
- package/lib/view/VerticalTimeAxis.css +8 -1
- package/lib/view/mixin/EventSelection.js +1 -1
- package/lib/view/mixin/SchedulerResourceRendering.js +1 -1
- package/lib/view/orientation/HorizontalRendering.js +1 -1
- package/lib/view/orientation/VerticalRendering.js +1 -1
- package/material3-dark.css +7 -2
- package/material3-light.css +7 -1
- package/package.json +1 -1
- package/scheduler.css +11 -4
- package/scheduler.css.map +2 -2
- package/scheduler.d.ts +14 -7
- package/visby-dark.css +1 -1
- package/visby-light.css +1 -1
package/scheduler.d.ts
CHANGED
|
@@ -947,8 +947,9 @@ type DurationColumnConfig = {
|
|
|
947
947
|
* @param {object} renderData
|
|
948
948
|
* @param {Grid.column.Column} renderData.column This column
|
|
949
949
|
* @param {HTMLElement} renderData.headerElement The header element
|
|
950
|
+
* @returns {string,object,void,void} The text or markup to show in the column header
|
|
950
951
|
*/
|
|
951
|
-
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|
|
|
952
|
+
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|void
|
|
952
953
|
/**
|
|
953
954
|
* An array of the widgets to append to the column header. These widgets have this Column instance
|
|
954
955
|
* as their `owner` which can be used to reference the column, and the owning Grid via `this.owner.grid`.
|
|
@@ -1695,8 +1696,9 @@ type EventColorColumnConfig = {
|
|
|
1695
1696
|
* @param {object} renderData
|
|
1696
1697
|
* @param {Grid.column.Column} renderData.column This column
|
|
1697
1698
|
* @param {HTMLElement} renderData.headerElement The header element
|
|
1699
|
+
* @returns {string,object,void,void} The text or markup to show in the column header
|
|
1698
1700
|
*/
|
|
1699
|
-
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|
|
|
1701
|
+
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|void
|
|
1700
1702
|
/**
|
|
1701
1703
|
* An array of the widgets to append to the column header. These widgets have this Column instance
|
|
1702
1704
|
* as their `owner` which can be used to reference the column, and the owning Grid via `this.owner.grid`.
|
|
@@ -2405,8 +2407,9 @@ type ResourceCollapseColumnConfig = {
|
|
|
2405
2407
|
* @param {object} renderData
|
|
2406
2408
|
* @param {Grid.column.Column} renderData.column This column
|
|
2407
2409
|
* @param {HTMLElement} renderData.headerElement The header element
|
|
2410
|
+
* @returns {string,object,void,void} The text or markup to show in the column header
|
|
2408
2411
|
*/
|
|
2409
|
-
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|
|
|
2412
|
+
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|void
|
|
2410
2413
|
/**
|
|
2411
2414
|
* An array of the widgets to append to the column header. These widgets have this Column instance
|
|
2412
2415
|
* as their `owner` which can be used to reference the column, and the owning Grid via `this.owner.grid`.
|
|
@@ -3093,8 +3096,9 @@ type ResourceInfoColumnConfig = {
|
|
|
3093
3096
|
* @param {object} renderData
|
|
3094
3097
|
* @param {Grid.column.Column} renderData.column This column
|
|
3095
3098
|
* @param {HTMLElement} renderData.headerElement The header element
|
|
3099
|
+
* @returns {string,object,void,void} The text or markup to show in the column header
|
|
3096
3100
|
*/
|
|
3097
|
-
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|
|
|
3101
|
+
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|void
|
|
3098
3102
|
/**
|
|
3099
3103
|
* An array of the widgets to append to the column header. These widgets have this Column instance
|
|
3100
3104
|
* as their `owner` which can be used to reference the column, and the owning Grid via `this.owner.grid`.
|
|
@@ -3836,8 +3840,9 @@ type ScaleColumnConfig = {
|
|
|
3836
3840
|
* @param {object} renderData
|
|
3837
3841
|
* @param {Grid.column.Column} renderData.column This column
|
|
3838
3842
|
* @param {HTMLElement} renderData.headerElement The header element
|
|
3843
|
+
* @returns {string,object,void,void} The text or markup to show in the column header
|
|
3839
3844
|
*/
|
|
3840
|
-
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|
|
|
3845
|
+
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|void
|
|
3841
3846
|
/**
|
|
3842
3847
|
* An array of the widgets to append to the column header. These widgets have this Column instance
|
|
3843
3848
|
* as their `owner` which can be used to reference the column, and the owning Grid via `this.owner.grid`.
|
|
@@ -4560,8 +4565,9 @@ type TimeAxisColumnConfig = {
|
|
|
4560
4565
|
* @param {object} renderData
|
|
4561
4566
|
* @param {Grid.column.Column} renderData.column This column
|
|
4562
4567
|
* @param {HTMLElement} renderData.headerElement The header element
|
|
4568
|
+
* @returns {string,object,void,void} The text or markup to show in the column header
|
|
4563
4569
|
*/
|
|
4564
|
-
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|
|
|
4570
|
+
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|void
|
|
4565
4571
|
/**
|
|
4566
4572
|
* An array of the widgets to append to the column header. These widgets have this Column instance
|
|
4567
4573
|
* as their `owner` which can be used to reference the column, and the owning Grid via `this.owner.grid`.
|
|
@@ -5265,8 +5271,9 @@ type VerticalTimeAxisColumnConfig = {
|
|
|
5265
5271
|
* @param {object} renderData
|
|
5266
5272
|
* @param {Grid.column.Column} renderData.column This column
|
|
5267
5273
|
* @param {HTMLElement} renderData.headerElement The header element
|
|
5274
|
+
* @returns {string,object,void,void} The text or markup to show in the column header
|
|
5268
5275
|
*/
|
|
5269
|
-
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|
|
|
5276
|
+
headerRenderer?: (renderData: { column: Column, headerElement: HTMLElement }) => string|object|void
|
|
5270
5277
|
/**
|
|
5271
5278
|
* An array of the widgets to append to the column header. These widgets have this Column instance
|
|
5272
5279
|
* as their `owner` which can be used to reference the column, and the owning Grid via `this.owner.grid`.
|
package/visby-dark.css
CHANGED
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
/* Calendar */
|
|
154
154
|
--b-calendar-border-color : var(--b-widget-border-color);
|
|
155
155
|
--b-sidebar-border-inline-end : 1px solid var(--b-widget-border-color);
|
|
156
|
-
--b-month-view-border-inline-width :
|
|
156
|
+
--b-month-view-border-inline-width : 0;
|
|
157
157
|
--b-calendar-selected-date-border : 1px solid var(--b-widget-border-color);
|
|
158
158
|
--b-resource-view-border-start : 0 none;
|
|
159
159
|
|
package/visby-light.css
CHANGED
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
/* Calendar */
|
|
120
120
|
--b-calendar-border-color : var(--b-widget-border-color);
|
|
121
121
|
--b-sidebar-border-inline-end : 1px solid var(--b-widget-border-color);
|
|
122
|
-
--b-month-view-border-inline-width :
|
|
122
|
+
--b-month-view-border-inline-width : 0;
|
|
123
123
|
--b-calendar-selected-date-border : 1px solid var(--b-widget-border-color);
|
|
124
124
|
--b-resource-view-border-start : 0 none;
|
|
125
125
|
|