@adaptabletools/adaptable-react-aggrid-cjs 23.0.0-canary.1 → 23.0.0-canary.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.css +62 -64
- package/package.json +2 -2
package/index.css
CHANGED
|
@@ -6975,93 +6975,43 @@
|
|
|
6975
6975
|
.ab-Datepicker-Overlay .rdp-focusable {
|
|
6976
6976
|
cursor: pointer;
|
|
6977
6977
|
}
|
|
6978
|
-
.ab-Datepicker-Overlay {
|
|
6979
|
-
@keyframes rdp-slide_in_left {
|
|
6980
|
-
0% {
|
|
6981
|
-
transform: translateX(-100%);
|
|
6982
|
-
}
|
|
6983
|
-
100% {
|
|
6984
|
-
transform: translateX(0);
|
|
6985
|
-
}
|
|
6986
|
-
}
|
|
6987
|
-
@keyframes rdp-slide_in_right {
|
|
6988
|
-
0% {
|
|
6989
|
-
transform: translateX(100%);
|
|
6990
|
-
}
|
|
6991
|
-
100% {
|
|
6992
|
-
transform: translateX(0);
|
|
6993
|
-
}
|
|
6994
|
-
}
|
|
6995
|
-
@keyframes rdp-slide_out_left {
|
|
6996
|
-
0% {
|
|
6997
|
-
transform: translateX(0);
|
|
6998
|
-
}
|
|
6999
|
-
100% {
|
|
7000
|
-
transform: translateX(-100%);
|
|
7001
|
-
}
|
|
7002
|
-
}
|
|
7003
|
-
@keyframes rdp-slide_out_right {
|
|
7004
|
-
0% {
|
|
7005
|
-
transform: translateX(0);
|
|
7006
|
-
}
|
|
7007
|
-
100% {
|
|
7008
|
-
transform: translateX(100%);
|
|
7009
|
-
}
|
|
7010
|
-
}
|
|
7011
|
-
}
|
|
6978
|
+
.ab-Datepicker-Overlay {}
|
|
7012
6979
|
.ab-Datepicker-Overlay .rdp-weeks_before_enter {
|
|
7013
|
-
animation: rdp-slide_in_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
6980
|
+
animation: ab-rdp-slide_in_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7014
6981
|
}
|
|
7015
6982
|
.ab-Datepicker-Overlay .rdp-weeks_before_exit {
|
|
7016
|
-
animation: rdp-slide_out_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
6983
|
+
animation: ab-rdp-slide_out_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7017
6984
|
}
|
|
7018
6985
|
.ab-Datepicker-Overlay .rdp-weeks_after_enter {
|
|
7019
|
-
animation: rdp-slide_in_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
6986
|
+
animation: ab-rdp-slide_in_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7020
6987
|
}
|
|
7021
6988
|
.ab-Datepicker-Overlay .rdp-weeks_after_exit {
|
|
7022
|
-
animation: rdp-slide_out_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
6989
|
+
animation: ab-rdp-slide_out_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7023
6990
|
}
|
|
7024
6991
|
.ab-Datepicker-Overlay .rdp-root[dir="rtl"] .rdp-weeks_after_enter {
|
|
7025
|
-
animation: rdp-slide_in_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
6992
|
+
animation: ab-rdp-slide_in_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7026
6993
|
}
|
|
7027
6994
|
.ab-Datepicker-Overlay .rdp-root[dir="rtl"] .rdp-weeks_before_exit {
|
|
7028
|
-
animation: rdp-slide_out_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
6995
|
+
animation: ab-rdp-slide_out_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7029
6996
|
}
|
|
7030
6997
|
.ab-Datepicker-Overlay .rdp-root[dir="rtl"] .rdp-weeks_before_enter {
|
|
7031
|
-
animation: rdp-slide_in_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
6998
|
+
animation: ab-rdp-slide_in_right var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7032
6999
|
}
|
|
7033
7000
|
.ab-Datepicker-Overlay .rdp-root[dir="rtl"] .rdp-weeks_after_exit {
|
|
7034
|
-
animation: rdp-slide_out_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7035
|
-
}
|
|
7036
|
-
.ab-Datepicker-Overlay {
|
|
7037
|
-
@keyframes rdp-fade_in {
|
|
7038
|
-
from {
|
|
7039
|
-
opacity: 0;
|
|
7040
|
-
}
|
|
7041
|
-
to {
|
|
7042
|
-
opacity: 1;
|
|
7043
|
-
}
|
|
7044
|
-
}
|
|
7045
|
-
@keyframes rdp-fade_out {
|
|
7046
|
-
from {
|
|
7047
|
-
opacity: 1;
|
|
7048
|
-
}
|
|
7049
|
-
to {
|
|
7050
|
-
opacity: 0;
|
|
7051
|
-
}
|
|
7052
|
-
}
|
|
7001
|
+
animation: ab-rdp-slide_out_left var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7053
7002
|
}
|
|
7003
|
+
.ab-Datepicker-Overlay {}
|
|
7054
7004
|
.ab-Datepicker-Overlay .rdp-caption_after_enter {
|
|
7055
|
-
animation: rdp-fade_in var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7005
|
+
animation: ab-rdp-fade_in var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7056
7006
|
}
|
|
7057
7007
|
.ab-Datepicker-Overlay .rdp-caption_after_exit {
|
|
7058
|
-
animation: rdp-fade_out var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7008
|
+
animation: ab-rdp-fade_out var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7059
7009
|
}
|
|
7060
7010
|
.ab-Datepicker-Overlay .rdp-caption_before_enter {
|
|
7061
|
-
animation: rdp-fade_in var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7011
|
+
animation: ab-rdp-fade_in var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7062
7012
|
}
|
|
7063
7013
|
.ab-Datepicker-Overlay .rdp-caption_before_exit {
|
|
7064
|
-
animation: rdp-fade_out var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7014
|
+
animation: ab-rdp-fade_out var(--rdp-animation_duration) var(--rdp-animation_timing) forwards;
|
|
7065
7015
|
}
|
|
7066
7016
|
.ab-Datepicker-Overlay {
|
|
7067
7017
|
border: var(--ab-cmp-datepicker__border);
|
|
@@ -8701,3 +8651,51 @@
|
|
|
8701
8651
|
}
|
|
8702
8652
|
}
|
|
8703
8653
|
}
|
|
8654
|
+
@keyframes ab-rdp-slide_in_left {
|
|
8655
|
+
0% {
|
|
8656
|
+
transform: translateX(-100%);
|
|
8657
|
+
}
|
|
8658
|
+
100% {
|
|
8659
|
+
transform: translateX(0);
|
|
8660
|
+
}
|
|
8661
|
+
}
|
|
8662
|
+
@keyframes ab-rdp-slide_in_right {
|
|
8663
|
+
0% {
|
|
8664
|
+
transform: translateX(100%);
|
|
8665
|
+
}
|
|
8666
|
+
100% {
|
|
8667
|
+
transform: translateX(0);
|
|
8668
|
+
}
|
|
8669
|
+
}
|
|
8670
|
+
@keyframes ab-rdp-slide_out_left {
|
|
8671
|
+
0% {
|
|
8672
|
+
transform: translateX(0);
|
|
8673
|
+
}
|
|
8674
|
+
100% {
|
|
8675
|
+
transform: translateX(-100%);
|
|
8676
|
+
}
|
|
8677
|
+
}
|
|
8678
|
+
@keyframes ab-rdp-slide_out_right {
|
|
8679
|
+
0% {
|
|
8680
|
+
transform: translateX(0);
|
|
8681
|
+
}
|
|
8682
|
+
100% {
|
|
8683
|
+
transform: translateX(100%);
|
|
8684
|
+
}
|
|
8685
|
+
}
|
|
8686
|
+
@keyframes ab-rdp-fade_in {
|
|
8687
|
+
from {
|
|
8688
|
+
opacity: 0;
|
|
8689
|
+
}
|
|
8690
|
+
to {
|
|
8691
|
+
opacity: 1;
|
|
8692
|
+
}
|
|
8693
|
+
}
|
|
8694
|
+
@keyframes ab-rdp-fade_out {
|
|
8695
|
+
from {
|
|
8696
|
+
opacity: 1;
|
|
8697
|
+
}
|
|
8698
|
+
to {
|
|
8699
|
+
opacity: 0;
|
|
8700
|
+
}
|
|
8701
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-react-aggrid-cjs",
|
|
3
|
-
"version": "23.0.0-canary.
|
|
3
|
+
"version": "23.0.0-canary.2",
|
|
4
4
|
"description": "React version of AdapTable - the powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "contact sales@adaptabletools.com for details",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"tslib": "^2.8.1",
|
|
11
11
|
"react-redux": "9.2.0",
|
|
12
|
-
"@adaptabletools/adaptable-cjs": "23.0.0-canary.
|
|
12
|
+
"@adaptabletools/adaptable-cjs": "23.0.0-canary.2"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"ag-grid-enterprise": ">=35.3.0",
|