@genesislcap/foundation-utils 14.314.2 → 14.314.3-alpha-c442ac5.0
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/dist/custom-elements.json +633 -15
- package/dist/dts/inactivity/inactivity-dialog.d.ts +23 -0
- package/dist/dts/inactivity/inactivity-dialog.d.ts.map +1 -0
- package/dist/dts/inactivity/inactivity-manager.d.ts +24 -0
- package/dist/dts/inactivity/inactivity-manager.d.ts.map +1 -0
- package/dist/dts/inactivity/inactivity-service.d.ts +34 -0
- package/dist/dts/inactivity/inactivity-service.d.ts.map +1 -0
- package/dist/dts/inactivity/index.d.ts +4 -0
- package/dist/dts/inactivity/index.d.ts.map +1 -0
- package/dist/dts/index.d.ts +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/esm/inactivity/inactivity-dialog.js +213 -0
- package/dist/esm/inactivity/inactivity-manager.js +87 -0
- package/dist/esm/inactivity/inactivity-service.js +128 -0
- package/dist/esm/inactivity/index.js +3 -0
- package/dist/esm/index.js +1 -0
- package/dist/foundation-utils.api.json +1217 -0
- package/dist/foundation-utils.d.ts +83 -0
- package/docs/api/foundation-utils.inactivityconfig.md +71 -0
- package/docs/api/foundation-utils.inactivityconfig.timeoutminutes.md +11 -0
- package/docs/api/foundation-utils.inactivityconfig.warningminutes.md +11 -0
- package/docs/api/foundation-utils.inactivitydialog.disconnectedcallback.md +15 -0
- package/docs/api/foundation-utils.inactivitydialog.handlecontinue.md +15 -0
- package/docs/api/foundation-utils.inactivitydialog.handlelogout.md +15 -0
- package/docs/api/foundation-utils.inactivitydialog.hide.md +15 -0
- package/docs/api/foundation-utils.inactivitydialog.isvisible.md +11 -0
- package/docs/api/foundation-utils.inactivitydialog.md +152 -0
- package/docs/api/foundation-utils.inactivitydialog.remainingseconds.md +11 -0
- package/docs/api/foundation-utils.inactivitydialog.show.md +50 -0
- package/docs/api/foundation-utils.inactivitydialogoptions.md +88 -0
- package/docs/api/foundation-utils.inactivitydialogoptions.oncontinue.md +11 -0
- package/docs/api/foundation-utils.inactivitydialogoptions.onlogout.md +11 -0
- package/docs/api/foundation-utils.inactivitydialogoptions.remainingseconds.md +11 -0
- package/docs/api/foundation-utils.inactivityevents._inactivity-reset_.md +11 -0
- package/docs/api/foundation-utils.inactivityevents._inactivity-timeout_.md +11 -0
- package/docs/api/foundation-utils.inactivityevents._inactivity-warning_.md +13 -0
- package/docs/api/foundation-utils.inactivityevents.md +88 -0
- package/docs/api/foundation-utils.inactivitymanager._constructor_.md +48 -0
- package/docs/api/foundation-utils.inactivitymanager.destroy.md +15 -0
- package/docs/api/foundation-utils.inactivitymanager.getservice.md +15 -0
- package/docs/api/foundation-utils.inactivitymanager.iswarningvisible.md +15 -0
- package/docs/api/foundation-utils.inactivitymanager.md +138 -0
- package/docs/api/foundation-utils.inactivitymanager.reset.md +15 -0
- package/docs/api/foundation-utils.inactivitymanager.start.md +15 -0
- package/docs/api/foundation-utils.inactivitymanager.stop.md +15 -0
- package/docs/api/foundation-utils.inactivitymanagerconfig.md +55 -0
- package/docs/api/foundation-utils.inactivitymanagerconfig.onlogout.md +11 -0
- package/docs/api/foundation-utils.inactivityservice._constructor_.md +48 -0
- package/docs/api/foundation-utils.inactivityservice.destroy.md +15 -0
- package/docs/api/foundation-utils.inactivityservice.md +138 -0
- package/docs/api/foundation-utils.inactivityservice.off.md +64 -0
- package/docs/api/foundation-utils.inactivityservice.on.md +64 -0
- package/docs/api/foundation-utils.inactivityservice.resettimer.md +15 -0
- package/docs/api/foundation-utils.inactivityservice.start.md +15 -0
- package/docs/api/foundation-utils.inactivityservice.stop.md +15 -0
- package/docs/api/foundation-utils.md +63 -0
- package/docs/api-report.md.api.md +90 -0
- package/package.json +11 -11
@@ -482,6 +482,8 @@ export declare interface ErrorMap<TErrorDetailMap extends ErrorDetailMap> extend
|
|
482
482
|
*/
|
483
483
|
export declare type ErrorMapLogger = (...args: any[]) => void;
|
484
484
|
|
485
|
+
declare type EventListener_2<T = any> = (data: T) => void;
|
486
|
+
|
485
487
|
/**
|
486
488
|
* Represents the possible event names for data synchronization.
|
487
489
|
* @public
|
@@ -674,6 +676,87 @@ export declare function getNumberFormatter(format: string, locale?: string | nul
|
|
674
676
|
*/
|
675
677
|
export declare let HTTP_CONFIG: string;
|
676
678
|
|
679
|
+
export declare interface InactivityConfig {
|
680
|
+
timeoutMinutes: number;
|
681
|
+
warningMinutes: number;
|
682
|
+
}
|
683
|
+
|
684
|
+
export declare class InactivityDialog extends FASTElement {
|
685
|
+
isVisible: boolean;
|
686
|
+
remainingSeconds: number;
|
687
|
+
private onContinue?;
|
688
|
+
private onLogout?;
|
689
|
+
private countdownInterval?;
|
690
|
+
private startTime;
|
691
|
+
private totalSeconds;
|
692
|
+
show(options: InactivityDialogOptions): void;
|
693
|
+
hide(): void;
|
694
|
+
private startCountdown;
|
695
|
+
private stopCountdown;
|
696
|
+
handleContinue(): void;
|
697
|
+
handleLogout(): void;
|
698
|
+
disconnectedCallback(): void;
|
699
|
+
}
|
700
|
+
|
701
|
+
export declare interface InactivityDialogOptions {
|
702
|
+
remainingSeconds: number;
|
703
|
+
onContinue: () => void;
|
704
|
+
onLogout: () => void;
|
705
|
+
}
|
706
|
+
|
707
|
+
export declare interface InactivityEvents {
|
708
|
+
'inactivity-warning': {
|
709
|
+
remainingSeconds: number;
|
710
|
+
};
|
711
|
+
'inactivity-timeout': void;
|
712
|
+
'inactivity-reset': void;
|
713
|
+
}
|
714
|
+
|
715
|
+
export declare class InactivityManager {
|
716
|
+
private service;
|
717
|
+
private dialog;
|
718
|
+
private config;
|
719
|
+
private isDialogVisible;
|
720
|
+
constructor(config: InactivityManagerConfig);
|
721
|
+
private setupEventListeners;
|
722
|
+
private showWarningDialog;
|
723
|
+
private hideWarningDialog;
|
724
|
+
private handleContinue;
|
725
|
+
private handleLogout;
|
726
|
+
private handleTimeout;
|
727
|
+
start(): void;
|
728
|
+
stop(): void;
|
729
|
+
reset(): void;
|
730
|
+
destroy(): void;
|
731
|
+
getService(): InactivityService;
|
732
|
+
isWarningVisible(): boolean;
|
733
|
+
}
|
734
|
+
|
735
|
+
export declare interface InactivityManagerConfig extends InactivityConfig {
|
736
|
+
onLogout: () => void;
|
737
|
+
}
|
738
|
+
|
739
|
+
export declare class InactivityService {
|
740
|
+
private config;
|
741
|
+
private warningId;
|
742
|
+
private timeoutId;
|
743
|
+
private lastActivity;
|
744
|
+
private isActive;
|
745
|
+
private eventListeners;
|
746
|
+
constructor(config: InactivityConfig);
|
747
|
+
private setupActivityListeners;
|
748
|
+
private checkTimeout;
|
749
|
+
on<K extends keyof InactivityEvents>(event: K, listener: EventListener_2<InactivityEvents[K]>): void;
|
750
|
+
off<K extends keyof InactivityEvents>(event: K, listener: EventListener_2<InactivityEvents[K]>): void;
|
751
|
+
private emit;
|
752
|
+
start(): void;
|
753
|
+
stop(): void;
|
754
|
+
resetTimer(): void;
|
755
|
+
private scheduleTimers;
|
756
|
+
private clearTimers;
|
757
|
+
destroy(): void;
|
758
|
+
}
|
759
|
+
|
677
760
|
/**
|
678
761
|
* Returns a boolean value indicating whether the current window is inside an iframe.
|
679
762
|
* @returns true if the window is inside an iframe, false otherwise.
|
@@ -0,0 +1,71 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityConfig](./foundation-utils.inactivityconfig.md)
|
4
|
+
|
5
|
+
## InactivityConfig interface
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
export interface InactivityConfig
|
11
|
+
```
|
12
|
+
|
13
|
+
## Properties
|
14
|
+
|
15
|
+
<table><thead><tr><th>
|
16
|
+
|
17
|
+
Property
|
18
|
+
|
19
|
+
|
20
|
+
</th><th>
|
21
|
+
|
22
|
+
Modifiers
|
23
|
+
|
24
|
+
|
25
|
+
</th><th>
|
26
|
+
|
27
|
+
Type
|
28
|
+
|
29
|
+
|
30
|
+
</th><th>
|
31
|
+
|
32
|
+
Description
|
33
|
+
|
34
|
+
|
35
|
+
</th></tr></thead>
|
36
|
+
<tbody><tr><td>
|
37
|
+
|
38
|
+
[timeoutMinutes](./foundation-utils.inactivityconfig.timeoutminutes.md)
|
39
|
+
|
40
|
+
|
41
|
+
</td><td>
|
42
|
+
|
43
|
+
|
44
|
+
</td><td>
|
45
|
+
|
46
|
+
number
|
47
|
+
|
48
|
+
|
49
|
+
</td><td>
|
50
|
+
|
51
|
+
|
52
|
+
</td></tr>
|
53
|
+
<tr><td>
|
54
|
+
|
55
|
+
[warningMinutes](./foundation-utils.inactivityconfig.warningminutes.md)
|
56
|
+
|
57
|
+
|
58
|
+
</td><td>
|
59
|
+
|
60
|
+
|
61
|
+
</td><td>
|
62
|
+
|
63
|
+
number
|
64
|
+
|
65
|
+
|
66
|
+
</td><td>
|
67
|
+
|
68
|
+
|
69
|
+
</td></tr>
|
70
|
+
</tbody></table>
|
71
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityConfig](./foundation-utils.inactivityconfig.md) > [timeoutMinutes](./foundation-utils.inactivityconfig.timeoutminutes.md)
|
4
|
+
|
5
|
+
## InactivityConfig.timeoutMinutes property
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
timeoutMinutes: number;
|
11
|
+
```
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityConfig](./foundation-utils.inactivityconfig.md) > [warningMinutes](./foundation-utils.inactivityconfig.warningminutes.md)
|
4
|
+
|
5
|
+
## InactivityConfig.warningMinutes property
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
warningMinutes: number;
|
11
|
+
```
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialog](./foundation-utils.inactivitydialog.md) > [disconnectedCallback](./foundation-utils.inactivitydialog.disconnectedcallback.md)
|
4
|
+
|
5
|
+
## InactivityDialog.disconnectedCallback() method
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
disconnectedCallback(): void;
|
11
|
+
```
|
12
|
+
**Returns:**
|
13
|
+
|
14
|
+
void
|
15
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialog](./foundation-utils.inactivitydialog.md) > [handleContinue](./foundation-utils.inactivitydialog.handlecontinue.md)
|
4
|
+
|
5
|
+
## InactivityDialog.handleContinue() method
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
handleContinue(): void;
|
11
|
+
```
|
12
|
+
**Returns:**
|
13
|
+
|
14
|
+
void
|
15
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialog](./foundation-utils.inactivitydialog.md) > [handleLogout](./foundation-utils.inactivitydialog.handlelogout.md)
|
4
|
+
|
5
|
+
## InactivityDialog.handleLogout() method
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
handleLogout(): void;
|
11
|
+
```
|
12
|
+
**Returns:**
|
13
|
+
|
14
|
+
void
|
15
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialog](./foundation-utils.inactivitydialog.md) > [hide](./foundation-utils.inactivitydialog.hide.md)
|
4
|
+
|
5
|
+
## InactivityDialog.hide() method
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
hide(): void;
|
11
|
+
```
|
12
|
+
**Returns:**
|
13
|
+
|
14
|
+
void
|
15
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialog](./foundation-utils.inactivitydialog.md) > [isVisible](./foundation-utils.inactivitydialog.isvisible.md)
|
4
|
+
|
5
|
+
## InactivityDialog.isVisible property
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
isVisible: boolean;
|
11
|
+
```
|
@@ -0,0 +1,152 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialog](./foundation-utils.inactivitydialog.md)
|
4
|
+
|
5
|
+
## InactivityDialog class
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
export declare class InactivityDialog extends FASTElement
|
11
|
+
```
|
12
|
+
**Extends:** FASTElement
|
13
|
+
|
14
|
+
## Properties
|
15
|
+
|
16
|
+
<table><thead><tr><th>
|
17
|
+
|
18
|
+
Property
|
19
|
+
|
20
|
+
|
21
|
+
</th><th>
|
22
|
+
|
23
|
+
Modifiers
|
24
|
+
|
25
|
+
|
26
|
+
</th><th>
|
27
|
+
|
28
|
+
Type
|
29
|
+
|
30
|
+
|
31
|
+
</th><th>
|
32
|
+
|
33
|
+
Description
|
34
|
+
|
35
|
+
|
36
|
+
</th></tr></thead>
|
37
|
+
<tbody><tr><td>
|
38
|
+
|
39
|
+
[isVisible](./foundation-utils.inactivitydialog.isvisible.md)
|
40
|
+
|
41
|
+
|
42
|
+
</td><td>
|
43
|
+
|
44
|
+
|
45
|
+
</td><td>
|
46
|
+
|
47
|
+
boolean
|
48
|
+
|
49
|
+
|
50
|
+
</td><td>
|
51
|
+
|
52
|
+
|
53
|
+
</td></tr>
|
54
|
+
<tr><td>
|
55
|
+
|
56
|
+
[remainingSeconds](./foundation-utils.inactivitydialog.remainingseconds.md)
|
57
|
+
|
58
|
+
|
59
|
+
</td><td>
|
60
|
+
|
61
|
+
|
62
|
+
</td><td>
|
63
|
+
|
64
|
+
number
|
65
|
+
|
66
|
+
|
67
|
+
</td><td>
|
68
|
+
|
69
|
+
|
70
|
+
</td></tr>
|
71
|
+
</tbody></table>
|
72
|
+
|
73
|
+
## Methods
|
74
|
+
|
75
|
+
<table><thead><tr><th>
|
76
|
+
|
77
|
+
Method
|
78
|
+
|
79
|
+
|
80
|
+
</th><th>
|
81
|
+
|
82
|
+
Modifiers
|
83
|
+
|
84
|
+
|
85
|
+
</th><th>
|
86
|
+
|
87
|
+
Description
|
88
|
+
|
89
|
+
|
90
|
+
</th></tr></thead>
|
91
|
+
<tbody><tr><td>
|
92
|
+
|
93
|
+
[disconnectedCallback()](./foundation-utils.inactivitydialog.disconnectedcallback.md)
|
94
|
+
|
95
|
+
|
96
|
+
</td><td>
|
97
|
+
|
98
|
+
|
99
|
+
</td><td>
|
100
|
+
|
101
|
+
|
102
|
+
</td></tr>
|
103
|
+
<tr><td>
|
104
|
+
|
105
|
+
[handleContinue()](./foundation-utils.inactivitydialog.handlecontinue.md)
|
106
|
+
|
107
|
+
|
108
|
+
</td><td>
|
109
|
+
|
110
|
+
|
111
|
+
</td><td>
|
112
|
+
|
113
|
+
|
114
|
+
</td></tr>
|
115
|
+
<tr><td>
|
116
|
+
|
117
|
+
[handleLogout()](./foundation-utils.inactivitydialog.handlelogout.md)
|
118
|
+
|
119
|
+
|
120
|
+
</td><td>
|
121
|
+
|
122
|
+
|
123
|
+
</td><td>
|
124
|
+
|
125
|
+
|
126
|
+
</td></tr>
|
127
|
+
<tr><td>
|
128
|
+
|
129
|
+
[hide()](./foundation-utils.inactivitydialog.hide.md)
|
130
|
+
|
131
|
+
|
132
|
+
</td><td>
|
133
|
+
|
134
|
+
|
135
|
+
</td><td>
|
136
|
+
|
137
|
+
|
138
|
+
</td></tr>
|
139
|
+
<tr><td>
|
140
|
+
|
141
|
+
[show(options)](./foundation-utils.inactivitydialog.show.md)
|
142
|
+
|
143
|
+
|
144
|
+
</td><td>
|
145
|
+
|
146
|
+
|
147
|
+
</td><td>
|
148
|
+
|
149
|
+
|
150
|
+
</td></tr>
|
151
|
+
</tbody></table>
|
152
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialog](./foundation-utils.inactivitydialog.md) > [remainingSeconds](./foundation-utils.inactivitydialog.remainingseconds.md)
|
4
|
+
|
5
|
+
## InactivityDialog.remainingSeconds property
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
remainingSeconds: number;
|
11
|
+
```
|
@@ -0,0 +1,50 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialog](./foundation-utils.inactivitydialog.md) > [show](./foundation-utils.inactivitydialog.show.md)
|
4
|
+
|
5
|
+
## InactivityDialog.show() method
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
show(options: InactivityDialogOptions): void;
|
11
|
+
```
|
12
|
+
|
13
|
+
## Parameters
|
14
|
+
|
15
|
+
<table><thead><tr><th>
|
16
|
+
|
17
|
+
Parameter
|
18
|
+
|
19
|
+
|
20
|
+
</th><th>
|
21
|
+
|
22
|
+
Type
|
23
|
+
|
24
|
+
|
25
|
+
</th><th>
|
26
|
+
|
27
|
+
Description
|
28
|
+
|
29
|
+
|
30
|
+
</th></tr></thead>
|
31
|
+
<tbody><tr><td>
|
32
|
+
|
33
|
+
options
|
34
|
+
|
35
|
+
|
36
|
+
</td><td>
|
37
|
+
|
38
|
+
[InactivityDialogOptions](./foundation-utils.inactivitydialogoptions.md)
|
39
|
+
|
40
|
+
|
41
|
+
</td><td>
|
42
|
+
|
43
|
+
|
44
|
+
</td></tr>
|
45
|
+
</tbody></table>
|
46
|
+
|
47
|
+
**Returns:**
|
48
|
+
|
49
|
+
void
|
50
|
+
|
@@ -0,0 +1,88 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialogOptions](./foundation-utils.inactivitydialogoptions.md)
|
4
|
+
|
5
|
+
## InactivityDialogOptions interface
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
export interface InactivityDialogOptions
|
11
|
+
```
|
12
|
+
|
13
|
+
## Properties
|
14
|
+
|
15
|
+
<table><thead><tr><th>
|
16
|
+
|
17
|
+
Property
|
18
|
+
|
19
|
+
|
20
|
+
</th><th>
|
21
|
+
|
22
|
+
Modifiers
|
23
|
+
|
24
|
+
|
25
|
+
</th><th>
|
26
|
+
|
27
|
+
Type
|
28
|
+
|
29
|
+
|
30
|
+
</th><th>
|
31
|
+
|
32
|
+
Description
|
33
|
+
|
34
|
+
|
35
|
+
</th></tr></thead>
|
36
|
+
<tbody><tr><td>
|
37
|
+
|
38
|
+
[onContinue](./foundation-utils.inactivitydialogoptions.oncontinue.md)
|
39
|
+
|
40
|
+
|
41
|
+
</td><td>
|
42
|
+
|
43
|
+
|
44
|
+
</td><td>
|
45
|
+
|
46
|
+
() => void
|
47
|
+
|
48
|
+
|
49
|
+
</td><td>
|
50
|
+
|
51
|
+
|
52
|
+
</td></tr>
|
53
|
+
<tr><td>
|
54
|
+
|
55
|
+
[onLogout](./foundation-utils.inactivitydialogoptions.onlogout.md)
|
56
|
+
|
57
|
+
|
58
|
+
</td><td>
|
59
|
+
|
60
|
+
|
61
|
+
</td><td>
|
62
|
+
|
63
|
+
() => void
|
64
|
+
|
65
|
+
|
66
|
+
</td><td>
|
67
|
+
|
68
|
+
|
69
|
+
</td></tr>
|
70
|
+
<tr><td>
|
71
|
+
|
72
|
+
[remainingSeconds](./foundation-utils.inactivitydialogoptions.remainingseconds.md)
|
73
|
+
|
74
|
+
|
75
|
+
</td><td>
|
76
|
+
|
77
|
+
|
78
|
+
</td><td>
|
79
|
+
|
80
|
+
number
|
81
|
+
|
82
|
+
|
83
|
+
</td><td>
|
84
|
+
|
85
|
+
|
86
|
+
</td></tr>
|
87
|
+
</tbody></table>
|
88
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialogOptions](./foundation-utils.inactivitydialogoptions.md) > [onContinue](./foundation-utils.inactivitydialogoptions.oncontinue.md)
|
4
|
+
|
5
|
+
## InactivityDialogOptions.onContinue property
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
onContinue: () => void;
|
11
|
+
```
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialogOptions](./foundation-utils.inactivitydialogoptions.md) > [onLogout](./foundation-utils.inactivitydialogoptions.onlogout.md)
|
4
|
+
|
5
|
+
## InactivityDialogOptions.onLogout property
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
onLogout: () => void;
|
11
|
+
```
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityDialogOptions](./foundation-utils.inactivitydialogoptions.md) > [remainingSeconds](./foundation-utils.inactivitydialogoptions.remainingseconds.md)
|
4
|
+
|
5
|
+
## InactivityDialogOptions.remainingSeconds property
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
remainingSeconds: number;
|
11
|
+
```
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityEvents](./foundation-utils.inactivityevents.md) > ["inactivity-reset"](./foundation-utils.inactivityevents._inactivity-reset_.md)
|
4
|
+
|
5
|
+
## InactivityEvents."inactivity-reset" property
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
'inactivity-reset': void;
|
11
|
+
```
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityEvents](./foundation-utils.inactivityevents.md) > ["inactivity-timeout"](./foundation-utils.inactivityevents._inactivity-timeout_.md)
|
4
|
+
|
5
|
+
## InactivityEvents."inactivity-timeout" property
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
'inactivity-timeout': void;
|
11
|
+
```
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [@genesislcap/foundation-utils](./foundation-utils.md) > [InactivityEvents](./foundation-utils.inactivityevents.md) > ["inactivity-warning"](./foundation-utils.inactivityevents._inactivity-warning_.md)
|
4
|
+
|
5
|
+
## InactivityEvents."inactivity-warning" property
|
6
|
+
|
7
|
+
**Signature:**
|
8
|
+
|
9
|
+
```typescript
|
10
|
+
'inactivity-warning': {
|
11
|
+
remainingSeconds: number;
|
12
|
+
};
|
13
|
+
```
|