@vitrosoftware/common-ui-ts 1.1.93 → 1.1.95
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.
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
width: 100% !important;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
-
:global(.k-animation-container) {
|
|
134
|
+
.vitro-control-container :global(.k-animation-container) {
|
|
135
135
|
top: 6px !important;
|
|
136
136
|
width: 100% !important;
|
|
137
137
|
min-width: 240px;
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
position: absolute !important;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
-
:global(.k-popup) {
|
|
148
|
+
.vitro-control-container :global(.k-popup) {
|
|
149
149
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.16), 0px 0px 4px 0px rgba(0, 0, 0, 0.12) !important;
|
|
150
150
|
background-color: #fff;
|
|
151
151
|
border-radius: 4px !important;
|
package/dist/index.css
CHANGED
|
@@ -3237,7 +3237,7 @@ html, body {
|
|
|
3237
3237
|
width: 100% !important;
|
|
3238
3238
|
}
|
|
3239
3239
|
|
|
3240
|
-
.k-animation-container {
|
|
3240
|
+
._date-picker_vitro-control-container_2CVwecs .k-animation-container {
|
|
3241
3241
|
top: 6px !important;
|
|
3242
3242
|
width: 100% !important;
|
|
3243
3243
|
min-width: 240px;
|
|
@@ -3251,7 +3251,7 @@ html, body {
|
|
|
3251
3251
|
position: absolute !important;
|
|
3252
3252
|
}
|
|
3253
3253
|
|
|
3254
|
-
.k-popup {
|
|
3254
|
+
._date-picker_vitro-control-container_2CVwecs .k-popup {
|
|
3255
3255
|
box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.16), 0px 0px 4px 0px rgba(0, 0, 0, 0.12) !important;
|
|
3256
3256
|
background-color: #fff;
|
|
3257
3257
|
border-radius: 4px !important;
|
package/dist/index.js
CHANGED
|
@@ -61708,7 +61708,7 @@ var Viewer = function Viewer(props) {
|
|
|
61708
61708
|
};
|
|
61709
61709
|
|
|
61710
61710
|
var name = "@vitrosoftware/common-ui-ts";
|
|
61711
|
-
var version$1 = "1.1.
|
|
61711
|
+
var version$1 = "1.1.95";
|
|
61712
61712
|
var description = "vitro software common ui ts";
|
|
61713
61713
|
var author = "";
|
|
61714
61714
|
var license = "MIT";
|
|
@@ -63430,12 +63430,18 @@ var LinkItem$1 = function LinkItem(props) {
|
|
|
63430
63430
|
} else if (props.link) {
|
|
63431
63431
|
var event = new CustomEvent(exports.EVENT.HISTORY_UPDATE, {
|
|
63432
63432
|
detail: {
|
|
63433
|
-
pathname: props.link
|
|
63433
|
+
pathname: props.link,
|
|
63434
|
+
newWindow: e && e.button === 1
|
|
63434
63435
|
}
|
|
63435
63436
|
});
|
|
63436
63437
|
window.dispatchEvent(event);
|
|
63437
63438
|
}
|
|
63438
63439
|
};
|
|
63440
|
+
var onMouseDown = function onMouseDown(e) {
|
|
63441
|
+
if (e.button === 1) {
|
|
63442
|
+
onClick(e);
|
|
63443
|
+
}
|
|
63444
|
+
};
|
|
63439
63445
|
return React__default.createElement("li", {
|
|
63440
63446
|
style: {
|
|
63441
63447
|
width: props.linkItemWidth ? props.linkItemWidth + UNIT.PX : WIDTH_AUTO
|
|
@@ -63455,6 +63461,7 @@ var LinkItem$1 = function LinkItem(props) {
|
|
|
63455
63461
|
return setIsHover(false);
|
|
63456
63462
|
},
|
|
63457
63463
|
onClick: onClick,
|
|
63464
|
+
onMouseDown: onMouseDown,
|
|
63458
63465
|
className: className
|
|
63459
63466
|
}, React__default.createElement(Item$2, Object.assign({}, props, {
|
|
63460
63467
|
isHover: isHover || isActive
|