@agorapulse/ui-components 20.3.39 → 20.3.41
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/agorapulse-ui-components-20.3.41.tgz +0 -0
- package/fesm2022/agorapulse-ui-components-infobox.mjs +2 -0
- package/fesm2022/agorapulse-ui-components-infobox.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-legacy-input.mjs +5 -1
- package/fesm2022/agorapulse-ui-components-legacy-input.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-nav-selector.mjs +3 -2
- package/fesm2022/agorapulse-ui-components-nav-selector.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-select.mjs +24 -6
- package/fesm2022/agorapulse-ui-components-select.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-tabs.mjs +8 -4
- package/fesm2022/agorapulse-ui-components-tabs.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components-tooltip.mjs +39 -24
- package/fesm2022/agorapulse-ui-components-tooltip.mjs.map +1 -1
- package/fesm2022/agorapulse-ui-components.mjs +1 -1
- package/fesm2022/agorapulse-ui-components.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/legacy/input/index.d.ts +1 -0
- package/nav-selector/index.d.ts +1 -1
- package/package.json +9 -9
- package/select/index.d.ts +8 -0
- package/tabs/index.d.ts +2 -0
- package/tooltip/index.d.ts +9 -7
- package/agorapulse-ui-components-20.3.39.tgz +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agorapulse/ui-components",
|
|
3
3
|
"description": "Agorapulse UI Components Library",
|
|
4
|
-
"version": "20.3.
|
|
4
|
+
"version": "20.3.41",
|
|
5
5
|
"author": "Benoit Hediard",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"types": "./add-comment/index.d.ts",
|
|
41
41
|
"default": "./fesm2022/agorapulse-ui-components-add-comment.mjs"
|
|
42
42
|
},
|
|
43
|
-
"./action-dropdown": {
|
|
44
|
-
"types": "./action-dropdown/index.d.ts",
|
|
45
|
-
"default": "./fesm2022/agorapulse-ui-components-action-dropdown.mjs"
|
|
46
|
-
},
|
|
47
43
|
"./autocomplete": {
|
|
48
44
|
"types": "./autocomplete/index.d.ts",
|
|
49
45
|
"default": "./fesm2022/agorapulse-ui-components-autocomplete.mjs"
|
|
50
46
|
},
|
|
47
|
+
"./action-dropdown": {
|
|
48
|
+
"types": "./action-dropdown/index.d.ts",
|
|
49
|
+
"default": "./fesm2022/agorapulse-ui-components-action-dropdown.mjs"
|
|
50
|
+
},
|
|
51
51
|
"./avatar": {
|
|
52
52
|
"types": "./avatar/index.d.ts",
|
|
53
53
|
"default": "./fesm2022/agorapulse-ui-components-avatar.mjs"
|
|
@@ -76,14 +76,14 @@
|
|
|
76
76
|
"types": "./confirm-modal/index.d.ts",
|
|
77
77
|
"default": "./fesm2022/agorapulse-ui-components-confirm-modal.mjs"
|
|
78
78
|
},
|
|
79
|
-
"./datepicker": {
|
|
80
|
-
"types": "./datepicker/index.d.ts",
|
|
81
|
-
"default": "./fesm2022/agorapulse-ui-components-datepicker.mjs"
|
|
82
|
-
},
|
|
83
79
|
"./counter": {
|
|
84
80
|
"types": "./counter/index.d.ts",
|
|
85
81
|
"default": "./fesm2022/agorapulse-ui-components-counter.mjs"
|
|
86
82
|
},
|
|
83
|
+
"./datepicker": {
|
|
84
|
+
"types": "./datepicker/index.d.ts",
|
|
85
|
+
"default": "./fesm2022/agorapulse-ui-components-datepicker.mjs"
|
|
86
|
+
},
|
|
87
87
|
"./directives": {
|
|
88
88
|
"types": "./directives/index.d.ts",
|
|
89
89
|
"default": "./fesm2022/agorapulse-ui-components-directives.mjs"
|
package/select/index.d.ts
CHANGED
|
@@ -49,6 +49,8 @@ declare class SelectSingleDirective implements AfterViewInit {
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
declare class DropdownItemSingleOneLineComponent {
|
|
52
|
+
private readonly symbolRegistry;
|
|
53
|
+
constructor();
|
|
52
54
|
text: string;
|
|
53
55
|
selected: boolean;
|
|
54
56
|
disabled: boolean;
|
|
@@ -68,6 +70,8 @@ declare class DropdownItemSingleOneLineComponent {
|
|
|
68
70
|
}
|
|
69
71
|
|
|
70
72
|
declare class DropdownItemSingleTwoLinesComponent {
|
|
73
|
+
private readonly symbolRegistry;
|
|
74
|
+
constructor();
|
|
71
75
|
text: string;
|
|
72
76
|
caption: string;
|
|
73
77
|
selected: boolean;
|
|
@@ -87,6 +91,8 @@ declare class DropdownItemSingleTwoLinesComponent {
|
|
|
87
91
|
}
|
|
88
92
|
|
|
89
93
|
declare class DropdownItemMultipleOneLineComponent {
|
|
94
|
+
private readonly symbolRegistry;
|
|
95
|
+
constructor();
|
|
90
96
|
text: string;
|
|
91
97
|
selected: boolean;
|
|
92
98
|
htmlId: string;
|
|
@@ -115,6 +121,8 @@ declare class DropdownItemMultipleOneLineComponent {
|
|
|
115
121
|
}
|
|
116
122
|
|
|
117
123
|
declare class DropdownItemMultipleTwoLinesComponent {
|
|
124
|
+
private readonly symbolRegistry;
|
|
125
|
+
constructor();
|
|
118
126
|
text: string;
|
|
119
127
|
caption: string;
|
|
120
128
|
selected: boolean;
|
package/tabs/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as _angular_core from '@angular/core';
|
|
|
2
2
|
import { ElementRef } from '@angular/core';
|
|
3
3
|
|
|
4
4
|
declare class TabComponent {
|
|
5
|
+
private readonly symbolRegistry;
|
|
5
6
|
label: _angular_core.InputSignal<string>;
|
|
6
7
|
counter: _angular_core.InputSignal<number | undefined>;
|
|
7
8
|
disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -9,6 +10,7 @@ declare class TabComponent {
|
|
|
9
10
|
symbolId: _angular_core.InputSignal<string | undefined>;
|
|
10
11
|
isActive: _angular_core.WritableSignal<boolean>;
|
|
11
12
|
tabIndex: _angular_core.WritableSignal<number>;
|
|
13
|
+
constructor();
|
|
12
14
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabComponent, never>;
|
|
13
15
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabComponent, "ap-tab", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "counter": { "alias": "counter"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "featureLocked": { "alias": "featureLocked"; "required": false; "isSignal": true; }; "symbolId": { "alias": "symbolId"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
14
16
|
}
|
package/tooltip/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ declare class TooltipDirective implements AfterViewInit, OnDestroy, OnInit {
|
|
|
24
24
|
private readonly zone;
|
|
25
25
|
private readonly viewContainerRef;
|
|
26
26
|
private readonly destroyRef;
|
|
27
|
-
|
|
27
|
+
private documentClickListener?;
|
|
28
28
|
apTooltip: _angular_core.InputSignal<string | TemplateRef<HTMLElement> | null | undefined>;
|
|
29
29
|
apTooltipPosition: _angular_core.InputSignal<"left" | "right" | "top" | "bottom" | "bottom-left" | "bottom-right" | "top-left" | "top-right">;
|
|
30
30
|
apTooltipShowDelay: _angular_core.InputSignal<number>;
|
|
@@ -86,6 +86,8 @@ declare class TooltipDirective implements AfterViewInit, OnDestroy, OnInit {
|
|
|
86
86
|
updateText(): void;
|
|
87
87
|
setCssVariables(): void;
|
|
88
88
|
private removePreviousAlignHtmlClasses;
|
|
89
|
+
private addDocumentClickListener;
|
|
90
|
+
private removeDocumentClickListener;
|
|
89
91
|
get externallyTriggerred(): boolean;
|
|
90
92
|
set externallyTriggerred(value: boolean);
|
|
91
93
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipDirective, never>;
|
|
@@ -97,13 +99,13 @@ declare class TooltipDirective implements AfterViewInit, OnDestroy, OnInit {
|
|
|
97
99
|
*
|
|
98
100
|
* ```html
|
|
99
101
|
* <div #myTooltip="apTooltip" apTooltip>Content</div>
|
|
100
|
-
* <div [
|
|
102
|
+
* <div [apTooltipExternalTrigger]="myTooltip">Click me</div>
|
|
101
103
|
* ```
|
|
102
104
|
*/
|
|
103
|
-
declare class
|
|
105
|
+
declare class TooltipExternalTriggerDirective implements AfterViewInit, OnDestroy {
|
|
104
106
|
private readonly elementRef;
|
|
105
107
|
private readonly zone;
|
|
106
|
-
|
|
108
|
+
apTooltipExternalTrigger: _angular_core.InputSignal<TooltipDirective | undefined>;
|
|
107
109
|
private clickListener;
|
|
108
110
|
private get targetTooltip();
|
|
109
111
|
ngAfterViewInit(): void;
|
|
@@ -111,9 +113,9 @@ declare class TooltipTriggerDirective implements AfterViewInit, OnDestroy {
|
|
|
111
113
|
private cleanupEventListeners;
|
|
112
114
|
ngOnDestroy(): void;
|
|
113
115
|
private onClick;
|
|
114
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<
|
|
115
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<
|
|
116
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipExternalTriggerDirective, never>;
|
|
117
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TooltipExternalTriggerDirective, "[apTooltipExternalTrigger]", ["apTooltipExternalTrigger"], { "apTooltipExternalTrigger": { "alias": "apTooltipExternalTrigger"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
116
118
|
}
|
|
117
119
|
|
|
118
|
-
export { CustomTooltipType, TooltipDirective,
|
|
120
|
+
export { CustomTooltipType, TooltipDirective, TooltipExternalTriggerDirective };
|
|
119
121
|
export type { CustomTooltipListItem, CustomTooltipPresentationItem };
|
|
Binary file
|