Compare commits

..

4 Commits

5 changed files with 366 additions and 1303 deletions

View File

@ -1,5 +1,20 @@
# Changelog
## 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.

View File

@ -1,6 +1,6 @@
{
"name": "@design.estate/dees-catalog",
"version": "1.1.1",
"version": "1.1.3",
"private": false,
"description": "A library for building components and other projects",
"main": "dist_ts_web/index.js",

1646
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-catalog',
version: '1.1.1',
version: '1.1.3',
description: 'A library for building components and other projects'
}

View File

@ -141,8 +141,8 @@ export class DeesDataviewCodebox extends DeesElement {
code *,
.lineNumbers {
line-height: 1.4em;
font-weight: 200;
font-family: 'Intel One Mono', 'monospace';
font-weight: 400;
font-family: 'Geist Mono', 'Intel One Mono', 'monospace';
}
.hljs-string {