@ouestfrance/sipa-bms-ui 8.5.1 → 8.5.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouestfrance/sipa-bms-ui",
3
- "version": "8.5.1",
3
+ "version": "8.5.3",
4
4
  "author": "Ouest-France BMS",
5
5
  "license": "ISC",
6
6
  "scripts": {
@@ -36,14 +36,14 @@
36
36
  "@commitlint/config-conventional": "19.8.1",
37
37
  "@formkit/vue": "1.6.9",
38
38
  "@mdx-js/react": "3.1.1",
39
- "@storybook/addon-docs": "9.1.3",
40
- "@storybook/addon-links": "9.1.3",
41
- "@storybook/vue3-vite": "9.1.3",
39
+ "@storybook/addon-docs": "9.1.4",
40
+ "@storybook/addon-links": "9.1.4",
41
+ "@storybook/vue3-vite": "9.1.4",
42
42
  "@types/lodash": "4.17.20",
43
43
  "@types/uuid": "10.0.0",
44
44
  "@vitejs/plugin-vue": "6.0.1",
45
45
  "@vue/test-utils": "2.4.6",
46
- "@vueuse/core": "13.8.0",
46
+ "@vueuse/core": "13.9.0",
47
47
  "@vueuse/motion": "^3.0.0",
48
48
  "axios": "1.11.0",
49
49
  "blob-util": "^2.0.2",
@@ -52,33 +52,33 @@
52
52
  "cors": "^2.8.5",
53
53
  "cross-env": "^10.0.0",
54
54
  "cy2": "^4.0.0",
55
- "cypress": "15.0.0",
55
+ "cypress": "15.1.0",
56
56
  "express": "^5.0.0",
57
57
  "husky": "9.1.7",
58
58
  "jsdom": "26.1.0",
59
59
  "keycloak-js": "26.1.2",
60
- "lint-staged": "16.1.5",
60
+ "lint-staged": "16.1.6",
61
61
  "lodash": "4.17.21",
62
62
  "lucide-vue-next": "0.542.0",
63
63
  "msw-storybook-addon": "^2.0.3",
64
64
  "normalize.css": "8.0.1",
65
65
  "path": "0.12.7",
66
66
  "prettier": "3.6.2",
67
- "sass": "1.91.0",
67
+ "sass": "1.92.0",
68
68
  "semantic-release": "24.2.7",
69
69
  "start-server-and-test": "2.0.13",
70
- "storybook": "9.1.3",
71
- "storybook-addon-pseudo-states": "9.1.3",
70
+ "storybook": "9.1.4",
71
+ "storybook-addon-pseudo-states": "9.1.4",
72
72
  "storybook-vue3-router": "^6.0.2",
73
73
  "typescript": "5.2.2",
74
74
  "uuid": "11.1.0",
75
- "vite": "7.1.3",
75
+ "vite": "7.1.4",
76
76
  "vite-plugin-dts": "^4.1.0",
77
77
  "vite-plugin-mkcert": "1.17.8",
78
78
  "vite-plugin-pages": "0.33.1",
79
79
  "vite-svg-loader": "5.1.0",
80
80
  "vitest": "3.2.4",
81
- "vue": "3.5.20",
81
+ "vue": "3.5.21",
82
82
  "vue-codemirror": "6.1.1",
83
83
  "vue-loader": "17.4.2",
84
84
  "vue-router": "4.5.1",
@@ -213,7 +213,6 @@ watch(
213
213
  &__drop-area {
214
214
  display: block;
215
215
  padding: calc(4 * var(--field-padding)) var(--field-padding);
216
- // margin: var(--field-margin);
217
216
  text-align: center;
218
217
  border-radius: var(--bms-border-radius);
219
218
  border: var(--drop-border);
@@ -254,7 +253,6 @@ watch(
254
253
  display: flex;
255
254
  width: 100%;
256
255
  gap: 1em;
257
- margin: 1em 0;
258
256
  }
259
257
 
260
258
  &__file {
@@ -88,11 +88,13 @@ export const confirmPlugin = {
88
88
  });
89
89
  },
90
90
  );
91
- app.component('bms-confirm', {
91
+ const confirm = {
92
92
  render() {
93
93
  return h('div', { id: 'confirm' });
94
94
  },
95
- });
95
+ };
96
+ app.component('BmsConfirm', confirm);
97
+ app.component('bms-confirm', confirm);
96
98
  },
97
99
  };
98
100
 
@@ -7,6 +7,7 @@ export const featureFlipperPlugin: Plugin = {
7
7
  install: (app: App, initialFeatures: FeatureFlipperFeatures) => {
8
8
  const { initFeatures } = useFeatureFlipper();
9
9
  initFeatures(initialFeatures);
10
+ app.component('BmsFeatureFlipper', FeatureFlipper);
10
11
  app.component('bms-feature-flipper', FeatureFlipper);
11
12
  },
12
13
  };
@@ -27,5 +27,6 @@ export const field: Plugin = {
27
27
  });
28
28
 
29
29
  app.component('field', FieldComponent);
30
+ app.component('Field', FieldComponent);
30
31
  },
31
32
  };
@@ -66,6 +66,7 @@ export const notifications = {
66
66
  });
67
67
 
68
68
  app.component('bms-notifications', NotificationWidget);
69
+ app.component('BmsNotifications', NotificationWidget);
69
70
  },
70
71
  };
71
72
 
@@ -5,7 +5,7 @@ import { useRoute } from 'vue-router';
5
5
 
6
6
  export const routerHistoryPlugin = {
7
7
  install(app: App) {
8
- app.component('bms-router-history', {
8
+ const history = {
9
9
  setup() {
10
10
  const { addHistoryRoute } = useRouterHistory();
11
11
  const currentRoute = useRoute();
@@ -16,7 +16,9 @@ export const routerHistoryPlugin = {
16
16
  render() {
17
17
  return '';
18
18
  },
19
- });
19
+ };
20
+ app.component('BmsRouterHistory', history);
21
+ app.component('bms-router-history', history);
20
22
  },
21
23
  };
22
24