@bodynarf/react.components 1.14.0 → 1.14.1
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/changelog.md +1 -1
- package/components/accordion/component/index.js +1 -1
- package/components/accordion/component/style.css +21 -0
- package/components/anchor/component/style.css +12 -0
- package/components/button/component/style.css +10 -0
- package/components/dropdown/component/style.css +101 -0
- package/components/dropdown/components/compact/index.d.ts.map +1 -1
- package/components/dropdown/components/compact/index.js +3 -3
- package/components/dropdown/components/label/components/empty/index.js +1 -1
- package/components/dropdown/components/label/components/withSearch/style.css +21 -0
- package/components/dropdown/types.d.ts +6 -6
- package/components/dropdown/types.d.ts.map +1 -1
- package/components/file/component/styles.css +74 -0
- package/components/icon/component/style.css +19 -0
- package/components/index.d.ts +0 -2
- package/components/index.d.ts.map +1 -1
- package/components/index.js +0 -2
- package/components/modal/component/style.css +32 -0
- package/components/multiselect/component/style.css +20 -0
- package/components/multiselect/components/withoutLabel/index.d.ts.map +1 -1
- package/components/multiselect/components/withoutLabel/index.js +3 -3
- package/components/primitives/checkbox/component/style.css +19 -0
- package/components/primitives/color/component/style.css +15 -0
- package/components/primitives/date/component/style.css +9 -0
- package/components/primitives/internal/hint/style.css +4 -0
- package/components/primitives/password/component/style.css +10 -0
- package/components/primitives/radioGroup/component/style.css +382 -0
- package/components/primitives/radioGroup/component/style.scss +2 -0
- package/components/primitives/slider/component/style.css +438 -0
- package/components/primitives/slider/component/style.scss +2 -0
- package/components/primitives/switch/component/style.css +482 -0
- package/components/primitives/switch/component/style.scss +2 -0
- package/components/primitives/timePicker/component/style.css +21 -0
- package/components/progress/component/style.css +167 -0
- package/components/search/component/style.css +18 -0
- package/components/stepper/component/style.css +510 -0
- package/components/stepper/component/style.scss +2 -0
- package/components/table/component/style.css +14 -0
- package/components/tabs/component/style.css +6 -0
- package/components/tag/component/style.css +19 -0
- package/components/timeline/component/style.css +488 -0
- package/components/timeline/component/style.scss +2 -0
- package/package.json +10 -3
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,488 @@
|
|
|
1
|
+
@keyframes timeline-fade-in-left {
|
|
2
|
+
from {
|
|
3
|
+
opacity: 0;
|
|
4
|
+
transform: translateX(-20px);
|
|
5
|
+
}
|
|
6
|
+
to {
|
|
7
|
+
opacity: 1;
|
|
8
|
+
transform: translateX(0);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
@keyframes timeline-fade-in-right {
|
|
12
|
+
from {
|
|
13
|
+
opacity: 0;
|
|
14
|
+
transform: translateX(20px);
|
|
15
|
+
}
|
|
16
|
+
to {
|
|
17
|
+
opacity: 1;
|
|
18
|
+
transform: translateX(0);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
.bbr-timeline {
|
|
22
|
+
position: relative;
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: column;
|
|
25
|
+
width: 100%;
|
|
26
|
+
}
|
|
27
|
+
.bbr-timeline .bbr-timeline-item {
|
|
28
|
+
position: relative;
|
|
29
|
+
display: flex;
|
|
30
|
+
align-items: flex-start;
|
|
31
|
+
padding-bottom: 2rem;
|
|
32
|
+
}
|
|
33
|
+
.bbr-timeline .bbr-timeline-item:last-child {
|
|
34
|
+
padding-bottom: 0;
|
|
35
|
+
}
|
|
36
|
+
.bbr-timeline .bbr-timeline-item:last-child .bbr-timeline-connector {
|
|
37
|
+
display: none;
|
|
38
|
+
}
|
|
39
|
+
.bbr-timeline .bbr-timeline-marker {
|
|
40
|
+
display: flex;
|
|
41
|
+
align-items: center;
|
|
42
|
+
justify-content: center;
|
|
43
|
+
width: 1.5rem;
|
|
44
|
+
height: 1.5rem;
|
|
45
|
+
min-width: 1.5rem;
|
|
46
|
+
border-radius: 50%;
|
|
47
|
+
background: hsl(171, 100%, 41%);
|
|
48
|
+
border: 2px solid hsl(171, 100%, 41%);
|
|
49
|
+
color: hsl(0, 0%, 100%);
|
|
50
|
+
font-size: 0.75rem;
|
|
51
|
+
font-weight: 600;
|
|
52
|
+
z-index: 1;
|
|
53
|
+
flex-shrink: 0;
|
|
54
|
+
}
|
|
55
|
+
.bbr-timeline .bbr-timeline-icon,
|
|
56
|
+
.bbr-timeline .bbr-timeline-marker-content {
|
|
57
|
+
display: flex;
|
|
58
|
+
align-items: center;
|
|
59
|
+
justify-content: center;
|
|
60
|
+
font-size: 0.65rem;
|
|
61
|
+
}
|
|
62
|
+
.bbr-timeline .bbr-timeline-content {
|
|
63
|
+
flex: 1;
|
|
64
|
+
background: hsl(0, 0%, 100%);
|
|
65
|
+
border: 1px solid hsl(0, 0%, 86%);
|
|
66
|
+
border-radius: 4px;
|
|
67
|
+
padding: 1rem;
|
|
68
|
+
margin-left: 1rem;
|
|
69
|
+
box-shadow: 0 2px 4px rgba(10.2, 10.2, 10.2, 0.05);
|
|
70
|
+
}
|
|
71
|
+
.bbr-timeline .bbr-timeline-title {
|
|
72
|
+
font-weight: 600;
|
|
73
|
+
font-size: 1rem;
|
|
74
|
+
color: hsl(0, 0%, 21%);
|
|
75
|
+
line-height: 1.25;
|
|
76
|
+
}
|
|
77
|
+
.bbr-timeline .bbr-timeline-text {
|
|
78
|
+
margin-top: 0.5rem;
|
|
79
|
+
font-size: 0.875rem;
|
|
80
|
+
color: hsl(0, 0%, 48%);
|
|
81
|
+
line-height: 1.5;
|
|
82
|
+
}
|
|
83
|
+
.bbr-timeline .bbr-timeline-timestamp {
|
|
84
|
+
font-size: 0.75rem;
|
|
85
|
+
color: hsl(0, 0%, 71%);
|
|
86
|
+
margin-bottom: 0.25rem;
|
|
87
|
+
}
|
|
88
|
+
.bbr-timeline .bbr-timeline-connector {
|
|
89
|
+
position: absolute;
|
|
90
|
+
left: calc(0.75rem - 1px);
|
|
91
|
+
top: 1.5rem;
|
|
92
|
+
width: 2px;
|
|
93
|
+
height: calc(100% - 1.5rem);
|
|
94
|
+
background: hsl(0, 0%, 86%);
|
|
95
|
+
z-index: 0;
|
|
96
|
+
}
|
|
97
|
+
.bbr-timeline.is-left-aligned .bbr-timeline-item {
|
|
98
|
+
padding-left: 0;
|
|
99
|
+
}
|
|
100
|
+
.bbr-timeline.is-centered .bbr-timeline-item {
|
|
101
|
+
width: 50%;
|
|
102
|
+
margin-left: 50%;
|
|
103
|
+
}
|
|
104
|
+
.bbr-timeline.is-centered .bbr-timeline-item:nth-child(odd) {
|
|
105
|
+
margin-left: 0;
|
|
106
|
+
flex-direction: row-reverse;
|
|
107
|
+
text-align: right;
|
|
108
|
+
}
|
|
109
|
+
.bbr-timeline.is-centered .bbr-timeline-item:nth-child(odd) .bbr-timeline-content {
|
|
110
|
+
margin-left: 0;
|
|
111
|
+
margin-right: 1rem;
|
|
112
|
+
}
|
|
113
|
+
.bbr-timeline.is-centered .bbr-timeline-item:nth-child(odd) .bbr-timeline-connector {
|
|
114
|
+
left: auto;
|
|
115
|
+
right: calc(0.75rem - 1px);
|
|
116
|
+
}
|
|
117
|
+
.bbr-timeline.is-centered .bbr-timeline-marker {
|
|
118
|
+
position: absolute;
|
|
119
|
+
left: 50%;
|
|
120
|
+
transform: translateX(-50%);
|
|
121
|
+
}
|
|
122
|
+
.bbr-timeline.is-centered .bbr-timeline-item:nth-child(odd) .bbr-timeline-marker {
|
|
123
|
+
left: auto;
|
|
124
|
+
right: 0;
|
|
125
|
+
transform: translateX(50%);
|
|
126
|
+
}
|
|
127
|
+
.bbr-timeline.is-centered .bbr-timeline-item:nth-child(even) .bbr-timeline-marker {
|
|
128
|
+
left: 0;
|
|
129
|
+
transform: translateX(-50%);
|
|
130
|
+
}
|
|
131
|
+
.bbr-timeline.is-centered .bbr-timeline-connector {
|
|
132
|
+
left: 50%;
|
|
133
|
+
transform: translateX(-50%);
|
|
134
|
+
}
|
|
135
|
+
.bbr-timeline.is-centered .bbr-timeline-item:nth-child(odd) .bbr-timeline-connector {
|
|
136
|
+
left: auto;
|
|
137
|
+
right: 0;
|
|
138
|
+
transform: translateX(50%);
|
|
139
|
+
}
|
|
140
|
+
.bbr-timeline.is-centered .bbr-timeline-item:nth-child(even) .bbr-timeline-connector {
|
|
141
|
+
left: 0;
|
|
142
|
+
transform: translateX(-50%);
|
|
143
|
+
}
|
|
144
|
+
.bbr-timeline.is-centered.has-separate-timestamps .bbr-timeline-timestamp {
|
|
145
|
+
position: absolute;
|
|
146
|
+
width: 100%;
|
|
147
|
+
margin-bottom: 0;
|
|
148
|
+
}
|
|
149
|
+
.bbr-timeline.is-centered.has-separate-timestamps .bbr-timeline-timestamp.is-left {
|
|
150
|
+
right: calc(50% + 0.75rem + 1rem);
|
|
151
|
+
left: auto;
|
|
152
|
+
text-align: right;
|
|
153
|
+
}
|
|
154
|
+
.bbr-timeline.is-centered.has-separate-timestamps .bbr-timeline-timestamp.is-right {
|
|
155
|
+
left: calc(50% + 0.75rem + 1rem);
|
|
156
|
+
right: auto;
|
|
157
|
+
text-align: left;
|
|
158
|
+
}
|
|
159
|
+
.bbr-timeline.is-centered.has-separate-timestamps .bbr-timeline-item:nth-child(odd) .bbr-timeline-timestamp.is-left {
|
|
160
|
+
display: none;
|
|
161
|
+
}
|
|
162
|
+
.bbr-timeline.is-centered.has-separate-timestamps .bbr-timeline-item:nth-child(even) .bbr-timeline-timestamp.is-right {
|
|
163
|
+
display: none;
|
|
164
|
+
}
|
|
165
|
+
.bbr-timeline.is-hollow .bbr-timeline-marker {
|
|
166
|
+
background: hsl(0, 0%, 100%);
|
|
167
|
+
}
|
|
168
|
+
.bbr-timeline.is-hollow .bbr-timeline-item.is-white .bbr-timeline-marker {
|
|
169
|
+
background: hsl(0, 0%, 100%);
|
|
170
|
+
border-color: hsl(0, 0%, 100%);
|
|
171
|
+
color: hsl(0, 0%, 100%);
|
|
172
|
+
}
|
|
173
|
+
.bbr-timeline.is-hollow .bbr-timeline-item.is-black .bbr-timeline-marker {
|
|
174
|
+
background: hsl(0, 0%, 100%);
|
|
175
|
+
border-color: hsl(0, 0%, 4%);
|
|
176
|
+
color: hsl(0, 0%, 4%);
|
|
177
|
+
}
|
|
178
|
+
.bbr-timeline.is-hollow .bbr-timeline-item.is-light .bbr-timeline-marker {
|
|
179
|
+
background: hsl(0, 0%, 100%);
|
|
180
|
+
border-color: hsl(0, 0%, 96%);
|
|
181
|
+
color: hsl(0, 0%, 96%);
|
|
182
|
+
}
|
|
183
|
+
.bbr-timeline.is-hollow .bbr-timeline-item.is-dark .bbr-timeline-marker {
|
|
184
|
+
background: hsl(0, 0%, 100%);
|
|
185
|
+
border-color: hsl(0, 0%, 21%);
|
|
186
|
+
color: hsl(0, 0%, 21%);
|
|
187
|
+
}
|
|
188
|
+
.bbr-timeline.is-hollow .bbr-timeline-item.is-primary .bbr-timeline-marker {
|
|
189
|
+
background: hsl(0, 0%, 100%);
|
|
190
|
+
border-color: hsl(171, 100%, 41%);
|
|
191
|
+
color: hsl(171, 100%, 41%);
|
|
192
|
+
}
|
|
193
|
+
.bbr-timeline.is-hollow .bbr-timeline-item.is-link .bbr-timeline-marker {
|
|
194
|
+
background: hsl(0, 0%, 100%);
|
|
195
|
+
border-color: hsl(229, 53%, 53%);
|
|
196
|
+
color: hsl(229, 53%, 53%);
|
|
197
|
+
}
|
|
198
|
+
.bbr-timeline.is-hollow .bbr-timeline-item.is-info .bbr-timeline-marker {
|
|
199
|
+
background: hsl(0, 0%, 100%);
|
|
200
|
+
border-color: hsl(207, 61%, 53%);
|
|
201
|
+
color: hsl(207, 61%, 53%);
|
|
202
|
+
}
|
|
203
|
+
.bbr-timeline.is-hollow .bbr-timeline-item.is-success .bbr-timeline-marker {
|
|
204
|
+
background: hsl(0, 0%, 100%);
|
|
205
|
+
border-color: hsl(153, 53%, 53%);
|
|
206
|
+
color: hsl(153, 53%, 53%);
|
|
207
|
+
}
|
|
208
|
+
.bbr-timeline.is-hollow .bbr-timeline-item.is-warning .bbr-timeline-marker {
|
|
209
|
+
background: hsl(0, 0%, 100%);
|
|
210
|
+
border-color: hsl(44, 100%, 77%);
|
|
211
|
+
color: hsl(44, 100%, 77%);
|
|
212
|
+
}
|
|
213
|
+
.bbr-timeline.is-hollow .bbr-timeline-item.is-danger .bbr-timeline-marker {
|
|
214
|
+
background: hsl(0, 0%, 100%);
|
|
215
|
+
border-color: hsl(348, 86%, 61%);
|
|
216
|
+
color: hsl(348, 86%, 61%);
|
|
217
|
+
}
|
|
218
|
+
.bbr-timeline.is-animated .bbr-timeline-item {
|
|
219
|
+
opacity: 0;
|
|
220
|
+
}
|
|
221
|
+
.bbr-timeline.is-animated .bbr-timeline-item.is-animated-left {
|
|
222
|
+
animation: timeline-fade-in-left 0.5s ease forwards;
|
|
223
|
+
}
|
|
224
|
+
.bbr-timeline.is-animated .bbr-timeline-item.is-animated-right {
|
|
225
|
+
animation: timeline-fade-in-right 0.5s ease forwards;
|
|
226
|
+
}
|
|
227
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(1) {
|
|
228
|
+
animation-delay: 0s;
|
|
229
|
+
}
|
|
230
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(2) {
|
|
231
|
+
animation-delay: 0.15s;
|
|
232
|
+
}
|
|
233
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(3) {
|
|
234
|
+
animation-delay: 0.3s;
|
|
235
|
+
}
|
|
236
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(4) {
|
|
237
|
+
animation-delay: 0.45s;
|
|
238
|
+
}
|
|
239
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(5) {
|
|
240
|
+
animation-delay: 0.6s;
|
|
241
|
+
}
|
|
242
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(6) {
|
|
243
|
+
animation-delay: 0.75s;
|
|
244
|
+
}
|
|
245
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(7) {
|
|
246
|
+
animation-delay: 0.9s;
|
|
247
|
+
}
|
|
248
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(8) {
|
|
249
|
+
animation-delay: 1.05s;
|
|
250
|
+
}
|
|
251
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(9) {
|
|
252
|
+
animation-delay: 1.2s;
|
|
253
|
+
}
|
|
254
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(10) {
|
|
255
|
+
animation-delay: 1.35s;
|
|
256
|
+
}
|
|
257
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(11) {
|
|
258
|
+
animation-delay: 1.5s;
|
|
259
|
+
}
|
|
260
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(12) {
|
|
261
|
+
animation-delay: 1.65s;
|
|
262
|
+
}
|
|
263
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(13) {
|
|
264
|
+
animation-delay: 1.8s;
|
|
265
|
+
}
|
|
266
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(14) {
|
|
267
|
+
animation-delay: 1.95s;
|
|
268
|
+
}
|
|
269
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(15) {
|
|
270
|
+
animation-delay: 2.1s;
|
|
271
|
+
}
|
|
272
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(16) {
|
|
273
|
+
animation-delay: 2.25s;
|
|
274
|
+
}
|
|
275
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(17) {
|
|
276
|
+
animation-delay: 2.4s;
|
|
277
|
+
}
|
|
278
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(18) {
|
|
279
|
+
animation-delay: 2.55s;
|
|
280
|
+
}
|
|
281
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(19) {
|
|
282
|
+
animation-delay: 2.7s;
|
|
283
|
+
}
|
|
284
|
+
.bbr-timeline.is-animated .bbr-timeline-item:nth-child(20) {
|
|
285
|
+
animation-delay: 2.85s;
|
|
286
|
+
}
|
|
287
|
+
.bbr-timeline.is-small .bbr-timeline-marker {
|
|
288
|
+
width: 1.25rem;
|
|
289
|
+
height: 1.25rem;
|
|
290
|
+
min-width: 1.25rem;
|
|
291
|
+
font-size: 0.625rem;
|
|
292
|
+
}
|
|
293
|
+
.bbr-timeline.is-small .bbr-timeline-icon,
|
|
294
|
+
.bbr-timeline.is-small .bbr-timeline-marker-content {
|
|
295
|
+
font-size: 0.55rem;
|
|
296
|
+
}
|
|
297
|
+
.bbr-timeline.is-small .bbr-timeline-title {
|
|
298
|
+
font-size: 0.875rem;
|
|
299
|
+
}
|
|
300
|
+
.bbr-timeline.is-small .bbr-timeline-text {
|
|
301
|
+
font-size: 0.75rem;
|
|
302
|
+
}
|
|
303
|
+
.bbr-timeline.is-small .bbr-timeline-timestamp {
|
|
304
|
+
font-size: 0.625rem;
|
|
305
|
+
}
|
|
306
|
+
.bbr-timeline.is-small .bbr-timeline-content {
|
|
307
|
+
padding: 0.75rem;
|
|
308
|
+
}
|
|
309
|
+
.bbr-timeline.is-small .bbr-timeline-connector {
|
|
310
|
+
left: calc(0.625rem - 1px);
|
|
311
|
+
top: 1.25rem;
|
|
312
|
+
height: calc(100% - 1.25rem);
|
|
313
|
+
}
|
|
314
|
+
.bbr-timeline.is-medium .bbr-timeline-marker {
|
|
315
|
+
width: 1.75rem;
|
|
316
|
+
height: 1.75rem;
|
|
317
|
+
min-width: 1.75rem;
|
|
318
|
+
font-size: 0.875rem;
|
|
319
|
+
}
|
|
320
|
+
.bbr-timeline.is-medium .bbr-timeline-icon,
|
|
321
|
+
.bbr-timeline.is-medium .bbr-timeline-marker-content {
|
|
322
|
+
font-size: 0.75rem;
|
|
323
|
+
}
|
|
324
|
+
.bbr-timeline.is-medium .bbr-timeline-title {
|
|
325
|
+
font-size: 1.125rem;
|
|
326
|
+
}
|
|
327
|
+
.bbr-timeline.is-medium .bbr-timeline-text {
|
|
328
|
+
font-size: 1rem;
|
|
329
|
+
}
|
|
330
|
+
.bbr-timeline.is-medium .bbr-timeline-connector {
|
|
331
|
+
left: calc(0.875rem - 1px);
|
|
332
|
+
top: 1.75rem;
|
|
333
|
+
height: calc(100% - 1.75rem);
|
|
334
|
+
}
|
|
335
|
+
.bbr-timeline.is-large .bbr-timeline-marker {
|
|
336
|
+
width: 2rem;
|
|
337
|
+
height: 2rem;
|
|
338
|
+
min-width: 2rem;
|
|
339
|
+
font-size: 1rem;
|
|
340
|
+
}
|
|
341
|
+
.bbr-timeline.is-large .bbr-timeline-icon,
|
|
342
|
+
.bbr-timeline.is-large .bbr-timeline-marker-content {
|
|
343
|
+
font-size: 0.875rem;
|
|
344
|
+
}
|
|
345
|
+
.bbr-timeline.is-large .bbr-timeline-title {
|
|
346
|
+
font-size: 1.25rem;
|
|
347
|
+
}
|
|
348
|
+
.bbr-timeline.is-large .bbr-timeline-text {
|
|
349
|
+
font-size: 1.125rem;
|
|
350
|
+
}
|
|
351
|
+
.bbr-timeline.is-large .bbr-timeline-content {
|
|
352
|
+
padding: 1.25rem;
|
|
353
|
+
}
|
|
354
|
+
.bbr-timeline.is-large .bbr-timeline-connector {
|
|
355
|
+
left: calc(1rem - 1px);
|
|
356
|
+
top: 2rem;
|
|
357
|
+
height: calc(100% - 2rem);
|
|
358
|
+
}
|
|
359
|
+
.bbr-timeline.is-white .bbr-timeline-marker {
|
|
360
|
+
background: hsl(0, 0%, 100%);
|
|
361
|
+
border-color: hsl(0, 0%, 100%);
|
|
362
|
+
color: hsl(0, 0%, 4%);
|
|
363
|
+
}
|
|
364
|
+
.bbr-timeline.is-white .bbr-timeline-connector {
|
|
365
|
+
background: rgba(255, 255, 255, 0.3);
|
|
366
|
+
}
|
|
367
|
+
.bbr-timeline .bbr-timeline-item.is-white .bbr-timeline-marker {
|
|
368
|
+
background: hsl(0, 0%, 100%);
|
|
369
|
+
border-color: hsl(0, 0%, 100%);
|
|
370
|
+
color: hsl(0, 0%, 4%);
|
|
371
|
+
}
|
|
372
|
+
.bbr-timeline.is-black .bbr-timeline-marker {
|
|
373
|
+
background: hsl(0, 0%, 4%);
|
|
374
|
+
border-color: hsl(0, 0%, 4%);
|
|
375
|
+
color: hsl(0, 0%, 100%);
|
|
376
|
+
}
|
|
377
|
+
.bbr-timeline.is-black .bbr-timeline-connector {
|
|
378
|
+
background: rgba(10.2, 10.2, 10.2, 0.3);
|
|
379
|
+
}
|
|
380
|
+
.bbr-timeline .bbr-timeline-item.is-black .bbr-timeline-marker {
|
|
381
|
+
background: hsl(0, 0%, 4%);
|
|
382
|
+
border-color: hsl(0, 0%, 4%);
|
|
383
|
+
color: hsl(0, 0%, 100%);
|
|
384
|
+
}
|
|
385
|
+
.bbr-timeline.is-light .bbr-timeline-marker {
|
|
386
|
+
background: hsl(0, 0%, 96%);
|
|
387
|
+
border-color: hsl(0, 0%, 96%);
|
|
388
|
+
color: rgba(0, 0, 0, 0.7);
|
|
389
|
+
}
|
|
390
|
+
.bbr-timeline.is-light .bbr-timeline-connector {
|
|
391
|
+
background: rgba(244.8, 244.8, 244.8, 0.3);
|
|
392
|
+
}
|
|
393
|
+
.bbr-timeline .bbr-timeline-item.is-light .bbr-timeline-marker {
|
|
394
|
+
background: hsl(0, 0%, 96%);
|
|
395
|
+
border-color: hsl(0, 0%, 96%);
|
|
396
|
+
color: rgba(0, 0, 0, 0.7);
|
|
397
|
+
}
|
|
398
|
+
.bbr-timeline.is-dark .bbr-timeline-marker {
|
|
399
|
+
background: hsl(0, 0%, 21%);
|
|
400
|
+
border-color: hsl(0, 0%, 21%);
|
|
401
|
+
color: #fff;
|
|
402
|
+
}
|
|
403
|
+
.bbr-timeline.is-dark .bbr-timeline-connector {
|
|
404
|
+
background: rgba(53.55, 53.55, 53.55, 0.3);
|
|
405
|
+
}
|
|
406
|
+
.bbr-timeline .bbr-timeline-item.is-dark .bbr-timeline-marker {
|
|
407
|
+
background: hsl(0, 0%, 21%);
|
|
408
|
+
border-color: hsl(0, 0%, 21%);
|
|
409
|
+
color: #fff;
|
|
410
|
+
}
|
|
411
|
+
.bbr-timeline.is-primary .bbr-timeline-marker {
|
|
412
|
+
background: hsl(171, 100%, 41%);
|
|
413
|
+
border-color: hsl(171, 100%, 41%);
|
|
414
|
+
color: #fff;
|
|
415
|
+
}
|
|
416
|
+
.bbr-timeline.is-primary .bbr-timeline-connector {
|
|
417
|
+
background: rgba(0, 209.1, 177.735, 0.3);
|
|
418
|
+
}
|
|
419
|
+
.bbr-timeline .bbr-timeline-item.is-primary .bbr-timeline-marker {
|
|
420
|
+
background: hsl(171, 100%, 41%);
|
|
421
|
+
border-color: hsl(171, 100%, 41%);
|
|
422
|
+
color: #fff;
|
|
423
|
+
}
|
|
424
|
+
.bbr-timeline.is-link .bbr-timeline-marker {
|
|
425
|
+
background: hsl(229, 53%, 53%);
|
|
426
|
+
border-color: hsl(229, 53%, 53%);
|
|
427
|
+
color: #fff;
|
|
428
|
+
}
|
|
429
|
+
.bbr-timeline.is-link .bbr-timeline-connector {
|
|
430
|
+
background: rgba(71.6295, 94.92035, 198.6705, 0.3);
|
|
431
|
+
}
|
|
432
|
+
.bbr-timeline .bbr-timeline-item.is-link .bbr-timeline-marker {
|
|
433
|
+
background: hsl(229, 53%, 53%);
|
|
434
|
+
border-color: hsl(229, 53%, 53%);
|
|
435
|
+
color: #fff;
|
|
436
|
+
}
|
|
437
|
+
.bbr-timeline.is-info .bbr-timeline-marker {
|
|
438
|
+
background: hsl(207, 61%, 53%);
|
|
439
|
+
border-color: hsl(207, 61%, 53%);
|
|
440
|
+
color: #fff;
|
|
441
|
+
}
|
|
442
|
+
.bbr-timeline.is-info .bbr-timeline-connector {
|
|
443
|
+
background: rgba(62.0415, 142.46085, 208.2585, 0.3);
|
|
444
|
+
}
|
|
445
|
+
.bbr-timeline .bbr-timeline-item.is-info .bbr-timeline-marker {
|
|
446
|
+
background: hsl(207, 61%, 53%);
|
|
447
|
+
border-color: hsl(207, 61%, 53%);
|
|
448
|
+
color: #fff;
|
|
449
|
+
}
|
|
450
|
+
.bbr-timeline.is-success .bbr-timeline-marker {
|
|
451
|
+
background: hsl(153, 53%, 53%);
|
|
452
|
+
border-color: hsl(153, 53%, 53%);
|
|
453
|
+
color: #fff;
|
|
454
|
+
}
|
|
455
|
+
.bbr-timeline.is-success .bbr-timeline-connector {
|
|
456
|
+
background: rgba(71.6295, 198.6705, 141.50205, 0.3);
|
|
457
|
+
}
|
|
458
|
+
.bbr-timeline .bbr-timeline-item.is-success .bbr-timeline-marker {
|
|
459
|
+
background: hsl(153, 53%, 53%);
|
|
460
|
+
border-color: hsl(153, 53%, 53%);
|
|
461
|
+
color: #fff;
|
|
462
|
+
}
|
|
463
|
+
.bbr-timeline.is-warning .bbr-timeline-marker {
|
|
464
|
+
background: hsl(44, 100%, 77%);
|
|
465
|
+
border-color: hsl(44, 100%, 77%);
|
|
466
|
+
color: rgba(0, 0, 0, 0.7);
|
|
467
|
+
}
|
|
468
|
+
.bbr-timeline.is-warning .bbr-timeline-connector {
|
|
469
|
+
background: rgba(255, 223.72, 137.7, 0.3);
|
|
470
|
+
}
|
|
471
|
+
.bbr-timeline .bbr-timeline-item.is-warning .bbr-timeline-marker {
|
|
472
|
+
background: hsl(44, 100%, 77%);
|
|
473
|
+
border-color: hsl(44, 100%, 77%);
|
|
474
|
+
color: rgba(0, 0, 0, 0.7);
|
|
475
|
+
}
|
|
476
|
+
.bbr-timeline.is-danger .bbr-timeline-marker {
|
|
477
|
+
background: hsl(348, 86%, 61%);
|
|
478
|
+
border-color: hsl(348, 86%, 61%);
|
|
479
|
+
color: #fff;
|
|
480
|
+
}
|
|
481
|
+
.bbr-timeline.is-danger .bbr-timeline-connector {
|
|
482
|
+
background: rgba(241.077, 70.023, 104.2338, 0.3);
|
|
483
|
+
}
|
|
484
|
+
.bbr-timeline .bbr-timeline-item.is-danger .bbr-timeline-marker {
|
|
485
|
+
background: hsl(348, 86%, 61%);
|
|
486
|
+
border-color: hsl(348, 86%, 61%);
|
|
487
|
+
color: #fff;
|
|
488
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bodynarf/react.components",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.1",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Artem",
|
|
6
6
|
"email": "bodynar@gmail.com"
|
|
@@ -27,13 +27,17 @@
|
|
|
27
27
|
"transfer": "npm run copy_styles && npm run copy_main",
|
|
28
28
|
"build_transfer": "npm run build && npm run transfer",
|
|
29
29
|
"prepublish": "npm run build_transfer && cd dist && npm pack",
|
|
30
|
-
"publish_pkg": "npm run build_transfer && cd dist && npm publish --access=public",
|
|
31
|
-
"lint": "npx eslint src/**/*.ts src/**/*.tsx"
|
|
30
|
+
"publish_pkg": "npm run lint && npm run validate:scss && npm run build_transfer && cd dist && npm publish --access=public",
|
|
31
|
+
"lint": "npx eslint src/**/*.ts src/**/*.tsx",
|
|
32
|
+
"lint:scss": "npx stylelint \"src/**/*.scss\"",
|
|
33
|
+
"build:scss": "npx sass --load-path=node_modules src/:dist/ --no-source-map",
|
|
34
|
+
"validate:scss": "npm run lint:scss && npm run build:scss"
|
|
32
35
|
},
|
|
33
36
|
"devDependencies": {
|
|
34
37
|
"@eslint/js": "^9.30.1",
|
|
35
38
|
"@types/react": "^18.0.11",
|
|
36
39
|
"@types/react-dom": "^18.0.5",
|
|
40
|
+
"bulma": "^0.9.4",
|
|
37
41
|
"copyfiles": "^2.4.1",
|
|
38
42
|
"eslint": "^9.32.0",
|
|
39
43
|
"eslint-plugin-import": "^2.32.0",
|
|
@@ -41,6 +45,9 @@
|
|
|
41
45
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
42
46
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
43
47
|
"react": ">=18.1.0",
|
|
48
|
+
"sass": "^1.77.0",
|
|
49
|
+
"stylelint": "^16.6.0",
|
|
50
|
+
"stylelint-config-standard-scss": "^13.1.0",
|
|
44
51
|
"tsc-alias": "^1.8.6",
|
|
45
52
|
"typescript": "~5.8.3",
|
|
46
53
|
"typescript-eslint": "^8.35.1"
|