@docpensieve/shared 0.4.0-beta.1 → 0.4.0-beta.2
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 +1 -1
- package/src/constants.js +7 -0
- package/types/constants.d.ts +7 -0
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -83,6 +83,9 @@ export const DEFAULT_THEME_CLASSES = Object.freeze({
|
|
|
83
83
|
navItemParent: 'dp-nav-item--parent',
|
|
84
84
|
navLink: 'dp-nav-link',
|
|
85
85
|
navLabel: 'dp-nav-label',
|
|
86
|
+
navGroup: 'dp-nav-group',
|
|
87
|
+
navSummary: 'dp-nav-summary',
|
|
88
|
+
sidebarMenu: 'dp-sidebar-menu',
|
|
86
89
|
notice: 'dp-notice',
|
|
87
90
|
skillIcon: 'dp-skill-icon',
|
|
88
91
|
main: 'dp-main',
|
|
@@ -109,4 +112,8 @@ export const DEFAULT_THEME_CLASSES = Object.freeze({
|
|
|
109
112
|
headerLinks: 'dp-header-links',
|
|
110
113
|
menu: 'dp-menu',
|
|
111
114
|
menuPanel: 'dp-menu-panel',
|
|
115
|
+
mega: 'dp-mega',
|
|
116
|
+
megaPanel: 'dp-mega-panel',
|
|
117
|
+
megaColumn: 'dp-mega-column',
|
|
118
|
+
megaTitle: 'dp-mega-title',
|
|
112
119
|
});
|
package/types/constants.d.ts
CHANGED
|
@@ -72,6 +72,9 @@ export declare const DEFAULT_THEME_CLASSES: Readonly<{
|
|
|
72
72
|
navItemParent: "dp-nav-item--parent";
|
|
73
73
|
navLink: "dp-nav-link";
|
|
74
74
|
navLabel: "dp-nav-label";
|
|
75
|
+
navGroup: "dp-nav-group";
|
|
76
|
+
navSummary: "dp-nav-summary";
|
|
77
|
+
sidebarMenu: "dp-sidebar-menu";
|
|
75
78
|
notice: "dp-notice";
|
|
76
79
|
skillIcon: "dp-skill-icon";
|
|
77
80
|
main: "dp-main";
|
|
@@ -98,4 +101,8 @@ export declare const DEFAULT_THEME_CLASSES: Readonly<{
|
|
|
98
101
|
headerLinks: "dp-header-links";
|
|
99
102
|
menu: "dp-menu";
|
|
100
103
|
menuPanel: "dp-menu-panel";
|
|
104
|
+
mega: "dp-mega";
|
|
105
|
+
megaPanel: "dp-mega-panel";
|
|
106
|
+
megaColumn: "dp-mega-column";
|
|
107
|
+
megaTitle: "dp-mega-title";
|
|
101
108
|
}>;
|