@luscii-healthtech/web-ui 2.56.2 → 2.56.4
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/components/DragHandle/DragHandle.d.ts +7 -0
- package/dist/components/DragHandle/DragHandle.types.d.ts +6 -0
- package/dist/components/DragHandle/index.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/web-ui-tailwind.css +22 -4
- package/dist/web-ui.cjs.development.js +142 -126
- package/dist/web-ui.cjs.development.js.map +1 -1
- package/dist/web-ui.cjs.production.min.js +1 -1
- package/dist/web-ui.cjs.production.min.js.map +1 -1
- package/dist/web-ui.esm.js +143 -128
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const DragHandle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLButtonElement> & {
|
|
3
|
+
grabbing: boolean;
|
|
4
|
+
disabled?: boolean | undefined;
|
|
5
|
+
dataTestId?: string | undefined;
|
|
6
|
+
} & React.RefAttributes<HTMLButtonElement>>;
|
|
7
|
+
export default DragHandle;
|
package/dist/index.d.ts
CHANGED
|
@@ -79,3 +79,4 @@ export { Divider } from "./components/Divider/Divider";
|
|
|
79
79
|
export { FullPageModal } from "./components/Modal/FullPageModal";
|
|
80
80
|
export { Card, type CardProps } from "./components/Card/Card";
|
|
81
81
|
export { Dropzone, DropzoneProps } from "./components/Dropzone";
|
|
82
|
+
export { default as DragHandle, DragHandleProps, } from "./components/DragHandle";
|
package/dist/web-ui-tailwind.css
CHANGED
|
@@ -855,6 +855,12 @@ video {
|
|
|
855
855
|
background-color: rgba(241, 245, 249, var(--bg-opacity));
|
|
856
856
|
}
|
|
857
857
|
|
|
858
|
+
.hover\:bg-slate-200:hover {
|
|
859
|
+
--bg-opacity: 1;
|
|
860
|
+
background-color: #e2e8f0;
|
|
861
|
+
background-color: rgba(226, 232, 240, var(--bg-opacity));
|
|
862
|
+
}
|
|
863
|
+
|
|
858
864
|
.hover\:bg-slate-600:hover {
|
|
859
865
|
--bg-opacity: 1;
|
|
860
866
|
background-color: #475569;
|
|
@@ -1156,14 +1162,18 @@ video {
|
|
|
1156
1162
|
cursor: pointer;
|
|
1157
1163
|
}
|
|
1158
1164
|
|
|
1159
|
-
.cursor-move {
|
|
1160
|
-
cursor: move;
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
1165
|
.cursor-not-allowed {
|
|
1164
1166
|
cursor: not-allowed;
|
|
1165
1167
|
}
|
|
1166
1168
|
|
|
1169
|
+
.cursor-grab {
|
|
1170
|
+
cursor: grab;
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
.cursor-grabbing {
|
|
1174
|
+
cursor: grabbing;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1167
1177
|
.block {
|
|
1168
1178
|
display: block;
|
|
1169
1179
|
}
|
|
@@ -1944,6 +1954,10 @@ video {
|
|
|
1944
1954
|
box-shadow: none;
|
|
1945
1955
|
}
|
|
1946
1956
|
|
|
1957
|
+
.hover\:shadow-sm:hover {
|
|
1958
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1947
1961
|
.fill-current {
|
|
1948
1962
|
fill: currentColor;
|
|
1949
1963
|
}
|
|
@@ -2351,6 +2365,10 @@ video {
|
|
|
2351
2365
|
transition-duration: 150ms;
|
|
2352
2366
|
}
|
|
2353
2367
|
|
|
2368
|
+
.duration-200 {
|
|
2369
|
+
transition-duration: 200ms;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2354
2372
|
.duration-300 {
|
|
2355
2373
|
transition-duration: 300ms;
|
|
2356
2374
|
}
|