Skip to content

Commit

Permalink
Merge branch 'main' into fix-gravity-charts-ce
Browse files Browse the repository at this point in the history
  • Loading branch information
kuzmadom authored Jan 22, 2025
2 parents a527a01 + cbb9d0d commit 95f177c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ BaseControlSelect.propTypes = {
hasValidationError: PropTypes.bool,
limitLabel: PropTypes.bool,
disabled: PropTypes.bool,
accentType: PropTypes.oneOfType([PropTypes.string, null]),
accentType: PropTypes.string,
};

function BaseControlInput({
Expand Down Expand Up @@ -227,7 +227,7 @@ BaseControlInput.propTypes = {
required: PropTypes.bool,
hasValidationError: PropTypes.bool,
disabled: PropTypes.bool,
accentType: PropTypes.oneOfType([PropTypes.string, null]),
accentType: PropTypes.string,
};

function BaseControlTextArea({label, theme, value, placeholder, onChange}) {
Expand Down Expand Up @@ -377,7 +377,7 @@ BaseControlDatepicker.propTypes = {
labelInside: PropTypes.bool,
labelPlacement: PropTypes.string,
disabled: PropTypes.bool,
accentType: PropTypes.oneOfType([PropTypes.string, null]),
accentType: PropTypes.string,
};

function BaseControlRangeDatepicker({
Expand Down Expand Up @@ -489,7 +489,7 @@ BaseControlRangeDatepicker.propTypes = {
labelInside: PropTypes.bool,
labelPlacement: PropTypes.string,
disabled: PropTypes.bool,
accentType: PropTypes.oneOfType([PropTypes.string, null]),
accentType: PropTypes.string,
};

function BaseControlButton({label, theme, onChange, qa, disabled}) {
Expand Down

0 comments on commit 95f177c

Please sign in to comment.