Skip to content

Commit 3499479

Browse files
committed
v14.5.0
1 parent caacc4e commit 3499479

File tree

6 files changed

+13
-4
lines changed

6 files changed

+13
-4
lines changed

build/cjs/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/esm/index.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gleap",
3-
"version": "14.4.3",
3+
"version": "14.5.0",
44
"main": "build/cjs/index.js",
55
"module": "build/esm/index.mjs",
66
"exports": {

published/14.5.0/index.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

published/latest/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/GleapChecklist.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -572,6 +572,8 @@ export const registerGleapChecklist = () => {
572572
return `
573573
<div part="${className}" class="${
574574
isHeader ? "checklist-floating-header" : "checklist-floating-launcher"
575+
} ${
576+
renderDoneState ? "checklist-floating-launcher--done" : ""
575577
}">
576578
<div class="floating-header">
577579
<div class="floating-circular-progress">
@@ -955,6 +957,9 @@ export const registerGleapChecklist = () => {
955957
transition: transform 0.3s ease;
956958
cursor: pointer;
957959
}
960+
.checklist-floating-launcher--done {
961+
cursor: default !important;
962+
}
958963
.checklist-floating-header {
959964
padding: 12px;
960965
padding-bottom: 16px;
@@ -1012,6 +1017,9 @@ export const registerGleapChecklist = () => {
10121017
stroke-linecap: round;
10131018
transition: stroke-dashoffset var(--animation-duration) var(--animation-timing);
10141019
}
1020+
.checklist-floating-launcher--done .floating-circular-progress .progress {
1021+
stroke: var(--color-success);
1022+
}
10151023
.floating-icon {
10161024
margin-left: auto;
10171025
color: var(--color-font-light);

0 commit comments

Comments
 (0)