armtek-uikit-react 1.0.97 → 1.0.98
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/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"armtek-uikit-react","version":"1.0.
|
|
1
|
+
{"name":"armtek-uikit-react","version":"1.0.98","description":"Armtek UIKit for React","repository":{"type":"git","url":"ssh://git@gl.corp:10022/int/uikit/uikit_react.git"},"author":"","license":"ISC","dependencies":{"build":"^0.1.4","clsx":"^2.0.0","rc-slider":"^10.2.1","react":"*","react-datepicker":"^4.16.0","react-dom":"*","react-transition-group":"^4.4.5"},"peerDependencies":{"react":"*","react-dom":"*"},"scripts":{"pub":"npm version patch && npm publish"}}
|
|
@@ -49,6 +49,8 @@ export const DateField = /*#__PURE__*/forwardRef((props, ref) => {
|
|
|
49
49
|
const btnRef = useRef();
|
|
50
50
|
const inputIcon = showTime && showTimeOnly ? 'schedule' : 'calendar_today';
|
|
51
51
|
let dateValue = typeof realValue === 'string' ? new Date(realValue) : realValue;
|
|
52
|
+
|
|
53
|
+
//TODO Подключение Popover ломает тесты, разобраться почему
|
|
52
54
|
return /*#__PURE__*/_jsxs(_Fragment, {
|
|
53
55
|
children: [/*#__PURE__*/_jsx(TextField, {
|
|
54
56
|
ref: ref,
|
package/ui/Form/Select/Select.js
CHANGED
package/ui/Icon/Mi.js
CHANGED
|
@@ -13,12 +13,12 @@ export const Mi = props => {
|
|
|
13
13
|
...tooltipProps,
|
|
14
14
|
text: title,
|
|
15
15
|
children: /*#__PURE__*/_jsx(Icon, {
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
variant: 'outlined',
|
|
17
|
+
...iconProps
|
|
18
18
|
})
|
|
19
19
|
}) : /*#__PURE__*/_jsx(Icon, {
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
variant: 'outlined',
|
|
21
|
+
...iconProps
|
|
22
22
|
})
|
|
23
23
|
});
|
|
24
24
|
};
|
package/ui/Popover/Popover.js
CHANGED
package/ui/Popover/index.d.ts
CHANGED
package/ui/Popover/index.js
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export { default } from "./Popover";
|
|
1
|
+
export { default } from "./Popover";
|
|
2
|
+
export * from "./Popover";
|