Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d2771dfc31 | |||
| dd46d3e2f4 | |||
| ae641801e1 | |||
| 719e63c667 |
10
changelog.md
10
changelog.md
@@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-10-07 - 1.2.0 - feat(index.ts)
|
||||||
|
Add export for colors module in index.ts
|
||||||
|
|
||||||
|
- The index.ts file now exports the colors module, making color utilities available for external use.
|
||||||
|
|
||||||
|
## 2024-10-06 - 1.1.13 - fix(dees-button)
|
||||||
|
Fix styling issue in button component.
|
||||||
|
|
||||||
|
- Moved the .button.disabled styling block to its correct position after the .button.highlighted block.
|
||||||
|
|
||||||
## 2024-10-06 - 1.1.12 - fix(dees-button)
|
## 2024-10-06 - 1.1.12 - fix(dees-button)
|
||||||
Fix reflect attribute for disabled property on dees-button component
|
Fix reflect attribute for disabled property on dees-button component
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@design.estate/dees-catalog",
|
"name": "@design.estate/dees-catalog",
|
||||||
"version": "1.1.12",
|
"version": "1.2.0",
|
||||||
"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",
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@design.estate/dees-catalog',
|
name: '@design.estate/dees-catalog',
|
||||||
version: '1.1.12',
|
version: '1.2.0',
|
||||||
description: 'A library for building components and other projects'
|
description: 'A library for building components and other projects'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -104,13 +104,6 @@ export class DeesButton extends DeesElement {
|
|||||||
border-top: 1px solid #0069f2;
|
border-top: 1px solid #0069f2;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button.disabled {
|
|
||||||
background: ${cssManager.bdTheme('#ffffff00', '#11111100')};
|
|
||||||
border: 1px dashed ${cssManager.bdTheme('#666666', '#666666')};
|
|
||||||
color: #9b9b9e;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
|
|
||||||
.button.highlighted {
|
.button.highlighted {
|
||||||
background: #e4002b;
|
background: #e4002b;
|
||||||
border: none;
|
border: none;
|
||||||
@@ -132,6 +125,14 @@ export class DeesButton extends DeesElement {
|
|||||||
.button.discreet:hover {
|
.button.discreet:hover {
|
||||||
background: ${cssManager.bdTheme('rgba(0, 0, 0, 0.1)', 'rgba(255, 255, 255, 0.1)')};
|
background: ${cssManager.bdTheme('rgba(0, 0, 0, 0.1)', 'rgba(255, 255, 255, 0.1)')};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button.disabled {
|
||||||
|
background: ${cssManager.bdTheme('#ffffff00', '#11111100')};
|
||||||
|
border: 1px dashed ${cssManager.bdTheme('#666666', '#666666')};
|
||||||
|
color: #9b9b9e;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
.button.hidden {
|
.button.hidden {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,2 +1,4 @@
|
|||||||
export * from './elements/index.js';
|
export * from './elements/index.js';
|
||||||
|
import * as colors from './elements/00colors.js';
|
||||||
|
export { colors };
|
||||||
export { commitinfo } from './00_commitinfo_data.js';
|
export { commitinfo } from './00_commitinfo_data.js';
|
||||||
|
|||||||
Reference in New Issue
Block a user