@dev-blinq/ui-systems 1.0.61 → 1.0.63
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/style.css +22 -12
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -185,37 +185,37 @@
|
|
|
185
185
|
.button[data-colorHierarchy=""]:hover {
|
|
186
186
|
background-color: #fff;
|
|
187
187
|
}
|
|
188
|
-
.button[data-colorHierarchy="brand/primary"]:
|
|
188
|
+
.button[data-colorHierarchy="brand/primary"]:active {
|
|
189
189
|
box-shadow: 0 0 0 4px var(--primary-30, #b5c5e7);
|
|
190
190
|
}
|
|
191
|
-
.button[data-colorHierarchy="brand/secondary"]:
|
|
191
|
+
.button[data-colorHierarchy="brand/secondary"]:active {
|
|
192
192
|
box-shadow: 0 0 0 4px #ffbd1a40;
|
|
193
193
|
}
|
|
194
|
-
.button[data-colorHierarchy="gray/secondary"]:
|
|
194
|
+
.button[data-colorHierarchy="gray/secondary"]:active {
|
|
195
195
|
box-shadow: 0 0 0 4px var(--neutural-50, #e6e6e6);
|
|
196
196
|
}
|
|
197
|
-
.button[data-colorHierarchy="white/secondary"]:
|
|
197
|
+
.button[data-colorHierarchy="white/secondary"]:active {
|
|
198
198
|
box-shadow: 0 0 0 4px var(--neutural-50, #e6e6e6);
|
|
199
199
|
}
|
|
200
|
-
.button[data-colorHierarchy="gray/linkContainer"]:
|
|
200
|
+
.button[data-colorHierarchy="gray/linkContainer"]:active {
|
|
201
201
|
box-shadow: 0 0 0 4px var(--neutural-50, #e6e6e6);
|
|
202
202
|
}
|
|
203
|
-
.button[data-colorHierarchy="gray/link"]:
|
|
203
|
+
.button[data-colorHierarchy="gray/link"]:active {
|
|
204
204
|
box-shadow: 0 0 0 4px var(--neutural-50, #e6e6e6);
|
|
205
205
|
}
|
|
206
|
-
.button[data-colorHierarchy="brand/link"]:
|
|
206
|
+
.button[data-colorHierarchy="brand/link"]:active {
|
|
207
207
|
box-shadow: 0 0 0 4px var(--primary-30, #b5c5e7);
|
|
208
208
|
}
|
|
209
|
-
.button[data-colorHierarchy="destructive/primary"]:
|
|
209
|
+
.button[data-colorHierarchy="destructive/primary"]:active {
|
|
210
210
|
box-shadow: 0 0 0 4px var(--destructive-30, #f9c7bc);
|
|
211
211
|
}
|
|
212
|
-
.button[data-colorHierarchy="destructive/secondary"]:
|
|
212
|
+
.button[data-colorHierarchy="destructive/secondary"]:active {
|
|
213
213
|
box-shadow: 0 0 0 4px var(--destructive-30, #f9c7bc);
|
|
214
214
|
}
|
|
215
|
-
.button[data-colorHierarchy="destructive/linkContainer"]:
|
|
215
|
+
.button[data-colorHierarchy="destructive/linkContainer"]:active {
|
|
216
216
|
box-shadow: 0 0 0 4px var(--destructive-30, #f9c7bc);
|
|
217
217
|
}
|
|
218
|
-
.button[data-colorHierarchy=""]:
|
|
218
|
+
.button[data-colorHierarchy=""]:active {
|
|
219
219
|
box-shadow: 0 0 0 4px var(--destructive-30, #f9c7bc);
|
|
220
220
|
}
|
|
221
221
|
.button[data-colorHierarchy="brand/primary"]:disabled {
|
|
@@ -508,7 +508,7 @@
|
|
|
508
508
|
.custom-input[data-error="true"] {
|
|
509
509
|
border: var(--border-radius-radius-none, 1px) solid
|
|
510
510
|
var(--border-error, #ea4621);
|
|
511
|
-
box-shadow:
|
|
511
|
+
box-shadow: none;
|
|
512
512
|
}
|
|
513
513
|
.blinq-checkbox input[data-size="sm"] + .checkmark {
|
|
514
514
|
width: 16px;
|
|
@@ -735,3 +735,13 @@
|
|
|
735
735
|
.toggle-option.active p {
|
|
736
736
|
color: var(--text-primary, #080808);
|
|
737
737
|
}
|
|
738
|
+
.error-message-input {
|
|
739
|
+
color: #ea4621;
|
|
740
|
+
font-size: 14px;
|
|
741
|
+
margin: 8px 0px 0px 0px;
|
|
742
|
+
line-height: 20px;
|
|
743
|
+
font-weight: 500;
|
|
744
|
+
}
|
|
745
|
+
.custom-input[data-error="true"]:hover {
|
|
746
|
+
box-shadow: 0px 0px 0px 4px var(--destructive-30, #f9c7bc);
|
|
747
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dev-blinq/ui-systems",
|
|
3
3
|
"description": "this package contains all ui components like button, input, checkbox, colors that blinq.io needs",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.63",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|