@things-factory/operato-tools 7.0.1-alpha.9 → 7.0.1-alpha.90
Sign up to get free protection for your applications and to get access to all the features.
- package/_index.html +5 -2
- package/client/pages/generator/button-config-tab-mixin.js +352 -283
- package/client/pages/generator/meta-generator-page.js +13 -8
- package/client/pages/main.js +1 -1
- package/client/themes/app-theme.css +19 -3
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/translations/en.json +69 -69
- package/translations/ja.json +92 -0
- package/translations/ko.json +69 -69
- package/translations/ms.json +91 -91
- package/translations/zh.json +90 -90
- package/views/auth-page.html +3 -1
- package/views/public/home.html +4 -2
package/_index.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<!
|
1
|
+
<!doctype html>
|
2
2
|
<html lang="en">
|
3
3
|
<head>
|
4
4
|
<meta charset="utf-8" />
|
@@ -51,6 +51,9 @@
|
|
51
51
|
<!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
|
52
52
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
|
53
53
|
<link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
|
54
|
+
<link href="/node_modules/material-symbols/index.css" rel="stylesheet" />
|
55
|
+
<link href="/node_modules/@fontsource/roboto/index.css" rel="stylesheet" />
|
56
|
+
<link rel="stylesheet" href="/theme.css" />
|
54
57
|
|
55
58
|
<!-- Add any global styles for body, document, etc. -->
|
56
59
|
<style>
|
@@ -75,7 +78,7 @@
|
|
75
78
|
</script>
|
76
79
|
</head>
|
77
80
|
|
78
|
-
<body>
|
81
|
+
<body class="light">
|
79
82
|
<things-app></things-app>
|
80
83
|
<noscript> Please enable JavaScript to view this website. </noscript>
|
81
84
|
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
|