@keenmate/web-multiselect 1.12.0-rc01 → 1.12.0-rc03
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 +53 -1933
- package/dist/index.d.ts +1 -0
- package/dist/multiselect.js +374 -348
- package/dist/multiselect.umd.js +14 -14
- package/dist/style.css +1 -1
- package/docs/accessibility.md +84 -0
- package/docs/examples.md +1180 -0
- package/docs/theming.md +388 -0
- package/docs/usage.md +307 -0
- package/package.json +5 -1
- package/src/css/base.css +1 -1
- package/src/css/variables.css +5 -6
package/dist/index.d.ts
CHANGED
|
@@ -275,6 +275,7 @@ export declare class MultiSelectElement<T = any> extends BaseElement {
|
|
|
275
275
|
private shadow;
|
|
276
276
|
private internals?;
|
|
277
277
|
private _options?;
|
|
278
|
+
private _hasDeclarativeOptions;
|
|
278
279
|
private _valueMember?;
|
|
279
280
|
private _getValueCallback?;
|
|
280
281
|
private _displayValueMember?;
|