@luigi-project/container 1.2.0-rc3 → 1.2.0-rc4
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/LuigiCompoundContainer.svelte.d.ts +11 -5
- package/LuigiContainer.svelte.d.ts +29 -5
- package/bundle.js +1 -1
- package/bundle.js.map +1 -1
- package/constants/events.d.ts +4 -4
- package/package.json +1 -1
package/constants/events.d.ts
CHANGED
|
@@ -99,10 +99,10 @@ export namespace Events {
|
|
|
99
99
|
*/
|
|
100
100
|
export const SET_DIRTY_STATUS_REQUEST = 'set-dirty-status-request';
|
|
101
101
|
|
|
102
|
-
|
|
102
|
+
/**
|
|
103
103
|
* A message emitted from the micro frontend when a request to set the view group data
|
|
104
104
|
*/
|
|
105
|
-
|
|
105
|
+
export const SET_VIEW_GROUP_DATA_REQUEST = 'set-viewgroup-data-request';
|
|
106
106
|
|
|
107
107
|
/**
|
|
108
108
|
* A message emitted from the micro frontend when a request to set the document title
|
|
@@ -110,12 +110,12 @@ export namespace Events {
|
|
|
110
110
|
export const SET_DOCUMENT_TITLE_REQUEST = 'set-document-title-request';
|
|
111
111
|
|
|
112
112
|
/**
|
|
113
|
-
* A message emitted from the micro frontend when a request to open user settings
|
|
113
|
+
* A message emitted from the micro frontend when a request to open user settings
|
|
114
114
|
*/
|
|
115
115
|
export const OPEN_USER_SETTINGS_REQUEST = 'open-user-settings-request';
|
|
116
116
|
|
|
117
117
|
/**
|
|
118
|
-
* A message emitted from the micro frontend when a request to close user settings
|
|
118
|
+
* A message emitted from the micro frontend when a request to close user settings
|
|
119
119
|
*/
|
|
120
120
|
export const CLOSE_USER_SETTINGS_REQUEST = 'close-user-settings-request';
|
|
121
121
|
|
package/package.json
CHANGED