mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 04:53:40 +00:00
refactor: remove ionic from remaining places (#2565)
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
:host {
|
||||
max-width: 100%;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
import { Directive, HostListener, Inject } from '@angular/core'
|
||||
import { DOCUMENT } from '@angular/common'
|
||||
import { debounce } from '../../util/misc.util'
|
||||
|
||||
@Directive({
|
||||
selector: '[appEnter]',
|
||||
})
|
||||
export class EnterDirective {
|
||||
constructor(@Inject(DOCUMENT) private readonly document: Document) {}
|
||||
|
||||
@HostListener('document:keydown.enter')
|
||||
@debounce()
|
||||
handleKeyboardEvent() {
|
||||
const elems = this.document.querySelectorAll('.enter-click')
|
||||
const elem = elems[elems.length - 1] as HTMLButtonElement
|
||||
|
||||
if (elem && !elem.classList.contains('no-click') && !elem.disabled) {
|
||||
elem.click()
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
import { NgModule } from '@angular/core'
|
||||
|
||||
import { EnterDirective } from './enter.directive'
|
||||
|
||||
@NgModule({
|
||||
declarations: [EnterDirective],
|
||||
exports: [EnterDirective],
|
||||
})
|
||||
export class EnterModule {}
|
||||
@@ -18,8 +18,6 @@ export * from './components/drive.component'
|
||||
|
||||
export * from './directives/drag-scroller.directive'
|
||||
export * from './directives/safe-links.directive'
|
||||
export * from './directives/enter/enter.directive'
|
||||
export * from './directives/enter/enter.module'
|
||||
|
||||
export * from './mocks/get-setup-status'
|
||||
|
||||
@@ -42,11 +40,6 @@ export * from './services/http.service'
|
||||
export * from './services/setup.service'
|
||||
export * from './services/setup-logs.service'
|
||||
|
||||
export * from './themes/dark-theme/dark-theme.component'
|
||||
export * from './themes/dark-theme/dark-theme.module'
|
||||
export * from './themes/light-theme/light-theme.component'
|
||||
export * from './themes/light-theme/light-theme.module'
|
||||
|
||||
export * from './types/api'
|
||||
export * from './types/constructor'
|
||||
export * from './types/http.types'
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
@import '../../../styles/variables';
|
||||
@@ -1,15 +0,0 @@
|
||||
import {
|
||||
ChangeDetectionStrategy,
|
||||
Component,
|
||||
ViewEncapsulation,
|
||||
} from '@angular/core'
|
||||
import { AbstractTuiThemeSwitcher } from '@taiga-ui/cdk'
|
||||
|
||||
@Component({
|
||||
selector: 'dark-theme',
|
||||
template: '',
|
||||
styleUrls: ['./dark-theme.component.scss'],
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class DarkThemeComponent extends AbstractTuiThemeSwitcher {}
|
||||
@@ -1,9 +0,0 @@
|
||||
import { NgModule } from '@angular/core'
|
||||
|
||||
import { DarkThemeComponent } from './dark-theme.component'
|
||||
|
||||
@NgModule({
|
||||
declarations: [DarkThemeComponent],
|
||||
exports: [DarkThemeComponent],
|
||||
})
|
||||
export class DarkThemeModule {}
|
||||
@@ -1,95 +0,0 @@
|
||||
// Ionic Variables and Theming. For more info, please see:
|
||||
// http://ionicframework.com/docs/theming/
|
||||
|
||||
/** Ionic CSS Variables **/
|
||||
:root {
|
||||
--ion-color-primary: #0075e1;
|
||||
--ion-color-primary-rgb: 66, 140, 255;
|
||||
--ion-color-primary-contrast: #ffffff;
|
||||
--ion-color-primary-contrast-rgb: 255, 255, 255;
|
||||
--ion-color-primary-shade: #3a7be0;
|
||||
--ion-color-primary-tint: #5598ff;
|
||||
|
||||
--ion-color-secondary: #50c8ff;
|
||||
--ion-color-secondary-rgb: 80, 200, 255;
|
||||
--ion-color-secondary-contrast: #ffffff;
|
||||
--ion-color-secondary-contrast-rgb: 255, 255, 255;
|
||||
--ion-color-secondary-shade: #46b0e0;
|
||||
--ion-color-secondary-tint: #62ceff;
|
||||
|
||||
--ion-color-tertiary: #6a64ff;
|
||||
--ion-color-tertiary-rgb: 106, 100, 255;
|
||||
--ion-color-tertiary-contrast: #ffffff;
|
||||
--ion-color-tertiary-contrast-rgb: 255, 255, 255;
|
||||
--ion-color-tertiary-shade: #5d58e0;
|
||||
--ion-color-tertiary-tint: #7974ff;
|
||||
|
||||
--ion-color-success: #2fdf75;
|
||||
--ion-color-success-rgb: 47, 223, 117;
|
||||
--ion-color-success-contrast: #000000;
|
||||
--ion-color-success-contrast-rgb: 0, 0, 0;
|
||||
--ion-color-success-shade: #29c467;
|
||||
--ion-color-success-tint: #44e283;
|
||||
|
||||
--ion-color-warning: #ffb506;
|
||||
--ion-color-warning-rgb: 255, 213, 52;
|
||||
--ion-color-warning-contrast: #000000;
|
||||
--ion-color-warning-contrast-rgb: 0, 0, 0;
|
||||
--ion-color-warning-shade: #e0bb2e;
|
||||
--ion-color-warning-tint: #ffd534;
|
||||
|
||||
--ion-color-danger: #ff4961;
|
||||
--ion-color-danger-rgb: 255, 73, 97;
|
||||
--ion-color-danger-contrast: #ffffff;
|
||||
--ion-color-danger-contrast-rgb: 255, 255, 255;
|
||||
--ion-color-danger-shade: #e04055;
|
||||
--ion-color-danger-tint: #ff5b71;
|
||||
|
||||
//--ion-color-light: #f4f5f8;
|
||||
//--ion-color-light-rgb: 244, 245, 248;
|
||||
//--ion-color-light-contrast: #000000;
|
||||
//--ion-color-light-contrast-rgb: 0, 0, 0;
|
||||
//--ion-color-light-shade: #d7d8da;
|
||||
//--ion-color-light-tint: #f5f6f9;
|
||||
//
|
||||
//--ion-color-medium: #f4f5f8;
|
||||
//--ion-color-medium-rgb: 244, 245, 248;
|
||||
//--ion-color-medium-contrast: #000000;
|
||||
//--ion-color-medium-contrast-rgb: 0, 0, 0;
|
||||
//--ion-color-medium-shade: #d7d8da;
|
||||
//--ion-color-medium-tint: #f5f6f9;
|
||||
//
|
||||
//--ion-color-dark: #92949c;
|
||||
//--ion-color-dark-rgb: 146, 148, 156;
|
||||
//--ion-color-dark-contrast: #ffffff;
|
||||
//--ion-color-dark-contrast-rgb: 255, 255, 255;
|
||||
//--ion-color-dark-shade: #808289;
|
||||
//--ion-color-dark-tint: #9d9fa6;
|
||||
|
||||
--ion-color-step-50: #f2f2f2;
|
||||
--ion-color-step-100: #e6e6e6;
|
||||
--ion-color-step-150: #d9d9d9;
|
||||
--ion-color-step-200: #cccccc;
|
||||
--ion-color-step-250: #bfbfbf;
|
||||
--ion-color-step-300: #b3b3b3;
|
||||
--ion-color-step-350: #a6a6a6;
|
||||
--ion-color-step-400: #999999;
|
||||
--ion-color-step-450: #8c8c8c;
|
||||
--ion-color-step-500: #808080;
|
||||
--ion-color-step-550: #737373;
|
||||
--ion-color-step-600: #666666;
|
||||
--ion-color-step-650: #595959;
|
||||
--ion-color-step-700: #4d4d4d;
|
||||
--ion-color-step-750: #404040;
|
||||
--ion-color-step-800: #333333;
|
||||
--ion-color-step-850: #262626;
|
||||
--ion-color-step-900: #191919;
|
||||
--ion-color-step-950: #0d0d0d;
|
||||
|
||||
--alt-red: #ff4961;
|
||||
--alt-orange: #f89248;
|
||||
--alt-yellow: #e5d53e;
|
||||
--alt-green: #3dcf6f;
|
||||
--alt-blue: #00a8a8;
|
||||
--alt-purple: #9747ff;
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
import {
|
||||
ChangeDetectionStrategy,
|
||||
Component,
|
||||
ViewEncapsulation,
|
||||
} from '@angular/core'
|
||||
import { AbstractTuiThemeSwitcher } from '@taiga-ui/cdk'
|
||||
|
||||
@Component({
|
||||
selector: 'light-theme',
|
||||
template: '',
|
||||
styleUrls: ['./light-theme.component.scss'],
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class LightThemeComponent extends AbstractTuiThemeSwitcher {}
|
||||
@@ -1,9 +0,0 @@
|
||||
import { NgModule } from '@angular/core'
|
||||
|
||||
import { LightThemeComponent } from './light-theme.component'
|
||||
|
||||
@NgModule({
|
||||
declarations: [LightThemeComponent],
|
||||
exports: [LightThemeComponent],
|
||||
})
|
||||
export class LightThemeModule {}
|
||||
Reference in New Issue
Block a user