@qtoggle/qui 1.19.1 → 1.19.3

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.
@@ -1,6 +1,6 @@
1
1
  repos:
2
2
  - repo: https://github.com/astral-sh/ruff-pre-commit
3
- rev: v0.11.12
3
+ rev: v0.14.11
4
4
  hooks:
5
5
  - id: ruff-check
6
6
  language: system
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.19.1",
4
+ "version": "1.19.3",
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.19.1"
3
+ version = "1.19.3"
4
4
  description = "A fully fledged qToggle implementation written in Python"
5
5
  authors = [
6
6
  {name = "Calin Crisan", email = "ccrisan@gmail.com"},
@@ -27,7 +27,6 @@ const LESS_DIR = 'less'
27
27
  const TMPL_DIR = 'templates'
28
28
  const DIST_DIR = 'dist'
29
29
 
30
- const LESS_REGEX = new RegExp(`${LESS_DIR}/.*\\.less$`)
31
30
  const QUI_JS_REGEX = new RegExp(`qui/${JS_DIR}/.*\\.jsm?$`)
32
31
  const QUI_LESS_REGEX = new RegExp(`qui/${LESS_DIR}/.*\\.less$`)
33
32
  const IMG_REGEX = new RegExp(`${IMG_DIR}/.*\\.(svg|png|gif|jpg|jpe?g|ico)$`)
@@ -67,6 +66,7 @@ function makeLessRule({type, theme, isProduction, appName, appFullPath, quiFullP
67
66
  loader: 'less-loader',
68
67
  options: {
69
68
  lessOptions: {
69
+ relativeUrls: false,
70
70
  globalVars: {
71
71
  qui_theme: theme,
72
72
  app_img_path: appImgPath,