Skip to content

Commit

Permalink
Version 1.0.1-beta.
Browse files Browse the repository at this point in the history
  • Loading branch information
marvel-uiuc committed Oct 8, 2024
1 parent be96023 commit b78ddb5
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
19 changes: 14 additions & 5 deletions builder/versions/ilw-card.1.0-beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"element-name": "ilw-card",
"description": "A card component that can be used as a container for grouping information.",
"builder-version": "1.0-beta1",
"version": "1.0.0-beta1",
"version": "1.0.1-beta",
"date": "08/02/2024",
"css": "https://dev.toolkit.illinois.edu/ilw-card/1.0.0-beta1/ilw-card.css",
"js": "https://dev.toolkit.illinois.edu/ilw-card/1.0.0-beta1/ilw-card.js",
"css": "https://dev.toolkit.illinois.edu/ilw-card/1.0.1-beta/ilw-card.css",
"js": "https://dev.toolkit.illinois.edu/ilw-card/1.0.1-beta/ilw-card.js",
"production": false,
"notes": "",
"parent-style": "margin: 0 auto; max-width: 400px; padding: 15px;",
Expand Down Expand Up @@ -83,6 +83,15 @@
"1/3",
"10/16"
]
},
{
"name": "tag",
"description": "Use a div tag instead of article",
"depreciated": false,
"values": [
"",
"div"
]
}
],
"classes-fixed": [],
Expand All @@ -91,12 +100,12 @@
{
"name": "--ilw-card--margin-top",
"depreciated": false,
"description": "Margin above cards [default: 1rem]"
"description": "Margin above cards [default: 0]"
},
{
"name": "--ilw-card--margin-bottom",
"depreciated": false,
"description": "Margin below cards [default: 1rem]"
"description": "Margin below cards [default: 0]"
},
{
"name": "--ilw-card--content-padding-top",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Illinois Toolkit: A card component that can be used as a container for grouping information, reminiscent of a physical note or playing card.",
"repository": "github:web-illinois/ilw-card",
"private": false,
"version": "1.0.0-beta1",
"version": "1.0.1-beta",
"type": "module",
"files": [
"src/**",
Expand Down
2 changes: 1 addition & 1 deletion parse-vars.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {readFileSync} from "fs";

const contents = readFileSync("src/ilw-card.css", "utf-8");
const contents = readFileSync("src/ilw-card.styles.css", "utf-8");
const regex = /^\s*(--[\w-]+):\s*([^;]+);\s*\/\*\s*(var|vardep):\s*(.+)\*\s*\/$/gm;

let output = [];
Expand Down

0 comments on commit b78ddb5

Please sign in to comment.