@a-vision-software/vue-input-components 1.3.5 → 1.3.6

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": "@a-vision-software/vue-input-components",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "A collection of reusable Vue 3 input components with TypeScript support",
5
5
  "author": "A-Vision Software",
6
6
  "license": "MIT",
@@ -1,7 +1,7 @@
1
1
  :root {
2
2
  /* Base colors */
3
3
  --primary-color: #3498db;
4
- --primary-color-light: rgba(52, 152, 219, 0.2);
4
+ --primary-color-light: rgb(from var(--primary-color) r g b / 80%);
5
5
  --secondary-color: #2ecc71;
6
6
 
7
7
  /* Text colors */
@@ -9,8 +9,8 @@
9
9
  --text-color-light: #7f8c8d;
10
10
 
11
11
  /* UI colors */
12
- --border-color: #dcdfe6;
13
- --icon-color: #95a5a6;
12
+ --border-color: #555555;
13
+ --icon-color: rgb(from var(--border-color) r g b / 80%);
14
14
 
15
15
  /* State colors */
16
16
  --error-color: #e74c3c;
@@ -32,8 +32,8 @@
32
32
  --input-bg-disabled: rgba(0, 0, 0, 0.05);
33
33
 
34
34
  /* Text Colors */
35
- --text-muted: #6c757d;
36
35
  --text-primary: #2c3e50;
36
+ --text-muted: rgb(from var(--text-primary) r g b / 80%);
37
37
 
38
38
  /* Border Colors */
39
39
  --input-bg: #ffffff;
@@ -359,7 +359,7 @@ defineExpose({
359
359
 
360
360
  .status-indicator {
361
361
  position: absolute;
362
- top: 0px;
362
+ top: -1px;
363
363
  line-height: 1px;
364
364
  right: 0.5rem;
365
365
  font-size: 0.75rem;
@@ -22,7 +22,4 @@ export interface DropdownProps {
22
22
  padding?: string
23
23
  icon?: string
24
24
  iconSize?: 'normal' | 'large'
25
- required?: boolean
26
- error?: string
27
- autosave?: (value: string | string[]) => Promise<void>
28
25
  }