@ardium-ui/ui 5.0.0-alpha.49 → 5.0.0-alpha.50

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.
@@ -2700,9 +2700,6 @@ class ItemStorage {
2700
2700
  });
2701
2701
  this._lastHighlightedItem = signal(undefined);
2702
2702
  this._recentlyHighlightedItem = signal(undefined);
2703
- this.fndjf = effect(() => {
2704
- console.log(this.filteredItems());
2705
- });
2706
2703
  this._groups = computed(() => {
2707
2704
  const groupMap = this._createEmptyGroupMap();
2708
2705
  for (const item of this.filteredItems()) {
@@ -3879,7 +3876,6 @@ class ArdiumSelectComponent extends _FormFieldComponentBase {
3879
3876
  const newOptionObj = await this.itemStorage.addCustomOption(value, ac);
3880
3877
  if (!newOptionObj)
3881
3878
  return;
3882
- console.log('new option obj', this.itemStorage.items());
3883
3879
  this.selectItem(newOptionObj);
3884
3880
  }
3885
3881
  //! control value accessor
@@ -8124,7 +8120,6 @@ class ArdiumRangeCalendarComponent extends _AbstractCalendar {
8124
8120
  }
8125
8121
  writeValue(v) {
8126
8122
  if (isObject(v) && 'from' in v && 'to' in v && isDate(v['from']) && isDate(v['to'])) {
8127
- console.log('writing value');
8128
8123
  this.selectionStart.set(v['from']);
8129
8124
  this.selectionEnd.set(v['to']);
8130
8125
  }