@bodynarf/react.components 1.14.0 → 1.14.2

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.
Files changed (69) hide show
  1. package/changelog.md +1 -1
  2. package/components/accordion/component/index.js +1 -1
  3. package/components/accordion/component/style.css +21 -0
  4. package/components/button/component/style.css +10 -0
  5. package/components/dropdown/component/style.css +101 -0
  6. package/components/dropdown/components/compact/index.d.ts.map +1 -1
  7. package/components/dropdown/components/compact/index.js +3 -3
  8. package/components/dropdown/components/label/components/empty/index.js +1 -1
  9. package/components/dropdown/components/label/components/withSearch/style.css +21 -0
  10. package/components/dropdown/types.d.ts +6 -6
  11. package/components/dropdown/types.d.ts.map +1 -1
  12. package/components/file/component/styles.css +74 -0
  13. package/components/icon/component/style.css +19 -0
  14. package/components/index.d.ts +0 -2
  15. package/components/index.d.ts.map +1 -1
  16. package/components/index.js +0 -2
  17. package/components/modal/component/style.css +32 -0
  18. package/components/multiselect/component/style.css +20 -0
  19. package/components/multiselect/components/withoutLabel/index.d.ts.map +1 -1
  20. package/components/multiselect/components/withoutLabel/index.js +3 -3
  21. package/components/primitives/checkbox/component/style.css +19 -0
  22. package/components/primitives/color/component/style.css +15 -0
  23. package/components/primitives/date/component/style.css +9 -0
  24. package/components/primitives/internal/hint/style.css +4 -0
  25. package/components/primitives/password/component/style.css +10 -0
  26. package/components/primitives/radioGroup/component/style.css +302 -0
  27. package/components/primitives/radioGroup/component/style.scss +34 -1
  28. package/components/primitives/slider/component/style.css +358 -0
  29. package/components/primitives/slider/component/style.scss +33 -2
  30. package/components/primitives/switch/component/style.css +430 -0
  31. package/components/primitives/switch/component/style.scss +33 -2
  32. package/components/primitives/timePicker/component/style.css +21 -0
  33. package/components/progress/component/style.css +167 -0
  34. package/components/progress/component/style.scss +20 -15
  35. package/components/search/component/style.css +18 -0
  36. package/components/stepper/component/style.css +418 -0
  37. package/components/stepper/component/style.scss +28 -2
  38. package/components/table/component/style.css +14 -0
  39. package/components/tabs/component/style.css +6 -0
  40. package/components/tag/component/style.css +19 -0
  41. package/components/timeline/component/style.css +416 -0
  42. package/components/timeline/component/style.scss +29 -3
  43. package/package.json +14 -4
  44. package/tsconfig.tsbuildinfo +1 -1
  45. package/components/anchor/component/index.d.ts +0 -8
  46. package/components/anchor/component/index.d.ts.map +0 -1
  47. package/components/anchor/component/index.js +0 -23
  48. package/components/anchor/component/style.scss +0 -15
  49. package/components/anchor/components/anchorWithIcon/index.d.ts +0 -11
  50. package/components/anchor/components/anchorWithIcon/index.d.ts.map +0 -1
  51. package/components/anchor/components/anchorWithIcon/index.js +0 -24
  52. package/components/anchor/components/simpleAnchor/index.d.ts +0 -5
  53. package/components/anchor/components/simpleAnchor/index.d.ts.map +0 -1
  54. package/components/anchor/components/simpleAnchor/index.js +0 -11
  55. package/components/anchor/index.d.ts +0 -3
  56. package/components/anchor/index.d.ts.map +0 -1
  57. package/components/anchor/index.js +0 -2
  58. package/components/anchor/types.d.ts +0 -20
  59. package/components/anchor/types.d.ts.map +0 -1
  60. package/components/anchor/types.js +0 -1
  61. package/components/tooltip/component/index.d.ts +0 -6
  62. package/components/tooltip/component/index.d.ts.map +0 -1
  63. package/components/tooltip/component/index.js +0 -80
  64. package/components/tooltip/index.d.ts +0 -3
  65. package/components/tooltip/index.d.ts.map +0 -1
  66. package/components/tooltip/index.js +0 -2
  67. package/components/tooltip/types.d.ts +0 -31
  68. package/components/tooltip/types.d.ts.map +0 -1
  69. package/components/tooltip/types.js +0 -1
@@ -1,18 +1,23 @@
1
- // Bulma variables
2
- $black: #0a0a0a !default;
3
- $white: #fff !default;
4
- $light: #f5f5f5 !default;
5
- $dark: #363636 !default;
6
- $primary: #485fc7 !default;
7
- $link: #485fc7 !default;
8
- $info: #3e8ed0 !default;
9
- $success: #48c78e !default;
10
- $warning: #ffe08a !default;
11
- $danger: #f14668 !default;
12
- $text: #4a4a4a !default;
13
- $background: #f5f5f5 !default;
14
- $radius: 4px !default;
15
- $speed: 0.25s !default;
1
+ // Bulma variables - compatible with v0.9.x and v1.x
2
+ // Uses CSS variables with fallbacks matching Bulma 0.9.4 defaults
3
+ // v1.x: CSS variables (--bulma-*) will be used if defined
4
+ // v0.9.x: Fallback values will be used (no CSS variables in 0.9.x)
5
+
6
+ // Colors
7
+ $black: var(--bulma-black, #0a0a0a);
8
+ $white: var(--bulma-white, #fff);
9
+ $light: var(--bulma-light, #f5f5f5);
10
+ $dark: var(--bulma-dark, #363636);
11
+ $primary: var(--bulma-primary, #00d1b2);
12
+ $link: var(--bulma-link, #485fc7);
13
+ $info: var(--bulma-info, #3e8ed0);
14
+ $success: var(--bulma-success, #48c78e);
15
+ $warning: var(--bulma-warning, #ffe08a);
16
+ $danger: var(--bulma-danger, #f14668);
17
+ $text: var(--bulma-text, #4a4a4a);
18
+ $background: var(--bulma-background, #f5f5f5);
19
+ $radius: var(--bulma-radius, 4px);
20
+ $speed: var(--bulma-speed, 0.25s);
16
21
 
17
22
  $size-small: 0.75rem !default;
18
23
  $size-normal: 1rem !default;
@@ -0,0 +1,18 @@
1
+ .bbr-search input[type=search] {
2
+ transition: 0.15s ease-out;
3
+ transition-property: border-color, color, background-color;
4
+ }
5
+ .bbr-search input[type=search]::placeholder {
6
+ user-select: none;
7
+ }
8
+ .bbr-search input[type=search]::-webkit-input-placeholder {
9
+ transition: 0.15s ease-out color;
10
+ }
11
+ .bbr-search input[type=search]::-webkit-search-cancel-button {
12
+ cursor: pointer;
13
+ font-size: 1.25rem;
14
+ }
15
+ .bbr-search.is-loading::after {
16
+ right: 1rem;
17
+ top: 0.725rem;
18
+ }
@@ -0,0 +1,418 @@
1
+ @keyframes stepper-connector-fill {
2
+ from {
3
+ width: 0;
4
+ }
5
+ to {
6
+ width: 100%;
7
+ }
8
+ }
9
+ .bbr-stepper {
10
+ display: flex;
11
+ flex-direction: row;
12
+ align-items: flex-start;
13
+ width: 100%;
14
+ }
15
+ .bbr-stepper.is-vertical {
16
+ flex-direction: column;
17
+ }
18
+ .bbr-stepper.is-vertical .bbr-stepper-step {
19
+ flex-direction: row;
20
+ align-items: flex-start;
21
+ width: 100%;
22
+ padding-bottom: 1.5rem;
23
+ }
24
+ .bbr-stepper.is-vertical .bbr-stepper-step:last-child {
25
+ padding-bottom: 0;
26
+ }
27
+ .bbr-stepper.is-vertical .bbr-stepper-content {
28
+ margin-top: 0;
29
+ margin-left: 1rem;
30
+ text-align: left;
31
+ }
32
+ .bbr-stepper.is-vertical .bbr-stepper-connector {
33
+ position: absolute;
34
+ left: calc(1.25rem - 1px);
35
+ top: 2.5rem;
36
+ width: 2px;
37
+ height: calc(100% - 2.5rem + 0.5rem);
38
+ right: auto;
39
+ }
40
+ .bbr-stepper.is-vertical .bbr-stepper-connector.has-arrow {
41
+ height: calc(100% - 2.5rem);
42
+ }
43
+ .bbr-stepper.is-vertical .bbr-stepper-connector.has-arrow::after {
44
+ right: auto;
45
+ left: 50%;
46
+ top: auto;
47
+ bottom: -6px;
48
+ transform: translateX(-50%);
49
+ border-top: 6px solid var(--bulma-grey-lighter, #dbdbdb);
50
+ border-bottom: none;
51
+ border-left: 5px solid transparent;
52
+ border-right: 5px solid transparent;
53
+ }
54
+ .bbr-stepper.is-vertical .bbr-stepper-connector.has-arrow.is-completed::after {
55
+ border-top-color: var(--bulma-primary, #00d1b2);
56
+ border-left-color: transparent;
57
+ }
58
+ .bbr-stepper.is-vertical.is-small .bbr-stepper-connector {
59
+ left: calc(1rem - 1px);
60
+ top: 2rem;
61
+ height: calc(100% - 2rem + 0.5rem);
62
+ }
63
+ .bbr-stepper.is-vertical.is-medium .bbr-stepper-connector {
64
+ left: calc(1.5rem - 1px);
65
+ top: 3rem;
66
+ height: calc(100% - 3rem + 0.5rem);
67
+ }
68
+ .bbr-stepper.is-vertical.is-large .bbr-stepper-connector {
69
+ left: calc(1.75rem - 1px);
70
+ top: 3.5rem;
71
+ height: calc(100% - 3.5rem + 0.5rem);
72
+ }
73
+ .bbr-stepper .bbr-stepper-step {
74
+ position: relative;
75
+ display: flex;
76
+ flex-direction: column;
77
+ align-items: center;
78
+ flex: 1;
79
+ padding: 0 0.5rem;
80
+ }
81
+ .bbr-stepper .bbr-stepper-step:first-child {
82
+ padding-left: 0;
83
+ }
84
+ .bbr-stepper .bbr-stepper-step:last-child {
85
+ padding-right: 0;
86
+ }
87
+ .bbr-stepper .bbr-stepper-step.is-clickable {
88
+ cursor: pointer;
89
+ }
90
+ .bbr-stepper .bbr-stepper-step.is-clickable .bbr-stepper-marker {
91
+ transition: transform 0.2s ease, box-shadow 0.2s ease;
92
+ }
93
+ .bbr-stepper .bbr-stepper-step.is-clickable:hover .bbr-stepper-marker {
94
+ transform: scale(1.1);
95
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
96
+ }
97
+ .bbr-stepper .bbr-stepper-step.is-completed .bbr-stepper-marker {
98
+ background: var(--bulma-primary, #00d1b2);
99
+ border: 2px solid var(--bulma-primary, #00d1b2);
100
+ color: var(--bulma-white, #fff);
101
+ }
102
+ .bbr-stepper .bbr-stepper-step.is-completed .bbr-stepper-title {
103
+ color: var(--bulma-grey-dark, #4a4a4a);
104
+ font-weight: 500;
105
+ }
106
+ .bbr-stepper .bbr-stepper-step.is-current .bbr-stepper-marker {
107
+ background: var(--bulma-white, #fff);
108
+ border: 2px solid var(--bulma-primary, #00d1b2);
109
+ color: var(--bulma-primary, #00d1b2);
110
+ box-shadow: 0 0 0 4px rgba(var(--bulma-primary, #00d1b2), 0.2);
111
+ }
112
+ .bbr-stepper .bbr-stepper-step.is-current .bbr-stepper-title {
113
+ color: var(--bulma-grey-darker, #363636);
114
+ font-weight: 600;
115
+ }
116
+ .bbr-stepper .bbr-stepper-step.is-upcoming .bbr-stepper-marker {
117
+ background: var(--bulma-white, #fff);
118
+ border: 2px solid var(--bulma-grey-lighter, #dbdbdb);
119
+ color: var(--bulma-grey, #7a7a7a);
120
+ }
121
+ .bbr-stepper .bbr-stepper-step.is-upcoming .bbr-stepper-title {
122
+ color: var(--bulma-grey, #7a7a7a);
123
+ }
124
+ .bbr-stepper .bbr-stepper-marker {
125
+ display: flex;
126
+ align-items: center;
127
+ justify-content: center;
128
+ width: 2.5rem;
129
+ height: 2.5rem;
130
+ border-radius: 50%;
131
+ font-weight: 600;
132
+ font-size: 1rem;
133
+ transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
134
+ z-index: 1;
135
+ flex-shrink: 0;
136
+ }
137
+ .bbr-stepper .bbr-stepper-number,
138
+ .bbr-stepper .bbr-stepper-icon {
139
+ display: flex;
140
+ align-items: center;
141
+ justify-content: center;
142
+ }
143
+ .bbr-stepper .bbr-stepper-content {
144
+ margin-top: 0.75rem;
145
+ text-align: center;
146
+ }
147
+ .bbr-stepper .bbr-stepper-title {
148
+ font-size: 0.875rem;
149
+ line-height: 1.25;
150
+ transition: color 0.2s ease;
151
+ }
152
+ .bbr-stepper .bbr-stepper-description {
153
+ margin-top: 0.25rem;
154
+ font-size: 0.75rem;
155
+ color: var(--bulma-grey, #7a7a7a);
156
+ line-height: 1.25;
157
+ }
158
+ .bbr-stepper .bbr-stepper-connector {
159
+ position: absolute;
160
+ top: calc(1.25rem - 1px);
161
+ left: calc(50% + 1.25rem + 0.25rem);
162
+ right: calc(-50% + 1.25rem + 0.25rem);
163
+ height: 2px;
164
+ background: var(--bulma-grey-lighter, #dbdbdb);
165
+ z-index: 0;
166
+ }
167
+ .bbr-stepper .bbr-stepper-connector.is-completed {
168
+ background: var(--bulma-primary, #00d1b2);
169
+ }
170
+ .bbr-stepper .bbr-stepper-connector.is-hidden {
171
+ display: none;
172
+ }
173
+ .bbr-stepper .bbr-stepper-connector.has-arrow::before {
174
+ content: "";
175
+ position: absolute;
176
+ right: -6px;
177
+ top: 50%;
178
+ transform: translateY(-50%);
179
+ width: 0;
180
+ height: 0;
181
+ border-top: 5px solid transparent;
182
+ border-bottom: 5px solid transparent;
183
+ border-left: 6px solid var(--bulma-grey-lighter, #dbdbdb);
184
+ z-index: 2;
185
+ }
186
+ .bbr-stepper .bbr-stepper-connector.has-arrow.is-completed::before {
187
+ border-left-color: var(--bulma-primary, #00d1b2);
188
+ }
189
+ .bbr-stepper.is-vertical .bbr-stepper-connector.has-arrow::before {
190
+ right: auto;
191
+ top: auto;
192
+ left: 50%;
193
+ bottom: -6px;
194
+ transform: translateX(-50%);
195
+ border-left: 5px solid transparent;
196
+ border-right: 5px solid transparent;
197
+ border-top: 6px solid var(--bulma-grey-lighter, #dbdbdb);
198
+ border-bottom: none;
199
+ }
200
+ .bbr-stepper.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
201
+ border-top-color: var(--bulma-primary, #00d1b2);
202
+ border-left-color: transparent;
203
+ }
204
+ .bbr-stepper.is-animated .bbr-stepper-connector.is-completed {
205
+ position: relative;
206
+ background: var(--bulma-grey-lighter, #dbdbdb);
207
+ }
208
+ .bbr-stepper.is-animated .bbr-stepper-connector.is-completed::after {
209
+ content: "";
210
+ position: absolute;
211
+ top: 0;
212
+ left: 0;
213
+ height: 100%;
214
+ background: var(--bulma-primary, #00d1b2);
215
+ animation: stepper-connector-fill 0.5s ease forwards;
216
+ }
217
+ .bbr-stepper.is-animated.is-vertical .bbr-stepper-connector.is-completed::after {
218
+ width: 100%;
219
+ height: 0;
220
+ animation: none;
221
+ }
222
+ @keyframes stepper-connector-fill-vertical {
223
+ from {
224
+ height: 0;
225
+ }
226
+ to {
227
+ height: 100%;
228
+ }
229
+ }
230
+ .bbr-stepper.is-animated.is-vertical .bbr-stepper-connector.is-completed::after {
231
+ animation: stepper-connector-fill-vertical 0.5s ease forwards;
232
+ }
233
+ .bbr-stepper.is-small .bbr-stepper-marker {
234
+ width: 2rem;
235
+ height: 2rem;
236
+ font-size: 0.875rem;
237
+ }
238
+ .bbr-stepper.is-small .bbr-stepper-title {
239
+ font-size: 0.75rem;
240
+ }
241
+ .bbr-stepper.is-small .bbr-stepper-description {
242
+ font-size: 0.625rem;
243
+ }
244
+ .bbr-stepper.is-small .bbr-stepper-connector {
245
+ top: calc(1rem - 1px);
246
+ left: calc(50% + 1rem + 0.25rem);
247
+ right: calc(-50% + 1rem + 0.25rem);
248
+ }
249
+ .bbr-stepper.is-medium .bbr-stepper-marker {
250
+ width: 3rem;
251
+ height: 3rem;
252
+ font-size: 1.25rem;
253
+ }
254
+ .bbr-stepper.is-medium .bbr-stepper-title {
255
+ font-size: 1rem;
256
+ }
257
+ .bbr-stepper.is-medium .bbr-stepper-description {
258
+ font-size: 0.875rem;
259
+ }
260
+ .bbr-stepper.is-medium .bbr-stepper-connector {
261
+ top: calc(1.5rem - 1px);
262
+ left: calc(50% + 1.5rem + 0.25rem);
263
+ right: calc(-50% + 1.5rem + 0.25rem);
264
+ }
265
+ .bbr-stepper.is-large .bbr-stepper-marker {
266
+ width: 3.5rem;
267
+ height: 3.5rem;
268
+ font-size: 1.5rem;
269
+ }
270
+ .bbr-stepper.is-large .bbr-stepper-title {
271
+ font-size: 1.125rem;
272
+ }
273
+ .bbr-stepper.is-large .bbr-stepper-description {
274
+ font-size: 1rem;
275
+ }
276
+ .bbr-stepper.is-large .bbr-stepper-connector {
277
+ top: calc(1.75rem - 1px);
278
+ left: calc(50% + 1.75rem + 0.25rem);
279
+ right: calc(-50% + 1.75rem + 0.25rem);
280
+ }
281
+ .bbr-stepper.is-primary .bbr-stepper-step.is-completed .bbr-stepper-marker {
282
+ background: var(--bulma-primary, #00d1b2);
283
+ border-color: var(--bulma-primary, #00d1b2);
284
+ color: var(--bulma-white, #fff);
285
+ }
286
+ .bbr-stepper.is-primary .bbr-stepper-step.is-current .bbr-stepper-marker {
287
+ border-color: var(--bulma-primary, #00d1b2);
288
+ color: var(--bulma-primary, #00d1b2);
289
+ box-shadow: 0 0 0 4px rgba(var(--bulma-primary, #00d1b2), 0.2);
290
+ }
291
+ .bbr-stepper.is-primary .bbr-stepper-connector.is-completed {
292
+ background: var(--bulma-primary, #00d1b2);
293
+ }
294
+ .bbr-stepper.is-primary .bbr-stepper-connector.has-arrow.is-completed::before {
295
+ border-left-color: var(--bulma-primary, #00d1b2);
296
+ }
297
+ .bbr-stepper.is-primary.is-animated .bbr-stepper-connector.is-completed::after {
298
+ background: var(--bulma-primary, #00d1b2);
299
+ }
300
+ .bbr-stepper.is-primary.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
301
+ border-top-color: var(--bulma-primary, #00d1b2);
302
+ border-left-color: transparent;
303
+ }
304
+ .bbr-stepper.is-link .bbr-stepper-step.is-completed .bbr-stepper-marker {
305
+ background: var(--bulma-link, #485fc7);
306
+ border-color: var(--bulma-link, #485fc7);
307
+ color: var(--bulma-white, #fff);
308
+ }
309
+ .bbr-stepper.is-link .bbr-stepper-step.is-current .bbr-stepper-marker {
310
+ border-color: var(--bulma-link, #485fc7);
311
+ color: var(--bulma-link, #485fc7);
312
+ box-shadow: 0 0 0 4px rgba(var(--bulma-link, #485fc7), 0.2);
313
+ }
314
+ .bbr-stepper.is-link .bbr-stepper-connector.is-completed {
315
+ background: var(--bulma-link, #485fc7);
316
+ }
317
+ .bbr-stepper.is-link .bbr-stepper-connector.has-arrow.is-completed::before {
318
+ border-left-color: var(--bulma-link, #485fc7);
319
+ }
320
+ .bbr-stepper.is-link.is-animated .bbr-stepper-connector.is-completed::after {
321
+ background: var(--bulma-link, #485fc7);
322
+ }
323
+ .bbr-stepper.is-link.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
324
+ border-top-color: var(--bulma-link, #485fc7);
325
+ border-left-color: transparent;
326
+ }
327
+ .bbr-stepper.is-info .bbr-stepper-step.is-completed .bbr-stepper-marker {
328
+ background: var(--bulma-info, #3e8ed0);
329
+ border-color: var(--bulma-info, #3e8ed0);
330
+ color: var(--bulma-white, #fff);
331
+ }
332
+ .bbr-stepper.is-info .bbr-stepper-step.is-current .bbr-stepper-marker {
333
+ border-color: var(--bulma-info, #3e8ed0);
334
+ color: var(--bulma-info, #3e8ed0);
335
+ box-shadow: 0 0 0 4px rgba(var(--bulma-info, #3e8ed0), 0.2);
336
+ }
337
+ .bbr-stepper.is-info .bbr-stepper-connector.is-completed {
338
+ background: var(--bulma-info, #3e8ed0);
339
+ }
340
+ .bbr-stepper.is-info .bbr-stepper-connector.has-arrow.is-completed::before {
341
+ border-left-color: var(--bulma-info, #3e8ed0);
342
+ }
343
+ .bbr-stepper.is-info.is-animated .bbr-stepper-connector.is-completed::after {
344
+ background: var(--bulma-info, #3e8ed0);
345
+ }
346
+ .bbr-stepper.is-info.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
347
+ border-top-color: var(--bulma-info, #3e8ed0);
348
+ border-left-color: transparent;
349
+ }
350
+ .bbr-stepper.is-success .bbr-stepper-step.is-completed .bbr-stepper-marker {
351
+ background: var(--bulma-success, #48c78e);
352
+ border-color: var(--bulma-success, #48c78e);
353
+ color: var(--bulma-white, #fff);
354
+ }
355
+ .bbr-stepper.is-success .bbr-stepper-step.is-current .bbr-stepper-marker {
356
+ border-color: var(--bulma-success, #48c78e);
357
+ color: var(--bulma-success, #48c78e);
358
+ box-shadow: 0 0 0 4px rgba(var(--bulma-success, #48c78e), 0.2);
359
+ }
360
+ .bbr-stepper.is-success .bbr-stepper-connector.is-completed {
361
+ background: var(--bulma-success, #48c78e);
362
+ }
363
+ .bbr-stepper.is-success .bbr-stepper-connector.has-arrow.is-completed::before {
364
+ border-left-color: var(--bulma-success, #48c78e);
365
+ }
366
+ .bbr-stepper.is-success.is-animated .bbr-stepper-connector.is-completed::after {
367
+ background: var(--bulma-success, #48c78e);
368
+ }
369
+ .bbr-stepper.is-success.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
370
+ border-top-color: var(--bulma-success, #48c78e);
371
+ border-left-color: transparent;
372
+ }
373
+ .bbr-stepper.is-warning .bbr-stepper-step.is-completed .bbr-stepper-marker {
374
+ background: var(--bulma-warning, #ffe08a);
375
+ border-color: var(--bulma-warning, #ffe08a);
376
+ color: rgba(0, 0, 0, 0.7);
377
+ }
378
+ .bbr-stepper.is-warning .bbr-stepper-step.is-current .bbr-stepper-marker {
379
+ border-color: var(--bulma-warning, #ffe08a);
380
+ color: var(--bulma-warning, #ffe08a);
381
+ box-shadow: 0 0 0 4px rgba(var(--bulma-warning, #ffe08a), 0.2);
382
+ }
383
+ .bbr-stepper.is-warning .bbr-stepper-connector.is-completed {
384
+ background: var(--bulma-warning, #ffe08a);
385
+ }
386
+ .bbr-stepper.is-warning .bbr-stepper-connector.has-arrow.is-completed::before {
387
+ border-left-color: var(--bulma-warning, #ffe08a);
388
+ }
389
+ .bbr-stepper.is-warning.is-animated .bbr-stepper-connector.is-completed::after {
390
+ background: var(--bulma-warning, #ffe08a);
391
+ }
392
+ .bbr-stepper.is-warning.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
393
+ border-top-color: var(--bulma-warning, #ffe08a);
394
+ border-left-color: transparent;
395
+ }
396
+ .bbr-stepper.is-danger .bbr-stepper-step.is-completed .bbr-stepper-marker {
397
+ background: var(--bulma-danger, #f14668);
398
+ border-color: var(--bulma-danger, #f14668);
399
+ color: var(--bulma-white, #fff);
400
+ }
401
+ .bbr-stepper.is-danger .bbr-stepper-step.is-current .bbr-stepper-marker {
402
+ border-color: var(--bulma-danger, #f14668);
403
+ color: var(--bulma-danger, #f14668);
404
+ box-shadow: 0 0 0 4px rgba(var(--bulma-danger, #f14668), 0.2);
405
+ }
406
+ .bbr-stepper.is-danger .bbr-stepper-connector.is-completed {
407
+ background: var(--bulma-danger, #f14668);
408
+ }
409
+ .bbr-stepper.is-danger .bbr-stepper-connector.has-arrow.is-completed::before {
410
+ border-left-color: var(--bulma-danger, #f14668);
411
+ }
412
+ .bbr-stepper.is-danger.is-animated .bbr-stepper-connector.is-completed::after {
413
+ background: var(--bulma-danger, #f14668);
414
+ }
415
+ .bbr-stepper.is-danger.is-vertical .bbr-stepper-connector.has-arrow.is-completed::before {
416
+ border-top-color: var(--bulma-danger, #f14668);
417
+ border-left-color: transparent;
418
+ }
@@ -1,3 +1,29 @@
1
+ @use "sass:list";
2
+
3
+ // Bulma variables - compatible with v0.9.x and v1.x
4
+ // Uses CSS variables with fallbacks matching Bulma 0.9.4 defaults
5
+ // v1.x: CSS variables (--bulma-*) will be used if defined
6
+ // v0.9.x: Fallback values will be used (no CSS variables in 0.9.x)
7
+
8
+ // Colors
9
+ $primary: var(--bulma-primary, #00d1b2);
10
+ $white: var(--bulma-white, #fff);
11
+ $grey-lighter: var(--bulma-grey-lighter, #dbdbdb);
12
+ $grey-light: var(--bulma-grey-light, #b5b5b5);
13
+ $grey: var(--bulma-grey, #7a7a7a);
14
+ $grey-dark: var(--bulma-grey-dark, #4a4a4a);
15
+ $grey-darker: var(--bulma-grey-darker, #363636);
16
+
17
+ // Color map for variations
18
+ $colors: (
19
+ "primary": ($primary, $white),
20
+ "link": (var(--bulma-link, #485fc7), $white),
21
+ "info": (var(--bulma-info, #3e8ed0), $white),
22
+ "success": (var(--bulma-success, #48c78e), $white),
23
+ "warning": (var(--bulma-warning, #ffe08a), rgba(0, 0, 0, 0.7)),
24
+ "danger": (var(--bulma-danger, #f14668), $white)
25
+ );
26
+
1
27
  $stepper-marker-size: 2.5rem !default;
2
28
  $stepper-marker-size-small: 2rem !default;
3
29
  $stepper-marker-size-medium: 3rem !default;
@@ -387,8 +413,8 @@ $stepper-description-color: $grey !default;
387
413
 
388
414
  // Color variations
389
415
  @each $name, $pair in $colors {
390
- $color: nth($pair, 1);
391
- $color-invert: nth($pair, 2);
416
+ $color: list.nth($pair, 1);
417
+ $color-invert: list.nth($pair, 2);
392
418
 
393
419
  &.is-#{$name} {
394
420
  .bbr-stepper-step.is-completed {
@@ -0,0 +1,14 @@
1
+ table.bbr-table.has-sticky-header thead th {
2
+ position: sticky;
3
+ top: 0.125rem;
4
+ z-index: 1;
5
+ }
6
+ table.bbr-table.has-shadow-bordered-header thead th {
7
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
8
+ }
9
+ table.bbr-table.has-borderless-header thead th {
10
+ border: none !important;
11
+ }
12
+ table.bbr-table.has-borderless-header tbody tr:nth-child(1) td {
13
+ border-top: none !important;
14
+ }
@@ -0,0 +1,6 @@
1
+ .bbr-tabs__tab .bbr-icon:first-child {
2
+ margin-right: 0.5rem;
3
+ }
4
+ .bbr-tabs__tab .bbr-icon:last-child {
5
+ margin-left: 0.5rem;
6
+ }
@@ -0,0 +1,19 @@
1
+ .bbr-tag {
2
+ border: 1px solid transparent;
3
+ transition: border-color 0.15s ease-in-out;
4
+ }
5
+ .bbr-tag.is-clickable {
6
+ cursor: pointer;
7
+ }
8
+ .bbr-tag.is-clickable.is-light:hover {
9
+ border-color: rgba(0, 0, 0, 0.25);
10
+ }
11
+ .bbr-tag.is-clickable.is-light:focus, .bbr-tag.is-clickable.is-light:active {
12
+ border-color: rgba(0, 0, 0, 0.5);
13
+ }
14
+ .bbr-tag.is-clickable:not(.is-light):hover {
15
+ border-color: rgba(0, 0, 0, 0.35);
16
+ }
17
+ .bbr-tag.is-clickable:not(.is-light):focus, .bbr-tag.is-clickable:not(.is-light):active {
18
+ border-color: rgba(0, 0, 0, 0.75);
19
+ }