mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 04:53:40 +00:00
* help ios downlaod .crt and add begin add masked for addresses * only require and show CA for public domain if addSsl * fix type and revert i18n const * feat: add address masking and adjust design (#3088) * feat: add address masking and adjust design * update lockfile * chore: move eye button to actions * chore: refresh notifications and handle action error * static width for health check name --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> * hide certificate authorities tab * alpha.17 * add waiting health check status * remove "on" from waiting message * reject on abort in `.watch` * id migration: nostr -> nostr-rs-relay * health check waiting state * use interface type for launch button * better wording for masked * cleaner * sdk improvements * fix type error * fix notification badge issue --------- Co-authored-by: Alex Inkin <alexander@inkin.ru> Co-authored-by: Aiden McClelland <me@drbonez.dev>
43 lines
1017 B
TypeScript
43 lines
1017 B
TypeScript
import { CommonModule } from '@angular/common'
|
|
import { NgModule } from '@angular/core'
|
|
import {
|
|
DocsLinkDirective,
|
|
i18nPipe,
|
|
SharedPipesModule,
|
|
} from '@start9labs/shared'
|
|
import {
|
|
TuiAppearance,
|
|
TuiButton,
|
|
TuiIcon,
|
|
TuiLoader,
|
|
TuiPopup,
|
|
} from '@taiga-ui/core'
|
|
import { TuiDrawer, TuiSkeleton } from '@taiga-ui/kit'
|
|
import { CategoriesModule } from '../../pages/list/categories/categories.module'
|
|
import { SearchModule } from '../../pages/list/search/search.module'
|
|
import { StoreIconComponentModule } from '../store-icon/store-icon.component.module'
|
|
import { MenuComponent } from './menu.component'
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedPipesModule,
|
|
SearchModule,
|
|
CategoriesModule,
|
|
TuiLoader,
|
|
TuiButton,
|
|
CategoriesModule,
|
|
StoreIconComponentModule,
|
|
TuiAppearance,
|
|
TuiIcon,
|
|
TuiSkeleton,
|
|
TuiDrawer,
|
|
TuiPopup,
|
|
i18nPipe,
|
|
DocsLinkDirective,
|
|
],
|
|
declarations: [MenuComponent],
|
|
exports: [MenuComponent],
|
|
})
|
|
export class MenuModule {}
|