@brickclay-org/ui 0.1.78 → 0.1.80
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/fesm2022/brickclay-org-ui.mjs +189 -29
- package/fesm2022/brickclay-org-ui.mjs.map +1 -1
- package/index.d.ts +111 -13
- package/package.json +1 -1
- package/src/assets/avatars/300-1.png +0 -0
- package/src/assets/avatars/300-2.png +0 -0
- package/src/assets/icons/bank-card-icon.svg +6 -0
- package/src/assets/icons/dollar-icon.svg +5 -0
- package/src/assets/icons/global/alert-circle-white.svg +3 -0
- package/src/assets/icons/global/calendar-black-icon.svg +12 -0
- package/src/assets/icons/global/calendar-white-icon.svg +12 -0
- package/src/assets/icons/global/calender.svg +19 -0
- package/src/assets/icons/global/kanban-black-icon.svg +5 -0
- package/src/assets/icons/global/kanban-white-icon.svg +5 -0
- package/src/assets/icons/global/location-black-icon.svg +4 -0
- package/src/assets/icons/global/location-white-icon.svg +4 -0
- package/src/assets/icons/global/notification.svg +4 -0
- package/src/assets/icons/global/resources-black-icon.svg +6 -0
- package/src/assets/icons/global/resources-white-icon.svg +6 -0
- package/src/assets/icons/global/search.svg +4 -0
- package/src/assets/icons/global/setting-black.svg +4 -0
- package/src/assets/icons/global/table-black-icon.svg +5 -0
- package/src/assets/icons/global/table-white-icon.svg +5 -0
- package/src/assets/icons/global/user.svg +11 -0
- package/src/assets/images/icons/global/badge-close.svg +3 -0
- package/src/assets/images/icons/global/eye-icon.svg +4 -0
- package/src/assets/images/icons/global/eye-slash-icon.svg +8 -0
- package/src/assets/images/icons/global/info-circle.svg +5 -0
- package/src/assets/images/icons/global/input-arrow-down.svg +3 -0
- package/src/lib/badge/badge.css +8 -4
- package/src/lib/breadcrumb/breadcrumb.css +23 -0
- package/src/lib/input/input.css +49 -0
- package/src/lib/tabs/tabs.css +7 -0
- package/src/lib/ui-button/ui-button.css +1 -1
- package/src/styles.css +1 -0
package/src/lib/input/input.css
CHANGED
|
@@ -66,6 +66,11 @@
|
|
|
66
66
|
@apply pl-[72px];
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
/* Currency Input Field - Add padding-left for the dollar icon box */
|
|
70
|
+
.input-field--currency {
|
|
71
|
+
@apply pl-[3.5rem];
|
|
72
|
+
}
|
|
73
|
+
|
|
69
74
|
/* Icon Left - Add padding-left for icon space */
|
|
70
75
|
.input-field--icon-left {
|
|
71
76
|
@apply pl-[48px];
|
|
@@ -224,6 +229,38 @@
|
|
|
224
229
|
@apply bg-[#F4F4F6] text-[#A1A3AE] border-r-[#E3E3E7];
|
|
225
230
|
}
|
|
226
231
|
|
|
232
|
+
/* Currency Icon - Bordered box like the URL prefix, holds the dollar icon */
|
|
233
|
+
.input-currency-icon {
|
|
234
|
+
@apply absolute left-0 top-0 bottom-0 w-11 flex items-center justify-center bg-white border transition-colors duration-200 pointer-events-none;
|
|
235
|
+
border-top-left-radius: 4px;
|
|
236
|
+
border-bottom-left-radius: 4px;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.input-currency-icon img {
|
|
240
|
+
@apply w-5 h-5;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
/* Currency Icon - State Specific Border Colors (matches input border) */
|
|
244
|
+
.input-currency-icon--default {
|
|
245
|
+
@apply border-[#E3E3E7];
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.input-currency-icon--focused {
|
|
249
|
+
@apply border-[#6B7080];
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.input-currency-icon--filled {
|
|
253
|
+
@apply border-[#E3E3E7];
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.input-currency-icon--error {
|
|
257
|
+
@apply border-[#E7000B];
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.input-currency-icon--disabled {
|
|
261
|
+
@apply bg-[#F4F4F6] border-[#E3E3E7];
|
|
262
|
+
}
|
|
263
|
+
|
|
227
264
|
/* Hint text */
|
|
228
265
|
.input-hint {
|
|
229
266
|
@apply text-xs text-[#868997] font-normal;
|
|
@@ -295,6 +332,18 @@
|
|
|
295
332
|
@apply pl-16;
|
|
296
333
|
}
|
|
297
334
|
|
|
335
|
+
.input-container--sm .input-field--currency {
|
|
336
|
+
@apply pl-9;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.input-container--sm .input-currency-icon {
|
|
340
|
+
@apply w-8;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.input-container--sm .input-currency-icon img {
|
|
344
|
+
@apply w-4 h-4;
|
|
345
|
+
}
|
|
346
|
+
|
|
298
347
|
.input-container--sm .input-field--icon.input-field--url {
|
|
299
348
|
@apply pl-24;
|
|
300
349
|
}
|
package/src/lib/tabs/tabs.css
CHANGED
|
@@ -48,6 +48,13 @@
|
|
|
48
48
|
@apply bg-[#C10007] text-white border-0;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
+
/* Hover only for the default (non-segmented) variant — segmented has its own
|
|
52
|
+
error hover styling below, which this !important would otherwise override
|
|
53
|
+
regardless of specificity. */
|
|
54
|
+
.tabs-button--error:not(.tabs-button--segmented):hover {
|
|
55
|
+
@apply !bg-[#C10007] !text-white;
|
|
56
|
+
}
|
|
57
|
+
|
|
51
58
|
/* Tab Button - Disabled State */
|
|
52
59
|
.tabs-button--disabled {
|
|
53
60
|
@apply opacity-50 cursor-not-allowed;
|