@adaptabletools/adaptable 12.0.0-canary.2 → 12.0.0-canary.3
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/base.css +15 -14
- package/bundle.cjs.js +162 -148
- package/index.css +15 -14
- package/package.json +2 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/AlertOptions.d.ts +5 -9
- package/src/AdaptableOptions/DashboardOptions.d.ts +1 -5
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +2 -2
- package/src/AdaptableOptions/EditOptions.d.ts +22 -3
- package/src/AdaptableOptions/GeneralOptions.d.ts +7 -0
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +1 -5
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -2
- package/src/Api/AlertApi.d.ts +3 -3
- package/src/Api/Events/RowFormSubmitted.d.ts +15 -0
- package/src/Api/Implementation/AlertApiImpl.d.ts +3 -3
- package/src/Api/Implementation/InternalApiImpl.d.ts +3 -3
- package/src/PredefinedConfig/AlertState.d.ts +4 -4
- package/src/PredefinedConfig/Common/FormContext.d.ts +3 -0
- package/src/Redux/Store/AdaptableStore.js +6 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.d.ts +13 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +1 -1
- package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +3 -3
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +2 -2
- package/src/components/Datepicker/Caption.js +1 -1
- package/src/metamodel/adaptable.metamodel.d.ts +105 -21
- package/src/metamodel/adaptable.metamodel.js +116 -32
- package/src/types.d.ts +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/base.css
CHANGED
|
@@ -672,7 +672,7 @@
|
|
|
672
672
|
padding: 0 !important;
|
|
673
673
|
overflow: hidden !important;
|
|
674
674
|
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
675
|
-
border: 0 !important
|
|
675
|
+
border: 0 !important;
|
|
676
676
|
}
|
|
677
677
|
/* Buttons */
|
|
678
678
|
.rdp-button_reset {
|
|
@@ -692,19 +692,20 @@
|
|
|
692
692
|
.rdp-button {
|
|
693
693
|
border: 2px solid transparent;
|
|
694
694
|
}
|
|
695
|
-
.rdp-button[disabled] {
|
|
695
|
+
.rdp-button[aria-disabled='true'] {
|
|
696
696
|
opacity: 0.25;
|
|
697
|
+
pointer-events: none;
|
|
697
698
|
}
|
|
698
|
-
.rdp-button:not([disabled]) {
|
|
699
|
+
.rdp-button:not([aria-disabled='true']) {
|
|
699
700
|
cursor: pointer;
|
|
700
701
|
}
|
|
701
|
-
.rdp-button:focus
|
|
702
|
-
.rdp-button:active
|
|
702
|
+
.rdp-button:focus,
|
|
703
|
+
.rdp-button:active {
|
|
703
704
|
color: inherit;
|
|
704
705
|
border: var(--rdp-outline);
|
|
705
706
|
background-color: var(--rdp-background-color);
|
|
706
707
|
}
|
|
707
|
-
.rdp-button:hover:not([disabled]) {
|
|
708
|
+
.rdp-button:hover:not([aria-disabled='true']) {
|
|
708
709
|
background-color: var(--rdp-background-color);
|
|
709
710
|
}
|
|
710
711
|
.rdp-months {
|
|
@@ -814,8 +815,8 @@
|
|
|
814
815
|
opacity: unset;
|
|
815
816
|
color: unset;
|
|
816
817
|
}
|
|
817
|
-
.rdp-dropdown:focus:not([disabled])
|
|
818
|
-
.rdp-dropdown:active:not([disabled])
|
|
818
|
+
.rdp-dropdown:focus:not([disabled]) + .rdp-caption_label,
|
|
819
|
+
.rdp-dropdown:active:not([disabled]) + .rdp-caption_label {
|
|
819
820
|
border: var(--rdp-outline);
|
|
820
821
|
border-radius: 6px;
|
|
821
822
|
background-color: var(--rdp-background-color);
|
|
@@ -843,7 +844,7 @@
|
|
|
843
844
|
.rdp-tbody {
|
|
844
845
|
border: 0;
|
|
845
846
|
}
|
|
846
|
-
.rdp-
|
|
847
|
+
.rdp-tfoot {
|
|
847
848
|
margin: 0.5em;
|
|
848
849
|
}
|
|
849
850
|
.rdp-cell {
|
|
@@ -873,14 +874,14 @@
|
|
|
873
874
|
.rdp-day_today:not(.rdp-day_outside) {
|
|
874
875
|
font-weight: bold;
|
|
875
876
|
}
|
|
876
|
-
.rdp-day_selected:not([disabled]),
|
|
877
|
-
.rdp-day_selected:focus:not([disabled]),
|
|
878
|
-
.rdp-day_selected:active:not([disabled]),
|
|
879
|
-
.rdp-day_selected:hover:not([disabled]) {
|
|
877
|
+
.rdp-day_selected:not([aria-disabled='true']),
|
|
878
|
+
.rdp-day_selected:focus:not([aria-disabled='true']),
|
|
879
|
+
.rdp-day_selected:active:not([aria-disabled='true']),
|
|
880
|
+
.rdp-day_selected:hover:not([aria-disabled='true']) {
|
|
880
881
|
color: white;
|
|
881
882
|
background-color: var(--rdp-accent-color);
|
|
882
883
|
}
|
|
883
|
-
.rdp-day_selected:focus:not([disabled]) {
|
|
884
|
+
.rdp-day_selected:focus:not([aria-disabled='true']) {
|
|
884
885
|
border: var(--rdp-outline-selected);
|
|
885
886
|
}
|
|
886
887
|
.rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
|