@malloy-publisher/sdk 0.0.82 → 0.0.84
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/README.md +7 -0
- package/dist/index.cjs.js +58 -58
- package/dist/index.es.js +3017 -2917
- package/dist/markdown-editor.css +342 -0
- package/dist/styles.css +3 -0
- package/package.json +8 -2
- package/src/components/Package/Connections.tsx +144 -52
- package/src/components/Project/ConnectionExplorer.tsx +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
The Malloy Publisher SDK is a comprehensive toolkit designed to facilitate the development and testing of Malloy packages.
|
|
4
4
|
|
|
5
|
+
## CSS
|
|
6
|
+
To pull in CSS styling required by various SDK components do:
|
|
7
|
+
```ts
|
|
8
|
+
// Import required CSS
|
|
9
|
+
import '@malloy-publisher/sdk/styles.css';
|
|
10
|
+
```
|
|
11
|
+
|
|
5
12
|
## Providers
|
|
6
13
|
The SDK components rely on React Providers to supply context information.
|
|
7
14
|
There are current 2 Providers, 1 for Packages, 1 for Project components.
|