@docpensieve/shared 0.1.5 → 0.2.0-beta.1

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/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/Juniors017/docpensieve/main/branding/logo.jpg" alt="DocPensieve — Documentation &amp; Magical Memory" width="180">
3
+ </p>
4
+
1
5
  # @docpensieve/shared
2
6
 
3
7
  > Shared constants, errors and slugs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docpensieve/shared",
3
- "version": "0.1.5",
3
+ "version": "0.2.0-beta.1",
4
4
  "description": "Utilities, constants and errors shared by the DocPensieve packages",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -29,7 +29,7 @@
29
29
  "url": "git+https://github.com/Juniors017/docpensieve.git",
30
30
  "directory": "packages/shared"
31
31
  },
32
- "homepage": "https://github.com/Juniors017/docpensieve#readme",
32
+ "homepage": "https://docpensieve.com",
33
33
  "bugs": {
34
34
  "url": "https://github.com/Juniors017/docpensieve/issues"
35
35
  },
package/src/constants.js CHANGED
@@ -94,4 +94,5 @@ export const DEFAULT_THEME_CLASSES = Object.freeze({
94
94
  footer: 'dp-footer',
95
95
  scrollTop: 'dp-scroll-top',
96
96
  scrollTopIcon: 'dp-scroll-top-icon',
97
+ search: 'dp-search',
97
98
  });
@@ -83,4 +83,5 @@ export declare const DEFAULT_THEME_CLASSES: Readonly<{
83
83
  footer: "dp-footer";
84
84
  scrollTop: "dp-scroll-top";
85
85
  scrollTopIcon: "dp-scroll-top-icon";
86
+ search: "dp-search";
86
87
  }>;