Skip to content

Commit

Permalink
[patch][v16.9.7] Toniq Carousel and Table List fixes (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
ponnexcodev authored May 4, 2024
1 parent e23737e commit a45c28d
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 16 deletions.
10 changes: 5 additions & 5 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
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system-root",
"version": "16.9.4",
"version": "16.9.7",
"private": true,
"description": "Root design system mono-repo package.",
"homepage": "https://github.com/Toniq-Labs/toniq-labs-design-system",
Expand Down
2 changes: 1 addition & 1 deletion packages/design-system/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system",
"version": "16.9.4",
"version": "16.9.7",
"private": false,
"description": "Design system elements for Toniq Labs",
"keywords": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ export const ToniqCarousel = defineToniqElement<{
${applyBackgroundAndForeground(toniqColors.pagePrimary)};
}
.arrow.hidden ${ToniqIcon} {
pointer-events: none;
}
.arrow ${ToniqIcon}:hover {
border-color: ${toniqColors.pageInteractionHover.foregroundColor};
${applyBackgroundAndForeground(toniqColors.pageInteractionHover)};
Expand All @@ -161,7 +165,6 @@ export const ToniqCarousel = defineToniqElement<{
added above in this same commit.
*/
opacity: 0;
pointer-events: none;
}
@media (max-width: 700px) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
}
.table-list {
min-height: 40px;
width: 100%;
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -128,8 +129,8 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
}
.row-wrapper {
min-height: 48px;
display: flex;
align-items: center;
position: relative;
background: ${toniqColors.pageInteraction.backgroundColor};
cursor: pointer;
Expand Down Expand Up @@ -174,10 +175,6 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
background: ${toniqColors.pageInteraction.backgroundColor};
}
.row-content {
min-height: 48px;
}
.row-content.hidden {
visibility: hidden;
}
Expand Down Expand Up @@ -223,7 +220,6 @@ export const ToniqListTable = defineToniqElement<ListTableInputs>()({
}
.loading-wrapper {
min-height: 40px;
transition: ${toniqDurations.pretty};
opacity: 1;
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion packages/native-elements-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system-native-elements-test",
"version": "16.9.4",
"version": "16.9.7",
"private": true,
"scripts": {
"compile": "virmator compile",
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@toniq-labs/design-system-scripts",
"version": "16.9.4",
"version": "16.9.7",
"private": true,
"scripts": {
"compile": "virmator compile",
Expand Down

0 comments on commit a45c28d

Please sign in to comment.