jspreadsheet 8.1.4 → 8.1.5

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 (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -165,7 +165,7 @@ declare namespace jspreadsheet {
165
165
  /** Load the items from the dropdown from a remote URL. */
166
166
  url?: string;
167
167
  /** Define the items in the dropdown and autocomplete column type. */
168
- source?: Array<DropdownItem>;
168
+ source?: Array<DropdownItem> | Array<string> | Array<number>;
169
169
  /** Define the dropdown or autocomplete to accept multiple options. */
170
170
  multiple?: boolean;
171
171
  /** Define the input mask for the data cell. @see https://jsuites.net/v4/javascript-mask */
package/package.json CHANGED
@@ -24,5 +24,5 @@
24
24
  },
25
25
  "main": "dist/index.js",
26
26
  "types": "dist/index.d.ts",
27
- "version": "8.1.4"
27
+ "version": "8.1.5"
28
28
  }