@rovula/ui 0.0.74 → 0.0.76
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/dist/cjs/bundle.css +30 -0
- package/dist/cjs/bundle.js +3 -3
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/TextArea/TextArea.d.ts +38 -0
- package/dist/cjs/types/components/TextArea/TextArea.stories.d.ts +9 -0
- package/dist/cjs/types/components/TextArea/TextArea.styles.d.ts +27 -0
- package/dist/cjs/types/index.d.ts +2 -0
- package/dist/components/Button/Button.styles.js +1 -1
- package/dist/components/TextArea/TextArea.js +55 -0
- package/dist/components/TextArea/TextArea.stories.js +86 -0
- package/dist/components/TextArea/TextArea.styles.js +207 -0
- package/dist/esm/bundle.css +30 -0
- package/dist/esm/bundle.js +3 -3
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/TextArea/TextArea.d.ts +38 -0
- package/dist/esm/types/components/TextArea/TextArea.stories.d.ts +9 -0
- package/dist/esm/types/components/TextArea/TextArea.styles.d.ts +27 -0
- package/dist/esm/types/index.d.ts +2 -0
- package/dist/index.d.ts +38 -1
- package/dist/index.js +1 -0
- package/dist/src/theme/global.css +38 -0
- package/package.json +1 -1
- package/src/components/Button/Button.styles.ts +1 -1
- package/src/components/TextArea/TextArea.stories.tsx +134 -0
- package/src/components/TextArea/TextArea.styles.ts +228 -0
- package/src/components/TextArea/TextArea.tsx +150 -0
- package/src/index.ts +2 -0
- package/src/theme/global.css +26 -0
package/dist/cjs/bundle.css
CHANGED
|
@@ -1041,6 +1041,9 @@ input[type=number] {
|
|
|
1041
1041
|
.cursor-default{
|
|
1042
1042
|
cursor: default;
|
|
1043
1043
|
}
|
|
1044
|
+
.cursor-not-allowed{
|
|
1045
|
+
cursor: not-allowed;
|
|
1046
|
+
}
|
|
1044
1047
|
.cursor-pointer{
|
|
1045
1048
|
cursor: pointer;
|
|
1046
1049
|
}
|
|
@@ -1052,6 +1055,9 @@ input[type=number] {
|
|
|
1052
1055
|
-moz-user-select: none;
|
|
1053
1056
|
user-select: none;
|
|
1054
1057
|
}
|
|
1058
|
+
.resize-y{
|
|
1059
|
+
resize: vertical;
|
|
1060
|
+
}
|
|
1055
1061
|
.resize{
|
|
1056
1062
|
resize: both;
|
|
1057
1063
|
}
|
|
@@ -3062,6 +3068,12 @@ input[type=number] {
|
|
|
3062
3068
|
.pr-xxl{
|
|
3063
3069
|
padding-right: var(--spacing-spacing-xxl);
|
|
3064
3070
|
}
|
|
3071
|
+
.pt-2{
|
|
3072
|
+
padding-top: 0.5rem;
|
|
3073
|
+
}
|
|
3074
|
+
.pt-4{
|
|
3075
|
+
padding-top: 1rem;
|
|
3076
|
+
}
|
|
3065
3077
|
.text-left{
|
|
3066
3078
|
text-align: left;
|
|
3067
3079
|
}
|
|
@@ -3806,6 +3818,24 @@ input[type=number] {
|
|
|
3806
3818
|
line-height: var(--button-button-ms-line-height, 22px);
|
|
3807
3819
|
font-weight: var(--button-button-ms-weight, 700);
|
|
3808
3820
|
}
|
|
3821
|
+
.ui-scrollbar::-webkit-scrollbar {
|
|
3822
|
+
height: 6px;
|
|
3823
|
+
width: 6px;
|
|
3824
|
+
background: rgba(0, 0, 0, 0.08);
|
|
3825
|
+
}
|
|
3826
|
+
.ui-scrollbar::-webkit-scrollbar-thumb {
|
|
3827
|
+
border-radius: 6px;
|
|
3828
|
+
background: rgba(121, 141, 150, 0.48);
|
|
3829
|
+
width: 6px;
|
|
3830
|
+
}
|
|
3831
|
+
.ui-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
3832
|
+
background: rgba(251, 252, 253, 0.48);
|
|
3833
|
+
cursor: pointer;
|
|
3834
|
+
}
|
|
3835
|
+
.ui-scrollbar::-webkit-scrollbar-corner {
|
|
3836
|
+
display: none;
|
|
3837
|
+
/* background: transparent; */
|
|
3838
|
+
}
|
|
3809
3839
|
.placeholder\:text-input-default-text::-moz-placeholder{
|
|
3810
3840
|
--tw-text-opacity: 1;
|
|
3811
3841
|
color: color-mix(in srgb, var(--input-color-default-text) calc(100% * var(--tw-text-opacity, 1)), transparent);
|