@oicl/openbridge-webcomponents-svelte 2.0.0-next.30 → 2.0.0-next.32
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.
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
|
|
15
15
|
When `hasDialog` is false, the card is a static container. When true, clicking the card opens a modal dialog overlay, displaying content from the `dialog-title` and `dialog-content` slots. */
|
|
16
16
|
hasDialog?: boolean;
|
|
17
|
-
/** Total time in
|
|
17
|
+
/** Total time in seconds before the dialog auto-closes. Use `0` to disable auto-close.
|
|
18
18
|
|
|
19
|
-
When
|
|
19
|
+
When greater than zero, the dialog closes after this duration unless reset by user activity. The countdown indicator appears for the last `dialogVisibleTimerSeconds` seconds. */
|
|
20
20
|
dialogTimeOutSeconds?: number;
|
|
21
|
-
/** Duration in
|
|
21
|
+
/** Duration in seconds for which the countdown indicator is shown before auto-dismiss.
|
|
22
22
|
|
|
23
|
-
The countdown indicator is visible for the last `dialogVisibleTimerSeconds`
|
|
23
|
+
The countdown indicator is visible for the last `dialogVisibleTimerSeconds` seconds of the dialog's lifetime when auto-close is enabled. User activity resets the timer. */
|
|
24
24
|
dialogVisibleTimerSeconds?: number
|
|
25
25
|
}
|
|
26
26
|
export interface Events {
|
|
@@ -8,13 +8,13 @@ export interface Props {
|
|
|
8
8
|
|
|
9
9
|
When `hasDialog` is false, the card is a static container. When true, clicking the card opens a modal dialog overlay, displaying content from the `dialog-title` and `dialog-content` slots. */
|
|
10
10
|
hasDialog?: boolean;
|
|
11
|
-
/** Total time in
|
|
11
|
+
/** Total time in seconds before the dialog auto-closes. Use `0` to disable auto-close.
|
|
12
12
|
|
|
13
|
-
When
|
|
13
|
+
When greater than zero, the dialog closes after this duration unless reset by user activity. The countdown indicator appears for the last `dialogVisibleTimerSeconds` seconds. */
|
|
14
14
|
dialogTimeOutSeconds?: number;
|
|
15
|
-
/** Duration in
|
|
15
|
+
/** Duration in seconds for which the countdown indicator is shown before auto-dismiss.
|
|
16
16
|
|
|
17
|
-
The countdown indicator is visible for the last `dialogVisibleTimerSeconds`
|
|
17
|
+
The countdown indicator is visible for the last `dialogVisibleTimerSeconds` seconds of the dialog's lifetime when auto-close is enabled. User activity resets the timer. */
|
|
18
18
|
dialogVisibleTimerSeconds?: number;
|
|
19
19
|
}
|
|
20
20
|
export interface Events {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oicl/openbridge-webcomponents-svelte",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.32",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev",
|
|
6
6
|
"build": "vite build && npm run prepack",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@oicl/openbridge-webcomponents": "^2.0.0-next.
|
|
34
|
+
"@oicl/openbridge-webcomponents": "^2.0.0-next.31"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"svelte": "^5.0.0"
|