mf-examples 1.2.17 → 1.2.19

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,14 +1,14 @@
1
1
  {
2
2
  "name": "mf-examples",
3
- "version": "1.2.17",
3
+ "version": "1.2.19",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "description": "examples entry page",
8
8
  "keywords": [
9
+ "example",
9
10
  "vite",
10
- "web",
11
- "example"
11
+ "web"
12
12
  ],
13
13
  "contributors": [
14
14
  {
@@ -43,7 +43,7 @@
43
43
  "semantic-release": "^19.0.5",
44
44
  "stylelint": "^14.16.0",
45
45
  "stylelint-config-standard": "^29.0.0",
46
- "vite": "^3.2.4"
46
+ "vite": "^3.2.5"
47
47
  },
48
48
  "repository": {
49
49
  "type": "git",
package/src/index.html CHANGED
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="utf8" />
5
5
  {{html.base.href}}
6
- <meta name="description" content="MF examples.">
6
+ <meta name="description" content="MF examples." />
7
7
  <meta name="viewport" content="width=device-width, initial-scale=1" />
8
8
  <meta name="application-name" content="{{name}}" />
9
9
  <meta name="apple-mobile-web-app-title" content="{{name}}" />
@@ -27,7 +27,7 @@
27
27
  <main>
28
28
  <ul>
29
29
  <li>
30
- <a href="mf-styling/index.html"><b>mf-styling</b></a>
30
+ <a href="mf-styling/index.html"><b>mf-styling</b> CSS styling for mf apps</a>
31
31
  </li>
32
32
  <li>
33
33
  <a href="svelte-common/index.html"><b>svelte-common</b></a>
@@ -46,7 +46,7 @@
46
46
  </li>
47
47
  <li>
48
48
  <a href="svelte-session-manager/index.html"
49
- ><b>svelte-session-manager</b></a
49
+ ><b>svelte-session-manager</b> Session store for svelte (currently only for JWT)</a
50
50
  >
51
51
  </li>
52
52
  <li>
package/src/main.css CHANGED
@@ -1,5 +1,5 @@
1
- @import "mf-styling/src/color-primary-fuchsia.css";
2
- @import "mf-styling/src/color.css";
3
- @import "mf-styling/src/global.css";
4
- @import "mf-styling/src/nav.css";
5
- @import "mf-styling/src/button.css";
1
+ @import url("mf-styling/src/color-primary-fuchsia.css");
2
+ @import url("mf-styling/src/color.css");
3
+ @import url("mf-styling/src/global.css");
4
+ @import url("mf-styling/src/nav.css");
5
+ @import url("mf-styling/src/button.css");