From a0cfdff1b572533d13b26b29ad9f19891a43a046 Mon Sep 17 00:00:00 2001 From: Josh Black Date: Tue, 12 Jan 2021 16:46:56 -0600 Subject: [PATCH] docs(migration): add initial 11.x docs for sass modules --- docs/migration/11.x-layout.md | 24 ++++++++++++++++++++++++ docs/migration/11.x-motion.md | 11 +++++++++++ 2 files changed, 35 insertions(+) create mode 100644 docs/migration/11.x-layout.md create mode 100644 docs/migration/11.x-motion.md diff --git a/docs/migration/11.x-layout.md b/docs/migration/11.x-layout.md new file mode 100644 index 000000000000..a02f6e225c37 --- /dev/null +++ b/docs/migration/11.x-layout.md @@ -0,0 +1,24 @@ +# Layout + +**Note: everything in this file is a work-in-progress and will be changed.** + +## Changes + +| v10 | v11 | +| --------------------------------- | ------------------------- | +| `$carbon--base-font-size` | `$base-font-size` | +| `carbon--rem` | `rem` | +| `carbon--em` | `em` | +| `$carbon--grid-gutter` | `$grid-gutter` | +| `$carbon--grid-gutter--condensed` | `$grid-gutter--condensed` | +| `$carbon--grid-breakpoints` | `$grid-breakpoints` | +| `carbon--breakpoint-next` | `breakpoint-next` | +| `carbon--breakpoint-prev` | `breakpoint-prev` | +| `carbon--is-smallest-breakpoint` | `is-smallest-breakpoint` | +| `carbon--largest-breakpoint-name` | `largest-breakpoint-name` | +| `carbon--breakpoint-infix` | `breakpoint-infix` | +| `carbon--breakpoint-up` | `breakpoint-up` | +| `carbon--breakpoint-down` | `breakpoint-down` | +| `carbon--breakpoint-between` | `breakpoint-between` | +| `carbon--largest-breakpoint` | `largest-breakpoint` | +| `carbon--breakpoint` | `breakpoint` | diff --git a/docs/migration/11.x-motion.md b/docs/migration/11.x-motion.md new file mode 100644 index 000000000000..f95b816b4bcd --- /dev/null +++ b/docs/migration/11.x-motion.md @@ -0,0 +1,11 @@ +# Motion + +**Note: everything in this file is a work-in-progress and will be changed.** + +## Changes + +| v10 | v11 | +| -------------------------- | ---------- | +| `$carbon--easings` | `$easings` | +| `@function carbon--motion` | `motion` | +| `@mixin carbon--motion` | `motion` |