@ouestfrance/sipa-bms-ui 8.5.2 → 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/dist/mockServiceWorker.js +1 -1
- package/dist/sipa-bms-ui.css +11 -5
- package/dist/sipa-bms-ui.es.js +17 -10
- package/dist/sipa-bms-ui.es.js.map +1 -1
- package/dist/sipa-bms-ui.umd.js +17 -10
- package/dist/sipa-bms-ui.umd.js.map +1 -1
- package/package.json +12 -12
- package/src/plugins/confirm/index.ts +4 -2
- package/src/plugins/feature-flipper/index.ts +1 -0
- package/src/plugins/field/index.ts +1 -0
- package/src/plugins/notifications/index.ts +1 -0
- package/src/plugins/router-history/index.ts +4 -2
package/dist/sipa-bms-ui.umd.js
CHANGED
|
@@ -38521,8 +38521,8 @@
|
|
|
38521
38521
|
default: vue.withCtx(() => [
|
|
38522
38522
|
vue.createVNode(vue.unref(Trash2))
|
|
38523
38523
|
]),
|
|
38524
|
-
_:
|
|
38525
|
-
},
|
|
38524
|
+
_: 1
|
|
38525
|
+
}, 8, ["onClick"])
|
|
38526
38526
|
]);
|
|
38527
38527
|
}), 128)) : vue.createCommentVNode("", true)
|
|
38528
38528
|
]))
|
|
@@ -67781,8 +67781,8 @@
|
|
|
67781
67781
|
default: vue.withCtx(() => [
|
|
67782
67782
|
vue.createVNode(vue.unref(CircleX))
|
|
67783
67783
|
]),
|
|
67784
|
-
_:
|
|
67785
|
-
},
|
|
67784
|
+
_: 1
|
|
67785
|
+
}, 8, ["mode", "onClick"])
|
|
67786
67786
|
], 2);
|
|
67787
67787
|
}), 128))
|
|
67788
67788
|
], 2)) : vue.createCommentVNode("", true)
|
|
@@ -90375,8 +90375,8 @@
|
|
|
90375
90375
|
default: vue.withCtx(() => [
|
|
90376
90376
|
vue.createVNode(vue.unref(Trash))
|
|
90377
90377
|
]),
|
|
90378
|
-
_:
|
|
90379
|
-
},
|
|
90378
|
+
_: 1
|
|
90379
|
+
}, 8, ["mode", "onClick"])
|
|
90380
90380
|
], 40, _hoisted_1$g),
|
|
90381
90381
|
vue.createElementVNode("div", {
|
|
90382
90382
|
class: "separator",
|
|
@@ -101506,6 +101506,7 @@
|
|
|
101506
101506
|
}
|
|
101507
101507
|
});
|
|
101508
101508
|
app.component("bms-notifications", NotificationWidget);
|
|
101509
|
+
app.component("BmsNotifications", NotificationWidget);
|
|
101509
101510
|
}
|
|
101510
101511
|
};
|
|
101511
101512
|
function useNotifications() {
|
|
@@ -101949,6 +101950,7 @@
|
|
|
101949
101950
|
install: (app, initialFeatures) => {
|
|
101950
101951
|
const { initFeatures } = useFeatureFlipper();
|
|
101951
101952
|
initFeatures(initialFeatures);
|
|
101953
|
+
app.component("BmsFeatureFlipper", _sfc_main$1);
|
|
101952
101954
|
app.component("bms-feature-flipper", _sfc_main$1);
|
|
101953
101955
|
}
|
|
101954
101956
|
};
|
|
@@ -102113,6 +102115,7 @@
|
|
|
102113
102115
|
}
|
|
102114
102116
|
});
|
|
102115
102117
|
app.component("field", _sfc_main);
|
|
102118
|
+
app.component("Field", _sfc_main);
|
|
102116
102119
|
}
|
|
102117
102120
|
};
|
|
102118
102121
|
|
|
@@ -104129,11 +104132,13 @@
|
|
|
104129
104132
|
});
|
|
104130
104133
|
}
|
|
104131
104134
|
);
|
|
104132
|
-
|
|
104135
|
+
const confirm = {
|
|
104133
104136
|
render() {
|
|
104134
104137
|
return vue.h("div", { id: "confirm" });
|
|
104135
104138
|
}
|
|
104136
|
-
}
|
|
104139
|
+
};
|
|
104140
|
+
app.component("BmsConfirm", confirm);
|
|
104141
|
+
app.component("bms-confirm", confirm);
|
|
104137
104142
|
}
|
|
104138
104143
|
};
|
|
104139
104144
|
function useConfirm() {
|
|
@@ -104165,7 +104170,7 @@
|
|
|
104165
104170
|
|
|
104166
104171
|
const routerHistoryPlugin = {
|
|
104167
104172
|
install(app) {
|
|
104168
|
-
|
|
104173
|
+
const history = {
|
|
104169
104174
|
setup() {
|
|
104170
104175
|
const { addHistoryRoute } = useRouterHistory();
|
|
104171
104176
|
const currentRoute = vueRouter.useRoute();
|
|
@@ -104176,7 +104181,9 @@
|
|
|
104176
104181
|
render() {
|
|
104177
104182
|
return "";
|
|
104178
104183
|
}
|
|
104179
|
-
}
|
|
104184
|
+
};
|
|
104185
|
+
app.component("BmsRouterHistory", history);
|
|
104186
|
+
app.component("bms-router-history", history);
|
|
104180
104187
|
}
|
|
104181
104188
|
};
|
|
104182
104189
|
|