@powerhousedao/vetra 5.3.0-staging.1 → 6.0.0-dev.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.
Files changed (39) hide show
  1. package/dist/document-models/app-module/gen/schema/zod.d.ts +1 -1
  2. package/dist/document-models/app-module/gen/schema/zod.d.ts.map +1 -1
  3. package/dist/document-models/document-editor/gen/schema/zod.d.ts +1 -1
  4. package/dist/document-models/document-editor/gen/schema/zod.d.ts.map +1 -1
  5. package/dist/document-models/processor-module/gen/schema/zod.d.ts +1 -1
  6. package/dist/document-models/processor-module/gen/schema/zod.d.ts.map +1 -1
  7. package/dist/document-models/subgraph-module/gen/schema/zod.d.ts +1 -1
  8. package/dist/document-models/subgraph-module/gen/schema/zod.d.ts.map +1 -1
  9. package/dist/document-models/vetra-package/gen/schema/zod.d.ts +1 -1
  10. package/dist/document-models/vetra-package/gen/schema/zod.d.ts.map +1 -1
  11. package/dist/editors/vetra-drive-app/DriveExplorer.d.ts +3 -1
  12. package/dist/editors/vetra-drive-app/DriveExplorer.d.ts.map +1 -1
  13. package/dist/editors/vetra-drive-app/DriveExplorer.js +2 -2
  14. package/dist/editors/vetra-drive-app/components/DriveHeader.d.ts +3 -1
  15. package/dist/editors/vetra-drive-app/components/DriveHeader.d.ts.map +1 -1
  16. package/dist/editors/vetra-drive-app/components/DriveHeader.js +55 -3
  17. package/dist/editors/vetra-drive-app/components/DriveInfoItem.d.ts +8 -0
  18. package/dist/editors/vetra-drive-app/components/DriveInfoItem.d.ts.map +1 -0
  19. package/dist/editors/vetra-drive-app/components/DriveInfoItem.js +22 -0
  20. package/dist/editors/vetra-drive-app/components/ShareMenuItem.d.ts +8 -0
  21. package/dist/editors/vetra-drive-app/components/ShareMenuItem.d.ts.map +1 -0
  22. package/dist/editors/vetra-drive-app/components/ShareMenuItem.js +23 -0
  23. package/dist/editors/vetra-drive-app/editor.d.ts.map +1 -1
  24. package/dist/editors/vetra-drive-app/editor.js +7 -1
  25. package/dist/editors/vetra-drive-app/icons/CopyIcon.d.ts +10 -0
  26. package/dist/editors/vetra-drive-app/icons/CopyIcon.d.ts.map +1 -0
  27. package/dist/editors/vetra-drive-app/icons/CopyIcon.js +5 -0
  28. package/dist/editors/vetra-drive-app/icons/ExternalLinkIcon.d.ts +10 -0
  29. package/dist/editors/vetra-drive-app/icons/ExternalLinkIcon.d.ts.map +1 -0
  30. package/dist/editors/vetra-drive-app/icons/ExternalLinkIcon.js +5 -0
  31. package/dist/editors/vetra-drive-app/icons/LinkIcon.d.ts +10 -0
  32. package/dist/editors/vetra-drive-app/icons/LinkIcon.d.ts.map +1 -0
  33. package/dist/editors/vetra-drive-app/icons/LinkIcon.js +5 -0
  34. package/dist/editors/vetra-drive-app/icons/ShareIcon.d.ts +1 -1
  35. package/dist/editors/vetra-drive-app/icons/ShareIcon.d.ts.map +1 -1
  36. package/dist/editors/vetra-drive-app/icons/ShareIcon.js +3 -3
  37. package/dist/style.css +159 -62
  38. package/dist/tsconfig.tsbuildinfo +1 -1
  39. package/package.json +17 -17
package/dist/style.css CHANGED
@@ -17,6 +17,7 @@
17
17
  --color-blue-600: hsl(209 100% 65%);
18
18
  --color-blue-700: hsl(209 100% 60%);
19
19
  --color-blue-800: hsl(209 100% 55%);
20
+ --color-slate-50: hsl(210 20% 96%);
20
21
  --color-gray-50: hsl(0 0% 99%);
21
22
  --color-gray-100: hsl(0 0% 96%);
22
23
  --color-gray-200: hsl(0 0% 94%);
@@ -30,8 +31,10 @@
30
31
  --color-zinc-50: oklch(98.5% 0 0);
31
32
  --color-zinc-100: oklch(96.7% 0.001 286.375);
32
33
  --color-zinc-200: oklch(92% 0.004 286.32);
34
+ --color-stone-300: oklch(86.9% 0.005 56.366);
33
35
  --color-white: hsl(0 0% 100%);
34
36
  --spacing: 0.25rem;
37
+ --container-md: 28rem;
35
38
  --text-xs: 0.75rem;
36
39
  --text-xs--line-height: calc(1 / 0.75);
37
40
  --text-sm: 0.875rem;
@@ -44,6 +47,7 @@
44
47
  --font-weight-medium: 500;
45
48
  --font-weight-semibold: 600;
46
49
  --radius-md: 0.375rem;
50
+ --radius-lg: 0.5rem;
47
51
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
48
52
  --default-transition-duration: 150ms;
49
53
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -209,9 +213,24 @@
209
213
  .fixed {
210
214
  position: fixed;
211
215
  }
216
+ .relative {
217
+ position: relative;
218
+ }
212
219
  .static {
213
220
  position: static;
214
221
  }
222
+ .top-full {
223
+ top: 100%;
224
+ }
225
+ .left-0 {
226
+ left: calc(var(--spacing) * 0);
227
+ }
228
+ .z-10 {
229
+ z-index: 10;
230
+ }
231
+ .z-20 {
232
+ z-index: 20;
233
+ }
215
234
  .m-4 {
216
235
  margin: calc(var(--spacing) * 4);
217
236
  }
@@ -221,6 +240,12 @@
221
240
  .my-2 {
222
241
  margin-block: calc(var(--spacing) * 2);
223
242
  }
243
+ .mt-1 {
244
+ margin-top: calc(var(--spacing) * 1);
245
+ }
246
+ .mt-2 {
247
+ margin-top: calc(var(--spacing) * 2);
248
+ }
224
249
  .mt-4 {
225
250
  margin-top: calc(var(--spacing) * 4);
226
251
  }
@@ -272,6 +297,9 @@
272
297
  .h-4 {
273
298
  height: calc(var(--spacing) * 4);
274
299
  }
300
+ .h-8 {
301
+ height: calc(var(--spacing) * 8);
302
+ }
275
303
  .h-\[200px\] {
276
304
  height: 200px;
277
305
  }
@@ -287,9 +315,18 @@
287
315
  .w-4 {
288
316
  width: calc(var(--spacing) * 4);
289
317
  }
318
+ .w-\[300px\] {
319
+ width: 300px;
320
+ }
290
321
  .w-full {
291
322
  width: 100%;
292
323
  }
324
+ .w-max {
325
+ width: max-content;
326
+ }
327
+ .max-w-md {
328
+ max-width: var(--container-md);
329
+ }
293
330
  .min-w-0 {
294
331
  min-width: calc(var(--spacing) * 0);
295
332
  }
@@ -317,24 +354,36 @@
317
354
  .grid-cols-1 {
318
355
  grid-template-columns: repeat(1, minmax(0, 1fr));
319
356
  }
357
+ .flex-col {
358
+ flex-direction: column;
359
+ }
320
360
  .flex-wrap {
321
361
  flex-wrap: wrap;
322
362
  }
323
363
  .items-center {
324
364
  align-items: center;
325
365
  }
366
+ .items-start {
367
+ align-items: flex-start;
368
+ }
326
369
  .justify-between {
327
370
  justify-content: space-between;
328
371
  }
329
372
  .justify-center {
330
373
  justify-content: center;
331
374
  }
375
+ .gap-1 {
376
+ gap: calc(var(--spacing) * 1);
377
+ }
332
378
  .gap-2 {
333
379
  gap: calc(var(--spacing) * 2);
334
380
  }
335
381
  .gap-3 {
336
382
  gap: calc(var(--spacing) * 3);
337
383
  }
384
+ .gap-4 {
385
+ gap: calc(var(--spacing) * 4);
386
+ }
338
387
  .gap-6 {
339
388
  gap: calc(var(--spacing) * 6);
340
389
  }
@@ -376,6 +425,9 @@
376
425
  .rounded-full {
377
426
  border-radius: calc(infinity * 1px);
378
427
  }
428
+ .rounded-lg {
429
+ border-radius: var(--radius-lg);
430
+ }
379
431
  .rounded-md {
380
432
  border-radius: var(--radius-md);
381
433
  }
@@ -390,6 +442,9 @@
390
442
  .border-blue-300 {
391
443
  border-color: var(--color-blue-300);
392
444
  }
445
+ .border-gray-200 {
446
+ border-color: var(--color-gray-200);
447
+ }
393
448
  .border-gray-300 {
394
449
  border-color: var(--color-gray-300);
395
450
  }
@@ -408,9 +463,15 @@
408
463
  .bg-gray-100 {
409
464
  background-color: var(--color-gray-100);
410
465
  }
466
+ .bg-gray-800 {
467
+ background-color: var(--color-gray-800);
468
+ }
411
469
  .bg-green-100 {
412
470
  background-color: var(--color-green-100);
413
471
  }
472
+ .bg-slate-50 {
473
+ background-color: var(--color-slate-50);
474
+ }
414
475
  .bg-white {
415
476
  background-color: var(--color-white);
416
477
  }
@@ -429,6 +490,9 @@
429
490
  .p-3 {
430
491
  padding: calc(var(--spacing) * 3);
431
492
  }
493
+ .p-4 {
494
+ padding: calc(var(--spacing) * 4);
495
+ }
432
496
  .p-6 {
433
497
  padding: calc(var(--spacing) * 6);
434
498
  }
@@ -456,12 +520,18 @@
456
520
  .py-4 {
457
521
  padding-block: calc(var(--spacing) * 4);
458
522
  }
523
+ .pr-2 {
524
+ padding-right: calc(var(--spacing) * 2);
525
+ }
459
526
  .pb-2 {
460
527
  padding-bottom: calc(var(--spacing) * 2);
461
528
  }
462
529
  .pb-4 {
463
530
  padding-bottom: calc(var(--spacing) * 4);
464
531
  }
532
+ .pl-1 {
533
+ padding-left: calc(var(--spacing) * 1);
534
+ }
465
535
  .text-left {
466
536
  text-align: left;
467
537
  }
@@ -493,6 +563,12 @@
493
563
  --tw-font-weight: var(--font-weight-semibold);
494
564
  font-weight: var(--font-weight-semibold);
495
565
  }
566
+ .break-all {
567
+ word-break: break-all;
568
+ }
569
+ .whitespace-nowrap {
570
+ white-space: nowrap;
571
+ }
496
572
  .text-blue-600 {
497
573
  color: var(--color-blue-600);
498
574
  }
@@ -523,12 +599,22 @@
523
599
  .text-red-800 {
524
600
  color: var(--color-red-800);
525
601
  }
602
+ .text-stone-300 {
603
+ color: var(--color-stone-300);
604
+ }
526
605
  .text-white {
527
606
  color: var(--color-white);
528
607
  }
529
608
  .text-yellow-800 {
530
609
  color: var(--color-yellow-800);
531
610
  }
611
+ .underline {
612
+ text-decoration-line: underline;
613
+ }
614
+ .shadow-lg {
615
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
616
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
617
+ }
532
618
  .blur {
533
619
  --tw-blur: blur(8px);
534
620
  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,);
@@ -564,6 +650,10 @@
564
650
  --tw-ease: var(--ease-in-out);
565
651
  transition-timing-function: var(--ease-in-out);
566
652
  }
653
+ .outline-none {
654
+ --tw-outline-style: none;
655
+ outline-style: none;
656
+ }
567
657
  .group-hover\:block {
568
658
  &:is(:where(.group):hover *) {
569
659
  @media (hover: hover) {
@@ -671,6 +761,13 @@
671
761
  }
672
762
  }
673
763
  }
764
+ .hover\:text-gray-700 {
765
+ &:hover {
766
+ @media (hover: hover) {
767
+ color: var(--color-gray-700);
768
+ }
769
+ }
770
+ }
674
771
  .hover\:text-gray-800 {
675
772
  &:hover {
676
773
  @media (hover: hover) {
@@ -756,136 +853,136 @@
756
853
  syntax: "*";
757
854
  inherits: false;
758
855
  }
759
- @property --tw-blur {
856
+ @property --tw-shadow {
760
857
  syntax: "*";
761
858
  inherits: false;
859
+ initial-value: 0 0 #0000;
762
860
  }
763
- @property --tw-brightness {
861
+ @property --tw-shadow-color {
764
862
  syntax: "*";
765
863
  inherits: false;
766
864
  }
767
- @property --tw-contrast {
768
- syntax: "*";
865
+ @property --tw-shadow-alpha {
866
+ syntax: "<percentage>";
769
867
  inherits: false;
868
+ initial-value: 100%;
770
869
  }
771
- @property --tw-grayscale {
870
+ @property --tw-inset-shadow {
772
871
  syntax: "*";
773
872
  inherits: false;
873
+ initial-value: 0 0 #0000;
774
874
  }
775
- @property --tw-hue-rotate {
875
+ @property --tw-inset-shadow-color {
776
876
  syntax: "*";
777
877
  inherits: false;
778
878
  }
779
- @property --tw-invert {
780
- syntax: "*";
879
+ @property --tw-inset-shadow-alpha {
880
+ syntax: "<percentage>";
781
881
  inherits: false;
882
+ initial-value: 100%;
782
883
  }
783
- @property --tw-opacity {
884
+ @property --tw-ring-color {
784
885
  syntax: "*";
785
886
  inherits: false;
786
887
  }
787
- @property --tw-saturate {
888
+ @property --tw-ring-shadow {
788
889
  syntax: "*";
789
890
  inherits: false;
891
+ initial-value: 0 0 #0000;
790
892
  }
791
- @property --tw-sepia {
893
+ @property --tw-inset-ring-color {
792
894
  syntax: "*";
793
895
  inherits: false;
794
896
  }
795
- @property --tw-drop-shadow {
897
+ @property --tw-inset-ring-shadow {
796
898
  syntax: "*";
797
899
  inherits: false;
900
+ initial-value: 0 0 #0000;
798
901
  }
799
- @property --tw-drop-shadow-color {
902
+ @property --tw-ring-inset {
800
903
  syntax: "*";
801
904
  inherits: false;
802
905
  }
803
- @property --tw-drop-shadow-alpha {
804
- syntax: "<percentage>";
906
+ @property --tw-ring-offset-width {
907
+ syntax: "<length>";
805
908
  inherits: false;
806
- initial-value: 100%;
909
+ initial-value: 0px;
807
910
  }
808
- @property --tw-drop-shadow-size {
911
+ @property --tw-ring-offset-color {
809
912
  syntax: "*";
810
913
  inherits: false;
914
+ initial-value: #fff;
811
915
  }
812
- @property --tw-duration {
916
+ @property --tw-ring-offset-shadow {
813
917
  syntax: "*";
814
918
  inherits: false;
919
+ initial-value: 0 0 #0000;
815
920
  }
816
- @property --tw-ease {
921
+ @property --tw-blur {
817
922
  syntax: "*";
818
923
  inherits: false;
819
924
  }
820
- @property --tw-content {
925
+ @property --tw-brightness {
821
926
  syntax: "*";
822
- initial-value: "";
823
927
  inherits: false;
824
928
  }
825
- @property --tw-shadow {
929
+ @property --tw-contrast {
826
930
  syntax: "*";
827
931
  inherits: false;
828
- initial-value: 0 0 #0000;
829
932
  }
830
- @property --tw-shadow-color {
933
+ @property --tw-grayscale {
831
934
  syntax: "*";
832
935
  inherits: false;
833
936
  }
834
- @property --tw-shadow-alpha {
835
- syntax: "<percentage>";
937
+ @property --tw-hue-rotate {
938
+ syntax: "*";
836
939
  inherits: false;
837
- initial-value: 100%;
838
940
  }
839
- @property --tw-inset-shadow {
941
+ @property --tw-invert {
840
942
  syntax: "*";
841
943
  inherits: false;
842
- initial-value: 0 0 #0000;
843
944
  }
844
- @property --tw-inset-shadow-color {
945
+ @property --tw-opacity {
845
946
  syntax: "*";
846
947
  inherits: false;
847
948
  }
848
- @property --tw-inset-shadow-alpha {
849
- syntax: "<percentage>";
949
+ @property --tw-saturate {
950
+ syntax: "*";
850
951
  inherits: false;
851
- initial-value: 100%;
852
952
  }
853
- @property --tw-ring-color {
953
+ @property --tw-sepia {
854
954
  syntax: "*";
855
955
  inherits: false;
856
956
  }
857
- @property --tw-ring-shadow {
957
+ @property --tw-drop-shadow {
858
958
  syntax: "*";
859
959
  inherits: false;
860
- initial-value: 0 0 #0000;
861
960
  }
862
- @property --tw-inset-ring-color {
961
+ @property --tw-drop-shadow-color {
863
962
  syntax: "*";
864
963
  inherits: false;
865
964
  }
866
- @property --tw-inset-ring-shadow {
867
- syntax: "*";
965
+ @property --tw-drop-shadow-alpha {
966
+ syntax: "<percentage>";
868
967
  inherits: false;
869
- initial-value: 0 0 #0000;
968
+ initial-value: 100%;
870
969
  }
871
- @property --tw-ring-inset {
970
+ @property --tw-drop-shadow-size {
872
971
  syntax: "*";
873
972
  inherits: false;
874
973
  }
875
- @property --tw-ring-offset-width {
876
- syntax: "<length>";
974
+ @property --tw-duration {
975
+ syntax: "*";
877
976
  inherits: false;
878
- initial-value: 0px;
879
977
  }
880
- @property --tw-ring-offset-color {
978
+ @property --tw-ease {
881
979
  syntax: "*";
882
980
  inherits: false;
883
- initial-value: #fff;
884
981
  }
885
- @property --tw-ring-offset-shadow {
982
+ @property --tw-content {
886
983
  syntax: "*";
984
+ initial-value: "";
887
985
  inherits: false;
888
- initial-value: 0 0 #0000;
889
986
  }
890
987
  @layer properties {
891
988
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
@@ -898,6 +995,20 @@
898
995
  --tw-space-y-reverse: 0;
899
996
  --tw-border-style: solid;
900
997
  --tw-font-weight: initial;
998
+ --tw-shadow: 0 0 #0000;
999
+ --tw-shadow-color: initial;
1000
+ --tw-shadow-alpha: 100%;
1001
+ --tw-inset-shadow: 0 0 #0000;
1002
+ --tw-inset-shadow-color: initial;
1003
+ --tw-inset-shadow-alpha: 100%;
1004
+ --tw-ring-color: initial;
1005
+ --tw-ring-shadow: 0 0 #0000;
1006
+ --tw-inset-ring-color: initial;
1007
+ --tw-inset-ring-shadow: 0 0 #0000;
1008
+ --tw-ring-inset: initial;
1009
+ --tw-ring-offset-width: 0px;
1010
+ --tw-ring-offset-color: #fff;
1011
+ --tw-ring-offset-shadow: 0 0 #0000;
901
1012
  --tw-blur: initial;
902
1013
  --tw-brightness: initial;
903
1014
  --tw-contrast: initial;
@@ -914,20 +1025,6 @@
914
1025
  --tw-duration: initial;
915
1026
  --tw-ease: initial;
916
1027
  --tw-content: "";
917
- --tw-shadow: 0 0 #0000;
918
- --tw-shadow-color: initial;
919
- --tw-shadow-alpha: 100%;
920
- --tw-inset-shadow: 0 0 #0000;
921
- --tw-inset-shadow-color: initial;
922
- --tw-inset-shadow-alpha: 100%;
923
- --tw-ring-color: initial;
924
- --tw-ring-shadow: 0 0 #0000;
925
- --tw-inset-ring-color: initial;
926
- --tw-inset-ring-shadow: 0 0 #0000;
927
- --tw-ring-inset: initial;
928
- --tw-ring-offset-width: 0px;
929
- --tw-ring-offset-color: #fff;
930
- --tw-ring-offset-shadow: 0 0 #0000;
931
1028
  }
932
1029
  }
933
1030
  }