@bryntum/scheduler-trial 7.3.2 → 7.3.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 +22 -0
- package/package.json +1 -1
- package/scheduler.css +1 -1
- package/scheduler.d.ts +922 -585
- package/scheduler.module.js +45 -45
- package/scheduler.thin.d.ts +357 -155
- package/scheduler.umd.js +57 -57
package/README.md
CHANGED
|
@@ -99,6 +99,28 @@ Alternatively, add to `package.json` dependencies:
|
|
|
99
99
|
Visit our [npm repository guide](https://bryntum.com/products/scheduler/docs/guide/Scheduler/npm-repository) to learn more about installation and migrating from
|
|
100
100
|
trial to licensed packages.
|
|
101
101
|
|
|
102
|
+
## Using an AI agent?
|
|
103
|
+
|
|
104
|
+
The fastest path for an AI assistant to write working Bryntum Scheduler code:
|
|
105
|
+
|
|
106
|
+
1. **MCP server.** Configure your agent with the Bryntum MCP server for grounded, version-correct answers:
|
|
107
|
+
[setup guide](https://bryntum.com/products/scheduler/docs/guide/Scheduler/ai-features/mcp-server?utm_source=ax-npm).
|
|
108
|
+
2. **Agent skills.** Install the [Bryntum skill](https://github.com/bryntum/skills) for Claude Code, Cursor, or
|
|
109
|
+
Codex — it bundles the conventions below.
|
|
110
|
+
|
|
111
|
+
Common trial-package pitfalls for agents:
|
|
112
|
+
|
|
113
|
+
- **Stale training data.** Bryntum ships breaking changes; do not trust API shapes you remember. Check https://bryntum.com/products/scheduler/docs
|
|
114
|
+
first.
|
|
115
|
+
- **You are on the trial.** The package is installed as `@bryntum/scheduler-trial` but aliased to `@bryntum/scheduler` —
|
|
116
|
+
import paths must use the aliased name (`@bryntum/scheduler`). To upgrade to a licensed package, change the alias to
|
|
117
|
+
`"npm:@bryntum/scheduler@latest"`; do not rewrite imports.
|
|
118
|
+
- **Trial bundles are not minified** and contain a watermark; that is expected, not a bug.
|
|
119
|
+
- **CSS.** Import FontAwesome, `scheduler.css` (structural), and a theme.
|
|
120
|
+
- **Framework wrappers** (`@bryntum/scheduler-react`, `-angular`, `-vue-3`) require the core `@bryntum/scheduler` package;
|
|
121
|
+
installing only the wrapper fails at runtime.
|
|
122
|
+
- **TypeScript types** are bundled in `*.d.ts` next to each entry point; do not hand-roll interfaces.
|
|
123
|
+
|
|
102
124
|
## Quick Start
|
|
103
125
|
|
|
104
126
|
### Vanilla JavaScript
|