create-dalila 1.2.10 → 1.2.12

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-dalila",
3
- "version": "1.2.10",
3
+ "version": "1.2.12",
4
4
  "description": "Create Dalila apps with one command",
5
5
  "bin": {
6
6
  "create-dalila": "index.js"
@@ -92,13 +92,30 @@
92
92
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 12 12'%3E%3Cpath stroke='%23737373' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m3 4.5 3 3 3-3'/%3E%3C/svg%3E");
93
93
  background-repeat: no-repeat;
94
94
  background-position: right var(--d-space-3) center;
95
+ background-size: 0.75rem 0.75rem;
95
96
  padding-right: var(--d-space-8);
97
+ cursor: pointer;
96
98
  }
97
99
 
98
100
  [data-theme="light"] .d-select {
99
101
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 12 12'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m3 4.5 3 3 3-3'/%3E%3C/svg%3E");
100
102
  }
101
103
 
104
+ .d-select option {
105
+ background: var(--d-surface-page);
106
+ color: var(--d-text-primary);
107
+ font-family: var(--d-font-sans);
108
+ font-size: var(--d-text-sm);
109
+ font-weight: var(--d-font-normal);
110
+ padding: var(--d-space-1) var(--d-space-3);
111
+ }
112
+
113
+ .d-select option:checked {
114
+ color: var(--d-accent);
115
+ font-weight: var(--d-font-medium);
116
+ background: var(--d-surface-raised);
117
+ }
118
+
102
119
  .d-input-sm {
103
120
  padding: var(--d-space-1) var(--d-space-2);
104
121
  min-height: 1.75rem;