Skip to content

Commit

Permalink
Merge branch 'release/0.9.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
jabbett committed Apr 2, 2024
2 parents 004a767 + 7f47355 commit edf26cd
Show file tree
Hide file tree
Showing 119 changed files with 1,049 additions and 347 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy-storybook-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ jobs:
npm ci
npm run build
npm run build-storybook
mv www storybook-static/prototypes
- name: Upload artifact
- name: Upload storybook artifact
uses: actions/[email protected]
with:
path: storybook-static
Expand Down
36 changes: 18 additions & 18 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 @@ -2,7 +2,7 @@
"name": "@sharpen-com/kezuri",
"description": "The Sharpen Design System",
"license": "MIT",
"version": "0.9.1",
"version": "0.9.2",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.mjs",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
sharpen-simple-navigation {
.navbar {
height: 4.5rem;
padding: 1em 0 1.5em;
background-color: var(--color-mint);
color: var(--color-evergreen);
display: flex;
align-items: center;
justify-content: space-around;
text-align: center;
--mask:
linear-gradient(to top,#0000 10px,#000 0),
radial-gradient(10px,#000 98%,#0000) bottom/18.5px 20px;
linear-gradient(to top,#0000 15px,#000 0),
radial-gradient(15px,#000 98%,#0000) bottom/30px 30px;
-webkit-mask: var(--mask);
mask: var(--mask);
font-family: var(--font-family-serif);
letter-spacing: 8pt;
}

.navbar .brand img { height: 31px; }
.navbar .brand img { height: 31px; vertical-align: -6px; }

&[background="sunrise"] .navbar {
background-color: var(--color-sunrise);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,24 @@ export class SharpenSimpleNavigation {
@Prop() brandHref: string;

render() {

// Logo mark without the text
const markSrc = getAssetPath('assets/images/brand/sharpen_mark_evergreen.png');

return (
<Host>
<div class="navbar container-fluid">
<a class="brand" href={this.brandHref}><img src={markSrc} /></a>
<slot>{this.getBrand()}</slot>
</div>
</Host>
);
}

getBrand() {
if (this.brandHref) {
// Logo mark without the text
const markSrc = getAssetPath('assets/images/brand/sharpen_mark_evergreen.png');

return (
<a class="brand" href={this.brandHref}><img src={markSrc} /></a>
)
}
}

}
54 changes: 29 additions & 25 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<title>prototypes.sharpen.com</title>
<link rel="stylesheet" href="/build/kezuri.css" />
<script type="module" src="/build/kezuri.esm.js"></script>
<script nomodule src="/build/kezuri.js"></script>
<link rel="stylesheet" href="build/kezuri.css" />
<script type="module" src="build/kezuri.esm.js"></script>
<script nomodule src="build/kezuri.js"></script>
<style>
body {
padding: 3rem;
Expand Down Expand Up @@ -34,91 +34,95 @@ <h1 class="sharpen-heading-2xl">prototypes.sharpen.com</h1>
</thead>
<tbody>
<tr>
<td><a href="/storymaker/">Storymaker Round 1</a></td>
<td><a href="storymaker-integration/">Storymaker integrated into the app</a></td>
<td>Mar 2024</td>
</tr>
<tr>
<td><a href="/back-button-bug/">Back Button Bug</a></td>
<td><a href="storymaker/">Storymaker</a></td>
<td>Mar 2024</td>
</tr>
<tr>
<td><a href="back-button-bug/">Back Button Bug</a></td>
<td>Feb 2024</td>
</tr>
<tr>
<td><a href="/parent-portal/">Parent Portal</a></td>
<td><a href="parent-portal/">Parent Portal</a></td>
<td>Feb 2024</td>
</tr>
<tr>
<td><a href="/script-typography/">Enhanced typography for instructor script</a></td>
<td><a href="script-typography/">Enhanced typography for instructor script</a></td>
<td>Feb 2024</td>
</tr>
<tr>
<td><a href="/easier-script/">More supportive instructor script</a></td>
<td><a href="easier-script/">More supportive instructor script</a></td>
<td>Feb 2024</td>
</tr>
<tr>
<td><a href="/onboarding-wizard/">Onboarding Wizard</a></td>
<td><a href="onboarding-wizard/">Onboarding Wizard</a></td>
<td>Dec 2023</td>
</tr>
<tr>
<td><a href="/responsive-nav/">Responsive Primary Navigation</a></td>
<td><a href="responsive-nav/">Responsive Primary Navigation</a></td>
<td>Dec 2023</td>
</tr>
<tr>
<td><a href="/dashboard-cards/">Dashboard Card Variations</a></td>
<td><a href="dashboard-cards/">Dashboard Card Variations</a></td>
<td>Dec 2023</td>
</tr>
<tr>
<td><a href="/mobile-placement/">Mobile-friendly Placement Assessment</a></td>
<td><a href="mobile-placement/">Mobile-friendly Placement Assessment</a></td>
<td>Oct 2023</td>
</tr>
<tr>
<td><a href="/pricing/">Pricing Plans</a></td>
<td><a href="pricing/">Pricing Plans</a></td>
<td>Oct 2023</td>
</tr>
<tr>
<td><a href="/cancellation/">Cancellation Question</a></td>
<td><a href="cancellation/">Cancellation Question</a></td>
<td>Oct 2023</td>
</tr>
<tr>
<td><a href="/onboarding-v3/">New onboarding flow, iteration 3</a></td>
<td><a href="onboarding-v3/">New onboarding flow, iteration 3</a></td>
<td>Sep 2023</td>
</tr>
<tr>
<td><a href="/onboarding-v2/">New onboarding flow, iteration 2</a></td>
<td><a href="onboarding-v2/">New onboarding flow, iteration 2</a></td>
<td>Sep 2023</td>
</tr>
<tr>
<td><a href="/cancellation/">Cancellation process</a></td>
<td><a href="cancellation/">Cancellation process</a></td>
<td>Sep 2023</td>
</tr>
<tr>
<td><a href="/onboarding/">New onboarding flow</a></td>
<td><a href="onboarding/">New onboarding flow</a></td>
<td>Sep 2023</td>
</tr>
<tr>
<td><a href="/placement-result/">Reading Placement Result</a></td>
<td><a href="placement-result/">Reading Placement Result</a></td>
<td>Sep 2023</td>
</tr>
<tr>
<td><a href="/practice-pdfs/">Extra Practice PDFs</a></td>
<td><a href="practice-pdfs/">Extra Practice PDFs</a></td>
<td>Aug 2023</td>
</tr>
<tr>
<td><a href="/dashboard-spelling/">Dashboard with Spelling cards</a></td>
<td><a href="dashboard-spelling/">Dashboard with Spelling cards</a></td>
<td>Aug 2023</td>
</tr>
<tr>
<td><a href="/new-learner/">New learner increases subscription quantity</a></td>
<td><a href="new-learner/">New learner increases subscription quantity</a></td>
<td>Aug 2023</td>
</tr>
<tr>
<td><a href="/assessments/">Assessments with new components</a></td>
<td><a href="assessments/">Assessments with new components</a></td>
<td>Aug 2023</td>
</tr>
<tr>
<td><a href="/forms/">Form elements</a></td>
<td><a href="forms/">Form elements</a></td>
<td>Aug 2023</td>
</tr>
<tr>
<td><a href="/account/">Multiple subscriptions with monthly invoices</a></td>
<td><a href="account/">Multiple subscriptions with monthly invoices</a></td>
<td>July 2023</td>
</tr>
</tbody>
Expand Down
6 changes: 3 additions & 3 deletions src/prototypes/account/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<title>Sharpen Prototype: Account</title>
<link rel="stylesheet" href="/build/kezuri.css" />
<script type="module" src="/build/kezuri.esm.js"></script>
<script nomodule src="/build/kezuri.js"></script>
<link rel="stylesheet" href="../build/kezuri.css" />
<script type="module" src="../build/kezuri.esm.js"></script>
<script nomodule src="../build/kezuri.js"></script>
</head>
<body>

Expand Down
6 changes: 3 additions & 3 deletions src/prototypes/account/invoices.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<title>Sharpen Prototype: Account</title>
<link rel="stylesheet" href="/build/kezuri.css" />
<script type="module" src="/build/kezuri.esm.js"></script>
<script nomodule src="/build/kezuri.js"></script>
<link rel="stylesheet" href="../build/kezuri.css" />
<script type="module" src="../build/kezuri.esm.js"></script>
<script nomodule src="../build/kezuri.js"></script>
</head>
<body>

Expand Down
6 changes: 3 additions & 3 deletions src/prototypes/account/learners.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<title>Sharpen Prototype: Account</title>
<link rel="stylesheet" href="/build/kezuri.css" />
<script type="module" src="/build/kezuri.esm.js"></script>
<script nomodule src="/build/kezuri.js"></script>
<link rel="stylesheet" href="../build/kezuri.css" />
<script type="module" src="../build/kezuri.esm.js"></script>
<script nomodule src="../build/kezuri.js"></script>
</head>
<body>

Expand Down
6 changes: 3 additions & 3 deletions src/prototypes/account/learners_add.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<title>Sharpen Prototype: Account</title>
<link rel="stylesheet" href="/build/kezuri.css" />
<script type="module" src="/build/kezuri.esm.js"></script>
<script nomodule src="/build/kezuri.js"></script>
<link rel="stylesheet" href="../build/kezuri.css" />
<script type="module" src="../build/kezuri.esm.js"></script>
<script nomodule src="../build/kezuri.js"></script>
</head>
<body>

Expand Down
6 changes: 3 additions & 3 deletions src/prototypes/account/learners_select.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<title>Sharpen Prototype: Account</title>
<link rel="stylesheet" href="/build/kezuri.css" />
<script type="module" src="/build/kezuri.esm.js"></script>
<script nomodule src="/build/kezuri.js"></script>
<link rel="stylesheet" href="../build/kezuri.css" />
<script type="module" src="../build/kezuri.esm.js"></script>
<script nomodule src="../build/kezuri.js"></script>
</head>
<body>

Expand Down
6 changes: 3 additions & 3 deletions src/prototypes/account/payment.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<title>Sharpen Prototype: Account</title>
<link rel="stylesheet" href="/build/kezuri.css" />
<script type="module" src="/build/kezuri.esm.js"></script>
<script nomodule src="/build/kezuri.js"></script>
<link rel="stylesheet" href="../build/kezuri.css" />
<script type="module" src="../build/kezuri.esm.js"></script>
<script nomodule src="../build/kezuri.js"></script>
</head>
<body>

Expand Down
6 changes: 3 additions & 3 deletions src/prototypes/assessments/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<title>Sharpen Prototype: Assessments</title>
<link rel="stylesheet" href="/build/kezuri.css" />
<script type="module" src="/build/kezuri.esm.js"></script>
<script nomodule src="/build/kezuri.js"></script>
<link rel="stylesheet" href="../build/kezuri.css" />
<script type="module" src="../build/kezuri.esm.js"></script>
<script nomodule src="../build/kezuri.js"></script>
<style>
.assessment-collection + .assessment-collection,
.assessment-collection sharpen-card + sharpen-card {
Expand Down
Loading

0 comments on commit edf26cd

Please sign in to comment.