@mustib/web-components 0.0.0-alpha.0 → 0.0.0-alpha.1

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.
@@ -395,8 +395,7 @@ class MuRange extends MUElement {
395
395
  if (this.isControlled) {
396
396
  this.sortThumbs();
397
397
  const sortedThumbs = this._thumbs.map(_thumb => ({ name: _thumb.name, value: _thumb.name === thumb.name ? stepValue : thumb.value }));
398
- console.table(sortedThumbs);
399
- // this.dispatchChangeEvent(sortedThumbs)
398
+ this.dispatchChangeEvent(sortedThumbs);
400
399
  return;
401
400
  }
402
401
  const success = thumb.element.setValue(stepValue);
@@ -28,7 +28,7 @@ declare class MuSelectLabel extends MUElement {
28
28
  setActiveDescendantId(id?: string): void;
29
29
  connectedCallback(): void;
30
30
  protected _assignLabelAndValueTypes(): void;
31
- get comboboxElement(): MuSelectLabelContent | HTMLElement | null | undefined;
31
+ get comboboxElement(): HTMLElement | MuSelectLabelContent | null | undefined;
32
32
  focus(options?: FocusOptions): void;
33
33
  protected _slotChangeHandler: () => void;
34
34
  protected firstUpdated(_changedProperties: PropertyValues): void;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "type": "module",
4
4
  "description": "A customizable web-components library with lit",
5
5
  "private": false,
6
- "version": "0.0.0-alpha.0",
6
+ "version": "0.0.0-alpha.1",
7
7
  "dependencies": {
8
8
  "@mustib/utils": "2.7.0"
9
9
  },