@quanta-intellect/vessel-browser 0.1.51 → 0.1.56

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.
@@ -901,6 +901,230 @@
901
901
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
902
902
  }
903
903
  }
904
+
905
+
906
+ /* ═══════════════════════════════════════
907
+ Page diff — "What Changed?" popup
908
+ ═══════════════════════════════════════ */
909
+
910
+ .page-diff-popup {
911
+ position: absolute;
912
+ top: calc(32px + var(--tab-height) + var(--address-bar-height) + 6px);
913
+ left: 50%;
914
+ transform: translateX(-50%);
915
+ width: min(400px, calc(100vw - 28px));
916
+ max-height: min(320px, calc(100vh - 120px));
917
+ display: flex;
918
+ flex-direction: column;
919
+ border: 1px solid rgba(245, 158, 11, 0.2);
920
+ border-radius: var(--radius-lg);
921
+ background: linear-gradient(
922
+ 180deg,
923
+ rgba(50, 50, 54, 0.97),
924
+ rgba(34, 34, 38, 0.97)
925
+ );
926
+ box-shadow:
927
+ 0 4px 12px rgba(0, 0, 0, 0.2),
928
+ 0 16px 40px rgba(0, 0, 0, 0.16);
929
+ backdrop-filter: blur(16px);
930
+ overflow-y: auto;
931
+ z-index: 50;
932
+ animation: page-diff-enter var(--duration-enter) var(--ease-out-expo) both;
933
+ }
934
+
935
+ @keyframes page-diff-enter {
936
+ from {
937
+ opacity: 0;
938
+ transform: translateX(-50%) translateY(-6px) scale(0.97);
939
+ }
940
+ to {
941
+ opacity: 1;
942
+ transform: translateX(-50%) translateY(0) scale(1);
943
+ }
944
+ }
945
+
946
+ .page-diff-popup-header {
947
+ display: flex;
948
+ align-items: center;
949
+ justify-content: space-between;
950
+ padding: 10px 14px;
951
+ border-bottom: 1px solid rgba(245, 158, 11, 0.1);
952
+ color: var(--text-secondary);
953
+ font-size: 11.5px;
954
+ font-weight: 600;
955
+ letter-spacing: 0.01em;
956
+ }
957
+
958
+ .page-diff-popup-header-copy {
959
+ display: flex;
960
+ flex-direction: column;
961
+ gap: 3px;
962
+ }
963
+
964
+ .page-diff-burst-meta {
965
+ color: var(--text-muted);
966
+ font-size: 10.5px;
967
+ font-weight: 500;
968
+ }
969
+
970
+ .page-diff-popup-close {
971
+ width: 22px;
972
+ height: 22px;
973
+ display: flex;
974
+ align-items: center;
975
+ justify-content: center;
976
+ border-radius: var(--radius-sm);
977
+ border: none;
978
+ background: transparent;
979
+ color: var(--text-muted);
980
+ font-size: 16px;
981
+ cursor: pointer;
982
+ transition:
983
+ background var(--duration-fast) var(--ease-in-out),
984
+ color var(--duration-fast) var(--ease-in-out);
985
+ }
986
+
987
+ .page-diff-popup-close:hover {
988
+ background: rgba(255, 255, 255, 0.06);
989
+ color: var(--text-primary);
990
+ }
991
+
992
+ .page-diff-burst-history {
993
+ display: flex;
994
+ flex-direction: column;
995
+ gap: 6px;
996
+ padding: 10px 14px;
997
+ border-bottom: 1px solid rgba(255, 255, 255, 0.05);
998
+ background: rgba(255, 255, 255, 0.02);
999
+ }
1000
+
1001
+ .page-diff-burst-history-label {
1002
+ color: var(--text-muted);
1003
+ font-size: 10.5px;
1004
+ font-weight: 700;
1005
+ letter-spacing: 0.04em;
1006
+ text-transform: uppercase;
1007
+ }
1008
+
1009
+ .page-diff-burst-row {
1010
+ display: grid;
1011
+ grid-template-columns: 60px 1fr;
1012
+ gap: 8px;
1013
+ align-items: start;
1014
+ }
1015
+
1016
+ .page-diff-burst-time {
1017
+ color: var(--text-muted);
1018
+ font-size: 11px;
1019
+ }
1020
+
1021
+ .page-diff-burst-summary {
1022
+ color: var(--text-secondary);
1023
+ font-size: 11.5px;
1024
+ line-height: 1.4;
1025
+ word-break: break-word;
1026
+ }
1027
+
1028
+ .page-diff-item {
1029
+ display: flex;
1030
+ flex-direction: column;
1031
+ align-items: stretch;
1032
+ gap: 8px;
1033
+ padding: 12px 14px;
1034
+ border-bottom: 1px solid rgba(255, 255, 255, 0.03);
1035
+ }
1036
+
1037
+ .page-diff-item:last-child {
1038
+ border-bottom: none;
1039
+ }
1040
+
1041
+ .page-diff-item-header {
1042
+ display: flex;
1043
+ flex-direction: column;
1044
+ gap: 4px;
1045
+ }
1046
+
1047
+ .page-diff-section {
1048
+ align-self: flex-start;
1049
+ padding: 2px 6px;
1050
+ border-radius: var(--radius-sm);
1051
+ background: rgba(255, 255, 255, 0.05);
1052
+ color: var(--text-muted);
1053
+ font-size: 10px;
1054
+ font-weight: 600;
1055
+ text-transform: uppercase;
1056
+ letter-spacing: 0.04em;
1057
+ }
1058
+
1059
+ .page-diff-summary {
1060
+ color: var(--text-secondary);
1061
+ font-size: 12px;
1062
+ line-height: 1.45;
1063
+ word-break: break-word;
1064
+ }
1065
+
1066
+ .page-diff-snippets {
1067
+ display: grid;
1068
+ gap: 6px;
1069
+ }
1070
+
1071
+ .page-diff-snippet {
1072
+ display: flex;
1073
+ flex-direction: column;
1074
+ gap: 3px;
1075
+ padding: 8px 10px;
1076
+ border-radius: var(--radius-md);
1077
+ background: rgba(255, 255, 255, 0.04);
1078
+ }
1079
+
1080
+ .page-diff-snippet-label,
1081
+ .page-diff-list-label {
1082
+ color: var(--text-muted);
1083
+ font-size: 10.5px;
1084
+ font-weight: 700;
1085
+ letter-spacing: 0.04em;
1086
+ text-transform: uppercase;
1087
+ }
1088
+
1089
+ .page-diff-snippet-text {
1090
+ color: var(--text-primary);
1091
+ font-size: 12px;
1092
+ line-height: 1.45;
1093
+ }
1094
+
1095
+ .page-diff-list-group {
1096
+ display: flex;
1097
+ flex-direction: column;
1098
+ gap: 4px;
1099
+ }
1100
+
1101
+ .page-diff-list {
1102
+ margin: 0;
1103
+ padding-left: 18px;
1104
+ color: var(--text-secondary);
1105
+ font-size: 12px;
1106
+ line-height: 1.45;
1107
+ }
1108
+
1109
+ .page-diff-list li + li {
1110
+ margin-top: 4px;
1111
+ }
1112
+
1113
+ .page-diff-added .page-diff-section {
1114
+ background: rgba(34, 197, 94, 0.1);
1115
+ color: #4ade80;
1116
+ }
1117
+
1118
+ .page-diff-removed .page-diff-section {
1119
+ background: rgba(239, 68, 68, 0.1);
1120
+ color: #f87171;
1121
+ }
1122
+
1123
+ .page-diff-changed .page-diff-section,
1124
+ .page-diff-modified .page-diff-section {
1125
+ background: rgba(245, 158, 11, 0.1);
1126
+ color: #fbbf24;
1127
+ }
904
1128
  /* ═══════════════════════════════════════
905
1129
  Command bar overlay — cinematic entrance
906
1130
  ═══════════════════════════════════════ */
@@ -5,8 +5,8 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self'; font-src 'self' data:;" />
7
7
  <title>Vessel</title>
8
- <script type="module" crossorigin src="./assets/index-hRUKGdgt.js"></script>
9
- <link rel="stylesheet" crossorigin href="./assets/index-eS3ccAls.css">
8
+ <script type="module" crossorigin src="./assets/index-DRVDsSQe.js"></script>
9
+ <link rel="stylesheet" crossorigin href="./assets/index-DRj77a_O.css">
10
10
  </head>
11
11
  <body>
12
12
  <div id="root"></div>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@quanta-intellect/vessel-browser",
3
3
  "mcpName": "io.github.unmodeled-tyler/vessel-browser",
4
- "version": "0.1.51",
4
+ "version": "0.1.56",
5
5
  "description": "AI-native web browser runtime for autonomous agents with human supervision",
6
6
  "main": "./out/main/index.js",
7
7
  "bin": {