acud 0.0.66 → 0.0.67
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/acud.css +28 -9
- package/dist/acud.css.map +1 -1
- package/dist/acud.js +3 -3
- package/dist/acud.js.map +1 -1
- package/dist/acud.min.css +1 -1
- package/dist/acud.min.css.map +1 -1
- package/dist/acud.min.js +6 -8
- package/dist/acud.min.js.map +1 -1
- package/es/modal/Modal.d.ts +0 -2
- package/es/modal/style/index.css +27 -7
- package/es/modal/style/index.less +23 -7
- package/es/modal/style/mixin.less +2 -2
- package/es/style/themes/dark/components/modal.less +1 -1
- package/es/style/themes/default/components/modal.less +1 -1
- package/es/tabs/src/TabNavList/index.js +2 -2
- package/es/tabs/style/index.css +0 -1
- package/es/tabs/style/index.less +0 -1
- package/lib/modal/Modal.d.ts +0 -2
- package/lib/modal/style/index.css +27 -7
- package/lib/modal/style/index.less +23 -7
- package/lib/modal/style/mixin.less +2 -2
- package/lib/style/themes/dark/components/modal.less +1 -1
- package/lib/style/themes/default/components/modal.less +1 -1
- package/lib/tabs/src/TabNavList/index.js +2 -2
- package/lib/tabs/style/index.css +0 -1
- package/lib/tabs/style/index.less +0 -1
- package/package.json +1 -1
package/dist/acud.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! acud v0.0.
|
|
1
|
+
/*! acud v0.0.67 */
|
|
2
2
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
3
3
|
if(typeof exports === 'object' && typeof module === 'object')
|
|
4
4
|
module.exports = factory(require("react"), require("react-dom"));
|
|
@@ -39108,9 +39108,9 @@ function TabNavList(props, ref) {
|
|
|
39108
39108
|
|
|
39109
39109
|
if (btnNode) {
|
|
39110
39110
|
newSizes.set(key, {
|
|
39111
|
-
width: btnNode.offsetWidth,
|
|
39111
|
+
width: btnNode.offsetWidth - 32,
|
|
39112
39112
|
height: btnNode.offsetHeight,
|
|
39113
|
-
left: btnNode.offsetLeft,
|
|
39113
|
+
left: btnNode.offsetLeft + 16,
|
|
39114
39114
|
top: btnNode.offsetTop
|
|
39115
39115
|
});
|
|
39116
39116
|
}
|