armtek-uikit-react 1.0.115 → 1.0.117

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/assets/global.css CHANGED
@@ -198,6 +198,16 @@ body{
198
198
 
199
199
  .border-radius {border-radius: var(--border-radius)}
200
200
 
201
+ .w-full{width: 100%}
202
+ .h-full{height: 100%}
203
+
204
+ .border-top{ border-top: 1px solid}
205
+ .border-bottom{ border-top: 1px solid}
206
+ .border-gray-50{ border-color: var(--color-gray-50)}
207
+ .border-gray-100{ border-color: var(--color-gray-100)}
208
+ .border-gray-200{ border-color: var(--color-gray-200)}
209
+ .border-gray-300{ border-color: var(--color-gray-300)}
210
+
201
211
  .flex{display: flex}
202
212
  .block{display: block}
203
213
  .items-center {align-items: center}
package/package.json CHANGED
@@ -1 +1 @@
1
- {"name":"armtek-uikit-react","version":"1.0.115","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"}}
1
+ {"name":"armtek-uikit-react","version":"1.0.117","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"}}
@@ -10,6 +10,8 @@ const ButtonIconClasses = ['button_icon'];
10
10
  function ButtonIcon(props) {
11
11
  return /*#__PURE__*/_jsx(_Fragment, {
12
12
  children: /*#__PURE__*/_jsx(Button, {
13
+ color: 'neutral',
14
+ variant: 'transparent',
13
15
  ...props,
14
16
  asIcon: true,
15
17
  className: clsx(css.button_icon, css['button_icon_' + props.size], props.className),
@@ -57,7 +57,6 @@ export const DateField = /*#__PURE__*/forwardRef((props, ref) => {
57
57
  const inputIcon = showTime && showTimeOnly ? 'schedule' : 'calendar_today';
58
58
  let dateValue = typeof realValue === 'string' ? new Date(realValue) : realValue;
59
59
  if (!(dateValue instanceof Date && !isNaN(dateValue.getDate()))) dateValue = null;
60
- console.log(dateValue);
61
60
 
62
61
  //TODO Подключение Popover ломает тесты, разобраться почему
63
62
  return /*#__PURE__*/_jsxs(_Fragment, {