entitlement-provider-frontend 1.14.63 → 1.15.0
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 +2 -2
- package/src/main.css +1 -0
- package/src/main.mjs +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "entitlement-provider-frontend",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"semantic-release": "^23.1.1",
|
|
46
46
|
"stylelint": "^16.5.0",
|
|
47
47
|
"stylelint-config-standard": "^36.0.0",
|
|
48
|
-
"svelte": "^
|
|
48
|
+
"svelte": "^5.0.0-next.136",
|
|
49
49
|
"vite": "^5.2.11",
|
|
50
50
|
"vite-plugin-compression2": "^1.1.0"
|
|
51
51
|
},
|
package/src/main.css
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
@import url("mf-styling/src/button.css");
|
|
11
11
|
@import url("mf-styling/src/form.css");
|
|
12
12
|
@import url("mf-styling/src/card.css");
|
|
13
|
+
@import url("mf-styling/src/pagination.css");
|
|
13
14
|
|
|
14
15
|
@import url("@kronos-integration/svelte-components/css");
|
|
15
16
|
@import url("svelte-common/css");
|
package/src/main.mjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import App from "./App.svelte";
|
|
2
1
|
import {} from "./service-worker/registration.mjs";
|
|
2
|
+
import { mount } from 'svelte';
|
|
3
|
+
import App from "./App.svelte";
|
|
4
|
+
|
|
5
|
+
const app = mount(App, { target: document.body});
|
|
3
6
|
|
|
4
|
-
export default
|
|
5
|
-
target: document.body
|
|
6
|
-
});
|
|
7
|
+
export default app;
|