@coveo/atomic 3.35.0-pre.cb00784f95 → 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.
- package/dist/atomic/_atomic.esm.js +1 -1
- package/dist/atomic/components/atomic-recs-interface.js +1 -1
- package/dist/atomic/components/components/common/query-summary/utils.js +2 -3
- package/dist/atomic/components/components/search/atomic-pager/atomic-pager.js +8 -0
- package/dist/atomic/components/global/environment.js +1 -1
- package/dist/atomic/lang/cs.json +1 -1
- package/dist/atomic/lang/da.json +1 -1
- package/dist/atomic/lang/de.json +1 -1
- package/dist/atomic/lang/dev.json +1 -1
- package/dist/atomic/lang/el.json +1 -1
- package/dist/atomic/lang/en.json +1 -1
- package/dist/atomic/lang/es.json +1 -1
- package/dist/atomic/lang/fi.json +1 -1
- package/dist/atomic/lang/fr.json +1 -1
- package/dist/atomic/lang/hu.json +1 -1
- package/dist/atomic/lang/id.json +1 -1
- package/dist/atomic/lang/it.json +1 -1
- package/dist/atomic/lang/ja.json +1 -1
- package/dist/atomic/lang/ko.json +1 -1
- package/dist/atomic/lang/nl.json +1 -1
- package/dist/atomic/lang/no.json +1 -1
- package/dist/atomic/lang/pl.json +1 -1
- package/dist/atomic/lang/pt-BR.json +1 -1
- package/dist/atomic/lang/pt.json +1 -1
- package/dist/atomic/lang/ru.json +1 -1
- package/dist/atomic/lang/sv.json +1 -1
- package/dist/atomic/lang/th.json +1 -1
- package/dist/atomic/lang/tr.json +1 -1
- package/dist/atomic/lang/zh-CN.json +1 -1
- package/dist/atomic/lang/zh-TW.json +1 -1
- package/dist/atomic/lang/zh.json +1 -1
- package/dist/atomic/{p-405e6a88.entry.js → p-06671af4.entry.js} +2 -2
- package/dist/cjs/atomic-recs-interface.cjs.entry.js +1 -1
- package/dist/cjs/version.cjs.js +2 -2
- package/dist/esm/atomic-recs-interface.entry.js +1 -1
- package/dist/esm/version.js +2 -2
- package/dist/types/components/search/atomic-pager/atomic-pager.d.ts +3 -0
- package/docs/atomic-docs.json +1 -1
- package/package.json +3 -12
- package/dist/types/types/open-api.d.ts +0 -3
- /package/dist/atomic/{p-405e6a88.entry.js.map → p-06671af4.entry.js.map} +0 -0
package/dist/cjs/version.cjs.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
module.exports.headlessVersion = '3.31.3-pre.
|
2
|
-
module.exports.atomicVersion = '3.35.0-pre.
|
1
|
+
module.exports.headlessVersion = '3.31.3-pre.d404d6f533';
|
2
|
+
module.exports.atomicVersion = '3.35.0-pre.d404d6f533';
|
package/dist/esm/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export const headlessVersion = '3.31.3-pre.
|
2
|
-
export const atomicVersion = '3.35.0-pre.
|
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 {
|
package/docs/atomic-docs.json
CHANGED
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.
|
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": {
|
@@ -81,7 +81,7 @@
|
|
81
81
|
},
|
82
82
|
"dependencies": {
|
83
83
|
"@coveo/bueno": "1.1.3",
|
84
|
-
"@coveo/headless": "3.31.3-pre.
|
84
|
+
"@coveo/headless": "3.31.3-pre.d404d6f533",
|
85
85
|
"@lit/context": "1.1.6",
|
86
86
|
"@open-wc/lit-helpers": "0.7.0",
|
87
87
|
"@popperjs/core": "2.11.8",
|
@@ -100,7 +100,6 @@
|
|
100
100
|
"devDependencies": {
|
101
101
|
"@axe-core/playwright": "4.10.2",
|
102
102
|
"@custom-elements-manifest/analyzer": "0.10.4",
|
103
|
-
"@mswjs/source": "0.5.0",
|
104
103
|
"@playwright/test": "1.54.1",
|
105
104
|
"@rollup/plugin-commonjs": "28.0.6",
|
106
105
|
"@rollup/plugin-json": "6.1.0",
|
@@ -131,10 +130,7 @@
|
|
131
130
|
"jest-cli": "29.7.0",
|
132
131
|
"jest-localstorage-mock": "2.4.26",
|
133
132
|
"local-web-server": "5.4.0",
|
134
|
-
"msw": "2.11.4",
|
135
|
-
"msw-storybook-addon": "2.0.5",
|
136
133
|
"natural-orderby": "5.0.0",
|
137
|
-
"openapi-types": "12.1.3",
|
138
134
|
"playwright": "1.54.1",
|
139
135
|
"postcss": "8.5.6",
|
140
136
|
"postcss-load-config": "6.0.1",
|
@@ -157,7 +153,7 @@
|
|
157
153
|
},
|
158
154
|
"peerDependencies": {
|
159
155
|
"@coveo/bueno": "1.1.3",
|
160
|
-
"@coveo/headless": "3.31.3-pre.
|
156
|
+
"@coveo/headless": "3.31.3-pre.d404d6f533",
|
161
157
|
"typescript": ">=5.0.0"
|
162
158
|
},
|
163
159
|
"peerDependenciesMeta": {
|
@@ -168,10 +164,5 @@
|
|
168
164
|
"license": "Apache-2.0",
|
169
165
|
"engines": {
|
170
166
|
"node": "^20.9.0 || ^22.11.0"
|
171
|
-
},
|
172
|
-
"msw": {
|
173
|
-
"workerDirectory": [
|
174
|
-
".storybook/public"
|
175
|
-
]
|
176
167
|
}
|
177
168
|
}
|
File without changes
|