sprintify-ui 0.0.21 → 0.0.23

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.
@@ -11621,7 +11621,7 @@ Cette action est irr\xE9versible.`,
11621
11621
  up_to_x: "Jusqu'\xE0 {x}",
11622
11622
  upload_failed: "Le t\xE9l\xE9chargement a \xE9chou\xE9",
11623
11623
  whoops: "Oups",
11624
- x_ago: "il y a {dur\xE9e}",
11624
+ x_ago: "il y a {duration}",
11625
11625
  x_rows_selected: `1 item s\xE9lectionn\xE9 |
11626
11626
  {count} items s\xE9lectionn\xE9s`,
11627
11627
  year: "Ann\xE9e",
@@ -54,7 +54,6 @@ export interface MenuItemInterface {
54
54
  }
55
55
  export interface ActionItem {
56
56
  label: string;
57
- type: 'RouterLink' | 'a' | 'button';
58
57
  href?: string;
59
58
  to?: RouteLocationRaw;
60
59
  action?: () => Promise<void> | void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -22,7 +22,6 @@ export default {
22
22
  label: 'Products',
23
23
  to: '/',
24
24
  count: 234,
25
- type: 'RouterLink',
26
25
  },
27
26
  {
28
27
  label: 'Users',
@@ -37,18 +37,15 @@ const Template = (args) => ({
37
37
  {
38
38
  label: 'Home',
39
39
  to: '/',
40
- type: 'RouterLink',
41
40
  },
42
41
  {
43
42
  label: 'Products',
44
43
  to: '/setup',
45
44
  count: 234,
46
- type: 'RouterLink',
47
45
  },
48
46
  {
49
47
  label: 'Settings',
50
48
  to: '/settings',
51
- type: 'RouterLink',
52
49
  },
53
50
  ];
54
51
 
package/src/lang/fr.json CHANGED
@@ -51,7 +51,7 @@
51
51
  "up_to_x": "Jusqu'à {x}",
52
52
  "upload_failed": "Le téléchargement a échoué",
53
53
  "whoops": "Oups",
54
- "x_ago": "il y a {durée}",
54
+ "x_ago": "il y a {duration}",
55
55
  "x_rows_selected": "1 item sélectionné | \n{count} items sélectionnés",
56
56
  "year": "Année",
57
57
  "yes_delete": "Oui, supprimer",
@@ -71,7 +71,6 @@ export interface MenuItemInterface {
71
71
 
72
72
  export interface ActionItem {
73
73
  label: string;
74
- type: 'RouterLink' | 'a' | 'button';
75
74
  href?: string;
76
75
  to?: RouteLocationRaw;
77
76
  action?: () => Promise<void> | void;