-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into readonlyTimePicker
- Loading branch information
Showing
87 changed files
with
1,140 additions
and
422 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file added
BIN
+28 KB
.yarn/cache/@rollup-plugin-typescript-npm-8.5.0-1107006ede-2f100a73cd.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-697 KB
.yarn/cache/@typescript-eslint-eslint-plugin-npm-5.18.0-113aeb2d78-e8f0e7cfa0.zip
Binary file not shown.
Binary file added
BIN
+676 KB
.yarn/cache/@typescript-eslint-eslint-plugin-npm-5.38.1-a0d314dce5-a889558802.zip
Binary file not shown.
Binary file removed
BIN
-12.9 KB
.yarn/cache/@typescript-eslint-parser-npm-5.18.0-bcccf7640a-8e007a4980.zip
Binary file not shown.
Binary file added
BIN
+12.9 KB
.yarn/cache/@typescript-eslint-parser-npm-5.38.1-e2beb34fbe-3f84b33d59.zip
Binary file not shown.
Binary file added
BIN
+306 KB
.yarn/cache/@typescript-eslint-scope-manager-npm-5.38.1-24ac315081-c3b38ca007.zip
Binary file not shown.
Binary file renamed
BIN
+42.2 KB
...tils-npm-5.18.0-6faa08ca9b-a9722e1863.zip → ...tils-npm-5.38.1-c212f64f32-1e5fbb5cd2.zip
Binary file not shown.
Binary file added
BIN
+29 KB
.yarn/cache/@typescript-eslint-types-npm-5.38.1-25ef03dead-384f7fe9a1.zip
Binary file not shown.
Binary file added
BIN
+131 KB
.yarn/cache/@typescript-eslint-typescript-estree-npm-5.38.1-139af46521-ec73496f73.zip
Binary file not shown.
Binary file added
BIN
+122 KB
.yarn/cache/@typescript-eslint-utils-npm-5.38.1-f0191b30c9-06646ddeb6.zip
Binary file not shown.
Binary file added
BIN
+9.24 KB
.yarn/cache/@typescript-eslint-visitor-keys-npm-5.38.1-94aa1a9778-01c83a4290.zip
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 not shown.
Binary file not shown.
Binary file renamed
BIN
+11.3 MB
...-darwin-arm64-npm-12.1.4-8bc9a59090-8.zip → ...cript-npm-4.8.4-9c0a335511-3e4f061658.zip
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+13 MB
...32-arm64-msvc-npm-12.1.4-b5b707823d-8.zip → ...ypescript-patch-80bfdb5552-301459fc3e.zip
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
/** | ||
* Copyright IBM Corp. 2016, 2018 | ||
* | ||
* This source code is licensed under the Apache-2.0 license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
const { expect, test } = require('@playwright/test'); | ||
const { themes } = require('../../test-utils/env'); | ||
const { snapshotStory, visitStory } = require('../../test-utils/storybook'); | ||
|
||
test.describe('ContainedList', () => { | ||
themes.forEach((theme) => { | ||
test.describe(theme, () => { | ||
test('default @vrt', async ({ page }) => { | ||
await snapshotStory(page, { | ||
component: 'ContainedList', | ||
id: 'components-containedlist--default', | ||
theme, | ||
}); | ||
}); | ||
|
||
test('disclosed @vrt', async ({ page }) => { | ||
await snapshotStory(page, { | ||
component: 'ContainedList', | ||
id: 'components-containedlist--disclosed', | ||
theme, | ||
}); | ||
}); | ||
|
||
test('with-actions @vrt', async ({ page }) => { | ||
await snapshotStory(page, { | ||
component: 'ContainedList', | ||
id: 'components-containedlist--with-actions', | ||
theme, | ||
}); | ||
}); | ||
|
||
test('with-icons @vrt', async ({ page }) => { | ||
await snapshotStory(page, { | ||
component: 'ContainedList', | ||
id: 'components-containedlist--with-icons', | ||
theme, | ||
}); | ||
}); | ||
|
||
test('with-interactive-items @vrt', async ({ page }) => { | ||
await snapshotStory(page, { | ||
component: 'ContainedList', | ||
id: 'components-containedlist--with-interactive-items', | ||
theme, | ||
}); | ||
}); | ||
|
||
test('with-interactive-items-and-actions @vrt', async ({ page }) => { | ||
await snapshotStory(page, { | ||
component: 'ContainedList', | ||
id: 'components-containedlist--with-interactive-items-and-actions', | ||
theme, | ||
}); | ||
}); | ||
|
||
test('with-layer @vrt', async ({ page }) => { | ||
await snapshotStory(page, { | ||
component: 'ContainedList', | ||
id: 'components-containedlist--with-layer', | ||
theme, | ||
}); | ||
}); | ||
|
||
test('with-list-title-decorators @vrt', async ({ page }) => { | ||
await snapshotStory(page, { | ||
component: 'ContainedList', | ||
id: 'components-containedlist--with-list-title-decorators', | ||
theme, | ||
}); | ||
}); | ||
|
||
test('playground @vrt', async ({ page }) => { | ||
await snapshotStory(page, { | ||
component: 'ContainedList', | ||
id: 'components-containedlist--playground', | ||
theme, | ||
}); | ||
}); | ||
}); | ||
}); | ||
|
||
test('accessibility-checker @avt', async ({ page }) => { | ||
await visitStory(page, { | ||
component: 'ContainedList', | ||
id: 'components-containedlist--default', | ||
globals: { | ||
theme: 'white', | ||
}, | ||
}); | ||
await expect(page).toHaveNoACViolations('ContainedList'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"name": "codesandbox-styles", | ||
"private": true, | ||
"version": "0.19.0", | ||
"version": "0.20.0-rc.1", | ||
"scripts": { | ||
"develop": "vite" | ||
}, | ||
"devDependencies": { | ||
"vite": "^2.8.0" | ||
}, | ||
"dependencies": { | ||
"@carbon/styles": "^1.16.0", | ||
"@carbon/styles": "^1.17.0-rc.1", | ||
"sass": "^1.51.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.