@syncfusion/ej2-react-gantt 25.2.7 → 26.1.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/diConfig.json +56 -4
- package/dist/ej2-react-gantt.min.js +2 -2
- package/dist/ej2-react-gantt.umd.min.js +2 -2
- package/dist/ej2-react-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-react-gantt.es2015.js +26 -6
- package/dist/es6/ej2-react-gantt.es2015.js.map +1 -1
- package/package.json +25 -10
- package/src/gantt/gantt.component.d.ts +1 -0
- package/src/gantt/gantt.component.js +1 -1
- package/src/gantt/index.d.ts +1 -0
- package/src/gantt/index.js +1 -0
- package/src/gantt/weekworkingtime-directive.d.ts +23 -0
- package/src/gantt/weekworkingtime-directive.js +45 -0
- package/styles/bootstrap-dark.css +2188 -1
- package/styles/bootstrap.css +2318 -1
- package/styles/bootstrap4.css +2531 -1
- package/styles/bootstrap5-dark.css +2213 -1
- package/styles/bootstrap5.css +2213 -1
- package/styles/fabric-dark.css +2133 -1
- package/styles/fabric.css +2121 -1
- package/styles/fluent-dark.css +2209 -1
- package/styles/fluent.css +2209 -1
- package/styles/fluent2.css +3458 -0
- package/styles/fluent2.scss +1 -0
- package/styles/gantt/bootstrap-dark.css +2188 -1
- package/styles/gantt/bootstrap.css +2318 -1
- package/styles/gantt/bootstrap4.css +2531 -1
- package/styles/gantt/bootstrap5-dark.css +2213 -1
- package/styles/gantt/bootstrap5.css +2213 -1
- package/styles/gantt/fabric-dark.css +2133 -1
- package/styles/gantt/fabric.css +2121 -1
- package/styles/gantt/fluent-dark.css +2209 -1
- package/styles/gantt/fluent.css +2209 -1
- package/styles/gantt/fluent2.css +3458 -0
- package/styles/gantt/fluent2.scss +1 -0
- package/styles/gantt/highcontrast-light.css +2092 -1
- package/styles/gantt/highcontrast.css +2219 -1
- package/styles/gantt/material-dark.css +2240 -1
- package/styles/gantt/material.css +2292 -1
- package/styles/gantt/material3-dark.css +2367 -1
- package/styles/gantt/material3.css +2479 -1
- package/styles/gantt/tailwind-dark.css +2218 -1
- package/styles/gantt/tailwind.css +2218 -1
- package/styles/highcontrast-light.css +2092 -1
- package/styles/highcontrast.css +2219 -1
- package/styles/material-dark.css +2240 -1
- package/styles/material.css +2292 -1
- package/styles/material3-dark.css +2367 -1
- package/styles/material3.css +2479 -1
- package/styles/tailwind-dark.css +2218 -1
- package/styles/tailwind.css +2218 -1
- package/CHANGELOG.md +0 -2466
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
import { ComplexBase } from '@syncfusion/ej2-react-base';
|
|
15
|
+
/**
|
|
16
|
+
* `WeekWorkingTimeDirective` represent a working time ranges in a day.
|
|
17
|
+
* It must be contained in a Gantt component(`GanttComponent`).
|
|
18
|
+
* ```tsx
|
|
19
|
+
* <GanttComponent dataSource={data} allowSelection={true} allowSorting={true}>
|
|
20
|
+
* <WeekWorkingTimeCollection>
|
|
21
|
+
* <WeekWorkingTime dayOfWeek='Monday' from='8' to='12'></WeekWorkingTimeCollection>
|
|
22
|
+
* <WeekWorkingTime dayOfWeek='Monday' from='13' to='17'></WeekWorkingTimeCollection>
|
|
23
|
+
* </WeekWorkingTimeCollection>
|
|
24
|
+
* </GanttComponent>
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
var WeekWorkingTimeDirective = /** @class */ (function (_super) {
|
|
28
|
+
__extends(WeekWorkingTimeDirective, _super);
|
|
29
|
+
function WeekWorkingTimeDirective() {
|
|
30
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
31
|
+
}
|
|
32
|
+
WeekWorkingTimeDirective.moduleName = 'weekWorkingTime';
|
|
33
|
+
return WeekWorkingTimeDirective;
|
|
34
|
+
}(ComplexBase));
|
|
35
|
+
export { WeekWorkingTimeDirective };
|
|
36
|
+
var WeekWorkingTimesDirective = /** @class */ (function (_super) {
|
|
37
|
+
__extends(WeekWorkingTimesDirective, _super);
|
|
38
|
+
function WeekWorkingTimesDirective() {
|
|
39
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
40
|
+
}
|
|
41
|
+
WeekWorkingTimesDirective.propertyName = 'weekWorkingTime';
|
|
42
|
+
WeekWorkingTimesDirective.moduleName = 'weekWorkingTimes';
|
|
43
|
+
return WeekWorkingTimesDirective;
|
|
44
|
+
}(ComplexBase));
|
|
45
|
+
export { WeekWorkingTimesDirective };
|