create-quilltap-theme 2.0.8 → 2.0.10

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": "create-quilltap-theme",
3
- "version": "2.0.8",
3
+ "version": "2.0.10",
4
4
  "description": "Scaffold a new Quilltap theme plugin",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -35,7 +35,7 @@
35
35
  "node": ">=18.0.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@types/node": "^24.12.2",
38
+ "@types/node": "^24.12.4",
39
39
  "esbuild": "^0.28.0",
40
40
  "typescript": "^5.9.3"
41
41
  }
@@ -120,6 +120,23 @@
120
120
  /* --qt-input-placeholder: var(--color-muted-foreground); */
121
121
  /* --qt-input-focus-ring: var(--color-ring); */
122
122
  /* --qt-input-transition: colors 150ms cubic-bezier(0.4, 0, 0.2, 1); */
123
+ /* Select chevron — a full url() data URI; swap the whole glyph to restyle it. */
124
+ /* --qt-select-arrow: url("data:image/svg+xml,..."); */
125
+
126
+ /* ======================================================================
127
+ CHECKBOX & RADIO VARIABLES
128
+ accent-color recolors the native fill/check; size/border/radius apply
129
+ to appearance:none controls.
130
+ ====================================================================== */
131
+ /* --qt-checkbox-size: 1rem; */
132
+ /* --qt-checkbox-radius: var(--radius-sm); */
133
+ /* --qt-checkbox-border: var(--color-border); */
134
+ /* --qt-checkbox-accent: var(--color-primary); */
135
+ /* --qt-checkbox-focus-ring: var(--color-ring); */
136
+ /* --qt-radio-size: 1rem; */
137
+ /* --qt-radio-border: var(--color-border); */
138
+ /* --qt-radio-accent: var(--color-primary); */
139
+ /* --qt-radio-focus-ring: var(--color-ring); */
123
140
 
124
141
  /* ======================================================================
125
142
  NAVBAR VARIABLES
@@ -594,8 +594,24 @@ Override these variables for consistent component styling:
594
594
  --qt-input-radius
595
595
  --qt-input-padding-y
596
596
  --qt-input-padding-x
597
+ --qt-input-bg
598
+ --qt-input-fg
597
599
  --qt-input-border
600
+ --qt-input-placeholder
601
+ --qt-input-focus-ring
598
602
  --qt-input-transition
603
+ --qt-select-arrow /* full url() data URI for the <select> chevron */
604
+
605
+ /* Checkboxes & radios (accent-color is the fill/check hook) */
606
+ --qt-checkbox-size
607
+ --qt-checkbox-radius
608
+ --qt-checkbox-border
609
+ --qt-checkbox-accent
610
+ --qt-checkbox-focus-ring
611
+ --qt-radio-size
612
+ --qt-radio-border
613
+ --qt-radio-accent
614
+ --qt-radio-focus-ring
599
615
 
600
616
  /* Badges */
601
617
  --qt-badge-radius