From 4dd93c1e0d8c23eef15317e4fa71abe18ddec154 Mon Sep 17 00:00:00 2001 From: Nikita Krupin Date: Fri, 28 Jul 2023 16:06:40 -0400 Subject: [PATCH] Fixes #84 --- docs/components/Changelog.js | 247 ++++++++++++++++++----------------- docs/components/Examples.js | 160 +++++++++++------------ 2 files changed, 206 insertions(+), 201 deletions(-) diff --git a/docs/components/Changelog.js b/docs/components/Changelog.js index 864c738..cf5da9a 100644 --- a/docs/components/Changelog.js +++ b/docs/components/Changelog.js @@ -1,125 +1,130 @@ import { html } from '@src/index' export default function () { - return html` -

Changelog

-

Alpha 9

- -

Alpha 8

- -

Alpha 7

- -

Alpha 6

- -

Alpha 5

- -

Alpha 4

- -

Alpha 3

- -

Alpha 2

- -

Alpha 1

- - ` + return html`

Changelog

+
+

Alpha 9

+ +

Alpha 8

+ +

Alpha 7

+ +

Alpha 6

+ +

Alpha 5

+ +

Alpha 4

+ +

Alpha 3

+ +

Alpha 2

+ +

Alpha 1

+ +
` } diff --git a/docs/components/Examples.js b/docs/components/Examples.js index dea2b9a..80ef09d 100644 --- a/docs/components/Examples.js +++ b/docs/components/Examples.js @@ -1,90 +1,90 @@ import { html } from '@src/index' export default function () { - return html`
-

Examples

-

- To spice up your imagination of what Arrow can do, check out the following - basic examples. -

+ return html`

Examples

+
+

+ To spice up your imagination of what Arrow can do, check out the + following basic examples. +

-

Calculator

-

A simple point and click calculator.

- +

Calculator

+

A simple point and click calculator.

+ -

Performance

-

- A performance demonstration (Vue vs Arrow) with 500 nodes changing - reactively. -

- +

Performance

+

+ A performance demonstration (Vue vs Arrow) with 500 nodes changing + reactively. +

+ -

Dropdown

-

- A simple synthetic (not a native select element) dropdown list component - written with Arrow. Demonstrates Arrow’s ability to reuse code via - components. -

- +

Dropdown

+

+ A simple synthetic (not a native select element) dropdown list component + written with Arrow. Demonstrates Arrow’s ability to reuse code via + components. +

+ -

Carousel

-

A simple, interactive image carousel.

- +

Carousel

+

A simple, interactive image carousel.

+ -

Tabs

-

A basic example of navigating through content with tabs.

- +

Tabs

+

A basic example of navigating through content with tabs.

+ -

min-gzip

-

- Quickly check how your code compresses with gzip, brotli, and - minification. -

- -
` +

min-gzip

+

+ Quickly check how your code compresses with gzip, brotli, and + minification. +

+ +
` }