kempo-ui 0.4.13 → 0.4.14
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
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [0.4.13] - 2026-05-03
|
|
10
|
+
### Added
|
|
11
|
+
- **Markdown Editor component**: spacing but
|
|
12
|
+
- The spacer was reset to 0 in the MarkdownEditor component. I deleted that line to fix spacing.
|
|
13
|
+
|
|
14
|
+
## [0.4.13] - 2026-05-03
|
|
8
15
|
### Added
|
|
9
16
|
- **Tabs component**: `persistent-id` attribute for storing/restoring active tab state
|
|
10
17
|
- New `persistentId` property (String type, reflects to `persistent-id` attribute)
|
|
@@ -77,9 +77,6 @@ import{html as t,css as e,nothing as i}from"../lit-all.min.js";import s from"./S
|
|
|
77
77
|
display: flex;
|
|
78
78
|
flex-direction: column;
|
|
79
79
|
}
|
|
80
|
-
k-tab-content {
|
|
81
|
-
--spacer: 0;
|
|
82
|
-
}
|
|
83
80
|
k-tab-content[active] {
|
|
84
81
|
display: flex;
|
|
85
82
|
flex-direction: column;
|
|
@@ -103,8 +100,6 @@ import{html as t,css as e,nothing as i}from"../lit-all.min.js";import s from"./S
|
|
|
103
100
|
scrollbar-width: thin;
|
|
104
101
|
resize: none;
|
|
105
102
|
}
|
|
106
|
-
.preview > :first-child { margin-top: 0; }
|
|
107
|
-
.preview > :last-child { margin-bottom: 0; }
|
|
108
103
|
.preview-empty {
|
|
109
104
|
color: var(--tc_muted);
|
|
110
105
|
font-style: italic;
|
|
@@ -77,9 +77,6 @@ import{html as t,css as e,nothing as i}from"../lit-all.min.js";import s from"./S
|
|
|
77
77
|
display: flex;
|
|
78
78
|
flex-direction: column;
|
|
79
79
|
}
|
|
80
|
-
k-tab-content {
|
|
81
|
-
--spacer: 0;
|
|
82
|
-
}
|
|
83
80
|
k-tab-content[active] {
|
|
84
81
|
display: flex;
|
|
85
82
|
flex-direction: column;
|
|
@@ -103,8 +100,6 @@ import{html as t,css as e,nothing as i}from"../lit-all.min.js";import s from"./S
|
|
|
103
100
|
scrollbar-width: thin;
|
|
104
101
|
resize: none;
|
|
105
102
|
}
|
|
106
|
-
.preview > :first-child { margin-top: 0; }
|
|
107
|
-
.preview > :last-child { margin-bottom: 0; }
|
|
108
103
|
.preview-empty {
|
|
109
104
|
color: var(--tc_muted);
|
|
110
105
|
font-style: italic;
|
package/package.json
CHANGED
|
@@ -530,9 +530,6 @@ export default class MarkdownEditor extends ShadowComponent {
|
|
|
530
530
|
display: flex;
|
|
531
531
|
flex-direction: column;
|
|
532
532
|
}
|
|
533
|
-
k-tab-content {
|
|
534
|
-
--spacer: 0;
|
|
535
|
-
}
|
|
536
533
|
k-tab-content[active] {
|
|
537
534
|
display: flex;
|
|
538
535
|
flex-direction: column;
|
|
@@ -556,8 +553,6 @@ export default class MarkdownEditor extends ShadowComponent {
|
|
|
556
553
|
scrollbar-width: thin;
|
|
557
554
|
resize: none;
|
|
558
555
|
}
|
|
559
|
-
.preview > :first-child { margin-top: 0; }
|
|
560
|
-
.preview > :last-child { margin-bottom: 0; }
|
|
561
556
|
.preview-empty {
|
|
562
557
|
color: var(--tc_muted);
|
|
563
558
|
font-style: italic;
|