armtek-uikit-react 1.0.137 → 1.0.138
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/fonts.scss
CHANGED
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
font-family: 'Material Symbols Outlined';
|
|
5
5
|
font-style: normal;
|
|
6
6
|
font-weight: 400;
|
|
7
|
+
font-display: swap;
|
|
7
8
|
src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v133/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzaxHMPdY43zj-jCxv3fzvRNU22ZXGJpEpjC_1v-p_4MrImHCIJIZrDCvHOej.woff2) format('woff2');
|
|
8
9
|
}
|
|
9
10
|
|
|
10
11
|
@font-face {
|
|
11
12
|
font-family: 'Material Symbols Outlined';
|
|
12
13
|
font-style: normal;
|
|
14
|
+
font-display: swap;
|
|
13
15
|
font-weight: 700;
|
|
14
16
|
src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v134/kJF1BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzByHX9rA6RzazHD_dY43zj-jCxv3fzvRNU22ZXGJpEpjC_1p-p_4MrImHCIJIZrDBIG-ej.woff2) format('woff2');
|
|
15
17
|
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"armtek-uikit-react","version":"1.0.
|
|
1
|
+
{"name":"armtek-uikit-react","version":"1.0.138","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"}}
|
package/types/theme.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ElementType, HTMLAttributes, InputHTMLAttributes, ReactNode } from 'react';
|
|
2
2
|
import { SizeType, VariantType } from '../../../types/theme';
|
|
3
|
-
type Classes = Record<'root' | 'wrapper', string>;
|
|
3
|
+
type Classes = Record<'root' | 'wrapper' | 'input', string>;
|
|
4
4
|
export type TextFieldProps = {
|
|
5
5
|
label?: string;
|
|
6
6
|
size?: Exclude<SizeType, 'extraLarge' | 'medium'>;
|
|
@@ -76,6 +76,7 @@ export const TextField = /*#__PURE__*/forwardRef((props, ref) => {
|
|
|
76
76
|
className: classes == null ? void 0 : classes.root,
|
|
77
77
|
children: [/*#__PURE__*/_jsx(TextFieldInput, {
|
|
78
78
|
wrapperClass: classes == null ? void 0 : classes.wrapper,
|
|
79
|
+
className: classes == null ? void 0 : classes.input,
|
|
79
80
|
Component: Component,
|
|
80
81
|
ref: inputRef,
|
|
81
82
|
size: size,
|