turbowrap-issue-widget 0.1.1 → 1.0.0
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/dist/issue-widget.es.js +18 -3
- package/dist/issue-widget.es.js.map +1 -1
- package/dist/issue-widget.min.js +18 -3
- package/dist/issue-widget.min.js.map +1 -1
- package/dist/issue-widget.umd.js +18 -3
- package/dist/issue-widget.umd.js.map +1 -1
- package/dist/ui/styles.d.ts +1 -1
- package/package.json +1 -1
package/dist/issue-widget.es.js
CHANGED
|
@@ -5098,7 +5098,7 @@ const Jc = `
|
|
|
5098
5098
|
.iw-trigger {
|
|
5099
5099
|
position: fixed;
|
|
5100
5100
|
z-index: 2147483647;
|
|
5101
|
-
padding: 14px
|
|
5101
|
+
padding: 14px;
|
|
5102
5102
|
border-radius: 50px;
|
|
5103
5103
|
background: linear-gradient(135deg, var(--iw-accent) 0%, #8b5cf6 100%);
|
|
5104
5104
|
color: white;
|
|
@@ -5110,15 +5110,30 @@ const Jc = `
|
|
|
5110
5110
|
font-weight: 500;
|
|
5111
5111
|
display: flex;
|
|
5112
5112
|
align-items: center;
|
|
5113
|
-
gap:
|
|
5114
|
-
|
|
5113
|
+
gap: 0;
|
|
5114
|
+
overflow: hidden;
|
|
5115
|
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
5116
|
+
}
|
|
5117
|
+
|
|
5118
|
+
.iw-trigger span {
|
|
5119
|
+
max-width: 0;
|
|
5120
|
+
opacity: 0;
|
|
5121
|
+
white-space: nowrap;
|
|
5122
|
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
5115
5123
|
}
|
|
5116
5124
|
|
|
5117
5125
|
.iw-trigger:hover {
|
|
5126
|
+
padding: 14px 20px;
|
|
5127
|
+
gap: 8px;
|
|
5118
5128
|
transform: translateY(-2px);
|
|
5119
5129
|
box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
|
|
5120
5130
|
}
|
|
5121
5131
|
|
|
5132
|
+
.iw-trigger:hover span {
|
|
5133
|
+
max-width: 150px;
|
|
5134
|
+
opacity: 1;
|
|
5135
|
+
}
|
|
5136
|
+
|
|
5122
5137
|
.iw-trigger.bottom-right {
|
|
5123
5138
|
bottom: 24px;
|
|
5124
5139
|
right: 24px;
|