@luigi-project/client 2.7.2-dev.202311120027 → 2.7.2-dev.202311141634
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/luigi-client.d.ts +4 -2
- package/package.json +1 -1
package/luigi-client.d.ts
CHANGED
|
@@ -429,8 +429,10 @@ export declare interface LinkManager {
|
|
|
429
429
|
* In addition, you can specify if a new history entry will be created with the updated URL.
|
|
430
430
|
* @memberof linkManager
|
|
431
431
|
* @param {Object} updatedModalSettings possibility to update the active modal.
|
|
432
|
-
* @param {
|
|
433
|
-
* @param {
|
|
432
|
+
* @param {string} updatedModalSettings.title update the `title` of the active modal.
|
|
433
|
+
* @param {string} updatedModalSettings.size update the `size` of the active modal.
|
|
434
|
+
* @param {string} updatedModalSettings.width lets you specify a precise width for the modal. Allowed units are 'px', '%', 'rem', 'em', 'vh' and 'vw'.
|
|
435
|
+
* @param {string} updatedModalSettings.height lets you specify a precise height for the modal. Allowed units are 'px', '%', 'rem', 'em', 'vh' and 'vw'.
|
|
434
436
|
* @param {boolean} addHistoryEntry adds an entry in the history, by default it's `false`.
|
|
435
437
|
* @example
|
|
436
438
|
* LuigiClient.linkManager().updateModalSettings({title:'LuigiModal', size:'l'});
|
package/package.json
CHANGED