@operato/data-tree 2.0.0-alpha.92 → 2.0.0-alpha.94
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 +17 -0
- package/package.json +3 -3
- package/themes/grist-theme.css +2 -0
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.94](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.93...v2.0.0-alpha.94) (2024-04-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @operato/data-tree
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.0.0-alpha.93](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.92...v2.0.0-alpha.93) (2024-04-19)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### :bug: Bug Fix
|
|
18
|
+
|
|
19
|
+
* grid body border-bottom style ([708a937](https://github.com/hatiolab/operato/commit/708a93789d23417a318e2ac9f499bec85d7e4776))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## [2.0.0-alpha.92](https://github.com/hatiolab/operato/compare/v2.0.0-alpha.91...v2.0.0-alpha.92) (2024-04-19)
|
|
7
24
|
|
|
8
25
|
**Note:** Version bump only for package @operato/data-tree
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/data-tree",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.94",
|
|
4
4
|
"description": "User interface for tree structure data",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"storybook:build": "tsc && build-storybook"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@operato/styles": "^2.0.0-alpha.
|
|
43
|
+
"@operato/styles": "^2.0.0-alpha.94",
|
|
44
44
|
"i18next": "^21.5.4",
|
|
45
45
|
"lit": "^3.1.2",
|
|
46
46
|
"lodash-es": "^4.17.21"
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"prettier --write"
|
|
79
79
|
]
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "cc04167fe6e9e7663aec78414fcb821b79f7b918"
|
|
82
82
|
}
|
package/themes/grist-theme.css
CHANGED
|
@@ -35,6 +35,8 @@ body {
|
|
|
35
35
|
--grid-header-filter-title-font: normal 12px var(--theme-font);
|
|
36
36
|
--grid-header-filter-title-icon-color: var(--primary-color);
|
|
37
37
|
|
|
38
|
+
--grid-body-bottom-border: 1px solid rgba(var(--secondary-color-rgb), 0.2);
|
|
39
|
+
|
|
38
40
|
--grid-record-background-color: var(--theme-white-color);
|
|
39
41
|
--grid-record-odd-background-color: #f9f7f5;
|
|
40
42
|
--grid-record-padding: 0 5px 0 5px;
|