@operato/input 2.0.0-beta.3 → 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,24 @@
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
+
18
+ ### :bug: Bug Fix
19
+
20
+ * theming styles ([15fa201](https://github.com/hatiolab/operato/commit/15fa20198d7adc6b57f16e408f8dee94c40113f5))
21
+
22
+
23
+
6
24
  ## [2.0.0-beta.3](https://github.com/hatiolab/operato/compare/v2.0.0-beta.2...v2.0.0-beta.3) (2024-06-04)
7
25
 
8
26
  **Note:** Version bump only for package @operato/input
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@operato/input",
3
3
  "description": "Webcomponents for input following open-wc recommendations",
4
4
  "author": "heartyoh@hatiolab.com",
5
- "version": "2.0.0-beta.3",
5
+ "version": "2.0.0-beta.5",
6
6
  "main": "dist/src/index.js",
7
7
  "module": "dist/src/index.js",
8
8
  "license": "MIT",
@@ -201,8 +201,8 @@
201
201
  "@material/web": "^1.4.0",
202
202
  "@operato/color-picker": "^2.0.0-beta.0",
203
203
  "@operato/i18n": "^2.0.0-beta.3",
204
- "@operato/popup": "^2.0.0-beta.0",
205
- "@operato/styles": "^2.0.0-beta.0",
204
+ "@operato/popup": "^2.0.0-beta.5",
205
+ "@operato/styles": "^2.0.0-beta.5",
206
206
  "@operato/utils": "^2.0.0-beta.0",
207
207
  "@polymer/paper-dropdown-menu": "^3.2.0",
208
208
  "@polymer/paper-item": "^3.0.1",
@@ -247,5 +247,5 @@
247
247
  "prettier --write"
248
248
  ]
249
249
  },
250
- "gitHead": "f784d266745412a10887dd5163da8c8d7a4fe423"
250
+ "gitHead": "e313b5e6d8ece67e94618ee7ea7c1ef2f1036d40"
251
251
  }
@@ -167,3 +167,7 @@ body {
167
167
  --data-card-create-form-padding: 7px;
168
168
  }
169
169
  }
170
+
171
+ body.dark {
172
+ --grid-container-border-color: 1px solid rgba(255, 255, 255, 0.09);
173
+ }