Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"@elastic/datemath": "5.0.3",
"@elastic/elasticsearch": "npm:@elastic/elasticsearch-canary@8.8.0-canary.2",
"@elastic/ems-client": "8.4.0",
"@elastic/eui": "81.0.0",
"@elastic/eui": "81.2.0",
"@elastic/filesaver": "1.1.2",
"@elastic/node-crypto": "1.2.1",
"@elastic/numeral": "^2.5.1",
Expand All @@ -108,12 +108,12 @@
"@elastic/search-ui": "^1.20.2",
"@elastic/search-ui-app-search-connector": "^1.20.2",
"@elastic/search-ui-engines-connector": "^1.20.2",
"@emotion/cache": "^11.10.3",
"@emotion/css": "^11.10.0",
"@emotion/react": "^11.10.4",
"@emotion/serialize": "^1.1.0",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@emotion/cache": "^11.11.0",
"@emotion/css": "^11.11.0",
"@emotion/react": "^11.11.0",
"@emotion/serialize": "^1.1.2",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@grpc/grpc-js": "^1.6.7",
"@hapi/accept": "^5.0.2",
"@hapi/boom": "^9.1.4",
Expand Down Expand Up @@ -1011,8 +1011,8 @@
"@elastic/eslint-plugin-eui": "0.0.2",
"@elastic/makelogs": "^6.1.1",
"@elastic/synthetics": "^1.0.0-beta.39",
"@emotion/babel-preset-css-prop": "^11.10.0",
"@emotion/jest": "^11.10.0",
"@emotion/babel-preset-css-prop": "^11.11.0",
"@emotion/jest": "^11.11.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@istanbuljs/schema": "^0.1.2",
"@jest/console": "^29.3.1",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -812,6 +812,22 @@ export const getEuiContextMapping = (): EuiTokensObject => {
'euiImageButton.closeFullScreen': i18n.translate('core.euiImageButton.closeFullScreen', {
defaultMessage: 'Press Escape or click to close image fullscreen mode',
}),
'euiInlineEditForm.activateEditModeDescription': i18n.translate(
'core.euiInlineEditForm.activateEditModeDescription',
{ defaultMessage: 'Click to edit this text inline.' }
),
'euiInlineEditForm.inputKeyboardInstructions': i18n.translate(
'core.euiInlineEditForm.inputKeyboardInstructions',
{ defaultMessage: 'Press Enter to save your edited text. Press Escape to cancel your edit.' }
),
'euiInlineEditForm.cancelButtonAriaLabel': i18n.translate(
'core.euiInlineEditForm.cancelButtonAriaLabel',
{ defaultMessage: 'Cancel edit' }
),
'euiInlineEditForm.saveButtonAriaLabel': i18n.translate(
'core.euiInlineEditForm.saveButtonAriaLabel',
{ defaultMessage: 'Save edit' }
),
'euiLink.external.ariaLabel': i18n.translate('core.euiLink.external.ariaLabel', {
defaultMessage: 'External link',
}),
Expand Down
2 changes: 1 addition & 1 deletion src/dev/license_checker/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const LICENSE_OVERRIDES = {
'jsts@1.6.2': ['Eclipse Distribution License - v 1.0'], // cf. https://github.com/bjornharrtell/jsts
'@mapbox/jsonlint-lines-primitives@2.0.2': ['MIT'], // license in readme https://github.com/tmcw/jsonlint
'@elastic/ems-client@8.4.0': ['Elastic License 2.0'],
'@elastic/eui@81.0.0': ['SSPL-1.0 OR Elastic License 2.0'],
'@elastic/eui@81.2.0': ['SSPL-1.0 OR Elastic License 2.0'],
'language-subtag-registry@0.3.21': ['CC-BY-4.0'], // retired ODC‑By license https://github.com/mattcg/language-subtag-registry
'buffers@0.1.1': ['MIT'], // license in importing module https://www.npmjs.com/package/binary
};
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export const TimeFilter = ({ filter, commit, dateFormat, commonlyUsedRanges = []
return (
<div className="canvasTimeFilter">
<EuiSuperDatePicker
width="full"
start={start}
end={end}
isPaused={false}
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion x-pack/plugins/canvas/public/style/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,4 @@
@import '../../canvas_plugin_src/renderers/filters/dropdown_filter/component/dropdown_filter.scss';
@import '../../canvas_plugin_src/renderers/embeddable/embeddable.scss';
@import '../../canvas_plugin_src/renderers/plot/plot.scss';
@import '../../canvas_plugin_src/renderers/filters/time_filter/time_filter.scss';
@import '../../canvas_plugin_src/uis/arguments/image_upload/image_upload.scss';
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export function SeriesDatePicker({ series, seriesId }: Props) {

return (
<EuiSuperDatePicker
width="full"
start={series?.time?.from}
end={series?.time?.to}
onTimeChange={onTimeChange}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,4 @@ export function DatePickerCol({ seriesId, series }: Props) {

const Wrapper = styled.div`
width: 100%;
.euiSuperDatePicker__flexWrapper {
width: 100%;
> .euiFlexItem {
margin-right: 0;
}
}
`;
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {
EuiFlexGroup,
EuiFlexItem,
} from '@elastic/eui';
import { css } from '@emotion/react';
import moment from 'moment';
import { TIME_FORMAT } from '../../../../../../common/constants/time_format';
import { generateTempId } from '../utils';
Expand All @@ -32,6 +33,7 @@ import { i18n } from '@kbn/i18n';
import { FormattedMessage } from '@kbn/i18n-react';

const VALID_DATE_STRING_LENGTH = 19;
const INLINE_DATE_PICKER_RANGE_WIDTH = 553;

export class NewEventModal extends Component {
static propTypes = {
Expand Down Expand Up @@ -208,12 +210,15 @@ export class NewEventModal extends Component {
<EuiSpacer size="s" />
<EuiFormRow fullWidth>
<EuiDatePickerRange
fullWidth
iconType={false}
inline
css={css`
@media (min-width: ${INLINE_DATE_PICKER_RANGE_WIDTH}px) {
inline-size: ${INLINE_DATE_PICKER_RANGE_WIDTH}px;
max-inline-size: 100%;
}
`}
startDateControl={
<EuiDatePicker
fullWidth
inline
selected={startDate}
onChange={this.handleChangeStart}
startDate={startDate}
Expand All @@ -231,8 +236,6 @@ export class NewEventModal extends Component {
}
endDateControl={
<EuiDatePicker
fullWidth
inline
selected={endDate}
onChange={this.handleChangeEnd}
startDate={startDate}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@ const StyledDatePicker = styled.div`
.euiFormControlLayout--group {
background-color: rgba(0, 119, 204, 0.2);
}

.euiDatePickerRange--readOnly {
background-color: ${(props) => props.theme.eui.euiFormBackgroundColor};
}
`;
const EndpointListNavLink = memo<{
name: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,15 +113,6 @@ const ScrollableFlexItem = styled(EuiFlexItem)`
overflow: hidden;
`;

const DatePicker = styled(EuiFlexItem)`
.euiSuperDatePicker__flexWrapper {
max-width: none;
width: auto;
}
`;

DatePicker.displayName = 'DatePicker';

const VerticalRule = styled.div`
width: 2px;
height: 100%;
Expand Down Expand Up @@ -277,9 +268,9 @@ export const EqlTabContentComponent: React.FC<Props> = ({
setFullScreen={setTimelineFullScreen}
/>
)}
<DatePicker grow={10}>
<SuperDatePicker id={InputsModelId.timeline} timelineId={timelineId} />
</DatePicker>
<EuiFlexItem grow={10}>
<SuperDatePicker width="auto" id={InputsModelId.timeline} timelineId={timelineId} />
</EuiFlexItem>
<EuiFlexItem grow={false}>
<TimelineDatePickerLock />
</EuiFlexItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,6 @@ const ScrollableFlexItem = styled(EuiFlexItem)`
overflow: hidden;
`;

const DatePicker = styled(EuiFlexItem)`
.euiSuperDatePicker__flexWrapper {
max-width: none;
width: auto;
}
`;
DatePicker.displayName = 'DatePicker';

const SourcererFlex = styled(EuiFlexItem)`
align-items: flex-end;
`;
Expand Down Expand Up @@ -369,13 +361,14 @@ export const QueryTabContentComponent: React.FC<Props> = ({
setFullScreen={setTimelineFullScreen}
/>
)}
<DatePicker grow={10}>
<EuiFlexItem grow={10}>
<SuperDatePicker
width="auto"
id={InputsModelId.timeline}
timelineId={timelineId}
disabled={isDatePickerDisabled}
/>
</DatePicker>
</EuiFlexItem>
<EuiFlexItem grow={false}>
<TimelineDatePickerLock />
</EuiFlexItem>
Expand Down
Loading