Delete imports/references to EUI's distributed .css files (#194082)

## Summary

These files no longer contain any meaningful CSS used within Kibana as
of EUI's completed Emotion migration, and can be safely removed. EUI
will shortly no longer distribute these static `.css` files (although
`.scss` src files will still remain exported for the near future).
This commit is contained in:
Cee Chen 2024-09-26 10:12:25 -07:00 committed by GitHub
parent 30831e6156
commit 9956c9a116
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 4 deletions

View file

@ -101,8 +101,6 @@ module.exports = (_, argv) => {
'tslib',
'uuid',
],
'kbn-ui-shared-deps-npm.v8.dark': ['@elastic/eui/dist/eui_theme_dark.css'],
'kbn-ui-shared-deps-npm.v8.light': ['@elastic/eui/dist/eui_theme_light.css'],
},
context: __dirname,
devtool: 'cheap-source-map',

View file

@ -8,4 +8,3 @@
export * from './api';
import '@kbn/core-apps-server-internal/assets/legacy_light_theme.css';
import '../public/style/index.scss';
import '@elastic/eui/dist/eui_theme_light.css';

View file

@ -9,7 +9,6 @@ import React, { useState } from 'react';
import { EuiResizableContainer } from '@elastic/eui';
import { StateChange } from './components/state_change';
import '@elastic/eui/dist/eui_theme_light.css';
import './panel.css';
import { RecordedAction } from './types';