sprintify-ui 0.6.35 → 0.6.36

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,4 +1,4 @@
1
- import { TimelineItem } from '../types/TimelineItem';
1
+ import { TimelineItem } from '../types';
2
2
  import { PropType } from 'vue';
3
3
  declare const _default: import("vue").DefineComponent<{
4
4
  items: {
@@ -1,4 +1,4 @@
1
- import { TimelineItem } from '../types/TimelineItem';
1
+ import { TimelineItem } from '../types';
2
2
  import { PropType } from 'vue';
3
3
  declare const _default: import("vue").DefineComponent<{
4
4
  item: {
@@ -1,9 +0,0 @@
1
- export interface TimelineItem {
2
- title: string;
3
- icon: string;
4
- description?: null | string;
5
- date?: string | null;
6
- color?: string | null;
7
- onEdit?: () => void | Promise<void>;
8
- onDelete?: () => void | Promise<void>;
9
- }
@@ -209,3 +209,12 @@ export interface BaseCropperConfig {
209
209
  presetOptions?: Record<string, any>;
210
210
  saveOptions?: ResultOptions;
211
211
  }
212
+ export interface TimelineItem {
213
+ title: string;
214
+ icon: string;
215
+ description?: null | string;
216
+ date?: string | null;
217
+ color?: string | null;
218
+ onEdit?: () => void | Promise<void>;
219
+ onDelete?: () => void | Promise<void>;
220
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.6.35",
3
+ "version": "0.6.36",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -25,7 +25,7 @@
25
25
  </template>
26
26
 
27
27
  <script lang="ts" setup>
28
- import { TimelineItem } from '../types/TimelineItem';
28
+ import { TimelineItem } from '../types';
29
29
  import { PropType } from 'vue';
30
30
  import BaseTimelineItem from './BaseTimelineItem.vue';
31
31
 
@@ -60,7 +60,7 @@
60
60
  </template>
61
61
 
62
62
  <script lang="ts" setup>
63
- import { TimelineItem } from '../types/TimelineItem';
63
+ import { TimelineItem } from '../types';
64
64
  import { PropType } from 'vue';
65
65
  import { Icon as BaseIcon } from '@iconify/vue';
66
66
  import { getColorConfig } from '@/utils/colors';
@@ -1,9 +0,0 @@
1
- export interface TimelineItem {
2
- title: string;
3
- icon: string;
4
- description?: null | string;
5
- date?: string | null;
6
- color?: string | null;
7
- onEdit?: () => void | Promise<void>;
8
- onDelete?: () => void | Promise<void>;
9
- }
@@ -255,4 +255,14 @@ export interface BaseCropperConfig {
255
255
  preset?: CropperPreset;
256
256
  presetOptions?: Record<string, any>;
257
257
  saveOptions?: ResultOptions;
258
- }
258
+ }
259
+
260
+ export interface TimelineItem {
261
+ title: string;
262
+ icon: string;
263
+ description?: null | string;
264
+ date?: string | null;
265
+ color?: string | null;
266
+ onEdit?: () => void | Promise<void>;
267
+ onDelete?: () => void | Promise<void>;
268
+ }