@sphereon/ui-components.ssi-react 0.3.1-unstable.5 → 0.4.1-unstable.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 (35) hide show
  1. package/dist/components/assets/icons/CapitolIcon/index.d.ts +9 -0
  2. package/dist/components/assets/icons/CapitolIcon/index.js +7 -0
  3. package/dist/components/assets/icons/ChevronIcon/index.d.ts +11 -0
  4. package/dist/components/assets/icons/ChevronIcon/index.js +7 -0
  5. package/dist/components/assets/icons/LaptopIcon/index.d.ts +8 -0
  6. package/dist/components/assets/icons/LaptopIcon/index.js +7 -0
  7. package/dist/components/assets/icons/ManIcon/index.d.ts +9 -0
  8. package/dist/components/assets/icons/ManIcon/index.js +7 -0
  9. package/dist/components/assets/icons/StoreIcon/index.d.ts +9 -0
  10. package/dist/components/assets/icons/StoreIcon/index.js +7 -0
  11. package/dist/components/lists/Listbox/index.d.ts +16 -0
  12. package/dist/components/lists/Listbox/index.js +45 -0
  13. package/dist/components/views/ContactViewItem/index.js +1 -1
  14. package/dist/components/views/FormView/index.d.ts +2 -2
  15. package/dist/components/views/FormView/index.js +47 -2
  16. package/dist/components/views/RoleIconView/index.d.ts +9 -0
  17. package/dist/components/views/RoleIconView/index.js +17 -0
  18. package/dist/components/views/RoleViewItem/index.d.ts +8 -0
  19. package/dist/components/views/RoleViewItem/index.js +56 -0
  20. package/dist/components/views/SSICredentialCardView/index.js +3 -4
  21. package/dist/helpers/DateHelper/index.d.ts +3 -0
  22. package/dist/helpers/DateHelper/index.js +45 -0
  23. package/dist/helpers/index.d.ts +1 -0
  24. package/dist/helpers/index.js +1 -0
  25. package/dist/index.d.ts +11 -1
  26. package/dist/index.js +11 -1
  27. package/dist/styles/components/components/ContactViewItem/index.js +1 -1
  28. package/dist/styles/components/components/DropDownListItem/index.js +10 -0
  29. package/dist/styles/css/tailwind.css +595 -0
  30. package/dist/types/icon/index.d.ts +1 -0
  31. package/dist/types/icon/index.js +1 -0
  32. package/dist/types/index.d.ts +1 -0
  33. package/dist/types/index.js +1 -0
  34. package/package.json +10 -7
  35. package/dist/components/views/FormView/styles.css +0 -105
@@ -0,0 +1,595 @@
1
+ /*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme, custom-base, custom-components, custom-utilities;
4
+ @layer theme {
5
+ :root, :host {
6
+ --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
7
+ 'Noto Color Emoji';
8
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
9
+ monospace;
10
+ --default-transition-duration: 150ms;
11
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
12
+ --default-font-family: var(--font-sans);
13
+ --default-mono-font-family: var(--font-mono);
14
+ }
15
+ }
16
+ @layer custom-base {
17
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
18
+ box-sizing: border-box;
19
+ margin: 0;
20
+ padding: 0;
21
+ border: 0 solid;
22
+ }
23
+ html, :host {
24
+ line-height: 1.5;
25
+ -webkit-text-size-adjust: 100%;
26
+ tab-size: 4;
27
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji');
28
+ font-feature-settings: var(--default-font-feature-settings, normal);
29
+ font-variation-settings: var(--default-font-variation-settings, normal);
30
+ -webkit-tap-highlight-color: transparent;
31
+ }
32
+ hr {
33
+ height: 0;
34
+ color: inherit;
35
+ border-top-width: 1px;
36
+ }
37
+ abbr:where([title]) {
38
+ -webkit-text-decoration: underline dotted;
39
+ text-decoration: underline dotted;
40
+ }
41
+ h1, h2, h3, h4, h5, h6 {
42
+ font-size: inherit;
43
+ font-weight: inherit;
44
+ }
45
+ a {
46
+ color: inherit;
47
+ -webkit-text-decoration: inherit;
48
+ text-decoration: inherit;
49
+ }
50
+ b, strong {
51
+ font-weight: bolder;
52
+ }
53
+ code, kbd, samp, pre {
54
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
55
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
56
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
57
+ font-size: 1em;
58
+ }
59
+ small {
60
+ font-size: 80%;
61
+ }
62
+ sub, sup {
63
+ font-size: 75%;
64
+ line-height: 0;
65
+ position: relative;
66
+ vertical-align: baseline;
67
+ }
68
+ sub {
69
+ bottom: -0.25em;
70
+ }
71
+ sup {
72
+ top: -0.5em;
73
+ }
74
+ table {
75
+ text-indent: 0;
76
+ border-color: inherit;
77
+ border-collapse: collapse;
78
+ }
79
+ :-moz-focusring {
80
+ outline: auto;
81
+ }
82
+ progress {
83
+ vertical-align: baseline;
84
+ }
85
+ summary {
86
+ display: list-item;
87
+ }
88
+ ol, ul, menu {
89
+ list-style: none;
90
+ }
91
+ img, svg, video, canvas, audio, iframe, embed, object {
92
+ display: block;
93
+ vertical-align: middle;
94
+ }
95
+ img, video {
96
+ max-width: 100%;
97
+ height: auto;
98
+ }
99
+ button, input, select, optgroup, textarea, ::file-selector-button {
100
+ font: inherit;
101
+ font-feature-settings: inherit;
102
+ font-variation-settings: inherit;
103
+ letter-spacing: inherit;
104
+ color: inherit;
105
+ border-radius: 0;
106
+ background-color: transparent;
107
+ opacity: 1;
108
+ }
109
+ :where(select:is([multiple], [size])) optgroup {
110
+ font-weight: bolder;
111
+ }
112
+ :where(select:is([multiple], [size])) optgroup option {
113
+ padding-inline-start: 20px;
114
+ }
115
+ ::file-selector-button {
116
+ margin-inline-end: 4px;
117
+ }
118
+ ::placeholder {
119
+ opacity: 1;
120
+ }
121
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
122
+ ::placeholder {
123
+ color: currentcolor;
124
+ @supports (color: color-mix(in lab, red, red)) {
125
+ color: color-mix(in oklab, currentcolor 50%, transparent);
126
+ }
127
+ }
128
+ }
129
+ textarea {
130
+ resize: vertical;
131
+ }
132
+ ::-webkit-search-decoration {
133
+ -webkit-appearance: none;
134
+ }
135
+ ::-webkit-date-and-time-value {
136
+ min-height: 1lh;
137
+ text-align: inherit;
138
+ }
139
+ ::-webkit-datetime-edit {
140
+ display: inline-flex;
141
+ }
142
+ ::-webkit-datetime-edit-fields-wrapper {
143
+ padding: 0;
144
+ }
145
+ ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
146
+ padding-block: 0;
147
+ }
148
+ :-moz-ui-invalid {
149
+ box-shadow: none;
150
+ }
151
+ button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
152
+ appearance: button;
153
+ }
154
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
155
+ height: auto;
156
+ }
157
+ [hidden]:where(:not([hidden='until-found'])) {
158
+ display: none !important;
159
+ }
160
+ }
161
+ @layer custom-utilities {
162
+ .visible {
163
+ visibility: visible;
164
+ }
165
+ .absolute {
166
+ position: absolute;
167
+ }
168
+ .fixed {
169
+ position: fixed;
170
+ }
171
+ .relative {
172
+ position: relative;
173
+ }
174
+ .container {
175
+ width: 100%;
176
+ @media (width >= 40rem) {
177
+ max-width: 40rem;
178
+ }
179
+ @media (width >= 48rem) {
180
+ max-width: 48rem;
181
+ }
182
+ @media (width >= 64rem) {
183
+ max-width: 64rem;
184
+ }
185
+ @media (width >= 80rem) {
186
+ max-width: 80rem;
187
+ }
188
+ @media (width >= 96rem) {
189
+ max-width: 96rem;
190
+ }
191
+ }
192
+ .mt-auto {
193
+ margin-top: auto;
194
+ }
195
+ .contents {
196
+ display: contents;
197
+ }
198
+ .flex {
199
+ display: flex;
200
+ }
201
+ .grid {
202
+ display: grid;
203
+ }
204
+ .inline-block {
205
+ display: inline-block;
206
+ }
207
+ .table {
208
+ display: table;
209
+ }
210
+ .aspect-square {
211
+ aspect-ratio: 1 / 1;
212
+ }
213
+ .w-\[var\(--button-width\)\] {
214
+ width: var(--button-width);
215
+ }
216
+ .flex-1 {
217
+ flex: 1;
218
+ }
219
+ .flex-shrink {
220
+ flex-shrink: 1;
221
+ }
222
+ .flex-grow {
223
+ flex-grow: 1;
224
+ }
225
+ .border-collapse {
226
+ border-collapse: collapse;
227
+ }
228
+ .transform {
229
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
230
+ }
231
+ .cursor-not-allowed {
232
+ cursor: not-allowed;
233
+ }
234
+ .cursor-pointer {
235
+ cursor: pointer;
236
+ }
237
+ .flex-col {
238
+ flex-direction: column;
239
+ }
240
+ .flex-row {
241
+ flex-direction: row;
242
+ }
243
+ .flex-wrap {
244
+ flex-wrap: wrap;
245
+ }
246
+ .items-center {
247
+ align-items: center;
248
+ }
249
+ .items-start {
250
+ align-items: flex-start;
251
+ }
252
+ .justify-center {
253
+ justify-content: center;
254
+ }
255
+ .gap-\[var\(--spacing-0_5\)\] {
256
+ gap: var(--spacing-0_5);
257
+ }
258
+ .gap-\[var\(--spacing-1_5\)\] {
259
+ gap: var(--spacing-1_5);
260
+ }
261
+ .self-start {
262
+ align-self: flex-start;
263
+ }
264
+ .truncate {
265
+ overflow: hidden;
266
+ text-overflow: ellipsis;
267
+ white-space: nowrap;
268
+ }
269
+ .overflow-hidden {
270
+ overflow: hidden;
271
+ }
272
+ .overflow-x-auto {
273
+ overflow-x: auto;
274
+ }
275
+ .rounded-\[var\(--border-radius-2\)\] {
276
+ border-radius: var(--border-radius-2);
277
+ }
278
+ .rounded-\[var\(--border-radius-4\)\] {
279
+ border-radius: var(--border-radius-4);
280
+ }
281
+ .border {
282
+ border-style: var(--tw-border-style);
283
+ border-width: 1px;
284
+ }
285
+ .bg-\[var\(--color-brand-50\)\] {
286
+ background-color: var(--color-brand-50);
287
+ }
288
+ .bg-\[var\(--color-grey-50\)\] {
289
+ background-color: var(--color-grey-50);
290
+ }
291
+ .p-\[var\(--spacing-1_5\)\] {
292
+ padding: var(--spacing-1_5);
293
+ }
294
+ .px-\[var\(--spacing-1_5\)\] {
295
+ padding-inline: var(--spacing-1_5);
296
+ }
297
+ .py-\[var\(--spacing-1\)\] {
298
+ padding-block: var(--spacing-1);
299
+ }
300
+ .pr-\[var\(--spacing-4\)\] {
301
+ padding-right: var(--spacing-4);
302
+ }
303
+ .pl-\[var\(--spacing-1_5\)\] {
304
+ padding-left: var(--spacing-1_5);
305
+ }
306
+ .text-left {
307
+ text-align: left;
308
+ }
309
+ .break-words {
310
+ overflow-wrap: break-word;
311
+ }
312
+ .text-\[var\(--color-grey-600\)\] {
313
+ color: var(--color-grey-600);
314
+ }
315
+ .text-\[var\(--color-grey-900\)\] {
316
+ color: var(--color-grey-900);
317
+ }
318
+ .text-\[var\(--color-grey-1100\)\] {
319
+ color: var(--color-grey-1100);
320
+ }
321
+ .opacity-50 {
322
+ opacity: 50%;
323
+ }
324
+ .shadow {
325
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
326
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
327
+ }
328
+ .shadow-\[0rem_0\.5rem_0\.5rem_0rem_rgba\(32\,37\,55\,0\.15\)\] {
329
+ --tw-shadow: 0rem 0.5rem 0.5rem 0rem var(--tw-shadow-color, rgba(32,37,55,0.15));
330
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
331
+ }
332
+ .outline {
333
+ outline-style: var(--tw-outline-style);
334
+ outline-width: 1px;
335
+ }
336
+ .filter {
337
+ 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,);
338
+ }
339
+ .backdrop-filter {
340
+ -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
341
+ backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
342
+ }
343
+ .transition {
344
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events;
345
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
346
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
347
+ }
348
+ .outline-none {
349
+ --tw-outline-style: none;
350
+ outline-style: none;
351
+ }
352
+ .\[--anchor-gap\:var\(--spacing-1_5\)\] {
353
+ --anchor-gap: var(--spacing-1_5);
354
+ }
355
+ .hover\:bg-\[var\(--color-grey-1000\)\] {
356
+ &:hover {
357
+ @media (hover: hover) {
358
+ background-color: var(--color-grey-1000);
359
+ }
360
+ }
361
+ }
362
+ }
363
+ @property --tw-rotate-x {
364
+ syntax: "*";
365
+ inherits: false;
366
+ }
367
+ @property --tw-rotate-y {
368
+ syntax: "*";
369
+ inherits: false;
370
+ }
371
+ @property --tw-rotate-z {
372
+ syntax: "*";
373
+ inherits: false;
374
+ }
375
+ @property --tw-skew-x {
376
+ syntax: "*";
377
+ inherits: false;
378
+ }
379
+ @property --tw-skew-y {
380
+ syntax: "*";
381
+ inherits: false;
382
+ }
383
+ @property --tw-border-style {
384
+ syntax: "*";
385
+ inherits: false;
386
+ initial-value: solid;
387
+ }
388
+ @property --tw-shadow {
389
+ syntax: "*";
390
+ inherits: false;
391
+ initial-value: 0 0 #0000;
392
+ }
393
+ @property --tw-shadow-color {
394
+ syntax: "*";
395
+ inherits: false;
396
+ }
397
+ @property --tw-shadow-alpha {
398
+ syntax: "<percentage>";
399
+ inherits: false;
400
+ initial-value: 100%;
401
+ }
402
+ @property --tw-inset-shadow {
403
+ syntax: "*";
404
+ inherits: false;
405
+ initial-value: 0 0 #0000;
406
+ }
407
+ @property --tw-inset-shadow-color {
408
+ syntax: "*";
409
+ inherits: false;
410
+ }
411
+ @property --tw-inset-shadow-alpha {
412
+ syntax: "<percentage>";
413
+ inherits: false;
414
+ initial-value: 100%;
415
+ }
416
+ @property --tw-ring-color {
417
+ syntax: "*";
418
+ inherits: false;
419
+ }
420
+ @property --tw-ring-shadow {
421
+ syntax: "*";
422
+ inherits: false;
423
+ initial-value: 0 0 #0000;
424
+ }
425
+ @property --tw-inset-ring-color {
426
+ syntax: "*";
427
+ inherits: false;
428
+ }
429
+ @property --tw-inset-ring-shadow {
430
+ syntax: "*";
431
+ inherits: false;
432
+ initial-value: 0 0 #0000;
433
+ }
434
+ @property --tw-ring-inset {
435
+ syntax: "*";
436
+ inherits: false;
437
+ }
438
+ @property --tw-ring-offset-width {
439
+ syntax: "<length>";
440
+ inherits: false;
441
+ initial-value: 0px;
442
+ }
443
+ @property --tw-ring-offset-color {
444
+ syntax: "*";
445
+ inherits: false;
446
+ initial-value: #fff;
447
+ }
448
+ @property --tw-ring-offset-shadow {
449
+ syntax: "*";
450
+ inherits: false;
451
+ initial-value: 0 0 #0000;
452
+ }
453
+ @property --tw-outline-style {
454
+ syntax: "*";
455
+ inherits: false;
456
+ initial-value: solid;
457
+ }
458
+ @property --tw-blur {
459
+ syntax: "*";
460
+ inherits: false;
461
+ }
462
+ @property --tw-brightness {
463
+ syntax: "*";
464
+ inherits: false;
465
+ }
466
+ @property --tw-contrast {
467
+ syntax: "*";
468
+ inherits: false;
469
+ }
470
+ @property --tw-grayscale {
471
+ syntax: "*";
472
+ inherits: false;
473
+ }
474
+ @property --tw-hue-rotate {
475
+ syntax: "*";
476
+ inherits: false;
477
+ }
478
+ @property --tw-invert {
479
+ syntax: "*";
480
+ inherits: false;
481
+ }
482
+ @property --tw-opacity {
483
+ syntax: "*";
484
+ inherits: false;
485
+ }
486
+ @property --tw-saturate {
487
+ syntax: "*";
488
+ inherits: false;
489
+ }
490
+ @property --tw-sepia {
491
+ syntax: "*";
492
+ inherits: false;
493
+ }
494
+ @property --tw-drop-shadow {
495
+ syntax: "*";
496
+ inherits: false;
497
+ }
498
+ @property --tw-drop-shadow-color {
499
+ syntax: "*";
500
+ inherits: false;
501
+ }
502
+ @property --tw-drop-shadow-alpha {
503
+ syntax: "<percentage>";
504
+ inherits: false;
505
+ initial-value: 100%;
506
+ }
507
+ @property --tw-drop-shadow-size {
508
+ syntax: "*";
509
+ inherits: false;
510
+ }
511
+ @property --tw-backdrop-blur {
512
+ syntax: "*";
513
+ inherits: false;
514
+ }
515
+ @property --tw-backdrop-brightness {
516
+ syntax: "*";
517
+ inherits: false;
518
+ }
519
+ @property --tw-backdrop-contrast {
520
+ syntax: "*";
521
+ inherits: false;
522
+ }
523
+ @property --tw-backdrop-grayscale {
524
+ syntax: "*";
525
+ inherits: false;
526
+ }
527
+ @property --tw-backdrop-hue-rotate {
528
+ syntax: "*";
529
+ inherits: false;
530
+ }
531
+ @property --tw-backdrop-invert {
532
+ syntax: "*";
533
+ inherits: false;
534
+ }
535
+ @property --tw-backdrop-opacity {
536
+ syntax: "*";
537
+ inherits: false;
538
+ }
539
+ @property --tw-backdrop-saturate {
540
+ syntax: "*";
541
+ inherits: false;
542
+ }
543
+ @property --tw-backdrop-sepia {
544
+ syntax: "*";
545
+ inherits: false;
546
+ }
547
+ @layer properties {
548
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
549
+ *, ::before, ::after, ::backdrop {
550
+ --tw-rotate-x: initial;
551
+ --tw-rotate-y: initial;
552
+ --tw-rotate-z: initial;
553
+ --tw-skew-x: initial;
554
+ --tw-skew-y: initial;
555
+ --tw-border-style: solid;
556
+ --tw-shadow: 0 0 #0000;
557
+ --tw-shadow-color: initial;
558
+ --tw-shadow-alpha: 100%;
559
+ --tw-inset-shadow: 0 0 #0000;
560
+ --tw-inset-shadow-color: initial;
561
+ --tw-inset-shadow-alpha: 100%;
562
+ --tw-ring-color: initial;
563
+ --tw-ring-shadow: 0 0 #0000;
564
+ --tw-inset-ring-color: initial;
565
+ --tw-inset-ring-shadow: 0 0 #0000;
566
+ --tw-ring-inset: initial;
567
+ --tw-ring-offset-width: 0px;
568
+ --tw-ring-offset-color: #fff;
569
+ --tw-ring-offset-shadow: 0 0 #0000;
570
+ --tw-outline-style: solid;
571
+ --tw-blur: initial;
572
+ --tw-brightness: initial;
573
+ --tw-contrast: initial;
574
+ --tw-grayscale: initial;
575
+ --tw-hue-rotate: initial;
576
+ --tw-invert: initial;
577
+ --tw-opacity: initial;
578
+ --tw-saturate: initial;
579
+ --tw-sepia: initial;
580
+ --tw-drop-shadow: initial;
581
+ --tw-drop-shadow-color: initial;
582
+ --tw-drop-shadow-alpha: 100%;
583
+ --tw-drop-shadow-size: initial;
584
+ --tw-backdrop-blur: initial;
585
+ --tw-backdrop-brightness: initial;
586
+ --tw-backdrop-contrast: initial;
587
+ --tw-backdrop-grayscale: initial;
588
+ --tw-backdrop-hue-rotate: initial;
589
+ --tw-backdrop-invert: initial;
590
+ --tw-backdrop-opacity: initial;
591
+ --tw-backdrop-saturate: initial;
592
+ --tw-backdrop-sepia: initial;
593
+ }
594
+ }
595
+ }
@@ -0,0 +1 @@
1
+ export type ChevronDirection = 'up' | 'down';
@@ -0,0 +1 @@
1
+ export {};
@@ -4,3 +4,4 @@ export * from './toast';
4
4
  export * from './indicator';
5
5
  export * from './field';
6
6
  export * from './view';
7
+ export * from './icon';
@@ -4,3 +4,4 @@ export * from './toast';
4
4
  export * from './indicator';
5
5
  export * from './field';
6
6
  export * from './view';
7
+ export * from './icon';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sphereon/ui-components.ssi-react",
3
3
  "private": false,
4
- "version": "0.3.1-unstable.5+14fb900",
4
+ "version": "0.4.1-unstable.2+64023ed",
5
5
  "description": "SSI UI components for React",
6
6
  "repository": "git@github.com:Sphereon-Opensource/UI-Components.git",
7
7
  "author": "Sphereon <dev@sphereon.com>",
@@ -13,8 +13,8 @@
13
13
  "Self-sovereign identity (SSI)"
14
14
  ],
15
15
  "scripts": {
16
- "build": "tsc && pnpm run copy-css",
17
- "copy-css": "cpy src/**/*.css dist --parents",
16
+ "build": "tsc && pnpm run generate-css",
17
+ "generate-css": "tailwindcss -i ./src/styles/css/tailwind.css -o ./dist/styles/css/tailwind.css",
18
18
  "build:clean": "tsc --build --clean && tsc --build"
19
19
  },
20
20
  "source": "src/index.ts",
@@ -31,6 +31,7 @@
31
31
  "dependencies": {
32
32
  "@emotion/react": "^11.11.4",
33
33
  "@emotion/styled": "^11.11.0",
34
+ "@headlessui/react": "^2.2.4",
34
35
  "@jsonforms/core": "^3.3.0",
35
36
  "@jsonforms/material-renderers": "^3.3.0",
36
37
  "@jsonforms/react": "^3.3.0",
@@ -40,8 +41,8 @@
40
41
  "@mui/styled-engine-sc": "^5.14.12",
41
42
  "@mui/system": "^5.15.12",
42
43
  "@mui/x-date-pickers": "^6.19.5",
43
- "@sphereon/ssi-sdk.data-store": "0.29.1-next.47",
44
- "@sphereon/ui-components.core": "0.3.1-unstable.5+14fb900",
44
+ "@sphereon/ssi-sdk.data-store": "^0.33",
45
+ "@sphereon/ui-components.core": "0.4.1-unstable.2+64023ed",
45
46
  "@tanstack/react-table": "^8.9.3",
46
47
  "react-json-tree": "^0.18.0",
47
48
  "react-loader-spinner": "5.4.5",
@@ -51,13 +52,15 @@
51
52
  "uint8arrays": "^3.1.1"
52
53
  },
53
54
  "devDependencies": {
54
- "@types/react": "~18.2.67",
55
+ "@tailwindcss/cli": "^4.1.11",
56
+ "@types/react": "~18.3.18",
55
57
  "ajv": "^8.12.0",
56
58
  "cpy-cli": "^5.0.0",
59
+ "tailwindcss": "^4.1.11",
57
60
  "typescript": "4.9.5"
58
61
  },
59
62
  "peerDependencies": {
60
63
  "react": ">= 18"
61
64
  },
62
- "gitHead": "14fb900e9a7fffa91ed70500402d470afa5aa5b3"
65
+ "gitHead": "64023ed017c2754d1fcfef36d3f3dee0bf428777"
63
66
  }