inviton-powerduck 0.0.193 → 0.0.194

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.
@@ -56,7 +56,7 @@ class MobileOptimizedHeroFilterComponent extends TsxComponent<MobileOptimizedHer
56
56
 
57
57
  render(h) {
58
58
  return (
59
- <div class="mohf-root">
59
+ <div class={`mohf-root${this.cssClass ? ` ${this.cssClass}` : ''}`}>
60
60
  <div class="mohf-mobile-root">
61
61
  <div class="mohf-upper-spacer"></div>
62
62
  <div class="mohf-input">
@@ -72,7 +72,7 @@ class MobileOptimizedHeroFilterComponent extends TsxComponent<MobileOptimizedHer
72
72
  <div class="mohf-input-first-line-text">{this.mobileFirstLineText || (`${PowerduckState.getResourceValue('search')}...`)}</div>
73
73
 
74
74
  {this.mobileSecondLineText?.length > 0
75
- && <div class="mohf-input-second-line-text">{this.mobileSecondLineText}</div>}
75
+ && <div class="mohf-input-second-line-text">{this.mobileSecondLineText}</div>}
76
76
 
77
77
  </div>
78
78
  </FlexFormItem>
@@ -97,16 +97,16 @@ class MobileOptimizedHeroFilterComponent extends TsxComponent<MobileOptimizedHer
97
97
  </ModalBody>
98
98
  <ModalFooter>
99
99
  {this.mobileShowClearFilters
100
- && (
101
- <Button
102
- layout={ButtonLayout.Secondary}
103
- text={this.clearFilterText}
104
- fullWidth={true}
105
- clicked={() => {
106
- this.clickedClear();
107
- }}
108
- />
109
- )}
100
+ && (
101
+ <Button
102
+ layout={ButtonLayout.Secondary}
103
+ text={this.clearFilterText}
104
+ fullWidth={true}
105
+ clicked={() => {
106
+ this.clickedClear();
107
+ }}
108
+ />
109
+ )}
110
110
  <Button
111
111
  layout={ButtonLayout.Primary}
112
112
  text={PowerduckState.getResourceValue('search')}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "inviton-powerduck",
3
3
  "type": "module",
4
- "version": "0.0.193",
4
+ "version": "0.0.194",
5
5
  "files": [
6
6
  "app/",
7
7
  "common/",