trepur_components 1.0.60 → 1.0.61
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/src/lib/components/AlertBar/AlertBar.d.ts +5 -5
- package/dist/src/lib/components/AlertBar/AlertBar.js +29 -33
- package/dist/src/lib/components/AlertBar/AlertBar.js.map +1 -1
- package/dist/src/lib/components/AlertBar/style.module.css +11 -2
- package/dist/src/lib/components/AlertBar/style.module.css.map +1 -1
- package/dist/src/lib/components/ComponentWrapper/style.module.css +3 -23
- package/dist/src/lib/components/ComponentWrapper/style.module.css.map +1 -1
- package/dist/src/lib/components/Form/Form.d.ts +4 -4
- package/dist/src/lib/components/Form/Form.js +9 -9
- package/dist/src/lib/components/Form/Form.js.map +1 -1
- package/dist/src/lib/components/Icon/Icon.d.ts +3 -3
- package/dist/src/lib/components/Icon/Icon.js +27 -15
- package/dist/src/lib/components/Icon/Icon.js.map +1 -1
- package/dist/src/lib/components/ImageInfo/ImageInfo.js +1 -1
- package/dist/src/lib/components/ImageInfo/ImageInfo.js.map +1 -1
- package/dist/src/lib/components/InformationIcon/InformationIcon.d.ts +3 -3
- package/dist/src/lib/components/InformationIcon/InformationIcon.js +18 -15
- package/dist/src/lib/components/InformationIcon/InformationIcon.js.map +1 -1
- package/dist/src/lib/components/InformationIcon/style.module.css +45 -88
- package/dist/src/lib/components/InformationIcon/style.module.css.map +1 -1
- package/dist/src/lib/components/InformationIconBlock/InformationIconBlock.d.ts +3 -3
- package/dist/src/lib/components/InformationIconBlock/InformationIconBlock.js +17 -18
- package/dist/src/lib/components/InformationIconBlock/InformationIconBlock.js.map +1 -1
- package/dist/src/lib/components/InformationIconBlock/style.module.css +1 -9
- package/dist/src/lib/components/InformationIconBlock/style.module.css.map +1 -1
- package/dist/src/lib/components/Input/Input.d.ts +2 -3
- package/dist/src/lib/components/Input/Input.js +11 -16
- package/dist/src/lib/components/Input/Input.js.map +1 -1
- package/dist/src/lib/components/Input/style.module.css +0 -4
- package/dist/src/lib/components/Input/style.module.css.map +1 -1
- package/dist/src/lib/components/Nav/Nav.js +4 -1
- package/dist/src/lib/components/Nav/Nav.js.map +1 -1
- package/dist/src/lib/components/Nav/style.module.css +1 -1
- package/dist/src/lib/components/Nav/style.module.css.map +1 -1
- package/dist/src/lib/components/SocialBlock/SocialBlock.d.ts +3 -8
- package/dist/src/lib/components/SocialBlock/SocialBlock.js +14 -53
- package/dist/src/lib/components/SocialBlock/SocialBlock.js.map +1 -1
- package/dist/src/lib/components/SocialBlock/style.module.css +36 -41
- package/dist/src/lib/components/SocialBlock/style.module.css.map +1 -1
- package/dist/src/lib/components/SocialButton/SocialButton.d.ts +3 -3
- package/dist/src/lib/components/SocialButton/SocialButton.js +12 -13
- package/dist/src/lib/components/SocialButton/SocialButton.js.map +1 -1
- package/dist/src/lib/components/SocialButton/style.module.css +5 -10
- package/dist/src/lib/components/SocialButton/style.module.css.map +1 -1
- package/dist/src/lib/components/TextAndTitle/TextAndTitle.d.ts +3 -3
- package/dist/src/lib/components/TextAndTitle/TextAndTitle.js +32 -52
- package/dist/src/lib/components/TextAndTitle/TextAndTitle.js.map +1 -1
- package/dist/src/lib/components/TextArea/TextArea.d.ts +15 -12
- package/dist/src/lib/components/TextArea/TextArea.js +21 -16
- package/dist/src/lib/components/TextArea/TextArea.js.map +1 -1
- package/dist/src/lib/components/TextArea/style.module.css +89 -20
- package/dist/src/lib/components/TextArea/style.module.css.map +1 -1
- package/package.json +1 -1
|
@@ -1,57 +1,126 @@
|
|
|
1
1
|
.classList {
|
|
2
|
+
|
|
3
|
+
margin-top: 1rem;
|
|
4
|
+
|
|
2
5
|
width: 100%;
|
|
3
|
-
|
|
6
|
+
|
|
4
7
|
background-color: var(--color-white);
|
|
5
|
-
|
|
6
|
-
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
7
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
8
|
-
--tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
|
|
9
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
8
|
+
|
|
10
9
|
cursor: pointer
|
|
11
10
|
}
|
|
12
11
|
|
|
12
|
+
/* .classList:active p {
|
|
13
|
+
@apply hidden;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.classList:active .value {
|
|
17
|
+
@apply pt-3 pb-4;
|
|
18
|
+
} */
|
|
19
|
+
|
|
13
20
|
.fullWidth {
|
|
21
|
+
|
|
14
22
|
width: 100%
|
|
15
23
|
}
|
|
16
24
|
|
|
17
25
|
@media (min-width: 640px) {
|
|
18
26
|
|
|
19
27
|
.notFullWidth {
|
|
28
|
+
|
|
20
29
|
width: 18rem
|
|
21
30
|
}
|
|
22
31
|
}
|
|
23
32
|
|
|
24
33
|
.labelWrapper {
|
|
34
|
+
|
|
25
35
|
position: absolute;
|
|
26
|
-
|
|
27
|
-
margin-
|
|
28
|
-
|
|
36
|
+
|
|
37
|
+
margin-left: 0.75rem;
|
|
38
|
+
|
|
39
|
+
margin-top: -0.75rem;
|
|
40
|
+
|
|
41
|
+
padding-left: 0.25rem;
|
|
42
|
+
|
|
43
|
+
padding-right: 0.25rem;
|
|
44
|
+
|
|
45
|
+
border-radius: 1rem;
|
|
46
|
+
|
|
29
47
|
background-color: var(--color-white);
|
|
30
|
-
font-size: 12px;
|
|
31
|
-
font-weight: 100
|
|
32
|
-
}
|
|
33
48
|
|
|
34
|
-
|
|
49
|
+
font-size: 16px;
|
|
35
50
|
|
|
51
|
+
font-weight: 400
|
|
36
52
|
}
|
|
37
53
|
|
|
38
54
|
.required {
|
|
55
|
+
|
|
39
56
|
font-weight: 600;
|
|
57
|
+
|
|
40
58
|
color: var(--color-error)
|
|
41
59
|
}
|
|
42
60
|
|
|
43
61
|
.value {
|
|
44
|
-
|
|
62
|
+
|
|
45
63
|
width: 100%;
|
|
46
|
-
|
|
47
|
-
border-
|
|
64
|
+
|
|
65
|
+
border-radius: 0.375rem;
|
|
66
|
+
|
|
48
67
|
background-color: var(--color-white);
|
|
49
|
-
|
|
50
|
-
padding-
|
|
68
|
+
|
|
69
|
+
padding-top: 0.5rem;
|
|
70
|
+
|
|
71
|
+
padding-bottom: 0.5rem;
|
|
72
|
+
|
|
51
73
|
padding-left: 1rem;
|
|
52
|
-
|
|
74
|
+
|
|
53
75
|
color: var(--color-ink);
|
|
76
|
+
|
|
54
77
|
cursor: pointer;
|
|
55
|
-
|
|
78
|
+
|
|
79
|
+
border-width: 1px;
|
|
80
|
+
|
|
81
|
+
border-color: var(--color-black);
|
|
82
|
+
|
|
83
|
+
font-size: 22px
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/* .value:focus {
|
|
87
|
+
@apply pt-3 pb-4;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.value:focus ~ label {
|
|
91
|
+
@apply text-xl;
|
|
92
|
+
} */
|
|
93
|
+
|
|
94
|
+
.errors {
|
|
95
|
+
|
|
96
|
+
font-size: 16px;
|
|
97
|
+
|
|
98
|
+
font-weight: 400;
|
|
99
|
+
|
|
100
|
+
color: var(--color-error)
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.errorState {
|
|
104
|
+
|
|
105
|
+
border-width: 2px;
|
|
106
|
+
|
|
107
|
+
border-color: var(--color-error)
|
|
56
108
|
}
|
|
109
|
+
|
|
110
|
+
.labelError {
|
|
111
|
+
|
|
112
|
+
color: var(--color-error)
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.errorText {
|
|
116
|
+
|
|
117
|
+
margin-top: 0.25rem;
|
|
118
|
+
|
|
119
|
+
border-left-width: 4px;
|
|
120
|
+
|
|
121
|
+
border-color: var(--color-error);
|
|
122
|
+
|
|
123
|
+
padding-left: 0.75rem
|
|
124
|
+
}
|
|
125
|
+
|
|
57
126
|
/*# sourceMappingURL=style.module.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../src/lib/components/TextArea/style.module.css"],"names":[],"mappings":"AACI
|
|
1
|
+
{"version":3,"sources":["../../../../../src/lib/components/TextArea/style.module.css"],"names":[],"mappings":"AACI;;IAAA,gBAA2B;;IAA3B,WAA2B;;IAA3B,oCAA2B;;IAC3B;AAD2B;;AAI/B;;;;;;IAMI;;AAGA;;IAAA;AAAa;;AAIb;;IAAA;;QAAA;IAAc;AAAA;;AAId;;IAAA,kBAA+B;;IAA/B,oBAA+B;;IAA/B,oBAA+B;;IAA/B,qBAA+B;;IAA/B,sBAA+B;;IAC/B,mBAAgD;;IAAhD,oCAAgD;;IAAhD,eAAgD;;IAAhD;AAD+B;;AAK/B;;IAAA,gBAA+B;;IAA/B;AAA+B;;AAI/B;;IAAA,WAAoD;;IAApD,uBAAoD;;IAApD,oCAAoD;;IAApD,mBAAoD;;IAApD,sBAAoD;;IAApD,kBAAoD;;IAApD,uBAAoD;;IACpD,eAAqB;;IACrB,iBAA0B;;IAA1B,gCAA0B;;IAC1B;AAHoD;;AAMxD;;;;;;GAMG;;AAGC;;IAAA,eAAsC;;IAAtC,gBAAsC;;IAAtC;AAAsC;;AAItC;;IAAA,iBAA4B;;IAA5B;AAA4B;;AAI5B;;IAAA;AAAiB;;AAIjB;;IAAA,mBAAwC;;IAAxC,sBAAwC;;IAAxC,gCAAwC;;IAAxC;AAAwC","file":"style.module.css","sourcesContent":[".classList {\n @apply w-full bg-white mt-4;\n @apply cursor-pointer;\n}\n\n/* .classList:active p {\n @apply hidden;\n} \n\n.classList:active .value {\n @apply pt-3 pb-4;\n} */\n\n.fullWidth {\n @apply w-full;\n}\n\n.notFullWidth {\n @apply sm:w-72;\n}\n\n.labelWrapper {\n @apply px-1 ml-3 absolute -mt-3;\n @apply bg-white text-sm font-regular rounded-2xl;\n}\n\n.required {\n @apply text-error font-semiBold;\n}\n\n.value {\n @apply py-2 pl-4 rounded-md text-ink bg-white w-full;\n @apply cursor-pointer;\n @apply border border-black;\n @apply text-md;\n}\n\n/* .value:focus {\n @apply pt-3 pb-4;\n}\n\n.value:focus ~ label {\n @apply text-xl;\n} */\n\n.errors {\n @apply text-error text-sm font-regular;\n}\n\n.errorState {\n @apply border-2 border-error;\n}\n\n.labelError {\n @apply text-error;\n}\n\n.errorText {\n @apply border-l-4 border-error pl-3 mt-1;\n}\n"]}
|