@canva/cli 1.16.0 → 1.17.0
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/CHANGELOG.md +16 -0
- package/cli.js +360 -360
- package/package.json +1 -1
- package/templates/base/styles/components.css +0 -18
- package/templates/common/jest.setup.ts +3 -1
- package/templates/content_publisher/package.json +1 -1
- package/templates/content_publisher/src/intents/content_publisher/index.tsx +2 -2
- package/templates/content_publisher/src/intents/content_publisher/post_preview.tsx +34 -20
- package/templates/content_publisher/src/intents/content_publisher/preview_ui.tsx +11 -2
- package/templates/content_publisher/src/intents/content_publisher/settings_ui.tsx +23 -13
- package/templates/content_publisher/styles/components.css +0 -18
- package/templates/content_publisher/styles/preview_ui.css +0 -39
- package/templates/dam/package.json +1 -1
- package/templates/dam/src/intents/design_editor/app.tsx +1 -1
- package/templates/dam/src/intents/design_editor/index.css +0 -7
- package/templates/data_connector/package.json +1 -1
- package/templates/data_connector/styles/components.css +0 -18
- package/templates/gen_ai/package.json +1 -1
- package/templates/gen_ai/styles/components.css +0 -18
- package/templates/hello_world/package.json +1 -1
- package/templates/hello_world/styles/components.css +0 -18
- package/templates/mls/jest.setup.ts +3 -1
- package/templates/mls/package.json +1 -1
- package/templates/mls/styles/components.css +0 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.17.0 - 2026-02-03
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Added mocking for `@canva/intents` package in `jest.setup.ts` for each template.
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Template selection during `canva apps create` now wraps around when navigating with arrow keys
|
|
12
|
+
- Updated CLI templates to use `@canva/app-ui-kit` component props instead of CSS classes for layout styling.
|
|
13
|
+
- Upgraded `@canva/intents` to `2.1.0`.
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Fixed an issue in the template for the Content Publisher intent.
|
|
18
|
+
|
|
3
19
|
## v1.16.0 - 2026-01-28
|
|
4
20
|
|
|
5
21
|
### Changed
|