Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
ed9d7c0
remove containerless yay
lukelarsen Mar 25, 2020
596e52c
docs clean up
lukelarsen Mar 25, 2020
a9bc676
c-form-select and c-form-add-remove fixes
lukelarsen Mar 25, 2020
f7c0af5
c-button code clean up
lukelarsen Mar 25, 2020
ec7af62
c-copy html clean up
lukelarsen Mar 25, 2020
8d0140c
c-form-image html clean up
lukelarsen Mar 25, 2020
1b783af
c-form-radio-container html clean up
lukelarsen Mar 25, 2020
1a3b3fa
c-checkbox-input html clean up
lukelarsen Mar 25, 2020
f98fd9d
c-label-checkbox
lukelarsen Mar 25, 2020
54467fd
c-form-checkbox html clean up
lukelarsen Mar 25, 2020
55f65da
c-form-radio html clean up
lukelarsen Mar 25, 2020
4060711
c-radio-input html clean up
lukelarsen Mar 25, 2020
caa835a
c-radio-label html clean up
lukelarsen Mar 25, 2020
d14ab50
c-form-toggle html clean up
lukelarsen Mar 25, 2020
5d22d82
c-form-date html clean up
lukelarsen Mar 25, 2020
2953c75
c-form-file html clean up
lukelarsen Mar 25, 2020
3a7c351
c-form-add-remove and c-form-select html clean up
lukelarsen Mar 25, 2020
f033d8a
fill-space added to l-box and l-box-link
lukelarsen Mar 26, 2020
da52ce7
c-form-slider html clean up
lukelarsen Mar 26, 2020
0a45211
c-form-text html clean up
lukelarsen Mar 26, 2020
e4594d3
c-form-textarea html clean up
lukelarsen Mar 26, 2020
a8f5575
c-icon html clean up
lukelarsen Mar 26, 2020
ae45eb6
nav html clean up
lukelarsen Mar 26, 2020
e7dd121
c-notification html clean up
lukelarsen Mar 26, 2020
bd52cb7
c-pill html clean up
lukelarsen Mar 26, 2020
759c6fb
c-popover html clean up
lukelarsen Mar 26, 2020
79389b4
table html clean up
lukelarsen Mar 26, 2020
1b5ee96
c-tile html clean up
lukelarsen Mar 26, 2020
9997d72
c-tile html clean up
lukelarsen Mar 26, 2020
c6b46d4
timeline and c-toasts html clean up
lukelarsen Mar 26, 2020
661f5c6
c-list html clean up
lukelarsen Mar 26, 2020
a0e4816
organize class names in html
lukelarsen Mar 27, 2020
fefe4ea
fix c-status colors
lukelarsen Mar 27, 2020
4f95a74
fix c-form-file uploading. loader was out of place
lukelarsen Mar 27, 2020
b3cc1ff
doc clean up
lukelarsen Mar 27, 2020
c3ade9f
doc updates
lukelarsen Mar 27, 2020
6e4cc50
have c-form-add-remove fill all the space, enable ACL on l-box-link
lukelarsen Mar 30, 2020
54eca40
merge master in
lukelarsen Mar 30, 2020
ba71294
merge in master and fix conflicts
lukelarsen Apr 1, 2020
ae73c16
version bump
lukelarsen Apr 1, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions dev-app/routes/components/copy/slots/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@
>
<span slot="tip">
<c-tip side="top" icon-tip.bind="true" arrow-position="leftEdge" size="medium">
<div slot="trigger"><c-icon icon="question"></c-icon></div>
<div slot="content">Content Here. Huzzah! that is a bit longer just to test</div>
<div slot="trigger">
<c-icon icon="question"></c-icon>
</div>
<div slot="content"><c-p color="white">Content Here. Huzzah! that is a bit longer just to test</c-p></div>
</c-tip>
</span>
</c-copy>
Expand Down
8 changes: 4 additions & 4 deletions dev-app/routes/components/forms/add-remove/actions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ export class AddRemoveActions {

public addRemoveActions = [
{
description: 'Set a function to fire when the select contents changes on the left side.',
description: 'An object with callback functions. More details coming soon.',
name: 'actions-left',
value: 'function',
value: 'object',
},
{
description: 'Set a function to fire when the select contents changes on the right side.',
description: 'An object with callback functions. More details coming soon.',
name: 'actions-right',
value: 'function',
value: 'object',
},
];
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
></c-form-add-remove>
</c-code-sample>
</l-stack>
<br>
<br><br><br>
</div>

<c-divider></c-divider>
Expand All @@ -50,7 +50,7 @@
></c-form-add-remove>
</c-code-sample>
</l-stack>
<br>
<br><br><br>
</div>

<c-divider></c-divider>
Expand All @@ -68,7 +68,7 @@
></c-form-add-remove>
</c-code-sample>
</l-stack>
<br>
<br><br><br>
</div>

<c-divider></c-divider>
Expand Down
2 changes: 1 addition & 1 deletion dev-app/routes/components/forms/date/actions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class DateInputActions {

public formDateOptionsActions = [
{
description: 'An object of callbacks.',
description: 'An object with callback functions. More details coming soon.',
name: 'callbacks',
value: 'object',
},
Expand Down
2 changes: 1 addition & 1 deletion dev-app/routes/components/forms/date/properties/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<div>
<c-form-date
id="test31"
label="Error"
label="Icon"
label-icon="info"
error-msg="Date is required"
></c-form-date>
Expand Down
4 changes: 3 additions & 1 deletion dev-app/routes/components/forms/select/actions/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@
};</c-code>
<c-code-sample>
<l-grid min-size="25ch">
<l-stack>
<c-form-select select-value.bind="vSelectOutput" options.bind="testOptions" label="Select Label" error-msg="This is an error" actions.bind="testActions"></c-form-select>
<c-p>select: ${vSelectOutput}</c-p>
</l-stack>
</l-grid>
<c-p>select: ${vSelectOutput}</c-p>
</c-code-sample>
</l-stack>
</div>
Expand Down
10 changes: 2 additions & 8 deletions dev-app/routes/components/forms/select/actions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,13 @@ export class SelectActions {
colHeadName: 'description',
colHeadValue: 'Description',
},
{
_class: 'monospaced',
colClass: 't85',
colHeadName: 'default',
colHeadValue: 'Default',
},
];

public formSelectActions = [
{
description: 'Set a function to fire when the select contents changes.',
description: 'An object with callback functions. More details coming soon.',
name: 'actions',
value: 'function',
value: 'object',
},
];

Expand Down
12 changes: 7 additions & 5 deletions dev-app/routes/components/forms/select/properties/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,13 @@
}];
}</c-code>
<c-code-sample>
<l-grid min-size="25ch">
<c-form-select select-value.bind="vSelectOutput" options.bind="testOptions" label="Select Label" error-msg="This is an error"></c-form-select>
<c-form-select options.bind="testOptions" error-msg="This is an error"></c-form-select>
</l-grid>
<c-p>select: ${vSelectOutput}</c-p>
<l-stack spacing="var(--s0)">
<l-grid min-size="25ch">
<c-form-select select-value.bind="vSelectOutput" options.bind="testOptions" label="Select Label" error-msg="This is an error"></c-form-select>
<c-form-select options.bind="testOptions" error-msg="This is an error"></c-form-select>
</l-grid>
<c-p>select: ${vSelectOutput}</c-p>
</l-stack>
</c-code-sample>
</l-stack>
</div>
Expand Down
2 changes: 2 additions & 0 deletions dev-app/routes/components/timeline/properties/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export class TimelineProperties {
},
{
_class: 'monospaced',
colClass: 't270',
colHeadName: 'type',
colHeadValue: 'Type',
},
Expand All @@ -24,6 +25,7 @@ export class TimelineProperties {
},
{
_class: 'monospaced',
colClass: 't150',
colHeadName: 'default',
colHeadValue: 'Default',
},
Expand Down
5 changes: 2 additions & 3 deletions dev-app/routes/components/tip/actions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,9 @@ export class TipActions {

public tipActions = [
{
default: '',
description: 'Callback functions supported: onHide, onShow. See actions section below for examples.',
description: 'An object with callback functions. Functions supported: onHide, onShow. See actions section below for examples.',
name: 'actions',
value: 'Object with callback functions.',
value: 'object',
},
];

Expand Down
2 changes: 2 additions & 0 deletions dev-app/routes/components/type/headlines/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<c-code-sample>
<c-h1 flush-top.bind="false">Not flush on the top</c-h1>
<c-h1>Normal Headline 1</c-h1>
<c-h1 truncate.bind="true">Headline 1 that is really long and will truncate at the end of the line or something. Shrink the width of the browser window if needed.</c-h1>
<l-cluster
align="flex-start"
justify="space-between"
Expand All @@ -25,6 +26,7 @@
spacing="var(--s-3)"
spacing-direction="right"
truncated-content.bind="true"
style="width: 100%"
>
<div>
<c-icon
Expand Down
23 changes: 23 additions & 0 deletions dev-app/routes/layouts/box-link/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,29 @@

<c-divider></c-divider>

<div>
<l-stack spacing="var(--s-3)">
<c-h3>fill-space</c-h3>
<c-code-sample>
<l-grid>
<l-box-link fill-space.bind="true">
<c-p>I am a tall box with muiltiple lines.</c-p>
<c-p>I am a tall box with muiltiple lines.</c-p>
<c-p>I am a tall box with muiltiple lines.</c-p>
</l-box-link>
<l-box-link fill-space.bind="true">
<c-p>Single line yet the same height.</c-p>
</l-box-link>
<l-box-link fill-space.bind="false">
<c-p>fill-space set to false</c-p>
</l-box-link>
</l-grid>
</c-code-sample>
</l-stack>
</div>

<c-divider></c-divider>

<div>
<l-stack spacing="var(--s-3)">
<c-h3>margin-sides &amp; margin-ends</c-h3>
Expand Down
6 changes: 6 additions & 0 deletions dev-app/routes/layouts/box-link/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ export class BoxLinkProperties {
name: 'color',
value: 'Any color value. It is advised that you use the Core Color CSS Properties.',
},
{
default: 'false',
description: 'Set to true if you want height: 100% set on the box.',
name: 'fill-space',
value: 'boolean',
},
{
default: '#',
description: 'Set the URL where the link should go.',
Expand Down
23 changes: 23 additions & 0 deletions dev-app/routes/layouts/box/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,29 @@

<c-divider></c-divider>

<div>
<l-stack spacing="var(--s-3)">
<c-h3>fill-space</c-h3>
<c-code-sample>
<l-grid>
<l-box fill-space.bind="true">
<c-p>I am a tall box with muiltiple lines.</c-p>
<c-p>I am a tall box with muiltiple lines.</c-p>
<c-p>I am a tall box with muiltiple lines.</c-p>
</l-box>
<l-box fill-space.bind="true">
<c-p>Single line yet the same height.</c-p>
</l-box>
<l-box fill-space.bind="false">
<c-p>fill-space set to false</c-p>
</l-box>
</l-grid>
</c-code-sample>
</l-stack>
</div>

<c-divider></c-divider>

<div>
<l-stack spacing="var(--s-3)">
<c-h3>margin-sides &amp; margin-ends</c-h3>
Expand Down
6 changes: 6 additions & 0 deletions dev-app/routes/layouts/box/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ export class BoxProperties {
name: 'color',
value: 'Any color value. It is advised that you use the Core Color CSS Properties.',
},
{
default: 'false',
description: 'Set to true if you want height: 100% set on the box.',
name: 'fill-space',
value: 'boolean',
},
{
default: '0px',
description: 'Set the left and right margin of the box.',
Expand Down
17 changes: 3 additions & 14 deletions dev-app/routes/layouts/grid/methods/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,13 @@ export class GridMethods {
colHeadName: 'description',
colHeadValue: 'Description',
},
{
_class: 'monospaced',
colHeadName: 'default',
colHeadValue: 'Default',
},
];

public gridMethods = [
{
description: 'The function you want to run when the button is clicked.',
name: 'action',
value: 'function',
},
{
default: '_self',
description: 'Set if you want the box link to open in a new window.',
name: 'target',
value: '_self | _blank',
description: 'An object with callback functions. More details coming soon.',
name: 'actions',
value: 'object',
},
];

Expand Down
50 changes: 26 additions & 24 deletions dev-app/routes/layouts/grid/properties/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,22 @@
<l-stack spacing="var(--s-3)">
<c-h3>gap</c-h3>
<c-code-sample>
<l-grid gap="var(--s5)">
<l-box>First Item</l-box>
<l-box>Second Item</l-box>
<l-box>Third Item</l-box>
<l-box>Fourth Item</l-box>
<l-box>Fifth Item</l-box>
</l-grid>

<l-grid gap="0px">
<l-box>First Item</l-box>
<l-box>Second Item</l-box>
<l-box>Third Item</l-box>
<l-box>Fourth Item</l-box>
<l-box>Fifth Item</l-box>
</l-grid>
<l-stack>
<l-grid gap="var(--s5)">
<l-box>First Item</l-box>
<l-box>Second Item</l-box>
<l-box>Third Item</l-box>
<l-box>Fourth Item</l-box>
<l-box>Fifth Item</l-box>
</l-grid>
<l-grid gap="0px">
<l-box>First Item</l-box>
<l-box>Second Item</l-box>
<l-box>Third Item</l-box>
<l-box>Fourth Item</l-box>
<l-box>Fifth Item</l-box>
</l-grid>
</l-stack>
</c-code-sample>
</l-stack>
</div>
Expand All @@ -77,15 +78,16 @@
<l-stack spacing="var(--s-3)">
<c-h3>auto-sizing</c-h3>
<c-code-sample>
<l-grid>
<l-box>First Item</l-box>
<l-box>Second Item</l-box>
</l-grid>

<l-grid auto-sizing="auto-fill">
<l-box>First Item</l-box>
<l-box>Second Item</l-box>
</l-grid>
<l-stack>
<l-grid>
<l-box>First Item</l-box>
<l-box>Second Item</l-box>
</l-grid>
<l-grid auto-sizing="auto-fill">
<l-box>First Item</l-box>
<l-box>Second Item</l-box>
</l-grid>
</l-stack>
</c-code-sample>
</l-stack>
</div>
Expand Down
2 changes: 1 addition & 1 deletion dev-app/routes/layouts/stack/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@

<c-divider></c-divider>

<div>
<div style="height: 500px;">
<l-stack spacing="var(--s-3)">
<c-h3>Split After</c-h3>
<c-code-sample class="example">
Expand Down
Loading