@bryntum/scheduler 1.0.0 → 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.
- package/README.md +114 -5
- package/package.json +10 -6
- package/postinstall.js +35 -3
package/README.md
CHANGED
|
@@ -1,11 +1,120 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://bryntum.com/" rel="noopener" target="_blank">
|
|
3
|
+
<img width="350" src="https://bryntum.com/resources/bryntum_logo_blue.svg" alt="Bryntum logo">
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
2
6
|
|
|
3
|
-
|
|
7
|
+
# Bryntum Scheduler placeholder package
|
|
4
8
|
|
|
5
|
-
|
|
9
|
+
This is a placeholder package. The licensed version of Bryntum Scheduler is hosted on the private Bryntum npm registry.
|
|
10
|
+
|
|
11
|
+
**Looking to try Bryntum Scheduler?** Install our trial package: [`@bryntum/scheduler-trial`](https://www.npmjs.com/package/@bryntum/scheduler-trial)
|
|
12
|
+
|
|
13
|
+
## Trial version
|
|
14
|
+
|
|
15
|
+
Trial packages are available on the public npm registry without authentication.
|
|
16
|
+
|
|
17
|
+
### Why Use npm Aliasing?
|
|
18
|
+
|
|
19
|
+
Trial packages use npm aliasing to install `@bryntum/scheduler-trial` under the `@bryntum/scheduler` name. This approach
|
|
20
|
+
provides a seamless upgrade path - when you purchase a license, you only need to update the alias in `package.json`
|
|
21
|
+
without changing any application code.
|
|
22
|
+
|
|
23
|
+
Install using `npm`:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npm install @bryntum/scheduler@npm:@bryntum/scheduler-trial@latest
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Or using `yarn`:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
yarn add @bryntum/scheduler@npm:@bryntum/scheduler-trial@latest
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Alternatively, add to `package.json` dependencies:
|
|
36
|
+
|
|
37
|
+
```json
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@bryntum/scheduler": "npm:@bryntum/scheduler-trial@latest"
|
|
40
|
+
}
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Trial packages have the following limitations:
|
|
44
|
+
|
|
45
|
+
- Displays a trial watermark
|
|
46
|
+
- Obfuscated code
|
|
47
|
+
- Intended for evaluation use only
|
|
48
|
+
|
|
49
|
+
For full guide, see [Public repository access](https://bryntum.com/products/scheduler/docs/guide/Scheduler/npm/repository/public-repository-access).
|
|
50
|
+
|
|
51
|
+
## Licensed version
|
|
52
|
+
|
|
53
|
+
Licensed packages require authentication to the private Bryntum repository.
|
|
54
|
+
|
|
55
|
+
### Step 1: Configure npm and Login
|
|
56
|
+
|
|
57
|
+
We have two registry servers - you can use either one:
|
|
58
|
+
|
|
59
|
+
**Using Europe server:**
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
npm config set "@bryntum:registry=https://npm.bryntum.com"
|
|
63
|
+
npm login --registry=https://npm.bryntum.com
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
**Using US server:**
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
npm config set "@bryntum:registry=https://npm-us.bryntum.com"
|
|
70
|
+
npm login --registry=https://npm-us.bryntum.com
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Login using your [Bryntum Customer Zone](https://customerzone.bryntum.com) credentials.
|
|
74
|
+
Replace `@` in your email with `..` (double dot). Example: if your email is `user@example.com`, enter username
|
|
75
|
+
as `user..example.com`.
|
|
76
|
+
|
|
77
|
+
### Step 2: Install
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
npm install @bryntum/scheduler@latest
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
For full guide including CI/CD setup and access tokens, see [Private repository access](https://bryntum.com/products/scheduler/docs/guide/Scheduler/npm/repository/private-repository-access).
|
|
84
|
+
|
|
85
|
+
## Explore All Bryntum Products
|
|
86
|
+
|
|
87
|
+
* [Bryntum Grid](https://bryntum.com/products/grid/) - High-performance data grid
|
|
88
|
+
* [Bryntum Scheduler](https://bryntum.com/products/scheduler/) - Resource scheduling component
|
|
89
|
+
* [Bryntum Scheduler Pro](https://bryntum.com/products/schedulerpro/) - Advanced scheduling with dependencies
|
|
90
|
+
* [Bryntum Gantt](https://bryntum.com/products/gantt/) - Project planning and management
|
|
91
|
+
* [Bryntum Calendar](https://bryntum.com/products/calendar/) - Full-featured calendar component
|
|
92
|
+
* [Bryntum TaskBoard](https://bryntum.com/products/taskboard/) - Kanban-style task management
|
|
93
|
+
|
|
94
|
+
Explore our comprehensive collection of demos:
|
|
95
|
+
|
|
96
|
+
| 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 |
|
|
97
|
+
|-------------------|:------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------:|:----------------------------------------------------------------------:|:------------------------------------------------------------------------------:|
|
|
98
|
+
| **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) |
|
|
99
|
+
| **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) |
|
|
100
|
+
| **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) |
|
|
101
|
+
| **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) |
|
|
102
|
+
| **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) |
|
|
103
|
+
| **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) |
|
|
6
104
|
|
|
7
105
|
## Online references
|
|
8
106
|
|
|
9
|
-
*
|
|
10
|
-
*
|
|
107
|
+
* [Bryntum Scheduler documentation](https://bryntum.com/products/scheduler/docs/)
|
|
108
|
+
* [Bryntum Scheduler examples](https://bryntum.com/products/scheduler/examples/)
|
|
109
|
+
|
|
110
|
+
* [Bryntum Support Forum](https://forum.bryntum.com/)
|
|
11
111
|
* [Contact us](https://bryntum.com/contact/)
|
|
112
|
+
|
|
113
|
+
## License and copyright
|
|
114
|
+
|
|
115
|
+
Bryntum Scheduler is commercial software and requires a paid license.
|
|
116
|
+
Please visit the [Bryntum Scheduler End User License](https://bryntum.com/products/scheduler/license/) for the full text of the license.
|
|
117
|
+
|
|
118
|
+
Copyright © 2009-2026, Bryntum
|
|
119
|
+
All rights reserved.
|
|
120
|
+
|
package/package.json
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bryntum/scheduler",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "7.1.2",
|
|
4
|
+
"description": "Bryntum Scheduler placeholder package",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"bryntum"
|
|
6
|
+
"bryntum",
|
|
7
|
+
"scheduler",
|
|
8
|
+
"component"
|
|
7
9
|
],
|
|
8
10
|
"author": {
|
|
9
11
|
"name": "Bryntum",
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
+
"url": "https://bryntum.com",
|
|
13
|
+
"email": "info@bryntum.com"
|
|
12
14
|
},
|
|
13
|
-
"license": "
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"homepage": "https://bryntum.com/products/scheduler/",
|
|
17
|
+
"bugs": "https://github.com/bryntum/support/issues",
|
|
14
18
|
"scripts": {
|
|
15
19
|
"postinstall": "node postinstall.js"
|
|
16
20
|
},
|
package/postinstall.js
CHANGED
|
@@ -1,9 +1,41 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
console.error(`
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
╔══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗
|
|
5
|
+
║ WARNING!!! ║
|
|
6
|
+
║ Bryntum Scheduler Package Installation Error ║
|
|
7
|
+
╠══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣
|
|
8
|
+
║ ║
|
|
9
|
+
║ This is a placeholder for the licensed package version ║
|
|
10
|
+
║ hosted on the private Bryntum registry. ║
|
|
11
|
+
║ ║
|
|
12
|
+
╠══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣
|
|
13
|
+
║ USING TRIAL EVALUATION VERSION ║
|
|
14
|
+
╠══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣
|
|
15
|
+
║ ║
|
|
16
|
+
║ Install @bryntum/scheduler-trial from public npm registry. ║
|
|
17
|
+
║ ║
|
|
18
|
+
║ See public repository access guide: ║
|
|
19
|
+
║ https://bryntum.com/products/scheduler/docs/guide/Scheduler/npm/repository/public-repository-access ║
|
|
20
|
+
║ ║
|
|
21
|
+
║ Install using these instructions: ║
|
|
22
|
+
║ https://bryntum.com/products/scheduler/docs/guide/Scheduler/npm/repository/installation#installing-trial-packages ║
|
|
23
|
+
║ ║
|
|
24
|
+
╠══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣
|
|
25
|
+
║ USING LICENSED VERSION ║
|
|
26
|
+
╠══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣
|
|
27
|
+
║ ║
|
|
28
|
+
║ Install @bryntum/scheduler from private Bryntum registry. ║
|
|
29
|
+
║ ║
|
|
30
|
+
║ See private repository access guide: ║
|
|
31
|
+
║ https://bryntum.com/products/scheduler/docs/guide/Scheduler/npm/repository/private-repository-access ║
|
|
32
|
+
║ ║
|
|
33
|
+
║ Install using these instructions: ║
|
|
34
|
+
║ https://bryntum.com/products/scheduler/docs/guide/Scheduler/npm/repository/installation#installing-licensed-packages ║
|
|
35
|
+
║ ║
|
|
36
|
+
╠══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣
|
|
37
|
+
║ Copyright © 2009-2026, Bryntum. All rights reserved. ║
|
|
38
|
+
╚══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝
|
|
7
39
|
`);
|
|
8
40
|
|
|
9
41
|
process.exit(1);
|