-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix double add button on column header, basket edit * fix fade behaviour of Background Cell Renderer, add example * switch RCP message types to RPC
- Loading branch information
Showing
23 changed files
with
2,769 additions
and
161 deletions.
There are no files selected for viewing
2,463 changes: 2,460 additions & 3 deletions
2,463
vuu-ui/packages/vuu-data-remote/src/inlined-worker.js
Large diffs are not rendered by default.
Oops, something went wrong.
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
103 changes: 0 additions & 103 deletions
103
vuu-ui/packages/vuu-table-extras/src/cell-renderers-next/background-cell/BackgroundCell.css
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
vuu-ui/packages/vuu-table-extras/src/cell-renderers-next/index.ts
This file was deleted.
Oops, something went wrong.
105 changes: 105 additions & 0 deletions
105
vuu-ui/packages/vuu-table-extras/src/cell-renderers/background-cell/BackgroundCell.css
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,105 @@ | ||
|
||
.vuuBackgroundCell { | ||
--background-animation-duration: 10s; | ||
color: var(--vuuBackgroundCell-color, var(--vuu-color-gray-80)); | ||
padding-right: var(--salt-size-unit); | ||
position: relative; | ||
z-index: -1; | ||
} | ||
|
||
.vuuBackgroundCell-arrowBackground, | ||
.vuuBackgroundCell-arrowOnly { | ||
padding-left: 14px; | ||
} | ||
|
||
.vuuBackgroundCell-arrow { | ||
background-color: var(--background-cell-background); | ||
position: absolute; | ||
left: 0; | ||
right: 0; | ||
top: 0; | ||
bottom: 0; | ||
z-index: -1; | ||
} | ||
|
||
.vuuBackgroundCell-arrow { | ||
text-align: left; | ||
} | ||
.vuuBackgroundCell-arrow + .num { | ||
padding-left: 8px; | ||
} | ||
|
||
.right .vuuBackgroundCell-arrow { | ||
text-align: right; | ||
} | ||
.right .vuuBackgroundCell-arrow + .num { | ||
padding-right: 8px; | ||
} | ||
|
||
.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-arrow { | ||
background-color: transparent; | ||
} | ||
|
||
.vuuBackgroundCell-backgroundOnly.up1, | ||
.vuuBackgroundCell-arrowBackground.up1 { | ||
animation-duration: var(--background-animation-duration); | ||
animation-name: vuubgup1; | ||
} | ||
|
||
.vuuBackgroundCell-backgroundOnly.up2, | ||
.vuuBackgroundCell-arrowBackground.up2 { | ||
animation-duration: var(--background-animation-duration); | ||
animation-name: vuubgup2; | ||
} | ||
|
||
.vuuBackgroundCell-backgroundOnly.down1, | ||
.vuuBackgroundCell-arrowBackground.down1 { | ||
animation-duration: var(--background-animation-duration); | ||
animation-name: vuubgdown1; | ||
} | ||
|
||
.vuuBackgroundCell-backgroundOnly.down2, | ||
.vuuBackgroundCell-arrowBackground.down2 { | ||
animation-duration: var(--background-animation-duration); | ||
animation-name: vuubgdown2; | ||
} | ||
|
||
.up1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-arrow { | ||
animation-duration: 30s; | ||
animation-name: vuuarrowup1; | ||
} | ||
|
||
.up2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-arrow { | ||
animation-duration: 30s; | ||
animation-name: vuuarrowup2; | ||
} | ||
|
||
.down1.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-arrow { | ||
animation-duration: 30s; | ||
animation-name: vuuarrowdown1; | ||
} | ||
|
||
.down2.vuuBackgroundCell-arrowOnly > .vuuBackgroundCell-arrow { | ||
animation-duration: 30s; | ||
animation-name: vuuarrowdown2; | ||
} | ||
|
||
.up1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-arrow { | ||
animation-duration: 30s; | ||
animation-name: vuubgarrowup1; | ||
} | ||
|
||
.up2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-arrow { | ||
animation-duration: 30s; | ||
animation-name: vuubgarrowup2; | ||
} | ||
|
||
.down1.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-arrow { | ||
animation-duration: 30s; | ||
animation-name: vuubgarrowdown1; | ||
} | ||
|
||
.down2.vuuBackgroundCell-arrowBackground > .vuuBackgroundCell-arrow { | ||
animation-duration: 30s; | ||
animation-name: vuubgarrowdown2; | ||
} |
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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.