@coveo/atomic-hosted-page 1.2.18 → 1.2.20
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.
|
@@ -34,5 +34,5 @@ export declare class AtomicHostedUI extends LitElement {
|
|
|
34
34
|
*/
|
|
35
35
|
hostedType: 'trial' | 'builder' | 'code';
|
|
36
36
|
initialize(options: InitializationOptions): Promise<void>;
|
|
37
|
-
render(): import("lit
|
|
37
|
+
render(): import("lit").TemplateResult<1>;
|
|
38
38
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coveo/atomic-hosted-page",
|
|
3
3
|
"description": "Web Component used to inject a Coveo Hosted Search Page in the DOM.",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.20",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/coveo/ui-kit.git",
|
|
@@ -15,31 +15,43 @@
|
|
|
15
15
|
"es2017": "dist/esm/index.mjs",
|
|
16
16
|
"types": "dist/types/components.d.ts",
|
|
17
17
|
"unpkg": "dist/atomic-page/atomic-hosted-page.esm.js",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/types/components.d.ts",
|
|
21
|
+
"import": "./dist/index.js",
|
|
22
|
+
"require": "./dist/index.cjs.js"
|
|
23
|
+
},
|
|
24
|
+
"./loader": {
|
|
25
|
+
"import": "./loader/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./dist/*": "./dist/*"
|
|
28
|
+
},
|
|
18
29
|
"files": [
|
|
19
30
|
"dist/",
|
|
20
31
|
"loader/",
|
|
21
32
|
"docs/"
|
|
22
33
|
],
|
|
23
|
-
"scripts": {
|
|
24
|
-
"clean": "node ../../utils/ci/rm-rf.mjs dist/*",
|
|
25
|
-
"build": "node ../../utils/ci/rm-rf.mjs dist cdn && tsc --outdir dist && tsc --outdir cdn --project tsconfig.cdn.json && node ./scripts/esbuild.js",
|
|
26
|
-
"start": "node ./scripts/start.js",
|
|
27
|
-
"e2e": "playwright test",
|
|
28
|
-
"release:phase3": "npm run-script -w=@coveo/ci npm-publish",
|
|
29
|
-
"release:phase1": "npm run-script -w=@coveo/ci bump",
|
|
30
|
-
"promote:npm:latest": "npm run-script -w=@coveo/ci promote-npm-prod"
|
|
31
|
-
},
|
|
32
34
|
"dependencies": {
|
|
33
|
-
"
|
|
34
|
-
"@coveo/
|
|
35
|
-
"
|
|
35
|
+
"lit": "3.3.1",
|
|
36
|
+
"@coveo/bueno": "1.1.4",
|
|
37
|
+
"@coveo/headless": "3.34.1"
|
|
36
38
|
},
|
|
37
39
|
"devDependencies": {
|
|
38
|
-
"@playwright/test": "1.
|
|
40
|
+
"@playwright/test": "1.56.1",
|
|
39
41
|
"@types/node": "22.16.5",
|
|
40
|
-
"
|
|
42
|
+
"local-web-server": "5.4.0",
|
|
43
|
+
"vite": "7.0.5"
|
|
41
44
|
},
|
|
42
45
|
"engines": {
|
|
43
46
|
"node": "^20.9.0 || ^22.11.0"
|
|
47
|
+
},
|
|
48
|
+
"scripts": {
|
|
49
|
+
"clean": "node ../../utils/ci/rm-rf.mjs dist/*",
|
|
50
|
+
"build": "node ../../utils/ci/rm-rf.mjs dist cdn && tsc --outdir dist && tsc --outdir cdn --project tsconfig.cdn.json && node ./scripts/esbuild.js",
|
|
51
|
+
"start": "node ./scripts/start.js",
|
|
52
|
+
"e2e": "playwright test",
|
|
53
|
+
"release:phase3": "pnpm --filter @coveo/ci npm-publish",
|
|
54
|
+
"release:phase1": "pnpm --filter @coveo/ci bump",
|
|
55
|
+
"promote:npm:latest": "pnpm --filter @coveo/ci promote-npm-prod"
|
|
44
56
|
}
|
|
45
57
|
}
|