@docpensieve/shared 0.3.0-beta.2 → 0.3.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docpensieve/shared",
3
- "version": "0.3.0-beta.2",
3
+ "version": "0.3.0",
4
4
  "description": "Utilities, constants and errors shared by the DocPensieve packages",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/constants.js CHANGED
@@ -103,4 +103,10 @@ export const DEFAULT_THEME_CLASSES = Object.freeze({
103
103
  bylineName: 'dp-byline-name',
104
104
  bylineBio: 'dp-byline-bio',
105
105
  bylineDates: 'dp-byline-dates',
106
+ tags: 'dp-tags',
107
+ tag: 'dp-tag',
108
+ headerNav: 'dp-header-nav',
109
+ headerLinks: 'dp-header-links',
110
+ menu: 'dp-menu',
111
+ menuPanel: 'dp-menu-panel',
106
112
  });
@@ -92,4 +92,10 @@ export declare const DEFAULT_THEME_CLASSES: Readonly<{
92
92
  bylineName: "dp-byline-name";
93
93
  bylineBio: "dp-byline-bio";
94
94
  bylineDates: "dp-byline-dates";
95
+ tags: "dp-tags";
96
+ tag: "dp-tag";
97
+ headerNav: "dp-header-nav";
98
+ headerLinks: "dp-header-links";
99
+ menu: "dp-menu";
100
+ menuPanel: "dp-menu-panel";
95
101
  }>;