@malloy-publisher/sdk 0.0.130 → 0.0.131
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/index.cjs.js +73 -73
- package/dist/index.es.js +2737 -2739
- package/package.json +1 -1
- package/src/components/Model/Model.tsx +8 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "@malloydata/malloy-explorer/styles.css";
|
|
2
2
|
import LinkOutlinedIcon from "@mui/icons-material/LinkOutlined";
|
|
3
|
-
import
|
|
3
|
+
import SearchIcon from "@mui/icons-material/Search";
|
|
4
4
|
import {
|
|
5
5
|
Box,
|
|
6
6
|
IconButton,
|
|
@@ -147,15 +147,13 @@ export default function Model({
|
|
|
147
147
|
}}
|
|
148
148
|
onClick={() => setDialogOpen(true)}
|
|
149
149
|
>
|
|
150
|
-
<
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
/>
|
|
158
|
-
</Tooltip>
|
|
150
|
+
<SearchIcon
|
|
151
|
+
sx={{
|
|
152
|
+
fontSize: "18px",
|
|
153
|
+
color: "#666666",
|
|
154
|
+
marginBottom: "5px",
|
|
155
|
+
}}
|
|
156
|
+
/>
|
|
159
157
|
</IconButton>
|
|
160
158
|
</Stack>
|
|
161
159
|
)}
|