Skip to content

Commit

Permalink
Merge branch 'master' into 7631-ghost-danger-icon-button-svgs
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Jan 25, 2021
2 parents ee282b7 + 0dead00 commit aeff651
Show file tree
Hide file tree
Showing 71 changed files with 5,184 additions and 7,962 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/vlq-npm-0.2.3-292fe9aaa1-48055a9675.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion config/jest-config-carbon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jest-config-carbon",
"private": true,
"description": "Jest configuration and preset for Carbon",
"version": "0.1.0-rc.0",
"version": "0.1.0",
"license": "Apache-2.0",
"main": "index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion config/prettier-config-carbon/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "prettier-config-carbon",
"description": "Prettier config for the Carbon Design System",
"version": "0.6.0-rc.0",
"version": "0.6.0",
"license": "Apache-2.0",
"main": "index.js",
"repository": {
Expand Down
24 changes: 24 additions & 0 deletions docs/migration/11.x-layout.md
Original file line number Diff line number Diff line change
@@ -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` |
11 changes: 11 additions & 0 deletions docs/migration/11.x-motion.md
Original file line number Diff line number Diff line change
@@ -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` |
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@carbon/cli",
"description": "Task automation for working with the Carbon Design System",
"version": "10.18.0-rc.0",
"version": "10.18.0",
"license": "Apache-2.0",
"bin": {
"carbon-cli": "./bin/carbon-cli.js"
Expand Down Expand Up @@ -42,7 +42,7 @@
"lodash.template": "^4.5.0",
"markdown-toc": "^1.2.0",
"prettier": "^2.2.1",
"prettier-config-carbon": "^0.6.0-rc.0",
"prettier-config-carbon": "^0.6.0",
"progress-estimator": "^0.2.2",
"remark": "^10.0.1",
"replace-in-file": "^6.1.0",
Expand Down
1 change: 1 addition & 0 deletions packages/colors/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
scss
index.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`modules.scss Public API 1`] = `
exports[`@carbon/colors Public API 1`] = `
Object {
"black": "#000000",
"black-100": "#000000",
Expand Down
6 changes: 3 additions & 3 deletions packages/colors/__tests__/modules-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ const { SassRenderer } = require('@carbon/test-utils/scss');

const { render } = SassRenderer.create(__dirname);

describe('modules.scss', () => {
describe('@carbon/colors', () => {
test('Public API', async () => {
const { getValue } = await render(`
@use 'sass:meta';
@use '../scss/module';
@use '../index.scss' as colors;
$_: get-value(meta.module-variables('module'));
$_: get-value(meta.module-variables('colors'));
`);

const variables = getValue(0);
Expand Down
Loading

0 comments on commit aeff651

Please sign in to comment.