@elasticias/ui 1.0.8 → 1.0.10
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.
package/package.json
CHANGED
package/types/elasticias-ui.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as _angular_core from '@angular/core';
|
|
|
2
2
|
import { PipeTransform, OnInit, OnChanges, TemplateRef, EventEmitter, AfterContentInit, OnDestroy, SimpleChanges, InjectionToken, AfterViewInit } from '@angular/core';
|
|
3
3
|
import { Menu } from 'primeng/menu';
|
|
4
4
|
import * as _elasticias_core from '@elasticias/core';
|
|
5
|
-
import { EfModule, EfNavSection, EfNavItem, EfModuleId, EfToast, EfToastAction, EfThemeConfigService } from '@elasticias/core';
|
|
5
|
+
import { EfBuildPackage, EfModule, EfNavSection, EfNavItem, EfModuleId, EfToast, EfToastAction, EfThemeConfigService } from '@elasticias/core';
|
|
6
6
|
import * as i1 from 'primeng/tooltip';
|
|
7
7
|
import * as _elasticias_screens from '@elasticias/screens';
|
|
8
8
|
import { ScreenContext, EfDetailToolbarAction, EfSearchToolbarAction, EfDataCardColumn, EfDataCardSort, EfDateRange, EfDatePresetKey } from '@elasticias/screens';
|
|
@@ -981,6 +981,53 @@ declare class EfBuildStampComponent {
|
|
|
981
981
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EfBuildStampComponent, "ef-build-stamp", never, { "owner": { "alias": "owner"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
982
982
|
}
|
|
983
983
|
|
|
984
|
+
/**
|
|
985
|
+
* "About this app" — which build is running and what shared packages it
|
|
986
|
+
* was compiled against.
|
|
987
|
+
*
|
|
988
|
+
* Reads `EF_BUILD_INFO` optionally and renders the build rows only when the
|
|
989
|
+
* app provided it, so a consumer that wired no stamp still gets a usable
|
|
990
|
+
* dialog with its product identity.
|
|
991
|
+
*
|
|
992
|
+
* It is deliberately a dialog rather than a screen: the information is
|
|
993
|
+
* consulted (to paste a commit into an issue, to check which release a
|
|
994
|
+
* tenant is on) and dismissed, never navigated to.
|
|
995
|
+
*
|
|
996
|
+
* ```html
|
|
997
|
+
* <ef-about-dialog [(visible)]="aboutOpen" product="Crescilio" [edition]="tenantName()" />
|
|
998
|
+
* ```
|
|
999
|
+
*/
|
|
1000
|
+
declare class EfAboutDialogComponent {
|
|
1001
|
+
/** Two-way open state. */
|
|
1002
|
+
readonly visible: _angular_core.ModelSignal<boolean>;
|
|
1003
|
+
/** Product name, shown large under the mark. */
|
|
1004
|
+
readonly product: _angular_core.InputSignal<string>;
|
|
1005
|
+
/** One muted line under the product — a tenant, a plan, an edition. */
|
|
1006
|
+
readonly edition: _angular_core.InputSignal<string>;
|
|
1007
|
+
/** Brand mark. A logo wins over the initial when both are set; empty
|
|
1008
|
+
* means "none", the same way `edition` and `initial` read. */
|
|
1009
|
+
readonly logoUrl: _angular_core.InputSignal<string>;
|
|
1010
|
+
readonly initial: _angular_core.InputSignal<string>;
|
|
1011
|
+
/** Copyright holder on the last line. */
|
|
1012
|
+
readonly owner: _angular_core.InputSignal<string>;
|
|
1013
|
+
protected readonly info: _elasticias_core.EfBuildInfo;
|
|
1014
|
+
protected readonly year: number;
|
|
1015
|
+
protected readonly packages: _angular_core.Signal<EfBuildPackage[]>;
|
|
1016
|
+
/**
|
|
1017
|
+
* A released build is known by its version; an unreleased one has no
|
|
1018
|
+
* version to be known by. Same split as `ef-build-stamp`: printing an
|
|
1019
|
+
* empty row is worse than printing none.
|
|
1020
|
+
*/
|
|
1021
|
+
protected readonly rows: _angular_core.Signal<{
|
|
1022
|
+
labelKey: string;
|
|
1023
|
+
value: string;
|
|
1024
|
+
}[]>;
|
|
1025
|
+
/** A footer button, not only the header ✕: a thumb needs a real target. */
|
|
1026
|
+
protected readonly closeAction: EfDialogAction[];
|
|
1027
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EfAboutDialogComponent, never>;
|
|
1028
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EfAboutDialogComponent, "ef-about-dialog", never, { "visible": { "alias": "visible"; "required": false; "isSignal": true; }; "product": { "alias": "product"; "required": false; "isSignal": true; }; "edition": { "alias": "edition"; "required": false; "isSignal": true; }; "logoUrl": { "alias": "logoUrl"; "required": false; "isSignal": true; }; "initial": { "alias": "initial"; "required": false; "isSignal": true; }; "owner": { "alias": "owner"; "required": false; "isSignal": true; }; }, { "visible": "visibleChange"; }, never, never, true, never>;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
984
1031
|
/**
|
|
985
1032
|
* Comptoir-skinned tooltip.
|
|
986
1033
|
*
|
|
@@ -1394,10 +1441,21 @@ declare class EfAppShellComponent {
|
|
|
1394
1441
|
readonly moduleSections: _angular_core.Signal<EfNavSection[]>;
|
|
1395
1442
|
onNavigate(item: EfNavItem): void;
|
|
1396
1443
|
openSwitcher(): void;
|
|
1444
|
+
/**
|
|
1445
|
+
* Dismiss the module sheet from outside.
|
|
1446
|
+
*
|
|
1447
|
+
* Every item the shell itself renders in the sheet navigates, and
|
|
1448
|
+
* navigating closes it. An app-level entry in the `[sheet-footer]` slot
|
|
1449
|
+
* may do neither — "à propos" opens a dialog — and would otherwise leave
|
|
1450
|
+
* the sheet standing behind it. The app owns that button, so the app says
|
|
1451
|
+
* when the sheet is done: `<ef-app-shell #shell>` then
|
|
1452
|
+
* `(click)="shell.closeSwitcher(); …"`.
|
|
1453
|
+
*/
|
|
1454
|
+
closeSwitcher(): void;
|
|
1397
1455
|
onSwitcherChange(open: boolean): void;
|
|
1398
1456
|
onSelect(module: EfModule): void;
|
|
1399
1457
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EfAppShellComponent, never>;
|
|
1400
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EfAppShellComponent, "ef-app-shell", never, { "stripe": { "alias": "stripe"; "required": false; }; }, {}, never, ["[logo]", "[side-header-meta]", "[side-footer]", "[breadcrumb]", "[search]", "[actions]", "*", "[fab]"], true, never>;
|
|
1458
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EfAppShellComponent, "ef-app-shell", never, { "stripe": { "alias": "stripe"; "required": false; }; }, {}, never, ["[logo]", "[side-header-meta]", "[side-footer]", "[breadcrumb]", "[search]", "[actions]", "*", "[fab]", "[sheet-footer]"], true, never>;
|
|
1401
1459
|
}
|
|
1402
1460
|
|
|
1403
1461
|
/**
|
|
@@ -1818,7 +1876,7 @@ declare class EfProfileChipComponent {
|
|
|
1818
1876
|
role?: string;
|
|
1819
1877
|
/** Translation key for the role line — takes priority over `role`. */
|
|
1820
1878
|
roleKey?: string;
|
|
1821
|
-
/** Override the avatar glyph. Defaults to the first letter of `name`. */
|
|
1879
|
+
/** Override the avatar glyph (up to two characters). Defaults to the first letter of `name`. */
|
|
1822
1880
|
initial?: string;
|
|
1823
1881
|
/** Tenant tone uses `--tenant-500`; neutral uses `--ink-active`. */
|
|
1824
1882
|
tone: 'tenant' | 'neutral';
|
|
@@ -5230,5 +5288,5 @@ declare class EfEmailMetricsCardComponent {
|
|
|
5230
5288
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EfEmailMetricsCardComponent, "ef-email-metrics-card", never, { "metrics": { "alias": "metrics"; "required": false; "isSignal": true; }; "recentEvents": { "alias": "recentEvents"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; }, { "rangeChange": "rangeChange"; }, never, never, true, never>;
|
|
5231
5289
|
}
|
|
5232
5290
|
|
|
5233
|
-
export { EF_BADGE_BG_COLORS, EF_BADGE_BG_LIGHT_COLORS, EF_BADGE_BORDER_COLORS, EF_BADGE_DEFAULTS, EF_BADGE_TEXT_COLORS, EF_CHART_PALETTE, EF_DATATABLE_ACTIONS_DEFAULTS, EF_DATATABLE_COLUMN_DEFAULTS, EF_DATATABLE_DEFAULTS, EF_DATA_CARD_MOBILE_LAYOUT, EF_STATUS_COLORS, EF_STATUS_COLOR_ALIASES, EfActivationFilterComponent, EfAppMainComponent, EfAppShellComponent, EfAppShellMobileComponent, EfAppTopComponent, EfBadgeComponent, EfBlockUiComponent, EfBlockableDivComponent, EfBottomSheetComponent, EfBuildStampComponent, EfBulkBarComponent, EfButtonComponent, EfButtonGroupComponent, EfCardComponent, EfChangeHistoryComponent, EfChartComponent, EfCheckboxComponent, EfClearButtonComponent, EfColumnHeaderTemplateDirective, EfColumnTemplateDirective, EfCompactPipe, EfConfirmDialogComponent, EfCurrencyPipe, EfDataCardComponent, EfDatatableActionBarComponent, EfDatatableComponent, EfDatepickerAdvancedComponent, EfDatepickerComponent, EfDetailToolbarComponent, EfDialogComponent, EfEmailMetricsCardComponent, EfEmptyStateComponent, EfFabComponent, EfFieldsetComponent, EfFilterDrawerComponent, EfFilterPillComponent, EfFormGridComponent, EfInputNumberComponent, EfInputTextComponent, EfKpiCardComponent, EfLabelComponent, EfModuleRailComponent, EfModuleSideComponent, EfMultiSelectComponent, EfOrderBuilderComponent, EfOrderSummaryComponent, EfPagerComponent, EfPasswordComponent, EfPdfPreviewComponent, EfPillGroupComponent, EfPresetPillComponent, EfPriceDisplayComponent, EfProductCatalogueComponent, EfProductCatalogueFilterComponent, EfProductTypeaheadComponent, EfProfileChipComponent, EfPulseComponent, EfQuantitySelectorComponent, EfQuantityStepperComponent, EfRankListComponent, EfRowActionsComponent, EfSearchToolbarComponent, EfSelectButtonComponent, EfSelectComponent, EfServerErrorsDirective, EfSkeletonComponent, EfSmartBarComponent, EfStatsComponent, EfStatusChipComponent, EfTabPanelDirective, EfTabsComponent, EfTextareaComponent, EfThemeConfiguratorComponent, EfThemeToggleComponent, EfTimelineComponent, EfToastRegionComponent, EfToggleSwitchComponent, EfToolbarComponent, EfTooltipDirective, EfTotalsComponent, OrderEntityHelper, OrderLineItemHelper, TruncatePipe, buildChartConfig, getColumnAlignment, mergeColumnDefaults, resolveEfStatusColor };
|
|
5291
|
+
export { EF_BADGE_BG_COLORS, EF_BADGE_BG_LIGHT_COLORS, EF_BADGE_BORDER_COLORS, EF_BADGE_DEFAULTS, EF_BADGE_TEXT_COLORS, EF_CHART_PALETTE, EF_DATATABLE_ACTIONS_DEFAULTS, EF_DATATABLE_COLUMN_DEFAULTS, EF_DATATABLE_DEFAULTS, EF_DATA_CARD_MOBILE_LAYOUT, EF_STATUS_COLORS, EF_STATUS_COLOR_ALIASES, EfAboutDialogComponent, EfActivationFilterComponent, EfAppMainComponent, EfAppShellComponent, EfAppShellMobileComponent, EfAppTopComponent, EfBadgeComponent, EfBlockUiComponent, EfBlockableDivComponent, EfBottomSheetComponent, EfBuildStampComponent, EfBulkBarComponent, EfButtonComponent, EfButtonGroupComponent, EfCardComponent, EfChangeHistoryComponent, EfChartComponent, EfCheckboxComponent, EfClearButtonComponent, EfColumnHeaderTemplateDirective, EfColumnTemplateDirective, EfCompactPipe, EfConfirmDialogComponent, EfCurrencyPipe, EfDataCardComponent, EfDatatableActionBarComponent, EfDatatableComponent, EfDatepickerAdvancedComponent, EfDatepickerComponent, EfDetailToolbarComponent, EfDialogComponent, EfEmailMetricsCardComponent, EfEmptyStateComponent, EfFabComponent, EfFieldsetComponent, EfFilterDrawerComponent, EfFilterPillComponent, EfFormGridComponent, EfInputNumberComponent, EfInputTextComponent, EfKpiCardComponent, EfLabelComponent, EfModuleRailComponent, EfModuleSideComponent, EfMultiSelectComponent, EfOrderBuilderComponent, EfOrderSummaryComponent, EfPagerComponent, EfPasswordComponent, EfPdfPreviewComponent, EfPillGroupComponent, EfPresetPillComponent, EfPriceDisplayComponent, EfProductCatalogueComponent, EfProductCatalogueFilterComponent, EfProductTypeaheadComponent, EfProfileChipComponent, EfPulseComponent, EfQuantitySelectorComponent, EfQuantityStepperComponent, EfRankListComponent, EfRowActionsComponent, EfSearchToolbarComponent, EfSelectButtonComponent, EfSelectComponent, EfServerErrorsDirective, EfSkeletonComponent, EfSmartBarComponent, EfStatsComponent, EfStatusChipComponent, EfTabPanelDirective, EfTabsComponent, EfTextareaComponent, EfThemeConfiguratorComponent, EfThemeToggleComponent, EfTimelineComponent, EfToastRegionComponent, EfToggleSwitchComponent, EfToolbarComponent, EfTooltipDirective, EfTotalsComponent, OrderEntityHelper, OrderLineItemHelper, TruncatePipe, buildChartConfig, getColumnAlignment, mergeColumnDefaults, resolveEfStatusColor };
|
|
5234
5292
|
export type { CatalogueProduct, CatalogueProductVariant, CategoryAssignment, CategoryGroup, CategoryItem, DatatableSearchEntity, DocumentConfig, EfBadgeColor, EfBadgeConfig, EfBadgeSize, EfBadgeVariant, EfButtonComptoirSeverity, EfButtonPrimeNGSeverity, EfButtonSeverity, EfChangeHistoryEntry, EfChangeHistoryFieldChange, EfChartSeries, EfChartType, EfDataCardMobileLayout, EfDataCardRowAction, EfDatatableActions, EfDatatableColumn, EfDatatableColumnAlign, EfDatatableColumnType, EfDatatableConfig, EfDateFieldValue, EfDatePreset, EfDialogAction, EfDialogSeverity, EfDialogSize, EfFabPosition, EfKpiDeltaTone, EfKpiSparkline, EfPillItem, EfPresetItem, EfRankRow, EfRowAction, EfSkeletonVariant, EfStatsRow, EfStatusColor, EfStatusReferenceItem, EfTabItem, EfTabsModule, EfTabsVariant, EfTimelineItem, EfTimelineState, EfToastRegionPosition, EfTotalsGrand, EfTotalsRow, HighlightSegment, OrderChangeInfo, OrderEntity, OrderLineItem, OrderProductsSummary, OrderSummaryItem, ProductCountGroup, ProductCountGroupLabel, ProductTypeaheadRow, ProductTypeaheadSelection, ProductWithCountGroup, SelectedFilter, ValidationResult };
|