+ {{ member.name }} +
+
+
+ {{ member.title }}
+
+
+ @
+
+
diff --git a/.eslintignore b/.eslintignore index 4ed463fd..e0588c1a 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,4 +1,5 @@ -.temp -.cache +temp +cache dist _site +!.vitepress diff --git a/.eslintrc.json b/.eslintrc.json index 332be138..db82a479 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -27,7 +27,7 @@ }], "require-jsdoc": ["error", { "require": { - "FunctionDeclaration": true, + "FunctionDeclaration": false, "MethodDefinition": false, "ClassDeclaration": false, "ArrowFunctionExpression": false, diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index c3d33268..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -labels: bug ---- diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md deleted file mode 100644 index fd01fa41..00000000 --- a/.github/ISSUE_TEMPLATE/custom.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -name: Other tasks -about: Basically everything else -labels: misc ---- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index af8af83f..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -labels: feature ---- diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index ddb943cd..33ffcdb2 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -9,9 +9,9 @@ jobs: strategy: matrix: os: - - ubuntu-20.04 + - ubuntu-22.04 node-version: - - '16' + - '18' steps: # Install deps and cache - name: Checkout code @@ -20,14 +20,14 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - cache: yarn - - name: Install Yarn dependencies - run: yarn install --prefer-offline --frozen-lockfile + cache: npm + - name: Install dependencies + run: npm clean-install --prefer-offline --frozen-lockfile # Run tests - name: Run linter - run: yarn lint + run: npm run lint - name: Run tests - run: yarn test + run: npm run test - name: Test build - run: yarn build + run: npm run build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4422fc43..0512c66f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,9 +14,9 @@ jobs: strategy: matrix: os: - - ubuntu-20.04 + - ubuntu-22.04 node-version: - - '16' + - '18' # Install deps and cache steps: - name: Checkout code @@ -26,19 +26,19 @@ jobs: with: node-version: ${{ matrix.node-version }} registry-url: https://registry.npmjs.org - cache: yarn - - name: Install Yarn dependencies - run: yarn install --prefer-offline --frozen-lockfile + cache: npm + - name: Install dependencies + run: npm clean-install --prefer-offline --frozen-lockfile # Let's do tests rq just to make sure we dont push something that is fundamentally broken - name: Lint code - run: yarn lint + run: npm run lint - name: Run unit tests - run: yarn test + run: npm run test # Deploy to NPM - name: Prepare release - uses: lando/prepare-release-action@v2 + uses: lando/prepare-release-action@v3 - name: Deploy release to npm env: NODE_AUTH_TOKEN: ${{secrets.NPM_DEPLOY_TOKEN}} @@ -53,164 +53,119 @@ jobs: echo "::notice title=Published ${{ github.ref_name }} to @${{ github.repository }}@${{ env.PRERELEASE_TAG }}::This is a pre-release published to the '${{ env.PRERELEASE_TAG }}' npm tag" fi - auto-deploy: - runs-on: ${{ matrix.os }} - needs: deploy - env: - TERM: xterm - strategy: - fail-fast: false - matrix: - os: - - ubuntu-20.04 - node-version: - - '16' - auto-deploy-repos: - - name: lando/acquia - dirs: ./ - - name: lando/apache - dirs: ./ - - name: lando/backdrop - dirs: ./ - - name: lando/cli - dirs: ./ - - name: lando/compose - dirs: ./ - - name: lando/core - dirs: ./ - - name: lando/core-next - dirs: ./ - - name: lando/docs - dirs: ./ - - name: lando/dotnet - dirs: ./ - - name: lando/drupal - dirs: ./ - - name: lando/elasticsearch - dirs: ./ - - name: lando/go - dirs: ./ - - name: lando/joomla - dirs: ./ - - name: lando/lagoon - dirs: ./ - - name: lando/lamp - dirs: ./ - - name: lando/laravel - dirs: ./ - - name: lando/lemp - dirs: ./ - - name: lando/mailhog - dirs: ./ - - name: lando/mariadb - dirs: ./ - - name: lando/mean - dirs: ./ - - name: lando/memcached - dirs: ./ - - name: lando/mongo - dirs: ./ - - name: lando/mssql - dirs: ./ - - name: lando/mysql - dirs: ./ - - name: lando/nginx - dirs: ./ - - name: lando/node - dirs: ./ - - name: lando/pantheon - dirs: ./ - - name: lando/php - dirs: ./ - - name: lando/phpmyadmin - dirs: ./ - - name: lando/platformsh - dirs: ./ - - name: lando/postgres - dirs: ./ - - name: lando/python - dirs: ./ - - name: lando/redis - dirs: ./ - - name: lando/ruby - dirs: ./ - - name: lando/symfony - dirs: ./ - - name: lando/tomcat - dirs: ./ - - name: lando/solr - dirs: ./ - - name: lando/varnish - dirs: ./ - - name: lando/wordpress - dirs: ./ - steps: - # Install deps and cache - # NOTE that we use ref: main because we need to get the code that was updated from the prepare-release-action - - name: Checkout code - uses: actions/checkout@v3 - with: - ref: main - - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - registry-url: https://registry.npmjs.org - cache: yarn - - name: Install Yarn dependencies - run: yarn install --prefer-offline --frozen-lockfile + # auto-deploy: + # runs-on: ${{ matrix.os }} + # needs: deploy + # env: + # TERM: xterm + # strategy: + # fail-fast: false + # matrix: + # os: + # - ubuntu-22.04 + # node-version: + # - '18' + # auto-deploy-repos: + # - name: lando/acquia + # dirs: ./ + # - name: lando/apache + # dirs: ./ + # - name: lando/backdrop + # dirs: ./ + # - name: lando/cli + # dirs: ./ + # - name: lando/compose + # dirs: ./ + # - name: lando/core + # dirs: ./ + # - name: lando/core-next + # dirs: ./ + # - name: lando/docs + # dirs: ./ + # - name: lando/dotnet + # dirs: ./ + # - name: lando/drupal + # dirs: ./ + # - name: lando/elasticsearch + # dirs: ./ + # - name: lando/go + # dirs: ./ + # - name: lando/joomla + # dirs: ./ + # - name: lando/lagoon + # dirs: ./ + # - name: lando/lamp + # dirs: ./ + # - name: lando/laravel + # dirs: ./ + # - name: lando/lemp + # dirs: ./ + # - name: lando/mailhog + # dirs: ./ + # - name: lando/mariadb + # dirs: ./ + # - name: lando/mean + # dirs: ./ + # - name: lando/memcached + # dirs: ./ + # - name: lando/mongo + # dirs: ./ + # - name: lando/mssql + # dirs: ./ + # - name: lando/mysql + # dirs: ./ + # - name: lando/nginx + # dirs: ./ + # - name: lando/node + # dirs: ./ + # - name: lando/pantheon + # dirs: ./ + # - name: lando/php + # dirs: ./ + # - name: lando/phpmyadmin + # dirs: ./ + # - name: lando/platformsh + # dirs: ./ + # - name: lando/postgres + # dirs: ./ + # - name: lando/python + # dirs: ./ + # - name: lando/redis + # dirs: ./ + # - name: lando/ruby + # dirs: ./ + # - name: lando/symfony + # dirs: ./ + # - name: lando/tomcat + # dirs: ./ + # - name: lando/solr + # dirs: ./ + # - name: lando/varnish + # dirs: ./ + # - name: lando/wordpress + # dirs: ./ + # steps: + # # Install deps and cache + # # NOTE that we use ref: main because we need to get the code that was updated from the prepare-release-action + # - name: Checkout code + # uses: actions/checkout@v3 + # with: + # ref: main + # - name: Install node ${{ matrix.node-version }} + # uses: actions/setup-node@v3 + # with: + # node-version: ${{ matrix.node-version }} + # registry-url: https://registry.npmjs.org + # cache: npm + # - name: Install dependencies + # run: npm clean-install --prefer-offline --frozen-lockfile - # Auto deploy to everything else - - name: Auto deploy to ${{ matrix.auto-deploy-repos.name }} - uses: lando/auto-deploy-action@v2 - with: - branch: main - slug: ${{ matrix.auto-deploy-repos.name }} - token: ${{ secrets.PIROG_TOKEN }} - pr: false - dirs: ${{ matrix.auto-deploy-repos.dirs }} - - pr-deploy: - runs-on: ${{ matrix.os }} - needs: deploy - env: - TERM: xterm - strategy: - fail-fast: false - matrix: - os: - - ubuntu-20.04 - node-version: - - '16' - pr-deploy-repos: - - name: lando/blog - dirs: ./ - - name: lando/events - dirs: ./ - - name: lando/website - dirs: ./ - - steps: - # Install deps and cache - # NOTE that we use ref: main because we need to get the code that was updated from the prepare-release-action - - name: Checkout code - uses: actions/checkout@v3 - with: - ref: main - - name: Install node ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - registry-url: https://registry.npmjs.org - cache: yarn - - name: Install Yarn dependencies - run: yarn install --prefer-offline --frozen-lockfile - - # Auto deploy to everything else - - name: PR deploy to ${{ matrix.auto-deploy-repos.name }} - uses: lando/auto-deploy-action@v2 - with: - slug: ${{ matrix.pr-deploy-repos.name }} - token: ${{ secrets.PIROG_TOKEN }} - pr: true - dirs: ${{ matrix.pr-deploy-repos.dirs }} + # # Auto deploy to everything else + # - name: Auto deploy to ${{ matrix.auto-deploy-repos.name }} + # uses: lando/auto-deploy-action@v2 + # with: + # branch: main + # slug: ${{ matrix.auto-deploy-repos.name }} + # token: ${{ secrets.PIROG_TOKEN }} + # pr: false + # dirs: ${{ matrix.auto-deploy-repos.dirs }} diff --git a/.gitignore b/.gitignore index f78c372e..77e31004 100644 --- a/.gitignore +++ b/.gitignore @@ -75,8 +75,11 @@ typings/ # https://nextjs.org/blog/next-9-1#public-directory-support # public -# legacy vuepress build output and temp dirs +# legacy vitepress build output and temp dirs _site -docs/**/.vuepress/.temp -docs/**/.vuepress/.cache -docs/**/.vuepress/dist + +# vitepress thangs +docs/.vitepress/.temp +docs/.vitepress/cache +docs/.vitepress/dist +docs/.vitepress/config.js.timestamp-*-*.mjs diff --git a/.lando.yml b/.lando.yml index 1fb4092b..1a5ec23a 100644 --- a/.lando.yml +++ b/.lando.yml @@ -1,9 +1,9 @@ -name: vuepress-theme-default-plus +name: vitepress-theme-default-plus services: node: - type: node:14 + type: node:18 build: - - yarn install + - npm install scanner: false ssl: false sslExpose: false @@ -13,10 +13,10 @@ services: tooling: node: service: node - yarn: + npm: service: node dev: service: node - cmd: yarn dev --port 8071 + cmd: npm run dev --port 8071 env: DEBUG: "@lando/*" diff --git a/.node-version b/.node-version index b6a7d89c..3c032078 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -16 +18 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a7efe79..4a30e46c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,271 +1,3 @@ -## v1.0.0-beta.49 - [September 24, 2023](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.49) +## v1.0.0-beta.1 - [January 1, 2024](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.0.0-alpha.1) -* Deploy release - -## v1.0.0-beta.48 - [September 24, 2023](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.48) - -* Added `alert` to `navbar` items. [Read More](https://vuepress-theme-default-plus.lando.dev/config.html#navbar) - -## v1.0.0-beta.47 - [August 8, 2023](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.47) - -* Added ability to disable config sets `sharedNavbar` by setting it to any non array value - -## v1.0.0-beta.46 - [June 16, 2023](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.46) - -* Switched release flow over to [@lando/prepare-release-action](https://github.com/lando/prepare-release-action) - -## v1.0.0-beta.45 - [May 16, 2023](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.45) - -* Update Algolia search app ID/api key. - -## v1.0.0-beta.44 - [December 6, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.44) - -* Meaningless release - -## v1.0.0-beta.43 - [December 6, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.43) - -* Fixed order of operations bug with new `satisfies` for `plugin-sidebar-header` and `plugin-versions-page` -* Improved config set merging to deeply clone - -## v1.0.0-beta.42 - [December 4, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.42) - -* Added `satisfies` to `plugin-versions-page` to target specific releases -* Added `plugin-alert` to easily set a site-wide alert message at the top of the page -* Added `type` to `plugin-sidebar-header` to set a custom class for the version badge - -## v1.0.0-beta.41 - [December 2, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.41) - -* Autodeploy release - -## v1.0.0-beta.40 - [December 2, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.40) - -* Added support for `columns` in `NavbarDropdown` subitems -* Added `satisfies` to `plugin-sidebar-header` to target specific releases - -## v1.0.0-beta.39 - [November 29, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.39) - -* Reverted requirement to `node >= 14` -* Updated to `vuepress@2.0.0-beta.53` -* Updated docs to reflect new usage - -## v1.0.0-beta.38 - [November 29, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.38) - -* Fixed bug loading `ReadMode.vue` when `readmode: false` - -## v1.0.0-beta.37 - [November 29, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.37) - -* Downstream deploy test - -## v1.0.0-beta.36 - [November 29, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.36) - -* Downstream deploy test - -## v1.0.0-beta.35 - [November 29, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.35) - -* Updated requirement to `node >= 16` -* Updated to `vuepress@2.0.0-beta.49` - -## v1.0.0-beta.34 - [May 5, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.34) - -* Fixed bug with default search plugin not using correct package name - -## v1.0.0-beta.33 - [May 5, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.33) - -* Bumped to stable release -* Reset devops - -## v1.0.0-beta.32 - [May 4, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.32) - -* Fixed bug with new `docsearch` package causing WSOD - -## v1.0.0-beta.31 - [May 4, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.31) - -* Updated to handle upsteam breaking changes in [vuepress@2.0.0-beta.40](https://github.com/vuepress/vuepress-next/blob/main/CHANGELOG.md#200-beta40-2022-04-25) -* Bubbled up some parent `slots` for `Sidebar` and `Navbar` so they work correctly [#41](https://github.com/lando/vuepress-theme-default-plus/issues/41) - -## v1.0.0-beta.30 - [March 28, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.30) - -* Added `footer` and `page footer` slots to `Layout` -* Added custom containers for `thumbnail` and `caption` -* Made all core components swappable -* Fixed bug causing unified Algolia Docsearch to 404 when search item shares a path component with `base` -* Fixed styling of main content area when both `sidebar` and `rightbar` are disabled - -## v1.0.0-beta.29 [March 17, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.29)- - -* Added toggleable "Reading Mode" feature -* Added `BlogPost` as a new page type -* Added ability to easily add more "page types" -* Added new "highlight" custom container -* Added a simple "tagging" mechanism -* Added a job posting mechansim -* Improved `contributorsPage` and `contributors` so they can exclude items like bots -* Improved global and page-by-page component disabling so its more consistent -* Improved consistency of `border-radius` -* Fixed bug in `sitemp.xml` generation -* Fixed bug in `404` page causing a bad home link to show up - -## v1.0.0-beta.27 [March 13, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.27)- - -* Changed default `sidebarDepth` to `0` since `TOC` does the work now -* Fixed `lang` bug in `sitemp.xml` generation -* Improved edge handling of `TOC` marker - -## v1.0.0-beta.26 [March 12, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.26)- - -* Added fallback support for `frontmatter.description` with `frontmatter.summary` -* Added `toc` component to `rightbar` -* Added `robots.txt` support -* Added `sitemap.xml` support -* Elevated `Frontmatter` and `Custom Container` docs to the top level - -## v1.0.0-beta.24 [March 10, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.24)- - -* Refactored so things are less shitty PART 3 - -## v1.0.0-beta.23 [March 10, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.23)- - -* Refactored so things are less shitty PART 2 - -## v1.0.0-beta.22 [March 10, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.22)- - -* Refactored so things are less shitty - -## v1.0.0-beta.21 [March 7, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.21) - -* Empty release for deploy testing purposes - -## v1.0.0-beta.20 [March 7, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.20) - -* Empty release for deploy testing purposes - -## v1.0.0-beta.19 [March 7, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.19) - -* Empty release for deploy testing purposes - -## v1.0.0-beta.18 [February 28, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.18)- - -* Added support for Hubspot tracking code [#21](https://github.com/lando/vuepress-theme-default-plus/issues/21) - -## v1.0.0-beta.17 [February 26, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.17)- - -* Fixed bug causing `home` to `404` when deployed in `baseUrl` subsite configuration - -## v1.0.0-beta.16 [February 26, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.16)- - -* Added `half`, `third`, `center`, `left`, `right` and `card` custom containers -* Added `rightbar` option to `frontmatter`, works like `sidebar` but can disable `rightbar` -* Made `form` styling elements more consistent -* Fixed various styling bugs - -## v1.0.0-beta.15 [February 25, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.15)- - -* Removed unused components -* Updated the branding - -## v1.0.0-beta.14 [February 25, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.14)- - -* Added ability to override downstream `alias` in `themeConfig` -* Improved default `home` setting when running in `baseUrl` mode [#18](https://github.com/lando/vuepress-theme-default-plus/issues/18) - -## v1.0.0-beta.12 [February 23, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.12)- - -* Improved centering on `SidebarHeader` -* Removed background on `SocialLinks` for better dark mode transition -* Updated `lando` navbar defaults - -## v1.0.0-beta.11 [February 23, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.11)- - -* Improved centering on `SidebarHeader` -* Removed background on `SocialLinks` for better dark mode transition -* Updated `lando` navbar defaults - -## v1.0.0-beta.10 [February 23, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.10)- - -* Improved centering on `SidebarHeader` -* Removed background on `SocialLinks` for better dark mode transition -* Updated `lando` navbar defaults - -## v1.0.0-beta.9 [February 23, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.9) - -* Improved centering on `SidebarHeader` -* Removed background on `SocialLinks` for better dark mode transition -* Updated `lando` navbar defaults - -## v1.0.0-beta.8 [February 23, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.8) - -* Improved centering on `SidebarHeader` -* Removed background on `SocialLinks` for better dark mode transition -* Updated `lando` navbar defaults - -## v1.0.0-beta.7 [February 23, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.7) - -* Improved centering on `SidebarHeader` -* Removed background on `SocialLinks` for better dark mode transition -* Updated `lando` navbar defaults - -## v1.0.0-beta.6 [February 23, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.6) - -* Improved centering on `SidebarHeader` -* Removed background on `SocialLinks` for better dark mode transition -* Updated `lando` navbar defaults - -## v1.0.0-beta.5 [February 23, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.5) - -* Improved centering on `SidebarHeader` -* Removed background on `SocialLinks` for better dark mode transition -* Updated `lando` navbar defaults - -## v1.0.0-beta.4 [February 23, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.4) - -* Improved centering on `SidebarHeader` -* Removed background on `SocialLinks` for better dark mode transition -* Updated `lando` navbar defaults - -## v1.0.0-beta.3 [February 17, 2022](https://github.com/lando/vuepress-theme-default-plus/releases/tag/v1.0.0-beta.3) - -* Improved `sidebarHeader.icon` so it honors `base` -* Improved `social` and `sidebarHeader` styling for mobile -* Improved `
@@ -67,6 +72,8 @@ - diff --git a/components/VPLMenuLink.vue b/components/VPLMenuLink.vue new file mode 100644 index 00000000..80cd1880 --- /dev/null +++ b/components/VPLMenuLink.vue @@ -0,0 +1,86 @@ + +