Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
b8841f0
wip: rewriting addons control panel to be a11y compliant
deodorhunter Sep 26, 2024
8200377
feat: reworked addons control panel, added/fixed tests
deodorhunter Sep 27, 2024
6d2c859
Merge branch 'main' into 5142-a11y---site-setup---addon-ons---cms-ui
deodorhunter Sep 27, 2024
ea94baf
fix: added Changelog entry
deodorhunter Sep 27, 2024
75ae670
fix: changelog entry name changed to reference pr instead of issue
deodorhunter Sep 27, 2024
42b74d6
fix: changelog entry for plone/types package
deodorhunter Sep 27, 2024
3ebdcd2
Merge branch 'main' into 5142-a11y---site-setup---addon-ons---cms-ui
pnicolli Sep 28, 2024
03df913
fix: change css selectors naming and update all translations
deodorhunter Sep 30, 2024
5de06a2
Merge branch 'main' into 5142-a11y---site-setup---addon-ons---cms-ui
deodorhunter Sep 30, 2024
54a44e0
chore: update failing test snapshot due to classnames changes
deodorhunter Sep 30, 2024
446a2f9
Merge branch 'main' into 5142-a11y---site-setup---addon-ons---cms-ui
pnicolli Oct 29, 2024
c61c515
Fixed tests and missing keys
pnicolli Oct 29, 2024
7857f90
Added h1 for a11y and fixed translations
pnicolli Oct 29, 2024
f9ff950
Updated snapshot to fix tests
pnicolli Oct 29, 2024
416059d
fix: review fixes and requested changes
deodorhunter Oct 30, 2024
7ac73c5
fix: remove aria-label period breaking unrelated slate page test in m…
deodorhunter Oct 30, 2024
83b21a9
chore: update jest snapshot
deodorhunter Oct 30, 2024
71b092b
Merge branch 'main' into 5142-a11y---site-setup---addon-ons---cms-ui
deodorhunter Oct 30, 2024
7cdd967
chore: realign .pot files after main merge
deodorhunter Oct 30, 2024
f25d19a
fix: revert double click to install action, minor css fixes, replace …
deodorhunter Dec 6, 2024
066c1ad
fix: more intl messages and translations fixes for 'addon'
deodorhunter Dec 6, 2024
26d4e96
chore: realign to main and update test snapshots
deodorhunter Dec 6, 2024
5c420c2
fix: revert git merge and realign again, recover missing files after …
deodorhunter Dec 9, 2024
a89608b
fix: restore old translations due to known translations bug, restore …
deodorhunter Dec 9, 2024
60b9aa2
chore: align to main and fix left in tree conflict from merge, fix ne…
deodorhunter Dec 9, 2024
e14bc83
Merge branch 'main' into 5142-a11y---site-setup---addon-ons---cms-ui
deodorhunter Dec 9, 2024
c826b29
chore: bridge branch for merging
deodorhunter Mar 13, 2025
db8c050
fix: wrong merge of docs/source/release-notes/index.md
deodorhunter Mar 13, 2025
0724de1
Merge branch 'main' into 5142-a11y---site-setup---addon-ons---cms-ui
deodorhunter Mar 20, 2025
0b66ad9
fix: missing news file in packages/generator-volto
deodorhunter Mar 20, 2025
87c1978
fix: remove unwanted formatting changes from .md linter after main merge
deodorhunter Mar 31, 2025
dc2c1a6
fix: merge conflicts from main
deodorhunter Mar 31, 2025
4df7174
fix: ru translation after git merge fail
deodorhunter Mar 31, 2025
5b552a7
fix: remove merged news files and older react-aria-components in deps
deodorhunter Mar 31, 2025
dfa3690
fix: remove merged news files
deodorhunter Mar 31, 2025
86897cd
fix: try find and replace of changed msgids due to volto bug
deodorhunter Mar 31, 2025
b71d50b
fix: missing italian translation
deodorhunter Mar 31, 2025
f0f7e0e
fix: trying to restore 7mo history in translations for hyphenated add…
deodorhunter Mar 31, 2025
ef27f80
fix: italian translations
deodorhunter Mar 31, 2025
2e5580e
Merge branch 'main' into 5142-a11y---site-setup---addon-ons---cms-ui
deodorhunter Apr 8, 2025
3fc54c8
Merge branch 'main' into 5142-a11y---site-setup---addon-ons---cms-ui
pnicolli Apr 10, 2025
83be3bb
Merge branch 'main' into 5142-a11y---site-setup---addon-ons---cms-ui
Wagner3UB Jul 27, 2026
6ef6d25
chore: translate new addons msgids and restore lost upgradeVersions e…
Wagner3UB Jul 27, 2026
d1007e6
fix: declare defaultMessage for upgradeVersions to keep it in i18n ex…
Wagner3UB Jul 27, 2026
d814047
fix: restore keyboard access to addon install/uninstall/upgrade actions
Wagner3UB Jul 28, 2026
e9ee022
fix: add screen reader instructions for install/uninstall/update actions
Wagner3UB Jul 28, 2026
524ce45
fix: add navigation hint to first item in addons list for screen readers
Wagner3UB Jul 29, 2026
93cdae2
fix: correct AddonsControlpanel Props typing for build:types
Wagner3UB Jul 29, 2026
c83362c
fix: remove duplicate react-aria-components entry and apply review wo…
Wagner3UB Jul 29, 2026
09b4cda
fix: rename new addons msgids per review suggestions
Wagner3UB Jul 29, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/types/news/6345.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated incomplete types for add-on service response. @deodorhunter
20 changes: 14 additions & 6 deletions packages/types/src/services/addons.d.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
interface AddonUpgradeInfo {
available: boolean;
hasProfile: boolean;
installedVersion: string;
newVersion: string;
requires: boolean;
}

interface Addon {
description: string;
profile_type: string;
upgrade_profiles: Record<string, unknown>;
upgrade_profiles?: Record<string, unknown>;
uninstall_profile_id: string;
other_profiles: any[];
is_installed: string;
other_profiles?: any[];
is_installed: boolean;
id: string;
install_profile: InstallProfile;
install_profile?: InstallProfile;
title: string;
uninstall_profile: UninstallProfile;
uninstall_profile?: UninstallProfile;
install_profile_id: string;
version: string;
upgrade_info: Record<string, unknown>;
upgrade_info: Partial<AddonUpgradeInfo>;
}

interface InstallProfile {
Expand Down
Loading
Loading