-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update tracker onclick * update order utils
- Loading branch information
1 parent
4afeb42
commit 4e57bb9
Showing
6 changed files
with
37 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Tremor Raw Tracker Changelog | ||
|
||
## 0.0.0 | ||
## 0.0.1 | ||
|
||
### Changes | ||
|
||
* Added onClick event to HoverCard to make tracker appear on touch devices. |
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,7 @@ | ||
# Tremor Raw utils Changelog | ||
|
||
## 0.0.0 | ||
## 0.0.1 | ||
|
||
### Changes | ||
|
||
* Updated sort order focusInput, focusRing, hasErrorInput |
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,4 +1,10 @@ | ||
// Tremor Raw focusInput [v0.0.0] | ||
// Tremor Raw focusInput [v0.0.1] | ||
|
||
export const focusInput = | ||
"focus:ring-2 focus:ring-blue-200 focus:border-blue-500 focus:dark:ring-blue-700/30 focus:dark:border-blue-700" | ||
export const focusInput = [ | ||
// base | ||
"focus:ring-2", | ||
// ring color | ||
"focus:ring-blue-200 focus:dark:ring-blue-700/30", | ||
// border color | ||
"focus:border-blue-500 focus:dark:border-blue-700", | ||
] |
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,10 +1,8 @@ | ||
// Tremor Raw focusRing [v0.0.0] | ||
// Tremor Raw focusRing [v0.0.1] | ||
|
||
export const focusRing = [ | ||
// base | ||
"outline outline-blue-500 outline-offset-2 outline-0", | ||
// dark | ||
"dark:outline-blue-500", | ||
// focus-visible | ||
"focus-visible:outline-2", | ||
"outline outline-offset-2 outline-0 focus-visible:outline-2", | ||
// outline color | ||
"outline-blue-500 dark:outline-blue-500", | ||
] |
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,4 +1,10 @@ | ||
// Tremor Raw hasErrorInput [v0.0.0] | ||
// Tremor Raw hasErrorInput [v0.0.1] | ||
|
||
export const hasErrorInput = | ||
"border-red-500 ring-2 ring-red-200 dark:border-red-700 dark:ring-red-700/30" | ||
export const hasErrorInput = [ | ||
// base | ||
"ring-2", | ||
// border color | ||
"border-red-500 dark:border-red-700", | ||
// ring color | ||
"ring-red-200 dark:ring-red-700/30", | ||
] |