@provoly/dashboard 1.2.10 → 1.2.11
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/esm2022/lib/core/components/select/select-a11y.service.mjs +5 -4
- package/esm2022/lib/core/components/select/select.component.mjs +8 -5
- package/esm2022/lib/core/components/share/share.utils.mjs +4 -4
- package/esm2022/lib/core/i18n/en.translations.mjs +3 -3
- package/esm2022/lib/core/i18n/fr.translations.mjs +4 -4
- package/esm2022/lib/core/pipes/translate-item-to-symbol/translate-item-to-symbol.pipe.mjs +2 -4
- package/esm2022/lib/dashboard/store/dashboard.effects.mjs +73 -3
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +2 -45
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +2 -2
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +93 -64
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/components/select/select-a11y.service.d.ts +1 -1
- package/lib/core/components/select/select.component.d.ts +2 -1
- package/lib/core/i18n/en.translations.d.ts +2 -2
- package/lib/core/i18n/fr.translations.d.ts +2 -2
- package/lib/dashboard/store/dashboard.effects.d.ts +8 -0
- package/package.json +7 -7
|
@@ -3,7 +3,7 @@ import { FocusOrigin } from '@angular/cdk/a11y';
|
|
|
3
3
|
export declare class SelectA11yService {
|
|
4
4
|
protected toggle: (...args: any[]) => void;
|
|
5
5
|
setToggle(toggleCallback: (...args: any[]) => void): void;
|
|
6
|
-
onFocusChange(origin: FocusOrigin, autocomplete: boolean, toggleFocus: () => void,
|
|
6
|
+
onFocusChange(origin: FocusOrigin, autocomplete: boolean, toggleFocus: () => void, focusInput: () => void): void;
|
|
7
7
|
onKeydownSelect(event: KeyboardEvent, autocomplete: boolean): void;
|
|
8
8
|
onKeydownAutocompleteInput(event: KeyboardEvent, open: boolean, searchValue: string, optionsModalRef?: EmbeddedViewRef<any>): void;
|
|
9
9
|
onKeydownOption(event: KeyboardEvent, optionDivRef: HTMLDivElement, first: boolean, last: boolean, autocomplete: boolean, selectElement: HTMLDivElement, select: () => void): void;
|
|
@@ -73,7 +73,8 @@ export declare class PrySelectComponent extends SubscriptionnerDirective impleme
|
|
|
73
73
|
private inhibition;
|
|
74
74
|
handleClick(): void;
|
|
75
75
|
toggleFocus(): void;
|
|
76
|
-
|
|
76
|
+
returnFocus(): void;
|
|
77
|
+
focusInput(): void;
|
|
77
78
|
private getOverlayConfig;
|
|
78
79
|
get _elementRef(): HTMLDivElement;
|
|
79
80
|
onFocusChange: (origin: FocusOrigin) => void;
|
|
@@ -301,11 +301,11 @@ export declare const enTranslations: {
|
|
|
301
301
|
share: {
|
|
302
302
|
private: string;
|
|
303
303
|
public: string;
|
|
304
|
-
|
|
304
|
+
groups: string;
|
|
305
305
|
type: string;
|
|
306
306
|
users: string;
|
|
307
307
|
noGroups: string;
|
|
308
|
-
|
|
308
|
+
groupLabels: {
|
|
309
309
|
ALL: string;
|
|
310
310
|
AUTHENTICATED: string;
|
|
311
311
|
};
|
|
@@ -303,10 +303,10 @@ export declare const frTranslations: {
|
|
|
303
303
|
share: {
|
|
304
304
|
private: string;
|
|
305
305
|
public: string;
|
|
306
|
-
|
|
306
|
+
groups: string;
|
|
307
307
|
type: string;
|
|
308
308
|
users: string;
|
|
309
|
-
|
|
309
|
+
groupLabels: {
|
|
310
310
|
ALL: string;
|
|
311
311
|
AUTHENTICATED: string;
|
|
312
312
|
};
|
|
@@ -199,6 +199,14 @@ export declare class DashboardEffects {
|
|
|
199
199
|
manifestId?: string | undefined;
|
|
200
200
|
selectedIds: string[];
|
|
201
201
|
} & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
202
|
+
moveWidget$: import("rxjs").Observable<{
|
|
203
|
+
tenants?: string[] | undefined;
|
|
204
|
+
manifest: GlobalManifest;
|
|
205
|
+
resultSets?: import("@provoly/dashboard").ResultSets | undefined;
|
|
206
|
+
joining?: boolean | undefined;
|
|
207
|
+
manifestId?: string | undefined;
|
|
208
|
+
selectedIds: string[];
|
|
209
|
+
} & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
202
210
|
multiSnackBar$: import("rxjs").Observable<{
|
|
203
211
|
message: import("@provoly/dashboard").PrySnackMessage;
|
|
204
212
|
} & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) display snack message">> & import("@ngrx/effects").CreateEffectMetadata;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.11",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -84,18 +84,18 @@
|
|
|
84
84
|
"esm": "./esm2022/admin/provoly-dashboard-admin.mjs",
|
|
85
85
|
"default": "./fesm2022/provoly-dashboard-admin.mjs"
|
|
86
86
|
},
|
|
87
|
-
"./import": {
|
|
88
|
-
"types": "./import/index.d.ts",
|
|
89
|
-
"esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
90
|
-
"esm": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
91
|
-
"default": "./fesm2022/provoly-dashboard-import.mjs"
|
|
92
|
-
},
|
|
93
87
|
"./dataset": {
|
|
94
88
|
"types": "./dataset/index.d.ts",
|
|
95
89
|
"esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
96
90
|
"esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
|
|
97
91
|
"default": "./fesm2022/provoly-dashboard-dataset.mjs"
|
|
98
92
|
},
|
|
93
|
+
"./import": {
|
|
94
|
+
"types": "./import/index.d.ts",
|
|
95
|
+
"esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
96
|
+
"esm": "./esm2022/import/provoly-dashboard-import.mjs",
|
|
97
|
+
"default": "./fesm2022/provoly-dashboard-import.mjs"
|
|
98
|
+
},
|
|
99
99
|
"./notification": {
|
|
100
100
|
"types": "./notification/index.d.ts",
|
|
101
101
|
"esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
|