Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docusaurus): upgrade to v3 #3322

Merged
merged 16 commits into from
Jan 16, 2024
Merged

chore(docusaurus): upgrade to v3 #3322

merged 16 commits into from
Jan 16, 2024

Conversation

thetaPC
Copy link
Contributor

@thetaPC thetaPC commented Dec 13, 2023

Issue URL: N/A

What is the current behavior?

Docusaurus was on an old version (v2).

What is the new behavior?

Docusaurus has been updated to the latest version (v3).

  • Caution admonitions have been deprecated. Switched to warning admonitions as recommended.
  • Had to add <!-- prettier-ignore --> to some code snippets because new lines in md files will break the site.
  • Had to change script files' extension to prevent the following error: Error [ERR_REQUIRE_ESM]: require() of ES Module not supported
  • Very minor style changes to make sure the upgrade matches main
  • Docusaurus v2 DocPage component has been replaced by Docusaurus v3 DocRoot component
  • Structure for the versioned sidebars was updated to match the new structure

Does this introduce a breaking change?

  • Yes
  • No

Other information

Docusaurus highly recommends to switch from .md extension to .mdx. At some point, .md files will be parsed as standard CommonMark. I plan to make another PR that addresses this. I opted to not do it in this PR as it would increase the amount of file changes.

PR for JP.

Copy link

vercel bot commented Dec 13, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
ionic-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 12, 2024 0:56am

@@ -1,5 +1,5 @@
src/theme/DocItem
src/theme/DocPage
src/theme/DocRoot
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DocPage has been replaced by DocRoot. The name is the only change that happened in Docusaurus v3.

@@ -28,7 +28,7 @@ See the [Standalone Migration Guide](#migrating-from-modules-to-standalone) for

### Usage with Standalone-based Applications

:::caution
:::warning
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution admonitions have been deprecated. It's recommended to use warning.

Comment on lines +22 to +24
frameBorder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
allowFullScreen
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed to remove a console error in the browser.

Comment on lines +601 to +602
const DynamicComponent = code[key];
codeSnips[key] = <DynamicComponent />;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The prior code would cause the page to crash with the following error: "Invalid hook call. Hooks can only be called inside of the body of a function component.".

Comment on lines +610 to +611
const DynamicFileComponent = code[key].files[fileName];
fileSnippets[`${fileName}`] = <DynamicFileComponent />;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The prior code would cause the page to crash with the following error: "Invalid hook call. Hooks can only be called inside of the body of a function component.".

@@ -591,27 +591,29 @@ export default function Playground({
}

useEffect(() => {
const codeSnippets = {};
const codeSnips = {};
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing the variable to make it easier to read the difference between this and the codeSnippets state.

Comment on lines +44 to +45
<!-- prettier-ignore -->
<p>Cards are a great way to display an important piece of content, and can contain images, buttons, text, and more.</p>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MDX breaks when there are new lines within tags.

Docusaurus recommends to either use {/* prettier-ignore */} or add the files to .prettierignore until Prettier has support for MDX 3.

@@ -236,7 +236,7 @@ html[data-theme='dark'] {

border: none;

background: var(--ifm-menu-link-sublist-icon) 50% / 0.5rem 0.25rem;
background: var(--ifm-menu-link-sublist-icon) 50% / 0.5rem 0.3rem;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Docusaurus v3 causes the version dropdown icon to be smaller. This change makes sure that it looks like the current docs site.

main Docusaurus v3 (w/o the change)
Screenshot 2024-01-03 at 1 23 16 PM Screenshot 2024-01-03 at 1 23 45 PM

Comment on lines 156 to 168
.git-link {
&::before {
content: '';
height: 1em;
width: 1em;
display: inline-block;
background-color: currentColor;
mask-repeat: no-repeat;
mask-position: center;
mask-size: 100% 100%;
mask-image: url(../../static/icons/code-branch.svg);
vertical-align: -0.1em;
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MDX breaks when there are new lines within tags.

Docusaurus recommends to either use {/* prettier-ignore */} or add the files to .prettierignore until Prettier has support for MDX 3.

The previous codMDX breaks when there are new lines within tags.

Docusaurus recommends to either use {/* prettier-ignore */} or add the files to .prettierignore until Prettier has support for MDX 3.

The previous code would have the <svg> tag within the tag. The structure would break the site b/c of the new lines. Instead of going to every single file to fix it. I opted to moving the svg to the CSS.e would have the <svg> tag within the tag. The structure would break the site b/c of the new lines. Instead of going to every single file to fix it. I opted to moving the svg to the CSS.

</svg>{' '}
https://github.com/abbyysdk/RTR-SDK.Cordova
</a>
<a href="https://github.com/abbyysdk/RTR-SDK.Cordova" target="_blank" rel="noopener" className="git-link">github.com/abbyysdk/RTR-SDK.Cordova</a>
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Check this comment for more details to know the reason behind the change.

@@ -1,29 +1,29 @@
{
"version-v5/docs": [
"docs": [
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment on lines +5 to +6
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These were missing to begin with. It was evident with the upgrade b/c it would break the site without them.

@@ -14,7 +14,7 @@
"crowdin:sync": "docusaurus write-translations && crowdin upload && crowdin download",
"deploy": "docusaurus deploy",
"docusaurus": "docusaurus",
"generate-markdown": "node scripts/native && concurrently \"node scripts/cli\" \"node scripts/release-notes\"",
"generate-markdown": "node scripts/native.mjs && concurrently \"node scripts/cli.mjs\" \"node scripts/release-notes.mjs\"",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had to change their extension to prevent the following error: Error [ERR_REQUIRE_ESM]: require() of ES Module not supported

@thetaPC thetaPC marked this pull request as ready for review January 3, 2024 22:49
@thetaPC thetaPC requested a review from a team as a code owner January 3, 2024 22:49
@thetaPC thetaPC requested review from liamdebeasi and removed request for a team January 3, 2024 22:49
Copy link
Contributor

@liamdebeasi liamdebeasi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I only found one CSS issue. Tested the rest of the site in light + dark mode, and LTR + RTL and found no other issues. Great work!

Comment on lines +159 to +167
height: 1em;
width: 1em;
display: inline-block;
background-color: currentColor;
mask-repeat: no-repeat;
mask-position: center;
mask-size: 100% 100%;
mask-image: url(../../static/icons/code-branch.svg);
vertical-align: -0.1em;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The alignment is slightly off when compared with main:

main branch
Screenshot 2024-01-09 at 9 31 15 AM Screenshot 2024-01-09 at 9 31 12 AM

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed: b5ea741

Copy link
Contributor

@jaredcbaum jaredcbaum left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great to me! When this drops, the vercel deployment node version will likely need to be bumped from 16 to 18 to satisfy Docusaurus 3 requirements.

Copy link
Contributor

@liamdebeasi liamdebeasi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work!

@thetaPC thetaPC merged commit 9c801f1 into main Jan 16, 2024
4 checks passed
@thetaPC thetaPC deleted the docusaurus-v3 branch January 16, 2024 16:39
rdlabo added a commit that referenced this pull request Feb 28, 2024
* chore(support): update support table (#3164)

* chore(support): update support table

* update versioned support tables

* fix(deps): update dependency @types/node to v18.18.1 (#3163)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs: add docs for dynamic font scaling (#3111)

* docs(angular): add standalone documentation (#3115)

* docs(dynamic-font): fix font family name (#3149)

* docs: add modules architecture usage (#3151)

* docs(angular): add angular standalone syntax to non-playground examples (#3116)

* fix(angular): standalone guide formatting (#3152)

* docs(angular): include add diff sign (#3157)

* docs(toast): add playground for positionAnchor (#3158)

* chore: resolve cspell errors (#3165)

* chore: resolve cspell errors

* chore: ignore all node_modules folders

* chore: adjust sorting

* docs(select): keyboard navigation (#3156)

* chore(deps): update dependency vue-tsc to v1.8.14 (#3159)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency web-vitals to v3 (#3142)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: team is requested for review for renovatebot prs (#3168)

* fix typo

* chore

* chore

* fix(deps): update dependency vue-router to v4.2.5 (#3147)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency @types/react to v18.2.22 (#3141)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v1.8.15 (#3170)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency @types/node to v18.18.3 (#3171)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v4.4.0 (#3172)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update ionic to v7.4.3 (#3178)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update react monorepo (#3179)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency web-vitals to v3.5.0 (#3173)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: team is requested for review for renovatebot lockfile prs (#3180)

* chore(deps): update dependency vite to v4.4.11 (#3177)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* feat(playground): persist framework and mode selection (#3169)

* fix(deps): update dependency @types/node to v18.18.4 (#3182)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v1.8.16 (#3181)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(playground): wait until playground is in view before loading stored framework/mode (#3185)

* docs(menu): clarify multiple side menu behavior (#3186)

* docs(angular): document standalone routing usage (#3167)

* docs(many): remove legacy form control syntax from v7 playgrounds (#3140)

* docs(angular): add a section to standalone migration for migrating components (#3176)

* chore(deps): update dependency vue-tsc to v1.8.18 (#3188)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(jp): re-add files for removed playgrounds (#3189)

* chore: remove unused file

* fix(): fix cspell check

* translate

* chore

* chore: run lint

* feat(keyboard): replace Codepens with playgrounds using modern syntax (#3192)

* fix(deps): update dependency @types/react-dom to v18.2.11 (#3183)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: update codeowners (#3187)

* fix(deps): update ionic to v7.5.0 (#3197)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update react monorepo (#3196)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency @types/node to v18.18.5 (#3195)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v1.8.19 (#3194)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs: clarify IonicSafeString usage (#3198)

I've seen some confusion in threads such as ionic-team/ionic-framework#28365 as to when to use IonicSafeString, so I wanted to clarify this on the docs.

* docs(input, textarea): fix specificity issues with theming playgrounds (#3199)

* fix(backdrop): make backdrop visible in basic playground (#3200)

Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com>

* chore(deps): update dependency vite to v4.5.0 (#3206)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(react): writing tests with testing-library (#2861)

* fix(deps): update dependency vue to v3.3.5 (#3204)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency @types/node to v18.18.6 (#3202)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update react monorepo (#3205)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update ionic to v7.5.1 (#3203)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(fab): remove unused component from playground (#3207)

* fix(deps): update dependency @types/react to v18.2.31 (#3209)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20 (#3211)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v1.8.20 (#3212)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* feat(api): get current readme

* translate

* fix(lint): ignore src/translate

* chore(deps): update ionic to v7.5.2 (#3216)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.8.9 (#3214)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v1.8.22 (#3213)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: add framework team as code owners (#3218)

* fix(textarea): autogrow playground can scroll to the top of contents (#3219)

* docs: change comments for pwa-elements defineCustomElements (#3191)

* chore(docusaurus): update to latest (#3014)

* fix(deps): update dependency vue to v3.3.6 (#3210)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(deps): update dependency @types/react to v18.2.33 (#3215)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.3.7 (#3221)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(angular): clarify addIcons usage (#3222)

* docs(angular): add note on migration utility (#3223)

* docs(react): link to vitest docs (#3225)

* docs(react): link to vitest docs

* docs: add vitest to introduction section

* chore: regenerate cli.json (#3193)

* chore(deps): update dependency @types/node to v20.8.10 (#3228)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.5.3 (#3230)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(renovate): use chore subject line for prs (#3234)

* chore(renovate): update config to ignore typescript updates in react v6 (#3231)

* docs(toggle): increase height of the label placement demo (#3238)

* docs(react): v7 playgrounds use vite (#3236)

* docs(radio): playground for compareWith (#3237)

* docs(reorder): assign stable identity to loop items (#3239)

* docs(angular): vscode settings for standalone usages (#3233)

* fix(deps): update dependency @types/react to v18.2.34 (#3229)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(alert): update content in playground examples (#3235)

* fix(playground): support angular 17 template (#3242)

* chore(deps): update dependency vue to v3.3.8 (#3240)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(react): v6 playgrounds use vite (#3246)

* chore(deps): update dependency @types/node to v20.9.0 (#3245)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.5.4 (#3244)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v4.4.1 (#3243)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(renovate): revert typescript ignore rule (#3248)

This reverts commit 94aba0a.

* chore(deps): update react monorepo (#3241)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(support): note angular 17 support (#3249)

* chore(renovate): match explicitly the react-router and react-router-dom (#3257)

* chore(ci): run workflow against node v20 (#3259)

* chore(deps): update ionic to v7.5.5 (#3253)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.9.1 (#3252)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-react to v4.2.0 (#3254)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v4.5.0 (#3255)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency typescript to v5.3.2 (#3261)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update react monorepo (#3262)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(react): update live reload to fix order (#3265)

Set return order of usePhotoGallery the same as expected in Tab2

* docs(toast): add swipeGesture playground (#3247)

* chore(deps): update dependency @types/react-dom to v18.2.17 (#3267)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.3.9 (#3270)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(autofocus): playground examples for setFocus (#3258)


---------

Co-authored-by: Shawn Taylor <shawn@ionic.io>
Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.10.0 (#3269)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore

* translate

* chore

* chore: update renovate to update react (#3273)

* fix(): copy package.json from repository

* fix(color-generator): contrast color calculation (#3274)

* fix(color-generator): contrast color calculation

* refactor: apply types and code style

* chore(deps): update ionic to v7.5.6 (#3268)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(color-generator): add missing dark color (#3279)

* chore(deps): update dependency @types/react to v18.2.39 (#3276)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* feat(input, textarea, select): add section for start and end slots (#3271)

* chore(google-tag-manager): switch to Docusaurus preset (#3280)

* chore(deps): update dependency @vitejs/plugin-vue to v4.5.1 (#3286)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.10.1 (#3283)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.5.7 (#3285)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(color-generator): consistently format value as hex color (#3282)

* chore(deps): update dependency @angular/platform-browser-dynamic to v17.0.4 (#3275)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v1.8.24 (#3284)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.40 (#3289)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.10.2 (#3288)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(color-generator): generate correct secondary color (#3290)

* fix(playground): tabs stackblitz example loads in Safari (#3287)

* chore(select): remove unneeded patch from start/end slots demo (#3295)

* chore(deps): update dependency @types/react to v18.2.41 (#3294)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v4.5.1 [security] (#3293)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.10.3 (#3297)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.42 (#3299)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-react to v4.2.1 (#3300)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v4.5.2 (#3308)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.10.4 (#3307)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(angular): note jest transformIgnorePatterns for es modules (#3298)

* chore(deps): update dependency typescript to v5.3.3 (#3309)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.0 (#3311)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(item): clarify usage for text wrapping (#3314)

* docs(layout): fix path from dynamic font to typography (#3312)

* chore(renovate): package vite with related plugins (#3266)

* chore(deps): update dependency @types/react to v18.2.43 (#3317)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5 (#3318)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5 (#3319)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(app-store): update release build to include capacitor steps (#3324)

Co-authored-by: Matthew Harris <rtpharry@hotmail.com>

* docs(radio): fix radio demo (#3326)

* chore(deps): update dependency @types/react to v18.2.45 (#3329)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.1 (#3332)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.0.9 (#3331)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react-dom to v18.2.18 (#3336)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.0.10 (#3337)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs: show how to account for this (#3333)

* chore

* docs(popover): warn about popover attribute on v5 (#3339)

* docs(support): revise wording (#3341)

* chore(deps): update dependency @types/node to v20.10.5 (#3343)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(refresher): add rubber band effect for virtual scroll (#3345)

* chore(deps): update dependency vite to v5.0.9 (#3330)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.2 (#3348)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.0.10 (#3349)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v5 (#3350)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.3.10 (#3301)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v1.8.25 (#3310)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.0 (#3355)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @angular/platform-browser-dynamic to v17.0.8 (#3351)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v5.0.1 (#3357)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.3 (#3361)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v1.8.27 (#3353)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency clsx to v2.1.0 (#3358)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.46 (#3352)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency web-vitals to v3.5.1 (#3354)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(many): remove implications that we support desktop apps (#3366)

* docs(hbb): document close watcher support (#3364)

* chore(deps): update dependency @types/node to v20.10.6 (#3356)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(desktop): remove desktop app deployment docs (#3365)

* chore(deps): update dependency vue to v3.4.5 (#3371)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(playground): use correct usage target or mode, when limited (#3367)

* chore(deps): update dependency vite to v5.0.11 (#3375)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.6 (#3382)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.10 (#3385)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(docusaurus): upgrade to v3 (#3322)

* chore(playgrounds): update demos to use latest major version  (#3388)

* chore(deps): update dependency vue to v3.4.11 (#3387)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(label): clarify usage for text wrapping (#3386)

* chore(deps): update dependency @vitejs/plugin-vue to v5.0.2 (#3360)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.3 (#3372)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.47 (#3376)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.10.7 (#3379)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.13 (#3389)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.0 (#3392)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.4 (#3391)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.1 (#3393)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.48 (#3394)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.14 (#3397)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.3 (#3396)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.15 (#3400)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.0.12 [security] (#3398)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.5 (#3399)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.5 (#3401)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.0.12 [security] (#3403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v5.0.3 (#3390)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(input): update `Maskito` documentation (according to the latest major release `2.0.0`) (#3402)

* chore(deps): update ionic to v7.6.6 (#3411)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.6 (#3409)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(node): upgrade to v20 (#3404)

* chore(deps): update dependency web-vitals to v3.5.2 (#3410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(angular): use ngmodules for the first app (#3417)

* chore(deps): update dependency @types/node to v20.11.7 (#3414)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(searchbar): streamline usage example with script setup syntax (#3408)

* docs(searchbar): streamline usage example with script setup syntax (#3406)

* chore(deps): update dependency @angular/platform-browser-dynamic to v17.1.1 (#3423)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.51 (#3425)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(react, vue): update Quickstart page to use modern checkbox syntax (#3415)

* chore(deps): update dependency @types/react to v18.2.52 (#3430)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix: release notes generation from changelog (#3428)

* docs(toast): clarify toasts from overlays (#3432)

* chore(deps): update dependency @types/react to v18.2.53 (#3433)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: npm install

* fmt

* chore(): remove duplication package

* translate

* fix(): follow ionicframework.com

* chore(ci): update node version

* fix(): comment-out unused script

* chore(): follow package-lock.json

* fix(): npm install at root

---------

Co-authored-by: Shawn Taylor <shawn@ionic.io>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>
Co-authored-by: Amanda Johnston <90629384+amandaejohnston@users.noreply.github.com>
Co-authored-by: Sean Perkins <13732623+sean-perkins@users.noreply.github.com>
Co-authored-by: Maria Hutt <thetaPC@users.noreply.github.com>
Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com>
Co-authored-by: jcesarmobile <jcesarmobile@gmail.com>
Co-authored-by: sylvainvdm <61663831+sylvainvdm@users.noreply.github.com>
Co-authored-by: ptmkenny <1451472+ptmkenny@users.noreply.github.com>
Co-authored-by: Matthew Harris <rtpharry@hotmail.com>
Co-authored-by: Nikita Barsukov <nikita.s.barsukov@gmail.com>
Co-authored-by: Treigh Mawaka <92684310+treighmawaka@users.noreply.github.com>
rdlabo added a commit that referenced this pull request Apr 17, 2024
* docs(support): add support for Ionic 8 (#3344)

* chore(deps): update dependency vite to v5.0.9 (#3330)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.2 (#3348)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.0.10 (#3349)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v5 (#3350)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.3.10 (#3301)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v1.8.25 (#3310)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.0 (#3355)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @angular/platform-browser-dynamic to v17.0.8 (#3351)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v5.0.1 (#3357)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.3 (#3361)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v1.8.27 (#3353)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency clsx to v2.1.0 (#3358)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.46 (#3352)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency web-vitals to v3.5.1 (#3354)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(many): remove implications that we support desktop apps (#3366)

* docs(hbb): document close watcher support (#3364)

* chore(deps): update dependency @types/node to v20.10.6 (#3356)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(desktop): remove desktop app deployment docs (#3365)

* chore(deps): update dependency vue to v3.4.5 (#3371)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* feat(color-contrast): update light theme to use new colors (#3374)

* chore(demoURL): update docs demo url for v7 (#3377)

* fix(playground): use correct usage target or mode, when limited (#3367)

* chore(deps): update dependency vite to v5.0.11 (#3375)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* feat(light-mode): update light theme on stackblitz (#3380)

* refactor(Stackblitz): use imported dark theme instead of hard-coded styles (#3378)

* fix(docs): update playgrounds to use v8 (#3381)

* chore(deps): update dependency vue to v3.4.6 (#3382)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.10 (#3385)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(docusaurus): upgrade to v3 (#3322)

* chore(playgrounds): update demos to use latest major version  (#3388)

* chore(deps): update dependency vue to v3.4.11 (#3387)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(label): clarify usage for text wrapping (#3386)

* chore(deps): update dependency @vitejs/plugin-vue to v5.0.2 (#3360)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.3 (#3372)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.47 (#3376)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.10.7 (#3379)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.13 (#3389)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.0 (#3392)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.4 (#3391)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.1 (#3393)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.48 (#3394)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.14 (#3397)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.3 (#3396)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.15 (#3400)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.0.12 [security] (#3398)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.5 (#3399)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.5 (#3401)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.0.12 [security] (#3403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v5.0.3 (#3390)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* feat(theming): update dark mode guide with new dark theme files and playgrounds (#3384)

* docs(input): update `Maskito` documentation (according to the latest major release `2.0.0`) (#3402)

* chore(deps): update ionic to v7.6.6 (#3411)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.6 (#3409)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(node): upgrade to v20 (#3404)

* chore(deps): update dependency web-vitals to v3.5.2 (#3410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(): sync with main (#3405)

Co-authored-by: Shawn Taylor <shawn@ionic.io>
Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>
Co-authored-by: Amanda Johnston <90629384+amandaejohnston@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ptmkenny <1451472+ptmkenny@users.noreply.github.com>
Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com>
Co-authored-by: Matthew Harris <rtpharry@hotmail.com>
Co-authored-by: Nikita Barsukov <nikita.s.barsukov@gmail.com>

* fix(docs): version the common css and js files  (#3412)

* chore: fix sidebar for v7 docs

* docs(angular): use ngmodules for the first app (#3417)

* chore(deps): update dependency @types/node to v20.11.7 (#3414)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(searchbar): streamline usage example with script setup syntax (#3408)

* docs(hbb): add CloseWatcher docs to versioned docs (#3420)

* docs(theming): document new placeholder opacity global css variable (#3421)

* docs(searchbar): streamline usage example with script setup syntax (#3406)

* chore(deps): update dependency @angular/platform-browser-dynamic to v17.1.1 (#3423)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.51 (#3425)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(react, vue): update Quickstart page to use modern checkbox syntax (#3415)

* chore(deps): update dependency @types/react to v18.2.52 (#3430)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix: release notes generation from changelog (#3428)

* docs(toast): clarify toasts from overlays (#3432)

* chore(deps): update dependency @types/react to v18.2.53 (#3433)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: npm install

* fmt

* chore(): remove duplication package

* translate

* fix(): follow ionicframework.com

* chore(ci): update node version

* fix(): comment-out unused script

* chore(): follow package-lock.json

* fix(): npm install at root

* translate(): shallow doc is translated

* chore

* fmt

* chore

* chore

* chore(deps): update dependency vue to v3.4.16 (#3438)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.54 (#3434)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.0 (#3439)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.7.0 (#3426)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.18 (#3443)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update react monorepo (#3445)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(config): add rippleEffect to table (#3448)

* fix(config): add rippleEffect to table

* lint

* docs(high-contrast): add documentation (#3431)

* chore(deps): update ionic to v7.7.1 (#3444)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(layout): update dynamic font scaling for v8 (#3447)

* chore(deps): update dependency vite to v5.1.0 (#3440)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.1 (#3442)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.10 (#3422)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(infinite-scroll): clarify virtual scroll element (#3338)

* docs(infinite-scroll): clarify virtual scroll element

* chore: update content

* chore(prettier): cache prettier (#3323)

* docs(datetime, datetime-button): document formatOptions property (#3452)

* docs(datetime,datetime-button): document formatOptions property

* misc improvements

* Apply suggestions from code review

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* add link to time zone docs

* enlarge playground

---------

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.19 (#3458)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* refactor(md): remove unused Docusaurus properties (#3441)

* chore(deps): update dependency @types/react to v18.2.56 (#3462)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update vite-vue to v5.0.4 (#3449)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.3 (#3460)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.57 (#3466)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.7.2 (#3461)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(theming): add other frameworks to CSS Variables guide  (#3465)

* chore(deps): update dependency vue-router to v4.3.0 (#3470)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(input): clarify color property description (#3471)

* docs(input): clarify color property description

* fix anchor link

* chore(deps): update dependency vite to v5.1.4 (#3469)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.58 (#3472)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(updating): add v8 migration guide (#3475)

* docs(theming): note new stepped colors in ionic 8 (#3477)

* docs(playground): v8 playgrounds use the next tag (#3476)

* chore: increase memory limit temporarily (#3480)

* docs: archive v5 docs (#3482)

* chore(deps): update dependency vite to v5.1.3 (#3464)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs: add correct breaking changes url (#3483)

The v8 breaking changes are available on the `feature-8.0` branch, so we need to link there until v8 is merged into `main`.

* chore: remove trailing slash to avoid flash of 404 page (#3484)

* chore(deps): update dependency vite to v4.5.2 [security] (#3479)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update react monorepo (#3491)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency typescript to v5.3.3 (#3486)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs: Integrate Beamer release notes tool (#3468)

* chore(deps): update dependency @vitejs/plugin-react to v4.2.1 (#3485)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.59 (#3497)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency web-vitals to v3.5.2 (#3490)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.20 (#3499)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(dark-mode): demos use correct stepped color tokens (#3495)

* Update 8-distribute.md (#3489)

* chore(deps): update dependency @angular/platform-browser-dynamic to v17.2.2 (#3498)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v4.6.2 (#3492)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.4 (#3487)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(updating): show how to migrate custom step color usages (#3496)

* chore(deps): update dependency vue-router to v4.3.0 (#3504)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.21 (#3503)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.61 (#3502)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5 (#3506)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(theming): add type to prevent compilation error in dark mode playground (#3467)

Without type on the parameter, the following error is displayed
error TS7006: Parameter 'shouldAdd' implicitly has an 'any' type.

* chore(deps): update dependency vue-tsc to v2 (#3507)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: fix numbering (#3508)

Vue Upgrade steps went from 1 to 3 when it should have gone from 1 to 2.

* chore(deps): update dependency @types/react to v18.2.62 (#3510)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.5 (#3512)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update react monorepo (#3516)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.5 (#3511)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v2.0.6 (#3515)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(input): add start/end slot section back into v7 docs (#3509)

* docs(input): add start/end slot section back into v7 docs

* fix demo imports

* docs(config): use correct v8 tag for API generation (#3519)

* chore(deps): update dependency typescript to v5.4.2 (#3517)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.7.3 (#3473)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(datetime-button): update datetime button playground for format options

* Update static/usage/v8/datetime/format-options/index.md

Co-authored-by: Shawn Taylor <shawn@ionic.io>

* Update static/usage/v8/datetime-button/format-options/index.md

Co-authored-by: Shawn Taylor <shawn@ionic.io>

* chore(deps): update ionic to v7.7.4 (#3520)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs: note event bubbling (#3522)

* chore(deps): update dependency vite to v5.1.5 (#3513)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.6 (#3529)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.6 (#3528)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.65 (#3527)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(v8): update with latest migration recommendations (#3524)

* chore(deps): update ionic to v7.8.0 (#3532)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update react monorepo (#3531)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(dark-mode): link to latest palette (#3525)

resolves #3518

* docs(modal): update controller example for react (#3535)

* docs(modal): update controller example for react

* chore: lint

---------

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.6 (#3530)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(renovate): account for v8 and ionic packages (#3536)

* chore(deps): update dependency clsx to v2.1.0 (#3493)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(renovate): account for v7 deps with minimumReleaseAge (#3538)

* docs: rename themes to palettes (#3521)



Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v5 (#3539)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.8.1 (#3537)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(playground): update playground generator for v8 docs (#3542)

* fix: rename themes to palettes in playground imports (#3543)

* chore(deps): update dependency @types/react to v18.2.67 (#3544)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(theming): update high contrast mode title (#3545)

* chore(deps): update dependency vite to v5.2.2 (#3552)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v2.0.7 (#3549)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.2 (#3551)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.3 (#3556)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.3 (#3555)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.69 (#3554)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.4 (#3558)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(password-toggle): add password toggle docs (#3541)

* chore(deps): update ionic to v7.8.2 (#3561)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.6 (#3560)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* translate

* feat(): set tag `next` at ionic/core

* chore(): merge fix path

* translate(): update 8.0

* chore(deps): update dependency vite to v5.2.7 (#3567)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @angular/platform-browser-dynamic to v17.3.2 (#3566)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: remove mapsandapps from code owners file (#3568)

* chore(deps): update dependency @types/react to v18.2.70 (#3562)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.4 (#3559)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(toast): use className for react examples (#3571)

* docs(modal): clarify content requirement for sheet modal (#3570)

* chore(deps): update dependency vite to v5.2.7 (#3573)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.8.3 (#3575)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.8 (#3580)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(your-first-app): use correct type on "Adding Mobile" page (#3533)

Co-authored-by: Maria Hutt <maria@ionic.io>

* chore(deps): update dependency vite to v5.2.8 (#3579)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v2.0.10 (#3581)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(high-contrast): fix typo in Angular dark palette import (#3587)

* docs(migration): add info about removing old light palette colors (#3586)

* docs(migration): add info about removing old light palette colors

* Update docs/updating/8-0.md

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* lint

---------

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* docs(checkbox): show how to prevent toggling checkbox with link (#3584)

* docs(title): add information on setting headings (#3585)

* docs(updating): change theme to palette in the migration guide to v8 (#3590)

* chore(deps): update dependency vue-tsc to v2.0.11 (#3592)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(angular): update swiper events (#3435)

Co-authored-by: shiv19 <shiv19@users.noreply.github.com>
Co-authored-by: arnotixe <arnotixe@users.noreply.github.com>
Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v2.0.12 (#3596)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(button): update shape and icons playgrounds to showcase circular icon buttons (#3594)

* docs(updating): include links to other documentation (#3591)

* chore(deps): update ionic to v7.8.4 (#3593)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(modal): clarify changing height of sheet modal (#3589)

* chore(deps): update dependency vue-tsc to v2.0.13 (#3599)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(): remove overwrite files

* fmt

* default docs to v8

* freeze ionic 6 docs

* update package.json files

* update playground iframes

* typo

* point to main branch

* update package lock

* fix: update cta to v8 upgrade guide

* translate

---------

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Shawn Taylor <shawn@ionic.io>
Co-authored-by: Maria Hutt <thetaPC@users.noreply.github.com>
Co-authored-by: Amanda Johnston <90629384+amandaejohnston@users.noreply.github.com>
Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com>
Co-authored-by: Nikita Barsukov <nikita.s.barsukov@gmail.com>
Co-authored-by: ptmkenny <1451472+ptmkenny@users.noreply.github.com>
Co-authored-by: Matthew Harris <rtpharry@hotmail.com>
Co-authored-by: Treigh Mawaka <92684310+treighmawaka@users.noreply.github.com>
Co-authored-by: Sean Perkins <13732623+sean-perkins@users.noreply.github.com>
Co-authored-by: Nikhil <6836536+qwertynik@users.noreply.github.com>
Co-authored-by: Matt Netkow <matt.netkow@gmail.com>
Co-authored-by: Deepak Sharma <deepak_sharma@manulife.ca>
Co-authored-by: nlko <nospam1@thomasson.fr>
Co-authored-by: Mike Hartington <mhartington@users.noreply.github.com>
Co-authored-by: Nozarno <97676780+Nozarno@users.noreply.github.com>
Co-authored-by: Maria Hutt <maria@ionic.io>
Co-authored-by: Santiago Mejia <santiagommejia@gmail.com>
Co-authored-by: shiv19 <shiv19@users.noreply.github.com>
Co-authored-by: arnotixe <arnotixe@users.noreply.github.com>
Co-authored-by: Sean Perkins <sean@ionic.io>
rdlabo added a commit that referenced this pull request May 1, 2024
* chore(deps): update dependency vue to v3.4.6 (#3382)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.10 (#3385)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(docusaurus): upgrade to v3 (#3322)

* chore(playgrounds): update demos to use latest major version  (#3388)

* chore(deps): update dependency vue to v3.4.11 (#3387)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(label): clarify usage for text wrapping (#3386)

* chore(deps): update dependency @vitejs/plugin-vue to v5.0.2 (#3360)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.3 (#3372)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.47 (#3376)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.10.7 (#3379)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.13 (#3389)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.0 (#3392)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.4 (#3391)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.1 (#3393)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.48 (#3394)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.14 (#3397)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.3 (#3396)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.15 (#3400)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.0.12 [security] (#3398)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.5 (#3399)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.6.5 (#3401)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.0.12 [security] (#3403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v5.0.3 (#3390)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* feat(theming): update dark mode guide with new dark theme files and playgrounds (#3384)

* docs(input): update `Maskito` documentation (according to the latest major release `2.0.0`) (#3402)

* chore(deps): update ionic to v7.6.6 (#3411)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.6 (#3409)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(node): upgrade to v20 (#3404)

* chore(deps): update dependency web-vitals to v3.5.2 (#3410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(): sync with main (#3405)

Co-authored-by: Shawn Taylor <shawn@ionic.io>
Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>
Co-authored-by: Amanda Johnston <90629384+amandaejohnston@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ptmkenny <1451472+ptmkenny@users.noreply.github.com>
Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com>
Co-authored-by: Matthew Harris <rtpharry@hotmail.com>
Co-authored-by: Nikita Barsukov <nikita.s.barsukov@gmail.com>

* fix(docs): version the common css and js files  (#3412)

* chore: fix sidebar for v7 docs

* docs(angular): use ngmodules for the first app (#3417)

* chore(deps): update dependency @types/node to v20.11.7 (#3414)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(searchbar): streamline usage example with script setup syntax (#3408)

* docs(hbb): add CloseWatcher docs to versioned docs (#3420)

* docs(theming): document new placeholder opacity global css variable (#3421)

* docs(searchbar): streamline usage example with script setup syntax (#3406)

* chore(deps): update dependency @angular/platform-browser-dynamic to v17.1.1 (#3423)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.51 (#3425)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(react, vue): update Quickstart page to use modern checkbox syntax (#3415)

* chore(deps): update dependency @types/react to v18.2.52 (#3430)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix: release notes generation from changelog (#3428)

* docs(toast): clarify toasts from overlays (#3432)

* chore(deps): update dependency @types/react to v18.2.53 (#3433)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: npm install

* fmt

* chore(): remove duplication package

* translate

* fix(): follow ionicframework.com

* chore(ci): update node version

* fix(): comment-out unused script

* chore(): follow package-lock.json

* fix(): npm install at root

* translate(): shallow doc is translated

* chore

* fmt

* chore

* chore

* chore(deps): update dependency vue to v3.4.16 (#3438)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.54 (#3434)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.0 (#3439)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.7.0 (#3426)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.18 (#3443)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update react monorepo (#3445)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(config): add rippleEffect to table (#3448)

* fix(config): add rippleEffect to table

* lint

* docs(high-contrast): add documentation (#3431)

* chore(deps): update ionic to v7.7.1 (#3444)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(layout): update dynamic font scaling for v8 (#3447)

* chore(deps): update dependency vite to v5.1.0 (#3440)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.1 (#3442)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/node to v20.11.10 (#3422)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(infinite-scroll): clarify virtual scroll element (#3338)

* docs(infinite-scroll): clarify virtual scroll element

* chore: update content

* chore(prettier): cache prettier (#3323)

* docs(datetime, datetime-button): document formatOptions property (#3452)

* docs(datetime,datetime-button): document formatOptions property

* misc improvements

* Apply suggestions from code review

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* add link to time zone docs

* enlarge playground

---------

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.19 (#3458)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* refactor(md): remove unused Docusaurus properties (#3441)

* chore(deps): update dependency @types/react to v18.2.56 (#3462)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update vite-vue to v5.0.4 (#3449)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.3 (#3460)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.57 (#3466)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.7.2 (#3461)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(theming): add other frameworks to CSS Variables guide  (#3465)

* chore(deps): update dependency vue-router to v4.3.0 (#3470)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(input): clarify color property description (#3471)

* docs(input): clarify color property description

* fix anchor link

* chore(deps): update dependency vite to v5.1.4 (#3469)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.58 (#3472)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(updating): add v8 migration guide (#3475)

* docs(theming): note new stepped colors in ionic 8 (#3477)

* docs(playground): v8 playgrounds use the next tag (#3476)

* chore: increase memory limit temporarily (#3480)

* docs: archive v5 docs (#3482)

* chore(deps): update dependency vite to v5.1.3 (#3464)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs: add correct breaking changes url (#3483)

The v8 breaking changes are available on the `feature-8.0` branch, so we need to link there until v8 is merged into `main`.

* chore: remove trailing slash to avoid flash of 404 page (#3484)

* chore(deps): update dependency vite to v4.5.2 [security] (#3479)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update react monorepo (#3491)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency typescript to v5.3.3 (#3486)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs: Integrate Beamer release notes tool (#3468)

* chore(deps): update dependency @vitejs/plugin-react to v4.2.1 (#3485)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.59 (#3497)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency web-vitals to v3.5.2 (#3490)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.20 (#3499)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(dark-mode): demos use correct stepped color tokens (#3495)

* Update 8-distribute.md (#3489)

* chore(deps): update dependency @angular/platform-browser-dynamic to v17.2.2 (#3498)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v4.6.2 (#3492)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.4 (#3487)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(updating): show how to migrate custom step color usages (#3496)

* chore(deps): update dependency vue-router to v4.3.0 (#3504)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.21 (#3503)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.61 (#3502)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5 (#3506)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(theming): add type to prevent compilation error in dark mode playground (#3467)

Without type on the parameter, the following error is displayed
error TS7006: Parameter 'shouldAdd' implicitly has an 'any' type.

* chore(deps): update dependency vue-tsc to v2 (#3507)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: fix numbering (#3508)

Vue Upgrade steps went from 1 to 3 when it should have gone from 1 to 2.

* chore(deps): update dependency @types/react to v18.2.62 (#3510)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.5 (#3512)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update react monorepo (#3516)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.5 (#3511)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v2.0.6 (#3515)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(input): add start/end slot section back into v7 docs (#3509)

* docs(input): add start/end slot section back into v7 docs

* fix demo imports

* docs(config): use correct v8 tag for API generation (#3519)

* chore(deps): update dependency typescript to v5.4.2 (#3517)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.7.3 (#3473)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(datetime-button): update datetime button playground for format options

* Update static/usage/v8/datetime/format-options/index.md

Co-authored-by: Shawn Taylor <shawn@ionic.io>

* Update static/usage/v8/datetime-button/format-options/index.md

Co-authored-by: Shawn Taylor <shawn@ionic.io>

* chore(deps): update ionic to v7.7.4 (#3520)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs: note event bubbling (#3522)

* chore(deps): update dependency vite to v5.1.5 (#3513)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.6 (#3529)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.6 (#3528)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.65 (#3527)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(v8): update with latest migration recommendations (#3524)

* chore(deps): update ionic to v7.8.0 (#3532)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update react monorepo (#3531)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(dark-mode): link to latest palette (#3525)

resolves #3518

* docs(modal): update controller example for react (#3535)

* docs(modal): update controller example for react

* chore: lint

---------

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* chore(deps): update dependency vite to v5.1.6 (#3530)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(renovate): account for v8 and ionic packages (#3536)

* chore(deps): update dependency clsx to v2.1.0 (#3493)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(renovate): account for v7 deps with minimumReleaseAge (#3538)

* docs: rename themes to palettes (#3521)



Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* chore(deps): update dependency @vitejs/plugin-vue to v5 (#3539)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.8.1 (#3537)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(playground): update playground generator for v8 docs (#3542)

* fix: rename themes to palettes in playground imports (#3543)

* chore(deps): update dependency @types/react to v18.2.67 (#3544)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(theming): update high contrast mode title (#3545)

* chore(deps): update dependency vite to v5.2.2 (#3552)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v2.0.7 (#3549)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.2 (#3551)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.3 (#3556)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.3 (#3555)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @types/react to v18.2.69 (#3554)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.4 (#3558)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(password-toggle): add password toggle docs (#3541)

* chore(deps): update ionic to v7.8.2 (#3561)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.6 (#3560)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* translate

* feat(): set tag `next` at ionic/core

* translate(): update 8.0

* chore(deps): update dependency vite to v5.2.7 (#3567)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency @angular/platform-browser-dynamic to v17.3.2 (#3566)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: remove mapsandapps from code owners file (#3568)

* chore(deps): update dependency @types/react to v18.2.70 (#3562)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.4 (#3559)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(toast): use className for react examples (#3571)

* docs(modal): clarify content requirement for sheet modal (#3570)

* chore(deps): update dependency vite to v5.2.7 (#3573)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic to v7.8.3 (#3575)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.8 (#3580)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(your-first-app): use correct type on "Adding Mobile" page (#3533)

Co-authored-by: Maria Hutt <maria@ionic.io>

* chore(deps): update dependency vite to v5.2.8 (#3579)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v2.0.10 (#3581)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(high-contrast): fix typo in Angular dark palette import (#3587)

* docs(migration): add info about removing old light palette colors (#3586)

* docs(migration): add info about removing old light palette colors

* Update docs/updating/8-0.md

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* lint

---------

Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* docs(checkbox): show how to prevent toggling checkbox with link (#3584)

* docs(title): add information on setting headings (#3585)

* docs(updating): change theme to palette in the migration guide to v8 (#3590)

* chore(deps): update dependency vue-tsc to v2.0.11 (#3592)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(angular): update swiper events (#3435)

Co-authored-by: shiv19 <shiv19@users.noreply.github.com>
Co-authored-by: arnotixe <arnotixe@users.noreply.github.com>
Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>

* chore(deps): update dependency vue-tsc to v2.0.12 (#3596)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(button): update shape and icons playgrounds to showcase circular icon buttons (#3594)

* docs(updating): include links to other documentation (#3591)

* chore(deps): update ionic to v7.8.4 (#3593)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(modal): clarify changing height of sheet modal (#3589)

* chore(deps): update dependency vue-tsc to v2.0.13 (#3599)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(): remove overwrite files

* fmt

* default docs to v8

* freeze ionic 6 docs

* update package.json files

* update playground iframes

* typo

* point to main branch

* update package lock

* fix: update cta to v8 upgrade guide

* translate

* chore: replace diff examples with before/after

Docusaurus does not have built-in support for diff formatting. To make it easier for developers to tell the differences between the legacy code and new approach, I separated the examples into before/after code snippet blocks.

* chore: make ionic 8 default version (#3600)

* default docs to v8

* freeze ionic 6 docs

---------

Co-authored-by: Sean Perkins <sean@ionic.io>

* chore: update support table for v8 + support (#3601)

* chore(deps): update ionic to v7.8.5 (#3602)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(dark-mode): improve link accessibility (#3595)

* chore(renovate): do not bump v7 deps to v8 (#3604)

Renovate bot is trying to bump the v7 playground deps to v8. This change prevents it from doing that: #3603

* chore(deps): update dependency vue to v3.4.22 (#3605)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(input): examples for setting an initial value with maskito (#3597)

* add examples for setting an initial value when using maskito (using maskitoTransform)

* chore: prettier formatting

* input-masking: add maskitoTransform reference to demo.html

---------

Co-authored-by: Sean Perkins <sean@ionic.io>

* chore(deps): update dependency vite to v5.2.9 (#3607)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue-router to v4.3.2 (#3611)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency typescript to v5.4.3 (#3548)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Maria Hutt <maria@ionic.io>

* chore(deps): update dependency vite to v5.2.9 (#3606)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vue to v3.4.23 (#3610)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(renovate): remove v6, add v8 (#3616)

* chore(deps): update dependency vite to v5.2.10 (#3615)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* docs(core-concepts): update android webview link (#3501)

* Fixed dead Android WebView link.

The previous link navigated to a missing page (404) in the Android developer docs. This link routes to a similar page as the iOS variant.

* docs: update webview link on latest docs

---------

Co-authored-by: Sean Perkins <sean@ionic.io>

* chore(deps): update dependency @types/node to v20.12.7 (#3450)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency typescript to v5.4.5 (#3613)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency vite to v5.2.10 (#3614)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update ionic (#3618)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update dependency clsx to v2.1.1 (#3621)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore: disable renovate on v6 playgrounds (#3622)

* chore(deps): update dependency vue to v3.4.24 (#3620)

* chore(deps): update dependency vue to v3.4.24

* chore(v6): revert vue update

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Maria Hutt <maria@ionic.io>

* chore(deps): update dependency vue-tsc to v2.0.14 (#3617)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Maria Hutt <maria@ionic.io>

* chore(deps): update react monorepo (#3572)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* refactor(many): batch update of alt text and title attributes for MD images (#3500)

Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Maria Hutt <maria@ionic.io>

* chore(deps): update dependency vue to v3.4.25 (#3623)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update react monorepo to v18.3.0 (#3624)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): update react to v18.3.0 (#3625)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Maria Hutt <thetaPC@users.noreply.github.com>
Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com>
Co-authored-by: Shawn Taylor <shawn@ionic.io>
Co-authored-by: Nikita Barsukov <nikita.s.barsukov@gmail.com>
Co-authored-by: Liam DeBeasi <liamdebeasi@users.noreply.github.com>
Co-authored-by: Amanda Johnston <90629384+amandaejohnston@users.noreply.github.com>
Co-authored-by: ptmkenny <1451472+ptmkenny@users.noreply.github.com>
Co-authored-by: Matthew Harris <rtpharry@hotmail.com>
Co-authored-by: Treigh Mawaka <92684310+treighmawaka@users.noreply.github.com>
Co-authored-by: Sean Perkins <13732623+sean-perkins@users.noreply.github.com>
Co-authored-by: Nikhil <6836536+qwertynik@users.noreply.github.com>
Co-authored-by: Matt Netkow <matt.netkow@gmail.com>
Co-authored-by: Deepak Sharma <deepak_sharma@manulife.ca>
Co-authored-by: nlko <nospam1@thomasson.fr>
Co-authored-by: Mike Hartington <mhartington@users.noreply.github.com>
Co-authored-by: Nozarno <97676780+Nozarno@users.noreply.github.com>
Co-authored-by: Maria Hutt <maria@ionic.io>
Co-authored-by: Santiago Mejia <santiagommejia@gmail.com>
Co-authored-by: shiv19 <shiv19@users.noreply.github.com>
Co-authored-by: arnotixe <arnotixe@users.noreply.github.com>
Co-authored-by: Sean Perkins <sean@ionic.io>
Co-authored-by: Marlon Harrison <92547717+marlon-ionic@users.noreply.github.com>
Co-authored-by: Antheus Steenvoorden <40796782+antheus-s@users.noreply.github.com>
Co-authored-by: Jonathan Algar <93204286+jonathanalgar@users.noreply.github.com>
Co-authored-by: github-actions <github-actions@github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants