@kitconcept/volto-light-theme 2.0.0 → 3.0.0-alpha.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.
Files changed (40) hide show
  1. package/.github/workflows/acceptance.yml +2 -1
  2. package/.github/workflows/code.yml +2 -1
  3. package/.github/workflows/unit.yml +2 -1
  4. package/CHANGELOG.md +70 -0
  5. package/Makefile +1 -1
  6. package/README.md +16 -15
  7. package/locales/de/LC_MESSAGES/volto.po +2 -2
  8. package/locales/en/LC_MESSAGES/volto.po +1 -1
  9. package/locales/pt_BR/volto.po +317 -0
  10. package/locales/volto.pot +2 -2
  11. package/package.json +4 -4
  12. package/src/components/Blocks/Listing/ImageGallery.jsx +126 -0
  13. package/src/components/Logo/Logo.jsx +7 -1
  14. package/src/components/MobileNavigation/MobileNavigation.jsx +134 -90
  15. package/src/components/MobileNavigation/MobileToolsFooter.jsx +10 -0
  16. package/src/components/Navigation/Navigation.jsx +35 -41
  17. package/src/customizations/volto/components/manage/Blocks/Listing/ImageGallery.jsx +8 -0
  18. package/src/icons/back-down.svg +8 -0
  19. package/src/icons/fullscreen.svg +7 -0
  20. package/src/icons/left-key.svg +4 -0
  21. package/src/icons/pause.svg +6 -0
  22. package/src/icons/play.svg +4 -0
  23. package/src/icons/right-key.svg +4 -0
  24. package/src/index.js +5 -0
  25. package/src/theme/_bgcolor-blocks-layout.scss +13 -0
  26. package/src/theme/_blocks-chooser.scss +3 -0
  27. package/src/theme/_content.scss +1 -1
  28. package/src/theme/_fonts.scss +317 -0
  29. package/src/theme/_header.scss +32 -16
  30. package/src/theme/_layout.scss +7 -24
  31. package/src/theme/_sitemap.scss +27 -0
  32. package/src/theme/_typo-custom.scss +0 -73
  33. package/src/theme/_typography.scss +1 -245
  34. package/src/theme/_variables.scss +14 -0
  35. package/src/theme/blocks/_grid.scss +8 -0
  36. package/src/theme/blocks/_image.scss +1 -1
  37. package/src/theme/blocks/_listing.scss +110 -4
  38. package/src/theme/blocks/_slider.scss +16 -71
  39. package/src/theme/blocks/_teaser.scss +1 -4
  40. package/src/theme/main.scss +6 -1
@@ -1,5 +1,5 @@
1
1
  name: Acceptance tests
2
- on: [push]
2
+ on: [push, pull_request]
3
3
 
4
4
  env:
5
5
  ADDON_NAME: "@kitconcept/volto-light-theme"
@@ -9,6 +9,7 @@ env:
9
9
  jobs:
10
10
 
11
11
  acceptance:
12
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
12
13
  runs-on: ubuntu-latest
13
14
  steps:
14
15
  - name: Checkout
@@ -1,7 +1,8 @@
1
1
  name: Code analysis checks
2
- on: [push]
2
+ on: [push, pull_request]
3
3
  jobs:
4
4
  codeanalysis:
5
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
5
6
  runs-on: ubuntu-latest
6
7
  strategy:
7
8
  matrix:
@@ -1,7 +1,8 @@
1
1
  name: Unit Tests
2
- on: [push]
2
+ on: [push, pull_request]
3
3
  jobs:
4
4
  unit:
5
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
5
6
  runs-on: ubuntu-latest
6
7
  strategy:
7
8
  matrix:
package/CHANGELOG.md CHANGED
@@ -8,6 +8,76 @@
8
8
 
9
9
  <!-- towncrier release notes start -->
10
10
 
11
+ ## 3.0.0-alpha.0 (2023-12-27)
12
+
13
+ ### Breaking
14
+
15
+ - Upgraded the dependency on `@kitconcept/volto-slider-block` to use `6.0.0`.
16
+
17
+ This is a drop-in replacement, so no action is required for the existing slider blocks you may have already in your sites.
18
+ However, the CSS classes of the structural slider block elements changed in this version.
19
+ The inner (visible objects) CSS classes remain unchanged.
20
+ If you have customized them in your project, you may have to update them, although the structural class names are rarely customized aside from vertical spacing properties.
21
+ They are mapped 1:1 with the previous ones, following this table correspondence:
22
+
23
+ | Old className | New className |
24
+ | --------------- | ---------------- |
25
+ | slick-slider | slider-wrapper |
26
+ | slick-list | slider-viewport |
27
+ | slick-track | slider-container |
28
+ | slick-slide | slider-slide |
29
+ | slick-arrow | slider-button |
30
+ | slick-prev | slider-button-prev |
31
+ | slick-next | slider-slide-next |
32
+ | slick-next | slider-slide-next |
33
+ | slick-dots | slider-dots |
34
+ | slick-dot | slider-dot |
35
+
36
+ For more information, please check the https://github.com/kitconcept/volto-slider-block/blob/main/README.md [#288](https://github.com/kitconcept/volto-light-theme/pull/288)
37
+
38
+ ### Bugfix
39
+
40
+ - Fix showing up uploaded logo from site controlpanel. @iFlameing [#291](https://github.com/kitconcept/volto-light-theme/pull/291)
41
+ - Un-pin `eslint-plugin-jsx-a11y` version @sneridagh [#299](https://github.com/kitconcept/volto-light-theme/pull/299)
42
+ - Fix Blocks chooser styling @iRohitSingh [#307](https://github.com/kitconcept/volto-light-theme/pull/307)
43
+ - Remove id selector from listings because of css specificity @steffenri [#309](https://github.com/kitconcept/volto-light-theme/pull/309)
44
+ - Fix margins of h1 in sitemap view @steffenri [#312](https://github.com/kitconcept/volto-light-theme/pull/312)
45
+ - Fix homepage link for all language codes (#298) @steffenri [#313](https://github.com/kitconcept/volto-light-theme/pull/313)
46
+
47
+ ### Internal
48
+
49
+ - Upgrade slider to 6.1.0 @sneridagh [#316](https://github.com/kitconcept/volto-light-theme/pull/316)
50
+
51
+ ## 2.1.0 (2023-12-13)
52
+
53
+ ### Feature
54
+
55
+ - Added Image Gallery Listing Metadata @robgietema [#127](https://github.com/kitconcept/volto-light-theme/pull/127)
56
+ - Add Brazilian Portuguese translation [@ericof] [#294](https://github.com/kitconcept/volto-light-theme/pull/294)
57
+
58
+ ### Bugfix
59
+
60
+ - Also clean up Navigation PropTypes @fredvd [#272b](https://github.com/kitconcept/volto-light-theme/pull/272b)
61
+ - Fix css of External link icon indicator @iRohitSingh [#91](https://github.com/kitconcept/volto-light-theme/pull/91)
62
+ - Fix css of Sitemap @iRohitSingh [#209](https://github.com/kitconcept/volto-light-theme/pull/209)
63
+ - Fixed css errors in the header and image scss files @ichim-david
64
+ All the mobile menu items are now links @ichim-david
65
+ Close buttons are now tabbable @ichim-david
66
+ Close menu when hitting the escape key @ichim-david [#264](https://github.com/kitconcept/volto-light-theme/pull/264)
67
+ - Use only one set of values for container widths which can be modified from variables @ichim-david [#265](https://github.com/kitconcept/volto-light-theme/pull/265)
68
+ - Update contentMetadataTagsImageField settings to use preview_image field. @iRohitSingh [#274](https://github.com/kitconcept/volto-light-theme/pull/274)
69
+ - Removed the "overview" React Message from Fat Menu @Molochem [#276](https://github.com/kitconcept/volto-light-theme/pull/276)
70
+ - Moved custom font loading to a separate fonts.scss @ichim-david
71
+ Added variable definitions for loading the cms font instead of hard-coding to Metropolis @ichim-david [#279](https://github.com/kitconcept/volto-light-theme/pull/279)
72
+ - Minor style fixes for hamburger menu icon @danalvrz [#281](https://github.com/kitconcept/volto-light-theme/pull/281)
73
+ - Don't force aspect ratio for the Image content type view @iRohitSingh [#293](https://github.com/kitconcept/volto-light-theme/pull/293)
74
+
75
+ ### Internal
76
+
77
+ - Run CI workflows for external PRs. @davisagli [#271](https://github.com/kitconcept/volto-light-theme/pull/271)
78
+ - Remove old code from navigation component @steffenri [#272](https://github.com/kitconcept/volto-light-theme/pull/272)
79
+ - Remove Hero Block @iRohitSingh [#278](https://github.com/kitconcept/volto-light-theme/pull/278)
80
+
11
81
  ## 2.0.0 (2023-11-16)
12
82
 
13
83
  ### Breaking
package/Makefile CHANGED
@@ -22,7 +22,7 @@ RESET=`tput sgr0`
22
22
  YELLOW=`tput setaf 3`
23
23
 
24
24
  PLONE_VERSION=6.0.8
25
- VOLTO_VERSION=17.5.0
25
+ VOLTO_VERSION=17.7.0
26
26
 
27
27
  ADDON_NAME='@kitconcept/volto-light-theme'
28
28
  ADDON_PATH='volto-light-theme'
package/README.md CHANGED
@@ -118,14 +118,15 @@ It is recommended that your project or policy add-on `package.json` include the
118
118
 
119
119
  ```json
120
120
  "dependencies": {
121
- "@eeacms/volto-accordion-block": "9.0.0",
122
- "@kitconcept/volto-button-block": "2.1.0",
123
- "@kitconcept/volto-dsgvo-banner": "1.3.0",
124
- "@kitconcept/volto-heading-block": "2.2.0",
125
- "@kitconcept/volto-introduction-block": "1.0.0",
126
- "@kitconcept/volto-light-theme": "1.0.0",
127
- "@kitconcept/volto-separator-block": "4.0.0",
128
- "@kitconcept/volto-highlight-block": "3.0.0",
121
+ "@eeacms/volto-accordion-block": "^10.4.0",
122
+ "@kitconcept/volto-button-block": "^2.3.1",
123
+ "@kitconcept/volto-dsgvo-banner": "^1.3.0",
124
+ "@kitconcept/volto-heading-block": "^2.4.0",
125
+ "@kitconcept/volto-highlight-block": "^3.0.0",
126
+ "@kitconcept/volto-introduction-block": "^1.0.0",
127
+ "@kitconcept/volto-separator-block": "^4.0.0",
128
+ "@kitconcept/volto-slider-block": "^6.0.0",
129
+ "@kitconcept/volto-light-theme": "^2.0.0",
129
130
  }
130
131
  ```
131
132
 
@@ -155,7 +156,7 @@ Then, declare the theme in your project `package.json`:
155
156
  "theme": "@kitconcept/volto-light-theme",
156
157
  ```
157
158
 
158
- Alternativelly, you can also declare it in your project's `volto.config.js`:
159
+ Alternatively, you can also declare it in your project's `volto.config.js`:
159
160
 
160
161
  ```js
161
162
  const addons = [];
@@ -169,9 +170,9 @@ module.exports = {
169
170
 
170
171
  You can specify your project add-ons in `volto.config.js`, but sometimes is better to have them all in one place (in your policy add-on) for portability.
171
172
 
172
- ## Feature flags
173
+ ## Feature Flags
173
174
 
174
- ### Enable fat menu
175
+ ### Enable Fat Menu
175
176
 
176
177
  Since 2.0.0, the light theme has a fat menu (below the main site sections) triggered clickin on one of them.
177
178
  It's behind a feature flag, as opt-out:
@@ -220,7 +221,7 @@ Run `make help` to list the available commands.
220
221
  - Docker
221
222
  - Node 18 (e.g. via nvm)
222
223
 
223
- ### Development environment Setup
224
+ ### Development Environment Setup
224
225
 
225
226
  Run once
226
227
 
@@ -231,7 +232,7 @@ make dev
231
232
  which will build and launch the backend and frontend containers.
232
233
  There's no need to build them again after doing it the first time unless something has changed from the container setup.
233
234
 
234
- In order to make the local IDE play well with this setup, is it required to run once `yarn` to install locally the required packages (ESlint, Prettier, Stylelint).
235
+ To make the local IDE play well with this setup, it is required to run `yarn` once to install the required packages (ESlint, Prettier, Stylelint).
235
236
 
236
237
  Run
237
238
 
@@ -260,7 +261,7 @@ This will start both the frontend and backend containers.
260
261
 
261
262
  ### Stop Backend (Docker)
262
263
 
263
- After developing, in order to stop the running backend, don't forget to run:
264
+ After developing, to stop the running backend, don't forget to run:
264
265
 
265
266
  Run
266
267
 
@@ -324,7 +325,7 @@ Run
324
325
  make test-acceptance
325
326
  ```
326
327
 
327
- To run Cypress tests afterwards.
328
+ To run Cypress tests afterward.
328
329
 
329
330
  When finished, don't forget to shutdown the backend server.
330
331
 
@@ -53,6 +53,7 @@ msgid "Center"
53
53
  msgstr "Mittig"
54
54
 
55
55
  #: components/MobileNavigation/MobileNavigation
56
+ #: components/Navigation/Navigation
56
57
  # defaultMessage: Close menu
57
58
  msgid "Close menu"
58
59
  msgstr "Menü schließen"
@@ -164,10 +165,9 @@ msgid "Open menu"
164
165
  msgstr "Menü öffnen"
165
166
 
166
167
  #: components/MobileNavigation/MobileNavigation
167
- #: components/Navigation/Navigation
168
168
  # defaultMessage: Overview
169
169
  msgid "Overview"
170
- msgstr ""
170
+ msgstr "Übersicht"
171
171
 
172
172
  #: components/Theme/EventView
173
173
  # defaultMessage: Phone
@@ -47,6 +47,7 @@ msgid "Center"
47
47
  msgstr ""
48
48
 
49
49
  #: components/MobileNavigation/MobileNavigation
50
+ #: components/Navigation/Navigation
50
51
  # defaultMessage: Close menu
51
52
  msgid "Close menu"
52
53
  msgstr ""
@@ -158,7 +159,6 @@ msgid "Open menu"
158
159
  msgstr ""
159
160
 
160
161
  #: components/MobileNavigation/MobileNavigation
161
- #: components/Navigation/Navigation
162
162
  # defaultMessage: Overview
163
163
  msgid "Overview"
164
164
  msgstr ""
@@ -0,0 +1,317 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: \n"
8
+ "Language: \n"
9
+ "Language-Team: \n"
10
+ "Content-Type: \n"
11
+ "Content-Transfer-Encoding: \n"
12
+ "Plural-Forms: \n"
13
+
14
+ #: components/MobileNavigation/MobileNavigation
15
+ # defaultMessage: Back
16
+ msgid "Back"
17
+ msgstr "Voltar"
18
+
19
+ #: components/Blocks/schema
20
+ # defaultMessage: Background color
21
+ msgid "Background color"
22
+ msgstr "Cor de fundo"
23
+
24
+ #: components/Blocks/Button/schema
25
+ # defaultMessage: Block Width
26
+ msgid "Block Width"
27
+ msgstr "Largura do bloco"
28
+
29
+ #: components/Breadcrumbs/Breadcrumbs
30
+ # defaultMessage: Breadcrumbs
31
+ msgid "Breadcrumbs"
32
+ msgstr "Breadcrumbs"
33
+
34
+ #: components/Blocks/Image/Edit
35
+ # defaultMessage: Browse the site, drop an image, or type an URL
36
+ msgid "Browse the site, drop an image, or type an URL"
37
+ msgstr "Encontre no site, envie uma imagem ou cole uma URL"
38
+
39
+ #: components/Blocks/Slider/schema
40
+ # defaultMessage: Button text
41
+ msgid "Button text"
42
+ msgstr "Texto do botão"
43
+
44
+ #: components/Widgets/AlignWidget
45
+ # defaultMessage: Center
46
+ msgid "Center"
47
+ msgstr "Centralizado"
48
+
49
+ #: components/MobileNavigation/MobileNavigation
50
+ #: components/Navigation/Navigation
51
+ # defaultMessage: Close menu
52
+ msgid "Close menu"
53
+ msgstr "Fechar menu"
54
+
55
+ #: components/Theme/EventView
56
+ # defaultMessage: Contact
57
+ msgid "Contact"
58
+ msgstr "Contato"
59
+
60
+ #: components/Blocks/Slider/DefaultBody
61
+ # defaultMessage: Continue reading
62
+ msgid "Continue reading"
63
+ msgstr "Continue lendo"
64
+
65
+ #: components/Footer/Footer
66
+ # defaultMessage: Copyright
67
+ msgid "Copyright"
68
+ msgstr "Copyright"
69
+
70
+ #: components/Blocks/Image/schema
71
+ # defaultMessage: Description
72
+ msgid "Description"
73
+ msgstr "Descrição"
74
+
75
+ #: components/Footer/Footer
76
+ # defaultMessage: Distributed under the {license}.
77
+ msgid "Distributed under the {license}."
78
+ msgstr "Distribuído sob a licença {license}."
79
+
80
+ #: components/Theme/EventView
81
+ # defaultMessage: End
82
+ msgid "End"
83
+ msgstr "Término"
84
+
85
+ #: components/Blocks/Slider/schema
86
+ # defaultMessage: Flag align
87
+ msgid "Flag align"
88
+ msgstr "Alinhar"
89
+
90
+ #: components/Widgets/AlignWidget
91
+ # defaultMessage: Full
92
+ msgid "Full"
93
+ msgstr "Completo"
94
+
95
+ #: components/Footer/Footer
96
+ # defaultMessage: GNU GPL license
97
+ msgid "GNU GPL license"
98
+ msgstr "Licença GNU GPL"
99
+
100
+ #: components/Blocks/Slider/schema
101
+ # defaultMessage: Hide Button
102
+ msgid "Hide Button"
103
+ msgstr "Ocultar botão"
104
+
105
+ #: components/Breadcrumbs/Breadcrumbs
106
+ #: components/MobileNavigation/MobileNavigation
107
+ # defaultMessage: Home
108
+ msgid "Home"
109
+ msgstr "Início"
110
+
111
+ #: components/Theme/EventView
112
+ # defaultMessage: ICS Download
113
+ msgid "ICS-Download"
114
+ msgstr "Baixar ICS"
115
+
116
+ #: components/Blocks/Image/ImageSidebar
117
+ # defaultMessage: Image
118
+ msgid "Image"
119
+ msgstr "Imagem"
120
+
121
+ #: components/Widgets/AlignWidget
122
+ # defaultMessage: Left
123
+ msgid "Left"
124
+ msgstr "Esquerda"
125
+
126
+ #: components/Theme/EventView
127
+ # defaultMessage: Location
128
+ msgid "Location"
129
+ msgstr "Local"
130
+
131
+ #: components/Anontools/Anontools
132
+ # defaultMessage: Log in
133
+ msgid "Log in"
134
+ msgstr "Entrar"
135
+
136
+ #: components/Blocks/Listing/ListingBody
137
+ # defaultMessage: Next Page
138
+ msgid "Next Page"
139
+ msgstr "Próxima página"
140
+
141
+ #: components/Theme/EventView
142
+ # defaultMessage: No date
143
+ msgid "No date"
144
+ msgstr "Sem data"
145
+
146
+ #: components/Blocks/Image/ImageSidebar
147
+ # defaultMessage: No image selected
148
+ msgid "No image selected"
149
+ msgstr "Nenhuma imagem selecionada"
150
+
151
+ #: components/Blocks/Listing/ListingBody
152
+ # defaultMessage: No items found in this container.
153
+ msgid "No items found in this container."
154
+ msgstr "Nenhum item encontrado nesta pasta"
155
+
156
+ #: components/MobileNavigation/MobileNavigation
157
+ # defaultMessage: Open menu
158
+ msgid "Open menu"
159
+ msgstr "Abrir o menu"
160
+
161
+ #: components/MobileNavigation/MobileNavigation
162
+ # defaultMessage: Overview
163
+ msgid "Overview"
164
+ msgstr "Geral"
165
+
166
+ #: components/Theme/EventView
167
+ # defaultMessage: Phone
168
+ msgid "Phone"
169
+ msgstr "Telefone"
170
+
171
+ #: components/Blocks/Slider/DefaultBody
172
+ # defaultMessage: Please choose an existing content as source for this element
173
+ msgid "Please choose an existing content as source for this element"
174
+ msgstr "Por favor, escolha um conteúdo existente como fonte para esse elemento"
175
+
176
+ #: components/Footer/Footer
177
+ # defaultMessage: Plone Foundation
178
+ msgid "Plone Foundation"
179
+ msgstr "Plone Foundation"
180
+
181
+ #: components/Logo/Logo
182
+ # defaultMessage: Plone Site
183
+ msgid "Plone Site"
184
+ msgstr "Site Plone"
185
+
186
+ #: components/Footer/Footer
187
+ # defaultMessage: Plone{reg} Open Source CMS/WCM
188
+ msgid "Plone{reg} Open Source CMS/WCM"
189
+ msgstr "Plone{reg} Open Source CMS/WCM"
190
+
191
+ #: components/Footer/Footer
192
+ # defaultMessage: Powered by Plone & Python
193
+ msgid "Powered by Plone & Python"
194
+ msgstr "Feito com Plone & Python"
195
+
196
+ #: index
197
+ # defaultMessage: Press
198
+ msgid "Press"
199
+ msgstr "Imprensa"
200
+
201
+ #: components/Blocks/Listing/ListingBody
202
+ # defaultMessage: Previous Page
203
+ msgid "Previous Page"
204
+ msgstr "Página anterior"
205
+
206
+ #: components/Anontools/Anontools
207
+ # defaultMessage: Register
208
+ msgid "Register"
209
+ msgstr "Criar conta"
210
+
211
+ #: components/Blocks/Listing/ListingBody
212
+ # defaultMessage: Result
213
+ msgid "Result"
214
+ msgstr "Resultado"
215
+
216
+ #: components/Widgets/AlignWidget
217
+ # defaultMessage: Right
218
+ msgid "Right"
219
+ msgstr "Direita"
220
+
221
+ #: components/Blocks/Search/components/SearchInput
222
+ #: components/Blocks/Search/TopSideFacets
223
+ #: components/SearchWidget/SearchWidget
224
+ # defaultMessage: Search
225
+ msgid "Search"
226
+ msgstr "Buscar"
227
+
228
+ #: components/SearchWidget/SearchWidget
229
+ # defaultMessage: Search Site
230
+ msgid "Search Site"
231
+ msgstr "Buscar no site"
232
+
233
+ #: components/Blocks/Search/components/SearchDetails
234
+ # defaultMessage: Search results
235
+ msgid "Search results"
236
+ msgstr "Resultados de busca"
237
+
238
+ #: components/Blocks/Search/components/SearchDetails
239
+ # defaultMessage: Searched for
240
+ msgid "Searched for"
241
+ msgstr "Busca por"
242
+
243
+ #: components/Logo/Logo
244
+ # defaultMessage: Site
245
+ msgid "Site"
246
+ msgstr "Site"
247
+
248
+ #: components/Header/Header
249
+ #: index
250
+ # defaultMessage: Sitemap
251
+ msgid "Sitemap"
252
+ msgstr "Mapa do Site"
253
+
254
+ #: components/Blocks/Search/TopSideFacets
255
+ # defaultMessage: Sorting
256
+ msgid "Sorting"
257
+ msgstr "Ordenação"
258
+
259
+ #: components/Blocks/Slider/DefaultBody
260
+ # defaultMessage: Source
261
+ msgid "Source"
262
+ msgstr "Fonte"
263
+
264
+ #: components/Theme/EventView
265
+ # defaultMessage: Start
266
+ msgid "Start"
267
+ msgstr "Início"
268
+
269
+ #: components/Footer/Footer
270
+ # defaultMessage: The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends.
271
+ msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
272
+ msgstr "O {plonecms} tem {copyright} 2000-{current_year} pela {plonefoundation} e comunidade."
273
+
274
+ #: components/Blocks/Image/schema
275
+ # defaultMessage: Title
276
+ msgid "Title"
277
+ msgstr "Título"
278
+
279
+ #: components/Blocks/Image/Edit
280
+ # defaultMessage: Uploading image
281
+ msgid "Uploading image"
282
+ msgstr "Enviando imagem"
283
+
284
+ #: components/Theme/EventView
285
+ # defaultMessage: Website
286
+ msgid "Website"
287
+ msgstr "Site"
288
+
289
+ #: components/Widgets/AlignWidget
290
+ # defaultMessage: Wide
291
+ msgid "Wide"
292
+ msgstr "Largo"
293
+
294
+ #: components/Blocks/Image/ImageSidebar
295
+ # defaultMessage: Clear image
296
+ msgid "image_block_clear"
297
+ msgstr "Remover imagem"
298
+
299
+ #: components/Blocks/Image/ImageSidebar
300
+ # defaultMessage: Image preview
301
+ msgid "image_block_preview"
302
+ msgstr "Preview da imagem"
303
+
304
+ #: components/Blocks/Listing/ListingBody
305
+ # defaultMessage: Loading
306
+ msgid "loading"
307
+ msgstr "carregando"
308
+
309
+ #: components/Blocks/Slider/DefaultBody
310
+ # defaultMessage: More info
311
+ msgid "moreInfo"
312
+ msgstr "Mais informações"
313
+
314
+ #: components/Blocks/Listing/ListingBody
315
+ # defaultMessage: of
316
+ msgid "of"
317
+ msgstr "de"
package/locales/volto.pot CHANGED
@@ -1,7 +1,7 @@
1
1
  msgid ""
2
2
  msgstr ""
3
3
  "Project-Id-Version: Plone\n"
4
- "POT-Creation-Date: 2023-11-16T10:36:14.134Z\n"
4
+ "POT-Creation-Date: 2023-11-30T13:23:01.241Z\n"
5
5
  "Last-Translator: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
6
6
  "Language-Team: Plone i18n <plone-i18n@lists.sourceforge.net>\n"
7
7
  "MIME-Version: 1.0\n"
@@ -49,6 +49,7 @@ msgid "Center"
49
49
  msgstr ""
50
50
 
51
51
  #: components/MobileNavigation/MobileNavigation
52
+ #: components/Navigation/Navigation
52
53
  # defaultMessage: Close menu
53
54
  msgid "Close menu"
54
55
  msgstr ""
@@ -160,7 +161,6 @@ msgid "Open menu"
160
161
  msgstr ""
161
162
 
162
163
  #: components/MobileNavigation/MobileNavigation
163
- #: components/Navigation/Navigation
164
164
  # defaultMessage: Overview
165
165
  msgid "Overview"
166
166
  msgstr ""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitconcept/volto-light-theme",
3
- "version": "2.0.0",
3
+ "version": "3.0.0-alpha.0",
4
4
  "description": "Volto Light Theme by kitconcept",
5
5
  "main": "src/index.js",
6
6
  "repository": {
@@ -41,7 +41,7 @@
41
41
  "eslint-import-resolver-alias": "1.1.2",
42
42
  "eslint-import-resolver-babel-plugin-root-import": "1.1.1",
43
43
  "eslint-plugin-import": "2.28.1",
44
- "eslint-plugin-jsx-a11y": "6.7.1",
44
+ "eslint-plugin-jsx-a11y": "^6.7.1",
45
45
  "eslint-plugin-prettier": "5.0.0",
46
46
  "eslint-plugin-react": "7.33.2",
47
47
  "eslint-plugin-react-hooks": "4.6.0",
@@ -71,7 +71,7 @@
71
71
  "@kitconcept/volto-highlight-block": "^3.0.0",
72
72
  "@kitconcept/volto-introduction-block": "^1.0.0",
73
73
  "@kitconcept/volto-separator-block": "^4.0.0",
74
- "@kitconcept/volto-slider-block": "5.1.1",
75
- "@plone/volto": "^17.5.0"
74
+ "@kitconcept/volto-slider-block": "^6.1.0",
75
+ "@plone/volto": "^17.6.1"
76
76
  }
77
77
  }