@qtoggle/qui 1.18.1 → 1.18.2

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/js/utils/css.js CHANGED
@@ -115,6 +115,7 @@ export function findRules(selectorRe) {
115
115
  let rules = [...sheet.cssRules]
116
116
  let mRules = rules.filter(r => r.selectorText && r.selectorText.match(selectorRe)).map(function (rule) {
117
117
  return rule.selectorText.split(',').map(function (selectorTextPart) {
118
+ selectorTextPart = selectorTextPart.trim()
118
119
  if (!selectorTextPart.match(selectorRe)) {
119
120
  return null
120
121
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@qtoggle/qui",
3
3
  "description": "A JavaScript UI library with batteries included.",
4
- "version": "1.18.1",
4
+ "version": "1.18.2",
5
5
  "author": {
6
6
  "name": "Calin Crisan",
7
7
  "email": "ccrisan@gmail.com"
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "qui-server"
3
- version = "1.18.1"
3
+ version = "1.18.2"
4
4
  description = "A fully fledged qToggle implementation written in Python"
5
5
  authors = [
6
6
  {name = "Calin Crisan", email = "ccrisan@gmail.com"},