@operato/shell 2.0.0-beta.2 → 2.0.0-beta.5

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-beta.5](https://github.com/hatiolab/operato/compare/v2.0.0-beta.4...v2.0.0-beta.5) (2024-06-04)
7
+
8
+
9
+ ### :bug: Bug Fix
10
+
11
+ * theming design token : --border-dark-color => --border-dim-color ([eaf0866](https://github.com/hatiolab/operato/commit/eaf08667f6133cc4bcabf161bbe04305e0ff57e7))
12
+
13
+
14
+
15
+ ## [2.0.0-beta.4](https://github.com/hatiolab/operato/compare/v2.0.0-beta.3...v2.0.0-beta.4) (2024-06-04)
16
+
17
+ **Note:** Version bump only for package @operato/shell
18
+
19
+
20
+
21
+
22
+
6
23
  ## [2.0.0-beta.2](https://github.com/hatiolab/operato/compare/v2.0.0-beta.1...v2.0.0-beta.2) (2024-06-04)
7
24
 
8
25
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/shell",
3
3
  "description": "WebApplication architecturing shell following open-wc recommendations",
4
4
  "author": "heartyoh",
5
- "version": "2.0.0-beta.2",
5
+ "version": "2.0.0-beta.5",
6
6
  "main": "dist/src/index.js",
7
7
  "module": "dist/src/index.js",
8
8
  "exports": {
@@ -58,8 +58,8 @@
58
58
  "dependencies": {
59
59
  "@material/web": "^1.4.0",
60
60
  "@operato/graphql": "^2.0.0-beta.0",
61
- "@operato/popup": "^2.0.0-beta.0",
62
- "@operato/styles": "^2.0.0-beta.0",
61
+ "@operato/popup": "^2.0.0-beta.5",
62
+ "@operato/styles": "^2.0.0-beta.5",
63
63
  "@operato/utils": "^2.0.0-beta.0",
64
64
  "@webcomponents/scoped-custom-element-registry": "^0.0.9",
65
65
  "lit": "^3.1.2",
@@ -100,5 +100,5 @@
100
100
  "prettier --write"
101
101
  ]
102
102
  },
103
- "gitHead": "df3ca9940501549fe8b59f294425d50962895965"
103
+ "gitHead": "e313b5e6d8ece67e94618ee7ea7c1ef2f1036d40"
104
104
  }
@@ -26,7 +26,7 @@ body {
26
26
 
27
27
  /* common style */
28
28
  --border-radius: 4px;
29
- --border-dark-color: 1px solid rgba(0, 0, 0, 0.15);
29
+ --border-dim-color: 1px solid rgba(0, 0, 0, 0.15);
30
30
  --border-light-color: 1px solid rgba(255, 255, 255, 0.3);
31
31
 
32
32
  --box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1);
@@ -85,7 +85,7 @@ body {
85
85
  /* button style */
86
86
  --button-background-color: #fafbfc;
87
87
  --button-background-focus-color: var(--primary-color);
88
- --button-border: var(--border-dark-color);
88
+ --button-border: var(--border-dim-color);
89
89
  --button-border-radius: var(--border-radius);
90
90
  --button-margin: var(--margin-default) var(--margin-default) var(--margin-default) 0;
91
91
  --button-padding: var(--padding-default);
@@ -142,3 +142,7 @@ body {
142
142
  --subtitle-margin: 0;
143
143
  }
144
144
  }
145
+
146
+ body.dark {
147
+ --border-dim-color: 1px solid rgba(255, 255, 255, 0.15);
148
+ }