2019-04-10 13:07:56 +00:00
|
|
|
/*
|
|
|
|
* Wazuh app - Wrap EUI components with ng-react and the Wazuh app
|
|
|
|
* Copyright (C) 2015-2019 Wazuh, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Find more information about this on the LICENSE file.
|
|
|
|
*/
|
|
|
|
import { uiModules } from 'ui/modules';
|
2019-04-15 09:10:03 +00:00
|
|
|
import 'react';
|
2019-04-10 13:07:56 +00:00
|
|
|
import {
|
|
|
|
EuiIcon,
|
2019-10-01 09:09:35 +00:00
|
|
|
EuiTextArea,
|
2019-04-10 13:07:56 +00:00
|
|
|
EuiSuperSelect,
|
|
|
|
EuiLoadingSpinner,
|
|
|
|
EuiProgress,
|
|
|
|
EuiBasicTable,
|
2019-06-27 15:00:33 +00:00
|
|
|
EuiButtonIcon,
|
2019-10-01 09:09:35 +00:00
|
|
|
EuiButtonEmpty,
|
2019-06-27 15:00:33 +00:00
|
|
|
EuiHealth,
|
2019-08-28 09:04:04 +00:00
|
|
|
EuiCallOut,
|
2019-10-09 10:13:14 +00:00
|
|
|
EuiSwitch,
|
|
|
|
EuiSpacer
|
2019-04-10 13:07:56 +00:00
|
|
|
} from '@elastic/eui';
|
|
|
|
|
2019-06-27 15:00:33 +00:00
|
|
|
import { BasicTable } from '../directives/wz-table-eui/components/table';
|
2019-08-07 08:31:59 +00:00
|
|
|
import { Tabs } from '../directives/wz-tabs-eui/components/tabs';
|
2019-06-27 15:00:33 +00:00
|
|
|
|
2019-04-10 13:07:56 +00:00
|
|
|
const app = uiModules.get('app/wazuh', ['react']);
|
|
|
|
|
|
|
|
app
|
|
|
|
.value('EuiIcon', EuiIcon)
|
2019-10-01 09:09:35 +00:00
|
|
|
.value('EuiTextArea', EuiTextArea)
|
2019-04-10 13:07:56 +00:00
|
|
|
.value('EuiSuperSelect', EuiSuperSelect)
|
|
|
|
.value('EuiLoadingSpinner', EuiLoadingSpinner)
|
|
|
|
.value('EuiProgress', EuiProgress)
|
|
|
|
.value('EuiButtonIcon', EuiButtonIcon)
|
2019-10-01 09:09:35 +00:00
|
|
|
.value('EuiButtonEmpty', EuiButtonEmpty)
|
2019-06-27 15:00:33 +00:00
|
|
|
.value('EuiBasicTable', EuiBasicTable)
|
|
|
|
.value('EuiHealth', EuiHealth)
|
|
|
|
.value('EuiCallOut', EuiCallOut)
|
2019-08-07 08:31:59 +00:00
|
|
|
.value('BasicTable', BasicTable)
|
2019-08-28 09:04:04 +00:00
|
|
|
.value('Tabs', Tabs)
|
2019-10-09 10:13:14 +00:00
|
|
|
.value('EuiSwitch', EuiSwitch)
|
2019-10-09 10:29:28 +00:00
|
|
|
.value('EuiSpacer', EuiSpacer);
|