@fuentis/phoenix-ui 0.0.9-alpha.51 → 0.0.9-alpha.511

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/fesm2022/fuentis-phoenix-ui.mjs +6950 -433
  2. package/fesm2022/fuentis-phoenix-ui.mjs.map +1 -1
  3. package/index.d.ts +1076 -5
  4. package/package.json +15 -11
  5. package/styles/flag.css +1 -0
  6. package/styles/global.css +58 -1
  7. package/lib/components/data-table/phoenix-data-table/isSelected.pipe.d.ts +0 -7
  8. package/lib/components/data-table/phoenix-data-table/phoenix-data-table.component.d.ts +0 -84
  9. package/lib/components/data-table/phoenix-data-table-action/phoenix-data-table-action.component.d.ts +0 -28
  10. package/lib/components/data-table/phoenix-data-table-tabs/phoenix-data-table-tabs.component.d.ts +0 -16
  11. package/lib/components/data-table/utils/data-cell-value.pipe.d.ts +0 -16
  12. package/lib/components/data-table/utils/dataTable.enum.d.ts +0 -62
  13. package/lib/components/data-table/utils/dataTable.interface.d.ts +0 -43
  14. package/lib/components/data-table/utils/export-type.util.d.ts +0 -4
  15. package/lib/components/data-table/utils/remove-html-tags.pipe.d.ts +0 -7
  16. package/lib/components/search-bar/search-bar.component.d.ts +0 -30
  17. package/lib/components/shell/shell.component.d.ts +0 -9
  18. package/lib/components/sidebar/sidebar.component.d.ts +0 -12
  19. package/lib/components/sidebar-item/sidebar-item.component.d.ts +0 -12
  20. package/lib/components/status-header/status-header.component.d.ts +0 -45
  21. package/lib/components/topbar/topbar.component.d.ts +0 -46
  22. package/lib/components/user/user.component.d.ts +0 -15
  23. package/lib/models/shell-config.model.d.ts +0 -26
  24. package/lib/services/library-config.token.d.ts +0 -19
  25. package/lib/services/library-translate.service.d.ts +0 -21
  26. package/lib/utils/date-format.service.d.ts +0 -14
  27. package/public-api.d.ts +0 -11
@@ -1,21 +0,0 @@
1
- import { TranslateService } from '@ngx-translate/core';
2
- import { LibraryConfig } from './library-config.token';
3
- import * as i0 from "@angular/core";
4
- export declare class LibraryTranslationService {
5
- private translateService?;
6
- private config?;
7
- private translations;
8
- private activeLanguage;
9
- private labels$;
10
- constructor(translateService?: TranslateService | undefined, config?: LibraryConfig | undefined);
11
- /** Promena jezika */
12
- setTranslation(lang: string): void;
13
- /** Dohvatanje prevoda kao Observable */
14
- getTranslations(): import("rxjs").Observable<{
15
- [key: string]: string;
16
- }>;
17
- /** Dohvata specifičan ključ iz prevoda */
18
- translate(key: string): string;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<LibraryTranslationService, [{ optional: true; }, { optional: true; }]>;
20
- static ɵprov: i0.ɵɵInjectableDeclaration<LibraryTranslationService>;
21
- }
@@ -1,14 +0,0 @@
1
- import { OnDestroy } from '@angular/core';
2
- import { BehaviorSubject, Subscription } from 'rxjs';
3
- import * as i0 from "@angular/core";
4
- export declare class DateFormatService implements OnDestroy {
5
- dateFormat: BehaviorSubject<string>;
6
- currentDateFormatsub$: Subscription;
7
- currentDateFormat$: import("rxjs").Observable<string>;
8
- date: string;
9
- constructor();
10
- setDateFormat(date: string): void;
11
- ngOnDestroy(): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<DateFormatService, never>;
13
- static ɵprov: i0.ɵɵInjectableDeclaration<DateFormatService>;
14
- }
package/public-api.d.ts DELETED
@@ -1,11 +0,0 @@
1
- export * from './lib/components/sidebar/sidebar.component';
2
- export * from './lib/components/topbar/topbar.component';
3
- export * from './lib/components/search-bar/search-bar.component';
4
- export * from './lib/components/sidebar-item/sidebar-item.component';
5
- export * from './lib/components/user/user.component';
6
- export * from './lib/components/status-header/status-header.component';
7
- export * from './lib/components/shell/shell.component';
8
- export * from './lib/components/data-table/phoenix-data-table/phoenix-data-table.component';
9
- export * from './lib/models/shell-config.model';
10
- export * from './lib/components/data-table/utils/dataTable.enum';
11
- export * from './lib/services/library-translate.service';