sprintify-ui 0.7.0 → 0.7.1
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { RouteLocationRaw } from 'vue-router';
|
|
2
2
|
import { UploadedFile } from './UploadedFile';
|
|
3
|
-
import { Notification
|
|
3
|
+
import { Notification } from './Notification';
|
|
4
4
|
import { CropType, ResultOptions } from 'croppie';
|
|
5
5
|
import { Media } from './Media';
|
|
6
6
|
export type Locales = {
|
|
@@ -154,10 +154,11 @@ export interface Snackbar {
|
|
|
154
154
|
*/
|
|
155
155
|
export interface NotificationsConfig {
|
|
156
156
|
count: number;
|
|
157
|
-
items:
|
|
157
|
+
items: Notification[];
|
|
158
158
|
footerLabel?: string;
|
|
159
159
|
footerTo?: RouteLocationRaw;
|
|
160
160
|
}
|
|
161
|
+
export type { Notification };
|
|
161
162
|
export interface SelectConfigurationOption {
|
|
162
163
|
value: OptionValue;
|
|
163
164
|
label: string;
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import { RouteLocationRaw } from 'vue-router';
|
|
4
4
|
import { UploadedFile } from './UploadedFile';
|
|
5
|
-
import { Notification
|
|
5
|
+
import { Notification } from './Notification';
|
|
6
6
|
import { CropType, ResultOptions } from 'croppie';
|
|
7
7
|
import { Media } from './Media';
|
|
8
8
|
|
|
@@ -194,11 +194,13 @@ export interface Snackbar {
|
|
|
194
194
|
|
|
195
195
|
export interface NotificationsConfig {
|
|
196
196
|
count: number;
|
|
197
|
-
items:
|
|
197
|
+
items: Notification[];
|
|
198
198
|
footerLabel?: string;
|
|
199
199
|
footerTo?: RouteLocationRaw;
|
|
200
200
|
}
|
|
201
201
|
|
|
202
|
+
export type { Notification };
|
|
203
|
+
|
|
202
204
|
export interface SelectConfigurationOption {
|
|
203
205
|
value: OptionValue;
|
|
204
206
|
label: string;
|