@malloy-publisher/sdk 0.0.129 → 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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@malloy-publisher/sdk",
3
3
  "description": "Malloy Publisher SDK",
4
- "version": "0.0.129",
4
+ "version": "0.0.131",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",
7
7
  "module": "dist/index.es.js",
@@ -130,6 +130,16 @@ export const connectionFieldsByType: Record<
130
130
  name: "responseTimeoutMilliseconds",
131
131
  type: "text",
132
132
  },
133
+ {
134
+ label: "Private Key",
135
+ name: "privateKey",
136
+ type: "password",
137
+ },
138
+ {
139
+ label: "Private Key Passphrase",
140
+ name: "privateKeyPass",
141
+ type: "password",
142
+ },
133
143
  ],
134
144
  trino: [
135
145
  {
@@ -1,6 +1,6 @@
1
1
  import "@malloydata/malloy-explorer/styles.css";
2
2
  import LinkOutlinedIcon from "@mui/icons-material/LinkOutlined";
3
- import ZoomOutMapIcon from "@mui/icons-material/ZoomOutMap";
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
- <Tooltip title="Expanded view">
151
- <ZoomOutMapIcon
152
- sx={{
153
- fontSize: "18px",
154
- color: "#666666",
155
- marginBottom: "5px",
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
  )}