Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6a0b0aa741 | |||
| 4c620f480c | |||
| b7ebcc4cef | |||
| e6275bfeb3 | |||
| d4585654b6 | |||
| 1a8562dc6f | |||
| 2148959c35 | |||
| 28a84f7c1a | |||
| e935dc3983 | |||
| ab30b51c9e | |||
| 8377d94f81 | |||
| 14ebeeaee8 |
36
changelog.md
36
changelog.md
@@ -1,5 +1,41 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-07-01 - 1.1.6 - fix(dees-dataview-codebox)
|
||||||
|
Corrected the font-family order for better font rendering.
|
||||||
|
|
||||||
|
- Corrected the font-family order in dees-dataview-codebox.ts to ensure 'Intel One Mono' is prioritized over 'Geist Mono'.
|
||||||
|
|
||||||
|
## 2024-07-01 - 1.1.5 - fix(dees-dataview-codebox)
|
||||||
|
Adjusted line number font weight in codebox
|
||||||
|
|
||||||
|
- Changed the line number font weight from 400 to 200 in the codebox for better visual alignment.
|
||||||
|
|
||||||
|
## 2024-07-01 - 1.1.4 - fix(UI)
|
||||||
|
Fixed font-family order for code and value elements
|
||||||
|
|
||||||
|
- Updated font-family order in dees-dataview-codebox.ts
|
||||||
|
- Updated font-family order in dees-dataview-statusobject.ts
|
||||||
|
|
||||||
|
## 2024-07-01 - 1.1.3 - fix(dees-dataview-codebox)
|
||||||
|
Adjusted codebox font weight and font family.
|
||||||
|
|
||||||
|
- Changed font weight from 200 to 400 for better readability.
|
||||||
|
- Updated font-family to include 'Geist Mono' for uniform appearance.
|
||||||
|
|
||||||
|
## 2024-06-30 - 1.1.2 - fix(elements)
|
||||||
|
Fix various UI components and improve styles
|
||||||
|
|
||||||
|
- Updated styles for multiple components for better appearance in dark mode.
|
||||||
|
- Added missing event handling in `dees-input-fileupload` component.
|
||||||
|
- Implemented tooltip support in `dees-label` component.
|
||||||
|
- Fixed alignment issues in `dees-appui-*` components.
|
||||||
|
- Resolved various accessibility issues in form elements.
|
||||||
|
|
||||||
|
## 2024-06-30 - 1.1.1 - fix(build)
|
||||||
|
Fix build script by updating source folders.
|
||||||
|
|
||||||
|
- Updated build script to correctly reference 'tsfolders' folder.
|
||||||
|
|
||||||
## 2024-06-30 - 1.1.0 - feat(project dependencies)
|
## 2024-06-30 - 1.1.0 - feat(project dependencies)
|
||||||
Updated various dependencies and internal fonts
|
Updated various dependencies and internal fonts
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@design.estate/dees-catalog",
|
"name": "@design.estate/dees-catalog",
|
||||||
"version": "1.1.0",
|
"version": "1.1.6",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A library for building components and other projects",
|
"description": "A library for building components and other projects",
|
||||||
"main": "dist_ts_web/index.js",
|
"main": "dist_ts_web/index.js",
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "tstest test/ --web",
|
"test": "tstest test/ --web",
|
||||||
"build": "tsbuild element --allowimplicitany && tsbundle element --production",
|
"build": "tsbuild tsfolders --allowimplicitany && tsbundle element --production",
|
||||||
"watch": "tswatch element",
|
"watch": "tswatch element",
|
||||||
"buildDocs": "tsdoc"
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
|
|||||||
1646
pnpm-lock.yaml
generated
1646
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@design.estate/dees-catalog',
|
name: '@design.estate/dees-catalog',
|
||||||
version: '1.1.0',
|
version: '1.1.6',
|
||||||
description: 'A library for building components and other projects'
|
description: 'A library for building components and other projects'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -142,7 +142,7 @@ export class DeesDataviewCodebox extends DeesElement {
|
|||||||
.lineNumbers {
|
.lineNumbers {
|
||||||
line-height: 1.4em;
|
line-height: 1.4em;
|
||||||
font-weight: 200;
|
font-weight: 200;
|
||||||
font-family: 'Intel One Mono', 'monospace';
|
font-family: 'Intel One Mono', 'Geist Mono', 'monospace';
|
||||||
}
|
}
|
||||||
|
|
||||||
.hljs-string {
|
.hljs-string {
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ export class DeesDataviewStatusobject extends DeesElement {
|
|||||||
|
|
||||||
.detail .detailsText .value {
|
.detail .detailsText .value {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-family: 'Intel One Mono';
|
font-family: 'Intel One Mono', 'Geist Mono';
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user