@true-engineering/true-react-common-ui-kit 3.59.0 → 3.60.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@true-engineering/true-react-common-ui-kit",
3
- "version": "3.59.0",
3
+ "version": "3.60.0",
4
4
  "description": "True Engineering React UI Kit with theming support",
5
5
  "author": "True Engineering (https://trueengineering.ru)",
6
6
  "keywords": [
@@ -35,11 +35,12 @@
35
35
  },
36
36
  "scripts": {
37
37
  "build": "tsc && vite build",
38
+ "build:pr": "vite build",
38
39
  "lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
39
40
  "format": "prettier --write \"**/*.{js,jsx,css,json,ts,tsx}\"",
40
41
  "format:check": "prettier --check \"**/*.{js,jsx,css,json,ts,tsx}\"",
41
- "full-check": "yarn format:check && yarn lint",
42
- "types-check": "tsc --noEmit"
42
+ "types-check": "tsc --noEmit",
43
+ "full-check": "yarn types-check && yarn format:check && yarn lint"
43
44
  },
44
45
  "dependencies": {
45
46
  "@floating-ui/react": "0.26.12",
@@ -2,6 +2,7 @@ import { createThemedStyles, ITweakStyles } from '../../theme';
2
2
 
3
3
  export const useStyles = createThemedStyles('Checkbox', {
4
4
  root: {
5
+ position: 'relative',
5
6
  cursor: 'pointer',
6
7
  display: 'flex',
7
8
  alignItems: 'center',