@emberai-engg/task-board 0.4.1 → 0.5.1
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/README.md +7 -2
- package/dist/index.d.mts +36 -4
- package/dist/index.d.ts +36 -4
- package/dist/index.js +447 -47
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +483 -83
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +45 -0
- package/package.json +7 -2
package/dist/styles.css
CHANGED
|
@@ -506,6 +506,9 @@
|
|
|
506
506
|
.w-20 {
|
|
507
507
|
width: calc(var(--spacing) * 20);
|
|
508
508
|
}
|
|
509
|
+
.w-36 {
|
|
510
|
+
width: calc(var(--spacing) * 36);
|
|
511
|
+
}
|
|
509
512
|
.w-40 {
|
|
510
513
|
width: calc(var(--spacing) * 40);
|
|
511
514
|
}
|
|
@@ -1581,6 +1584,11 @@
|
|
|
1581
1584
|
border-bottom-width: 0px;
|
|
1582
1585
|
}
|
|
1583
1586
|
}
|
|
1587
|
+
.focus-within\:opacity-100 {
|
|
1588
|
+
&:focus-within {
|
|
1589
|
+
opacity: 100%;
|
|
1590
|
+
}
|
|
1591
|
+
}
|
|
1584
1592
|
.hover\:border-neutral-200 {
|
|
1585
1593
|
&:hover {
|
|
1586
1594
|
@media (hover: hover) {
|
|
@@ -1857,6 +1865,17 @@
|
|
|
1857
1865
|
background-color: var(--color-neutral-50);
|
|
1858
1866
|
}
|
|
1859
1867
|
}
|
|
1868
|
+
.focus-visible\:ring-2 {
|
|
1869
|
+
&:focus-visible {
|
|
1870
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1871
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1872
|
+
}
|
|
1873
|
+
}
|
|
1874
|
+
.focus-visible\:ring-\[\#FF5E00\]\/20 {
|
|
1875
|
+
&:focus-visible {
|
|
1876
|
+
--tw-ring-color: color-mix(in oklab, #FF5E00 20%, transparent);
|
|
1877
|
+
}
|
|
1878
|
+
}
|
|
1860
1879
|
.disabled\:opacity-30 {
|
|
1861
1880
|
&:disabled {
|
|
1862
1881
|
opacity: 30%;
|
|
@@ -2163,6 +2182,32 @@
|
|
|
2163
2182
|
font-weight: 500;
|
|
2164
2183
|
font-size: 0.85em;
|
|
2165
2184
|
}
|
|
2185
|
+
mark.eb-tb-annot {
|
|
2186
|
+
background: rgba(254, 240, 138, 0.6);
|
|
2187
|
+
border-bottom: 2px solid #f59e0b;
|
|
2188
|
+
cursor: pointer;
|
|
2189
|
+
padding: 1px 0;
|
|
2190
|
+
border-radius: 1px;
|
|
2191
|
+
color: inherit;
|
|
2192
|
+
transition: background 0.15s ease;
|
|
2193
|
+
}
|
|
2194
|
+
mark.eb-tb-annot:hover, mark.eb-tb-annot[data-active="true"] {
|
|
2195
|
+
background: rgba(253, 224, 71, 0.85);
|
|
2196
|
+
}
|
|
2197
|
+
@keyframes eb-tb-annot-pulse {
|
|
2198
|
+
0% {
|
|
2199
|
+
background: rgba(254, 240, 138, 0.6);
|
|
2200
|
+
}
|
|
2201
|
+
30% {
|
|
2202
|
+
background: rgba(245, 158, 11, 0.5);
|
|
2203
|
+
}
|
|
2204
|
+
100% {
|
|
2205
|
+
background: rgba(254, 240, 138, 0.6);
|
|
2206
|
+
}
|
|
2207
|
+
}
|
|
2208
|
+
mark.eb-tb-annot.eb-tb-annot-pulse {
|
|
2209
|
+
animation: eb-tb-annot-pulse 1.4s ease-out;
|
|
2210
|
+
}
|
|
2166
2211
|
@keyframes eb-tb-shimmer {
|
|
2167
2212
|
0% {
|
|
2168
2213
|
background-position: -200% 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emberai-engg/task-board",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Reusable Kanban task board component",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"tsup": "^8.0.0",
|
|
33
33
|
"typescript": "^5.0.0",
|
|
34
|
-
"vitest": "^2.
|
|
34
|
+
"vitest": "^3.2.4",
|
|
35
35
|
"@testing-library/react": "^16.0.0",
|
|
36
36
|
"react": "^19.0.0",
|
|
37
37
|
"react-dom": "^19.0.0",
|
|
@@ -40,6 +40,11 @@
|
|
|
40
40
|
"tailwindcss": "^4.0.0",
|
|
41
41
|
"@tailwindcss/cli": "^4.0.0"
|
|
42
42
|
},
|
|
43
|
+
"overrides": {
|
|
44
|
+
"postcss": ">=8.5.10",
|
|
45
|
+
"esbuild": ">=0.25.0",
|
|
46
|
+
"vite": ">=6.4.2"
|
|
47
|
+
},
|
|
43
48
|
"publishConfig": {
|
|
44
49
|
"access": "public",
|
|
45
50
|
"registry": "https://registry.npmjs.org"
|