@softheon/armature 21.9.0 → 21.10.1
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
|
@@ -3886,6 +3886,7 @@ interface BadgeTooltipData {
|
|
|
3886
3886
|
* Properties `name` & `icon` will be ignored in this case an do not need to be included.
|
|
3887
3887
|
* @property `badgeLabel`, the menu button badge label ( all menu badges will be 'neutral', no icon )
|
|
3888
3888
|
* @property `menuLabel`, the menu's label
|
|
3889
|
+
* @property `description`, the description text to display below the menu item
|
|
3889
3890
|
*/
|
|
3890
3891
|
interface ButtonData {
|
|
3891
3892
|
name?: string;
|
|
@@ -3899,6 +3900,7 @@ interface ButtonData {
|
|
|
3899
3900
|
displayBadgeLabel?: boolean;
|
|
3900
3901
|
badgeLabel?: string;
|
|
3901
3902
|
menuLabel?: string;
|
|
3903
|
+
description?: string;
|
|
3902
3904
|
badgeConfig?: ButtonBadgeConfig;
|
|
3903
3905
|
}
|
|
3904
3906
|
/**
|
|
@@ -7383,14 +7385,11 @@ declare class EntityHelperService<TConfig extends EntityConfigBase> {
|
|
|
7383
7385
|
initializeConfigurations(): void;
|
|
7384
7386
|
/**
|
|
7385
7387
|
*
|
|
7386
|
-
* @param
|
|
7387
|
-
* @param drawerId The drawer id
|
|
7388
|
-
* @param entityId The entity id
|
|
7389
|
-
* @param configPrefix Teh config prefix
|
|
7388
|
+
* @param configPrefix The config prefix
|
|
7390
7389
|
* @param entityConfig The entity config
|
|
7391
7390
|
* @param enLangConfig The en lang config
|
|
7392
7391
|
*/
|
|
7393
|
-
loadConfigurations(configPrefix: string, entityConfig?: TConfig, enLangConfig?: TranslationObject): void;
|
|
7392
|
+
loadConfigurations(configPrefix: string, entityConfig?: TConfig | undefined, enLangConfig?: TranslationObject | undefined): void;
|
|
7394
7393
|
resetLoading(): void;
|
|
7395
7394
|
static ɵfac: i0.ɵɵFactoryDeclaration<EntityHelperService<any>, never>;
|
|
7396
7395
|
static ɵprov: i0.ɵɵInjectableDeclaration<EntityHelperService<any>>;
|