Skip to content

Commit

Permalink
add gitignore, move editorconfig, package.json updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rschlaefli committed Nov 26, 2024
1 parent 3eb00f3 commit c0c5d20
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 50 deletions.
File renamed without changes.
4 changes: 4 additions & 0 deletions packages/tc-web/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
docs/
dist/
.stencil/
loader/
8 changes: 4 additions & 4 deletions packages/tc-web/docs/index.html

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion packages/tc-web/loader/cdn.js

This file was deleted.

1 change: 0 additions & 1 deletion packages/tc-web/loader/index.cjs.js

This file was deleted.

21 changes: 0 additions & 21 deletions packages/tc-web/loader/index.d.ts

This file was deleted.

1 change: 0 additions & 1 deletion packages/tc-web/loader/index.es2017.js

This file was deleted.

2 changes: 0 additions & 2 deletions packages/tc-web/loader/index.js

This file was deleted.

11 changes: 0 additions & 11 deletions packages/tc-web/loader/package.json

This file was deleted.

5 changes: 4 additions & 1 deletion packages/tc-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"dev": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate"
Expand All @@ -34,5 +34,8 @@
"stencil-tailwind-plugin": "1.8.0",
"tailwindcss": "3.4.15",
"typescript": "5.7.2"
},
"volta": {
"extends": "../../package.json"
}
}
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": number;
"gap": string;
"lgColumns": number;
"mdColumns": number;
"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"?: number;
"gap"?: string;
"lgColumns"?: number;
"mdColumns"?: number;
"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

0 comments on commit c0c5d20

Please sign in to comment.