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(deps): update dependency @angular/platform-browser-dynamic to v18 #3677

Merged
merged 1 commit into from
Jun 3, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 1, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular/platform-browser-dynamic (source) 17.3.10 -> 18.0.1 age adoption passing confidence

Release Notes

angular/angular (@​angular/platform-browser-dynamic)

v18.0.1

Compare Source

compiler
Commit Type Description
419ffa2026 fix optimize track function that only passes $index (#​55872)
compiler-cli
Commit Type Description
4c7efc005a fix interpolatedSignalNotInvoked diagnostic for class, style, attribute and animation bindings (#​55969)
core
Commit Type Description
4e6ea0e19c fix handle elements with local refs in event replay serialization logic (#​56076)
d73a0175cb fix link errors to ADEV (#​55554)
985a215b10 fix typo in zoneless warning (#​55974)
migrations
Commit Type Description
ba85d08158 fix handle empty ngSwitchCase (#​56105)

v18.0.0

Compare Source

Blog post "Angular v18 is now available".

Breaking Changes

animations
  • Deprecated matchesElement method has been removed from AnimationDriver as it is unused.
common
  • The deprecated isPlatformWorkerUi and isPlatformWorkerApp have been removed without replacement, as they serve no purpose since the removal of the WebWorker platform.
compiler
  • Angular only supports writable expressions inside of two-way bindings.
compiler-cli
    • Angular no longer supports TypeScript versions older than 5.4.
core
  • OnPush views at the root of the application need to
    be marked dirty for their host bindings to refresh. Previously, the host
    bindings were refreshed for all root views without respecting the
    OnPush change detection strategy.

  • OnPush views at the root of the application need to
    be marked dirty for their host bindings to refresh. Previously, the host
    bindings were refreshed for all root views without respecting the
    OnPush change detection strategy.

  • The ComponentFixture autoDetect feature will no
    longer refresh the component's host view when the component is OnPush
    and not marked dirty. This exposes existing issues in components which
    claim to be OnPush but do not correctly call markForCheck when they
    need to be refreshed. If this change causes test failures, the easiest
    fix is to change the component to ChangeDetectionStrategy.Default.

  • ComponentFixture.whenStable now matches the
    ApplicationRef.isStable observable. Prior to this change, stability
    of the fixture did not include everything that was considered in
    ApplicationRef. whenStable of the fixture will now include unfinished
    router navigations and unfinished HttpClient requests. This will cause
    tests that await the whenStable promise to time out when there are
    incomplete requests. To fix this, remove the whenStable,
    instead wait for another condition, or ensure HttpTestingController
    mocks responses for all requests. Try adding HttpTestingController.verify()
    before your await fixture.whenStable to identify the open requests.
    Also, make sure your tests wait for the stability promise. We found many
    examples of tests that did not, meaning the expectations did not execute
    within the test body.

    In addition, ComponentFixture.isStable would synchronously switch to
    true in some scenarios but will now always be asynchronous.

  • Angular will ensure change detection runs, even when the state update originates from
    outside the zone, tests may observe additional rounds of change
    detection compared to the previous behavior.

    This change will be more likely to impact existing unit tests.
    This should usually be seen as more correct and the test should be updated,
    but in cases where it is too much effort to debug, the test can revert to the old behavior by adding
    provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly})
    to the TestBed providers.

    Similarly, applications which may want to update state outside the zone
    and not trigger change detection can add
    provideZoneChangeDetection({schedulingMode: NgZoneSchedulingMode.NgZoneOnly})
    to the providers in bootstrapApplication or add
    schedulingMode: NgZoneSchedulingMode.NgZoneOnly to the
    BootstrapOptions of bootstrapModule.

  • When Angular runs change detection, it will continue to
    refresh any views attached to ApplicationRef that are still marked for
    check after one round completes. In rare cases, this can result in infinite
    loops when certain patterns continue to mark views for check using
    ChangeDetectorRef.detectChanges. This will be surfaced as a runtime
    error with the NG0103 code.

  • async has been removed, use waitForAsync instead.

  • The ComponentFixture.autoDetect feature now executes
    change detection for the fixture within ApplicationRef.tick. This more
    closely matches the behavior of how a component would refresh in
    production. The order of component refresh in tests may be slightly
    affected as a result, especially when dealing with additional components
    attached to the application, such as dialogs. Tests sensitive to this
    type of change (such as screenshot tests) may need to be updated.
    Concretely, this change means that the component will refresh before
    additional views attached to ApplicationRef (i.e. dialog components).
    Prior to this change, the fixture component would refresh after other
    views attached to the application.

  • The exact timing of change detection execution when
    using event or run coalescing with NgZone is now the first of either
    setTimeout or requestAnimationFrame. Code which relies on this
    timing (usually by accident) will need to be adjusted. If a callback
    needs to execute after change detection, we recommend afterNextRender
    instead of something like setTimeout.

  • Newly created and views marked for check and reattached
    during change detection are now guaranteed to be refreshed in that same
    change detection cycle. Previously, if they were attached at a location
    in the view tree that was already checked, they would either throw
    ExpressionChangedAfterItHasBeenCheckedError or not be refreshed until
    some future round of change detection. In rare circumstances, this
    correction can cause issues. We identified one instance that relied on
    the previous behavior by reading a value on initialization which was
    queued to be updated in a microtask instead of being available in the
    current change detection round. The component only read this value during
    initialization and did not read it again after the microtask updated it.

  • Testability methods increasePendingRequestCount,
    decreasePendingRequestCount and getPendingRequestCount have been
    removed. This information is tracked with zones.

http
  • By default we now prevent caching of HTTP requests that require authorization . To opt-out from this behaviour use the includeRequestsWithAuthHeaders option in withHttpTransferCache.

    Example:

    withHttpTransferCache({
      includeRequestsWithAuthHeaders: true,
    })
platform-browser
  • Deprecated StateKey, TransferState and makeStateKey have been removed from @angular/platform-browser, use the same APIs from @angular/core.
platform-browser-dynamic
  • No longer used RESOURCE_CACHE_PROVIDER APIs have been removed.
platform-server
  • deprecated platformDynamicServer has been removed. Add an import @​angular/compiler and replace the usage with platformServer

  • deprecated ServerTransferStateModule has been removed. TransferState can be use without providing this module.

  • deprecated useAbsoluteUrl and baseUrl been removed from PlatformConfig. Provide and absolute url instead.

  • Legacy handling or Node.js URL parsing has been removed from ServerPlatformLocation.

    The main differences are;

    • pathname is always suffixed with a /.
    • port is empty when http: protocol and port in url is 80
    • port is empty when https: protocol and port in url is 443
router
  • Guards can now return RedirectCommand for redirects
    in addition to UrlTree. Code which expects only boolean or UrlTree
    values in Route types will need to be adjusted.
  • This change allows Route.redirectTo to be a function
    in addition to the previous string. Code which expects redirectTo to
    only be a string on Route objects will need to be adjusted.
  • When a a guard returns a UrlTree as a redirect, the
    redirecting navigation will now use replaceUrl if the initial
    navigation was also using the replaceUrl option. If this is not
    desirable, the redirect can configure new NavigationBehaviorOptions by
    returning a RedirectCommand with the desired options instead of UrlTree.
  • Providers available to the routed components always
    come from the injector heirarchy of the routes and never inherit from
    the RouterOutlet. This means that providers available only to the
    component that defines the RouterOutlet will no longer be available to
    route components in any circumstances. This was already the case
    whenever routes defined providers, either through lazy loading an
    NgModule or through explicit providers on the route config.
  • Providers available to the routed components always
    come from the injector heirarchy of the routes and never inherit from
    the RouterOutlet. This means that providers available only to the
    component that defines the RouterOutlet will no longer be available to
    route components in any circumstances. This was already the case
    whenever routes defined providers, either through lazy loading an
    NgModule or through explicit providers on the route config.

Deprecations

common
  • getCurrencySymbol, getLocaleCurrencyCode, getLocaleCurrencyName, getLocaleCurrencySymbol, getLocaleDateFormat, getLocaleDateTimeFormat, getLocaleDayNames, getLocaleDayPeriods, getLocaleDirection, getLocaleEraNames, getLocaleExtraDayPeriodRules, getLocaleExtraDayPeriods, getLocaleFirstDayOfWeek, getLocaleId, getLocaleMonthNames, getLocaleNumberFormat, getLocaleNumberSymbol, getLocalePluralCase, getLocaleTimeFormat, getLocaleWeekEndRange, getNumberOfCurrencyDigits
core
  • @Component.interpolation is deprecated. Use Angular's
    delimiters instead.
http
  • HttpClientModule, HttpClientXsrfModule and HttpClientJsonpModule

    As mentionned, those modules can be replaced by provider function only.

animations
Commit Type Description
bcce85af72 refactor remove deprecated matchesElement from AnimationDriver (#​55479)
common
Commit Type Description
d34c033902 refactor Deprecate Local Data API functions (#​54483)
3b0de30b37 refactor remove deprecated isPlatformWorkerApp and isPlatformWorkerUi API (#​55302)
compiler
Commit Type Description
91b007e58f fix add math elements to schema (#​55631)
33d0102304 fix allow comments between connected blocks (#​55966)
7fc7f3f05f fix capture all control flow branches for content projection in if blocks (#​54921)
a369f43fbd fix capture switch block cases for content projection (#​54921)
eb625d3783 fix declare for loop aliases in addition to new name (#​54942)
f824911510 fix For FatalDiagnosticError, hide the message field without affecting the emit (#​55160)
a040fb720a fix maintain multiline CSS selectors during CSS scoping (#​55509)
39624c6b12 fix output input flags as a literal (#​55215)
eba92cfa55 fix prevent usage of reserved control flow symbol in custom interpolation context. (#​55809)
7d5bc1c628 fix remove container index from conditional instruction (#​55190)
4eb0165750 fix remove support for unassignable expressions in two-way bindings (#​55342)
e1650e3b13 fix throw error if item name and context variables conflict (#​55045)
compiler-cli
Commit Type Description
5bd188a394 feat add partial compilation support for deferred blocks (#​54908)
b02b31a915 feat drop support for TypeScript older than 5.4 (#​54961)
78188e877a fix add diagnostic if initializer API is used outside of an initializer (#​54993)
69a83993b3 fix do not throw when retrieving TCB symbol for signal input with restricted access (#​55774)
4f4f41016e fix dom property binding check in signal extended diagnostic (#​54324)
7a16d7e969 fix don't type check the bodies of control flow nodes in basic mode (#​55360)
8d93597a82 fix fix type narrowing of @if with aliases (#​55835)
9b424d7224 fix preserve original reference to non-deferrable dependency (#​54759)
694ba79cbf fix report cases where initializer APIs are used in a non-directive class (#​54993)
6219341d26 fix report errors when initializer APIs are used on private fields (#​54981)
c04ffb1fa6 fix use switch statements to narrow Angular switch blocks (#​55168)
core
Commit Type Description
a730f09ae9 feat Add a public API to establish events to be replayed and an attribute to mark an element with an event handler. (#​55356)
fdd560ea14 feat Add ability to configure zone change detection to use zoneless scheduler (#​55252)
bce5e2344f feat Add build target for jsaction contract binary. (#​55319)
666d646575 feat Add event delegation library to queue up events and replay them when the application is ready (#​55121)
5f06ca8f55 feat add HOST_TAG_NAME token (#​54751)
a600a39d0c feat add support for fallback content in ng-content (#​54854)
146306a141 feat add support for i18n hydration (#​54823)
f09c5a7bc4 feat Add zoneless change detection provider as experimental (#​55329)
d28614b90e feat Modify EventType from an enum to an object. (#​55323)
ac863ded48 feat provide ExperimentalPendingTasks API (#​55487)
1ee9f32621 feat Synchronize changes from internal JSAction codebase. (#​55182)
d888da4606 fix ApplicationRef.tick should respect OnPush for host bindings (#​53718)
64f870c12b fix ApplicationRef.tick should respect OnPush for host bindings (#​53718) (#​53718)
8cad4e8cbe fix ComponentFixture autoDetect respects OnPush flag of host view (#​54824)
658cf8c384 fix ComponentFixture stability should match ApplicationRef (#​54949)
2fc11eae9e fix account for re-projected ng-content elements with fallback content (#​54854)
0cbd73c6e9 fix add warning when using zoneless but zone.js is still loaded (#​55769)
d5edfde6ee fix afterRender hooks registered outside change detection can mark views dirty (#​55623)
de7447d15e fix Angular should not ignore changes that happen outside the zone (#​55102)
ba8e465974 fix Change Detection will continue to refresh views while marked for check (#​54734)
5a10f405d3 fix complete the removal of deprecation async function (#​55491)
24bc0ed4f2 fix ComponentFixture autodetect should detect changes within ApplicationRef.tick (#​54733)
1c0ec56c46 fix correctly project single-root content inside control flow (#​54921)
840c375255 fix do not save point-in-time setTimeout and rAF references (#​55124)
10c5cdb49c fix ensure change detection runs in a reasonable timeframe with zone coalescing (#​54578)
ad045efd4b fix Ensure views marked for check are refreshed during change detection (#​54735)
69085ea26e fix error about provideExperimentalCheckNoChangesForDebug uses wrong name (#​55824)
0147e0b85a fix exhaustive checkNoChanges should only do a single pass (#​55839)
e02bcf89cf fix Fix clearing of pending task in zoneless cleanup implementation (#​55074)
0cec9e4f9a fix Fix null dereference error addEvent (#​55353)
44c0ed83a6 fix hide implementation details of ExperimentalPendingTasks (#​55516)
314112de99 fix Prevent markForCheck during change detection from causing infinite loops (#​54900)
a5fa279b6e fix prevent i18n hydration from cleaning projected nodes (#​54823)
6534c035c0 fix Remove deprecated Testability methods (#​53768)
a5c57c7484 fix resolve error for multiple component instances that use fallback content (#​55478)
f44a5e4604 fix support content projection and VCRs in i18n (#​54823)
0510930a25 fix TestBed should not override NgZone from initTestEnvironment (#​55226)
e9a0c86766 fix TestBed should not override NgZone from initTestEnvironment (#​55226)
700c0520bb fix Update ApplicationRef.tick loop to only throw in dev mode (#​54848)
a99cb7ce5b fix zoneless scheduler should check if Zone is defined before accessing it (#​55118)
1fd63e9cff refactor deprecate @Component.interpolation (#​55778)
forms
Commit Type Description
1c736dc3b2 feat Unified Control State Change Events (#​54579)
61007dced0 fix Add event for forms submitted & reset (#​55667)
2e27ca9ddf fix Allow canceled async validators to emit. (#​55134)
http
Commit Type Description
6f88d80758 feat allow caching requests with different origins between server and client (#​55274)
8eacb6e4b9 feat exclude caching for authenticated HTTP requests (#​55034)
d9b339fdbc fix resolve withRequestsMadeViaParent behavior with withFetch (#​55652)
ef665a40a5 refactor Deprecate HttpClientModule & related modules (#​54020)
language-service
Commit Type Description
6d1b82df32 fix allow external projects to use provided compiler options (#​55035)
a48afe0d94 fix avoid generating TS syntactic diagnostics for templates (#​55091)
bd236cc150 fix implement getDefinitionAtPosition for Angular templates (#​55269)
4166dfc1b6 fix prevent underlying TS Service from handling template files (#​55003)
b7f2fd4739 fix use type-only import in plugin factory (#​55996)
migrations
Commit Type Description
f914f6a362 feat Migration schematics for HttpClientModule (#​54020)
8459ee46cb fix handle more cases in HttpClientModule migration (#​55640)
c4b2f18709 fix migrate HttpClientTestingModule in test modules (#​55803)
bb4a4016a9 fix preserve existing properties in HttpClientModule migration (#​55777)
f93e5180be fix resolve multiple structural issues with HttpClient migration (#​55557)
platform-browser
Commit Type Description
45ae7a6b60 feat add withI18nSupport() in developer preview (#​55130)
23f914f101 fix Use the right namespace for mathML. (#​55622)
cba336d4f1 refactor remove deprecated transfer state APIs (#​55474)
platform-browser-dynamic
Commit Type Description
eb20c1a8b1 refactor unused RESOURCE_CACHE_PROVIDER API has been removed (#​54875)
platform-server
Commit Type Description
5674c644ab fix add nonce attribute to event record script (#​55495)
e71e869112 fix remove event dispatch script from HTML when hydration is disabled (#​55681)
07ac017731 refactor remove deprecated platformDynamicServer API (#​54874)
e8b588d8b7 refactor remove deprecated ServerTransferStateModule API (#​54874)
3b1967ca64 refactor remove deprecated useAbsoluteUrl and baseUrl from PlatformConfig (#​54874)
2357d3566c refactor remove legacy URL handling logic (#​54874)
router
Commit Type Description
4a42961393 feat withNavigationErrorHandler can convert errors to redirects (#​55370)
8735af08b9 feat Add ability to return UrlTree with NavigationBehaviorOptions from guards (#​45023)
87f3f27f90 feat Allow resolvers to return RedirectCommand (#​54556)
2b802587f2 feat Allow Route.redirectTo to be a function which returns a string or UrlTree (#​52606)
60f1d681e0 fix preserve replaceUrl when returning a urlTree from CanActivate (#​54042)
3839cfbb18 fix Routed components never inherit RouterOutlet EnvironmentInjector (#​54265)
da906fdafc fix Routed components never inherit RouterOutlet EnvironmentInjector (#​54265)
service-worker
Commit Type Description
3bc63eaaf3 fix avoid running CDs on controllerchange (#​54222)
e598634c10 fix remove controllerchange listener when app is destroyed (#​55365)

Configuration

📅 Schedule: Branch creation - "on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Never, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner June 1, 2024 00:56
@renovate renovate bot requested a review from gnbm June 1, 2024 00:56
Copy link

vercel bot commented Jun 1, 2024

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 Jun 3, 2024 6:27pm

@brandyscarney brandyscarney merged commit e4007be into main Jun 3, 2024
5 checks passed
@brandyscarney brandyscarney deleted the renovate/major-angular branch June 3, 2024 19:12
sean-perkins added a commit that referenced this pull request Jun 4, 2024
* 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 <[email protected]>
Co-authored-by: Liam DeBeasi <[email protected]>
Co-authored-by: Amanda Johnston <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: ptmkenny <[email protected]>
Co-authored-by: Brandy Carney <[email protected]>
Co-authored-by: Matthew Harris <[email protected]>
Co-authored-by: Nikita Barsukov <[email protected]>

* 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(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 <[email protected]>

* add link to time zone docs

* enlarge playground

---------

Co-authored-by: Liam DeBeasi <[email protected]>

* 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 <[email protected]>

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

Co-authored-by: Shawn Taylor <[email protected]>

* 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 <[email protected]>

* 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 <[email protected]>

* 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>

* 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)

* docs(content, fab): fixed slot placement (#3563)

Co-authored-by: Liam DeBeasi <[email protected]>

* 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 <[email protected]>

* 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 <[email protected]>

* lint

---------

Co-authored-by: Liam DeBeasi <[email protected]>

* 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 <[email protected]>
Co-authored-by: arnotixe <[email protected]>
Co-authored-by: Liam DeBeasi <[email protected]>

* 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>

* chore: make ionic 8 default version (#3600)

* default docs to v8

* freeze ionic 6 docs

---------

Co-authored-by: Sean Perkins <[email protected]>

* 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 <[email protected]>

* 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 <[email protected]>

* 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 <[email protected]>

* 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>

* docs(picker): add accessibility docs (#3612)

* 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 <[email protected]>

* 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 <[email protected]>

* 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 <[email protected]>
Co-authored-by: Maria Hutt <[email protected]>

* 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>

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

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

* docs: add focus manager documentation (#3627)

* docs(updating): add correct npm tag for v8 (#3633)

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

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

* chore(deps): update dependency vue to v3.4.26 (#3638)

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

* chore(deps): update react to v18.3.1 (#3629)

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

* chore(deps): update ionic to v8.1.0 (#3637)

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

* chore(deps): update dependency vue-tsc to v2.0.15 (#3640)

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

* chore(deps): update dependency vue-tsc to v2.0.16 (#3644)

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

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

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

* chore(deps): update dependency vite to v5.2.11 (#3642)

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

* chore(deps): update dependency vite to v5.2.11 (#3643)

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

* chore(deps): update ionic to v8.1.1 (#3647)

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

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

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

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

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

* chore(deps): update dependency vue to v3.4.27 (#3650)

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

* chore(deps): update dependency vue-tsc to v2.0.17 (#3652)

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

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

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

* chore(deps): update ionic to v8.1.2 (#3655)

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

* docs(components): update filled inputs in items callout to an admonition (#3656)

* chore(deps): update dependency web-vitals to v4 (#3657)

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

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

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

* chore(deps): update dependency vue-tsc to v2.0.19 (#3661)

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

* docs(vue): remove the coming soon page (#3663)

* docs(angular): standalone components are not experimental (#3665)

* fix(redirects): add redirects for v8 links (#3666)

* fix(redirects): add redirects for v8 links

* fix(redirects): ja v8 redirects

* chore(deps): update ionic to v8.2.0 (#3667)

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

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

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

* chore(deps): update dependency web-vitals to v4.0.1 (#3671)

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

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

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

* fix: use module with syntax for json files (#3673)

* chore(deps): update dependency vite to v5.2.12 (#3681)

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

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

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

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

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

* chore(deps): update dependency vite to v5.2.12 (#3682)

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

* feat: segment css properties by mode (#3674)

* docs(theming): replace charcoal variable with background since the property name is background (#3678)

* docs(theming): update CSS properties to CSS custom properties (#3679)

* chore(deps): update dependency @angular/platform-browser-dynamic to v18 (#3677)

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

* docs(theming): clean up event listeners in React demos (#3684)

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Shawn Taylor <[email protected]>
Co-authored-by: Brandy Carney <[email protected]>
Co-authored-by: Nikita Barsukov <[email protected]>
Co-authored-by: Maria Hutt <[email protected]>
Co-authored-by: Liam DeBeasi <[email protected]>
Co-authored-by: Amanda Johnston <[email protected]>
Co-authored-by: ptmkenny <[email protected]>
Co-authored-by: Matthew Harris <[email protected]>
Co-authored-by: Treigh Mawaka <[email protected]>
Co-authored-by: Nikhil <[email protected]>
Co-authored-by: Matt Netkow <[email protected]>
Co-authored-by: Deepak Sharma <[email protected]>
Co-authored-by: nlko <[email protected]>
Co-authored-by: Mike Hartington <[email protected]>
Co-authored-by: Nozarno <[email protected]>
Co-authored-by: Maria Hutt <[email protected]>
Co-authored-by: Santiago Mejia <[email protected]>
Co-authored-by: shiv19 <[email protected]>
Co-authored-by: arnotixe <[email protected]>
Co-authored-by: Marlon Harrison <[email protected]>
Co-authored-by: Antheus Steenvoorden <[email protected]>
Co-authored-by: Jonathan Algar <[email protected]>
Co-authored-by: github-actions <[email protected]>
Co-authored-by: jaredcbaum <[email protected]>
Co-authored-by: Sathish Kumar G <[email protected]>
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.

1 participant