@helpdice/ui 1.7.9 → 1.8.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/carousal/index.js +2922 -3
- package/dist/index.js +2 -3
- package/esm/carousal/component/Thumbs.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8,7 +8,6 @@ var reactSyntaxHighlighter = require('react-syntax-highlighter');
|
|
|
8
8
|
var prism = require('react-syntax-highlighter/dist/cjs/styles/prism');
|
|
9
9
|
var require$$0 = require('react-is');
|
|
10
10
|
var isEqual = require('react-fast-compare');
|
|
11
|
-
var Button$1 = require('components/button');
|
|
12
11
|
|
|
13
12
|
function _interopNamespaceDefault(e) {
|
|
14
13
|
var n = Object.create(null);
|
|
@@ -61917,7 +61916,7 @@ var Thumbs = /*#__PURE__*/function (_Component) {
|
|
|
61917
61916
|
}, /*#__PURE__*/React.createElement("div", {
|
|
61918
61917
|
ref: this.setItemsWrapperRef,
|
|
61919
61918
|
className: "jsx-3452014152" + " " + (klass.WRAPPER(false) || "")
|
|
61920
|
-
}, /*#__PURE__*/React.createElement(Button
|
|
61919
|
+
}, /*#__PURE__*/React.createElement(Button, {
|
|
61921
61920
|
scale: 2 / 3,
|
|
61922
61921
|
auto: true,
|
|
61923
61922
|
px: 0.6,
|
|
@@ -61953,7 +61952,7 @@ var Thumbs = /*#__PURE__*/function (_Component) {
|
|
|
61953
61952
|
},
|
|
61954
61953
|
style: itemListStyles,
|
|
61955
61954
|
className: "jsx-3452014152" + " " + (klass.SLIDER(false, this.state.swiping) || "")
|
|
61956
|
-
}, this.renderItems()), /*#__PURE__*/React.createElement(Button
|
|
61955
|
+
}, this.renderItems()), /*#__PURE__*/React.createElement(Button, {
|
|
61957
61956
|
type: "button",
|
|
61958
61957
|
scale: 2 / 3,
|
|
61959
61958
|
auto: true,
|
|
@@ -15,7 +15,7 @@ import CSSTranslate from '../CSSTranslate';
|
|
|
15
15
|
// @ts-ignore
|
|
16
16
|
import Swipe from '../../swipe';
|
|
17
17
|
import getWindow from '../shims/window';
|
|
18
|
-
import Button from '
|
|
18
|
+
import Button from '../../button';
|
|
19
19
|
import { ChevronLeft, ChevronRight } from '@helpdice/icons';
|
|
20
20
|
var isKeyboardEvent = function isKeyboardEvent(e) {
|
|
21
21
|
return e.hasOwnProperty('key');
|