diff --git a/docs/angular/overlays.md b/docs/angular/overlays.md
index 911063b5362..423a91e02ac 100644
--- a/docs/angular/overlays.md
+++ b/docs/angular/overlays.md
@@ -71,7 +71,10 @@ import { MyRouteService } from './my-route.service';
providers: [MyRouteService], // Service provided at route level
})
export class FeatureComponent {
- constructor(private modalController: ModalController, private injector: Injector) {}
+ constructor(
+ private modalController: ModalController,
+ private injector: Injector
+ ) {}
async openModal() {
const modal = await this.modalController.create({
@@ -113,7 +116,10 @@ import { MyService } from './my.service';
templateUrl: './feature.component.html',
})
export class FeatureComponent {
- constructor(private modalController: ModalController, private injector: Injector) {}
+ constructor(
+ private modalController: ModalController,
+ private injector: Injector
+ ) {}
async openModal() {
const myService = new MyService();
@@ -148,7 +154,10 @@ import { MyModalComponent } from './my-modal.component';
templateUrl: './feature.component.html',
})
export class FeatureComponent {
- constructor(private modalController: ModalController, private injector: Injector) {}
+ constructor(
+ private modalController: ModalController,
+ private injector: Injector
+ ) {}
async openModal() {
const modal = await this.modalController.create({
@@ -174,7 +183,10 @@ import { MyPopoverComponent } from './my-popover.component';
templateUrl: './feature.component.html',
})
export class FeatureComponent {
- constructor(private popoverController: PopoverController, private injector: Injector) {}
+ constructor(
+ private popoverController: PopoverController,
+ private injector: Injector
+ ) {}
async openPopover(event: Event) {
const popover = await this.popoverController.create({
diff --git a/docs/angular/zoneless.md b/docs/angular/zoneless.md
index bbcb5031ab5..6e9592fcbd6 100644
--- a/docs/angular/zoneless.md
+++ b/docs/angular/zoneless.md
@@ -81,7 +81,9 @@ import { ChangeDetectorRef, Component, inject } from '@angular/core';
@Component({
selector: 'app-list',
- template: `@for (item of items; track item) { {{ item }} }`,
+ template: `@for (item of items; track item) {
+ {{ item }}
+ }`,
})
export class ListPage {
private cdr = inject(ChangeDetectorRef);
@@ -113,7 +115,7 @@ Content projected into an inline `ion-modal` or `ion-popover` follows the same r
@for (item of items(); track item) {
- {{ item }}
+ {{ item }}
}
diff --git a/docs/cli/configuration.md b/docs/cli/configuration.md
index 708c5388f03..3fe6ae94d0a 100644
--- a/docs/cli/configuration.md
+++ b/docs/cli/configuration.md
@@ -117,9 +117,7 @@ module.exports = function (ctx) {
## Multi-app Projects
-
- Available in CLI 6.2.0+
-
+_Available in CLI 6.2.0+_
The Ionic CLI supports a multi-app configuration setup, which involves multiple Ionic apps and shared code within a single repository, or [monorepo](../reference/glossary.md#monorepo).
diff --git a/docs/core-concepts/fundamentals.md b/docs/core-concepts/fundamentals.md
index f8fd446013b..8f4772ac565 100644
--- a/docs/core-concepts/fundamentals.md
+++ b/docs/core-concepts/fundamentals.md
@@ -38,7 +38,7 @@ For apps that are built with Angular and `@ionic/angular`, we recommend using th
An amazing feature of apps built with web technologies (such as Ionic apps!) is that it can run on virtually any platform: desktop computers, phones, tablets, cars, refrigerators, and more! The same code base for Ionic apps can work on many platforms because it is based on web standards and common APIs that are shared across these platforms.
-One of the most common use cases for Ionic is to build an app which can be downloaded from both the [App Store](https://www.apple.com/ios/app-store/) and [Play Store](https://play.google.com/). Both iOS and Android software development kits (SDKs) provide [Web Views](webview.md) which render any Ionic app, while still allowing for full Native SDK access.
+One of the most common use cases for Ionic is to build an app which can be downloaded from both the [App Store](https://www.apple.com/ios/app-store/) and [Play Store](https://play.google.com/). Both iOS and Android software development kits (SDKs) provide [Web Views](webview.md) which render any Ionic app, while still allowing for _full_ Native SDK access.
Projects such as [Capacitor](https://capacitorjs.com/) and [Cordova](https://cordova.apache.org/) are commonly used to give Ionic apps this access to Native SDKs. This means developers can quickly build out an app using common web development tools, and still have access to native features such as the device's accelerometer, camera, GPS, and more.
diff --git a/docs/core-concepts/what-are-progressive-web-apps.md b/docs/core-concepts/what-are-progressive-web-apps.md
index f9643cb087d..551e81f8709 100644
--- a/docs/core-concepts/what-are-progressive-web-apps.md
+++ b/docs/core-concepts/what-are-progressive-web-apps.md
@@ -47,7 +47,7 @@ To be considered a Progressive Web App, your app must be:
{/* cspell:disable */}
-[Addy Osmani: Progressive web apps](https://addyosmani.com/blog/getting-started-with-progressive-web-apps/)
+_[Addy Osmani: Progressive web apps](https://addyosmani.com/blog/getting-started-with-progressive-web-apps/)_
{/* cspell:enable */}
diff --git a/docs/deployment/app-store.md b/docs/deployment/app-store.md
index b4c3120479e..e421c1902e3 100644
--- a/docs/deployment/app-store.md
+++ b/docs/deployment/app-store.md
@@ -116,7 +116,7 @@ If the upload is successful the app should be listed under 'Activities' on [iTun
As an app grows, it will need to be updated with new features and fixes.
An app can be updated by either submitting a new version to Apple, or by using a live update service like Appflow's [live update feature](https://ionic.io/docs/appflow/deploy/intro).
-With Live Updates, app changes can be pushed in realtime directly to users from the Appflow dashboard, without waiting for App Store approvals.
+With **Live Updates**, app changes can be pushed in realtime directly to users from the Appflow dashboard, without waiting for App Store approvals.
:::note
In order for the iOS App Store to accept the updated build, the config.xml file will need to be edited to increment the version value, then rebuild the app for release following the same instructions above.
diff --git a/docs/developer-resources/guides/first-app-v3/intro.md b/docs/developer-resources/guides/first-app-v3/intro.md
index 898b2122970..76a92a638ee 100644
--- a/docs/developer-resources/guides/first-app-v3/intro.md
+++ b/docs/developer-resources/guides/first-app-v3/intro.md
@@ -28,27 +28,27 @@ ionic start photo-gallery tabs
This starter project comes complete with three pre-built pages and best practices for Ionic development. With common building blocks already in place, we can add more features easily!
-“Would you like to integrate your new app with Cordova to target native iOS and Android?”
+**“Would you like to integrate your new app with Cordova to target native iOS and Android?”**
Type “y” and press Enter. Project setup may take a few moments.
-“Install the free Appflow SDK and connect your app?”
+**“Install the free Appflow SDK and connect your app?”**
Type “y” and press Enter. [Appflow](https://ionicframework.com/pro) is a powerful set of services and features built on top of the flagship Ionic Framework. This includes updating your app instantly (skipping the app store review process!), packaging apps in the cloud, and error monitoring.
-Log into your Ionic Account
+**Log into your Ionic Account**
Sign in now to easily access awesome features like Live Deploys later in this tutorial.
-What would you like to do?
+**What would you like to do?**
Choose “Create a new app on Appflow.”
-Which git host would you like to use?
+**Which git host would you like to use?**
Choose “Appflow.”
-“How would you like to connect to Appflow?”
+**“How would you like to connect to Appflow?”**
- Choose “Automatically setup a new SSH key pair for Appflow” if you haven’t used SSH before.
- Choose “Use an existing SSH key pair” if you’ve used SSH before.
diff --git a/docs/developer-resources/guides/first-app-v4/intro.md b/docs/developer-resources/guides/first-app-v4/intro.md
index d7e9e1112ba..1988676ba8f 100644
--- a/docs/developer-resources/guides/first-app-v4/intro.md
+++ b/docs/developer-resources/guides/first-app-v4/intro.md
@@ -11,13 +11,11 @@ It’s easy to get started. Note that all code referenced in this guide can be [
Download/install these right away to ensure an optimal Ionic development experience:
- [Git](https://git-scm.com/downloads) for version control.
-- SSH client, such as [PuTTy](https://putty.software/), for secure login to Appflow.
-- Node.js for interacting with the Ionic ecosystem. [Download the LTS version](https://nodejs.org/en/).
-- A code editor for... writing code! We are fans of [Visual Studio Code](https://code.visualstudio.com/).
-- Command-line terminal (CLI): FYI Windows users, for the best Ionic experience, we
- recommend the built-in command line (cmd) or the Powershell CLI, running in Administrator mode. For
- Mac/Linux
- users, virtually any terminal will work.
+- **SSH client**, such as [PuTTy](https://putty.software/), for secure login to Appflow.
+- **Node.js** for interacting with the Ionic ecosystem. [Download the LTS version](https://nodejs.org/en/).
+- **A code editor** for... writing code! We are fans of [Visual Studio Code](https://code.visualstudio.com/).
+- **Command-line terminal (CLI)**: FYI **Windows** users, for the best Ionic experience, we
+ recommend the built-in command line (cmd) or the Powershell CLI, running in Administrator mode. For **Mac/Linux** users, virtually any terminal will work.
## Install Ionic and Cordova
diff --git a/docs/developing/tips.md b/docs/developing/tips.md
index 1ed040a4ff0..c4cdc6ca5bc 100644
--- a/docs/developing/tips.md
+++ b/docs/developing/tips.md
@@ -61,9 +61,7 @@ Global packages will now be installed in the `~/.nvm` directory, so permission e
### Option 2
-
- Does not apply to Windows
-
+_Does not apply to Windows_
Change the owner of npm's directories to the current user:
diff --git a/docs/index.md b/docs/index.md
index c3bfcd5ba85..dd59a621c8e 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -125,7 +125,7 @@ The official [Ionic CLI](cli.md), or Command Line Interface, is a tool that quic
## Appflow
-To help build, deploy, and manage Ionic apps throughout their lifecycle, we offer a commercial service for production apps called [Appflow](https://ionic.io/appflow), which is separate from the open source Framework.
+To help build, deploy, and manage Ionic apps throughout their lifecycle, we offer a commercial service for production apps called [Appflow](https://ionic.io/appflow), which is **separate from the open source Framework.**
Appflow helps developers and teams compile native app builds and deploy live code updates to Ionic apps from a centralized dashboard. Optional paid upgrades are available for more advanced capabilities like publishing directly to app stores, workflow automation, single sign-on (SSO) and access to connected services and integrations.
diff --git a/docs/reference/glossary.md b/docs/reference/glossary.md
index 6df9ec43090..ce1377d6fc5 100644
--- a/docs/reference/glossary.md
+++ b/docs/reference/glossary.md
@@ -44,7 +44,7 @@ Bundling is the process of taking an app's dependencies (code you've written plu
### CLI {/* #cli */}
-A CLI, or Command-Line Interface, is a text-based interface for interacting with a program. The common command-line app for a Mac user is the Terminal app, and Windows users often use Command Prompt. The Ionic community often uses this term to refer to [Ionic's CLI](https://ionicframework.com/docs/cli). Ionic's CLI can be used for a number of things, such as creating production builds of an app, running the development server, and accessing [Ionic commercial services](https://ionic.io/appflow).
+A CLI, or **C**ommand-**L**ine **I**nterface, is a text-based interface for interacting with a program. The common command-line app for a Mac user is the Terminal app, and Windows users often use Command Prompt. The Ionic community often uses this term to refer to [Ionic's CLI](https://ionicframework.com/docs/cli). Ionic's CLI can be used for a number of things, such as creating production builds of an app, running the development server, and accessing [Ionic commercial services](https://ionic.io/appflow).
{/* cspell:enable */}
@@ -66,7 +66,7 @@ You may be familiar with variables from Sass. [CSS Variables](https://developers
### Decorators {/* #decorators */}
-Decorators are expressions that return a function. They allow you to take an existing function, and extend its behavior. With TypeScript, you can also decorate classes and parameters. When you decorate a class, you are wrapping and extending the behavior of its constructor. In other words, the decorator will add some functionality when the constructor is called, and will then return the original constructor. When you decorate a parameter, you are wrapping the argument that gets passed in for that parameter. The decorator will add functionality when an argument is passed to the method, and then return the original argument.
+Decorators are expressions that return a function. They allow you to take an existing function, and extend its behavior. With TypeScript, you can also decorate _classes_ and _parameters_. When you decorate a **class**, you are wrapping and extending the behavior of its constructor. In other words, the decorator will add some functionality when the constructor is called, and will then return the original constructor. When you decorate a **parameter**, you are wrapping the argument that gets passed in for that parameter. The decorator will add functionality when an argument is passed to the method, and then return the original argument.
### ES5 {/* #es5 */}
@@ -114,7 +114,7 @@ Modules in JavaScript are small, independent, and reusable pieces or code that a
### Monorepo {/* #monorepo */}
-A monorepo is a single git repository with multiple projects. Advantages include simpler organization, shared tooling and dependencies, and better collaboration with teammates.
+A **monorepo** is a single git repository with multiple projects. Advantages include simpler organization, shared tooling and dependencies, and better collaboration with teammates.
### Live Reload {/* #livereload */}
@@ -134,7 +134,7 @@ An observable is an object that emits events (or notifications). An observer is
### Package ID {/* #package-id */}
-Referred to by Apple as Bundle ID and by Android as Application ID, the Package ID is used for identifying apps published to the App Store/Play Store. It is a string formatted in [reverse-DNS notation](https://en.wikipedia.org/wiki/Reverse_domain_name_notation).
+Referred to by Apple as **Bundle ID** and by Android as **Application ID**, the **Package ID** is used for identifying apps published to the App Store/Play Store. It is a string formatted in [reverse-DNS notation](https://en.wikipedia.org/wiki/Reverse_domain_name_notation).
### Polyfill {/* #polyfill */}
@@ -162,7 +162,7 @@ A shim is a piece of code that normalizes an APIs across browsers. A shim can ha
### Transpiler {/* #transpiler */}
-Transpilation is the process of converting code from one language to another language prior to execution. Typically, a transpiler will convert a high-level language to another high-level language. The most common type of transpilation in Ionic Framework is converting [ES2015/ES6](#es2015-es6) ([TypeScript](#typescript)) to [ES5](#es5) (traditional JavaScript).
+Transpilation is the process of converting code from one language to another language prior to execution. Typically, a transpiler will convert a high-level language to another high-level language. The most common type of _transpilation_ in Ionic Framework is converting [ES2015/ES6](#es2015-es6) ([TypeScript](#typescript)) to [ES5](#es5) (traditional JavaScript).
### TypeScript {/* #typescript */}
diff --git a/docs/reference/support.md b/docs/reference/support.md
index 44eb8e28a7e..efcac5b444f 100644
--- a/docs/reference/support.md
+++ b/docs/reference/support.md
@@ -54,8 +54,11 @@ The Ionic team has compiled a set of recommendations for using the Ionic Framewo
| v3 | v5.2.11 | v5.2.11 | 2.6.2 |
[^1]: Angular 14.x supported starting in Ionic v6.1.9. Angular 15.x supported starting in Ionic v6.3.6.
+
[^2]: Angular 17.x supported starting in Ionic v7.5.4.
+
[^3]: Angular 18.x supported starting in Ionic v8.2.0.
+
[^4]: `@ionic/angular` and `@ionic/react` require TypeScript 5.4+. Using Angular 21 requires TypeScript 5.9 or later, and Angular 22 requires TypeScript 6.0 or later, per Angular's own requirements.
**Angular 13+ Support On Older Versions of iOS**
diff --git a/docs/theming/basics.md b/docs/theming/basics.md
index f89c78e4026..c7072fd73c7 100644
--- a/docs/theming/basics.md
+++ b/docs/theming/basics.md
@@ -25,7 +25,7 @@ When changing a color, it is important to set all of the related properties. Thi
## Platform Standards
-Ionic components adapt their look and behavior based on the platform the app is running on. We call this Adaptive Styling. This allows developers to build apps that use the same codebase for multiple platforms, while still looking "native" to those particular platforms.
+Ionic components adapt their look and behavior based on the platform the app is running on. We call this **Adaptive Styling**. This allows developers to build apps that use the same codebase for multiple platforms, while still looking "native" to those particular platforms.
Ionic has two **modes** that are used to customize the look of components based on the **platform**: `ios` and `md`. Each platform has a default mode, but this can easily be configured. For more information on customizing an application based on the platform, refer to [Platform Styles](platform-styles.md).
diff --git a/docs/troubleshooting/native.md b/docs/troubleshooting/native.md
index 80f8be3948a..357e40b45f0 100644
--- a/docs/troubleshooting/native.md
+++ b/docs/troubleshooting/native.md
@@ -24,7 +24,7 @@ Running an app on an iOS device requires a provisioning profile. If a provisioni
For Cordova, open the `config.xml` file and modify the `id` attribute of the root element, ``. Refer to [the Cordova documentation](https://cordova.apache.org/docs/en/latest/config_ref/#widget) for more information.
-2. **Open the project in Xcode.**
+2. **Open the project in **Xcode**.**
For Capacitor, run the following to open the app in Xcode:
@@ -34,11 +34,11 @@ Running an app on an iOS device requires a provisioning profile. If a provisioni
For Cordova, open Xcode. Use **File** » **Open** and locate the app. Open the app's `platforms/ios` directory.
-3. **In Project navigator, select the project root to open the project editor. Under the Identity section, verify that the Package ID that was set matches the Bundle Identifier.**
+3. **In **Project navigator**, select the project root to open the project editor. Under the **Identity** section, verify that the Package ID that was set matches the Bundle Identifier.**

-4. **In the same project editor, under the Signing section, ensure Automatically manage signing is enabled.** Then, select a Development Team. Given a Development Team, Xcode will attempt to automatically prepare provisioning and signing.
+4. **In the same project editor, under the **Signing** section, ensure **Automatically manage signing** is enabled.** Then, select a Development Team. Given a Development Team, Xcode will attempt to automatically prepare provisioning and signing.

diff --git a/package-lock.json b/package-lock.json
index 31d8911f522..cde572297b2 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -35,11 +35,11 @@
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.10.2",
"@docusaurus/tsconfig": "^3.10.2",
- "@ionic/prettier-config": "^3.0.0",
+ "@ionic/prettier-config": "^3.1.0",
"@types/react": "^19.2.18",
"cspell": "^10.0.1",
"hygen": "^6.2.11",
- "prettier": "^2.8.8",
+ "prettier": "^3.9.6",
"typescript": "^5.9.3",
"vitest": "^4.1.7"
},
@@ -4941,6 +4941,7 @@
"resolved": "https://registry.npmjs.org/@ionic/prettier-config/-/prettier-config-3.1.0.tgz",
"integrity": "sha512-5cQ9qy9G0JDcIfUSP03EyX9ReEHK0mD34anvc2eCNpcca8GbY/wB0QS125FBkmV2DhDc5BvQSSM6VWZSGkxDJQ==",
"dev": true,
+ "license": "MIT",
"peerDependencies": {
"prettier": "^2.4.0 || ^3.0.0"
}
@@ -18906,15 +18907,16 @@
}
},
"node_modules/prettier": {
- "version": "2.8.8",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
- "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
+ "version": "3.9.6",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.6.tgz",
+ "integrity": "sha512-OpN0zzVdiaiAhxpuuj5efpIS4sY9j7bY6uR5mnj5yPzGkdkjNKSJeUThPb60Jw29QuAZgA4o+/iB49kFiaBX6g==",
"dev": true,
+ "license": "MIT",
"bin": {
- "prettier": "bin-prettier.js"
+ "prettier": "bin/prettier.cjs"
},
"engines": {
- "node": ">=10.13.0"
+ "node": ">=14"
},
"funding": {
"url": "https://github.com/prettier/prettier?sponsor=1"
diff --git a/package.json b/package.json
index 3e2661c1951..64628dee39c 100644
--- a/package.json
+++ b/package.json
@@ -65,11 +65,11 @@
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.10.2",
"@docusaurus/tsconfig": "^3.10.2",
- "@ionic/prettier-config": "^3.0.0",
+ "@ionic/prettier-config": "^3.1.0",
"@types/react": "^19.2.18",
"cspell": "^10.0.1",
"hygen": "^6.2.11",
- "prettier": "^2.8.8",
+ "prettier": "^3.9.6",
"typescript": "^5.9.3",
"vitest": "^4.1.7"
},
diff --git a/src/components/global/PlaygroundTabs/index.tsx b/src/components/global/PlaygroundTabs/index.tsx
index c131254671e..0f470769e48 100644
--- a/src/components/global/PlaygroundTabs/index.tsx
+++ b/src/components/global/PlaygroundTabs/index.tsx
@@ -71,7 +71,7 @@ function TabsComponent(props: Props): ReactNode {
const defaultValue =
defaultValueProp === null
? defaultValueProp
- : defaultValueProp ?? children.find((child) => child.props.default)?.props.value ?? children[0]?.props.value;
+ : (defaultValueProp ?? children.find((child) => child.props.default)?.props.value ?? children[0]?.props.value);
if (defaultValue !== null && !values.some((a) => a.value === defaultValue)) {
throw new Error(
`Docusaurus error: The has a defaultValue "${defaultValue}" but none of its children has the corresponding value. Available values are: ${values
diff --git a/static/demos/api/action-sheet/index.html b/static/demos/api/action-sheet/index.html
index 1cde0be6c9c..7279955b19a 100644
--- a/static/demos/api/action-sheet/index.html
+++ b/static/demos/api/action-sheet/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/alert/index.html b/static/demos/api/alert/index.html
index 0ef8a5daf15..b83c668ef21 100644
--- a/static/demos/api/alert/index.html
+++ b/static/demos/api/alert/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/avatar/index.html b/static/demos/api/avatar/index.html
index b03be119ea2..249e2de223f 100644
--- a/static/demos/api/avatar/index.html
+++ b/static/demos/api/avatar/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/back-button/index.html b/static/demos/api/back-button/index.html
index a94859429d5..91db24958be 100644
--- a/static/demos/api/back-button/index.html
+++ b/static/demos/api/back-button/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/backdrop/index.html b/static/demos/api/backdrop/index.html
index 2c0b8e21277..460fad549d2 100644
--- a/static/demos/api/backdrop/index.html
+++ b/static/demos/api/backdrop/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/badge/index.html b/static/demos/api/badge/index.html
index c533f24c6a9..e34c1a585d6 100644
--- a/static/demos/api/badge/index.html
+++ b/static/demos/api/badge/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/button/index.html b/static/demos/api/button/index.html
index b5104c00dd8..d2b96230644 100644
--- a/static/demos/api/button/index.html
+++ b/static/demos/api/button/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/card/index.html b/static/demos/api/card/index.html
index 43b11609254..d6e863af44b 100644
--- a/static/demos/api/card/index.html
+++ b/static/demos/api/card/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/checkbox/index.html b/static/demos/api/checkbox/index.html
index c1883c65821..ff9a3adf727 100644
--- a/static/demos/api/checkbox/index.html
+++ b/static/demos/api/checkbox/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/chip/index.html b/static/demos/api/chip/index.html
index 75e6994524a..b514410fbf8 100644
--- a/static/demos/api/chip/index.html
+++ b/static/demos/api/chip/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/content/index.html b/static/demos/api/content/index.html
index 8ac8c5b3113..98ed26564f4 100644
--- a/static/demos/api/content/index.html
+++ b/static/demos/api/content/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/datetime/index.html b/static/demos/api/datetime/index.html
index 09c74c31df2..7baf941a274 100644
--- a/static/demos/api/datetime/index.html
+++ b/static/demos/api/datetime/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/fab/index.html b/static/demos/api/fab/index.html
index 0063d847c23..2b4c7ae3e76 100644
--- a/static/demos/api/fab/index.html
+++ b/static/demos/api/fab/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/grid/index.html b/static/demos/api/grid/index.html
index d97738e67d5..55904f9ffb3 100644
--- a/static/demos/api/grid/index.html
+++ b/static/demos/api/grid/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/infinite-scroll/index.html b/static/demos/api/infinite-scroll/index.html
index 9564b843f64..33514f319ec 100644
--- a/static/demos/api/infinite-scroll/index.html
+++ b/static/demos/api/infinite-scroll/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/input/index.html b/static/demos/api/input/index.html
index 5b2afe4d753..8e0ff620bc7 100644
--- a/static/demos/api/input/index.html
+++ b/static/demos/api/input/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/item/index.html b/static/demos/api/item/index.html
index 8b67d196174..30915916bd9 100644
--- a/static/demos/api/item/index.html
+++ b/static/demos/api/item/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/list/index.html b/static/demos/api/list/index.html
index 1c17da69db5..0494e225104 100644
--- a/static/demos/api/list/index.html
+++ b/static/demos/api/list/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/loading/index.html b/static/demos/api/loading/index.html
index 12ddaea51a9..353f7024134 100644
--- a/static/demos/api/loading/index.html
+++ b/static/demos/api/loading/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/menu/index.html b/static/demos/api/menu/index.html
index 029a55e7e2d..08f6133ccb3 100644
--- a/static/demos/api/menu/index.html
+++ b/static/demos/api/menu/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/modal/index.html b/static/demos/api/modal/index.html
index efdcd6d141f..68e8619f6b0 100644
--- a/static/demos/api/modal/index.html
+++ b/static/demos/api/modal/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/nav/index.html b/static/demos/api/nav/index.html
index 35d1357c515..048fefd71c9 100644
--- a/static/demos/api/nav/index.html
+++ b/static/demos/api/nav/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/note/index.html b/static/demos/api/note/index.html
index 7c615badcc8..c034d0d0200 100644
--- a/static/demos/api/note/index.html
+++ b/static/demos/api/note/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/picker/index.html b/static/demos/api/picker/index.html
index f4297786ce9..20c5f0778ce 100644
--- a/static/demos/api/picker/index.html
+++ b/static/demos/api/picker/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/popover/index.html b/static/demos/api/popover/index.html
index 167c0efad7c..792d69de2cb 100644
--- a/static/demos/api/popover/index.html
+++ b/static/demos/api/popover/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/progress-bar/index.html b/static/demos/api/progress-bar/index.html
index df41130cb9a..01a10c09a16 100644
--- a/static/demos/api/progress-bar/index.html
+++ b/static/demos/api/progress-bar/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/radio/index.html b/static/demos/api/radio/index.html
index 9b7316f50d5..2ca0ed90bcc 100644
--- a/static/demos/api/radio/index.html
+++ b/static/demos/api/radio/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/range/index.html b/static/demos/api/range/index.html
index f123481d8d9..0a4a5094eda 100644
--- a/static/demos/api/range/index.html
+++ b/static/demos/api/range/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/refresher/index.html b/static/demos/api/refresher/index.html
index e8802bb2342..8bfaeb30486 100644
--- a/static/demos/api/refresher/index.html
+++ b/static/demos/api/refresher/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/reorder/index.html b/static/demos/api/reorder/index.html
index 3903da1eb7d..e425b74e879 100644
--- a/static/demos/api/reorder/index.html
+++ b/static/demos/api/reorder/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/router-link/index.html b/static/demos/api/router-link/index.html
index 05bf6252072..4e607a2bef8 100644
--- a/static/demos/api/router-link/index.html
+++ b/static/demos/api/router-link/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/searchbar/index.html b/static/demos/api/searchbar/index.html
index 722cc825672..f41c3f57c1e 100644
--- a/static/demos/api/searchbar/index.html
+++ b/static/demos/api/searchbar/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/segment/index.html b/static/demos/api/segment/index.html
index fd3b95ed7bd..78154acf9fc 100644
--- a/static/demos/api/segment/index.html
+++ b/static/demos/api/segment/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/select/index.html b/static/demos/api/select/index.html
index 0e3ace081c2..2925159dbb1 100644
--- a/static/demos/api/select/index.html
+++ b/static/demos/api/select/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/skeleton-text/index.html b/static/demos/api/skeleton-text/index.html
index 18ea245e999..575e3411710 100644
--- a/static/demos/api/skeleton-text/index.html
+++ b/static/demos/api/skeleton-text/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/slides/index.html b/static/demos/api/slides/index.html
index 519ecb950b6..4a5c263ff53 100644
--- a/static/demos/api/slides/index.html
+++ b/static/demos/api/slides/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/spinner/index.html b/static/demos/api/spinner/index.html
index 764f4c01ac3..de16a65d497 100644
--- a/static/demos/api/spinner/index.html
+++ b/static/demos/api/spinner/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/tabs/index.html b/static/demos/api/tabs/index.html
index 3c90750353c..c82dcbba829 100644
--- a/static/demos/api/tabs/index.html
+++ b/static/demos/api/tabs/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/text/index.html b/static/demos/api/text/index.html
index 07f5296e0a6..234afcf206d 100644
--- a/static/demos/api/text/index.html
+++ b/static/demos/api/text/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/thumbnail/index.html b/static/demos/api/thumbnail/index.html
index 01b289dcf5b..d1c9936f1b8 100644
--- a/static/demos/api/thumbnail/index.html
+++ b/static/demos/api/thumbnail/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/toast/index.html b/static/demos/api/toast/index.html
index 01ec7a07d33..ef1dfcf953c 100644
--- a/static/demos/api/toast/index.html
+++ b/static/demos/api/toast/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/toggle/index.html b/static/demos/api/toggle/index.html
index f3ce8abd314..4b791262e78 100644
--- a/static/demos/api/toggle/index.html
+++ b/static/demos/api/toggle/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/demos/api/toolbar/index.html b/static/demos/api/toolbar/index.html
index ce13409f231..8bb0d8d9897 100644
--- a/static/demos/api/toolbar/index.html
+++ b/static/demos/api/toolbar/index.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/accessibility/animations/demo.html b/static/usage/v8/accordion/accessibility/animations/demo.html
index 52195c84137..64f9ffdb99e 100644
--- a/static/usage/v8/accordion/accessibility/animations/demo.html
+++ b/static/usage/v8/accordion/accessibility/animations/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/basic/demo.html b/static/usage/v8/accordion/basic/demo.html
index 74304db2f13..ce3d4a9152c 100644
--- a/static/usage/v8/accordion/basic/demo.html
+++ b/static/usage/v8/accordion/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/customization/advanced-expansion-styles/demo.html b/static/usage/v8/accordion/customization/advanced-expansion-styles/demo.html
index 6763c179b4f..512e1892922 100644
--- a/static/usage/v8/accordion/customization/advanced-expansion-styles/demo.html
+++ b/static/usage/v8/accordion/customization/advanced-expansion-styles/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/customization/expansion-styles/demo.html b/static/usage/v8/accordion/customization/expansion-styles/demo.html
index 6b2d28f5cdd..017868fc53d 100644
--- a/static/usage/v8/accordion/customization/expansion-styles/demo.html
+++ b/static/usage/v8/accordion/customization/expansion-styles/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/customization/icons/demo.html b/static/usage/v8/accordion/customization/icons/demo.html
index 12ce6574312..4786e969ac7 100644
--- a/static/usage/v8/accordion/customization/icons/demo.html
+++ b/static/usage/v8/accordion/customization/icons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/customization/theming/demo.html b/static/usage/v8/accordion/customization/theming/demo.html
index 41f6a837634..7245074ef06 100644
--- a/static/usage/v8/accordion/customization/theming/demo.html
+++ b/static/usage/v8/accordion/customization/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/disable/group/demo.html b/static/usage/v8/accordion/disable/group/demo.html
index 4e609f905f6..6ed171cd5ae 100644
--- a/static/usage/v8/accordion/disable/group/demo.html
+++ b/static/usage/v8/accordion/disable/group/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/disable/individual/demo.html b/static/usage/v8/accordion/disable/individual/demo.html
index 00e9be13634..56b1dc2e384 100644
--- a/static/usage/v8/accordion/disable/individual/demo.html
+++ b/static/usage/v8/accordion/disable/individual/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/listen-changes/demo.html b/static/usage/v8/accordion/listen-changes/demo.html
index 97c1038c8f4..f639438ae03 100644
--- a/static/usage/v8/accordion/listen-changes/demo.html
+++ b/static/usage/v8/accordion/listen-changes/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/multiple/demo.html b/static/usage/v8/accordion/multiple/demo.html
index 68f01eb90c1..96f903e546a 100644
--- a/static/usage/v8/accordion/multiple/demo.html
+++ b/static/usage/v8/accordion/multiple/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/readonly/group/demo.html b/static/usage/v8/accordion/readonly/group/demo.html
index 7a963be0d6b..58a1a25acfe 100644
--- a/static/usage/v8/accordion/readonly/group/demo.html
+++ b/static/usage/v8/accordion/readonly/group/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/readonly/individual/demo.html b/static/usage/v8/accordion/readonly/individual/demo.html
index 744ee7fb795..313053be702 100644
--- a/static/usage/v8/accordion/readonly/individual/demo.html
+++ b/static/usage/v8/accordion/readonly/individual/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/accordion/toggle/demo.html b/static/usage/v8/accordion/toggle/demo.html
index 6fca67d8ba0..eddc14c9f5e 100644
--- a/static/usage/v8/accordion/toggle/demo.html
+++ b/static/usage/v8/accordion/toggle/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/action-sheet/controller/demo.html b/static/usage/v8/action-sheet/controller/demo.html
index 5d95b289aa0..db16c0663c7 100644
--- a/static/usage/v8/action-sheet/controller/demo.html
+++ b/static/usage/v8/action-sheet/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/action-sheet/inline/isOpen/demo.html b/static/usage/v8/action-sheet/inline/isOpen/demo.html
index d35c6de4a1f..027d266f660 100644
--- a/static/usage/v8/action-sheet/inline/isOpen/demo.html
+++ b/static/usage/v8/action-sheet/inline/isOpen/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/action-sheet/inline/trigger/demo.html b/static/usage/v8/action-sheet/inline/trigger/demo.html
index 82b822b46af..e9ee43c5951 100644
--- a/static/usage/v8/action-sheet/inline/trigger/demo.html
+++ b/static/usage/v8/action-sheet/inline/trigger/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/action-sheet/role-info-on-dismiss/demo.html b/static/usage/v8/action-sheet/role-info-on-dismiss/demo.html
index 4c65ebfc81a..2dffed7cffb 100644
--- a/static/usage/v8/action-sheet/role-info-on-dismiss/demo.html
+++ b/static/usage/v8/action-sheet/role-info-on-dismiss/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/action-sheet/theming/css-properties/demo.html b/static/usage/v8/action-sheet/theming/css-properties/demo.html
index 4bd9f9890af..4840b7a167e 100644
--- a/static/usage/v8/action-sheet/theming/css-properties/demo.html
+++ b/static/usage/v8/action-sheet/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/action-sheet/theming/styling/demo.html b/static/usage/v8/action-sheet/theming/styling/demo.html
index b05f0a68fa3..cd2fdea7e7b 100644
--- a/static/usage/v8/action-sheet/theming/styling/demo.html
+++ b/static/usage/v8/action-sheet/theming/styling/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/alert/buttons/demo.html b/static/usage/v8/alert/buttons/demo.html
index df74653a2d2..aa80065cd02 100644
--- a/static/usage/v8/alert/buttons/demo.html
+++ b/static/usage/v8/alert/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/alert/customization/demo.html b/static/usage/v8/alert/customization/demo.html
index dd64e174ce6..43d2b71983e 100644
--- a/static/usage/v8/alert/customization/demo.html
+++ b/static/usage/v8/alert/customization/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/alert/inputs/radios/demo.html b/static/usage/v8/alert/inputs/radios/demo.html
index cf16f38fca9..8d0bc9a6088 100644
--- a/static/usage/v8/alert/inputs/radios/demo.html
+++ b/static/usage/v8/alert/inputs/radios/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/alert/inputs/text-inputs/demo.html b/static/usage/v8/alert/inputs/text-inputs/demo.html
index f199dc99a49..20b934088eb 100644
--- a/static/usage/v8/alert/inputs/text-inputs/demo.html
+++ b/static/usage/v8/alert/inputs/text-inputs/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/alert/presenting/controller/demo.html b/static/usage/v8/alert/presenting/controller/demo.html
index 733a0834396..f57b9d323c8 100644
--- a/static/usage/v8/alert/presenting/controller/demo.html
+++ b/static/usage/v8/alert/presenting/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/alert/presenting/isOpen/demo.html b/static/usage/v8/alert/presenting/isOpen/demo.html
index d1177baab8f..39e141e5f95 100644
--- a/static/usage/v8/alert/presenting/isOpen/demo.html
+++ b/static/usage/v8/alert/presenting/isOpen/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/alert/presenting/trigger/demo.html b/static/usage/v8/alert/presenting/trigger/demo.html
index f7d42a2e29e..ee4d7002be6 100644
--- a/static/usage/v8/alert/presenting/trigger/demo.html
+++ b/static/usage/v8/alert/presenting/trigger/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/animations/basic/demo.html b/static/usage/v8/animations/basic/demo.html
index e1d26629509..b3a83e7a3a5 100644
--- a/static/usage/v8/animations/basic/demo.html
+++ b/static/usage/v8/animations/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/animations/before-and-after-hooks/demo.html b/static/usage/v8/animations/before-and-after-hooks/demo.html
index 8297890b519..d8afebbb885 100644
--- a/static/usage/v8/animations/before-and-after-hooks/demo.html
+++ b/static/usage/v8/animations/before-and-after-hooks/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/animations/chain/demo.html b/static/usage/v8/animations/chain/demo.html
index 74c2d6549bd..51779fe7028 100644
--- a/static/usage/v8/animations/chain/demo.html
+++ b/static/usage/v8/animations/chain/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/animations/gesture/angular/example_component_ts.md b/static/usage/v8/animations/gesture/angular/example_component_ts.md
index e13a50cdb4b..f5aee142e0b 100644
--- a/static/usage/v8/animations/gesture/angular/example_component_ts.md
+++ b/static/usage/v8/animations/gesture/angular/example_component_ts.md
@@ -24,7 +24,10 @@ export class ExampleComponent {
*/
private readonly MAX_TRANSLATE = 344 - 100 - 32;
- constructor(private animationCtrl: AnimationController, private gestureCtrl: GestureController) {}
+ constructor(
+ private animationCtrl: AnimationController,
+ private gestureCtrl: GestureController
+ ) {}
private onMove(event: GestureDetail) {
if (!this.started) {
diff --git a/static/usage/v8/animations/gesture/demo.html b/static/usage/v8/animations/gesture/demo.html
index 5fefafc8ed2..ac7435eb4be 100644
--- a/static/usage/v8/animations/gesture/demo.html
+++ b/static/usage/v8/animations/gesture/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/animations/group/demo.html b/static/usage/v8/animations/group/demo.html
index ca2fda33d70..9e063455dbf 100644
--- a/static/usage/v8/animations/group/demo.html
+++ b/static/usage/v8/animations/group/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/animations/keyframes/demo.html b/static/usage/v8/animations/keyframes/demo.html
index 521f6eac6eb..6e4c34077e4 100644
--- a/static/usage/v8/animations/keyframes/demo.html
+++ b/static/usage/v8/animations/keyframes/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/animations/modal-override/demo.html b/static/usage/v8/animations/modal-override/demo.html
index b1585afb709..81612490384 100644
--- a/static/usage/v8/animations/modal-override/demo.html
+++ b/static/usage/v8/animations/modal-override/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/animations/preference-based/demo.html b/static/usage/v8/animations/preference-based/demo.html
index 276cffec8d7..a4f750e9118 100644
--- a/static/usage/v8/animations/preference-based/demo.html
+++ b/static/usage/v8/animations/preference-based/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/app/set-focus/demo.html b/static/usage/v8/app/set-focus/demo.html
index 780037033a2..cce63934204 100644
--- a/static/usage/v8/app/set-focus/demo.html
+++ b/static/usage/v8/app/set-focus/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/avatar/basic/demo.html b/static/usage/v8/avatar/basic/demo.html
index b3957c88ff9..410f122450e 100644
--- a/static/usage/v8/avatar/basic/demo.html
+++ b/static/usage/v8/avatar/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/avatar/chip/demo.html b/static/usage/v8/avatar/chip/demo.html
index 7317ea41688..e18b6018214 100644
--- a/static/usage/v8/avatar/chip/demo.html
+++ b/static/usage/v8/avatar/chip/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/avatar/item/demo.html b/static/usage/v8/avatar/item/demo.html
index 97681c9d338..df729fbeec9 100644
--- a/static/usage/v8/avatar/item/demo.html
+++ b/static/usage/v8/avatar/item/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/avatar/theming/css-properties/demo.html b/static/usage/v8/avatar/theming/css-properties/demo.html
index 85e967d7198..0f1eab40aba 100644
--- a/static/usage/v8/avatar/theming/css-properties/demo.html
+++ b/static/usage/v8/avatar/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/back-button/basic/demo.html b/static/usage/v8/back-button/basic/demo.html
index f6b4651d722..d169569fd24 100644
--- a/static/usage/v8/back-button/basic/demo.html
+++ b/static/usage/v8/back-button/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/back-button/custom/demo.html b/static/usage/v8/back-button/custom/demo.html
index 880e14b570b..566c90ef341 100644
--- a/static/usage/v8/back-button/custom/demo.html
+++ b/static/usage/v8/back-button/custom/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/backdrop/basic/demo.html b/static/usage/v8/backdrop/basic/demo.html
index 29ffef3fb74..f39c6b05d8f 100644
--- a/static/usage/v8/backdrop/basic/demo.html
+++ b/static/usage/v8/backdrop/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/backdrop/styling/demo.html b/static/usage/v8/backdrop/styling/demo.html
index 651a57a56ed..5ea440141d6 100644
--- a/static/usage/v8/backdrop/styling/demo.html
+++ b/static/usage/v8/backdrop/styling/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/badge/basic/demo.html b/static/usage/v8/badge/basic/demo.html
index 0b655ebd046..dbecd4c340f 100644
--- a/static/usage/v8/badge/basic/demo.html
+++ b/static/usage/v8/badge/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/badge/inside-tab-bar/demo.html b/static/usage/v8/badge/inside-tab-bar/demo.html
index dbd8f6c7060..c9d203b3a5a 100644
--- a/static/usage/v8/badge/inside-tab-bar/demo.html
+++ b/static/usage/v8/badge/inside-tab-bar/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/badge/theming/colors/demo.html b/static/usage/v8/badge/theming/colors/demo.html
index 00c0ecaf435..b176eaf5119 100644
--- a/static/usage/v8/badge/theming/colors/demo.html
+++ b/static/usage/v8/badge/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/badge/theming/css-properties/demo.html b/static/usage/v8/badge/theming/css-properties/demo.html
index 0087c8d5fc1..06d7e9d57ba 100644
--- a/static/usage/v8/badge/theming/css-properties/demo.html
+++ b/static/usage/v8/badge/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/breadcrumbs/basic/demo.html b/static/usage/v8/breadcrumbs/basic/demo.html
index b020db0c855..cd5a9cf2147 100644
--- a/static/usage/v8/breadcrumbs/basic/demo.html
+++ b/static/usage/v8/breadcrumbs/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/breadcrumbs/collapsing-items/expand-on-click/demo.html b/static/usage/v8/breadcrumbs/collapsing-items/expand-on-click/demo.html
index 42b9fdd5f9c..e0380a62bff 100644
--- a/static/usage/v8/breadcrumbs/collapsing-items/expand-on-click/demo.html
+++ b/static/usage/v8/breadcrumbs/collapsing-items/expand-on-click/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/breadcrumbs/collapsing-items/items-before-after/demo.html b/static/usage/v8/breadcrumbs/collapsing-items/items-before-after/demo.html
index 48e51d81781..f3f9bb6302f 100644
--- a/static/usage/v8/breadcrumbs/collapsing-items/items-before-after/demo.html
+++ b/static/usage/v8/breadcrumbs/collapsing-items/items-before-after/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/breadcrumbs/collapsing-items/max-items/demo.html b/static/usage/v8/breadcrumbs/collapsing-items/max-items/demo.html
index 977e07bfda9..90e8f593899 100644
--- a/static/usage/v8/breadcrumbs/collapsing-items/max-items/demo.html
+++ b/static/usage/v8/breadcrumbs/collapsing-items/max-items/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/breadcrumbs/collapsing-items/popover-on-click/demo.html b/static/usage/v8/breadcrumbs/collapsing-items/popover-on-click/demo.html
index 96200521f32..fb9f875e8c2 100644
--- a/static/usage/v8/breadcrumbs/collapsing-items/popover-on-click/demo.html
+++ b/static/usage/v8/breadcrumbs/collapsing-items/popover-on-click/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/breadcrumbs/icons/custom-separators/demo.html b/static/usage/v8/breadcrumbs/icons/custom-separators/demo.html
index 356796ea73c..887eae6d859 100644
--- a/static/usage/v8/breadcrumbs/icons/custom-separators/demo.html
+++ b/static/usage/v8/breadcrumbs/icons/custom-separators/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/breadcrumbs/icons/icons-on-items/demo.html b/static/usage/v8/breadcrumbs/icons/icons-on-items/demo.html
index a133b29791c..f82a47a6ace 100644
--- a/static/usage/v8/breadcrumbs/icons/icons-on-items/demo.html
+++ b/static/usage/v8/breadcrumbs/icons/icons-on-items/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/breadcrumbs/theming/colors/demo.html b/static/usage/v8/breadcrumbs/theming/colors/demo.html
index 0bf60b9b8d9..fce038bf47b 100644
--- a/static/usage/v8/breadcrumbs/theming/colors/demo.html
+++ b/static/usage/v8/breadcrumbs/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/breadcrumbs/theming/css-properties/demo.html b/static/usage/v8/breadcrumbs/theming/css-properties/demo.html
index 3f1d5b8cc56..5dbd32e8d0d 100644
--- a/static/usage/v8/breadcrumbs/theming/css-properties/demo.html
+++ b/static/usage/v8/breadcrumbs/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/button/basic/demo.html b/static/usage/v8/button/basic/demo.html
index 8a5c4a70c9a..29244daf67f 100644
--- a/static/usage/v8/button/basic/demo.html
+++ b/static/usage/v8/button/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/button/expand/demo.html b/static/usage/v8/button/expand/demo.html
index bff732f8015..15a5208be3e 100644
--- a/static/usage/v8/button/expand/demo.html
+++ b/static/usage/v8/button/expand/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/button/fill/demo.html b/static/usage/v8/button/fill/demo.html
index f861e384b73..d3ca415b509 100644
--- a/static/usage/v8/button/fill/demo.html
+++ b/static/usage/v8/button/fill/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/button/icons/demo.html b/static/usage/v8/button/icons/demo.html
index 597ea12252b..3b2810d9545 100644
--- a/static/usage/v8/button/icons/demo.html
+++ b/static/usage/v8/button/icons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/button/shape/demo.html b/static/usage/v8/button/shape/demo.html
index ccc374cfb77..8c3395c0dce 100644
--- a/static/usage/v8/button/shape/demo.html
+++ b/static/usage/v8/button/shape/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/button/size/demo.html b/static/usage/v8/button/size/demo.html
index a5d0b8c039f..03df58e1150 100644
--- a/static/usage/v8/button/size/demo.html
+++ b/static/usage/v8/button/size/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/button/text-wrapping/demo.html b/static/usage/v8/button/text-wrapping/demo.html
index 4f930331abe..9d0fe806015 100644
--- a/static/usage/v8/button/text-wrapping/demo.html
+++ b/static/usage/v8/button/text-wrapping/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/button/theming/colors/demo.html b/static/usage/v8/button/theming/colors/demo.html
index 79e27014015..dd5df8a3221 100644
--- a/static/usage/v8/button/theming/colors/demo.html
+++ b/static/usage/v8/button/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/button/theming/css-properties/demo.html b/static/usage/v8/button/theming/css-properties/demo.html
index c9f478abf38..46697237137 100644
--- a/static/usage/v8/button/theming/css-properties/demo.html
+++ b/static/usage/v8/button/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/buttons/basic/demo.html b/static/usage/v8/buttons/basic/demo.html
index 7888aa64524..359370e127d 100644
--- a/static/usage/v8/buttons/basic/demo.html
+++ b/static/usage/v8/buttons/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/buttons/placement/demo.html b/static/usage/v8/buttons/placement/demo.html
index 2a2b1366f94..f2ea97189b2 100644
--- a/static/usage/v8/buttons/placement/demo.html
+++ b/static/usage/v8/buttons/placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/buttons/types/demo.html b/static/usage/v8/buttons/types/demo.html
index c17e433f128..54d8bf40544 100644
--- a/static/usage/v8/buttons/types/demo.html
+++ b/static/usage/v8/buttons/types/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/card/basic/demo.html b/static/usage/v8/card/basic/demo.html
index bf913a00183..4946887d795 100644
--- a/static/usage/v8/card/basic/demo.html
+++ b/static/usage/v8/card/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/card/buttons/demo.html b/static/usage/v8/card/buttons/demo.html
index c2d5b30975d..ebccc1f482a 100644
--- a/static/usage/v8/card/buttons/demo.html
+++ b/static/usage/v8/card/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/card/list/demo.html b/static/usage/v8/card/list/demo.html
index de59b40c6e8..43d07beb7f9 100644
--- a/static/usage/v8/card/list/demo.html
+++ b/static/usage/v8/card/list/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/card/media/demo.html b/static/usage/v8/card/media/demo.html
index 7a59c70d23d..a6b9e1f0d28 100644
--- a/static/usage/v8/card/media/demo.html
+++ b/static/usage/v8/card/media/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/card/theming/colors/demo.html b/static/usage/v8/card/theming/colors/demo.html
index 9abca1fc1fc..71625640f05 100644
--- a/static/usage/v8/card/theming/colors/demo.html
+++ b/static/usage/v8/card/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/card/theming/css-properties/demo.html b/static/usage/v8/card/theming/css-properties/demo.html
index e2a8813e482..9117f615d06 100644
--- a/static/usage/v8/card/theming/css-properties/demo.html
+++ b/static/usage/v8/card/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/checkbox/alignment/demo.html b/static/usage/v8/checkbox/alignment/demo.html
index 74bef6ba6f3..a5434e17e7a 100644
--- a/static/usage/v8/checkbox/alignment/demo.html
+++ b/static/usage/v8/checkbox/alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/checkbox/basic/demo.html b/static/usage/v8/checkbox/basic/demo.html
index 224295b8d83..59e73156414 100644
--- a/static/usage/v8/checkbox/basic/demo.html
+++ b/static/usage/v8/checkbox/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/checkbox/helper-error/demo.html b/static/usage/v8/checkbox/helper-error/demo.html
index f16fd9b8503..226b219b124 100644
--- a/static/usage/v8/checkbox/helper-error/demo.html
+++ b/static/usage/v8/checkbox/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/checkbox/indeterminate/demo.html b/static/usage/v8/checkbox/indeterminate/demo.html
index ff7ae3a45e9..01385235248 100644
--- a/static/usage/v8/checkbox/indeterminate/demo.html
+++ b/static/usage/v8/checkbox/indeterminate/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/checkbox/justify/demo.html b/static/usage/v8/checkbox/justify/demo.html
index f297f896b65..4151723a624 100644
--- a/static/usage/v8/checkbox/justify/demo.html
+++ b/static/usage/v8/checkbox/justify/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/checkbox/label-link/demo.html b/static/usage/v8/checkbox/label-link/demo.html
index 48c4e5782d7..07097e73bbc 100644
--- a/static/usage/v8/checkbox/label-link/demo.html
+++ b/static/usage/v8/checkbox/label-link/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/checkbox/label-placement/demo.html b/static/usage/v8/checkbox/label-placement/demo.html
index 0239412b4f5..f8dbe861891 100644
--- a/static/usage/v8/checkbox/label-placement/demo.html
+++ b/static/usage/v8/checkbox/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/checkbox/theming/css-properties/demo.html b/static/usage/v8/checkbox/theming/css-properties/demo.html
index 42f3ff39312..1f9410a95b4 100644
--- a/static/usage/v8/checkbox/theming/css-properties/demo.html
+++ b/static/usage/v8/checkbox/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/chip/basic/demo.html b/static/usage/v8/chip/basic/demo.html
index b047533f349..847f822507d 100644
--- a/static/usage/v8/chip/basic/demo.html
+++ b/static/usage/v8/chip/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/chip/slots/demo.html b/static/usage/v8/chip/slots/demo.html
index e794d43ab89..82b419acc33 100644
--- a/static/usage/v8/chip/slots/demo.html
+++ b/static/usage/v8/chip/slots/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/chip/theming/colors/demo.html b/static/usage/v8/chip/theming/colors/demo.html
index 53f384e51c3..e22489c0fe2 100644
--- a/static/usage/v8/chip/theming/colors/demo.html
+++ b/static/usage/v8/chip/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/chip/theming/css-properties/demo.html b/static/usage/v8/chip/theming/css-properties/demo.html
index 0c960a177cd..91978be366f 100644
--- a/static/usage/v8/chip/theming/css-properties/demo.html
+++ b/static/usage/v8/chip/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/config/mode/demo.html b/static/usage/v8/config/mode/demo.html
index 8762f394ba5..7153e09578f 100644
--- a/static/usage/v8/config/mode/demo.html
+++ b/static/usage/v8/config/mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/content/basic/demo.html b/static/usage/v8/content/basic/demo.html
index 9ab7e7d5bd6..8663d4c72fb 100644
--- a/static/usage/v8/content/basic/demo.html
+++ b/static/usage/v8/content/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/content/fixed/demo.html b/static/usage/v8/content/fixed/demo.html
index 9bae0cc53b9..279c95676ea 100644
--- a/static/usage/v8/content/fixed/demo.html
+++ b/static/usage/v8/content/fixed/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/content/fullscreen/demo.html b/static/usage/v8/content/fullscreen/demo.html
index 755c683e7b1..9025e9fef0f 100644
--- a/static/usage/v8/content/fullscreen/demo.html
+++ b/static/usage/v8/content/fullscreen/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/content/header-footer/demo.html b/static/usage/v8/content/header-footer/demo.html
index 0de7fbeea16..30501e61efb 100644
--- a/static/usage/v8/content/header-footer/demo.html
+++ b/static/usage/v8/content/header-footer/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/content/scroll-events/demo.html b/static/usage/v8/content/scroll-events/demo.html
index 696b4316c85..78d5930d69a 100644
--- a/static/usage/v8/content/scroll-events/demo.html
+++ b/static/usage/v8/content/scroll-events/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/content/scroll-methods/demo.html b/static/usage/v8/content/scroll-methods/demo.html
index 536977f6a66..9de6b1aa054 100644
--- a/static/usage/v8/content/scroll-methods/demo.html
+++ b/static/usage/v8/content/scroll-methods/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/content/theming/colors/demo.html b/static/usage/v8/content/theming/colors/demo.html
index c3f3148cf08..0a68568bbee 100644
--- a/static/usage/v8/content/theming/colors/demo.html
+++ b/static/usage/v8/content/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/content/theming/css-properties/demo.html b/static/usage/v8/content/theming/css-properties/demo.html
index 23637050eba..72764601e76 100644
--- a/static/usage/v8/content/theming/css-properties/demo.html
+++ b/static/usage/v8/content/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/content/theming/css-shadow-parts/demo.html b/static/usage/v8/content/theming/css-shadow-parts/demo.html
index 5e7de0f6637..dbc6e7e3add 100644
--- a/static/usage/v8/content/theming/css-shadow-parts/demo.html
+++ b/static/usage/v8/content/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/content/theming/safe-area/demo.html b/static/usage/v8/content/theming/safe-area/demo.html
index 0c1741e8537..3a39f88589e 100644
--- a/static/usage/v8/content/theming/safe-area/demo.html
+++ b/static/usage/v8/content/theming/safe-area/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime-button/basic/demo.html b/static/usage/v8/datetime-button/basic/demo.html
index 10fbe21f532..5719f1f222c 100644
--- a/static/usage/v8/datetime-button/basic/demo.html
+++ b/static/usage/v8/datetime-button/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime-button/format-options/demo.html b/static/usage/v8/datetime-button/format-options/demo.html
index 2690eb274f3..80e0b8fba9b 100644
--- a/static/usage/v8/datetime-button/format-options/demo.html
+++ b/static/usage/v8/datetime-button/format-options/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/basic/demo.html b/static/usage/v8/datetime/basic/demo.html
index 0c8da6ec6a3..a7a55ccf426 100644
--- a/static/usage/v8/datetime/basic/demo.html
+++ b/static/usage/v8/datetime/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/buttons/customizing-button-texts/demo.html b/static/usage/v8/datetime/buttons/customizing-button-texts/demo.html
index b5940484e03..32764e7d69b 100644
--- a/static/usage/v8/datetime/buttons/customizing-button-texts/demo.html
+++ b/static/usage/v8/datetime/buttons/customizing-button-texts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/buttons/customizing-buttons/demo.html b/static/usage/v8/datetime/buttons/customizing-buttons/demo.html
index 3eadf209aac..bb1dd6354e9 100644
--- a/static/usage/v8/datetime/buttons/customizing-buttons/demo.html
+++ b/static/usage/v8/datetime/buttons/customizing-buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/buttons/showing-confirmation-buttons/demo.html b/static/usage/v8/datetime/buttons/showing-confirmation-buttons/demo.html
index 7f267bed058..3701d4db634 100644
--- a/static/usage/v8/datetime/buttons/showing-confirmation-buttons/demo.html
+++ b/static/usage/v8/datetime/buttons/showing-confirmation-buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/date-constraints/advanced/demo.html b/static/usage/v8/datetime/date-constraints/advanced/demo.html
index 9d56e4c3b27..b01ed9b24e0 100644
--- a/static/usage/v8/datetime/date-constraints/advanced/demo.html
+++ b/static/usage/v8/datetime/date-constraints/advanced/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/date-constraints/max-min/demo.html b/static/usage/v8/datetime/date-constraints/max-min/demo.html
index dde1425d4a6..ef87929b52f 100644
--- a/static/usage/v8/datetime/date-constraints/max-min/demo.html
+++ b/static/usage/v8/datetime/date-constraints/max-min/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/date-constraints/values/demo.html b/static/usage/v8/datetime/date-constraints/values/demo.html
index 840fcff5a65..4e263e8b35a 100644
--- a/static/usage/v8/datetime/date-constraints/values/demo.html
+++ b/static/usage/v8/datetime/date-constraints/values/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/format-options/demo.html b/static/usage/v8/datetime/format-options/demo.html
index b7b00cb6f44..c4fb2a91afc 100644
--- a/static/usage/v8/datetime/format-options/demo.html
+++ b/static/usage/v8/datetime/format-options/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/highlightedDates/array/demo.html b/static/usage/v8/datetime/highlightedDates/array/demo.html
index 9f27a6f29c8..c2af4ebc518 100644
--- a/static/usage/v8/datetime/highlightedDates/array/demo.html
+++ b/static/usage/v8/datetime/highlightedDates/array/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/highlightedDates/callback/demo.html b/static/usage/v8/datetime/highlightedDates/callback/demo.html
index 447b01e38f5..c7d04007502 100644
--- a/static/usage/v8/datetime/highlightedDates/callback/demo.html
+++ b/static/usage/v8/datetime/highlightedDates/callback/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/localization/custom-locale/demo.html b/static/usage/v8/datetime/localization/custom-locale/demo.html
index e1d1b2b7531..0d23bdf3be2 100644
--- a/static/usage/v8/datetime/localization/custom-locale/demo.html
+++ b/static/usage/v8/datetime/localization/custom-locale/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/localization/first-day-of-week/demo.html b/static/usage/v8/datetime/localization/first-day-of-week/demo.html
index fe89cd25d80..79f3d18a115 100644
--- a/static/usage/v8/datetime/localization/first-day-of-week/demo.html
+++ b/static/usage/v8/datetime/localization/first-day-of-week/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/localization/hour-cycle/demo.html b/static/usage/v8/datetime/localization/hour-cycle/demo.html
index 3960611fe3b..8adf67fce86 100644
--- a/static/usage/v8/datetime/localization/hour-cycle/demo.html
+++ b/static/usage/v8/datetime/localization/hour-cycle/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/localization/locale-extension-tags/demo.html b/static/usage/v8/datetime/localization/locale-extension-tags/demo.html
index ea99274035b..d368d00c798 100644
--- a/static/usage/v8/datetime/localization/locale-extension-tags/demo.html
+++ b/static/usage/v8/datetime/localization/locale-extension-tags/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/localization/time-label/demo.html b/static/usage/v8/datetime/localization/time-label/demo.html
index 6f36b8b8be0..d2959897e13 100644
--- a/static/usage/v8/datetime/localization/time-label/demo.html
+++ b/static/usage/v8/datetime/localization/time-label/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/multiple/demo.html b/static/usage/v8/datetime/multiple/demo.html
index cfc94e89e0e..d283367b98a 100644
--- a/static/usage/v8/datetime/multiple/demo.html
+++ b/static/usage/v8/datetime/multiple/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/presentation/date/demo.html b/static/usage/v8/datetime/presentation/date/demo.html
index bdeca246b99..4e0f807eb7d 100644
--- a/static/usage/v8/datetime/presentation/date/demo.html
+++ b/static/usage/v8/datetime/presentation/date/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/presentation/month-and-year/demo.html b/static/usage/v8/datetime/presentation/month-and-year/demo.html
index a2d381ee21a..3b98961391d 100644
--- a/static/usage/v8/datetime/presentation/month-and-year/demo.html
+++ b/static/usage/v8/datetime/presentation/month-and-year/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/presentation/time/demo.html b/static/usage/v8/datetime/presentation/time/demo.html
index 1811ae1714b..c56dee27068 100644
--- a/static/usage/v8/datetime/presentation/time/demo.html
+++ b/static/usage/v8/datetime/presentation/time/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/presentation/wheel/demo.html b/static/usage/v8/datetime/presentation/wheel/demo.html
index b65240a66a5..ea48d7a1344 100644
--- a/static/usage/v8/datetime/presentation/wheel/demo.html
+++ b/static/usage/v8/datetime/presentation/wheel/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/show-adjacent-days/demo.html b/static/usage/v8/datetime/show-adjacent-days/demo.html
index d0879fa4368..077c804de35 100644
--- a/static/usage/v8/datetime/show-adjacent-days/demo.html
+++ b/static/usage/v8/datetime/show-adjacent-days/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/styling/calendar-days/demo.html b/static/usage/v8/datetime/styling/calendar-days/demo.html
index ac5d64023a3..119a9a506e8 100644
--- a/static/usage/v8/datetime/styling/calendar-days/demo.html
+++ b/static/usage/v8/datetime/styling/calendar-days/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/styling/calendar-header/demo.html b/static/usage/v8/datetime/styling/calendar-header/demo.html
index 5dfef5ca9bb..df4dbcc692c 100644
--- a/static/usage/v8/datetime/styling/calendar-header/demo.html
+++ b/static/usage/v8/datetime/styling/calendar-header/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/styling/datetime-header/demo.html b/static/usage/v8/datetime/styling/datetime-header/demo.html
index 45155774edf..e1528799b29 100644
--- a/static/usage/v8/datetime/styling/datetime-header/demo.html
+++ b/static/usage/v8/datetime/styling/datetime-header/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/styling/global-theming/demo.html b/static/usage/v8/datetime/styling/global-theming/demo.html
index 9b04a4681f7..df3278ab1d8 100644
--- a/static/usage/v8/datetime/styling/global-theming/demo.html
+++ b/static/usage/v8/datetime/styling/global-theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/styling/wheel-styling/demo.html b/static/usage/v8/datetime/styling/wheel-styling/demo.html
index c19c18a8ac8..a7c4eb0bf81 100644
--- a/static/usage/v8/datetime/styling/wheel-styling/demo.html
+++ b/static/usage/v8/datetime/styling/wheel-styling/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/title/customizing-title/demo.html b/static/usage/v8/datetime/title/customizing-title/demo.html
index d306f6760ad..453ae571e01 100644
--- a/static/usage/v8/datetime/title/customizing-title/demo.html
+++ b/static/usage/v8/datetime/title/customizing-title/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/datetime/title/showing-default-title/demo.html b/static/usage/v8/datetime/title/showing-default-title/demo.html
index 070b5fa2457..155c4776810 100644
--- a/static/usage/v8/datetime/title/showing-default-title/demo.html
+++ b/static/usage/v8/datetime/title/showing-default-title/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/fab/basic/demo.html b/static/usage/v8/fab/basic/demo.html
index b910f385f5d..57762302073 100644
--- a/static/usage/v8/fab/basic/demo.html
+++ b/static/usage/v8/fab/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/fab/before-content/demo.html b/static/usage/v8/fab/before-content/demo.html
index c26615d9e79..db4a8dfcf86 100644
--- a/static/usage/v8/fab/before-content/demo.html
+++ b/static/usage/v8/fab/before-content/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/fab/button-sizing/demo.html b/static/usage/v8/fab/button-sizing/demo.html
index a0775d7f35d..d7321795ce9 100644
--- a/static/usage/v8/fab/button-sizing/demo.html
+++ b/static/usage/v8/fab/button-sizing/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/fab/list-side/demo.html b/static/usage/v8/fab/list-side/demo.html
index bc14e6303f9..d2413791df7 100644
--- a/static/usage/v8/fab/list-side/demo.html
+++ b/static/usage/v8/fab/list-side/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/fab/positioning/demo.html b/static/usage/v8/fab/positioning/demo.html
index 99d5fc60827..0b7da12411c 100644
--- a/static/usage/v8/fab/positioning/demo.html
+++ b/static/usage/v8/fab/positioning/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/fab/safe-area/demo.html b/static/usage/v8/fab/safe-area/demo.html
index f96fb87ddad..bc4ad0e428a 100644
--- a/static/usage/v8/fab/safe-area/demo.html
+++ b/static/usage/v8/fab/safe-area/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/fab/theming/colors/demo.html b/static/usage/v8/fab/theming/colors/demo.html
index a1067ec15ab..a6fc4034450 100644
--- a/static/usage/v8/fab/theming/colors/demo.html
+++ b/static/usage/v8/fab/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/fab/theming/css-custom-properties/demo.html b/static/usage/v8/fab/theming/css-custom-properties/demo.html
index be9e77c21d3..35ccc7e753d 100644
--- a/static/usage/v8/fab/theming/css-custom-properties/demo.html
+++ b/static/usage/v8/fab/theming/css-custom-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/fab/theming/css-shadow-parts/angular/example_component_css.md b/static/usage/v8/fab/theming/css-shadow-parts/angular/example_component_css.md
index 4bb8b96988c..c9d1d804827 100644
--- a/static/usage/v8/fab/theming/css-shadow-parts/angular/example_component_css.md
+++ b/static/usage/v8/fab/theming/css-shadow-parts/angular/example_component_css.md
@@ -2,7 +2,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v8/fab/theming/css-shadow-parts/demo.html b/static/usage/v8/fab/theming/css-shadow-parts/demo.html
index 97e321a6ce5..4f8d57a9bae 100644
--- a/static/usage/v8/fab/theming/css-shadow-parts/demo.html
+++ b/static/usage/v8/fab/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
@@ -13,7 +13,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v8/fab/theming/css-shadow-parts/javascript.md b/static/usage/v8/fab/theming/css-shadow-parts/javascript.md
index 19c1441fe2f..cd18636cadc 100644
--- a/static/usage/v8/fab/theming/css-shadow-parts/javascript.md
+++ b/static/usage/v8/fab/theming/css-shadow-parts/javascript.md
@@ -3,7 +3,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v8/fab/theming/css-shadow-parts/javascript/index_html.md b/static/usage/v8/fab/theming/css-shadow-parts/javascript/index_html.md
index 19c1441fe2f..cd18636cadc 100644
--- a/static/usage/v8/fab/theming/css-shadow-parts/javascript/index_html.md
+++ b/static/usage/v8/fab/theming/css-shadow-parts/javascript/index_html.md
@@ -3,7 +3,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v8/fab/theming/css-shadow-parts/react/main_css.md b/static/usage/v8/fab/theming/css-shadow-parts/react/main_css.md
index 4bb8b96988c..c9d1d804827 100644
--- a/static/usage/v8/fab/theming/css-shadow-parts/react/main_css.md
+++ b/static/usage/v8/fab/theming/css-shadow-parts/react/main_css.md
@@ -2,7 +2,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v8/fab/theming/css-shadow-parts/vue.md b/static/usage/v8/fab/theming/css-shadow-parts/vue.md
index 972bf430cc9..e4706372b9b 100644
--- a/static/usage/v8/fab/theming/css-shadow-parts/vue.md
+++ b/static/usage/v8/fab/theming/css-shadow-parts/vue.md
@@ -27,7 +27,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v8/footer/basic/demo.html b/static/usage/v8/footer/basic/demo.html
index 055cb5622d8..f51d062e2e1 100644
--- a/static/usage/v8/footer/basic/demo.html
+++ b/static/usage/v8/footer/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/footer/custom-scroll-target/demo.html b/static/usage/v8/footer/custom-scroll-target/demo.html
index fc375dedf26..91078f18187 100644
--- a/static/usage/v8/footer/custom-scroll-target/demo.html
+++ b/static/usage/v8/footer/custom-scroll-target/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/footer/fade/demo.html b/static/usage/v8/footer/fade/demo.html
index 116b99dcfff..c3ba5af00fa 100644
--- a/static/usage/v8/footer/fade/demo.html
+++ b/static/usage/v8/footer/fade/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/footer/no-border/demo.html b/static/usage/v8/footer/no-border/demo.html
index 37b67905f89..16aeef8635a 100644
--- a/static/usage/v8/footer/no-border/demo.html
+++ b/static/usage/v8/footer/no-border/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/footer/translucent/demo.html b/static/usage/v8/footer/translucent/demo.html
index b50d39c8a7a..6349c37e712 100644
--- a/static/usage/v8/footer/translucent/demo.html
+++ b/static/usage/v8/footer/translucent/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/gestures/basic/angular/example_component_ts.md b/static/usage/v8/gestures/basic/angular/example_component_ts.md
index 609e8ecc41a..1d7f5da69fc 100644
--- a/static/usage/v8/gestures/basic/angular/example_component_ts.md
+++ b/static/usage/v8/gestures/basic/angular/example_component_ts.md
@@ -15,7 +15,11 @@ export class ExampleComponent {
isCardActive = false;
- constructor(private el: ElementRef, private gestureCtrl: GestureController, private cdRef: ChangeDetectorRef) {}
+ constructor(
+ private el: ElementRef,
+ private gestureCtrl: GestureController,
+ private cdRef: ChangeDetectorRef
+ ) {}
ngAfterViewInit() {
const gesture = this.gestureCtrl.create({
diff --git a/static/usage/v8/gestures/basic/demo.html b/static/usage/v8/gestures/basic/demo.html
index f94dc92540b..92fdea1eb85 100644
--- a/static/usage/v8/gestures/basic/demo.html
+++ b/static/usage/v8/gestures/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/gestures/double-click/angular/example_component_ts.md b/static/usage/v8/gestures/double-click/angular/example_component_ts.md
index 8c963786c16..d9337541932 100644
--- a/static/usage/v8/gestures/double-click/angular/example_component_ts.md
+++ b/static/usage/v8/gestures/double-click/angular/example_component_ts.md
@@ -15,7 +15,10 @@ export class ExampleComponent {
private lastOnStart: number = 0;
private DOUBLE_CLICK_THRESHOLD: number = 500;
- constructor(private el: ElementRef, private gestureCtrl: GestureController) {}
+ constructor(
+ private el: ElementRef,
+ private gestureCtrl: GestureController
+ ) {}
ngAfterViewInit() {
const gesture = this.gestureCtrl.create({
diff --git a/static/usage/v8/gestures/double-click/demo.html b/static/usage/v8/gestures/double-click/demo.html
index 1283c508208..48f5213b3fd 100644
--- a/static/usage/v8/gestures/double-click/demo.html
+++ b/static/usage/v8/gestures/double-click/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/basic/demo.html b/static/usage/v8/grid/basic/demo.html
index 0a8e133b564..f9e20b496a2 100644
--- a/static/usage/v8/grid/basic/demo.html
+++ b/static/usage/v8/grid/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/customizing/column-number/demo.html b/static/usage/v8/grid/customizing/column-number/demo.html
index 17dfe180ed5..333a120df60 100644
--- a/static/usage/v8/grid/customizing/column-number/demo.html
+++ b/static/usage/v8/grid/customizing/column-number/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/customizing/padding/demo.html b/static/usage/v8/grid/customizing/padding/demo.html
index 8e4215e27ba..676b1e7b384 100644
--- a/static/usage/v8/grid/customizing/padding/demo.html
+++ b/static/usage/v8/grid/customizing/padding/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/customizing/width/demo.html b/static/usage/v8/grid/customizing/width/demo.html
index 2d8a8149062..c5058e10206 100644
--- a/static/usage/v8/grid/customizing/width/demo.html
+++ b/static/usage/v8/grid/customizing/width/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/fixed/demo.html b/static/usage/v8/grid/fixed/demo.html
index 719b5cb442e..1ae9daf0059 100644
--- a/static/usage/v8/grid/fixed/demo.html
+++ b/static/usage/v8/grid/fixed/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/horizontal-alignment/demo.html b/static/usage/v8/grid/horizontal-alignment/demo.html
index 520000cd028..2ff735d7acc 100644
--- a/static/usage/v8/grid/horizontal-alignment/demo.html
+++ b/static/usage/v8/grid/horizontal-alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/offset-responsive/demo.html b/static/usage/v8/grid/offset-responsive/demo.html
index 0f8e1952288..082633318dc 100644
--- a/static/usage/v8/grid/offset-responsive/demo.html
+++ b/static/usage/v8/grid/offset-responsive/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/offset/demo.html b/static/usage/v8/grid/offset/demo.html
index 64576c5d1af..0652960d1e6 100644
--- a/static/usage/v8/grid/offset/demo.html
+++ b/static/usage/v8/grid/offset/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/push-pull-responsive/demo.html b/static/usage/v8/grid/push-pull-responsive/demo.html
index 1dd91bddc99..cc9db08e4a7 100644
--- a/static/usage/v8/grid/push-pull-responsive/demo.html
+++ b/static/usage/v8/grid/push-pull-responsive/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/push-pull/demo.html b/static/usage/v8/grid/push-pull/demo.html
index f342c81bc7a..e105c73b596 100644
--- a/static/usage/v8/grid/push-pull/demo.html
+++ b/static/usage/v8/grid/push-pull/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/size-auto/demo.html b/static/usage/v8/grid/size-auto/demo.html
index 1dd06084e4d..ccd01cf38d2 100644
--- a/static/usage/v8/grid/size-auto/demo.html
+++ b/static/usage/v8/grid/size-auto/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/size-responsive/demo.html b/static/usage/v8/grid/size-responsive/demo.html
index 5cddc2bddee..814277cf4eb 100644
--- a/static/usage/v8/grid/size-responsive/demo.html
+++ b/static/usage/v8/grid/size-responsive/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/size/demo.html b/static/usage/v8/grid/size/demo.html
index a5b90d3f79b..5c97199f6a3 100644
--- a/static/usage/v8/grid/size/demo.html
+++ b/static/usage/v8/grid/size/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/grid/vertical-alignment/demo.html b/static/usage/v8/grid/vertical-alignment/demo.html
index 0c96b10cbde..208a499c264 100644
--- a/static/usage/v8/grid/vertical-alignment/demo.html
+++ b/static/usage/v8/grid/vertical-alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/header/basic/demo.html b/static/usage/v8/header/basic/demo.html
index 6421b0bb28c..5472a8c8d75 100644
--- a/static/usage/v8/header/basic/demo.html
+++ b/static/usage/v8/header/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/header/condense/demo.html b/static/usage/v8/header/condense/demo.html
index 8449cc02687..bf1ddd9fc81 100644
--- a/static/usage/v8/header/condense/demo.html
+++ b/static/usage/v8/header/condense/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/header/custom-scroll-target/demo.html b/static/usage/v8/header/custom-scroll-target/demo.html
index d80117e07ea..66cf6cda9c6 100644
--- a/static/usage/v8/header/custom-scroll-target/demo.html
+++ b/static/usage/v8/header/custom-scroll-target/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/header/fade/demo.html b/static/usage/v8/header/fade/demo.html
index d55733d1174..bc532e9fe5d 100644
--- a/static/usage/v8/header/fade/demo.html
+++ b/static/usage/v8/header/fade/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/header/no-border/demo.html b/static/usage/v8/header/no-border/demo.html
index 2792cd36be7..a26e1ce678e 100644
--- a/static/usage/v8/header/no-border/demo.html
+++ b/static/usage/v8/header/no-border/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/header/translucent/demo.html b/static/usage/v8/header/translucent/demo.html
index d1bd35d1a9a..2d13a4e7104 100644
--- a/static/usage/v8/header/translucent/demo.html
+++ b/static/usage/v8/header/translucent/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/icon/basic/demo.html b/static/usage/v8/icon/basic/demo.html
index 6c1c94041b2..07acae25abd 100644
--- a/static/usage/v8/icon/basic/demo.html
+++ b/static/usage/v8/icon/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/img/basic/demo.html b/static/usage/v8/img/basic/demo.html
index 55671cb3ed8..7ec39120790 100644
--- a/static/usage/v8/img/basic/demo.html
+++ b/static/usage/v8/img/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/infinite-scroll/basic/demo.html b/static/usage/v8/infinite-scroll/basic/demo.html
index 941bca7505b..82b44e238c7 100644
--- a/static/usage/v8/infinite-scroll/basic/demo.html
+++ b/static/usage/v8/infinite-scroll/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/infinite-scroll/custom-infinite-scroll-content/demo.html b/static/usage/v8/infinite-scroll/custom-infinite-scroll-content/demo.html
index 0b25042b2ab..4c4c414ad4b 100644
--- a/static/usage/v8/infinite-scroll/custom-infinite-scroll-content/demo.html
+++ b/static/usage/v8/infinite-scroll/custom-infinite-scroll-content/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/infinite-scroll/infinite-scroll-content/demo.html b/static/usage/v8/infinite-scroll/infinite-scroll-content/demo.html
index 941d572aa69..2fe99691afd 100644
--- a/static/usage/v8/infinite-scroll/infinite-scroll-content/demo.html
+++ b/static/usage/v8/infinite-scroll/infinite-scroll-content/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input-otp/basic/demo.html b/static/usage/v8/input-otp/basic/demo.html
index be646a035d6..55eeb7f05bd 100644
--- a/static/usage/v8/input-otp/basic/demo.html
+++ b/static/usage/v8/input-otp/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input-otp/fill/demo.html b/static/usage/v8/input-otp/fill/demo.html
index 423aaee7236..4e2074b8894 100644
--- a/static/usage/v8/input-otp/fill/demo.html
+++ b/static/usage/v8/input-otp/fill/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input-otp/pattern/demo.html b/static/usage/v8/input-otp/pattern/demo.html
index 5019730b2d3..7050c04892c 100644
--- a/static/usage/v8/input-otp/pattern/demo.html
+++ b/static/usage/v8/input-otp/pattern/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input-otp/separators/demo.html b/static/usage/v8/input-otp/separators/demo.html
index a57752e221e..a5f0abf4f3e 100644
--- a/static/usage/v8/input-otp/separators/demo.html
+++ b/static/usage/v8/input-otp/separators/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input-otp/shape/demo.html b/static/usage/v8/input-otp/shape/demo.html
index 62fc1acbf3f..1f5ef95acfd 100644
--- a/static/usage/v8/input-otp/shape/demo.html
+++ b/static/usage/v8/input-otp/shape/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input-otp/size/demo.html b/static/usage/v8/input-otp/size/demo.html
index 3ae1161802b..99e929f8c18 100644
--- a/static/usage/v8/input-otp/size/demo.html
+++ b/static/usage/v8/input-otp/size/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input-otp/states/demo.html b/static/usage/v8/input-otp/states/demo.html
index 838bf479a76..2b47f70f8f2 100644
--- a/static/usage/v8/input-otp/states/demo.html
+++ b/static/usage/v8/input-otp/states/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input-otp/theming/colors/demo.html b/static/usage/v8/input-otp/theming/colors/demo.html
index a233207d980..02c3db35e83 100644
--- a/static/usage/v8/input-otp/theming/colors/demo.html
+++ b/static/usage/v8/input-otp/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input-otp/theming/css-properties/demo.html b/static/usage/v8/input-otp/theming/css-properties/demo.html
index 9fc0093c966..286877625c7 100644
--- a/static/usage/v8/input-otp/theming/css-properties/demo.html
+++ b/static/usage/v8/input-otp/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input-otp/type/demo.html b/static/usage/v8/input-otp/type/demo.html
index 2c73352d1bf..48b30599c17 100644
--- a/static/usage/v8/input-otp/type/demo.html
+++ b/static/usage/v8/input-otp/type/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input-password-toggle/basic/demo.html b/static/usage/v8/input-password-toggle/basic/demo.html
index c6c52b35303..f9acac07ced 100644
--- a/static/usage/v8/input-password-toggle/basic/demo.html
+++ b/static/usage/v8/input-password-toggle/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/basic/demo.html b/static/usage/v8/input/basic/demo.html
index 88571ec2ac7..bc003005f47 100644
--- a/static/usage/v8/input/basic/demo.html
+++ b/static/usage/v8/input/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/clear/demo.html b/static/usage/v8/input/clear/demo.html
index 61ee5401842..f1e30e9ebab 100644
--- a/static/usage/v8/input/clear/demo.html
+++ b/static/usage/v8/input/clear/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/counter-alignment/demo.html b/static/usage/v8/input/counter-alignment/demo.html
index aa0e88ec28a..a633815d19e 100644
--- a/static/usage/v8/input/counter-alignment/demo.html
+++ b/static/usage/v8/input/counter-alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/counter/demo.html b/static/usage/v8/input/counter/demo.html
index 15582e0fbd1..36d310a42dd 100644
--- a/static/usage/v8/input/counter/demo.html
+++ b/static/usage/v8/input/counter/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/fill/demo.html b/static/usage/v8/input/fill/demo.html
index 7bbd26ae242..c5cd017462b 100644
--- a/static/usage/v8/input/fill/demo.html
+++ b/static/usage/v8/input/fill/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/filtering/demo.html b/static/usage/v8/input/filtering/demo.html
index e5f3a58c562..5a3bab8347f 100644
--- a/static/usage/v8/input/filtering/demo.html
+++ b/static/usage/v8/input/filtering/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/helper-error/demo.html b/static/usage/v8/input/helper-error/demo.html
index aeca87c3852..c4208839cd0 100644
--- a/static/usage/v8/input/helper-error/demo.html
+++ b/static/usage/v8/input/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/label-placement/demo.html b/static/usage/v8/input/label-placement/demo.html
index 8c792ebd86a..3b096b8c74b 100644
--- a/static/usage/v8/input/label-placement/demo.html
+++ b/static/usage/v8/input/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/label-slot/demo.html b/static/usage/v8/input/label-slot/demo.html
index fc87d06e2c1..0bff836cfb2 100644
--- a/static/usage/v8/input/label-slot/demo.html
+++ b/static/usage/v8/input/label-slot/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/mask/demo.html b/static/usage/v8/input/mask/demo.html
index 4087dc69324..55d07915934 100644
--- a/static/usage/v8/input/mask/demo.html
+++ b/static/usage/v8/input/mask/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/no-visible-label/demo.html b/static/usage/v8/input/no-visible-label/demo.html
index 6970d161891..00efd19e042 100644
--- a/static/usage/v8/input/no-visible-label/demo.html
+++ b/static/usage/v8/input/no-visible-label/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/set-focus/demo.html b/static/usage/v8/input/set-focus/demo.html
index 62fd9d1821e..4883bc9aaaf 100644
--- a/static/usage/v8/input/set-focus/demo.html
+++ b/static/usage/v8/input/set-focus/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/start-end-slots/demo.html b/static/usage/v8/input/start-end-slots/demo.html
index e8e76a8885d..d657a164c4c 100644
--- a/static/usage/v8/input/start-end-slots/demo.html
+++ b/static/usage/v8/input/start-end-slots/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/theming/colors/demo.html b/static/usage/v8/input/theming/colors/demo.html
index 16c5f9797af..44cb0c99fb6 100644
--- a/static/usage/v8/input/theming/colors/demo.html
+++ b/static/usage/v8/input/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/theming/css-properties/demo.html b/static/usage/v8/input/theming/css-properties/demo.html
index 642515f7c66..5fae64cbdb4 100644
--- a/static/usage/v8/input/theming/css-properties/demo.html
+++ b/static/usage/v8/input/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/input/types/demo.html b/static/usage/v8/input/types/demo.html
index 141dfb2c90f..a809eca9ae7 100644
--- a/static/usage/v8/input/types/demo.html
+++ b/static/usage/v8/input/types/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item-divider/basic/demo.html b/static/usage/v8/item-divider/basic/demo.html
index c00d3658bf5..dbfa61d3742 100644
--- a/static/usage/v8/item-divider/basic/demo.html
+++ b/static/usage/v8/item-divider/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item-divider/theming/colors/demo.html b/static/usage/v8/item-divider/theming/colors/demo.html
index c7cffbee565..60396b62f49 100644
--- a/static/usage/v8/item-divider/theming/colors/demo.html
+++ b/static/usage/v8/item-divider/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item-divider/theming/css-properties/demo.html b/static/usage/v8/item-divider/theming/css-properties/demo.html
index 400e32f35d6..445198a379a 100644
--- a/static/usage/v8/item-divider/theming/css-properties/demo.html
+++ b/static/usage/v8/item-divider/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item-group/basic/demo.html b/static/usage/v8/item-group/basic/demo.html
index a1e68490d32..c834a919764 100644
--- a/static/usage/v8/item-group/basic/demo.html
+++ b/static/usage/v8/item-group/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item-group/sliding-items/demo.html b/static/usage/v8/item-group/sliding-items/demo.html
index 3b712ee6bc0..d9891615ce4 100644
--- a/static/usage/v8/item-group/sliding-items/demo.html
+++ b/static/usage/v8/item-group/sliding-items/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item-sliding/basic/demo.html b/static/usage/v8/item-sliding/basic/demo.html
index ef1c3abd925..46bb8b664bb 100644
--- a/static/usage/v8/item-sliding/basic/demo.html
+++ b/static/usage/v8/item-sliding/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item-sliding/expandable/demo.html b/static/usage/v8/item-sliding/expandable/demo.html
index c206827a1db..2fa3b65a769 100644
--- a/static/usage/v8/item-sliding/expandable/demo.html
+++ b/static/usage/v8/item-sliding/expandable/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item-sliding/icons/demo.html b/static/usage/v8/item-sliding/icons/demo.html
index 0940635e008..9e0aa2ca7ab 100644
--- a/static/usage/v8/item-sliding/icons/demo.html
+++ b/static/usage/v8/item-sliding/icons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/basic/demo.html b/static/usage/v8/item/basic/demo.html
index 01611f42d94..e59a603bf27 100644
--- a/static/usage/v8/item/basic/demo.html
+++ b/static/usage/v8/item/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/buttons/demo.html b/static/usage/v8/item/buttons/demo.html
index 28ba1772ab2..3c047a7ece5 100644
--- a/static/usage/v8/item/buttons/demo.html
+++ b/static/usage/v8/item/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/clickable/demo.html b/static/usage/v8/item/clickable/demo.html
index 8d5d32efebc..756e505a37b 100644
--- a/static/usage/v8/item/clickable/demo.html
+++ b/static/usage/v8/item/clickable/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/content-types/actions/demo.html b/static/usage/v8/item/content-types/actions/demo.html
index 342ed80a206..fd3f5b6a923 100644
--- a/static/usage/v8/item/content-types/actions/demo.html
+++ b/static/usage/v8/item/content-types/actions/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/content-types/controls/demo.html b/static/usage/v8/item/content-types/controls/demo.html
index 84d466383f3..78123f3ef1f 100644
--- a/static/usage/v8/item/content-types/controls/demo.html
+++ b/static/usage/v8/item/content-types/controls/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/content-types/metadata/demo.html b/static/usage/v8/item/content-types/metadata/demo.html
index 747744f9b5e..20bdc6d114e 100644
--- a/static/usage/v8/item/content-types/metadata/demo.html
+++ b/static/usage/v8/item/content-types/metadata/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/content-types/supporting-visuals/demo.html b/static/usage/v8/item/content-types/supporting-visuals/demo.html
index 9d680f21e31..4360eecc7ba 100644
--- a/static/usage/v8/item/content-types/supporting-visuals/demo.html
+++ b/static/usage/v8/item/content-types/supporting-visuals/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/content-types/text/demo.html b/static/usage/v8/item/content-types/text/demo.html
index 4245b0d0f78..96a0f896246 100644
--- a/static/usage/v8/item/content-types/text/demo.html
+++ b/static/usage/v8/item/content-types/text/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/detail-arrows/demo.html b/static/usage/v8/item/detail-arrows/demo.html
index b4f705dbe80..443cb1435d8 100644
--- a/static/usage/v8/item/detail-arrows/demo.html
+++ b/static/usage/v8/item/detail-arrows/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/inputs/demo.html b/static/usage/v8/item/inputs/demo.html
index d686f651400..62d9c8537d4 100644
--- a/static/usage/v8/item/inputs/demo.html
+++ b/static/usage/v8/item/inputs/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/lines/demo.html b/static/usage/v8/item/lines/demo.html
index 21f2141c8f9..78a78b367b8 100644
--- a/static/usage/v8/item/lines/demo.html
+++ b/static/usage/v8/item/lines/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/media/demo.html b/static/usage/v8/item/media/demo.html
index bfbe7dfc541..aba7b79f590 100644
--- a/static/usage/v8/item/media/demo.html
+++ b/static/usage/v8/item/media/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/theming/colors/demo.html b/static/usage/v8/item/theming/colors/demo.html
index 09ee448979d..ee92af99467 100644
--- a/static/usage/v8/item/theming/colors/demo.html
+++ b/static/usage/v8/item/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/theming/css-properties/demo.html b/static/usage/v8/item/theming/css-properties/demo.html
index 420b41fd19b..c53a7a413c5 100644
--- a/static/usage/v8/item/theming/css-properties/demo.html
+++ b/static/usage/v8/item/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/theming/css-shadow-parts/demo.html b/static/usage/v8/item/theming/css-shadow-parts/demo.html
index a655e9bed5c..81159a3ff2d 100644
--- a/static/usage/v8/item/theming/css-shadow-parts/demo.html
+++ b/static/usage/v8/item/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/item/theming/input-highlight/demo.html b/static/usage/v8/item/theming/input-highlight/demo.html
index b939ff6d0aa..0c4ebc3878d 100644
--- a/static/usage/v8/item/theming/input-highlight/demo.html
+++ b/static/usage/v8/item/theming/input-highlight/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/keyboard/enterkeyhint/demo.html b/static/usage/v8/keyboard/enterkeyhint/demo.html
index 8d23e90a757..8845b38736e 100644
--- a/static/usage/v8/keyboard/enterkeyhint/demo.html
+++ b/static/usage/v8/keyboard/enterkeyhint/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/keyboard/inputmode/demo.html b/static/usage/v8/keyboard/inputmode/demo.html
index 79ed8b2ff02..2290d8e29d9 100644
--- a/static/usage/v8/keyboard/inputmode/demo.html
+++ b/static/usage/v8/keyboard/inputmode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/label/basic/demo.html b/static/usage/v8/label/basic/demo.html
index ae7d221320a..eaeda39dc89 100644
--- a/static/usage/v8/label/basic/demo.html
+++ b/static/usage/v8/label/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/label/input/demo.html b/static/usage/v8/label/input/demo.html
index 8bdfa8729a7..77c902660bf 100644
--- a/static/usage/v8/label/input/demo.html
+++ b/static/usage/v8/label/input/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/label/item/demo.html b/static/usage/v8/label/item/demo.html
index 55e8eebef74..49cb13d9c2b 100644
--- a/static/usage/v8/label/item/demo.html
+++ b/static/usage/v8/label/item/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/label/theming/colors/demo.html b/static/usage/v8/label/theming/colors/demo.html
index ac45da4d902..fc123ae3356 100644
--- a/static/usage/v8/label/theming/colors/demo.html
+++ b/static/usage/v8/label/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/layout/dynamic-font-scaling/demo.html b/static/usage/v8/layout/dynamic-font-scaling/demo.html
index 5247c5cc2b3..3f92a9dca84 100644
--- a/static/usage/v8/layout/dynamic-font-scaling/demo.html
+++ b/static/usage/v8/layout/dynamic-font-scaling/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/list-header/basic/demo.html b/static/usage/v8/list-header/basic/demo.html
index e8e8afffcba..aec9c5132f3 100644
--- a/static/usage/v8/list-header/basic/demo.html
+++ b/static/usage/v8/list-header/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/list-header/buttons/demo.html b/static/usage/v8/list-header/buttons/demo.html
index be49efea0a5..dc105eaa663 100644
--- a/static/usage/v8/list-header/buttons/demo.html
+++ b/static/usage/v8/list-header/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/list-header/lines/demo.html b/static/usage/v8/list-header/lines/demo.html
index 7bb3dc185ba..9b06b6a64f7 100644
--- a/static/usage/v8/list-header/lines/demo.html
+++ b/static/usage/v8/list-header/lines/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/list-header/theming/colors/demo.html b/static/usage/v8/list-header/theming/colors/demo.html
index 907a43ff414..ffd9570fd2e 100644
--- a/static/usage/v8/list-header/theming/colors/demo.html
+++ b/static/usage/v8/list-header/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/list-header/theming/css-properties/demo.html b/static/usage/v8/list-header/theming/css-properties/demo.html
index 2ff7ab62e50..4c77f6df7a8 100644
--- a/static/usage/v8/list-header/theming/css-properties/demo.html
+++ b/static/usage/v8/list-header/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/list/basic/demo.html b/static/usage/v8/list/basic/demo.html
index 220eb7a2a81..4b490018135 100644
--- a/static/usage/v8/list/basic/demo.html
+++ b/static/usage/v8/list/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/list/inset/demo.html b/static/usage/v8/list/inset/demo.html
index 7944fd95163..ec33a568aae 100644
--- a/static/usage/v8/list/inset/demo.html
+++ b/static/usage/v8/list/inset/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/list/lines/demo.html b/static/usage/v8/list/lines/demo.html
index 306e202d617..0d4a3dc4855 100644
--- a/static/usage/v8/list/lines/demo.html
+++ b/static/usage/v8/list/lines/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/loading/controller/demo.html b/static/usage/v8/loading/controller/demo.html
index 2b87474931d..d4725946dd6 100644
--- a/static/usage/v8/loading/controller/demo.html
+++ b/static/usage/v8/loading/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/loading/inline/demo.html b/static/usage/v8/loading/inline/demo.html
index b853999f158..cc97aa89744 100644
--- a/static/usage/v8/loading/inline/demo.html
+++ b/static/usage/v8/loading/inline/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/loading/spinners/demo.html b/static/usage/v8/loading/spinners/demo.html
index d85d0c68d7a..d499c41337f 100644
--- a/static/usage/v8/loading/spinners/demo.html
+++ b/static/usage/v8/loading/spinners/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/loading/theming/demo.html b/static/usage/v8/loading/theming/demo.html
index 0fe11b32008..9d9c92837be 100644
--- a/static/usage/v8/loading/theming/demo.html
+++ b/static/usage/v8/loading/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/menu/basic/demo.html b/static/usage/v8/menu/basic/demo.html
index a642486467b..42185e14e65 100644
--- a/static/usage/v8/menu/basic/demo.html
+++ b/static/usage/v8/menu/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/menu/multiple/demo.html b/static/usage/v8/menu/multiple/demo.html
index fe2029b7514..bcc4af16df3 100644
--- a/static/usage/v8/menu/multiple/demo.html
+++ b/static/usage/v8/menu/multiple/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/menu/sides/demo.html b/static/usage/v8/menu/sides/demo.html
index 43033b5d018..0493a8b0a6e 100644
--- a/static/usage/v8/menu/sides/demo.html
+++ b/static/usage/v8/menu/sides/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/menu/theming/demo.html b/static/usage/v8/menu/theming/demo.html
index a4d48cd2a3b..e3e21ccce3e 100644
--- a/static/usage/v8/menu/theming/demo.html
+++ b/static/usage/v8/menu/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/menu/toggle/demo.html b/static/usage/v8/menu/toggle/demo.html
index 7ac349921f8..dd201a0d302 100644
--- a/static/usage/v8/menu/toggle/demo.html
+++ b/static/usage/v8/menu/toggle/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/menu/type/demo.html b/static/usage/v8/menu/type/demo.html
index 77f50fa39d5..b33b6db5b72 100644
--- a/static/usage/v8/menu/type/demo.html
+++ b/static/usage/v8/menu/type/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/menu/type/react.md b/static/usage/v8/menu/type/react.md
index af341a0e753..d68a04a7ca9 100644
--- a/static/usage/v8/menu/type/react.md
+++ b/static/usage/v8/menu/type/react.md
@@ -61,7 +61,8 @@ function Example() {
push
-
+ {' '}
+
Click to open the menu
diff --git a/static/usage/v8/modal/can-dismiss/boolean/demo.html b/static/usage/v8/modal/can-dismiss/boolean/demo.html
index 530926ccee0..22c9e163e3e 100644
--- a/static/usage/v8/modal/can-dismiss/boolean/demo.html
+++ b/static/usage/v8/modal/can-dismiss/boolean/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/can-dismiss/child-state/demo.html b/static/usage/v8/modal/can-dismiss/child-state/demo.html
index 2e2dc6def50..25de1b64103 100644
--- a/static/usage/v8/modal/can-dismiss/child-state/demo.html
+++ b/static/usage/v8/modal/can-dismiss/child-state/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/can-dismiss/function/demo.html b/static/usage/v8/modal/can-dismiss/function/demo.html
index 90339b5fb85..72968a361e5 100644
--- a/static/usage/v8/modal/can-dismiss/function/demo.html
+++ b/static/usage/v8/modal/can-dismiss/function/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/can-dismiss/prevent-swipe-to-close/demo.html b/static/usage/v8/modal/can-dismiss/prevent-swipe-to-close/demo.html
index 74ffbb0112d..7287f18042d 100644
--- a/static/usage/v8/modal/can-dismiss/prevent-swipe-to-close/demo.html
+++ b/static/usage/v8/modal/can-dismiss/prevent-swipe-to-close/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/card/basic/demo.html b/static/usage/v8/modal/card/basic/demo.html
index 82fd7fbff9e..9f9ae94519e 100644
--- a/static/usage/v8/modal/card/basic/demo.html
+++ b/static/usage/v8/modal/card/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/controller/demo.html b/static/usage/v8/modal/controller/demo.html
index c053be9dd28..3baf6f99626 100644
--- a/static/usage/v8/modal/controller/demo.html
+++ b/static/usage/v8/modal/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/custom-dialogs/demo.html b/static/usage/v8/modal/custom-dialogs/demo.html
index 4719e1993e0..6ab39b2e5b2 100644
--- a/static/usage/v8/modal/custom-dialogs/demo.html
+++ b/static/usage/v8/modal/custom-dialogs/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/drag-move-event/demo.html b/static/usage/v8/modal/drag-move-event/demo.html
index ec285ca79ed..3046933f694 100644
--- a/static/usage/v8/modal/drag-move-event/demo.html
+++ b/static/usage/v8/modal/drag-move-event/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/drag-start-end-events/demo.html b/static/usage/v8/modal/drag-start-end-events/demo.html
index 5e6f2aac600..aef1657b3bc 100644
--- a/static/usage/v8/modal/drag-start-end-events/demo.html
+++ b/static/usage/v8/modal/drag-start-end-events/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/inline/basic/demo.html b/static/usage/v8/modal/inline/basic/demo.html
index 48bdf4053be..904dafb58e2 100644
--- a/static/usage/v8/modal/inline/basic/demo.html
+++ b/static/usage/v8/modal/inline/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/inline/is-open/demo.html b/static/usage/v8/modal/inline/is-open/demo.html
index 3365b9f2482..1bc621ef843 100644
--- a/static/usage/v8/modal/inline/is-open/demo.html
+++ b/static/usage/v8/modal/inline/is-open/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/performance/mount/demo.html b/static/usage/v8/modal/performance/mount/demo.html
index 5fdff0d6c82..66791b740db 100644
--- a/static/usage/v8/modal/performance/mount/demo.html
+++ b/static/usage/v8/modal/performance/mount/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/sheet/auto-height/demo.html b/static/usage/v8/modal/sheet/auto-height/demo.html
index 7a66c36b6f6..7b9ccd76ae0 100644
--- a/static/usage/v8/modal/sheet/auto-height/demo.html
+++ b/static/usage/v8/modal/sheet/auto-height/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/sheet/background-content/demo.html b/static/usage/v8/modal/sheet/background-content/demo.html
index 9ff5f5c9a49..c958aac2dfa 100644
--- a/static/usage/v8/modal/sheet/background-content/demo.html
+++ b/static/usage/v8/modal/sheet/background-content/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/sheet/basic/demo.html b/static/usage/v8/modal/sheet/basic/demo.html
index 06de2ff25d8..82137262516 100644
--- a/static/usage/v8/modal/sheet/basic/demo.html
+++ b/static/usage/v8/modal/sheet/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/sheet/expand-to-scroll/demo.html b/static/usage/v8/modal/sheet/expand-to-scroll/demo.html
index 79516adaef7..4a77328ba92 100644
--- a/static/usage/v8/modal/sheet/expand-to-scroll/demo.html
+++ b/static/usage/v8/modal/sheet/expand-to-scroll/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/sheet/handle-behavior/demo.html b/static/usage/v8/modal/sheet/handle-behavior/demo.html
index c4a097ffbfc..c13ede0fce4 100644
--- a/static/usage/v8/modal/sheet/handle-behavior/demo.html
+++ b/static/usage/v8/modal/sheet/handle-behavior/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/styling/animations/demo.html b/static/usage/v8/modal/styling/animations/demo.html
index f1a5e5674a3..d1362680c27 100644
--- a/static/usage/v8/modal/styling/animations/demo.html
+++ b/static/usage/v8/modal/styling/animations/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/modal/styling/theming/demo.html b/static/usage/v8/modal/styling/theming/demo.html
index 3e0c9c17e0b..45923eb4b45 100644
--- a/static/usage/v8/modal/styling/theming/demo.html
+++ b/static/usage/v8/modal/styling/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/nav/modal-navigation/demo.html b/static/usage/v8/nav/modal-navigation/demo.html
index e902a709f11..5201c193066 100644
--- a/static/usage/v8/nav/modal-navigation/demo.html
+++ b/static/usage/v8/nav/modal-navigation/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/nav/nav-link/demo.html b/static/usage/v8/nav/nav-link/demo.html
index 810f5d749c7..86064ea0a8c 100644
--- a/static/usage/v8/nav/nav-link/demo.html
+++ b/static/usage/v8/nav/nav-link/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/note/basic/demo.html b/static/usage/v8/note/basic/demo.html
index 8bbe5cf3495..eacc307adb4 100644
--- a/static/usage/v8/note/basic/demo.html
+++ b/static/usage/v8/note/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/note/item/demo.html b/static/usage/v8/note/item/demo.html
index 93073294937..3826ee93733 100644
--- a/static/usage/v8/note/item/demo.html
+++ b/static/usage/v8/note/item/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/note/theming/colors/demo.html b/static/usage/v8/note/theming/colors/demo.html
index e816dfb1d34..a39a7dcdea7 100644
--- a/static/usage/v8/note/theming/colors/demo.html
+++ b/static/usage/v8/note/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/note/theming/css-properties/demo.html b/static/usage/v8/note/theming/css-properties/demo.html
index 2d477569a4e..3b734635ed1 100644
--- a/static/usage/v8/note/theming/css-properties/demo.html
+++ b/static/usage/v8/note/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/picker-legacy/controller/demo.html b/static/usage/v8/picker-legacy/controller/demo.html
index 2c584d6bec0..dffe2a1c6ef 100644
--- a/static/usage/v8/picker-legacy/controller/demo.html
+++ b/static/usage/v8/picker-legacy/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/picker-legacy/inline/isOpen/demo.html b/static/usage/v8/picker-legacy/inline/isOpen/demo.html
index c3bae2a860f..ea70b8ec9ba 100644
--- a/static/usage/v8/picker-legacy/inline/isOpen/demo.html
+++ b/static/usage/v8/picker-legacy/inline/isOpen/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/picker-legacy/inline/trigger/demo.html b/static/usage/v8/picker-legacy/inline/trigger/demo.html
index 0e2328c6768..b048c9be20c 100644
--- a/static/usage/v8/picker-legacy/inline/trigger/demo.html
+++ b/static/usage/v8/picker-legacy/inline/trigger/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/picker-legacy/multiple-column/demo.html b/static/usage/v8/picker-legacy/multiple-column/demo.html
index 9642d8dc9d8..9066bbc9ec3 100644
--- a/static/usage/v8/picker-legacy/multiple-column/demo.html
+++ b/static/usage/v8/picker-legacy/multiple-column/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/picker/basic/demo.html b/static/usage/v8/picker/basic/demo.html
index d4af8c6924c..0a29e8ff63b 100644
--- a/static/usage/v8/picker/basic/demo.html
+++ b/static/usage/v8/picker/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/picker/modal/demo.html b/static/usage/v8/picker/modal/demo.html
index cee2bc082d0..fe115e1ff9c 100644
--- a/static/usage/v8/picker/modal/demo.html
+++ b/static/usage/v8/picker/modal/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/picker/prefix-suffix/demo.html b/static/usage/v8/picker/prefix-suffix/demo.html
index 2f2243cce40..cdd8dd8024c 100644
--- a/static/usage/v8/picker/prefix-suffix/demo.html
+++ b/static/usage/v8/picker/prefix-suffix/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/picker/theming/css-properties/demo.html b/static/usage/v8/picker/theming/css-properties/demo.html
index 556a0e02ab8..68f041a43b5 100644
--- a/static/usage/v8/picker/theming/css-properties/demo.html
+++ b/static/usage/v8/picker/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/popover/customization/positioning/demo.html b/static/usage/v8/popover/customization/positioning/demo.html
index 6b7408dcb39..f6e3f2b9b56 100644
--- a/static/usage/v8/popover/customization/positioning/demo.html
+++ b/static/usage/v8/popover/customization/positioning/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/popover/customization/sizing/demo.html b/static/usage/v8/popover/customization/sizing/demo.html
index 03e3c937e76..592cbb71fdc 100644
--- a/static/usage/v8/popover/customization/sizing/demo.html
+++ b/static/usage/v8/popover/customization/sizing/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/popover/customization/styling/demo.html b/static/usage/v8/popover/customization/styling/demo.html
index cae38b8fcc7..98786a369b6 100644
--- a/static/usage/v8/popover/customization/styling/demo.html
+++ b/static/usage/v8/popover/customization/styling/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/popover/nested/demo.html b/static/usage/v8/popover/nested/demo.html
index 4994e4a28d2..cd3f0d06797 100644
--- a/static/usage/v8/popover/nested/demo.html
+++ b/static/usage/v8/popover/nested/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/popover/performance/mount/demo.html b/static/usage/v8/popover/performance/mount/demo.html
index 5d7abac1ac0..76b75ab6ef9 100644
--- a/static/usage/v8/popover/performance/mount/demo.html
+++ b/static/usage/v8/popover/performance/mount/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/popover/presenting/controller/demo.html b/static/usage/v8/popover/presenting/controller/demo.html
index 15d30b05f33..7edb562f9cd 100644
--- a/static/usage/v8/popover/presenting/controller/demo.html
+++ b/static/usage/v8/popover/presenting/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/popover/presenting/inline-isopen/demo.html b/static/usage/v8/popover/presenting/inline-isopen/demo.html
index 0a82653d61f..7db009df8bd 100644
--- a/static/usage/v8/popover/presenting/inline-isopen/demo.html
+++ b/static/usage/v8/popover/presenting/inline-isopen/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/popover/presenting/inline-trigger/demo.html b/static/usage/v8/popover/presenting/inline-trigger/demo.html
index 4a9b1ea88ca..af620711c35 100644
--- a/static/usage/v8/popover/presenting/inline-trigger/demo.html
+++ b/static/usage/v8/popover/presenting/inline-trigger/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/progress-bar/buffer/demo.html b/static/usage/v8/progress-bar/buffer/demo.html
index 8ba7550d8f3..e51e4162700 100644
--- a/static/usage/v8/progress-bar/buffer/demo.html
+++ b/static/usage/v8/progress-bar/buffer/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/progress-bar/determinate/demo.html b/static/usage/v8/progress-bar/determinate/demo.html
index 70c808a8e88..ccfec7e7e81 100644
--- a/static/usage/v8/progress-bar/determinate/demo.html
+++ b/static/usage/v8/progress-bar/determinate/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/progress-bar/indeterminate/demo.html b/static/usage/v8/progress-bar/indeterminate/demo.html
index c949ca3088d..564dbc5dc7c 100644
--- a/static/usage/v8/progress-bar/indeterminate/demo.html
+++ b/static/usage/v8/progress-bar/indeterminate/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/progress-bar/theming/colors/demo.html b/static/usage/v8/progress-bar/theming/colors/demo.html
index 53161f597a2..3296f5a21bf 100644
--- a/static/usage/v8/progress-bar/theming/colors/demo.html
+++ b/static/usage/v8/progress-bar/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/progress-bar/theming/css-properties/demo.html b/static/usage/v8/progress-bar/theming/css-properties/demo.html
index d72e6f2b724..a36632afd56 100644
--- a/static/usage/v8/progress-bar/theming/css-properties/demo.html
+++ b/static/usage/v8/progress-bar/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/progress-bar/theming/css-shadow-parts/demo.html b/static/usage/v8/progress-bar/theming/css-shadow-parts/demo.html
index 1afb6f5c24d..a2a2a88f05f 100644
--- a/static/usage/v8/progress-bar/theming/css-shadow-parts/demo.html
+++ b/static/usage/v8/progress-bar/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/radio/alignment/demo.html b/static/usage/v8/radio/alignment/demo.html
index 74415a2e592..aa37fae28c3 100644
--- a/static/usage/v8/radio/alignment/demo.html
+++ b/static/usage/v8/radio/alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/radio/basic/demo.html b/static/usage/v8/radio/basic/demo.html
index 83090b6fbb4..ef9f9dabfdf 100644
--- a/static/usage/v8/radio/basic/demo.html
+++ b/static/usage/v8/radio/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/radio/empty-selection/demo.html b/static/usage/v8/radio/empty-selection/demo.html
index b56d2fd929c..a747397781a 100644
--- a/static/usage/v8/radio/empty-selection/demo.html
+++ b/static/usage/v8/radio/empty-selection/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/radio/helper-error/demo.html b/static/usage/v8/radio/helper-error/demo.html
index 7a8d6abfccf..61bfd8e22a2 100644
--- a/static/usage/v8/radio/helper-error/demo.html
+++ b/static/usage/v8/radio/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/radio/justify/demo.html b/static/usage/v8/radio/justify/demo.html
index d5325dc4c0a..960a4ac80a4 100644
--- a/static/usage/v8/radio/justify/demo.html
+++ b/static/usage/v8/radio/justify/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/radio/label-placement/demo.html b/static/usage/v8/radio/label-placement/demo.html
index c14409d3a9e..f5d27913cda 100644
--- a/static/usage/v8/radio/label-placement/demo.html
+++ b/static/usage/v8/radio/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/radio/label-wrap/demo.html b/static/usage/v8/radio/label-wrap/demo.html
index 6f8f030bcf2..0c45718581a 100644
--- a/static/usage/v8/radio/label-wrap/demo.html
+++ b/static/usage/v8/radio/label-wrap/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/radio/theming/colors/demo.html b/static/usage/v8/radio/theming/colors/demo.html
index 65f86a3518b..3d2d6674e54 100644
--- a/static/usage/v8/radio/theming/colors/demo.html
+++ b/static/usage/v8/radio/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/radio/theming/css-properties/demo.html b/static/usage/v8/radio/theming/css-properties/demo.html
index 5615a8aafd8..e0150197846 100644
--- a/static/usage/v8/radio/theming/css-properties/demo.html
+++ b/static/usage/v8/radio/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/radio/theming/css-shadow-parts/demo.html b/static/usage/v8/radio/theming/css-shadow-parts/demo.html
index 4a82c7ac384..6264bf3d98a 100644
--- a/static/usage/v8/radio/theming/css-shadow-parts/demo.html
+++ b/static/usage/v8/radio/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/radio/using-comparewith/demo.html b/static/usage/v8/radio/using-comparewith/demo.html
index 39805ea0b92..88386abb63a 100644
--- a/static/usage/v8/radio/using-comparewith/demo.html
+++ b/static/usage/v8/radio/using-comparewith/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/basic/demo.html b/static/usage/v8/range/basic/demo.html
index a3290fae5b7..64d5364da14 100644
--- a/static/usage/v8/range/basic/demo.html
+++ b/static/usage/v8/range/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/dual-knobs/demo.html b/static/usage/v8/range/dual-knobs/demo.html
index 693a4ad1523..108eebed3ed 100644
--- a/static/usage/v8/range/dual-knobs/demo.html
+++ b/static/usage/v8/range/dual-knobs/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/ion-change-event/demo.html b/static/usage/v8/range/ion-change-event/demo.html
index c5fcf4f7dc7..5e15567429a 100644
--- a/static/usage/v8/range/ion-change-event/demo.html
+++ b/static/usage/v8/range/ion-change-event/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/ion-knob-move-event/demo.html b/static/usage/v8/range/ion-knob-move-event/demo.html
index 06c9715e5a9..1db362b4bec 100644
--- a/static/usage/v8/range/ion-knob-move-event/demo.html
+++ b/static/usage/v8/range/ion-knob-move-event/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/label-slot/demo.html b/static/usage/v8/range/label-slot/demo.html
index 8233280e6e6..d054b955ee2 100644
--- a/static/usage/v8/range/label-slot/demo.html
+++ b/static/usage/v8/range/label-slot/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/labels/demo.html b/static/usage/v8/range/labels/demo.html
index 89a7403d9d4..88669012a33 100644
--- a/static/usage/v8/range/labels/demo.html
+++ b/static/usage/v8/range/labels/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/no-visible-label/demo.html b/static/usage/v8/range/no-visible-label/demo.html
index a3290fae5b7..64d5364da14 100644
--- a/static/usage/v8/range/no-visible-label/demo.html
+++ b/static/usage/v8/range/no-visible-label/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/pins/demo.html b/static/usage/v8/range/pins/demo.html
index e1a278802c4..df7e9ef51d4 100644
--- a/static/usage/v8/range/pins/demo.html
+++ b/static/usage/v8/range/pins/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/slots/demo.html b/static/usage/v8/range/slots/demo.html
index e307600e28d..fcfb4d6e0e3 100644
--- a/static/usage/v8/range/slots/demo.html
+++ b/static/usage/v8/range/slots/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/snapping-ticks/demo.html b/static/usage/v8/range/snapping-ticks/demo.html
index d9d3ac5ada4..8b5070f1906 100644
--- a/static/usage/v8/range/snapping-ticks/demo.html
+++ b/static/usage/v8/range/snapping-ticks/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/theming/css-properties/demo.html b/static/usage/v8/range/theming/css-properties/demo.html
index c451db4e0c0..35339aba361 100644
--- a/static/usage/v8/range/theming/css-properties/demo.html
+++ b/static/usage/v8/range/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/range/theming/css-shadow-parts/demo.html b/static/usage/v8/range/theming/css-shadow-parts/demo.html
index bfa8f9e3ed6..3f708b191eb 100644
--- a/static/usage/v8/range/theming/css-shadow-parts/demo.html
+++ b/static/usage/v8/range/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/refresher/advanced/demo.html b/static/usage/v8/refresher/advanced/demo.html
index 289e6637457..a3175799ff1 100644
--- a/static/usage/v8/refresher/advanced/demo.html
+++ b/static/usage/v8/refresher/advanced/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/refresher/basic/demo.html b/static/usage/v8/refresher/basic/demo.html
index c08439a7d37..d209beb2743 100644
--- a/static/usage/v8/refresher/basic/demo.html
+++ b/static/usage/v8/refresher/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/refresher/custom-content/demo.html b/static/usage/v8/refresher/custom-content/demo.html
index 016f4a94ac4..a076c1754ca 100644
--- a/static/usage/v8/refresher/custom-content/demo.html
+++ b/static/usage/v8/refresher/custom-content/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/refresher/custom-scroll-target/demo.html b/static/usage/v8/refresher/custom-scroll-target/demo.html
index ab49a64fdc5..c10337c89a0 100644
--- a/static/usage/v8/refresher/custom-scroll-target/demo.html
+++ b/static/usage/v8/refresher/custom-scroll-target/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/refresher/pull-properties/demo.html b/static/usage/v8/refresher/pull-properties/demo.html
index 8cb12c8d4dc..9a17d5aeb98 100644
--- a/static/usage/v8/refresher/pull-properties/demo.html
+++ b/static/usage/v8/refresher/pull-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/refresher/pull-start-end-events/demo.html b/static/usage/v8/refresher/pull-start-end-events/demo.html
index a246d308ec6..87ad03bcdd3 100644
--- a/static/usage/v8/refresher/pull-start-end-events/demo.html
+++ b/static/usage/v8/refresher/pull-start-end-events/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/reorder/basic/demo.html b/static/usage/v8/reorder/basic/demo.html
index 7b8abca0b96..064e76755ca 100644
--- a/static/usage/v8/reorder/basic/demo.html
+++ b/static/usage/v8/reorder/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/reorder/custom-icon/demo.html b/static/usage/v8/reorder/custom-icon/demo.html
index b089815bd07..d600fdaf354 100644
--- a/static/usage/v8/reorder/custom-icon/demo.html
+++ b/static/usage/v8/reorder/custom-icon/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/reorder/custom-scroll-target/demo.html b/static/usage/v8/reorder/custom-scroll-target/demo.html
index fb66a69e0ce..5c2d22cc110 100644
--- a/static/usage/v8/reorder/custom-scroll-target/demo.html
+++ b/static/usage/v8/reorder/custom-scroll-target/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/reorder/reorder-move-event/demo.html b/static/usage/v8/reorder/reorder-move-event/demo.html
index 8ebcd5984ae..e4f5eb946e7 100644
--- a/static/usage/v8/reorder/reorder-move-event/demo.html
+++ b/static/usage/v8/reorder/reorder-move-event/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/reorder/reorder-start-end-events/demo.html b/static/usage/v8/reorder/reorder-start-end-events/demo.html
index 72e214b83fe..824626bd9e7 100644
--- a/static/usage/v8/reorder/reorder-start-end-events/demo.html
+++ b/static/usage/v8/reorder/reorder-start-end-events/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/reorder/toggling-disabled/demo.html b/static/usage/v8/reorder/toggling-disabled/demo.html
index 4b5dc99e6e8..10e08a0c25d 100644
--- a/static/usage/v8/reorder/toggling-disabled/demo.html
+++ b/static/usage/v8/reorder/toggling-disabled/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/reorder/updating-data/demo.html b/static/usage/v8/reorder/updating-data/demo.html
index a01deb9600c..569e0b5e816 100644
--- a/static/usage/v8/reorder/updating-data/demo.html
+++ b/static/usage/v8/reorder/updating-data/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/reorder/wrapper/demo.html b/static/usage/v8/reorder/wrapper/demo.html
index e4520630556..a63776a70cb 100644
--- a/static/usage/v8/reorder/wrapper/demo.html
+++ b/static/usage/v8/reorder/wrapper/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/ripple-effect/basic/demo.html b/static/usage/v8/ripple-effect/basic/demo.html
index 6f5a6be89a1..71751bfe999 100644
--- a/static/usage/v8/ripple-effect/basic/demo.html
+++ b/static/usage/v8/ripple-effect/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/ripple-effect/customizing/demo.html b/static/usage/v8/ripple-effect/customizing/demo.html
index 044155f9dec..fd8cb5973ff 100644
--- a/static/usage/v8/ripple-effect/customizing/demo.html
+++ b/static/usage/v8/ripple-effect/customizing/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/ripple-effect/type/demo.html b/static/usage/v8/ripple-effect/type/demo.html
index 4c6b3486bf2..aa48d5b1323 100644
--- a/static/usage/v8/ripple-effect/type/demo.html
+++ b/static/usage/v8/ripple-effect/type/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/router/basic/demo.html b/static/usage/v8/router/basic/demo.html
index f617f60ea75..c6589cd5526 100644
--- a/static/usage/v8/router/basic/demo.html
+++ b/static/usage/v8/router/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/searchbar/basic/demo.html b/static/usage/v8/searchbar/basic/demo.html
index cf8eb7f6502..75a8e684096 100644
--- a/static/usage/v8/searchbar/basic/demo.html
+++ b/static/usage/v8/searchbar/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/searchbar/cancel-button/demo.html b/static/usage/v8/searchbar/cancel-button/demo.html
index 89603d3ad08..5f4477320f1 100644
--- a/static/usage/v8/searchbar/cancel-button/demo.html
+++ b/static/usage/v8/searchbar/cancel-button/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/searchbar/clear-button/demo.html b/static/usage/v8/searchbar/clear-button/demo.html
index aa2b981919a..478511d6a5a 100644
--- a/static/usage/v8/searchbar/clear-button/demo.html
+++ b/static/usage/v8/searchbar/clear-button/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/searchbar/debounce/demo.html b/static/usage/v8/searchbar/debounce/demo.html
index 976b3f4f159..6d97f568b32 100644
--- a/static/usage/v8/searchbar/debounce/demo.html
+++ b/static/usage/v8/searchbar/debounce/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/searchbar/search-icon/demo.html b/static/usage/v8/searchbar/search-icon/demo.html
index c2aec330191..7abbacf12a9 100644
--- a/static/usage/v8/searchbar/search-icon/demo.html
+++ b/static/usage/v8/searchbar/search-icon/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/searchbar/theming/colors/demo.html b/static/usage/v8/searchbar/theming/colors/demo.html
index 68de7279566..070e6f24409 100644
--- a/static/usage/v8/searchbar/theming/colors/demo.html
+++ b/static/usage/v8/searchbar/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/searchbar/theming/css-properties/demo.html b/static/usage/v8/searchbar/theming/css-properties/demo.html
index 8b632b5dc6a..5c419e1a85f 100644
--- a/static/usage/v8/searchbar/theming/css-properties/demo.html
+++ b/static/usage/v8/searchbar/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/segment-button/basic/demo.html b/static/usage/v8/segment-button/basic/demo.html
index 06a21d94086..6ad17e680a6 100644
--- a/static/usage/v8/segment-button/basic/demo.html
+++ b/static/usage/v8/segment-button/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/segment-button/layout/demo.html b/static/usage/v8/segment-button/layout/demo.html
index 5455536e0c9..65dc686fc24 100644
--- a/static/usage/v8/segment-button/layout/demo.html
+++ b/static/usage/v8/segment-button/layout/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/segment-button/theming/css-properties/demo.html b/static/usage/v8/segment-button/theming/css-properties/demo.html
index 1be672fe27c..f470e5a7620 100644
--- a/static/usage/v8/segment-button/theming/css-properties/demo.html
+++ b/static/usage/v8/segment-button/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/segment-button/theming/css-shadow-parts/demo.html b/static/usage/v8/segment-button/theming/css-shadow-parts/demo.html
index 58677cc0795..9a95392d943 100644
--- a/static/usage/v8/segment-button/theming/css-shadow-parts/demo.html
+++ b/static/usage/v8/segment-button/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/segment/basic/demo.html b/static/usage/v8/segment/basic/demo.html
index 017a202b5f5..4049fb0c383 100644
--- a/static/usage/v8/segment/basic/demo.html
+++ b/static/usage/v8/segment/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/segment/scrollable/demo.html b/static/usage/v8/segment/scrollable/demo.html
index 1ae472521bd..1214b0cb60f 100644
--- a/static/usage/v8/segment/scrollable/demo.html
+++ b/static/usage/v8/segment/scrollable/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/segment/swipeable/demo.html b/static/usage/v8/segment/swipeable/demo.html
index cd7b789a00e..2d829b359b4 100644
--- a/static/usage/v8/segment/swipeable/demo.html
+++ b/static/usage/v8/segment/swipeable/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/segment/theming/colors/demo.html b/static/usage/v8/segment/theming/colors/demo.html
index bf3ec701fb2..391aea60cde 100644
--- a/static/usage/v8/segment/theming/colors/demo.html
+++ b/static/usage/v8/segment/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/segment/theming/css-properties/demo.html b/static/usage/v8/segment/theming/css-properties/demo.html
index bb4dc9df63b..02a4ffd7255 100644
--- a/static/usage/v8/segment/theming/css-properties/demo.html
+++ b/static/usage/v8/segment/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/basic/multiple-selection/demo.html b/static/usage/v8/select/basic/multiple-selection/demo.html
index 4a8387f1b4c..b060d06d9ab 100644
--- a/static/usage/v8/select/basic/multiple-selection/demo.html
+++ b/static/usage/v8/select/basic/multiple-selection/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/basic/responding-to-interaction/demo.html b/static/usage/v8/select/basic/responding-to-interaction/demo.html
index 12a9a675c65..896a3414fac 100644
--- a/static/usage/v8/select/basic/responding-to-interaction/demo.html
+++ b/static/usage/v8/select/basic/responding-to-interaction/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/basic/single-selection/demo.html b/static/usage/v8/select/basic/single-selection/demo.html
index d6892dd1f08..7ed871b66ee 100644
--- a/static/usage/v8/select/basic/single-selection/demo.html
+++ b/static/usage/v8/select/basic/single-selection/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/customization/button-text/demo.html b/static/usage/v8/select/customization/button-text/demo.html
index 33386836448..01e19f13fac 100644
--- a/static/usage/v8/select/customization/button-text/demo.html
+++ b/static/usage/v8/select/customization/button-text/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/customization/custom-toggle-icons/demo.html b/static/usage/v8/select/customization/custom-toggle-icons/demo.html
index 92abc933396..ddcf18c547e 100644
--- a/static/usage/v8/select/customization/custom-toggle-icons/demo.html
+++ b/static/usage/v8/select/customization/custom-toggle-icons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/customization/icon-flip-behavior/demo.html b/static/usage/v8/select/customization/icon-flip-behavior/demo.html
index d00b376d88b..4686060d5c1 100644
--- a/static/usage/v8/select/customization/icon-flip-behavior/demo.html
+++ b/static/usage/v8/select/customization/icon-flip-behavior/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/customization/interface-options/demo.html b/static/usage/v8/select/customization/interface-options/demo.html
index 5b861edbeb7..3a39b6784cf 100644
--- a/static/usage/v8/select/customization/interface-options/demo.html
+++ b/static/usage/v8/select/customization/interface-options/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/customization/styling-select/demo.html b/static/usage/v8/select/customization/styling-select/demo.html
index 503410820bd..7115a7b1ce5 100644
--- a/static/usage/v8/select/customization/styling-select/demo.html
+++ b/static/usage/v8/select/customization/styling-select/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/fill/demo.html b/static/usage/v8/select/fill/demo.html
index f8513ed8410..9acce8e3e08 100644
--- a/static/usage/v8/select/fill/demo.html
+++ b/static/usage/v8/select/fill/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/helper-error/demo.html b/static/usage/v8/select/helper-error/demo.html
index 1d3a8647b97..4872e84ba66 100644
--- a/static/usage/v8/select/helper-error/demo.html
+++ b/static/usage/v8/select/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/interfaces/action-sheet/demo.html b/static/usage/v8/select/interfaces/action-sheet/demo.html
index 45e3b0deaf9..79e15015f34 100644
--- a/static/usage/v8/select/interfaces/action-sheet/demo.html
+++ b/static/usage/v8/select/interfaces/action-sheet/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/interfaces/modal/demo.html b/static/usage/v8/select/interfaces/modal/demo.html
index 925d2405685..cc0b0c1e275 100644
--- a/static/usage/v8/select/interfaces/modal/demo.html
+++ b/static/usage/v8/select/interfaces/modal/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/interfaces/popover/demo.html b/static/usage/v8/select/interfaces/popover/demo.html
index 53915ab670c..815b3656fa8 100644
--- a/static/usage/v8/select/interfaces/popover/demo.html
+++ b/static/usage/v8/select/interfaces/popover/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/justify/demo.html b/static/usage/v8/select/justify/demo.html
index a0931dacee9..9bc88cddbd4 100644
--- a/static/usage/v8/select/justify/demo.html
+++ b/static/usage/v8/select/justify/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/label-placement/demo.html b/static/usage/v8/select/label-placement/demo.html
index 4f776c7ade2..20a7febd7dc 100644
--- a/static/usage/v8/select/label-placement/demo.html
+++ b/static/usage/v8/select/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/label-slot/demo.html b/static/usage/v8/select/label-slot/demo.html
index e077eb46339..38f27229109 100644
--- a/static/usage/v8/select/label-slot/demo.html
+++ b/static/usage/v8/select/label-slot/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/no-visible-label/demo.html b/static/usage/v8/select/no-visible-label/demo.html
index a3fb5dcdb7e..66f8f43e2ce 100644
--- a/static/usage/v8/select/no-visible-label/demo.html
+++ b/static/usage/v8/select/no-visible-label/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/objects-as-values/multiple-selection/demo.html b/static/usage/v8/select/objects-as-values/multiple-selection/demo.html
index b703f2b9219..e097acc0d51 100644
--- a/static/usage/v8/select/objects-as-values/multiple-selection/demo.html
+++ b/static/usage/v8/select/objects-as-values/multiple-selection/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/objects-as-values/using-comparewith/demo.html b/static/usage/v8/select/objects-as-values/using-comparewith/demo.html
index 0d4258ca24d..ee6c9297231 100644
--- a/static/usage/v8/select/objects-as-values/using-comparewith/demo.html
+++ b/static/usage/v8/select/objects-as-values/using-comparewith/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/start-end-slots/demo.html b/static/usage/v8/select/start-end-slots/demo.html
index 72885a6b03c..8bbeaa0768d 100644
--- a/static/usage/v8/select/start-end-slots/demo.html
+++ b/static/usage/v8/select/start-end-slots/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/select/typeahead/demo.html b/static/usage/v8/select/typeahead/demo.html
index d067398d5ed..48d3e6f148d 100644
--- a/static/usage/v8/select/typeahead/demo.html
+++ b/static/usage/v8/select/typeahead/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/skeleton-text/basic/demo.html b/static/usage/v8/skeleton-text/basic/demo.html
index 4d8853c9657..e5a57750877 100644
--- a/static/usage/v8/skeleton-text/basic/demo.html
+++ b/static/usage/v8/skeleton-text/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/skeleton-text/theming/css-properties/demo.html b/static/usage/v8/skeleton-text/theming/css-properties/demo.html
index 9061a80c4b6..60f12f43d03 100644
--- a/static/usage/v8/skeleton-text/theming/css-properties/demo.html
+++ b/static/usage/v8/skeleton-text/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/spinner/basic/demo.html b/static/usage/v8/spinner/basic/demo.html
index 961f964f0f4..c6136aeedb8 100644
--- a/static/usage/v8/spinner/basic/demo.html
+++ b/static/usage/v8/spinner/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/spinner/theming/colors/demo.html b/static/usage/v8/spinner/theming/colors/demo.html
index 4d9974ab344..9ae2a27b3e7 100644
--- a/static/usage/v8/spinner/theming/colors/demo.html
+++ b/static/usage/v8/spinner/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/spinner/theming/css-properties/demo.html b/static/usage/v8/spinner/theming/css-properties/demo.html
index 7bf25d63fd2..df31827cd0b 100644
--- a/static/usage/v8/spinner/theming/css-properties/demo.html
+++ b/static/usage/v8/spinner/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/spinner/theming/resizing/demo.html b/static/usage/v8/spinner/theming/resizing/demo.html
index 2cc30356e74..1ad39cab228 100644
--- a/static/usage/v8/spinner/theming/resizing/demo.html
+++ b/static/usage/v8/spinner/theming/resizing/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/split-pane/basic/demo.html b/static/usage/v8/split-pane/basic/demo.html
index 7dd67bfbb11..00f95644c2f 100644
--- a/static/usage/v8/split-pane/basic/demo.html
+++ b/static/usage/v8/split-pane/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/split-pane/theming/css-properties/demo.html b/static/usage/v8/split-pane/theming/css-properties/demo.html
index 6cb91e790dd..ec198e4b495 100644
--- a/static/usage/v8/split-pane/theming/css-properties/demo.html
+++ b/static/usage/v8/split-pane/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/tabs/basic/demo.html b/static/usage/v8/tabs/basic/demo.html
index cab067dd7b0..b5ff1e453b7 100644
--- a/static/usage/v8/tabs/basic/demo.html
+++ b/static/usage/v8/tabs/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/tabs/router/demo.html b/static/usage/v8/tabs/router/demo.html
index 19b9f797b5c..6a57c3ef0ab 100644
--- a/static/usage/v8/tabs/router/demo.html
+++ b/static/usage/v8/tabs/router/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/tabs/select-method/demo.html b/static/usage/v8/tabs/select-method/demo.html
index 84d7c253db4..2ef98bdd181 100644
--- a/static/usage/v8/tabs/select-method/demo.html
+++ b/static/usage/v8/tabs/select-method/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/text/basic/demo.html b/static/usage/v8/text/basic/demo.html
index da913cd909f..beac712d556 100644
--- a/static/usage/v8/text/basic/demo.html
+++ b/static/usage/v8/text/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/text/basic/react.md b/static/usage/v8/text/basic/react.md
index da8882e3bf5..e198ffa2e86 100644
--- a/static/usage/v8/text/basic/react.md
+++ b/static/usage/v8/text/basic/react.md
@@ -22,11 +22,16 @@ function Example() {
- I saw a werewolf with a Chinese menu in his hand. Walking through the
+ I saw a werewolf with a Chinese menu in his hand. Walking through the{' '}
+
streets
- of Soho in the rain. He
+ {' '}
+ of Soho in the rain. He{' '}
+
was
- looking for a place called Lee Ho Fook's. Gonna get a big dish of beef chow mein.
+ {' '}
+ looking for a place called Lee Ho Fook's. Gonna get a{' '}
+ big dish of beef chow mein.
>
);
diff --git a/static/usage/v8/textarea/autogrow/demo.html b/static/usage/v8/textarea/autogrow/demo.html
index 145c83dd26c..12538fa1fff 100644
--- a/static/usage/v8/textarea/autogrow/demo.html
+++ b/static/usage/v8/textarea/autogrow/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/textarea/basic/demo.html b/static/usage/v8/textarea/basic/demo.html
index 86b133e9142..21b78df70c1 100644
--- a/static/usage/v8/textarea/basic/demo.html
+++ b/static/usage/v8/textarea/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/textarea/clear-on-edit/demo.html b/static/usage/v8/textarea/clear-on-edit/demo.html
index b310cc9e82b..9fbde60f60d 100644
--- a/static/usage/v8/textarea/clear-on-edit/demo.html
+++ b/static/usage/v8/textarea/clear-on-edit/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/textarea/counter/demo.html b/static/usage/v8/textarea/counter/demo.html
index 443e9640607..2162742810b 100644
--- a/static/usage/v8/textarea/counter/demo.html
+++ b/static/usage/v8/textarea/counter/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/textarea/fill/demo.html b/static/usage/v8/textarea/fill/demo.html
index 41def170dd8..42423bce214 100644
--- a/static/usage/v8/textarea/fill/demo.html
+++ b/static/usage/v8/textarea/fill/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/textarea/helper-error/demo.html b/static/usage/v8/textarea/helper-error/demo.html
index 9717f30e60d..336c7552863 100644
--- a/static/usage/v8/textarea/helper-error/demo.html
+++ b/static/usage/v8/textarea/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/textarea/label-placement/demo.html b/static/usage/v8/textarea/label-placement/demo.html
index 785f661eb28..f945a7960fa 100644
--- a/static/usage/v8/textarea/label-placement/demo.html
+++ b/static/usage/v8/textarea/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/textarea/label-slot/demo.html b/static/usage/v8/textarea/label-slot/demo.html
index 8896c7d185b..4a9b6b1b316 100644
--- a/static/usage/v8/textarea/label-slot/demo.html
+++ b/static/usage/v8/textarea/label-slot/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/textarea/no-visible-label/demo.html b/static/usage/v8/textarea/no-visible-label/demo.html
index cd10187f1fc..1ee7ed187f1 100644
--- a/static/usage/v8/textarea/no-visible-label/demo.html
+++ b/static/usage/v8/textarea/no-visible-label/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/textarea/start-end-slots/demo.html b/static/usage/v8/textarea/start-end-slots/demo.html
index 6020ec56cf8..1efd60957e6 100644
--- a/static/usage/v8/textarea/start-end-slots/demo.html
+++ b/static/usage/v8/textarea/start-end-slots/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/textarea/theming/demo.html b/static/usage/v8/textarea/theming/demo.html
index b5b4e025708..ef9498f412c 100644
--- a/static/usage/v8/textarea/theming/demo.html
+++ b/static/usage/v8/textarea/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/theming/always-dark-mode/demo.html b/static/usage/v8/theming/always-dark-mode/demo.html
index 0db36e5cb09..3be5cf4d106 100644
--- a/static/usage/v8/theming/always-dark-mode/demo.html
+++ b/static/usage/v8/theming/always-dark-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/theming/always-high-contrast-mode/demo.html b/static/usage/v8/theming/always-high-contrast-mode/demo.html
index 43aff2721f4..448f9fe868a 100644
--- a/static/usage/v8/theming/always-high-contrast-mode/demo.html
+++ b/static/usage/v8/theming/always-high-contrast-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/theming/class-dark-mode/demo.html b/static/usage/v8/theming/class-dark-mode/demo.html
index 4a1709c0c81..50b141fc79a 100644
--- a/static/usage/v8/theming/class-dark-mode/demo.html
+++ b/static/usage/v8/theming/class-dark-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/theming/class-high-contrast-mode/demo.html b/static/usage/v8/theming/class-high-contrast-mode/demo.html
index e8e53a85019..23d294bef06 100644
--- a/static/usage/v8/theming/class-high-contrast-mode/demo.html
+++ b/static/usage/v8/theming/class-high-contrast-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/theming/system-dark-mode/demo.html b/static/usage/v8/theming/system-dark-mode/demo.html
index 02940ae8895..68b251ddd07 100644
--- a/static/usage/v8/theming/system-dark-mode/demo.html
+++ b/static/usage/v8/theming/system-dark-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/theming/system-high-contrast-mode/demo.html b/static/usage/v8/theming/system-high-contrast-mode/demo.html
index 541a1f56609..624b55d1bf2 100644
--- a/static/usage/v8/theming/system-high-contrast-mode/demo.html
+++ b/static/usage/v8/theming/system-high-contrast-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/thumbnail/basic/demo.html b/static/usage/v8/thumbnail/basic/demo.html
index 0cce5eb58f8..6ec7014b240 100644
--- a/static/usage/v8/thumbnail/basic/demo.html
+++ b/static/usage/v8/thumbnail/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/thumbnail/item/demo.html b/static/usage/v8/thumbnail/item/demo.html
index 860d90f5e60..3ff7162e94b 100644
--- a/static/usage/v8/thumbnail/item/demo.html
+++ b/static/usage/v8/thumbnail/item/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/thumbnail/theming/css-properties/demo.html b/static/usage/v8/thumbnail/theming/css-properties/demo.html
index e49ab0cf499..755207eac94 100644
--- a/static/usage/v8/thumbnail/theming/css-properties/demo.html
+++ b/static/usage/v8/thumbnail/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/title/basic/demo.html b/static/usage/v8/title/basic/demo.html
index 269fdbe7229..ff01403920f 100644
--- a/static/usage/v8/title/basic/demo.html
+++ b/static/usage/v8/title/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/title/collapsible-large-title/basic/demo.html b/static/usage/v8/title/collapsible-large-title/basic/demo.html
index ba862352c54..3a6cfd9a96d 100644
--- a/static/usage/v8/title/collapsible-large-title/basic/demo.html
+++ b/static/usage/v8/title/collapsible-large-title/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/title/collapsible-large-title/buttons/demo.html b/static/usage/v8/title/collapsible-large-title/buttons/demo.html
index 4bb06a20347..85a3ac6e621 100644
--- a/static/usage/v8/title/collapsible-large-title/buttons/demo.html
+++ b/static/usage/v8/title/collapsible-large-title/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/title/theming/css-properties/demo.html b/static/usage/v8/title/theming/css-properties/demo.html
index 8606c6ab242..5ac5700b44a 100644
--- a/static/usage/v8/title/theming/css-properties/demo.html
+++ b/static/usage/v8/title/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toast/buttons/demo.html b/static/usage/v8/toast/buttons/demo.html
index c9db7414c53..c772bd3e14f 100644
--- a/static/usage/v8/toast/buttons/demo.html
+++ b/static/usage/v8/toast/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toast/icon/demo.html b/static/usage/v8/toast/icon/demo.html
index 8f83337b9ce..bb1e5c5bd42 100644
--- a/static/usage/v8/toast/icon/demo.html
+++ b/static/usage/v8/toast/icon/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toast/inline/basic/demo.html b/static/usage/v8/toast/inline/basic/demo.html
index 3c0352c785a..c161f047c4d 100644
--- a/static/usage/v8/toast/inline/basic/demo.html
+++ b/static/usage/v8/toast/inline/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toast/inline/is-open/demo.html b/static/usage/v8/toast/inline/is-open/demo.html
index 0135e272713..5ae487dc86a 100644
--- a/static/usage/v8/toast/inline/is-open/demo.html
+++ b/static/usage/v8/toast/inline/is-open/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toast/layout/demo.html b/static/usage/v8/toast/layout/demo.html
index cd744266a6a..cb0ed51172e 100644
--- a/static/usage/v8/toast/layout/demo.html
+++ b/static/usage/v8/toast/layout/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toast/position-anchor/demo.html b/static/usage/v8/toast/position-anchor/demo.html
index cc681d0bef9..9f9d56f6309 100644
--- a/static/usage/v8/toast/position-anchor/demo.html
+++ b/static/usage/v8/toast/position-anchor/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toast/presenting/controller/demo.html b/static/usage/v8/toast/presenting/controller/demo.html
index 8ae2ea55fb1..38c6f9938c3 100644
--- a/static/usage/v8/toast/presenting/controller/demo.html
+++ b/static/usage/v8/toast/presenting/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toast/swipe-gesture/demo.html b/static/usage/v8/toast/swipe-gesture/demo.html
index d2cebd4a95e..a9c679f3219 100644
--- a/static/usage/v8/toast/swipe-gesture/demo.html
+++ b/static/usage/v8/toast/swipe-gesture/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toast/theming/demo.html b/static/usage/v8/toast/theming/demo.html
index 1ed49e6c73b..9072ae5ab6d 100644
--- a/static/usage/v8/toast/theming/demo.html
+++ b/static/usage/v8/toast/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toggle/alignment/demo.html b/static/usage/v8/toggle/alignment/demo.html
index bd8872aa9bb..b065f7e24ed 100644
--- a/static/usage/v8/toggle/alignment/demo.html
+++ b/static/usage/v8/toggle/alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toggle/basic/demo.html b/static/usage/v8/toggle/basic/demo.html
index 742fe5f4f18..0c1dfbf99f5 100644
--- a/static/usage/v8/toggle/basic/demo.html
+++ b/static/usage/v8/toggle/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toggle/helper-error/demo.html b/static/usage/v8/toggle/helper-error/demo.html
index 25c9bd8ec59..5e07831543e 100644
--- a/static/usage/v8/toggle/helper-error/demo.html
+++ b/static/usage/v8/toggle/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toggle/justify/demo.html b/static/usage/v8/toggle/justify/demo.html
index adac73e6a4c..0fcbc458da2 100644
--- a/static/usage/v8/toggle/justify/demo.html
+++ b/static/usage/v8/toggle/justify/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toggle/label-placement/demo.html b/static/usage/v8/toggle/label-placement/demo.html
index 035d4db5d79..d9756929359 100644
--- a/static/usage/v8/toggle/label-placement/demo.html
+++ b/static/usage/v8/toggle/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toggle/list/demo.html b/static/usage/v8/toggle/list/demo.html
index 3f0db9d2af2..770a9108a9a 100644
--- a/static/usage/v8/toggle/list/demo.html
+++ b/static/usage/v8/toggle/list/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toggle/on-off/demo.html b/static/usage/v8/toggle/on-off/demo.html
index dd19bd2fb5c..280d39b6950 100644
--- a/static/usage/v8/toggle/on-off/demo.html
+++ b/static/usage/v8/toggle/on-off/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toggle/theming/colors/demo.html b/static/usage/v8/toggle/theming/colors/demo.html
index 06beb784080..fcb369eb633 100644
--- a/static/usage/v8/toggle/theming/colors/demo.html
+++ b/static/usage/v8/toggle/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toggle/theming/css-properties/demo.html b/static/usage/v8/toggle/theming/css-properties/demo.html
index c582447669e..609c8bf51fc 100644
--- a/static/usage/v8/toggle/theming/css-properties/demo.html
+++ b/static/usage/v8/toggle/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toggle/theming/css-shadow-parts/demo.html b/static/usage/v8/toggle/theming/css-shadow-parts/demo.html
index 696de2121fc..584d0721d93 100644
--- a/static/usage/v8/toggle/theming/css-shadow-parts/demo.html
+++ b/static/usage/v8/toggle/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toolbar/basic/demo.html b/static/usage/v8/toolbar/basic/demo.html
index b9873e484db..49fbe360ffe 100644
--- a/static/usage/v8/toolbar/basic/demo.html
+++ b/static/usage/v8/toolbar/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toolbar/buttons/demo.html b/static/usage/v8/toolbar/buttons/demo.html
index dd27e1d0198..35967c3cee2 100644
--- a/static/usage/v8/toolbar/buttons/demo.html
+++ b/static/usage/v8/toolbar/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toolbar/progress-bars/demo.html b/static/usage/v8/toolbar/progress-bars/demo.html
index 3b4401698e3..e43cecca6bf 100644
--- a/static/usage/v8/toolbar/progress-bars/demo.html
+++ b/static/usage/v8/toolbar/progress-bars/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toolbar/searchbars/demo.html b/static/usage/v8/toolbar/searchbars/demo.html
index 8a2933af781..d894c42ef74 100644
--- a/static/usage/v8/toolbar/searchbars/demo.html
+++ b/static/usage/v8/toolbar/searchbars/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toolbar/segments/demo.html b/static/usage/v8/toolbar/segments/demo.html
index 70587a19bbc..4179952ab5d 100644
--- a/static/usage/v8/toolbar/segments/demo.html
+++ b/static/usage/v8/toolbar/segments/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toolbar/theming/colors/demo.html b/static/usage/v8/toolbar/theming/colors/demo.html
index c8906e7fa4c..93efca13097 100644
--- a/static/usage/v8/toolbar/theming/colors/demo.html
+++ b/static/usage/v8/toolbar/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v8/toolbar/theming/css-properties/demo.html b/static/usage/v8/toolbar/theming/css-properties/demo.html
index c4d84c5ff6b..ea37c46ed9f 100644
--- a/static/usage/v8/toolbar/theming/css-properties/demo.html
+++ b/static/usage/v8/toolbar/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/accessibility/animations/demo.html b/static/usage/v9/accordion/accessibility/animations/demo.html
index 689da84fdf7..ed7d6feb716 100644
--- a/static/usage/v9/accordion/accessibility/animations/demo.html
+++ b/static/usage/v9/accordion/accessibility/animations/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/basic/demo.html b/static/usage/v9/accordion/basic/demo.html
index 40f14137bb2..1eef8b62cf5 100644
--- a/static/usage/v9/accordion/basic/demo.html
+++ b/static/usage/v9/accordion/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/customization/advanced-expansion-styles/demo.html b/static/usage/v9/accordion/customization/advanced-expansion-styles/demo.html
index 7e992fa6205..857b69e4f29 100644
--- a/static/usage/v9/accordion/customization/advanced-expansion-styles/demo.html
+++ b/static/usage/v9/accordion/customization/advanced-expansion-styles/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/customization/expansion-styles/demo.html b/static/usage/v9/accordion/customization/expansion-styles/demo.html
index 92759495ccb..4382264b096 100644
--- a/static/usage/v9/accordion/customization/expansion-styles/demo.html
+++ b/static/usage/v9/accordion/customization/expansion-styles/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/customization/icons/demo.html b/static/usage/v9/accordion/customization/icons/demo.html
index 5893e279ef6..d038e5abc88 100644
--- a/static/usage/v9/accordion/customization/icons/demo.html
+++ b/static/usage/v9/accordion/customization/icons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/customization/theming/demo.html b/static/usage/v9/accordion/customization/theming/demo.html
index 302b087c3a6..d53c72d4c78 100644
--- a/static/usage/v9/accordion/customization/theming/demo.html
+++ b/static/usage/v9/accordion/customization/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/disable/group/demo.html b/static/usage/v9/accordion/disable/group/demo.html
index abfe36701f0..7e44aa2c1df 100644
--- a/static/usage/v9/accordion/disable/group/demo.html
+++ b/static/usage/v9/accordion/disable/group/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/disable/individual/demo.html b/static/usage/v9/accordion/disable/individual/demo.html
index 49690625b45..47482a844b7 100644
--- a/static/usage/v9/accordion/disable/individual/demo.html
+++ b/static/usage/v9/accordion/disable/individual/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/listen-changes/demo.html b/static/usage/v9/accordion/listen-changes/demo.html
index 0ae2737494b..257722e6451 100644
--- a/static/usage/v9/accordion/listen-changes/demo.html
+++ b/static/usage/v9/accordion/listen-changes/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/multiple/demo.html b/static/usage/v9/accordion/multiple/demo.html
index 3861e145be6..7dbd8ab5abc 100644
--- a/static/usage/v9/accordion/multiple/demo.html
+++ b/static/usage/v9/accordion/multiple/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/readonly/group/demo.html b/static/usage/v9/accordion/readonly/group/demo.html
index ca9eb585fa6..e8d3a365ddb 100644
--- a/static/usage/v9/accordion/readonly/group/demo.html
+++ b/static/usage/v9/accordion/readonly/group/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/readonly/individual/demo.html b/static/usage/v9/accordion/readonly/individual/demo.html
index 4fe17640caf..8a426817089 100644
--- a/static/usage/v9/accordion/readonly/individual/demo.html
+++ b/static/usage/v9/accordion/readonly/individual/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/accordion/toggle/demo.html b/static/usage/v9/accordion/toggle/demo.html
index dfab9be6194..b7246a56f58 100644
--- a/static/usage/v9/accordion/toggle/demo.html
+++ b/static/usage/v9/accordion/toggle/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/action-sheet/controller/demo.html b/static/usage/v9/action-sheet/controller/demo.html
index 577b6f2ecb6..5a0e8d686bf 100644
--- a/static/usage/v9/action-sheet/controller/demo.html
+++ b/static/usage/v9/action-sheet/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/action-sheet/inline/isOpen/demo.html b/static/usage/v9/action-sheet/inline/isOpen/demo.html
index 3aa1424dcee..1002f88aede 100644
--- a/static/usage/v9/action-sheet/inline/isOpen/demo.html
+++ b/static/usage/v9/action-sheet/inline/isOpen/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/action-sheet/inline/trigger/demo.html b/static/usage/v9/action-sheet/inline/trigger/demo.html
index ebcec0fad93..cbfb04685d5 100644
--- a/static/usage/v9/action-sheet/inline/trigger/demo.html
+++ b/static/usage/v9/action-sheet/inline/trigger/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/action-sheet/role-info-on-dismiss/demo.html b/static/usage/v9/action-sheet/role-info-on-dismiss/demo.html
index feca048a617..39e1cadfbd7 100644
--- a/static/usage/v9/action-sheet/role-info-on-dismiss/demo.html
+++ b/static/usage/v9/action-sheet/role-info-on-dismiss/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/action-sheet/theming/css-properties/demo.html b/static/usage/v9/action-sheet/theming/css-properties/demo.html
index 55e2fac1a2f..5f5ee92e1b3 100644
--- a/static/usage/v9/action-sheet/theming/css-properties/demo.html
+++ b/static/usage/v9/action-sheet/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/action-sheet/theming/styling/demo.html b/static/usage/v9/action-sheet/theming/styling/demo.html
index 6b0752521b8..1ac103718cb 100644
--- a/static/usage/v9/action-sheet/theming/styling/demo.html
+++ b/static/usage/v9/action-sheet/theming/styling/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/alert/buttons/demo.html b/static/usage/v9/alert/buttons/demo.html
index abc6c2e4b80..ea9e3c9909e 100644
--- a/static/usage/v9/alert/buttons/demo.html
+++ b/static/usage/v9/alert/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/alert/customization/demo.html b/static/usage/v9/alert/customization/demo.html
index 9aeaa9a9c30..6b158c99626 100644
--- a/static/usage/v9/alert/customization/demo.html
+++ b/static/usage/v9/alert/customization/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/alert/inputs/radios/demo.html b/static/usage/v9/alert/inputs/radios/demo.html
index e5a9500fa2d..045ae51aa89 100644
--- a/static/usage/v9/alert/inputs/radios/demo.html
+++ b/static/usage/v9/alert/inputs/radios/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/alert/inputs/text-inputs/demo.html b/static/usage/v9/alert/inputs/text-inputs/demo.html
index 6461a3f07cf..d263c536577 100644
--- a/static/usage/v9/alert/inputs/text-inputs/demo.html
+++ b/static/usage/v9/alert/inputs/text-inputs/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/alert/presenting/controller/demo.html b/static/usage/v9/alert/presenting/controller/demo.html
index eb320915923..d5f7fe5b485 100644
--- a/static/usage/v9/alert/presenting/controller/demo.html
+++ b/static/usage/v9/alert/presenting/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/alert/presenting/isOpen/demo.html b/static/usage/v9/alert/presenting/isOpen/demo.html
index 07a700ea528..f1aeee0bcda 100644
--- a/static/usage/v9/alert/presenting/isOpen/demo.html
+++ b/static/usage/v9/alert/presenting/isOpen/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/alert/presenting/trigger/demo.html b/static/usage/v9/alert/presenting/trigger/demo.html
index 54f3a658997..985e582c9ff 100644
--- a/static/usage/v9/alert/presenting/trigger/demo.html
+++ b/static/usage/v9/alert/presenting/trigger/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/animations/basic/demo.html b/static/usage/v9/animations/basic/demo.html
index 5a5cf404b55..bd09288cde8 100644
--- a/static/usage/v9/animations/basic/demo.html
+++ b/static/usage/v9/animations/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/animations/before-and-after-hooks/demo.html b/static/usage/v9/animations/before-and-after-hooks/demo.html
index d7f63cc83f5..d87265c82dd 100644
--- a/static/usage/v9/animations/before-and-after-hooks/demo.html
+++ b/static/usage/v9/animations/before-and-after-hooks/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/animations/chain/demo.html b/static/usage/v9/animations/chain/demo.html
index a60d1c841a9..9b25ba0bcc6 100644
--- a/static/usage/v9/animations/chain/demo.html
+++ b/static/usage/v9/animations/chain/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/animations/gesture/angular/example_component_ts.md b/static/usage/v9/animations/gesture/angular/example_component_ts.md
index b7edd5e359e..8a7ed107348 100644
--- a/static/usage/v9/animations/gesture/angular/example_component_ts.md
+++ b/static/usage/v9/animations/gesture/angular/example_component_ts.md
@@ -24,7 +24,10 @@ export class ExampleComponent {
*/
private readonly MAX_TRANSLATE = 344 - 100 - 32;
- constructor(private animationCtrl: AnimationController, private gestureCtrl: GestureController) {}
+ constructor(
+ private animationCtrl: AnimationController,
+ private gestureCtrl: GestureController
+ ) {}
private onMove(event: GestureDetail) {
if (!this.started) {
diff --git a/static/usage/v9/animations/gesture/demo.html b/static/usage/v9/animations/gesture/demo.html
index 055466a7e65..cc608d8696c 100644
--- a/static/usage/v9/animations/gesture/demo.html
+++ b/static/usage/v9/animations/gesture/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/animations/group/demo.html b/static/usage/v9/animations/group/demo.html
index c144314a306..0356c9a8713 100644
--- a/static/usage/v9/animations/group/demo.html
+++ b/static/usage/v9/animations/group/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/animations/keyframes/demo.html b/static/usage/v9/animations/keyframes/demo.html
index 055fc6e86ba..32e842f86b8 100644
--- a/static/usage/v9/animations/keyframes/demo.html
+++ b/static/usage/v9/animations/keyframes/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/animations/modal-override/demo.html b/static/usage/v9/animations/modal-override/demo.html
index 06984323b7a..099e349a9bb 100644
--- a/static/usage/v9/animations/modal-override/demo.html
+++ b/static/usage/v9/animations/modal-override/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/animations/preference-based/demo.html b/static/usage/v9/animations/preference-based/demo.html
index 663c410b74a..3fd3214880e 100644
--- a/static/usage/v9/animations/preference-based/demo.html
+++ b/static/usage/v9/animations/preference-based/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/app/set-focus/demo.html b/static/usage/v9/app/set-focus/demo.html
index 2013de8a276..6e843855e82 100644
--- a/static/usage/v9/app/set-focus/demo.html
+++ b/static/usage/v9/app/set-focus/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/avatar/basic/demo.html b/static/usage/v9/avatar/basic/demo.html
index 5587cae0ef9..ca4e1775215 100644
--- a/static/usage/v9/avatar/basic/demo.html
+++ b/static/usage/v9/avatar/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/avatar/chip/demo.html b/static/usage/v9/avatar/chip/demo.html
index f1d68269b91..7ce90619e6d 100644
--- a/static/usage/v9/avatar/chip/demo.html
+++ b/static/usage/v9/avatar/chip/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/avatar/item/demo.html b/static/usage/v9/avatar/item/demo.html
index 358cc5b6964..0fe5c900bcf 100644
--- a/static/usage/v9/avatar/item/demo.html
+++ b/static/usage/v9/avatar/item/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/avatar/theming/css-properties/demo.html b/static/usage/v9/avatar/theming/css-properties/demo.html
index 190924cafba..77a79a9a2d2 100644
--- a/static/usage/v9/avatar/theming/css-properties/demo.html
+++ b/static/usage/v9/avatar/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/back-button/basic/demo.html b/static/usage/v9/back-button/basic/demo.html
index c17ed73a3dc..c524fa662e5 100644
--- a/static/usage/v9/back-button/basic/demo.html
+++ b/static/usage/v9/back-button/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/back-button/custom/demo.html b/static/usage/v9/back-button/custom/demo.html
index e6f40e8c642..ce20922d96e 100644
--- a/static/usage/v9/back-button/custom/demo.html
+++ b/static/usage/v9/back-button/custom/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/backdrop/basic/demo.html b/static/usage/v9/backdrop/basic/demo.html
index 61e8116618f..7a7958eedc3 100644
--- a/static/usage/v9/backdrop/basic/demo.html
+++ b/static/usage/v9/backdrop/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/backdrop/styling/demo.html b/static/usage/v9/backdrop/styling/demo.html
index 737419f1b91..b3ac389a035 100644
--- a/static/usage/v9/backdrop/styling/demo.html
+++ b/static/usage/v9/backdrop/styling/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/badge/basic/demo.html b/static/usage/v9/badge/basic/demo.html
index 8a70b6f4509..b1b467d4983 100644
--- a/static/usage/v9/badge/basic/demo.html
+++ b/static/usage/v9/badge/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/badge/inside-tab-bar/demo.html b/static/usage/v9/badge/inside-tab-bar/demo.html
index 53e73ea5b38..4757aeac48f 100644
--- a/static/usage/v9/badge/inside-tab-bar/demo.html
+++ b/static/usage/v9/badge/inside-tab-bar/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/badge/theming/colors/demo.html b/static/usage/v9/badge/theming/colors/demo.html
index 9e1799634b3..b8dfacbcf85 100644
--- a/static/usage/v9/badge/theming/colors/demo.html
+++ b/static/usage/v9/badge/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/badge/theming/css-properties/demo.html b/static/usage/v9/badge/theming/css-properties/demo.html
index 60294dcd8b0..45adf9ad201 100644
--- a/static/usage/v9/badge/theming/css-properties/demo.html
+++ b/static/usage/v9/badge/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/breadcrumbs/basic/demo.html b/static/usage/v9/breadcrumbs/basic/demo.html
index ef430bf26e9..057d43ddae8 100644
--- a/static/usage/v9/breadcrumbs/basic/demo.html
+++ b/static/usage/v9/breadcrumbs/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/breadcrumbs/collapsing-items/expand-on-click/demo.html b/static/usage/v9/breadcrumbs/collapsing-items/expand-on-click/demo.html
index f483f726263..72180bc9e5f 100644
--- a/static/usage/v9/breadcrumbs/collapsing-items/expand-on-click/demo.html
+++ b/static/usage/v9/breadcrumbs/collapsing-items/expand-on-click/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/breadcrumbs/collapsing-items/items-before-after/demo.html b/static/usage/v9/breadcrumbs/collapsing-items/items-before-after/demo.html
index 025ed5eb6a3..674cc62ae98 100644
--- a/static/usage/v9/breadcrumbs/collapsing-items/items-before-after/demo.html
+++ b/static/usage/v9/breadcrumbs/collapsing-items/items-before-after/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/breadcrumbs/collapsing-items/max-items/demo.html b/static/usage/v9/breadcrumbs/collapsing-items/max-items/demo.html
index f6701df8604..288e8e2fb8d 100644
--- a/static/usage/v9/breadcrumbs/collapsing-items/max-items/demo.html
+++ b/static/usage/v9/breadcrumbs/collapsing-items/max-items/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/breadcrumbs/collapsing-items/popover-on-click/demo.html b/static/usage/v9/breadcrumbs/collapsing-items/popover-on-click/demo.html
index 8b56be4077d..29154ac4bad 100644
--- a/static/usage/v9/breadcrumbs/collapsing-items/popover-on-click/demo.html
+++ b/static/usage/v9/breadcrumbs/collapsing-items/popover-on-click/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/breadcrumbs/icons/custom-separators/demo.html b/static/usage/v9/breadcrumbs/icons/custom-separators/demo.html
index 76774918877..72c4c85e541 100644
--- a/static/usage/v9/breadcrumbs/icons/custom-separators/demo.html
+++ b/static/usage/v9/breadcrumbs/icons/custom-separators/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/breadcrumbs/icons/icons-on-items/demo.html b/static/usage/v9/breadcrumbs/icons/icons-on-items/demo.html
index 635addfafe8..9ee9951e475 100644
--- a/static/usage/v9/breadcrumbs/icons/icons-on-items/demo.html
+++ b/static/usage/v9/breadcrumbs/icons/icons-on-items/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/breadcrumbs/theming/colors/demo.html b/static/usage/v9/breadcrumbs/theming/colors/demo.html
index 94d04be5a73..82b9eaa9613 100644
--- a/static/usage/v9/breadcrumbs/theming/colors/demo.html
+++ b/static/usage/v9/breadcrumbs/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/breadcrumbs/theming/css-properties/demo.html b/static/usage/v9/breadcrumbs/theming/css-properties/demo.html
index a5ec7394ce8..3096009592c 100644
--- a/static/usage/v9/breadcrumbs/theming/css-properties/demo.html
+++ b/static/usage/v9/breadcrumbs/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/button/basic/demo.html b/static/usage/v9/button/basic/demo.html
index 08f80bf3519..8ddd17ef8e2 100644
--- a/static/usage/v9/button/basic/demo.html
+++ b/static/usage/v9/button/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/button/expand/demo.html b/static/usage/v9/button/expand/demo.html
index 2abacd29c59..52e44296c71 100644
--- a/static/usage/v9/button/expand/demo.html
+++ b/static/usage/v9/button/expand/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/button/fill/demo.html b/static/usage/v9/button/fill/demo.html
index 83796cfb004..dcd1d7aa152 100644
--- a/static/usage/v9/button/fill/demo.html
+++ b/static/usage/v9/button/fill/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/button/icons/demo.html b/static/usage/v9/button/icons/demo.html
index 280c16177aa..516d0656579 100644
--- a/static/usage/v9/button/icons/demo.html
+++ b/static/usage/v9/button/icons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/button/shape/demo.html b/static/usage/v9/button/shape/demo.html
index af03dfc109c..166597a97fe 100644
--- a/static/usage/v9/button/shape/demo.html
+++ b/static/usage/v9/button/shape/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/button/size/demo.html b/static/usage/v9/button/size/demo.html
index aedc8e8f651..d458520b044 100644
--- a/static/usage/v9/button/size/demo.html
+++ b/static/usage/v9/button/size/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/button/text-wrapping/demo.html b/static/usage/v9/button/text-wrapping/demo.html
index af3515fb10a..0cce5f5c8f6 100644
--- a/static/usage/v9/button/text-wrapping/demo.html
+++ b/static/usage/v9/button/text-wrapping/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/button/theming/colors/demo.html b/static/usage/v9/button/theming/colors/demo.html
index ea7063cd8f4..0e0c01a72d5 100644
--- a/static/usage/v9/button/theming/colors/demo.html
+++ b/static/usage/v9/button/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/button/theming/css-properties/demo.html b/static/usage/v9/button/theming/css-properties/demo.html
index 5285ab2a1b3..667e0c7d64d 100644
--- a/static/usage/v9/button/theming/css-properties/demo.html
+++ b/static/usage/v9/button/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/buttons/basic/demo.html b/static/usage/v9/buttons/basic/demo.html
index 7811c47b8ec..6d16039a258 100644
--- a/static/usage/v9/buttons/basic/demo.html
+++ b/static/usage/v9/buttons/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/buttons/placement/demo.html b/static/usage/v9/buttons/placement/demo.html
index af34eeabb3b..0bda4fd1b57 100644
--- a/static/usage/v9/buttons/placement/demo.html
+++ b/static/usage/v9/buttons/placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/buttons/types/demo.html b/static/usage/v9/buttons/types/demo.html
index 6edf9a71ef6..40e272ab4f3 100644
--- a/static/usage/v9/buttons/types/demo.html
+++ b/static/usage/v9/buttons/types/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/card/basic/demo.html b/static/usage/v9/card/basic/demo.html
index 369a172c9e3..68ccaa4d87c 100644
--- a/static/usage/v9/card/basic/demo.html
+++ b/static/usage/v9/card/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/card/buttons/demo.html b/static/usage/v9/card/buttons/demo.html
index 6293462fda9..86043517ea1 100644
--- a/static/usage/v9/card/buttons/demo.html
+++ b/static/usage/v9/card/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/card/list/demo.html b/static/usage/v9/card/list/demo.html
index 659e0805fe5..39d36e82f18 100644
--- a/static/usage/v9/card/list/demo.html
+++ b/static/usage/v9/card/list/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/card/media/demo.html b/static/usage/v9/card/media/demo.html
index 443efbb3c22..7bd616cc98c 100644
--- a/static/usage/v9/card/media/demo.html
+++ b/static/usage/v9/card/media/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/card/theming/colors/demo.html b/static/usage/v9/card/theming/colors/demo.html
index b93a24e3e48..3d2e56ccff6 100644
--- a/static/usage/v9/card/theming/colors/demo.html
+++ b/static/usage/v9/card/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/card/theming/css-properties/demo.html b/static/usage/v9/card/theming/css-properties/demo.html
index 21e42bb77fa..97faf3bd907 100644
--- a/static/usage/v9/card/theming/css-properties/demo.html
+++ b/static/usage/v9/card/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/checkbox/alignment/demo.html b/static/usage/v9/checkbox/alignment/demo.html
index f4b9124f6c9..7e43d1293dc 100644
--- a/static/usage/v9/checkbox/alignment/demo.html
+++ b/static/usage/v9/checkbox/alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/checkbox/basic/demo.html b/static/usage/v9/checkbox/basic/demo.html
index 32aab0133bc..39db6731721 100644
--- a/static/usage/v9/checkbox/basic/demo.html
+++ b/static/usage/v9/checkbox/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/checkbox/helper-error/demo.html b/static/usage/v9/checkbox/helper-error/demo.html
index 015208cdb8b..9c844dc6502 100644
--- a/static/usage/v9/checkbox/helper-error/demo.html
+++ b/static/usage/v9/checkbox/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/checkbox/indeterminate/demo.html b/static/usage/v9/checkbox/indeterminate/demo.html
index 7423934133c..dabf227a380 100644
--- a/static/usage/v9/checkbox/indeterminate/demo.html
+++ b/static/usage/v9/checkbox/indeterminate/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/checkbox/justify/demo.html b/static/usage/v9/checkbox/justify/demo.html
index 6349478332b..1e014c65179 100644
--- a/static/usage/v9/checkbox/justify/demo.html
+++ b/static/usage/v9/checkbox/justify/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/checkbox/label-link/demo.html b/static/usage/v9/checkbox/label-link/demo.html
index 7dc61409e3e..bcfbdb69551 100644
--- a/static/usage/v9/checkbox/label-link/demo.html
+++ b/static/usage/v9/checkbox/label-link/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/checkbox/label-placement/demo.html b/static/usage/v9/checkbox/label-placement/demo.html
index bcbf9e06e41..f1ae7473c2a 100644
--- a/static/usage/v9/checkbox/label-placement/demo.html
+++ b/static/usage/v9/checkbox/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/checkbox/theming/css-properties/demo.html b/static/usage/v9/checkbox/theming/css-properties/demo.html
index 44517bf60b9..e6a08d1c4ae 100644
--- a/static/usage/v9/checkbox/theming/css-properties/demo.html
+++ b/static/usage/v9/checkbox/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/chip/basic/demo.html b/static/usage/v9/chip/basic/demo.html
index 2c3b2fd430f..c04f8d43441 100644
--- a/static/usage/v9/chip/basic/demo.html
+++ b/static/usage/v9/chip/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/chip/slots/demo.html b/static/usage/v9/chip/slots/demo.html
index b76fc456ec2..0d6a36918e1 100644
--- a/static/usage/v9/chip/slots/demo.html
+++ b/static/usage/v9/chip/slots/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/chip/theming/colors/demo.html b/static/usage/v9/chip/theming/colors/demo.html
index e0f9e454a85..4f51fd9290b 100644
--- a/static/usage/v9/chip/theming/colors/demo.html
+++ b/static/usage/v9/chip/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/chip/theming/css-properties/demo.html b/static/usage/v9/chip/theming/css-properties/demo.html
index eaf23535d78..c1e800cadf2 100644
--- a/static/usage/v9/chip/theming/css-properties/demo.html
+++ b/static/usage/v9/chip/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/config/mode/demo.html b/static/usage/v9/config/mode/demo.html
index 448ef6e333a..fea9b3c8e90 100644
--- a/static/usage/v9/config/mode/demo.html
+++ b/static/usage/v9/config/mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/content/basic/demo.html b/static/usage/v9/content/basic/demo.html
index e9cd9887c36..2e73e32e3b3 100644
--- a/static/usage/v9/content/basic/demo.html
+++ b/static/usage/v9/content/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/content/fixed/demo.html b/static/usage/v9/content/fixed/demo.html
index 7d2174bae66..0d14511550d 100644
--- a/static/usage/v9/content/fixed/demo.html
+++ b/static/usage/v9/content/fixed/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/content/fullscreen/demo.html b/static/usage/v9/content/fullscreen/demo.html
index d8ab852e514..011f8166a74 100644
--- a/static/usage/v9/content/fullscreen/demo.html
+++ b/static/usage/v9/content/fullscreen/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/content/header-footer/demo.html b/static/usage/v9/content/header-footer/demo.html
index f39dee43ed1..e976b08512e 100644
--- a/static/usage/v9/content/header-footer/demo.html
+++ b/static/usage/v9/content/header-footer/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/content/scroll-events/demo.html b/static/usage/v9/content/scroll-events/demo.html
index 4a2d4d368ad..e090a61cba2 100644
--- a/static/usage/v9/content/scroll-events/demo.html
+++ b/static/usage/v9/content/scroll-events/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/content/scroll-methods/demo.html b/static/usage/v9/content/scroll-methods/demo.html
index ea77f1e779c..9e7d73635ac 100644
--- a/static/usage/v9/content/scroll-methods/demo.html
+++ b/static/usage/v9/content/scroll-methods/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/content/theming/colors/demo.html b/static/usage/v9/content/theming/colors/demo.html
index efe23b86c0a..a15bb28d00d 100644
--- a/static/usage/v9/content/theming/colors/demo.html
+++ b/static/usage/v9/content/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/content/theming/css-properties/demo.html b/static/usage/v9/content/theming/css-properties/demo.html
index 51e691c9e85..2729db59b54 100644
--- a/static/usage/v9/content/theming/css-properties/demo.html
+++ b/static/usage/v9/content/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/content/theming/css-shadow-parts/demo.html b/static/usage/v9/content/theming/css-shadow-parts/demo.html
index e10574cceab..716d5f17ff4 100644
--- a/static/usage/v9/content/theming/css-shadow-parts/demo.html
+++ b/static/usage/v9/content/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/content/theming/safe-area/demo.html b/static/usage/v9/content/theming/safe-area/demo.html
index ac2d3cbfff7..1f58825c8f2 100644
--- a/static/usage/v9/content/theming/safe-area/demo.html
+++ b/static/usage/v9/content/theming/safe-area/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime-button/basic/demo.html b/static/usage/v9/datetime-button/basic/demo.html
index ee99910d74f..ec8a089959a 100644
--- a/static/usage/v9/datetime-button/basic/demo.html
+++ b/static/usage/v9/datetime-button/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime-button/format-options/demo.html b/static/usage/v9/datetime-button/format-options/demo.html
index 5f2cbd922f6..31bbc1ecd76 100644
--- a/static/usage/v9/datetime-button/format-options/demo.html
+++ b/static/usage/v9/datetime-button/format-options/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/basic/demo.html b/static/usage/v9/datetime/basic/demo.html
index a7fe77e07a3..2b95ab1a079 100644
--- a/static/usage/v9/datetime/basic/demo.html
+++ b/static/usage/v9/datetime/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/buttons/customizing-button-texts/demo.html b/static/usage/v9/datetime/buttons/customizing-button-texts/demo.html
index d7db49d0ae8..28bf6784277 100644
--- a/static/usage/v9/datetime/buttons/customizing-button-texts/demo.html
+++ b/static/usage/v9/datetime/buttons/customizing-button-texts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/buttons/customizing-buttons/demo.html b/static/usage/v9/datetime/buttons/customizing-buttons/demo.html
index ee2d2acb33d..01a2d2c29a7 100644
--- a/static/usage/v9/datetime/buttons/customizing-buttons/demo.html
+++ b/static/usage/v9/datetime/buttons/customizing-buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/buttons/showing-confirmation-buttons/demo.html b/static/usage/v9/datetime/buttons/showing-confirmation-buttons/demo.html
index f906aba1cfd..e00fa72e3f2 100644
--- a/static/usage/v9/datetime/buttons/showing-confirmation-buttons/demo.html
+++ b/static/usage/v9/datetime/buttons/showing-confirmation-buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/date-constraints/advanced/demo.html b/static/usage/v9/datetime/date-constraints/advanced/demo.html
index dd18c0861da..b305700ac2d 100644
--- a/static/usage/v9/datetime/date-constraints/advanced/demo.html
+++ b/static/usage/v9/datetime/date-constraints/advanced/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/date-constraints/max-min/demo.html b/static/usage/v9/datetime/date-constraints/max-min/demo.html
index e3bbf2c4608..632c3c46837 100644
--- a/static/usage/v9/datetime/date-constraints/max-min/demo.html
+++ b/static/usage/v9/datetime/date-constraints/max-min/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/date-constraints/values/demo.html b/static/usage/v9/datetime/date-constraints/values/demo.html
index 466485b6301..607f5d9ba55 100644
--- a/static/usage/v9/datetime/date-constraints/values/demo.html
+++ b/static/usage/v9/datetime/date-constraints/values/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/format-options/demo.html b/static/usage/v9/datetime/format-options/demo.html
index ba2fa11070d..97e9f862c81 100644
--- a/static/usage/v9/datetime/format-options/demo.html
+++ b/static/usage/v9/datetime/format-options/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/highlightedDates/array/demo.html b/static/usage/v9/datetime/highlightedDates/array/demo.html
index 73f90536027..2b2f3e0ddbb 100644
--- a/static/usage/v9/datetime/highlightedDates/array/demo.html
+++ b/static/usage/v9/datetime/highlightedDates/array/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/highlightedDates/callback/demo.html b/static/usage/v9/datetime/highlightedDates/callback/demo.html
index e4d8ac56470..fd47a23bd43 100644
--- a/static/usage/v9/datetime/highlightedDates/callback/demo.html
+++ b/static/usage/v9/datetime/highlightedDates/callback/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/localization/custom-locale/demo.html b/static/usage/v9/datetime/localization/custom-locale/demo.html
index d40c8cdcf91..ba47909806f 100644
--- a/static/usage/v9/datetime/localization/custom-locale/demo.html
+++ b/static/usage/v9/datetime/localization/custom-locale/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/localization/first-day-of-week/demo.html b/static/usage/v9/datetime/localization/first-day-of-week/demo.html
index c35b47edfac..8d1d5b883c2 100644
--- a/static/usage/v9/datetime/localization/first-day-of-week/demo.html
+++ b/static/usage/v9/datetime/localization/first-day-of-week/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/localization/hour-cycle/demo.html b/static/usage/v9/datetime/localization/hour-cycle/demo.html
index fcf81afe6a5..565a68c85a1 100644
--- a/static/usage/v9/datetime/localization/hour-cycle/demo.html
+++ b/static/usage/v9/datetime/localization/hour-cycle/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/localization/locale-extension-tags/demo.html b/static/usage/v9/datetime/localization/locale-extension-tags/demo.html
index cf847f3f334..8ba5e17cd24 100644
--- a/static/usage/v9/datetime/localization/locale-extension-tags/demo.html
+++ b/static/usage/v9/datetime/localization/locale-extension-tags/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/localization/time-label/demo.html b/static/usage/v9/datetime/localization/time-label/demo.html
index e804c96ecd8..31c460ba797 100644
--- a/static/usage/v9/datetime/localization/time-label/demo.html
+++ b/static/usage/v9/datetime/localization/time-label/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/multiple/demo.html b/static/usage/v9/datetime/multiple/demo.html
index 63f1dade7fc..aff79d8ae1f 100644
--- a/static/usage/v9/datetime/multiple/demo.html
+++ b/static/usage/v9/datetime/multiple/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/presentation/date/demo.html b/static/usage/v9/datetime/presentation/date/demo.html
index 4126ea73fa3..f57681a4970 100644
--- a/static/usage/v9/datetime/presentation/date/demo.html
+++ b/static/usage/v9/datetime/presentation/date/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/presentation/month-and-year/demo.html b/static/usage/v9/datetime/presentation/month-and-year/demo.html
index 54051ff17ff..fd42fce1a63 100644
--- a/static/usage/v9/datetime/presentation/month-and-year/demo.html
+++ b/static/usage/v9/datetime/presentation/month-and-year/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/presentation/time/demo.html b/static/usage/v9/datetime/presentation/time/demo.html
index 93132122244..a228d675dc9 100644
--- a/static/usage/v9/datetime/presentation/time/demo.html
+++ b/static/usage/v9/datetime/presentation/time/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/presentation/wheel/demo.html b/static/usage/v9/datetime/presentation/wheel/demo.html
index 1cca0f79e69..e82dfc9fded 100644
--- a/static/usage/v9/datetime/presentation/wheel/demo.html
+++ b/static/usage/v9/datetime/presentation/wheel/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/show-adjacent-days/demo.html b/static/usage/v9/datetime/show-adjacent-days/demo.html
index 2223097f068..e3b5ba2529c 100644
--- a/static/usage/v9/datetime/show-adjacent-days/demo.html
+++ b/static/usage/v9/datetime/show-adjacent-days/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/styling/calendar-days/demo.html b/static/usage/v9/datetime/styling/calendar-days/demo.html
index f7234e76905..3e34adb00dc 100644
--- a/static/usage/v9/datetime/styling/calendar-days/demo.html
+++ b/static/usage/v9/datetime/styling/calendar-days/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/styling/calendar-header/demo.html b/static/usage/v9/datetime/styling/calendar-header/demo.html
index 3bcef649038..75e5bde58cb 100644
--- a/static/usage/v9/datetime/styling/calendar-header/demo.html
+++ b/static/usage/v9/datetime/styling/calendar-header/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/styling/datetime-header/demo.html b/static/usage/v9/datetime/styling/datetime-header/demo.html
index 63f99c1f244..80f572b6d97 100644
--- a/static/usage/v9/datetime/styling/datetime-header/demo.html
+++ b/static/usage/v9/datetime/styling/datetime-header/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/styling/global-theming/demo.html b/static/usage/v9/datetime/styling/global-theming/demo.html
index f6f96d39076..50813a7e303 100644
--- a/static/usage/v9/datetime/styling/global-theming/demo.html
+++ b/static/usage/v9/datetime/styling/global-theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/styling/wheel-styling/demo.html b/static/usage/v9/datetime/styling/wheel-styling/demo.html
index a162992c999..2af14edff93 100644
--- a/static/usage/v9/datetime/styling/wheel-styling/demo.html
+++ b/static/usage/v9/datetime/styling/wheel-styling/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/title/customizing-title/demo.html b/static/usage/v9/datetime/title/customizing-title/demo.html
index 0c4bbcee200..49d7ce1b607 100644
--- a/static/usage/v9/datetime/title/customizing-title/demo.html
+++ b/static/usage/v9/datetime/title/customizing-title/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/datetime/title/showing-default-title/demo.html b/static/usage/v9/datetime/title/showing-default-title/demo.html
index 7618244d3d5..4016eb120e1 100644
--- a/static/usage/v9/datetime/title/showing-default-title/demo.html
+++ b/static/usage/v9/datetime/title/showing-default-title/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/fab/basic/demo.html b/static/usage/v9/fab/basic/demo.html
index 04615655c91..1d4e6f2faa5 100644
--- a/static/usage/v9/fab/basic/demo.html
+++ b/static/usage/v9/fab/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/fab/before-content/demo.html b/static/usage/v9/fab/before-content/demo.html
index e0e9b8254a0..c167428bcf1 100644
--- a/static/usage/v9/fab/before-content/demo.html
+++ b/static/usage/v9/fab/before-content/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/fab/button-sizing/demo.html b/static/usage/v9/fab/button-sizing/demo.html
index 9d3cc27c02f..a41fb35af6a 100644
--- a/static/usage/v9/fab/button-sizing/demo.html
+++ b/static/usage/v9/fab/button-sizing/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/fab/list-side/demo.html b/static/usage/v9/fab/list-side/demo.html
index 9d3ceae1059..f2bcc167404 100644
--- a/static/usage/v9/fab/list-side/demo.html
+++ b/static/usage/v9/fab/list-side/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/fab/positioning/demo.html b/static/usage/v9/fab/positioning/demo.html
index 46de89f2f22..c03e1a7e805 100644
--- a/static/usage/v9/fab/positioning/demo.html
+++ b/static/usage/v9/fab/positioning/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/fab/safe-area/demo.html b/static/usage/v9/fab/safe-area/demo.html
index 45e4523bd77..1cffc921f5e 100644
--- a/static/usage/v9/fab/safe-area/demo.html
+++ b/static/usage/v9/fab/safe-area/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/fab/theming/colors/demo.html b/static/usage/v9/fab/theming/colors/demo.html
index 27b962188e8..388b788f301 100644
--- a/static/usage/v9/fab/theming/colors/demo.html
+++ b/static/usage/v9/fab/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/fab/theming/css-custom-properties/demo.html b/static/usage/v9/fab/theming/css-custom-properties/demo.html
index 2053586e290..e7ab56310eb 100644
--- a/static/usage/v9/fab/theming/css-custom-properties/demo.html
+++ b/static/usage/v9/fab/theming/css-custom-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/fab/theming/css-shadow-parts/angular/example_component_css.md b/static/usage/v9/fab/theming/css-shadow-parts/angular/example_component_css.md
index 4bb8b96988c..c9d1d804827 100644
--- a/static/usage/v9/fab/theming/css-shadow-parts/angular/example_component_css.md
+++ b/static/usage/v9/fab/theming/css-shadow-parts/angular/example_component_css.md
@@ -2,7 +2,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v9/fab/theming/css-shadow-parts/demo.html b/static/usage/v9/fab/theming/css-shadow-parts/demo.html
index 50b93d2e0d9..90d97f1a942 100644
--- a/static/usage/v9/fab/theming/css-shadow-parts/demo.html
+++ b/static/usage/v9/fab/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
@@ -13,7 +13,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v9/fab/theming/css-shadow-parts/javascript.md b/static/usage/v9/fab/theming/css-shadow-parts/javascript.md
index 19c1441fe2f..cd18636cadc 100644
--- a/static/usage/v9/fab/theming/css-shadow-parts/javascript.md
+++ b/static/usage/v9/fab/theming/css-shadow-parts/javascript.md
@@ -3,7 +3,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v9/fab/theming/css-shadow-parts/javascript/index_html.md b/static/usage/v9/fab/theming/css-shadow-parts/javascript/index_html.md
index 19c1441fe2f..cd18636cadc 100644
--- a/static/usage/v9/fab/theming/css-shadow-parts/javascript/index_html.md
+++ b/static/usage/v9/fab/theming/css-shadow-parts/javascript/index_html.md
@@ -3,7 +3,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v9/fab/theming/css-shadow-parts/react/main_css.md b/static/usage/v9/fab/theming/css-shadow-parts/react/main_css.md
index 4bb8b96988c..c9d1d804827 100644
--- a/static/usage/v9/fab/theming/css-shadow-parts/react/main_css.md
+++ b/static/usage/v9/fab/theming/css-shadow-parts/react/main_css.md
@@ -2,7 +2,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v9/fab/theming/css-shadow-parts/vue.md b/static/usage/v9/fab/theming/css-shadow-parts/vue.md
index 972bf430cc9..e4706372b9b 100644
--- a/static/usage/v9/fab/theming/css-shadow-parts/vue.md
+++ b/static/usage/v9/fab/theming/css-shadow-parts/vue.md
@@ -27,7 +27,9 @@
ion-fab-button::part(native) {
background-color: #b7f399;
border-radius: 15px;
- box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
+ box-shadow:
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.3),
+ 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
color: black;
}
diff --git a/static/usage/v9/footer/basic/demo.html b/static/usage/v9/footer/basic/demo.html
index 0a866dbe866..cef8b729b36 100644
--- a/static/usage/v9/footer/basic/demo.html
+++ b/static/usage/v9/footer/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/footer/custom-scroll-target/demo.html b/static/usage/v9/footer/custom-scroll-target/demo.html
index 55ec7b1666e..36ebba2f55a 100644
--- a/static/usage/v9/footer/custom-scroll-target/demo.html
+++ b/static/usage/v9/footer/custom-scroll-target/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/footer/fade/demo.html b/static/usage/v9/footer/fade/demo.html
index 96bebd85765..bedede48322 100644
--- a/static/usage/v9/footer/fade/demo.html
+++ b/static/usage/v9/footer/fade/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/footer/no-border/demo.html b/static/usage/v9/footer/no-border/demo.html
index f5ae5a11323..2ef26d2e4df 100644
--- a/static/usage/v9/footer/no-border/demo.html
+++ b/static/usage/v9/footer/no-border/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/footer/translucent/demo.html b/static/usage/v9/footer/translucent/demo.html
index 8c1d320f28d..c6401b6f8f2 100644
--- a/static/usage/v9/footer/translucent/demo.html
+++ b/static/usage/v9/footer/translucent/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/gestures/basic/angular/example_component_ts.md b/static/usage/v9/gestures/basic/angular/example_component_ts.md
index f9aee1ecf5e..5438e9980ce 100644
--- a/static/usage/v9/gestures/basic/angular/example_component_ts.md
+++ b/static/usage/v9/gestures/basic/angular/example_component_ts.md
@@ -15,7 +15,11 @@ export class ExampleComponent {
isCardActive = false;
- constructor(private el: ElementRef, private gestureCtrl: GestureController, private cdRef: ChangeDetectorRef) {}
+ constructor(
+ private el: ElementRef,
+ private gestureCtrl: GestureController,
+ private cdRef: ChangeDetectorRef
+ ) {}
ngAfterViewInit() {
const gesture = this.gestureCtrl.create({
diff --git a/static/usage/v9/gestures/basic/demo.html b/static/usage/v9/gestures/basic/demo.html
index 83c70296705..3dd7dea4d14 100644
--- a/static/usage/v9/gestures/basic/demo.html
+++ b/static/usage/v9/gestures/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/gestures/double-click/angular/example_component_ts.md b/static/usage/v9/gestures/double-click/angular/example_component_ts.md
index 34e2ac44a71..62f18c61876 100644
--- a/static/usage/v9/gestures/double-click/angular/example_component_ts.md
+++ b/static/usage/v9/gestures/double-click/angular/example_component_ts.md
@@ -15,7 +15,10 @@ export class ExampleComponent {
private lastOnStart: number = 0;
private DOUBLE_CLICK_THRESHOLD: number = 500;
- constructor(private el: ElementRef, private gestureCtrl: GestureController) {}
+ constructor(
+ private el: ElementRef,
+ private gestureCtrl: GestureController
+ ) {}
ngAfterViewInit() {
const gesture = this.gestureCtrl.create({
diff --git a/static/usage/v9/gestures/double-click/demo.html b/static/usage/v9/gestures/double-click/demo.html
index 9ce6603cef5..d2fbfa3d8ab 100644
--- a/static/usage/v9/gestures/double-click/demo.html
+++ b/static/usage/v9/gestures/double-click/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/basic/demo.html b/static/usage/v9/grid/basic/demo.html
index 949f7cd5224..5b5199dbc89 100644
--- a/static/usage/v9/grid/basic/demo.html
+++ b/static/usage/v9/grid/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/customizing/column-number/demo.html b/static/usage/v9/grid/customizing/column-number/demo.html
index 0b95ae58454..0b280c0b474 100644
--- a/static/usage/v9/grid/customizing/column-number/demo.html
+++ b/static/usage/v9/grid/customizing/column-number/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/customizing/padding/demo.html b/static/usage/v9/grid/customizing/padding/demo.html
index 9640b210c58..268aa3148bf 100644
--- a/static/usage/v9/grid/customizing/padding/demo.html
+++ b/static/usage/v9/grid/customizing/padding/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/customizing/width/demo.html b/static/usage/v9/grid/customizing/width/demo.html
index 8eb7d3a4e12..987507d3ea0 100644
--- a/static/usage/v9/grid/customizing/width/demo.html
+++ b/static/usage/v9/grid/customizing/width/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/fixed/demo.html b/static/usage/v9/grid/fixed/demo.html
index aac4c61db3b..f276d668a53 100644
--- a/static/usage/v9/grid/fixed/demo.html
+++ b/static/usage/v9/grid/fixed/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/horizontal-alignment/demo.html b/static/usage/v9/grid/horizontal-alignment/demo.html
index e64afeff844..d06792a2058 100644
--- a/static/usage/v9/grid/horizontal-alignment/demo.html
+++ b/static/usage/v9/grid/horizontal-alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/offset-responsive/demo.html b/static/usage/v9/grid/offset-responsive/demo.html
index 1e1afb2885d..35e43d8bea3 100644
--- a/static/usage/v9/grid/offset-responsive/demo.html
+++ b/static/usage/v9/grid/offset-responsive/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/offset/demo.html b/static/usage/v9/grid/offset/demo.html
index 8cbdf8a4283..575d32d31d0 100644
--- a/static/usage/v9/grid/offset/demo.html
+++ b/static/usage/v9/grid/offset/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/push-pull-responsive/demo.html b/static/usage/v9/grid/push-pull-responsive/demo.html
index a68f6efef01..320a415a59f 100644
--- a/static/usage/v9/grid/push-pull-responsive/demo.html
+++ b/static/usage/v9/grid/push-pull-responsive/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/push-pull/demo.html b/static/usage/v9/grid/push-pull/demo.html
index 153c11eb74d..e83f0536e6f 100644
--- a/static/usage/v9/grid/push-pull/demo.html
+++ b/static/usage/v9/grid/push-pull/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/size-auto/demo.html b/static/usage/v9/grid/size-auto/demo.html
index 8309adecbfd..5c5dc6004dc 100644
--- a/static/usage/v9/grid/size-auto/demo.html
+++ b/static/usage/v9/grid/size-auto/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/size-responsive/demo.html b/static/usage/v9/grid/size-responsive/demo.html
index 4b974007200..e4d90f0327d 100644
--- a/static/usage/v9/grid/size-responsive/demo.html
+++ b/static/usage/v9/grid/size-responsive/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/size/demo.html b/static/usage/v9/grid/size/demo.html
index 7f95e605e2a..74bf1512f35 100644
--- a/static/usage/v9/grid/size/demo.html
+++ b/static/usage/v9/grid/size/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/grid/vertical-alignment/demo.html b/static/usage/v9/grid/vertical-alignment/demo.html
index b3066207aa9..c2973296e3c 100644
--- a/static/usage/v9/grid/vertical-alignment/demo.html
+++ b/static/usage/v9/grid/vertical-alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/header/basic/demo.html b/static/usage/v9/header/basic/demo.html
index 77ce77c1b13..693db411eec 100644
--- a/static/usage/v9/header/basic/demo.html
+++ b/static/usage/v9/header/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/header/condense/demo.html b/static/usage/v9/header/condense/demo.html
index e68dd889475..57418c058ee 100644
--- a/static/usage/v9/header/condense/demo.html
+++ b/static/usage/v9/header/condense/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/header/custom-scroll-target/demo.html b/static/usage/v9/header/custom-scroll-target/demo.html
index 9341e2c07a8..582df7ee8a2 100644
--- a/static/usage/v9/header/custom-scroll-target/demo.html
+++ b/static/usage/v9/header/custom-scroll-target/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/header/fade/demo.html b/static/usage/v9/header/fade/demo.html
index 2158c932198..302975d8b10 100644
--- a/static/usage/v9/header/fade/demo.html
+++ b/static/usage/v9/header/fade/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/header/no-border/demo.html b/static/usage/v9/header/no-border/demo.html
index e561641903a..7d788718b3b 100644
--- a/static/usage/v9/header/no-border/demo.html
+++ b/static/usage/v9/header/no-border/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/header/translucent/demo.html b/static/usage/v9/header/translucent/demo.html
index 8b8ba4e5fd4..5e7ac5df84c 100644
--- a/static/usage/v9/header/translucent/demo.html
+++ b/static/usage/v9/header/translucent/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/icon/basic/demo.html b/static/usage/v9/icon/basic/demo.html
index ed04a8db2ae..352617b24af 100644
--- a/static/usage/v9/icon/basic/demo.html
+++ b/static/usage/v9/icon/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/icon/custom-svgs/demo.html b/static/usage/v9/icon/custom-svgs/demo.html
index c2a0746baa8..2ce36f5d415 100644
--- a/static/usage/v9/icon/custom-svgs/demo.html
+++ b/static/usage/v9/icon/custom-svgs/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/icon/font-icons/demo.html b/static/usage/v9/icon/font-icons/demo.html
index 0cf98072ecb..68a184ddd96 100644
--- a/static/usage/v9/icon/font-icons/demo.html
+++ b/static/usage/v9/icon/font-icons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/img/basic/demo.html b/static/usage/v9/img/basic/demo.html
index baed8638724..620dff5c755 100644
--- a/static/usage/v9/img/basic/demo.html
+++ b/static/usage/v9/img/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/infinite-scroll/basic/demo.html b/static/usage/v9/infinite-scroll/basic/demo.html
index 29b7784e6cf..5e3a7326beb 100644
--- a/static/usage/v9/infinite-scroll/basic/demo.html
+++ b/static/usage/v9/infinite-scroll/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/infinite-scroll/custom-infinite-scroll-content/demo.html b/static/usage/v9/infinite-scroll/custom-infinite-scroll-content/demo.html
index 95dc010360c..9b877472d8f 100644
--- a/static/usage/v9/infinite-scroll/custom-infinite-scroll-content/demo.html
+++ b/static/usage/v9/infinite-scroll/custom-infinite-scroll-content/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/infinite-scroll/infinite-scroll-content/demo.html b/static/usage/v9/infinite-scroll/infinite-scroll-content/demo.html
index de95908d8d8..dcb4e5c4f2d 100644
--- a/static/usage/v9/infinite-scroll/infinite-scroll-content/demo.html
+++ b/static/usage/v9/infinite-scroll/infinite-scroll-content/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input-otp/basic/demo.html b/static/usage/v9/input-otp/basic/demo.html
index 5bb3b201172..99afdd5cb5f 100644
--- a/static/usage/v9/input-otp/basic/demo.html
+++ b/static/usage/v9/input-otp/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input-otp/fill/demo.html b/static/usage/v9/input-otp/fill/demo.html
index 629bb749df3..0f1d791657d 100644
--- a/static/usage/v9/input-otp/fill/demo.html
+++ b/static/usage/v9/input-otp/fill/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input-otp/pattern/demo.html b/static/usage/v9/input-otp/pattern/demo.html
index a6bcb682824..aa99ec5ce6e 100644
--- a/static/usage/v9/input-otp/pattern/demo.html
+++ b/static/usage/v9/input-otp/pattern/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input-otp/separators/demo.html b/static/usage/v9/input-otp/separators/demo.html
index adb5a1e2f8b..6524ae80a7b 100644
--- a/static/usage/v9/input-otp/separators/demo.html
+++ b/static/usage/v9/input-otp/separators/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input-otp/shape/demo.html b/static/usage/v9/input-otp/shape/demo.html
index 0631c515b2d..6f87900d009 100644
--- a/static/usage/v9/input-otp/shape/demo.html
+++ b/static/usage/v9/input-otp/shape/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input-otp/size/demo.html b/static/usage/v9/input-otp/size/demo.html
index 46f9893937d..2cc0f49bfe0 100644
--- a/static/usage/v9/input-otp/size/demo.html
+++ b/static/usage/v9/input-otp/size/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input-otp/states/demo.html b/static/usage/v9/input-otp/states/demo.html
index 165db912d02..50be95c18e8 100644
--- a/static/usage/v9/input-otp/states/demo.html
+++ b/static/usage/v9/input-otp/states/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input-otp/theming/colors/demo.html b/static/usage/v9/input-otp/theming/colors/demo.html
index 1ca302e79f3..8df41109f47 100644
--- a/static/usage/v9/input-otp/theming/colors/demo.html
+++ b/static/usage/v9/input-otp/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input-otp/theming/css-properties/demo.html b/static/usage/v9/input-otp/theming/css-properties/demo.html
index b606feb1137..5b2014c1db2 100644
--- a/static/usage/v9/input-otp/theming/css-properties/demo.html
+++ b/static/usage/v9/input-otp/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input-otp/type/demo.html b/static/usage/v9/input-otp/type/demo.html
index 77fd034270c..335f1aa5969 100644
--- a/static/usage/v9/input-otp/type/demo.html
+++ b/static/usage/v9/input-otp/type/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input-password-toggle/basic/demo.html b/static/usage/v9/input-password-toggle/basic/demo.html
index 620fa0c3a91..736e6ff9680 100644
--- a/static/usage/v9/input-password-toggle/basic/demo.html
+++ b/static/usage/v9/input-password-toggle/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/basic/demo.html b/static/usage/v9/input/basic/demo.html
index 63b2c737d62..a4dc23cafef 100644
--- a/static/usage/v9/input/basic/demo.html
+++ b/static/usage/v9/input/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/clear/demo.html b/static/usage/v9/input/clear/demo.html
index 09d36e52439..43e2cb40d32 100644
--- a/static/usage/v9/input/clear/demo.html
+++ b/static/usage/v9/input/clear/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/counter-alignment/demo.html b/static/usage/v9/input/counter-alignment/demo.html
index aed09e45535..6ea99c7deac 100644
--- a/static/usage/v9/input/counter-alignment/demo.html
+++ b/static/usage/v9/input/counter-alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/counter/demo.html b/static/usage/v9/input/counter/demo.html
index 0fb81c1b2db..ef2ac0577a5 100644
--- a/static/usage/v9/input/counter/demo.html
+++ b/static/usage/v9/input/counter/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/fill/demo.html b/static/usage/v9/input/fill/demo.html
index dd3607da870..4a65a9b993f 100644
--- a/static/usage/v9/input/fill/demo.html
+++ b/static/usage/v9/input/fill/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/filtering/demo.html b/static/usage/v9/input/filtering/demo.html
index 6c4ef5c8736..85a1f27c688 100644
--- a/static/usage/v9/input/filtering/demo.html
+++ b/static/usage/v9/input/filtering/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/helper-error/demo.html b/static/usage/v9/input/helper-error/demo.html
index a489cb11a3f..f6662ea499a 100644
--- a/static/usage/v9/input/helper-error/demo.html
+++ b/static/usage/v9/input/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/label-placement/demo.html b/static/usage/v9/input/label-placement/demo.html
index 7953ec266a7..e768b7718fe 100644
--- a/static/usage/v9/input/label-placement/demo.html
+++ b/static/usage/v9/input/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/label-slot/demo.html b/static/usage/v9/input/label-slot/demo.html
index 00d5652a23c..94d2dc02647 100644
--- a/static/usage/v9/input/label-slot/demo.html
+++ b/static/usage/v9/input/label-slot/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/mask/demo.html b/static/usage/v9/input/mask/demo.html
index dc45874e043..08a73757a86 100644
--- a/static/usage/v9/input/mask/demo.html
+++ b/static/usage/v9/input/mask/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/no-visible-label/demo.html b/static/usage/v9/input/no-visible-label/demo.html
index cb90ecfe0c7..05642006f30 100644
--- a/static/usage/v9/input/no-visible-label/demo.html
+++ b/static/usage/v9/input/no-visible-label/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/set-focus/demo.html b/static/usage/v9/input/set-focus/demo.html
index 97c172db82f..2b59dac883d 100644
--- a/static/usage/v9/input/set-focus/demo.html
+++ b/static/usage/v9/input/set-focus/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/start-end-slots/demo.html b/static/usage/v9/input/start-end-slots/demo.html
index c327f737abe..665b67d97f6 100644
--- a/static/usage/v9/input/start-end-slots/demo.html
+++ b/static/usage/v9/input/start-end-slots/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/theming/colors/demo.html b/static/usage/v9/input/theming/colors/demo.html
index 97cfc345a51..e1e5f4189eb 100644
--- a/static/usage/v9/input/theming/colors/demo.html
+++ b/static/usage/v9/input/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/theming/css-properties/demo.html b/static/usage/v9/input/theming/css-properties/demo.html
index d82461b2113..de552f52d0f 100644
--- a/static/usage/v9/input/theming/css-properties/demo.html
+++ b/static/usage/v9/input/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/input/types/demo.html b/static/usage/v9/input/types/demo.html
index a73aa8cd7fd..edf35a41d2a 100644
--- a/static/usage/v9/input/types/demo.html
+++ b/static/usage/v9/input/types/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item-divider/basic/demo.html b/static/usage/v9/item-divider/basic/demo.html
index ce5fb25eab6..25b08dddc39 100644
--- a/static/usage/v9/item-divider/basic/demo.html
+++ b/static/usage/v9/item-divider/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item-divider/theming/colors/demo.html b/static/usage/v9/item-divider/theming/colors/demo.html
index 24dc0354eee..7d2e44d7a51 100644
--- a/static/usage/v9/item-divider/theming/colors/demo.html
+++ b/static/usage/v9/item-divider/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item-divider/theming/css-properties/demo.html b/static/usage/v9/item-divider/theming/css-properties/demo.html
index 7f5e55bad5b..c3043fdfad5 100644
--- a/static/usage/v9/item-divider/theming/css-properties/demo.html
+++ b/static/usage/v9/item-divider/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item-group/basic/demo.html b/static/usage/v9/item-group/basic/demo.html
index 748afc90ee8..bf15978684e 100644
--- a/static/usage/v9/item-group/basic/demo.html
+++ b/static/usage/v9/item-group/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item-group/sliding-items/demo.html b/static/usage/v9/item-group/sliding-items/demo.html
index 9b1438916e5..f48fbab921c 100644
--- a/static/usage/v9/item-group/sliding-items/demo.html
+++ b/static/usage/v9/item-group/sliding-items/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item-sliding/basic/demo.html b/static/usage/v9/item-sliding/basic/demo.html
index 2f26e0e210d..b42d6e947a5 100644
--- a/static/usage/v9/item-sliding/basic/demo.html
+++ b/static/usage/v9/item-sliding/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item-sliding/expandable/demo.html b/static/usage/v9/item-sliding/expandable/demo.html
index 6ceebea9641..9dceb8a76a0 100644
--- a/static/usage/v9/item-sliding/expandable/demo.html
+++ b/static/usage/v9/item-sliding/expandable/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item-sliding/icons/demo.html b/static/usage/v9/item-sliding/icons/demo.html
index a2d58f248e1..a976b87eba9 100644
--- a/static/usage/v9/item-sliding/icons/demo.html
+++ b/static/usage/v9/item-sliding/icons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/basic/demo.html b/static/usage/v9/item/basic/demo.html
index 1530a541672..8bbe5c8fc16 100644
--- a/static/usage/v9/item/basic/demo.html
+++ b/static/usage/v9/item/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/buttons/demo.html b/static/usage/v9/item/buttons/demo.html
index 25b0613c0f4..59a89c69680 100644
--- a/static/usage/v9/item/buttons/demo.html
+++ b/static/usage/v9/item/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/clickable/demo.html b/static/usage/v9/item/clickable/demo.html
index b2e63e391c5..9a261530993 100644
--- a/static/usage/v9/item/clickable/demo.html
+++ b/static/usage/v9/item/clickable/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/content-types/actions/demo.html b/static/usage/v9/item/content-types/actions/demo.html
index f5ba56e5c0d..42538bcac14 100644
--- a/static/usage/v9/item/content-types/actions/demo.html
+++ b/static/usage/v9/item/content-types/actions/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/content-types/controls/demo.html b/static/usage/v9/item/content-types/controls/demo.html
index 0514f72d6ca..87b669f45d8 100644
--- a/static/usage/v9/item/content-types/controls/demo.html
+++ b/static/usage/v9/item/content-types/controls/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/content-types/metadata/demo.html b/static/usage/v9/item/content-types/metadata/demo.html
index 2475f5cd5f0..b48ae5ffda7 100644
--- a/static/usage/v9/item/content-types/metadata/demo.html
+++ b/static/usage/v9/item/content-types/metadata/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/content-types/supporting-visuals/demo.html b/static/usage/v9/item/content-types/supporting-visuals/demo.html
index 0e18c634ab5..7e405922d0d 100644
--- a/static/usage/v9/item/content-types/supporting-visuals/demo.html
+++ b/static/usage/v9/item/content-types/supporting-visuals/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/content-types/text/demo.html b/static/usage/v9/item/content-types/text/demo.html
index 7681665a339..b743c2b3fbb 100644
--- a/static/usage/v9/item/content-types/text/demo.html
+++ b/static/usage/v9/item/content-types/text/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/detail-arrows/demo.html b/static/usage/v9/item/detail-arrows/demo.html
index a757c9eb853..9768f198eb2 100644
--- a/static/usage/v9/item/detail-arrows/demo.html
+++ b/static/usage/v9/item/detail-arrows/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/inputs/demo.html b/static/usage/v9/item/inputs/demo.html
index d09da10eb5a..ba6820ac7d9 100644
--- a/static/usage/v9/item/inputs/demo.html
+++ b/static/usage/v9/item/inputs/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/lines/demo.html b/static/usage/v9/item/lines/demo.html
index 0abd1628eb1..27c66147233 100644
--- a/static/usage/v9/item/lines/demo.html
+++ b/static/usage/v9/item/lines/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/media/demo.html b/static/usage/v9/item/media/demo.html
index 99ef636e6c3..1a167f2d4fa 100644
--- a/static/usage/v9/item/media/demo.html
+++ b/static/usage/v9/item/media/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/theming/colors/demo.html b/static/usage/v9/item/theming/colors/demo.html
index 71cc7d275ba..b464a45053f 100644
--- a/static/usage/v9/item/theming/colors/demo.html
+++ b/static/usage/v9/item/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/theming/css-properties/demo.html b/static/usage/v9/item/theming/css-properties/demo.html
index 549555682d2..273fab917dd 100644
--- a/static/usage/v9/item/theming/css-properties/demo.html
+++ b/static/usage/v9/item/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/theming/css-shadow-parts/demo.html b/static/usage/v9/item/theming/css-shadow-parts/demo.html
index 1b5f723eeaf..a4dc24d747b 100644
--- a/static/usage/v9/item/theming/css-shadow-parts/demo.html
+++ b/static/usage/v9/item/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/item/theming/input-highlight/demo.html b/static/usage/v9/item/theming/input-highlight/demo.html
index 065f7f4d151..bc6683ae1d0 100644
--- a/static/usage/v9/item/theming/input-highlight/demo.html
+++ b/static/usage/v9/item/theming/input-highlight/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/keyboard/enterkeyhint/demo.html b/static/usage/v9/keyboard/enterkeyhint/demo.html
index c5db385acf0..dbe76c53d8b 100644
--- a/static/usage/v9/keyboard/enterkeyhint/demo.html
+++ b/static/usage/v9/keyboard/enterkeyhint/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/keyboard/inputmode/demo.html b/static/usage/v9/keyboard/inputmode/demo.html
index af9eab2c697..cebe38324bd 100644
--- a/static/usage/v9/keyboard/inputmode/demo.html
+++ b/static/usage/v9/keyboard/inputmode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/label/basic/demo.html b/static/usage/v9/label/basic/demo.html
index 5acfa6924f0..441d1c8a0e7 100644
--- a/static/usage/v9/label/basic/demo.html
+++ b/static/usage/v9/label/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/label/input/demo.html b/static/usage/v9/label/input/demo.html
index 4bdb561eeaa..88aa6291df2 100644
--- a/static/usage/v9/label/input/demo.html
+++ b/static/usage/v9/label/input/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/label/item/demo.html b/static/usage/v9/label/item/demo.html
index d552e11ed07..e136a4aeae3 100644
--- a/static/usage/v9/label/item/demo.html
+++ b/static/usage/v9/label/item/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/label/theming/colors/demo.html b/static/usage/v9/label/theming/colors/demo.html
index a560d6c5876..2343bf2631e 100644
--- a/static/usage/v9/label/theming/colors/demo.html
+++ b/static/usage/v9/label/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/layout/dynamic-font-scaling/demo.html b/static/usage/v9/layout/dynamic-font-scaling/demo.html
index a486f91572d..5388319ab22 100644
--- a/static/usage/v9/layout/dynamic-font-scaling/demo.html
+++ b/static/usage/v9/layout/dynamic-font-scaling/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/list-header/basic/demo.html b/static/usage/v9/list-header/basic/demo.html
index 88c71bf4f86..d11a906e7ba 100644
--- a/static/usage/v9/list-header/basic/demo.html
+++ b/static/usage/v9/list-header/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/list-header/buttons/demo.html b/static/usage/v9/list-header/buttons/demo.html
index 42a91202bca..075e849ef8d 100644
--- a/static/usage/v9/list-header/buttons/demo.html
+++ b/static/usage/v9/list-header/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/list-header/lines/demo.html b/static/usage/v9/list-header/lines/demo.html
index c283438c153..5832e7c9e90 100644
--- a/static/usage/v9/list-header/lines/demo.html
+++ b/static/usage/v9/list-header/lines/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/list-header/theming/colors/demo.html b/static/usage/v9/list-header/theming/colors/demo.html
index 3f5dd6c4c85..e9afb1be15f 100644
--- a/static/usage/v9/list-header/theming/colors/demo.html
+++ b/static/usage/v9/list-header/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/list-header/theming/css-properties/demo.html b/static/usage/v9/list-header/theming/css-properties/demo.html
index 6e729e4ccea..745456bea26 100644
--- a/static/usage/v9/list-header/theming/css-properties/demo.html
+++ b/static/usage/v9/list-header/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/list/basic/demo.html b/static/usage/v9/list/basic/demo.html
index 05a81de43e4..2d6db67f083 100644
--- a/static/usage/v9/list/basic/demo.html
+++ b/static/usage/v9/list/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/list/inset/demo.html b/static/usage/v9/list/inset/demo.html
index 34ff4ef6b48..07e0a1fa7e8 100644
--- a/static/usage/v9/list/inset/demo.html
+++ b/static/usage/v9/list/inset/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/list/lines/demo.html b/static/usage/v9/list/lines/demo.html
index 2c5de893e77..454b6a9203a 100644
--- a/static/usage/v9/list/lines/demo.html
+++ b/static/usage/v9/list/lines/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/loading/controller/demo.html b/static/usage/v9/loading/controller/demo.html
index 8d4fc9231e0..dcb3fb9ec6b 100644
--- a/static/usage/v9/loading/controller/demo.html
+++ b/static/usage/v9/loading/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/loading/inline/demo.html b/static/usage/v9/loading/inline/demo.html
index 55e15f89200..1c40fdf189a 100644
--- a/static/usage/v9/loading/inline/demo.html
+++ b/static/usage/v9/loading/inline/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/loading/spinners/demo.html b/static/usage/v9/loading/spinners/demo.html
index d2d5360512b..90d3c521c94 100644
--- a/static/usage/v9/loading/spinners/demo.html
+++ b/static/usage/v9/loading/spinners/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/loading/theming/demo.html b/static/usage/v9/loading/theming/demo.html
index 053bcfff292..cd776808651 100644
--- a/static/usage/v9/loading/theming/demo.html
+++ b/static/usage/v9/loading/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/menu/basic/demo.html b/static/usage/v9/menu/basic/demo.html
index 1a1a2f26ab2..e7cab1bfca7 100644
--- a/static/usage/v9/menu/basic/demo.html
+++ b/static/usage/v9/menu/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/menu/multiple/demo.html b/static/usage/v9/menu/multiple/demo.html
index 3f21bbe58f0..e65bff5d99d 100644
--- a/static/usage/v9/menu/multiple/demo.html
+++ b/static/usage/v9/menu/multiple/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/menu/sides/demo.html b/static/usage/v9/menu/sides/demo.html
index 43523316a70..a1c3ed9f22f 100644
--- a/static/usage/v9/menu/sides/demo.html
+++ b/static/usage/v9/menu/sides/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/menu/theming/demo.html b/static/usage/v9/menu/theming/demo.html
index 5b89ad39cc1..62cc9f873ee 100644
--- a/static/usage/v9/menu/theming/demo.html
+++ b/static/usage/v9/menu/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/menu/toggle/demo.html b/static/usage/v9/menu/toggle/demo.html
index 9fff9da463b..43e7ab15ef2 100644
--- a/static/usage/v9/menu/toggle/demo.html
+++ b/static/usage/v9/menu/toggle/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/menu/type/demo.html b/static/usage/v9/menu/type/demo.html
index 3a948b0a9e2..1c5e421788d 100644
--- a/static/usage/v9/menu/type/demo.html
+++ b/static/usage/v9/menu/type/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/menu/type/react.md b/static/usage/v9/menu/type/react.md
index af341a0e753..d68a04a7ca9 100644
--- a/static/usage/v9/menu/type/react.md
+++ b/static/usage/v9/menu/type/react.md
@@ -61,7 +61,8 @@ function Example() {
push
-
+ {' '}
+
Click to open the menu
diff --git a/static/usage/v9/modal/can-dismiss/boolean/demo.html b/static/usage/v9/modal/can-dismiss/boolean/demo.html
index 1ce0224555e..a6dc5989ccc 100644
--- a/static/usage/v9/modal/can-dismiss/boolean/demo.html
+++ b/static/usage/v9/modal/can-dismiss/boolean/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/can-dismiss/child-state/demo.html b/static/usage/v9/modal/can-dismiss/child-state/demo.html
index 100ca0c7e23..539a3fcc548 100644
--- a/static/usage/v9/modal/can-dismiss/child-state/demo.html
+++ b/static/usage/v9/modal/can-dismiss/child-state/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/can-dismiss/function/demo.html b/static/usage/v9/modal/can-dismiss/function/demo.html
index b8f5e67ff17..e3fd36ae872 100644
--- a/static/usage/v9/modal/can-dismiss/function/demo.html
+++ b/static/usage/v9/modal/can-dismiss/function/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/can-dismiss/prevent-swipe-to-close/demo.html b/static/usage/v9/modal/can-dismiss/prevent-swipe-to-close/demo.html
index 2fc3602abde..45335f4d023 100644
--- a/static/usage/v9/modal/can-dismiss/prevent-swipe-to-close/demo.html
+++ b/static/usage/v9/modal/can-dismiss/prevent-swipe-to-close/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/card/basic/demo.html b/static/usage/v9/modal/card/basic/demo.html
index 06ca3cf1c08..8100d154b58 100644
--- a/static/usage/v9/modal/card/basic/demo.html
+++ b/static/usage/v9/modal/card/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/controller/demo.html b/static/usage/v9/modal/controller/demo.html
index 05806f85021..3939ac6d724 100644
--- a/static/usage/v9/modal/controller/demo.html
+++ b/static/usage/v9/modal/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/custom-dialogs/demo.html b/static/usage/v9/modal/custom-dialogs/demo.html
index 84e140e29c1..d517c7b6900 100644
--- a/static/usage/v9/modal/custom-dialogs/demo.html
+++ b/static/usage/v9/modal/custom-dialogs/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/drag-move-event/demo.html b/static/usage/v9/modal/drag-move-event/demo.html
index f3f66678787..ae3faaa27ed 100644
--- a/static/usage/v9/modal/drag-move-event/demo.html
+++ b/static/usage/v9/modal/drag-move-event/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/drag-start-end-events/demo.html b/static/usage/v9/modal/drag-start-end-events/demo.html
index da98b7dbe7b..bb703f97408 100644
--- a/static/usage/v9/modal/drag-start-end-events/demo.html
+++ b/static/usage/v9/modal/drag-start-end-events/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/inline/basic/demo.html b/static/usage/v9/modal/inline/basic/demo.html
index 41cf89f5bac..ae19e0b7009 100644
--- a/static/usage/v9/modal/inline/basic/demo.html
+++ b/static/usage/v9/modal/inline/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/inline/is-open/demo.html b/static/usage/v9/modal/inline/is-open/demo.html
index 6407b93fa0e..d4b50b59bd1 100644
--- a/static/usage/v9/modal/inline/is-open/demo.html
+++ b/static/usage/v9/modal/inline/is-open/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/performance/mount/demo.html b/static/usage/v9/modal/performance/mount/demo.html
index 53a8965dbfd..3e37f115bf5 100644
--- a/static/usage/v9/modal/performance/mount/demo.html
+++ b/static/usage/v9/modal/performance/mount/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/sheet/auto-height/demo.html b/static/usage/v9/modal/sheet/auto-height/demo.html
index 3b48d58123d..554b8ecf40f 100644
--- a/static/usage/v9/modal/sheet/auto-height/demo.html
+++ b/static/usage/v9/modal/sheet/auto-height/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/sheet/background-content/demo.html b/static/usage/v9/modal/sheet/background-content/demo.html
index 298fdf37955..f0ea0615bc3 100644
--- a/static/usage/v9/modal/sheet/background-content/demo.html
+++ b/static/usage/v9/modal/sheet/background-content/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/sheet/basic/demo.html b/static/usage/v9/modal/sheet/basic/demo.html
index 4999820d9ee..c37bb0d3241 100644
--- a/static/usage/v9/modal/sheet/basic/demo.html
+++ b/static/usage/v9/modal/sheet/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/sheet/expand-to-scroll/demo.html b/static/usage/v9/modal/sheet/expand-to-scroll/demo.html
index b8ba7f12aa8..4708012c93a 100644
--- a/static/usage/v9/modal/sheet/expand-to-scroll/demo.html
+++ b/static/usage/v9/modal/sheet/expand-to-scroll/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/sheet/handle-behavior/demo.html b/static/usage/v9/modal/sheet/handle-behavior/demo.html
index 351f54bebf1..2f0b3cd4013 100644
--- a/static/usage/v9/modal/sheet/handle-behavior/demo.html
+++ b/static/usage/v9/modal/sheet/handle-behavior/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/styling/animations/demo.html b/static/usage/v9/modal/styling/animations/demo.html
index f3d9ad18c0f..634d4459c24 100644
--- a/static/usage/v9/modal/styling/animations/demo.html
+++ b/static/usage/v9/modal/styling/animations/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/modal/styling/theming/demo.html b/static/usage/v9/modal/styling/theming/demo.html
index 2177a2b783a..c413810da7b 100644
--- a/static/usage/v9/modal/styling/theming/demo.html
+++ b/static/usage/v9/modal/styling/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/nav/modal-navigation/demo.html b/static/usage/v9/nav/modal-navigation/demo.html
index d85c343110c..f5387ab1d79 100644
--- a/static/usage/v9/nav/modal-navigation/demo.html
+++ b/static/usage/v9/nav/modal-navigation/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/nav/nav-link/demo.html b/static/usage/v9/nav/nav-link/demo.html
index 426e1ba9832..2c71227aec1 100644
--- a/static/usage/v9/nav/nav-link/demo.html
+++ b/static/usage/v9/nav/nav-link/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/navigation/demo.html b/static/usage/v9/navigation/demo.html
index 9defa527e6e..a8a25ec6cfa 100644
--- a/static/usage/v9/navigation/demo.html
+++ b/static/usage/v9/navigation/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/note/basic/demo.html b/static/usage/v9/note/basic/demo.html
index 7176e55bea8..88c488ad058 100644
--- a/static/usage/v9/note/basic/demo.html
+++ b/static/usage/v9/note/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/note/item/demo.html b/static/usage/v9/note/item/demo.html
index 91f0932efc8..a18318d0e41 100644
--- a/static/usage/v9/note/item/demo.html
+++ b/static/usage/v9/note/item/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/note/theming/colors/demo.html b/static/usage/v9/note/theming/colors/demo.html
index 4f7a685575e..4eba98e33cd 100644
--- a/static/usage/v9/note/theming/colors/demo.html
+++ b/static/usage/v9/note/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/note/theming/css-properties/demo.html b/static/usage/v9/note/theming/css-properties/demo.html
index f8144a332dd..bf74486d5f2 100644
--- a/static/usage/v9/note/theming/css-properties/demo.html
+++ b/static/usage/v9/note/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/picker/basic/demo.html b/static/usage/v9/picker/basic/demo.html
index 400d92577b3..06143d9c357 100644
--- a/static/usage/v9/picker/basic/demo.html
+++ b/static/usage/v9/picker/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/picker/modal/demo.html b/static/usage/v9/picker/modal/demo.html
index 76e185f5186..da5feea587a 100644
--- a/static/usage/v9/picker/modal/demo.html
+++ b/static/usage/v9/picker/modal/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/picker/prefix-suffix/demo.html b/static/usage/v9/picker/prefix-suffix/demo.html
index 1e1d6247242..2f16b2cf180 100644
--- a/static/usage/v9/picker/prefix-suffix/demo.html
+++ b/static/usage/v9/picker/prefix-suffix/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/picker/theming/css-properties/demo.html b/static/usage/v9/picker/theming/css-properties/demo.html
index 2fd7347c427..a3277b58f73 100644
--- a/static/usage/v9/picker/theming/css-properties/demo.html
+++ b/static/usage/v9/picker/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/popover/customization/positioning/demo.html b/static/usage/v9/popover/customization/positioning/demo.html
index aca0602e8bf..22a755b7b18 100644
--- a/static/usage/v9/popover/customization/positioning/demo.html
+++ b/static/usage/v9/popover/customization/positioning/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/popover/customization/sizing/demo.html b/static/usage/v9/popover/customization/sizing/demo.html
index 4876e653120..888d470216c 100644
--- a/static/usage/v9/popover/customization/sizing/demo.html
+++ b/static/usage/v9/popover/customization/sizing/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/popover/customization/styling/demo.html b/static/usage/v9/popover/customization/styling/demo.html
index c1555920896..12f0aad99df 100644
--- a/static/usage/v9/popover/customization/styling/demo.html
+++ b/static/usage/v9/popover/customization/styling/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/popover/nested/demo.html b/static/usage/v9/popover/nested/demo.html
index 84417d0d48a..30c4699c4ab 100644
--- a/static/usage/v9/popover/nested/demo.html
+++ b/static/usage/v9/popover/nested/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/popover/performance/mount/demo.html b/static/usage/v9/popover/performance/mount/demo.html
index 3835634aed8..aea0e555df7 100644
--- a/static/usage/v9/popover/performance/mount/demo.html
+++ b/static/usage/v9/popover/performance/mount/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/popover/presenting/controller/demo.html b/static/usage/v9/popover/presenting/controller/demo.html
index c3c20b10171..381d8933f93 100644
--- a/static/usage/v9/popover/presenting/controller/demo.html
+++ b/static/usage/v9/popover/presenting/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/popover/presenting/inline-isopen/demo.html b/static/usage/v9/popover/presenting/inline-isopen/demo.html
index cb71301248a..a4e3f26fa19 100644
--- a/static/usage/v9/popover/presenting/inline-isopen/demo.html
+++ b/static/usage/v9/popover/presenting/inline-isopen/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/popover/presenting/inline-trigger/demo.html b/static/usage/v9/popover/presenting/inline-trigger/demo.html
index e46ef091d2b..108ae4120b6 100644
--- a/static/usage/v9/popover/presenting/inline-trigger/demo.html
+++ b/static/usage/v9/popover/presenting/inline-trigger/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/progress-bar/buffer/demo.html b/static/usage/v9/progress-bar/buffer/demo.html
index 0d0ae7db1cb..41e99f08cb5 100644
--- a/static/usage/v9/progress-bar/buffer/demo.html
+++ b/static/usage/v9/progress-bar/buffer/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/progress-bar/determinate/demo.html b/static/usage/v9/progress-bar/determinate/demo.html
index a01fb81b19c..dba7e7f9add 100644
--- a/static/usage/v9/progress-bar/determinate/demo.html
+++ b/static/usage/v9/progress-bar/determinate/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/progress-bar/indeterminate/demo.html b/static/usage/v9/progress-bar/indeterminate/demo.html
index dd53c6d929b..b9103413d04 100644
--- a/static/usage/v9/progress-bar/indeterminate/demo.html
+++ b/static/usage/v9/progress-bar/indeterminate/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/progress-bar/theming/colors/demo.html b/static/usage/v9/progress-bar/theming/colors/demo.html
index 595d2ebcfe2..97b9e6eadde 100644
--- a/static/usage/v9/progress-bar/theming/colors/demo.html
+++ b/static/usage/v9/progress-bar/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/progress-bar/theming/css-properties/demo.html b/static/usage/v9/progress-bar/theming/css-properties/demo.html
index 24ff2792f6d..1e112ab4fee 100644
--- a/static/usage/v9/progress-bar/theming/css-properties/demo.html
+++ b/static/usage/v9/progress-bar/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/progress-bar/theming/css-shadow-parts/demo.html b/static/usage/v9/progress-bar/theming/css-shadow-parts/demo.html
index 17cbe574a21..10db254f44c 100644
--- a/static/usage/v9/progress-bar/theming/css-shadow-parts/demo.html
+++ b/static/usage/v9/progress-bar/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/radio/alignment/demo.html b/static/usage/v9/radio/alignment/demo.html
index 173204e3a54..65772f8194b 100644
--- a/static/usage/v9/radio/alignment/demo.html
+++ b/static/usage/v9/radio/alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/radio/basic/demo.html b/static/usage/v9/radio/basic/demo.html
index 093b9202674..2ce6facf1d9 100644
--- a/static/usage/v9/radio/basic/demo.html
+++ b/static/usage/v9/radio/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/radio/empty-selection/demo.html b/static/usage/v9/radio/empty-selection/demo.html
index ba31bd2f99f..b8595ac0917 100644
--- a/static/usage/v9/radio/empty-selection/demo.html
+++ b/static/usage/v9/radio/empty-selection/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/radio/helper-error/demo.html b/static/usage/v9/radio/helper-error/demo.html
index 15cdf69bd2f..cae6fd82c9e 100644
--- a/static/usage/v9/radio/helper-error/demo.html
+++ b/static/usage/v9/radio/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/radio/justify/demo.html b/static/usage/v9/radio/justify/demo.html
index 75ca8653f85..ba81cd57647 100644
--- a/static/usage/v9/radio/justify/demo.html
+++ b/static/usage/v9/radio/justify/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/radio/label-placement/demo.html b/static/usage/v9/radio/label-placement/demo.html
index 9feca78040f..04d21c7e842 100644
--- a/static/usage/v9/radio/label-placement/demo.html
+++ b/static/usage/v9/radio/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/radio/label-wrap/demo.html b/static/usage/v9/radio/label-wrap/demo.html
index 2141ba26a94..76c665ddf19 100644
--- a/static/usage/v9/radio/label-wrap/demo.html
+++ b/static/usage/v9/radio/label-wrap/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/radio/theming/colors/demo.html b/static/usage/v9/radio/theming/colors/demo.html
index 7a4604744bb..4931a9c74c5 100644
--- a/static/usage/v9/radio/theming/colors/demo.html
+++ b/static/usage/v9/radio/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/radio/theming/css-properties/demo.html b/static/usage/v9/radio/theming/css-properties/demo.html
index 349e869aa18..c52a70dfc20 100644
--- a/static/usage/v9/radio/theming/css-properties/demo.html
+++ b/static/usage/v9/radio/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/radio/theming/css-shadow-parts/demo.html b/static/usage/v9/radio/theming/css-shadow-parts/demo.html
index a8412932acf..8c6c3a83745 100644
--- a/static/usage/v9/radio/theming/css-shadow-parts/demo.html
+++ b/static/usage/v9/radio/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/radio/using-comparewith/demo.html b/static/usage/v9/radio/using-comparewith/demo.html
index 5babdc3581d..c8c6881cffd 100644
--- a/static/usage/v9/radio/using-comparewith/demo.html
+++ b/static/usage/v9/radio/using-comparewith/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/basic/demo.html b/static/usage/v9/range/basic/demo.html
index 6ea180f8cba..6f017cb4140 100644
--- a/static/usage/v9/range/basic/demo.html
+++ b/static/usage/v9/range/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/dual-knobs/demo.html b/static/usage/v9/range/dual-knobs/demo.html
index f33e710c3a3..b6185e25504 100644
--- a/static/usage/v9/range/dual-knobs/demo.html
+++ b/static/usage/v9/range/dual-knobs/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/ion-change-event/demo.html b/static/usage/v9/range/ion-change-event/demo.html
index 05e8f25fd12..d67c18a547b 100644
--- a/static/usage/v9/range/ion-change-event/demo.html
+++ b/static/usage/v9/range/ion-change-event/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/ion-knob-move-event/demo.html b/static/usage/v9/range/ion-knob-move-event/demo.html
index 3613382516c..70e96b25da5 100644
--- a/static/usage/v9/range/ion-knob-move-event/demo.html
+++ b/static/usage/v9/range/ion-knob-move-event/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/label-slot/demo.html b/static/usage/v9/range/label-slot/demo.html
index c55cd3b0cc5..2f3d594f7bd 100644
--- a/static/usage/v9/range/label-slot/demo.html
+++ b/static/usage/v9/range/label-slot/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/labels/demo.html b/static/usage/v9/range/labels/demo.html
index 723b04abdfc..ba001768fa3 100644
--- a/static/usage/v9/range/labels/demo.html
+++ b/static/usage/v9/range/labels/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/no-visible-label/demo.html b/static/usage/v9/range/no-visible-label/demo.html
index 6ea180f8cba..6f017cb4140 100644
--- a/static/usage/v9/range/no-visible-label/demo.html
+++ b/static/usage/v9/range/no-visible-label/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/pins/demo.html b/static/usage/v9/range/pins/demo.html
index 0900182fe62..0270538c0be 100644
--- a/static/usage/v9/range/pins/demo.html
+++ b/static/usage/v9/range/pins/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/slots/demo.html b/static/usage/v9/range/slots/demo.html
index c1282a6af00..22d8ee4aaab 100644
--- a/static/usage/v9/range/slots/demo.html
+++ b/static/usage/v9/range/slots/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/snapping-ticks/demo.html b/static/usage/v9/range/snapping-ticks/demo.html
index 4ccb446bf09..5f0525fdbaf 100644
--- a/static/usage/v9/range/snapping-ticks/demo.html
+++ b/static/usage/v9/range/snapping-ticks/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/theming/css-properties/demo.html b/static/usage/v9/range/theming/css-properties/demo.html
index ef65494795f..c25ac7d44d0 100644
--- a/static/usage/v9/range/theming/css-properties/demo.html
+++ b/static/usage/v9/range/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/range/theming/css-shadow-parts/demo.html b/static/usage/v9/range/theming/css-shadow-parts/demo.html
index f4d74237093..2f9061cc559 100644
--- a/static/usage/v9/range/theming/css-shadow-parts/demo.html
+++ b/static/usage/v9/range/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/refresher/advanced/demo.html b/static/usage/v9/refresher/advanced/demo.html
index 43e2acd0868..78bd8651f8d 100644
--- a/static/usage/v9/refresher/advanced/demo.html
+++ b/static/usage/v9/refresher/advanced/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/refresher/basic/demo.html b/static/usage/v9/refresher/basic/demo.html
index 1a5c27fedb7..739e8d4cc6c 100644
--- a/static/usage/v9/refresher/basic/demo.html
+++ b/static/usage/v9/refresher/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/refresher/custom-content/demo.html b/static/usage/v9/refresher/custom-content/demo.html
index b1d6fca3437..a3f8137eb6a 100644
--- a/static/usage/v9/refresher/custom-content/demo.html
+++ b/static/usage/v9/refresher/custom-content/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/refresher/custom-scroll-target/demo.html b/static/usage/v9/refresher/custom-scroll-target/demo.html
index 626d30aaf4b..c824da890ad 100644
--- a/static/usage/v9/refresher/custom-scroll-target/demo.html
+++ b/static/usage/v9/refresher/custom-scroll-target/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/refresher/pull-properties/demo.html b/static/usage/v9/refresher/pull-properties/demo.html
index 941e844dac5..10a1af03b85 100644
--- a/static/usage/v9/refresher/pull-properties/demo.html
+++ b/static/usage/v9/refresher/pull-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/refresher/pull-start-end-events/demo.html b/static/usage/v9/refresher/pull-start-end-events/demo.html
index c65f95214a0..7896c9ed8d1 100644
--- a/static/usage/v9/refresher/pull-start-end-events/demo.html
+++ b/static/usage/v9/refresher/pull-start-end-events/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/reorder/basic/demo.html b/static/usage/v9/reorder/basic/demo.html
index 3b2f1777444..f0bfdd3c4d1 100644
--- a/static/usage/v9/reorder/basic/demo.html
+++ b/static/usage/v9/reorder/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/reorder/custom-icon/demo.html b/static/usage/v9/reorder/custom-icon/demo.html
index 0ecd4984d33..2798475715e 100644
--- a/static/usage/v9/reorder/custom-icon/demo.html
+++ b/static/usage/v9/reorder/custom-icon/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/reorder/custom-scroll-target/demo.html b/static/usage/v9/reorder/custom-scroll-target/demo.html
index 149e8963f83..60e327479b5 100644
--- a/static/usage/v9/reorder/custom-scroll-target/demo.html
+++ b/static/usage/v9/reorder/custom-scroll-target/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/reorder/reorder-move-event/demo.html b/static/usage/v9/reorder/reorder-move-event/demo.html
index 2b1c106344b..cf901ab4880 100644
--- a/static/usage/v9/reorder/reorder-move-event/demo.html
+++ b/static/usage/v9/reorder/reorder-move-event/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/reorder/reorder-start-end-events/demo.html b/static/usage/v9/reorder/reorder-start-end-events/demo.html
index a9bcf896da6..90ce2821550 100644
--- a/static/usage/v9/reorder/reorder-start-end-events/demo.html
+++ b/static/usage/v9/reorder/reorder-start-end-events/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/reorder/toggling-disabled/demo.html b/static/usage/v9/reorder/toggling-disabled/demo.html
index 8aa545d2886..217046f1cd6 100644
--- a/static/usage/v9/reorder/toggling-disabled/demo.html
+++ b/static/usage/v9/reorder/toggling-disabled/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/reorder/updating-data/demo.html b/static/usage/v9/reorder/updating-data/demo.html
index ed7390761de..c6697e344b6 100644
--- a/static/usage/v9/reorder/updating-data/demo.html
+++ b/static/usage/v9/reorder/updating-data/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/reorder/wrapper/demo.html b/static/usage/v9/reorder/wrapper/demo.html
index afa510ec24f..6d1b0d6bc36 100644
--- a/static/usage/v9/reorder/wrapper/demo.html
+++ b/static/usage/v9/reorder/wrapper/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/ripple-effect/basic/demo.html b/static/usage/v9/ripple-effect/basic/demo.html
index 4f7c43d45b7..6793692380a 100644
--- a/static/usage/v9/ripple-effect/basic/demo.html
+++ b/static/usage/v9/ripple-effect/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/ripple-effect/customizing/demo.html b/static/usage/v9/ripple-effect/customizing/demo.html
index 021e0edd2d6..8f49616985b 100644
--- a/static/usage/v9/ripple-effect/customizing/demo.html
+++ b/static/usage/v9/ripple-effect/customizing/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/ripple-effect/type/demo.html b/static/usage/v9/ripple-effect/type/demo.html
index 44d78bcc8ae..882acbf64b7 100644
--- a/static/usage/v9/ripple-effect/type/demo.html
+++ b/static/usage/v9/ripple-effect/type/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/router/basic/demo.html b/static/usage/v9/router/basic/demo.html
index 8edf1c1e482..76883570d23 100644
--- a/static/usage/v9/router/basic/demo.html
+++ b/static/usage/v9/router/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/router/nav-within-page/demo.html b/static/usage/v9/router/nav-within-page/demo.html
index 487ee4376d6..cf715da4e93 100644
--- a/static/usage/v9/router/nav-within-page/demo.html
+++ b/static/usage/v9/router/nav-within-page/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/searchbar/basic/demo.html b/static/usage/v9/searchbar/basic/demo.html
index 31bc6073b6e..bd3071a3bf9 100644
--- a/static/usage/v9/searchbar/basic/demo.html
+++ b/static/usage/v9/searchbar/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/searchbar/cancel-button/demo.html b/static/usage/v9/searchbar/cancel-button/demo.html
index 9d82b08b4e4..ef88eb1894a 100644
--- a/static/usage/v9/searchbar/cancel-button/demo.html
+++ b/static/usage/v9/searchbar/cancel-button/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/searchbar/clear-button/demo.html b/static/usage/v9/searchbar/clear-button/demo.html
index db394f21954..ca3bb5228ed 100644
--- a/static/usage/v9/searchbar/clear-button/demo.html
+++ b/static/usage/v9/searchbar/clear-button/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/searchbar/debounce/demo.html b/static/usage/v9/searchbar/debounce/demo.html
index 72005241fdf..ec5d288155a 100644
--- a/static/usage/v9/searchbar/debounce/demo.html
+++ b/static/usage/v9/searchbar/debounce/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/searchbar/search-icon/demo.html b/static/usage/v9/searchbar/search-icon/demo.html
index 351598906cd..bac3a40c2ae 100644
--- a/static/usage/v9/searchbar/search-icon/demo.html
+++ b/static/usage/v9/searchbar/search-icon/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/searchbar/theming/colors/demo.html b/static/usage/v9/searchbar/theming/colors/demo.html
index 41d65627a75..e05005ab130 100644
--- a/static/usage/v9/searchbar/theming/colors/demo.html
+++ b/static/usage/v9/searchbar/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/searchbar/theming/css-properties/demo.html b/static/usage/v9/searchbar/theming/css-properties/demo.html
index f0872db25ef..c042ba69e89 100644
--- a/static/usage/v9/searchbar/theming/css-properties/demo.html
+++ b/static/usage/v9/searchbar/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/segment-button/basic/demo.html b/static/usage/v9/segment-button/basic/demo.html
index 5082662f11f..51b2cc7d09a 100644
--- a/static/usage/v9/segment-button/basic/demo.html
+++ b/static/usage/v9/segment-button/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/segment-button/layout/demo.html b/static/usage/v9/segment-button/layout/demo.html
index 3466803b89f..5184e6e4649 100644
--- a/static/usage/v9/segment-button/layout/demo.html
+++ b/static/usage/v9/segment-button/layout/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/segment-button/theming/css-properties/demo.html b/static/usage/v9/segment-button/theming/css-properties/demo.html
index 51ff1da044d..9a832cd3a78 100644
--- a/static/usage/v9/segment-button/theming/css-properties/demo.html
+++ b/static/usage/v9/segment-button/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/segment-button/theming/css-shadow-parts/demo.html b/static/usage/v9/segment-button/theming/css-shadow-parts/demo.html
index 0d255ee0167..3d5992f5284 100644
--- a/static/usage/v9/segment-button/theming/css-shadow-parts/demo.html
+++ b/static/usage/v9/segment-button/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/segment/basic/demo.html b/static/usage/v9/segment/basic/demo.html
index 6173a699e8a..2ab522a3b0e 100644
--- a/static/usage/v9/segment/basic/demo.html
+++ b/static/usage/v9/segment/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/segment/scrollable/demo.html b/static/usage/v9/segment/scrollable/demo.html
index 2e47883b646..82dea792f8d 100644
--- a/static/usage/v9/segment/scrollable/demo.html
+++ b/static/usage/v9/segment/scrollable/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/segment/swipeable/demo.html b/static/usage/v9/segment/swipeable/demo.html
index 1e4fde4d117..b4803d9332f 100644
--- a/static/usage/v9/segment/swipeable/demo.html
+++ b/static/usage/v9/segment/swipeable/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/segment/theming/colors/demo.html b/static/usage/v9/segment/theming/colors/demo.html
index 8d0d6e5ce5c..841a390866b 100644
--- a/static/usage/v9/segment/theming/colors/demo.html
+++ b/static/usage/v9/segment/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/segment/theming/css-properties/demo.html b/static/usage/v9/segment/theming/css-properties/demo.html
index 52905adb687..a5adc00577e 100644
--- a/static/usage/v9/segment/theming/css-properties/demo.html
+++ b/static/usage/v9/segment/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/basic/multiple-selection/demo.html b/static/usage/v9/select/basic/multiple-selection/demo.html
index b95ba95efae..38c001ee83f 100644
--- a/static/usage/v9/select/basic/multiple-selection/demo.html
+++ b/static/usage/v9/select/basic/multiple-selection/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/basic/responding-to-interaction/demo.html b/static/usage/v9/select/basic/responding-to-interaction/demo.html
index ca555896f32..31434d81cfd 100644
--- a/static/usage/v9/select/basic/responding-to-interaction/demo.html
+++ b/static/usage/v9/select/basic/responding-to-interaction/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/basic/single-selection/demo.html b/static/usage/v9/select/basic/single-selection/demo.html
index 1b3cfede270..58389d95cbd 100644
--- a/static/usage/v9/select/basic/single-selection/demo.html
+++ b/static/usage/v9/select/basic/single-selection/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/customization/button-text/demo.html b/static/usage/v9/select/customization/button-text/demo.html
index 89ce1e8355a..d3eed46342c 100644
--- a/static/usage/v9/select/customization/button-text/demo.html
+++ b/static/usage/v9/select/customization/button-text/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/customization/custom-toggle-icons/demo.html b/static/usage/v9/select/customization/custom-toggle-icons/demo.html
index 18ea9a45b47..57c11fe5566 100644
--- a/static/usage/v9/select/customization/custom-toggle-icons/demo.html
+++ b/static/usage/v9/select/customization/custom-toggle-icons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/customization/icon-flip-behavior/demo.html b/static/usage/v9/select/customization/icon-flip-behavior/demo.html
index 2e883c680dc..8a84e9603f7 100644
--- a/static/usage/v9/select/customization/icon-flip-behavior/demo.html
+++ b/static/usage/v9/select/customization/icon-flip-behavior/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/customization/interface-options/demo.html b/static/usage/v9/select/customization/interface-options/demo.html
index b09f8780556..6be9d5ed3cc 100644
--- a/static/usage/v9/select/customization/interface-options/demo.html
+++ b/static/usage/v9/select/customization/interface-options/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/customization/styling-select/demo.html b/static/usage/v9/select/customization/styling-select/demo.html
index 3e5e660c6bb..ec621e93d5b 100644
--- a/static/usage/v9/select/customization/styling-select/demo.html
+++ b/static/usage/v9/select/customization/styling-select/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/fill/demo.html b/static/usage/v9/select/fill/demo.html
index 611f95cbf62..99d28a27938 100644
--- a/static/usage/v9/select/fill/demo.html
+++ b/static/usage/v9/select/fill/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/helper-error/demo.html b/static/usage/v9/select/helper-error/demo.html
index b9b893275fc..42ecbb45764 100644
--- a/static/usage/v9/select/helper-error/demo.html
+++ b/static/usage/v9/select/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/interfaces/action-sheet/demo.html b/static/usage/v9/select/interfaces/action-sheet/demo.html
index 21c7d002a2d..2eb94c913f6 100644
--- a/static/usage/v9/select/interfaces/action-sheet/demo.html
+++ b/static/usage/v9/select/interfaces/action-sheet/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/interfaces/modal/demo.html b/static/usage/v9/select/interfaces/modal/demo.html
index 5d81ee10860..cd29a6321ec 100644
--- a/static/usage/v9/select/interfaces/modal/demo.html
+++ b/static/usage/v9/select/interfaces/modal/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/interfaces/popover/demo.html b/static/usage/v9/select/interfaces/popover/demo.html
index 768298d7637..a5dc1a0d511 100644
--- a/static/usage/v9/select/interfaces/popover/demo.html
+++ b/static/usage/v9/select/interfaces/popover/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/justify/demo.html b/static/usage/v9/select/justify/demo.html
index d175225c686..710f6a27c9e 100644
--- a/static/usage/v9/select/justify/demo.html
+++ b/static/usage/v9/select/justify/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/label-placement/demo.html b/static/usage/v9/select/label-placement/demo.html
index c407e2310d7..db9c81ba509 100644
--- a/static/usage/v9/select/label-placement/demo.html
+++ b/static/usage/v9/select/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/label-slot/demo.html b/static/usage/v9/select/label-slot/demo.html
index 076d932ec3a..d368f905abc 100644
--- a/static/usage/v9/select/label-slot/demo.html
+++ b/static/usage/v9/select/label-slot/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/no-visible-label/demo.html b/static/usage/v9/select/no-visible-label/demo.html
index bbaaf4956a6..ff4a9c74365 100644
--- a/static/usage/v9/select/no-visible-label/demo.html
+++ b/static/usage/v9/select/no-visible-label/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/objects-as-values/multiple-selection/demo.html b/static/usage/v9/select/objects-as-values/multiple-selection/demo.html
index 64ffeaa327d..264cd4e6d7f 100644
--- a/static/usage/v9/select/objects-as-values/multiple-selection/demo.html
+++ b/static/usage/v9/select/objects-as-values/multiple-selection/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/objects-as-values/using-comparewith/demo.html b/static/usage/v9/select/objects-as-values/using-comparewith/demo.html
index 54218949ed9..9efdb85abb0 100644
--- a/static/usage/v9/select/objects-as-values/using-comparewith/demo.html
+++ b/static/usage/v9/select/objects-as-values/using-comparewith/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/rich-content-options/demo.html b/static/usage/v9/select/rich-content-options/demo.html
index 9bc45a69c20..069906da264 100644
--- a/static/usage/v9/select/rich-content-options/demo.html
+++ b/static/usage/v9/select/rich-content-options/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/start-end-slots/demo.html b/static/usage/v9/select/start-end-slots/demo.html
index 3661bde204b..ac50187c568 100644
--- a/static/usage/v9/select/start-end-slots/demo.html
+++ b/static/usage/v9/select/start-end-slots/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/select/typeahead/demo.html b/static/usage/v9/select/typeahead/demo.html
index ff5915ddb9f..ba495113d27 100644
--- a/static/usage/v9/select/typeahead/demo.html
+++ b/static/usage/v9/select/typeahead/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/skeleton-text/basic/demo.html b/static/usage/v9/skeleton-text/basic/demo.html
index 1a29180e73f..56c2b8eda6e 100644
--- a/static/usage/v9/skeleton-text/basic/demo.html
+++ b/static/usage/v9/skeleton-text/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/skeleton-text/theming/css-properties/demo.html b/static/usage/v9/skeleton-text/theming/css-properties/demo.html
index c7b8c229dae..903f8afe7cf 100644
--- a/static/usage/v9/skeleton-text/theming/css-properties/demo.html
+++ b/static/usage/v9/skeleton-text/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/spinner/basic/demo.html b/static/usage/v9/spinner/basic/demo.html
index b93f88ab8cf..70c2cd1d439 100644
--- a/static/usage/v9/spinner/basic/demo.html
+++ b/static/usage/v9/spinner/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/spinner/theming/colors/demo.html b/static/usage/v9/spinner/theming/colors/demo.html
index 0a1beca6bf8..8f38d440bf6 100644
--- a/static/usage/v9/spinner/theming/colors/demo.html
+++ b/static/usage/v9/spinner/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/spinner/theming/css-properties/demo.html b/static/usage/v9/spinner/theming/css-properties/demo.html
index 48993da0299..64179ddd6bc 100644
--- a/static/usage/v9/spinner/theming/css-properties/demo.html
+++ b/static/usage/v9/spinner/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/spinner/theming/resizing/demo.html b/static/usage/v9/spinner/theming/resizing/demo.html
index 314a5ed2248..514fcff2344 100644
--- a/static/usage/v9/spinner/theming/resizing/demo.html
+++ b/static/usage/v9/spinner/theming/resizing/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/split-pane/basic/demo.html b/static/usage/v9/split-pane/basic/demo.html
index 78ff2beed37..5077dbc8930 100644
--- a/static/usage/v9/split-pane/basic/demo.html
+++ b/static/usage/v9/split-pane/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/split-pane/theming/css-properties/demo.html b/static/usage/v9/split-pane/theming/css-properties/demo.html
index d4dd6e05ff4..a6f5bc66c7a 100644
--- a/static/usage/v9/split-pane/theming/css-properties/demo.html
+++ b/static/usage/v9/split-pane/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/tabs/basic/demo.html b/static/usage/v9/tabs/basic/demo.html
index 7025c4f8222..23c8d8315ab 100644
--- a/static/usage/v9/tabs/basic/demo.html
+++ b/static/usage/v9/tabs/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/tabs/router/demo.html b/static/usage/v9/tabs/router/demo.html
index db3aa7fbdd6..2bb22fef16e 100644
--- a/static/usage/v9/tabs/router/demo.html
+++ b/static/usage/v9/tabs/router/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/tabs/select-method/demo.html b/static/usage/v9/tabs/select-method/demo.html
index 0ba933d0ec7..75293c123f9 100644
--- a/static/usage/v9/tabs/select-method/demo.html
+++ b/static/usage/v9/tabs/select-method/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/text/basic/demo.html b/static/usage/v9/text/basic/demo.html
index 3ccf505c17e..d56e4b675fb 100644
--- a/static/usage/v9/text/basic/demo.html
+++ b/static/usage/v9/text/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/text/basic/react.md b/static/usage/v9/text/basic/react.md
index da8882e3bf5..e198ffa2e86 100644
--- a/static/usage/v9/text/basic/react.md
+++ b/static/usage/v9/text/basic/react.md
@@ -22,11 +22,16 @@ function Example() {
- I saw a werewolf with a Chinese menu in his hand. Walking through the
+ I saw a werewolf with a Chinese menu in his hand. Walking through the{' '}
+
streets
- of Soho in the rain. He
+ {' '}
+ of Soho in the rain. He{' '}
+
was
- looking for a place called Lee Ho Fook's. Gonna get a big dish of beef chow mein.
+ {' '}
+ looking for a place called Lee Ho Fook's. Gonna get a{' '}
+ big dish of beef chow mein.
>
);
diff --git a/static/usage/v9/textarea/autogrow/demo.html b/static/usage/v9/textarea/autogrow/demo.html
index 34282ea0028..df06258ea79 100644
--- a/static/usage/v9/textarea/autogrow/demo.html
+++ b/static/usage/v9/textarea/autogrow/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/textarea/basic/demo.html b/static/usage/v9/textarea/basic/demo.html
index 3ae7a1dc7a7..5d3a8439fc7 100644
--- a/static/usage/v9/textarea/basic/demo.html
+++ b/static/usage/v9/textarea/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/textarea/clear-on-edit/demo.html b/static/usage/v9/textarea/clear-on-edit/demo.html
index 9e1adb02600..4c32a96b6f4 100644
--- a/static/usage/v9/textarea/clear-on-edit/demo.html
+++ b/static/usage/v9/textarea/clear-on-edit/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/textarea/counter/demo.html b/static/usage/v9/textarea/counter/demo.html
index 9906c72bd61..ac2828ba6c7 100644
--- a/static/usage/v9/textarea/counter/demo.html
+++ b/static/usage/v9/textarea/counter/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/textarea/fill/demo.html b/static/usage/v9/textarea/fill/demo.html
index 56632fd3bc5..68d39ac9de4 100644
--- a/static/usage/v9/textarea/fill/demo.html
+++ b/static/usage/v9/textarea/fill/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/textarea/helper-error/demo.html b/static/usage/v9/textarea/helper-error/demo.html
index 8d25366c317..c09191d1033 100644
--- a/static/usage/v9/textarea/helper-error/demo.html
+++ b/static/usage/v9/textarea/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/textarea/label-placement/demo.html b/static/usage/v9/textarea/label-placement/demo.html
index 8202caf78b9..5e4cadd1273 100644
--- a/static/usage/v9/textarea/label-placement/demo.html
+++ b/static/usage/v9/textarea/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/textarea/label-slot/demo.html b/static/usage/v9/textarea/label-slot/demo.html
index aa0bcb144fd..bee380e03a9 100644
--- a/static/usage/v9/textarea/label-slot/demo.html
+++ b/static/usage/v9/textarea/label-slot/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/textarea/no-visible-label/demo.html b/static/usage/v9/textarea/no-visible-label/demo.html
index f3e99ffb188..7729b0cde3f 100644
--- a/static/usage/v9/textarea/no-visible-label/demo.html
+++ b/static/usage/v9/textarea/no-visible-label/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/textarea/start-end-slots/demo.html b/static/usage/v9/textarea/start-end-slots/demo.html
index 960bf0fdae9..5c69bb6144b 100644
--- a/static/usage/v9/textarea/start-end-slots/demo.html
+++ b/static/usage/v9/textarea/start-end-slots/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/textarea/theming/demo.html b/static/usage/v9/textarea/theming/demo.html
index b9a60aef458..7ef7f15e32f 100644
--- a/static/usage/v9/textarea/theming/demo.html
+++ b/static/usage/v9/textarea/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/theming/always-dark-mode/demo.html b/static/usage/v9/theming/always-dark-mode/demo.html
index 0d0dedcc68d..5b5e4d3ca58 100644
--- a/static/usage/v9/theming/always-dark-mode/demo.html
+++ b/static/usage/v9/theming/always-dark-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/theming/always-high-contrast-mode/demo.html b/static/usage/v9/theming/always-high-contrast-mode/demo.html
index 215dff44cb7..27635346304 100644
--- a/static/usage/v9/theming/always-high-contrast-mode/demo.html
+++ b/static/usage/v9/theming/always-high-contrast-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/theming/class-dark-mode/demo.html b/static/usage/v9/theming/class-dark-mode/demo.html
index 87e0d0b736c..96a148ff4d7 100644
--- a/static/usage/v9/theming/class-dark-mode/demo.html
+++ b/static/usage/v9/theming/class-dark-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/theming/class-high-contrast-mode/demo.html b/static/usage/v9/theming/class-high-contrast-mode/demo.html
index 89ba2a9589c..c42d6db716a 100644
--- a/static/usage/v9/theming/class-high-contrast-mode/demo.html
+++ b/static/usage/v9/theming/class-high-contrast-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/theming/system-dark-mode/demo.html b/static/usage/v9/theming/system-dark-mode/demo.html
index d5d601958bb..d27b7514a2f 100644
--- a/static/usage/v9/theming/system-dark-mode/demo.html
+++ b/static/usage/v9/theming/system-dark-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/theming/system-high-contrast-mode/demo.html b/static/usage/v9/theming/system-high-contrast-mode/demo.html
index e2d9b99b627..6ebceb340b1 100644
--- a/static/usage/v9/theming/system-high-contrast-mode/demo.html
+++ b/static/usage/v9/theming/system-high-contrast-mode/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/thumbnail/basic/demo.html b/static/usage/v9/thumbnail/basic/demo.html
index 2439ff95144..721095f886d 100644
--- a/static/usage/v9/thumbnail/basic/demo.html
+++ b/static/usage/v9/thumbnail/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/thumbnail/item/demo.html b/static/usage/v9/thumbnail/item/demo.html
index f12b63f1305..ad0fdc28cea 100644
--- a/static/usage/v9/thumbnail/item/demo.html
+++ b/static/usage/v9/thumbnail/item/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/thumbnail/theming/css-properties/demo.html b/static/usage/v9/thumbnail/theming/css-properties/demo.html
index 98292371a3c..0751a11c347 100644
--- a/static/usage/v9/thumbnail/theming/css-properties/demo.html
+++ b/static/usage/v9/thumbnail/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/title/basic/demo.html b/static/usage/v9/title/basic/demo.html
index 4aaf479ec67..96c766f5636 100644
--- a/static/usage/v9/title/basic/demo.html
+++ b/static/usage/v9/title/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/title/collapsible-large-title/basic/demo.html b/static/usage/v9/title/collapsible-large-title/basic/demo.html
index 69ad58b121d..06f7aac327f 100644
--- a/static/usage/v9/title/collapsible-large-title/basic/demo.html
+++ b/static/usage/v9/title/collapsible-large-title/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/title/collapsible-large-title/buttons/demo.html b/static/usage/v9/title/collapsible-large-title/buttons/demo.html
index b7056cc806c..a07bfb43fcf 100644
--- a/static/usage/v9/title/collapsible-large-title/buttons/demo.html
+++ b/static/usage/v9/title/collapsible-large-title/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/title/theming/css-properties/demo.html b/static/usage/v9/title/theming/css-properties/demo.html
index 8ac5b24b4dc..5c2bf061fa1 100644
--- a/static/usage/v9/title/theming/css-properties/demo.html
+++ b/static/usage/v9/title/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toast/buttons/demo.html b/static/usage/v9/toast/buttons/demo.html
index 3c65a948735..6614104b201 100644
--- a/static/usage/v9/toast/buttons/demo.html
+++ b/static/usage/v9/toast/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toast/icon/demo.html b/static/usage/v9/toast/icon/demo.html
index 315d7efe1b3..8efcee68fc4 100644
--- a/static/usage/v9/toast/icon/demo.html
+++ b/static/usage/v9/toast/icon/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toast/inline/basic/demo.html b/static/usage/v9/toast/inline/basic/demo.html
index 2b0d1a341e9..3e0f4e2d08b 100644
--- a/static/usage/v9/toast/inline/basic/demo.html
+++ b/static/usage/v9/toast/inline/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toast/inline/is-open/demo.html b/static/usage/v9/toast/inline/is-open/demo.html
index 2b27059edd0..a82dc89df31 100644
--- a/static/usage/v9/toast/inline/is-open/demo.html
+++ b/static/usage/v9/toast/inline/is-open/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toast/layout/demo.html b/static/usage/v9/toast/layout/demo.html
index be94676fefd..b8700babf44 100644
--- a/static/usage/v9/toast/layout/demo.html
+++ b/static/usage/v9/toast/layout/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toast/position-anchor/demo.html b/static/usage/v9/toast/position-anchor/demo.html
index 5ff69598002..301ca7c5492 100644
--- a/static/usage/v9/toast/position-anchor/demo.html
+++ b/static/usage/v9/toast/position-anchor/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toast/presenting/controller/demo.html b/static/usage/v9/toast/presenting/controller/demo.html
index a1acf67c4e5..d9ee4613624 100644
--- a/static/usage/v9/toast/presenting/controller/demo.html
+++ b/static/usage/v9/toast/presenting/controller/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toast/swipe-gesture/demo.html b/static/usage/v9/toast/swipe-gesture/demo.html
index cdead06dd5c..8717c5b07d1 100644
--- a/static/usage/v9/toast/swipe-gesture/demo.html
+++ b/static/usage/v9/toast/swipe-gesture/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toast/theming/demo.html b/static/usage/v9/toast/theming/demo.html
index 65f8547bed3..25a4cb325cc 100644
--- a/static/usage/v9/toast/theming/demo.html
+++ b/static/usage/v9/toast/theming/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toggle/alignment/demo.html b/static/usage/v9/toggle/alignment/demo.html
index 2f6eec49277..68bca08047e 100644
--- a/static/usage/v9/toggle/alignment/demo.html
+++ b/static/usage/v9/toggle/alignment/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toggle/basic/demo.html b/static/usage/v9/toggle/basic/demo.html
index 660a809a31c..0bf88c21641 100644
--- a/static/usage/v9/toggle/basic/demo.html
+++ b/static/usage/v9/toggle/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toggle/helper-error/demo.html b/static/usage/v9/toggle/helper-error/demo.html
index 7e7cf7b2034..20f0c3885c0 100644
--- a/static/usage/v9/toggle/helper-error/demo.html
+++ b/static/usage/v9/toggle/helper-error/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toggle/justify/demo.html b/static/usage/v9/toggle/justify/demo.html
index 844488ea58d..0d5aa192099 100644
--- a/static/usage/v9/toggle/justify/demo.html
+++ b/static/usage/v9/toggle/justify/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toggle/label-placement/demo.html b/static/usage/v9/toggle/label-placement/demo.html
index 805a7bacfd2..7b86db5b24e 100644
--- a/static/usage/v9/toggle/label-placement/demo.html
+++ b/static/usage/v9/toggle/label-placement/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toggle/list/demo.html b/static/usage/v9/toggle/list/demo.html
index 5dd70b2ff21..14504ec3d50 100644
--- a/static/usage/v9/toggle/list/demo.html
+++ b/static/usage/v9/toggle/list/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toggle/on-off/demo.html b/static/usage/v9/toggle/on-off/demo.html
index 60cde1df7e9..8ae85c2cd21 100644
--- a/static/usage/v9/toggle/on-off/demo.html
+++ b/static/usage/v9/toggle/on-off/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toggle/theming/colors/demo.html b/static/usage/v9/toggle/theming/colors/demo.html
index a9f59b5e6b1..0e04200c852 100644
--- a/static/usage/v9/toggle/theming/colors/demo.html
+++ b/static/usage/v9/toggle/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toggle/theming/css-properties/demo.html b/static/usage/v9/toggle/theming/css-properties/demo.html
index 72db756b63b..b508be60eea 100644
--- a/static/usage/v9/toggle/theming/css-properties/demo.html
+++ b/static/usage/v9/toggle/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toggle/theming/css-shadow-parts/demo.html b/static/usage/v9/toggle/theming/css-shadow-parts/demo.html
index fddcc35400f..28a3b7e0b06 100644
--- a/static/usage/v9/toggle/theming/css-shadow-parts/demo.html
+++ b/static/usage/v9/toggle/theming/css-shadow-parts/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toolbar/basic/demo.html b/static/usage/v9/toolbar/basic/demo.html
index 344095d39e9..fa065b2c56b 100644
--- a/static/usage/v9/toolbar/basic/demo.html
+++ b/static/usage/v9/toolbar/basic/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toolbar/buttons/demo.html b/static/usage/v9/toolbar/buttons/demo.html
index eb78f943d2f..fdb34199d3e 100644
--- a/static/usage/v9/toolbar/buttons/demo.html
+++ b/static/usage/v9/toolbar/buttons/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toolbar/progress-bars/demo.html b/static/usage/v9/toolbar/progress-bars/demo.html
index f30ccd42ca2..dc50ea91e0f 100644
--- a/static/usage/v9/toolbar/progress-bars/demo.html
+++ b/static/usage/v9/toolbar/progress-bars/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toolbar/searchbars/demo.html b/static/usage/v9/toolbar/searchbars/demo.html
index 565d6b68c6b..83afa368516 100644
--- a/static/usage/v9/toolbar/searchbars/demo.html
+++ b/static/usage/v9/toolbar/searchbars/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toolbar/segments/demo.html b/static/usage/v9/toolbar/segments/demo.html
index 7580bf51736..409cad5ed29 100644
--- a/static/usage/v9/toolbar/segments/demo.html
+++ b/static/usage/v9/toolbar/segments/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toolbar/theming/colors/demo.html b/static/usage/v9/toolbar/theming/colors/demo.html
index daab82e33e7..dfb2cff69fe 100644
--- a/static/usage/v9/toolbar/theming/colors/demo.html
+++ b/static/usage/v9/toolbar/theming/colors/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/static/usage/v9/toolbar/theming/css-properties/demo.html b/static/usage/v9/toolbar/theming/css-properties/demo.html
index fdb73e31a9b..9f4eaca2bcd 100644
--- a/static/usage/v9/toolbar/theming/css-properties/demo.html
+++ b/static/usage/v9/toolbar/theming/css-properties/demo.html
@@ -1,4 +1,4 @@
-
+
diff --git a/versioned_docs/version-v8/angular/overlays.md b/versioned_docs/version-v8/angular/overlays.md
index 15863b5c022..153469459e9 100644
--- a/versioned_docs/version-v8/angular/overlays.md
+++ b/versioned_docs/version-v8/angular/overlays.md
@@ -71,7 +71,10 @@ import { MyRouteService } from './my-route.service';
providers: [MyRouteService], // Service provided at route level
})
export class FeatureComponent {
- constructor(private modalController: ModalController, private injector: Injector) {}
+ constructor(
+ private modalController: ModalController,
+ private injector: Injector
+ ) {}
async openModal() {
const modal = await this.modalController.create({
@@ -113,7 +116,10 @@ import { MyService } from './my.service';
templateUrl: './feature.component.html',
})
export class FeatureComponent {
- constructor(private modalController: ModalController, private injector: Injector) {}
+ constructor(
+ private modalController: ModalController,
+ private injector: Injector
+ ) {}
async openModal() {
const myService = new MyService();
@@ -148,7 +154,10 @@ import { MyModalComponent } from './my-modal.component';
templateUrl: './feature.component.html',
})
export class FeatureComponent {
- constructor(private modalController: ModalController, private injector: Injector) {}
+ constructor(
+ private modalController: ModalController,
+ private injector: Injector
+ ) {}
async openModal() {
const modal = await this.modalController.create({
@@ -174,7 +183,10 @@ import { MyPopoverComponent } from './my-popover.component';
templateUrl: './feature.component.html',
})
export class FeatureComponent {
- constructor(private popoverController: PopoverController, private injector: Injector) {}
+ constructor(
+ private popoverController: PopoverController,
+ private injector: Injector
+ ) {}
async openPopover(event: Event) {
const popover = await this.popoverController.create({
diff --git a/versioned_docs/version-v8/angular/your-first-app/7-live-reload.md b/versioned_docs/version-v8/angular/your-first-app/7-live-reload.md
index 1d24eecd741..116bc997f32 100644
--- a/versioned_docs/version-v8/angular/your-first-app/7-live-reload.md
+++ b/versioned_docs/version-v8/angular/your-first-app/7-live-reload.md
@@ -97,7 +97,10 @@ import { ActionSheetController } from '@ionic/angular';
})
export class Tab2Page {
// CHANGE: Update constructor
- constructor(public photoService: PhotoService, public actionSheetController: ActionSheetController) {}
+ constructor(
+ public photoService: PhotoService,
+ public actionSheetController: ActionSheetController
+ ) {}
// ...existing code...
diff --git a/versioned_docs/version-v8/cli/configuration.md b/versioned_docs/version-v8/cli/configuration.md
index 708c5388f03..3fe6ae94d0a 100644
--- a/versioned_docs/version-v8/cli/configuration.md
+++ b/versioned_docs/version-v8/cli/configuration.md
@@ -117,9 +117,7 @@ module.exports = function (ctx) {
## Multi-app Projects
-
- Available in CLI 6.2.0+
-
+_Available in CLI 6.2.0+_
The Ionic CLI supports a multi-app configuration setup, which involves multiple Ionic apps and shared code within a single repository, or [monorepo](../reference/glossary.md#monorepo).
diff --git a/versioned_docs/version-v8/core-concepts/fundamentals.md b/versioned_docs/version-v8/core-concepts/fundamentals.md
index f8fd446013b..8f4772ac565 100644
--- a/versioned_docs/version-v8/core-concepts/fundamentals.md
+++ b/versioned_docs/version-v8/core-concepts/fundamentals.md
@@ -38,7 +38,7 @@ For apps that are built with Angular and `@ionic/angular`, we recommend using th
An amazing feature of apps built with web technologies (such as Ionic apps!) is that it can run on virtually any platform: desktop computers, phones, tablets, cars, refrigerators, and more! The same code base for Ionic apps can work on many platforms because it is based on web standards and common APIs that are shared across these platforms.
-One of the most common use cases for Ionic is to build an app which can be downloaded from both the [App Store](https://www.apple.com/ios/app-store/) and [Play Store](https://play.google.com/). Both iOS and Android software development kits (SDKs) provide [Web Views](webview.md) which render any Ionic app, while still allowing for full Native SDK access.
+One of the most common use cases for Ionic is to build an app which can be downloaded from both the [App Store](https://www.apple.com/ios/app-store/) and [Play Store](https://play.google.com/). Both iOS and Android software development kits (SDKs) provide [Web Views](webview.md) which render any Ionic app, while still allowing for _full_ Native SDK access.
Projects such as [Capacitor](https://capacitorjs.com/) and [Cordova](https://cordova.apache.org/) are commonly used to give Ionic apps this access to Native SDKs. This means developers can quickly build out an app using common web development tools, and still have access to native features such as the device's accelerometer, camera, GPS, and more.
diff --git a/versioned_docs/version-v8/core-concepts/what-are-progressive-web-apps.md b/versioned_docs/version-v8/core-concepts/what-are-progressive-web-apps.md
index f9643cb087d..551e81f8709 100644
--- a/versioned_docs/version-v8/core-concepts/what-are-progressive-web-apps.md
+++ b/versioned_docs/version-v8/core-concepts/what-are-progressive-web-apps.md
@@ -47,7 +47,7 @@ To be considered a Progressive Web App, your app must be:
{/* cspell:disable */}
-[Addy Osmani: Progressive web apps](https://addyosmani.com/blog/getting-started-with-progressive-web-apps/)
+_[Addy Osmani: Progressive web apps](https://addyosmani.com/blog/getting-started-with-progressive-web-apps/)_
{/* cspell:enable */}
diff --git a/versioned_docs/version-v8/deployment/app-store.md b/versioned_docs/version-v8/deployment/app-store.md
index b4c3120479e..e421c1902e3 100644
--- a/versioned_docs/version-v8/deployment/app-store.md
+++ b/versioned_docs/version-v8/deployment/app-store.md
@@ -116,7 +116,7 @@ If the upload is successful the app should be listed under 'Activities' on [iTun
As an app grows, it will need to be updated with new features and fixes.
An app can be updated by either submitting a new version to Apple, or by using a live update service like Appflow's [live update feature](https://ionic.io/docs/appflow/deploy/intro).
-With Live Updates, app changes can be pushed in realtime directly to users from the Appflow dashboard, without waiting for App Store approvals.
+With **Live Updates**, app changes can be pushed in realtime directly to users from the Appflow dashboard, without waiting for App Store approvals.
:::note
In order for the iOS App Store to accept the updated build, the config.xml file will need to be edited to increment the version value, then rebuild the app for release following the same instructions above.
diff --git a/versioned_docs/version-v8/developer-resources/guides/first-app-v3/intro.md b/versioned_docs/version-v8/developer-resources/guides/first-app-v3/intro.md
index 898b2122970..76a92a638ee 100644
--- a/versioned_docs/version-v8/developer-resources/guides/first-app-v3/intro.md
+++ b/versioned_docs/version-v8/developer-resources/guides/first-app-v3/intro.md
@@ -28,27 +28,27 @@ ionic start photo-gallery tabs
This starter project comes complete with three pre-built pages and best practices for Ionic development. With common building blocks already in place, we can add more features easily!
-“Would you like to integrate your new app with Cordova to target native iOS and Android?”
+**“Would you like to integrate your new app with Cordova to target native iOS and Android?”**
Type “y” and press Enter. Project setup may take a few moments.
-“Install the free Appflow SDK and connect your app?”
+**“Install the free Appflow SDK and connect your app?”**
Type “y” and press Enter. [Appflow](https://ionicframework.com/pro) is a powerful set of services and features built on top of the flagship Ionic Framework. This includes updating your app instantly (skipping the app store review process!), packaging apps in the cloud, and error monitoring.
-Log into your Ionic Account
+**Log into your Ionic Account**
Sign in now to easily access awesome features like Live Deploys later in this tutorial.
-What would you like to do?
+**What would you like to do?**
Choose “Create a new app on Appflow.”
-Which git host would you like to use?
+**Which git host would you like to use?**
Choose “Appflow.”
-“How would you like to connect to Appflow?”
+**“How would you like to connect to Appflow?”**
- Choose “Automatically setup a new SSH key pair for Appflow” if you haven’t used SSH before.
- Choose “Use an existing SSH key pair” if you’ve used SSH before.
diff --git a/versioned_docs/version-v8/developer-resources/guides/first-app-v4/intro.md b/versioned_docs/version-v8/developer-resources/guides/first-app-v4/intro.md
index d7e9e1112ba..1988676ba8f 100644
--- a/versioned_docs/version-v8/developer-resources/guides/first-app-v4/intro.md
+++ b/versioned_docs/version-v8/developer-resources/guides/first-app-v4/intro.md
@@ -11,13 +11,11 @@ It’s easy to get started. Note that all code referenced in this guide can be [
Download/install these right away to ensure an optimal Ionic development experience:
- [Git](https://git-scm.com/downloads) for version control.
-- SSH client, such as [PuTTy](https://putty.software/), for secure login to Appflow.
-- Node.js for interacting with the Ionic ecosystem. [Download the LTS version](https://nodejs.org/en/).
-- A code editor for... writing code! We are fans of [Visual Studio Code](https://code.visualstudio.com/).
-- Command-line terminal (CLI): FYI Windows users, for the best Ionic experience, we
- recommend the built-in command line (cmd) or the Powershell CLI, running in Administrator mode. For
- Mac/Linux
- users, virtually any terminal will work.
+- **SSH client**, such as [PuTTy](https://putty.software/), for secure login to Appflow.
+- **Node.js** for interacting with the Ionic ecosystem. [Download the LTS version](https://nodejs.org/en/).
+- **A code editor** for... writing code! We are fans of [Visual Studio Code](https://code.visualstudio.com/).
+- **Command-line terminal (CLI)**: FYI **Windows** users, for the best Ionic experience, we
+ recommend the built-in command line (cmd) or the Powershell CLI, running in Administrator mode. For **Mac/Linux** users, virtually any terminal will work.
## Install Ionic and Cordova
diff --git a/versioned_docs/version-v8/developing/tips.md b/versioned_docs/version-v8/developing/tips.md
index 1ed040a4ff0..c4cdc6ca5bc 100644
--- a/versioned_docs/version-v8/developing/tips.md
+++ b/versioned_docs/version-v8/developing/tips.md
@@ -61,9 +61,7 @@ Global packages will now be installed in the `~/.nvm` directory, so permission e
### Option 2
-
- Does not apply to Windows
-
+_Does not apply to Windows_
Change the owner of npm's directories to the current user:
diff --git a/versioned_docs/version-v8/index.md b/versioned_docs/version-v8/index.md
index 5c408d5ee3f..f6ee47a2392 100644
--- a/versioned_docs/version-v8/index.md
+++ b/versioned_docs/version-v8/index.md
@@ -125,7 +125,7 @@ The official [Ionic CLI](cli.md), or Command Line Interface, is a tool that quic
## Appflow
-To help build, deploy, and manage Ionic apps throughout their lifecycle, we offer a commercial service for production apps called [Appflow](https://ionic.io/appflow), which is separate from the open source Framework.
+To help build, deploy, and manage Ionic apps throughout their lifecycle, we offer a commercial service for production apps called [Appflow](https://ionic.io/appflow), which is **separate from the open source Framework.**
Appflow helps developers and teams compile native app builds and deploy live code updates to Ionic apps from a centralized dashboard. Optional paid upgrades are available for more advanced capabilities like publishing directly to app stores, workflow automation, single sign-on (SSO) and access to connected services and integrations.
diff --git a/versioned_docs/version-v8/react/navigation.md b/versioned_docs/version-v8/react/navigation.md
index 6f66c56ca4a..ae9dd615578 100644
--- a/versioned_docs/version-v8/react/navigation.md
+++ b/versioned_docs/version-v8/react/navigation.md
@@ -245,10 +245,9 @@ The second route defined in the Dashboard Page has a URL parameter defined (the
**UserDetailPage.tsx**
```tsx
-interface UserDetailPageProps
- extends RouteComponentProps<{
- id: string;
- }> {}
+interface UserDetailPageProps extends RouteComponentProps<{
+ id: string;
+}> {}
const UserDetailPage: React.FC = ({ match }) => {
return (
diff --git a/versioned_docs/version-v8/reference/glossary.md b/versioned_docs/version-v8/reference/glossary.md
index 6df9ec43090..ce1377d6fc5 100644
--- a/versioned_docs/version-v8/reference/glossary.md
+++ b/versioned_docs/version-v8/reference/glossary.md
@@ -44,7 +44,7 @@ Bundling is the process of taking an app's dependencies (code you've written plu
### CLI {/* #cli */}
-A CLI, or Command-Line Interface, is a text-based interface for interacting with a program. The common command-line app for a Mac user is the Terminal app, and Windows users often use Command Prompt. The Ionic community often uses this term to refer to [Ionic's CLI](https://ionicframework.com/docs/cli). Ionic's CLI can be used for a number of things, such as creating production builds of an app, running the development server, and accessing [Ionic commercial services](https://ionic.io/appflow).
+A CLI, or **C**ommand-**L**ine **I**nterface, is a text-based interface for interacting with a program. The common command-line app for a Mac user is the Terminal app, and Windows users often use Command Prompt. The Ionic community often uses this term to refer to [Ionic's CLI](https://ionicframework.com/docs/cli). Ionic's CLI can be used for a number of things, such as creating production builds of an app, running the development server, and accessing [Ionic commercial services](https://ionic.io/appflow).
{/* cspell:enable */}
@@ -66,7 +66,7 @@ You may be familiar with variables from Sass. [CSS Variables](https://developers
### Decorators {/* #decorators */}
-Decorators are expressions that return a function. They allow you to take an existing function, and extend its behavior. With TypeScript, you can also decorate classes and parameters. When you decorate a class, you are wrapping and extending the behavior of its constructor. In other words, the decorator will add some functionality when the constructor is called, and will then return the original constructor. When you decorate a parameter, you are wrapping the argument that gets passed in for that parameter. The decorator will add functionality when an argument is passed to the method, and then return the original argument.
+Decorators are expressions that return a function. They allow you to take an existing function, and extend its behavior. With TypeScript, you can also decorate _classes_ and _parameters_. When you decorate a **class**, you are wrapping and extending the behavior of its constructor. In other words, the decorator will add some functionality when the constructor is called, and will then return the original constructor. When you decorate a **parameter**, you are wrapping the argument that gets passed in for that parameter. The decorator will add functionality when an argument is passed to the method, and then return the original argument.
### ES5 {/* #es5 */}
@@ -114,7 +114,7 @@ Modules in JavaScript are small, independent, and reusable pieces or code that a
### Monorepo {/* #monorepo */}
-A monorepo is a single git repository with multiple projects. Advantages include simpler organization, shared tooling and dependencies, and better collaboration with teammates.
+A **monorepo** is a single git repository with multiple projects. Advantages include simpler organization, shared tooling and dependencies, and better collaboration with teammates.
### Live Reload {/* #livereload */}
@@ -134,7 +134,7 @@ An observable is an object that emits events (or notifications). An observer is
### Package ID {/* #package-id */}
-Referred to by Apple as Bundle ID and by Android as Application ID, the Package ID is used for identifying apps published to the App Store/Play Store. It is a string formatted in [reverse-DNS notation](https://en.wikipedia.org/wiki/Reverse_domain_name_notation).
+Referred to by Apple as **Bundle ID** and by Android as **Application ID**, the **Package ID** is used for identifying apps published to the App Store/Play Store. It is a string formatted in [reverse-DNS notation](https://en.wikipedia.org/wiki/Reverse_domain_name_notation).
### Polyfill {/* #polyfill */}
@@ -162,7 +162,7 @@ A shim is a piece of code that normalizes an APIs across browsers. A shim can ha
### Transpiler {/* #transpiler */}
-Transpilation is the process of converting code from one language to another language prior to execution. Typically, a transpiler will convert a high-level language to another high-level language. The most common type of transpilation in Ionic Framework is converting [ES2015/ES6](#es2015-es6) ([TypeScript](#typescript)) to [ES5](#es5) (traditional JavaScript).
+Transpilation is the process of converting code from one language to another language prior to execution. Typically, a transpiler will convert a high-level language to another high-level language. The most common type of _transpilation_ in Ionic Framework is converting [ES2015/ES6](#es2015-es6) ([TypeScript](#typescript)) to [ES5](#es5) (traditional JavaScript).
### TypeScript {/* #typescript */}
diff --git a/versioned_docs/version-v8/reference/support.md b/versioned_docs/version-v8/reference/support.md
index 9bfc1a2e7a2..99fbba884cf 100644
--- a/versioned_docs/version-v8/reference/support.md
+++ b/versioned_docs/version-v8/reference/support.md
@@ -52,7 +52,9 @@ The Ionic team has compiled a set of recommendations for using the Ionic Framewo
| v3 | v5.2.11 | v5.2.11 | 2.6.2 |
[^1]: Angular 14.x supported starting in Ionic v6.1.9. Angular 15.x supported starting in Ionic v6.3.6.
+
[^2]: Angular 17.x supported starting in Ionic v7.5.4.
+
[^3]: Angular 18.x supported starting in Ionic v8.2.0.
**Angular 13+ Support On Older Versions of iOS**
diff --git a/versioned_docs/version-v8/theming/basics.md b/versioned_docs/version-v8/theming/basics.md
index f89c78e4026..c7072fd73c7 100644
--- a/versioned_docs/version-v8/theming/basics.md
+++ b/versioned_docs/version-v8/theming/basics.md
@@ -25,7 +25,7 @@ When changing a color, it is important to set all of the related properties. Thi
## Platform Standards
-Ionic components adapt their look and behavior based on the platform the app is running on. We call this Adaptive Styling. This allows developers to build apps that use the same codebase for multiple platforms, while still looking "native" to those particular platforms.
+Ionic components adapt their look and behavior based on the platform the app is running on. We call this **Adaptive Styling**. This allows developers to build apps that use the same codebase for multiple platforms, while still looking "native" to those particular platforms.
Ionic has two **modes** that are used to customize the look of components based on the **platform**: `ios` and `md`. Each platform has a default mode, but this can easily be configured. For more information on customizing an application based on the platform, refer to [Platform Styles](platform-styles.md).
diff --git a/versioned_docs/version-v8/troubleshooting/native.md b/versioned_docs/version-v8/troubleshooting/native.md
index 80f8be3948a..357e40b45f0 100644
--- a/versioned_docs/version-v8/troubleshooting/native.md
+++ b/versioned_docs/version-v8/troubleshooting/native.md
@@ -24,7 +24,7 @@ Running an app on an iOS device requires a provisioning profile. If a provisioni
For Cordova, open the `config.xml` file and modify the `id` attribute of the root element, ``. Refer to [the Cordova documentation](https://cordova.apache.org/docs/en/latest/config_ref/#widget) for more information.
-2. **Open the project in Xcode.**
+2. **Open the project in **Xcode**.**
For Capacitor, run the following to open the app in Xcode:
@@ -34,11 +34,11 @@ Running an app on an iOS device requires a provisioning profile. If a provisioni
For Cordova, open Xcode. Use **File** » **Open** and locate the app. Open the app's `platforms/ios` directory.
-3. **In Project navigator, select the project root to open the project editor. Under the Identity section, verify that the Package ID that was set matches the Bundle Identifier.**
+3. **In **Project navigator**, select the project root to open the project editor. Under the **Identity** section, verify that the Package ID that was set matches the Bundle Identifier.**

-4. **In the same project editor, under the Signing section, ensure Automatically manage signing is enabled.** Then, select a Development Team. Given a Development Team, Xcode will attempt to automatically prepare provisioning and signing.
+4. **In the same project editor, under the **Signing** section, ensure **Automatically manage signing** is enabled.** Then, select a Development Team. Given a Development Team, Xcode will attempt to automatically prepare provisioning and signing.
