@rspress/shared 1.13.2 → 1.15.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/dist/index.d.ts +6 -2
- package/dist/index.js +0 -1
- package/dist/index.mjs +0 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
@@ -197,7 +197,7 @@ type Image = string | {
|
|
197
197
|
alt?: string;
|
198
198
|
};
|
199
199
|
interface Sidebar {
|
200
|
-
[path: string]: (SidebarGroup | SidebarItem | SidebarDivider)[];
|
200
|
+
[path: string]: (SidebarGroup | SidebarItem | SidebarDivider | SidebarSectionHeader)[];
|
201
201
|
}
|
202
202
|
interface SidebarGroup {
|
203
203
|
text: string;
|
@@ -223,6 +223,10 @@ type SidebarItem = {
|
|
223
223
|
type SidebarDivider = {
|
224
224
|
dividerType: 'dashed' | 'solid';
|
225
225
|
};
|
226
|
+
type SidebarSectionHeader = {
|
227
|
+
sectionHeaderText: string;
|
228
|
+
tag?: string;
|
229
|
+
};
|
226
230
|
interface EditLink {
|
227
231
|
/**
|
228
232
|
* Custom repository url for edit link.
|
@@ -744,4 +748,4 @@ declare function removeBase(url: string, base: string): string;
|
|
744
748
|
declare function withoutHash(url: string): string;
|
745
749
|
declare const mergeDocConfig: (...configs: UserConfig[]) => UserConfig;
|
746
750
|
|
747
|
-
export { APPEARANCE_KEY, type AdditionalPage, type BaseRuntimePageInfo, type Config, DEFAULT_HIGHLIGHT_LANGUAGES, type Config$1 as DefaultThemeConfig, type DocFooter, type EditLink, type Feature, type Footer, type FrontMatterMeta, HASH_REGEXP, type Header, type Hero, type Image, type LocalSearchOptions, type Locale, type LocaleConfig, type LocaleLink, type LocaleLinks, MDX_REGEXP, type MarkdownOptions, type MdxRsOptions, type Nav, type NavItem, type NavItemWithChildren, type NavItemWithLink, type NavItemWithLinkAndChildren, type NormalizedConfig, type NormalizedConfig as NormalizedDefaultThemeConfig, type NormalizedLocales, type NormalizedSidebar, type NormalizedSidebarGroup, type PageData, type PageIndexInfo, type PageModule, type PageType, type RspressPlugin as Plugin, QUERY_REGEXP, RSPRESS_TEMP_DIR, type RemotePageInfo, type RemoteSearchIndexInfo, type RemoteSearchOptions, type ReplaceRule, type Route, type RouteMeta, type RouteOptions, type RspressPlugin, SEARCH_INDEX_NAME, type SearchHooks, type SearchOptions, type Sidebar, type SidebarDivider, type SidebarGroup, type SidebarItem, type SiteData, type SocialLink, type SocialLinkIcon, type UserConfig, addLeadingSlash, addTrailingSlash, cleanUrl, inBrowser, isDataUrl, isDebugMode, isExternalUrl, isProduction, isSCM, mergeDocConfig, normalizeHref, normalizePosixPath, normalizeSlash, omit, parseUrl, removeBase, removeHash, removeLeadingSlash, removeTrailingSlash, replaceLang, replaceVersion, slash, withBase, withoutBase, withoutHash, withoutLang };
|
751
|
+
export { APPEARANCE_KEY, type AdditionalPage, type BaseRuntimePageInfo, type Config, DEFAULT_HIGHLIGHT_LANGUAGES, type Config$1 as DefaultThemeConfig, type DocFooter, type EditLink, type Feature, type Footer, type FrontMatterMeta, HASH_REGEXP, type Header, type Hero, type Image, type LocalSearchOptions, type Locale, type LocaleConfig, type LocaleLink, type LocaleLinks, MDX_REGEXP, type MarkdownOptions, type MdxRsOptions, type Nav, type NavItem, type NavItemWithChildren, type NavItemWithLink, type NavItemWithLinkAndChildren, type NormalizedConfig, type NormalizedConfig as NormalizedDefaultThemeConfig, type NormalizedLocales, type NormalizedSidebar, type NormalizedSidebarGroup, type PageData, type PageIndexInfo, type PageModule, type PageType, type RspressPlugin as Plugin, QUERY_REGEXP, RSPRESS_TEMP_DIR, type RemotePageInfo, type RemoteSearchIndexInfo, type RemoteSearchOptions, type ReplaceRule, type Route, type RouteMeta, type RouteOptions, type RspressPlugin, SEARCH_INDEX_NAME, type SearchHooks, type SearchOptions, type Sidebar, type SidebarDivider, type SidebarGroup, type SidebarItem, type SidebarSectionHeader, type SiteData, type SocialLink, type SocialLinkIcon, type UserConfig, addLeadingSlash, addTrailingSlash, cleanUrl, inBrowser, isDataUrl, isDebugMode, isExternalUrl, isProduction, isSCM, mergeDocConfig, normalizeHref, normalizePosixPath, normalizeSlash, omit, parseUrl, removeBase, removeHash, removeLeadingSlash, removeTrailingSlash, replaceLang, replaceVersion, slash, withBase, withoutBase, withoutHash, withoutLang };
|
package/dist/index.js
CHANGED
@@ -1151,7 +1151,6 @@ function normalizePosixPath(id) {
|
|
1151
1151
|
const normalizedParts = [];
|
1152
1152
|
for (const part of parts) {
|
1153
1153
|
if (part === "." || part === "") {
|
1154
|
-
continue;
|
1155
1154
|
} else if (part === "..") {
|
1156
1155
|
if (normalizedParts.length > 0 && normalizedParts[normalizedParts.length - 1] !== "..") {
|
1157
1156
|
normalizedParts.pop();
|
package/dist/index.mjs
CHANGED
@@ -1093,7 +1093,6 @@ function normalizePosixPath(id) {
|
|
1093
1093
|
const normalizedParts = [];
|
1094
1094
|
for (const part of parts) {
|
1095
1095
|
if (part === "." || part === "") {
|
1096
|
-
continue;
|
1097
1096
|
} else if (part === "..") {
|
1098
1097
|
if (normalizedParts.length > 0 && normalizedParts[normalizedParts.length - 1] !== "..") {
|
1099
1098
|
normalizedParts.pop();
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@rspress/shared",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.15.0",
|
4
4
|
"types": "./dist/index.d.ts",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"module": "./dist/index.mjs",
|
@@ -42,7 +42,7 @@
|
|
42
42
|
}
|
43
43
|
},
|
44
44
|
"dependencies": {
|
45
|
-
"@rsbuild/core": "0.4.
|
45
|
+
"@rsbuild/core": "0.4.11",
|
46
46
|
"unified": "10.1.2",
|
47
47
|
"chalk": "4.1.2",
|
48
48
|
"execa": "5.1.1",
|