@updog/data-editor 0.1.29 → 0.1.31

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.
Files changed (4) hide show
  1. package/index.css +1 -1
  2. package/index.d.ts +5 -0
  3. package/index.js +2367 -2354
  4. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -2912,6 +2912,11 @@ type DataEditorBaseProps<TRow extends DataEditorRow = DataEditorRow> = {
2912
2912
  * @default true
2913
2913
  */
2914
2914
  enableAddRow?: boolean;
2915
+ /**
2916
+ * Show the "Add data source" button in the data sources panel.
2917
+ * @default true
2918
+ */
2919
+ enableAddSource?: boolean;
2915
2920
  /**
2916
2921
  * Which file formats the user can import. `undefined` allows all formats,
2917
2922
  * `false` disables import entirely.