sprintify-ui 0.0.23 → 0.0.24
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/types/src/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/index.ts +3 -0
|
@@ -4,6 +4,7 @@ import { I18n } from 'vue-i18n';
|
|
|
4
4
|
import { useDialogsStore } from './stores/dialogs';
|
|
5
5
|
import { useNotificationsStore } from './stores/notifications';
|
|
6
6
|
import { useSystemAlertStore } from './stores/systemAlerts';
|
|
7
|
+
import { ActionItem } from './types/types';
|
|
7
8
|
declare const messages: {
|
|
8
9
|
en: {
|
|
9
10
|
sui: {
|
|
@@ -279,3 +280,4 @@ export { config };
|
|
|
279
280
|
export { useDialogsStore };
|
|
280
281
|
export { useNotificationsStore };
|
|
281
282
|
export { useSystemAlertStore };
|
|
283
|
+
export { type ActionItem };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -8,6 +8,7 @@ import fr from '@/lang/fr.json';
|
|
|
8
8
|
import { useDialogsStore } from './stores/dialogs';
|
|
9
9
|
import { useNotificationsStore } from './stores/notifications';
|
|
10
10
|
import { useSystemAlertStore } from './stores/systemAlerts';
|
|
11
|
+
import { ActionItem } from './types/types';
|
|
11
12
|
|
|
12
13
|
const messages = { en, fr };
|
|
13
14
|
|
|
@@ -81,3 +82,5 @@ export { config };
|
|
|
81
82
|
export { useDialogsStore };
|
|
82
83
|
export { useNotificationsStore };
|
|
83
84
|
export { useSystemAlertStore };
|
|
85
|
+
|
|
86
|
+
export { type ActionItem };
|