@coveo/atomic 3.35.0-pre.c951c9bf6f → 3.35.0-pre.d404d6f533

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/dist/atomic/_atomic.esm.js +1 -1
  2. package/dist/atomic/components/atomic-recs-interface.js +1 -1
  3. package/dist/atomic/components/components/common/query-summary/utils.js +2 -3
  4. package/dist/atomic/components/components/search/atomic-pager/atomic-pager.js +8 -0
  5. package/dist/atomic/components/global/environment.js +1 -1
  6. package/dist/atomic/lang/cs.json +1 -1
  7. package/dist/atomic/lang/da.json +1 -1
  8. package/dist/atomic/lang/de.json +1 -1
  9. package/dist/atomic/lang/dev.json +1 -1
  10. package/dist/atomic/lang/el.json +1 -1
  11. package/dist/atomic/lang/en.json +1 -1
  12. package/dist/atomic/lang/es.json +1 -1
  13. package/dist/atomic/lang/fi.json +1 -1
  14. package/dist/atomic/lang/fr.json +1 -1
  15. package/dist/atomic/lang/hu.json +1 -1
  16. package/dist/atomic/lang/id.json +1 -1
  17. package/dist/atomic/lang/it.json +1 -1
  18. package/dist/atomic/lang/ja.json +1 -1
  19. package/dist/atomic/lang/ko.json +1 -1
  20. package/dist/atomic/lang/nl.json +1 -1
  21. package/dist/atomic/lang/no.json +1 -1
  22. package/dist/atomic/lang/pl.json +1 -1
  23. package/dist/atomic/lang/pt-BR.json +1 -1
  24. package/dist/atomic/lang/pt.json +1 -1
  25. package/dist/atomic/lang/ru.json +1 -1
  26. package/dist/atomic/lang/sv.json +1 -1
  27. package/dist/atomic/lang/th.json +1 -1
  28. package/dist/atomic/lang/tr.json +1 -1
  29. package/dist/atomic/lang/zh-CN.json +1 -1
  30. package/dist/atomic/lang/zh-TW.json +1 -1
  31. package/dist/atomic/lang/zh.json +1 -1
  32. package/dist/atomic/{p-ac583254.entry.js → p-06671af4.entry.js} +2 -2
  33. package/dist/cjs/atomic-recs-interface.cjs.entry.js +1 -1
  34. package/dist/cjs/version.cjs.js +2 -2
  35. package/dist/esm/atomic-recs-interface.entry.js +1 -1
  36. package/dist/esm/version.js +2 -2
  37. package/dist/types/components/search/atomic-pager/atomic-pager.d.ts +3 -0
  38. package/docs/atomic-docs.json +1 -1
  39. package/package.json +5 -8
  40. /package/dist/atomic/{p-ac583254.entry.js.map → p-06671af4.entry.js.map} +0 -0
@@ -2167,7 +2167,7 @@ function getWindow() {
2167
2167
  }
2168
2168
  function getAtomicEnvironment(headlessVersion) {
2169
2169
  return {
2170
- version: "3.35.0-pre.c951c9bf6f",
2170
+ version: "3.35.0-pre.d404d6f533",
2171
2171
  headlessVersion,
2172
2172
  };
2173
2173
  }
@@ -1,2 +1,2 @@
1
- module.exports.headlessVersion = '3.31.3-pre.c951c9bf6f';
2
- module.exports.atomicVersion = '3.35.0-pre.c951c9bf6f';
1
+ module.exports.headlessVersion = '3.31.3-pre.d404d6f533';
2
+ module.exports.atomicVersion = '3.35.0-pre.d404d6f533';
@@ -2163,7 +2163,7 @@ function getWindow() {
2163
2163
  }
2164
2164
  function getAtomicEnvironment(headlessVersion) {
2165
2165
  return {
2166
- version: "3.35.0-pre.c951c9bf6f",
2166
+ version: "3.35.0-pre.d404d6f533",
2167
2167
  headlessVersion,
2168
2168
  };
2169
2169
  }
@@ -1,2 +1,2 @@
1
- export const headlessVersion = '3.31.3-pre.c951c9bf6f';
2
- export const atomicVersion = '3.35.0-pre.c951c9bf6f';
1
+ export const headlessVersion = '3.31.3-pre.d404d6f533';
2
+ export const atomicVersion = '3.35.0-pre.d404d6f533';
@@ -2,6 +2,7 @@ import { type Pager, type PagerState, type SearchStatus, type SearchStatusState
2
2
  import { LitElement, type PropertyValues } from 'lit';
3
3
  import type { Bindings } from "../atomic-search-interface/interfaces";
4
4
  import type { InitializableComponent } from "../../../decorators/types";
5
+ import { AriaLiveRegionController } from "../../../utils/accessibility-utils";
5
6
  declare const AtomicPager_base: typeof LitElement;
6
7
  /**
7
8
  * The `atomic-pager` provides buttons that allow the end user to navigate through the different result pages.
@@ -46,12 +47,14 @@ export declare class AtomicPager extends AtomicPager_base implements Initializab
46
47
  * - Use a stringified SVG to display it directly.
47
48
  */
48
49
  nextButtonIcon: string;
50
+ protected ariaMessage: AriaLiveRegionController;
49
51
  private radioGroupName;
50
52
  initialize(): void;
51
53
  willUpdate(changedProperties: PropertyValues): void;
52
54
  render(): import("lit-html").TemplateResult<1>;
53
55
  private validateProps;
54
56
  private focusOnFirstResultAndScrollToTop;
57
+ private announcePageLoaded;
55
58
  }
56
59
  declare global {
57
60
  interface HTMLElementTagNameMap {
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2025-10-09T01:43:09",
2
+ "timestamp": "2025-10-09T13:08:41",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.20.0",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@coveo/atomic",
3
3
  "type": "module",
4
- "version": "3.35.0-pre.c951c9bf6f",
4
+ "version": "3.35.0-pre.d404d6f533",
5
5
  "description": "A web-component library for building modern UIs interfacing with the Coveo platform",
6
6
  "homepage": "https://docs.coveo.com/en/atomic/latest/",
7
7
  "repository": {
@@ -61,9 +61,8 @@
61
61
  "prod": "npx serve www -l 3333 --no-request-logging",
62
62
  "test": "npm run test:stencil && npm run test:lit",
63
63
  "test:stencil": "stencil test --spec -- src/utils/initialization-utils.spec.ts",
64
- "test:lit": "vitest run --project=atomic-default",
65
- "test:watch": "vitest --project=atomic-default",
66
- "test:storybook": "vitest run --project=storybook",
64
+ "test:lit": "vitest run",
65
+ "test:watch": "vitest",
67
66
  "e2e": "cypress run --browser chrome",
68
67
  "e2e:firefox": "cypress run --browser firefox",
69
68
  "e2e:watch": "cypress open --browser chrome --e2e",
@@ -82,7 +81,7 @@
82
81
  },
83
82
  "dependencies": {
84
83
  "@coveo/bueno": "1.1.3",
85
- "@coveo/headless": "3.31.3-pre.c951c9bf6f",
84
+ "@coveo/headless": "3.31.3-pre.d404d6f533",
86
85
  "@lit/context": "1.1.6",
87
86
  "@open-wc/lit-helpers": "0.7.0",
88
87
  "@popperjs/core": "2.11.8",
@@ -111,7 +110,6 @@
111
110
  "@stencil/react-output-target": "0.5.3",
112
111
  "@storybook/addon-a11y": "9.1.2",
113
112
  "@storybook/addon-docs": "9.1.2",
114
- "@storybook/addon-vitest": "9.1.2",
115
113
  "@storybook/icons": "1.4.0",
116
114
  "@storybook/web-components-vite": "9.1.2",
117
115
  "@tailwindcss/postcss": "4.1.13",
@@ -120,7 +118,6 @@
120
118
  "@types/jest": "29.5.14",
121
119
  "@types/puppeteer": "7.0.4",
122
120
  "@vitest/browser": "3.2.4",
123
- "@vitest/coverage-v8": "^3.2.4",
124
121
  "@wc-toolkit/storybook-helpers": "9.0.1",
125
122
  "axe-core": "4.10.3",
126
123
  "cypress": "13.7.3",
@@ -156,7 +153,7 @@
156
153
  },
157
154
  "peerDependencies": {
158
155
  "@coveo/bueno": "1.1.3",
159
- "@coveo/headless": "3.31.3-pre.c951c9bf6f",
156
+ "@coveo/headless": "3.31.3-pre.d404d6f533",
160
157
  "typescript": ">=5.0.0"
161
158
  },
162
159
  "peerDependenciesMeta": {