@payloadcms/plugin-search 3.2.0 → 3.2.1-canary.5139186

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.
@@ -0,0 +1,39 @@
1
+ @import '~@payloadcms/ui/scss';
2
+
3
+ @layer payload-default {
4
+ .reindex-confirm-modal {
5
+ @include blur-bg;
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: center;
9
+ height: 100%;
10
+
11
+ &__wrapper {
12
+ z-index: 1;
13
+ position: relative;
14
+ display: flex;
15
+ flex-direction: column;
16
+ gap: base(2);
17
+ padding: base(2);
18
+ }
19
+
20
+ &__content {
21
+ display: flex;
22
+ flex-direction: column;
23
+ gap: base(1);
24
+
25
+ > * {
26
+ margin: 0;
27
+ }
28
+ }
29
+
30
+ &__controls {
31
+ display: flex;
32
+ gap: base(0.4);
33
+
34
+ .btn {
35
+ margin: 0;
36
+ }
37
+ }
38
+ }
39
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payloadcms/plugin-search",
3
- "version": "3.2.0",
3
+ "version": "3.2.1-canary.5139186",
4
4
  "description": "Search plugin for Payload",
5
5
  "keywords": [
6
6
  "payload",
@@ -49,19 +49,19 @@
49
49
  "dist"
50
50
  ],
51
51
  "dependencies": {
52
- "@payloadcms/next": "3.2.0",
53
- "@payloadcms/ui": "3.2.0"
52
+ "@payloadcms/next": "3.2.1-canary.5139186",
53
+ "@payloadcms/ui": "3.2.1-canary.5139186"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@types/react": "npm:types-react@19.0.0-rc.1",
57
57
  "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
58
- "payload": "3.2.0",
58
+ "payload": "3.2.1-canary.5139186",
59
59
  "@payloadcms/eslint-config": "3.0.0"
60
60
  },
61
61
  "peerDependencies": {
62
62
  "react": "^19.0.0 || ^19.0.0-rc-65a56d0e-20241020",
63
63
  "react-dom": "^19.0.0 || ^19.0.0-rc-65a56d0e-20241020",
64
- "payload": "3.2.0"
64
+ "payload": "3.2.1-canary.5139186"
65
65
  },
66
66
  "publishConfig": {
67
67
  "registry": "https://registry.npmjs.org/"
@@ -72,10 +72,11 @@
72
72
  "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
73
73
  },
74
74
  "scripts": {
75
- "build": "pnpm build:types && pnpm build:swc",
75
+ "build": "pnpm copyfiles && pnpm build:types && pnpm build:swc",
76
76
  "build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths",
77
77
  "build:types": "tsc --emitDeclarationOnly --outDir dist",
78
78
  "clean": "rimraf {dist,*.tsbuildinfo}",
79
+ "copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/",
79
80
  "lint": "eslint .",
80
81
  "lint:fix": "eslint . --fix",
81
82
  "test": "echo \"Error: no tests specified\""