@expressms/smartapp-ui 1.0.2 → 1.0.4
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/README.md +1 -1
- package/build/main/styles/stories.module.scss +12 -0
- package/build/main/styles/styles.min.css +1 -1
- package/build/main//321/201omponents/Button/types.d.ts +2 -2
- package/build/main//321/201omponents/Input/Input.d.ts +1 -1
- package/build/main//321/201omponents/Input/Input.js +4 -2
- package/build/main//321/201omponents/Input/types.d.ts +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ For the styles to work correctly, after installing the library, add styles impor
|
|
|
8
8
|
|
|
9
9
|
For the library to work, you need to install react and react-dom version 18 or more.
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
you can explore the elements here: https://smartapp-ui.rndteam.ccstest.ru/
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
@@ -688,6 +688,18 @@ $box-shadow-dark-color: rgb(0 0 0 / 60%);
|
|
|
688
688
|
line-height: 20px;
|
|
689
689
|
color: $color-darker-gray;
|
|
690
690
|
}
|
|
691
|
+
|
|
692
|
+
&:focus-visible {
|
|
693
|
+
border: 1px solid $color-blue;
|
|
694
|
+
outline: none;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
&__error {
|
|
699
|
+
font-size: 12px;
|
|
700
|
+
line-height: 16px;
|
|
701
|
+
color: $color-red;
|
|
702
|
+
margin: 8px;
|
|
691
703
|
}
|
|
692
704
|
}
|
|
693
705
|
|