mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com> Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
83 lines
3.8 KiB
TypeScript
83 lines
3.8 KiB
TypeScript
/**
|
|
* Copyright (c) 2021 OpenLens Authors
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
* the Software without restriction, including without limitation the rights to
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
* subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
// layouts
|
|
export * from "../../renderer/components/layout/main-layout";
|
|
export * from "../../renderer/components/layout/setting-layout";
|
|
export * from "../../renderer/components/layout/page-layout";
|
|
export * from "../../renderer/components/layout/wizard-layout";
|
|
export * from "../../renderer/components/layout/tab-layout";
|
|
|
|
// form-controls
|
|
export * from "../../renderer/components/button";
|
|
export * from "../../renderer/components/checkbox";
|
|
export * from "../../renderer/components/radio";
|
|
export * from "../../renderer/components/select";
|
|
export * from "../../renderer/components/slider";
|
|
export * from "../../renderer/components/switch";
|
|
export * from "../../renderer/components/input/input";
|
|
|
|
// command-overlay
|
|
export { CommandOverlay } from "../../renderer/components/command-palette";
|
|
|
|
// other components
|
|
export * from "../../renderer/components/icon";
|
|
export * from "../../renderer/components/tooltip";
|
|
export * from "../../renderer/components/tabs";
|
|
export * from "../../renderer/components/table";
|
|
export * from "../../renderer/components/badge";
|
|
export * from "../../renderer/components/drawer";
|
|
export * from "../../renderer/components/dialog";
|
|
export * from "../../renderer/components/confirm-dialog";
|
|
export * from "../../renderer/components/line-progress";
|
|
export * from "../../renderer/components/menu";
|
|
export * from "../../renderer/components/notifications";
|
|
export * from "../../renderer/components/spinner";
|
|
export * from "../../renderer/components/stepper";
|
|
export * from "../../renderer/components/wizard";
|
|
export * from "../../renderer/components/+workloads-pods/pod-details-list";
|
|
export * from "../../renderer/components/+namespaces/namespace-select";
|
|
export * from "../../renderer/components/+namespaces/namespace-select-filter";
|
|
export * from "../../renderer/components/layout/sub-title";
|
|
export * from "../../renderer/components/input/search-input";
|
|
export * from "../../renderer/components/chart/bar-chart";
|
|
export * from "../../renderer/components/chart/pie-chart";
|
|
|
|
// kube helpers
|
|
export * from "../../renderer/components/kube-detail-params";
|
|
export * from "../../renderer/components/kube-object-details";
|
|
export * from "../../renderer/components/kube-object-list-layout";
|
|
export * from "../../renderer/components/kube-object-menu";
|
|
export * from "../../renderer/components/kube-object-meta";
|
|
export * from "../../renderer/components/+events/kube-event-details";
|
|
|
|
// specific exports
|
|
export * from "../../renderer/components/status-brick";
|
|
|
|
// Mikko
|
|
// export { terminalStore, TerminalStore } from "../../renderer/components/dock/terminal-store/terminal.store";
|
|
//
|
|
// // Mikko
|
|
// export { createTerminalTab } from "../../renderer/components/dock/terminal-store/terminal.store";
|
|
//
|
|
// // Mikko
|
|
// export { logTabStore } from "../../renderer/components/dock/log-tab-store/log-tab.store";
|