Skip to content

Commit

Permalink
Merge pull request #5 from revenuehero/fix/remove-logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jartek committed Sep 14, 2023
2 parents 88441bc + 3926d51 commit 7576a87
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 20 deletions.
7 changes: 0 additions & 7 deletions dist/react-big-calendar.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,6 @@ var getTargetHost = function getTargetHost() {
var shadowRootElement = document.querySelector(
'[data-rh-content-portal-name=create-relay-meeting]'
)
console.log('shadowRootElement', shadowRootElement)
if (shadowRootElement === null) return document
return shadowRootElement.shadowRoot
}
Expand Down Expand Up @@ -2396,12 +2395,6 @@ var Header = function Header(_ref) {
label
)
}
Header.propTypes =
process.env.NODE_ENV !== 'production'
? {
label: PropTypes.node,
}
: {}

var DateHeader = function DateHeader(_ref) {
var label = _ref.label,
Expand Down
1 change: 0 additions & 1 deletion dist/react-big-calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -45313,7 +45313,6 @@
var shadowRootElement = document.querySelector(
'[data-rh-content-portal-name=create-relay-meeting]'
)
console.log('shadowRootElement', shadowRootElement)
if (shadowRootElement === null) return document
return shadowRootElement.shadowRoot
}
Expand Down
22 changes: 10 additions & 12 deletions dist/react-big-calendar.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -12228,10 +12228,7 @@
var t = document.querySelector(
'[data-rh-content-portal-name=create-relay-meeting]'
)
return (
console.log('shadowRootElement', t),
null === t ? document : t.shadowRoot
)
return null === t ? document : t.shadowRoot
}
return e
}
Expand Down Expand Up @@ -13760,14 +13757,15 @@
})(se.Component)
sk.defaultProps = { minRows: 0, maxRows: 1 / 0 }
var ck = function (e) {
var t = e.label
return se.createElement(
'span',
{ role: 'columnheader', 'aria-sort': 'none' },
t
)
},
fk = function (e) {
var t = e.label
return se.createElement(
'span',
{ role: 'columnheader', 'aria-sort': 'none' },
t
)
}
ck.propTypes = {}
var fk = function (e) {
var t = e.label,
n = e.drilldownView,
r = e.onDrillDown
Expand Down

0 comments on commit 7576a87

Please sign in to comment.