armtek-uikit-react 1.0.276 → 1.0.277
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.
|
@@ -1,28 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
3
|
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
-
const
|
|
4
|
+
const RcSliderImport = require("rc-slider");
|
|
5
5
|
;/* empty css */
|
|
6
6
|
const ui_HelperText_HelperText = require("../HelperText/HelperText.cjs");
|
|
7
7
|
const clsx = require("clsx");
|
|
8
|
-
|
|
9
|
-
const n = Object.create(null, { [Symbol.toStringTag]: { value: "Module" } });
|
|
10
|
-
if (e) {
|
|
11
|
-
for (const k in e) {
|
|
12
|
-
if (k !== "default") {
|
|
13
|
-
const d = Object.getOwnPropertyDescriptor(e, k);
|
|
14
|
-
Object.defineProperty(n, k, d.get ? d : {
|
|
15
|
-
enumerable: true,
|
|
16
|
-
get: () => e[k]
|
|
17
|
-
});
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
n.default = e;
|
|
22
|
-
return Object.freeze(n);
|
|
23
|
-
}
|
|
24
|
-
const RcSliderModule__namespace = /* @__PURE__ */ _interopNamespaceDefault(RcSliderModule);
|
|
25
|
-
const RcSlider = "default" in RcSliderModule__namespace ? RcSliderModule__namespace.default : RcSliderModule__namespace;
|
|
8
|
+
const RcSlider = RcSliderImport.default || RcSliderImport;
|
|
26
9
|
function Slider(props) {
|
|
27
10
|
const {
|
|
28
11
|
size = "large",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsx, Fragment, jsxs } from "react/jsx-runtime";
|
|
2
|
-
import
|
|
2
|
+
import RcSliderImport from "rc-slider";
|
|
3
3
|
/* empty css */
|
|
4
4
|
import HelperText from "../HelperText/HelperText.js";
|
|
5
5
|
import clsx from "clsx";
|
|
6
|
-
const RcSlider =
|
|
6
|
+
const RcSlider = RcSliderImport.default || RcSliderImport;
|
|
7
7
|
function Slider(props) {
|
|
8
8
|
const {
|
|
9
9
|
size = "large",
|