Skip to content

Commit

Permalink
remove unnecessary CSS files
Browse files Browse the repository at this point in the history
  • Loading branch information
rschlaefli committed Nov 26, 2024
1 parent c0c5d20 commit 62551e7
Show file tree
Hide file tree
Showing 22 changed files with 14 additions and 54 deletions.
16 changes: 8 additions & 8 deletions packages/tc-web/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ export namespace Components {
}
interface TcGridContainer {
"backgroundColor": string;
"columns": 1|2|3|4|5|6;
"gap": 'sm' | 'md' | 'lg' | 'xl';
"lgColumns": 1|2|3|4|5|6;
"mdColumns": 1|2|3|4|5|6;
"columns": 1 | 2 | 3 | 4 | 5 | 6;
"gap": "sm" | "md" | "lg" | "xl";
"lgColumns": 1 | 2 | 3 | 4 | 5 | 6;
"mdColumns": 1 | 2 | 3 | 4 | 5 | 6;
}
interface TcGridItem {
"giTitle": string;
Expand Down Expand Up @@ -164,10 +164,10 @@ declare namespace LocalJSX {
}
interface TcGridContainer {
"backgroundColor"?: string;
"columns"?: 1|2|3|4|5|6;
"gap"?: 'sm' | 'md' | 'lg' | 'xl';
"lgColumns"?: 1|2|3|4|5|6;
"mdColumns"?: 1|2|3|4|5|6;
"columns"?: 1 | 2 | 3 | 4 | 5 | 6;
"gap"?: "sm" | "md" | "lg" | "xl";
"lgColumns"?: 1 | 2 | 3 | 4 | 5 | 6;
"mdColumns"?: 1 | 2 | 3 | 4 | 5 | 6;
}
interface TcGridItem {
"giTitle"?: string;
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component, Prop, h } from "@stencil/core";

@Component({
tag: "tc-bulletpoint-list",
styleUrl: "tc-bulletpoint-list.css",
shadow: true,
})
export class BulletpointList {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { parseTags } from "../../util/util";

@Component({
tag: "tc-collapsible",
styleUrl: "tc-collapsible.css",
shadow: true,
})
export class TcCollapsible {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ import { Component, Prop, h } from "@stencil/core";
@Component({
tag: "tc-grid-container",
shadow: true,
styleUrl: "tc-grid-container.css",
})
export class TcGridContainer {
@Prop() mdColumns: 1|2|3|4|5|6 = 2;
@Prop() lgColumns: 1|2|3|4|5|6 = 4;
@Prop() columns: 1|2|3|4|5|6 = 1;
@Prop() gap: 'sm' | 'md' | 'lg' | 'xl' = "md";
@Prop() mdColumns: 1 | 2 | 3 | 4 | 5 | 6 = 2;
@Prop() lgColumns: 1 | 2 | 3 | 4 | 5 | 6 = 4;
@Prop() columns: 1 | 2 | 3 | 4 | 5 | 6 = 1;
@Prop() gap: "sm" | "md" | "lg" | "xl" = "md";
@Prop() backgroundColor: string = "rgb(255, 255, 255)";

// Default to 2 columns
Expand Down
3 changes: 0 additions & 3 deletions packages/tc-web/src/components/tc-grid-item/tc-grid-item.css

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component, Prop, h } from "@stencil/core";

@Component({
tag: "tc-grid-item",
styleUrl: "tc-grid-item.css",
shadow: true,
})
export class GridItem {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component, Prop, h } from "@stencil/core";

@Component({
tag: "tc-img-quote-card",
styleUrl: "tc-img-quote-card.css",
shadow: true,
})
export class ImgQuoteCard {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component, Prop, h } from "@stencil/core";

@Component({
tag: "tc-img-text-card",
styleUrl: "tc-img-text-card.css",
shadow: true,
})
export class TcImgTextCard {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { Component, Prop, h } from "@stencil/core";
import { parseTags } from "../../../util/util";
import { parseTags } from "../../util/util";

@Component({
tag: "tc-job-listing",
styleUrl: "tc-job-listing.css",
shadow: true,
})
export class JobListing {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ import { Component, Prop, h, Host } from "@stencil/core";

@Component({
tag: "segment-container",
styleUrl: "tc-segment-container.css",
shadow: true,
})
export class SegmentContainer {
@Prop({attribute:"title"}) segTitle: string;
@Prop({ attribute: "title" }) segTitle: string;
@Prop() backgroundColor: string;

render() {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component, Prop, h } from "@stencil/core";

@Component({
tag: "tc-open-positions",
styleUrl: "tc-open-positions.css",
shadow: true,
})
export class OpenPositions {
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component, Prop, h } from "@stencil/core";

@Component({
tag: "tc-svg-icon-card",
styleUrl: "tc-svg-icon-card.css",
shadow: true,
})
export class SVGIconCard {
Expand Down

0 comments on commit 62551e7

Please sign in to comment.