Skip to content

Commit 34a2cd1

Browse files
authored
chore(components): remove deprecated components (#2187)
* chore(components): remove deprecated components * fix imports * Skip deprecated component tests * Remove progress bar from table test images * changeset * Remove uploader controller * Remove uploader and expandable controllers from js bundle * They're not deprecated; they're removed! * That link shouldn't go to breadcrumbs!
1 parent 86a8e06 commit 34a2cd1

392 files changed

Lines changed: 773 additions & 763 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/itchy-mirrors-yawn.md

Lines changed: 5 additions & 0 deletions

packages/stacks-classic/lib/components/breadcrumbs/breadcrumbs.a11y.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { runA11yTests } from "../../test/a11y-test-utils";
22
import { html } from "@open-wc/testing";
33
import "../../index";
44

5-
describe("breadcrumbs", () => {
5+
describe.skip("breadcrumbs", () => {
66
runA11yTests({
77
baseClass: "s-breadcrumbs",
88
children: {

packages/stacks-classic/lib/components/breadcrumbs/breadcrumbs.visual.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { runVisualTests } from "../../test/visual-test-utils";
22
import { html } from "@open-wc/testing";
33
import "../../index";
44

5-
describe("breadcrumbs", () => {
5+
describe.skip("breadcrumbs", () => {
66
runVisualTests({
77
baseClass: "s-breadcrumbs",
88
children: {

packages/stacks-classic/lib/components/button-group/button-group.a11y.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { testArgs } from "./button-group.test.setup";
22
import { runA11yTests } from "../../test/a11y-test-utils";
33
import "../../index";
44

5-
describe("button group", () => {
5+
describe.skip("button group", () => {
66
runA11yTests({
77
...testArgs,
88
// TODO remove skipped tests once btn badge contrast issues are resolved

packages/stacks-classic/lib/components/button-group/button-group.visual.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import { testArgs } from "./button-group.test.setup";
22
import { runVisualTests } from "../../test/visual-test-utils";
33
import "../../index";
44

5-
describe("button group", () => {
5+
describe.skip("button group", () => {
66
runVisualTests(testArgs);
77
});

packages/stacks-classic/lib/components/card/card.a11y.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { runA11yTests } from "../../test/a11y-test-utils";
22
import "../../index";
33

4-
describe("card", () => {
4+
describe.skip("card", () => {
55
runA11yTests({
66
baseClass: "s-card",
77
variants: ["muted"],

packages/stacks-classic/lib/components/card/card.visual.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const baseChild = `
2424
</div>
2525
`;
2626

27-
describe("card", () => {
27+
describe.skip("card", () => {
2828
runVisualTests({
2929
baseClass: "s-card",
3030
variants: ["muted"],

packages/stacks-classic/lib/components/expandable/expandable.a11y.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { html } from "@open-wc/testing";
22
import { runA11yTests } from "../../test/a11y-test-utils";
33
import "../../index";
44

5-
describe("expandable", () => {
5+
describe.skip("expandable", () => {
66
runA11yTests({
77
baseClass: "s-expandable",
88
modifiers: {

packages/stacks-classic/lib/components/expandable/expandable.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "../../index";
55

66
const user = userEvent.setup();
77

8-
describe("expandable-control", () => {
8+
describe.skip("expandable-control", () => {
99
it("should focus on expandable content only when expanded", async () => {
1010
await fixture(html`
1111
<button

packages/stacks-classic/lib/components/expandable/expandable.visual.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { html } from "@open-wc/testing";
22
import { runVisualTests } from "../../test/visual-test-utils";
33
import "../../index";
44

5-
describe("expandable", () => {
5+
describe.skip("expandable", () => {
66
runVisualTests({
77
baseClass: "s-expandable",
88
modifiers: {

0 commit comments

Comments
 (0)