-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
750 additions
and
294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
fractal/components/02-display/avatar/08-avatar--placeholder.edge
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<div> | ||
@!jrmc.avatar({ placeholder: 'K' }) | ||
@!jrmc.avatar({ placeholder: 'JO', status: 'online', class: 'bg-neutral-focus text-neutral-content rounded-full w-16' }) | ||
@!jrmc.avatar({ placeholder: 'JO', status: 'online', class: 'bg-neutral-content text-neutral rounded-full w-16' }) | ||
@!jrmc.avatar({ placeholder: 'AA', class: 'bg-primary text-neutral-content mask mask-hexagon w-8' }) | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@jrmc.form({ id: 'my_form', method: 'get', error: false}) | ||
@jrmc.form.control({ name: 'lastname', hint: '3 characters minimum' }) | ||
@!jrmc.form.input() | ||
@!jrmc.form.input({ class: 'input-bordered' }) | ||
@end | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@jrmc.form({ error: false, translator: { prefix: 'user.' }}) | ||
@jrmc.form.control({ name: 'name' }) | ||
@!jrmc.form.input({ class: 'input-bordered' }) | ||
@end | ||
|
||
@jrmc.form.control({ name: 'title', translator: { prefix: 'page.' } }) | ||
@!jrmc.form.input({ class: 'input-bordered' }) | ||
@end | ||
|
||
@jrmc.form.control({ name: 'notfound' }) | ||
@!jrmc.form.input({ class: 'input-bordered' }) | ||
@end | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@jrmc.tabs() | ||
@!jrmc.tabs.tab({ text: 'Tab 1', class: 'tab-bordered' }) | ||
@!jrmc.tabs.tab({ text: 'Tab 2', class: 'tab-bordered', active: true }) | ||
@!jrmc.tabs.tab({ text: 'Tab 3', class: 'tab-bordered' }) | ||
@jrmc.tabs({ class: 'tabs-bordered' }) | ||
@!jrmc.tabs.tab({ text: 'Tab 1' }) | ||
@!jrmc.tabs.tab({ text: 'Tab 2', active: true }) | ||
@!jrmc.tabs.tab({ text: 'Tab 3' }) | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@jrmc.tabs() | ||
@!jrmc.tabs.tab({ text: 'Tab 1', class: 'tab-lifted' }) | ||
@!jrmc.tabs.tab({ text: 'Tab 2', class: 'tab-lifted', active: true }) | ||
@!jrmc.tabs.tab({ text: 'Tab 3', class: 'tab-lifted' }) | ||
@jrmc.tabs({ class: 'tabs-lifted' }) | ||
@!jrmc.tabs.tab({ text: 'Tab 1' }) | ||
@!jrmc.tabs.tab({ text: 'Tab 2', active: true }) | ||
@!jrmc.tabs.tab({ text: 'Tab 3' }) | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<div> | ||
@jrmc.tabs({ class: 'tabs-bordered' }) | ||
@jrmc.tabs.tab({ text: 'Tab 1' }) | ||
Tab content 1 | ||
@end | ||
@jrmc.tabs.tab({ text: 'Tab 2', active: true }) | ||
Tab content 2 | ||
@end | ||
@jrmc.tabs.tab({ text: 'Tab 3' }) | ||
Tab content 3 | ||
@end | ||
@end | ||
|
||
@jrmc.tabs({ name: 'my_tab2', class: 'tabs-lifted' }) | ||
@jrmc.tabs.tab({ text: 'Tab 1' }) | ||
Tab content 1 | ||
@end | ||
@jrmc.tabs.tab({ text: 'Tab 2', active: true }) | ||
Tab content 2 | ||
@end | ||
@jrmc.tabs.tab({ text: 'Tab 3' }) | ||
Tab content 3 | ||
@end | ||
@end | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,9 @@ | |
<title>Preview Layout</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css" rel="stylesheet" type="text/css" /> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet" type="text/css" /> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css" rel="stylesheet" type="text/css" /> | ||
<script defer src="https://unpkg.com/[email protected]/dist/cdn.min.js"></script> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
|
||
<script src="/app.js"></script> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.