stashes 0.1.45 → 0.1.46
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/dist/cli.js
CHANGED
|
@@ -1924,10 +1924,10 @@ class StashService {
|
|
|
1924
1924
|
if (match) {
|
|
1925
1925
|
this.selectedComponent = { ...component, filePath: match[0] };
|
|
1926
1926
|
this.broadcast({
|
|
1927
|
-
type: "
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1927
|
+
type: "component:resolved",
|
|
1928
|
+
filePath: match[0],
|
|
1929
|
+
name: component.name,
|
|
1930
|
+
domSelector: component.domSelector
|
|
1931
1931
|
});
|
|
1932
1932
|
}
|
|
1933
1933
|
}
|
package/dist/mcp.js
CHANGED
|
@@ -2120,10 +2120,10 @@ class StashService {
|
|
|
2120
2120
|
if (match) {
|
|
2121
2121
|
this.selectedComponent = { ...component, filePath: match[0] };
|
|
2122
2122
|
this.broadcast({
|
|
2123
|
-
type: "
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2123
|
+
type: "component:resolved",
|
|
2124
|
+
filePath: match[0],
|
|
2125
|
+
name: component.name,
|
|
2126
|
+
domSelector: component.domSelector
|
|
2127
2127
|
});
|
|
2128
2128
|
}
|
|
2129
2129
|
}
|