@salesforcedevs/dx-components 0.10.1-alpha.30 → 0.10.1-alpha.31

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/dx-components",
3
- "version": "0.10.1-alpha.30",
3
+ "version": "0.10.1-alpha.31",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -101,11 +101,13 @@ export default class Sidebar extends LightningElement {
101
101
  super()
102
102
 
103
103
  if (getSidebarSearchParams()) {
104
+ console.log('ok itsloading')
104
105
  this.isSearchLoading = true;
105
106
  }
106
107
  }
107
108
 
108
109
  connectedCallback() {
110
+ console.log('connected, isloading equals', this.isSearchLoading)
109
111
  this.matchMedia = window.matchMedia(
110
112
  `(max-width: ${MOBILE_SIZE_MATCH})`
111
113
  );