@operato/resource 2.0.0-alpha.63 → 2.0.0-alpha.69

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/CHANGELOG.md CHANGED
@@ -3,6 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.0-alpha.69](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.68...v2.0.0-alpha.69) (2024-04-13)
7
+
8
+ **Note:** Version bump only for package @operato/resource
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.0.0-alpha.68](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.67...v2.0.0-alpha.68) (2024-04-13)
15
+
16
+
17
+ ### :bug: Bug Fix
18
+
19
+ * mwc=>md for context ([2bc13f2](https://github.com/hatiolab/operato/commit/2bc13f285f257782f73e5d7b5d1ddd197df85393))
20
+
21
+
22
+
6
23
  ## [2.0.0-alpha.63](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.62...v2.0.0-alpha.63) (2024-04-12)
7
24
 
8
25
  **Note:** Version bump only for package @operato/resource
package/demo/index.html CHANGED
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
  <html lang="en-GB">
3
3
  <head>
4
4
  <meta charset="utf-8" />
@@ -16,14 +16,25 @@
16
16
  }
17
17
  </style>
18
18
  <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet" />
19
- <link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet" />
19
+ <link
20
+ href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL@20..48,100..700,0..1"
21
+ rel="stylesheet"
22
+ />
23
+ <link
24
+ href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL@20..48,100..700,0..1"
25
+ rel="stylesheet"
26
+ />
27
+ <link
28
+ href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL@20..48,100..700,0..1"
29
+ rel="stylesheet"
30
+ />
20
31
  </head>
21
32
  <body>
22
33
  <div id="demo"></div>
23
34
 
24
35
  <script type="module">
25
36
  import { html, render } from 'lit'
26
- import '@material/mwc-icon'
37
+ import '@material/web/icon/icon.js'
27
38
 
28
39
  const parent = document.querySelector('#demo')
29
40
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/resource",
3
3
  "description": "WebApplication resource supporting components following open-wc recommendations",
4
4
  "author": "heartyoh",
5
- "version": "2.0.0-alpha.63",
5
+ "version": "2.0.0-alpha.69",
6
6
  "main": "dist/src/index.js",
7
7
  "module": "dist/src/index.js",
8
8
  "exports": {
@@ -48,14 +48,14 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@material/mwc-button": "^0.27.0",
51
- "@material/mwc-icon": "^0.27.0",
52
51
  "@material/mwc-icon-button": "^0.27.0",
52
+ "@material/web": "^1.4.0",
53
53
  "@operato/graphql": "^2.0.0-alpha.57",
54
54
  "@operato/i18n": "^2.0.0-alpha.59",
55
- "@operato/layout": "^2.0.0-alpha.63",
56
- "@operato/shell": "^2.0.0-alpha.63",
57
- "@operato/styles": "^2.0.0-alpha.62",
58
- "@operato/utils": "^2.0.0-alpha.57",
55
+ "@operato/layout": "^2.0.0-alpha.69",
56
+ "@operato/shell": "^2.0.0-alpha.68",
57
+ "@operato/styles": "^2.0.0-alpha.68",
58
+ "@operato/utils": "^2.0.0-alpha.68",
59
59
  "lit": "^3.1.2"
60
60
  },
61
61
  "devDependencies": {
@@ -90,5 +90,5 @@
90
90
  "prettier --write"
91
91
  ]
92
92
  },
93
- "gitHead": "a29b063ce8513cccc9d567d03d888d49dfa3a71a"
93
+ "gitHead": "a77863b1e2663033bd55929376827bdbf8db2cce"
94
94
  }