srcdev-nuxt-forms 1.1.0 → 1.2.0

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.
@@ -7,8 +7,7 @@
7
7
  --theme-form-input-outline: white;
8
8
  --theme-form-input-outline-active: var(--red-6);
9
9
  --theme-form-input-outline-focus: var(--red-6);
10
- --theme-form-input-text: light-dark(var(--gray-11), var(--gray-11));
11
-
10
+ --theme-form-input-text: light-dark(var(--gray-10), var(--gray-11));
12
11
  --theme-form-focus-box-shadow: 1px 1px 8px 1px var(--red-12);
13
12
 
14
13
  --theme-form-checkbox-bg: light-dark(var(--gray-1), var(--gray-4));
@@ -7,8 +7,7 @@
7
7
  --theme-form-input-outline: white;
8
8
  --theme-form-input-outline-active: var(--gray-6);
9
9
  --theme-form-input-outline-focus: var(--gray-6);
10
- --theme-form-input-text: light-dark(var(--gray-11), var(--gray-11));
11
-
10
+ --theme-form-input-text: light-dark(var(--gray-10), var(--gray-11));
12
11
  --theme-form-focus-box-shadow: 1px 1px 8px 1px var(--gray-1);
13
12
 
14
13
  --theme-form-checkbox-bg: light-dark(var(--gray-1), var(--gray-4));
@@ -7,7 +7,7 @@
7
7
  --theme-form-input-outline: white;
8
8
  --theme-form-input-outline-active: var(--blue-6);
9
9
  --theme-form-input-outline-focus: var(--blue-6);
10
- --theme-form-input-text: light-dark(var(--gray-11), var(--gray-11));
10
+ --theme-form-input-text: light-dark(var(--gray-10), var(--gray-11));
11
11
 
12
12
  --theme-form-focus-box-shadow: 1px 1px 8px 1px light-dark(var(--blue-12), var(--blue-2));
13
13
 
@@ -7,8 +7,7 @@
7
7
  --theme-form-input-outline: white;
8
8
  --theme-form-input-outline-active: var(--gray-6);
9
9
  --theme-form-input-outline-focus: var(--gray-6);
10
- --theme-form-input-text: light-dark(var(--gray-11), var(--gray-11));
11
-
10
+ --theme-form-input-text: light-dark(var(--gray-10), var(--gray-11));
12
11
  --theme-form-focus-box-shadow: 1px 1px 8px 1px var(--gray-12);
13
12
 
14
13
  --theme-form-checkbox-bg: light-dark(var(--gray-1), var(--gray-4));
@@ -7,8 +7,7 @@
7
7
  --theme-form-input-outline: white;
8
8
  --theme-form-input-outline-active: var(--green-6);
9
9
  --theme-form-input-outline-focus: var(--green-6);
10
- --theme-form-input-text: light-dark(var(--gray-11), var(--gray-11));
11
-
10
+ --theme-form-input-text: light-dark(var(--gray-10), var(--gray-11));
12
11
  --theme-form-focus-box-shadow: 1px 1px 8px 1px var(--green-12);
13
12
 
14
13
  --theme-form-checkbox-bg: light-dark(var(--gray-1), var(--gray-4));
@@ -7,8 +7,7 @@
7
7
  --theme-form-input-outline: white;
8
8
  --theme-form-input-outline-active: var(--gray-6);
9
9
  --theme-form-input-outline-focus: var(--gray-6);
10
- --theme-form-input-text: light-dark(var(--gray-11), var(--gray-11));
11
-
10
+ --theme-form-input-text: light-dark(var(--gray-10), var(--gray-11));
12
11
  --theme-form-focus-box-shadow: 1px 1px 8px 1px var(--gray-12);
13
12
 
14
13
  --theme-form-checkbox-bg: light-dark(var(--gray-1), var(--gray-4));
@@ -7,8 +7,7 @@
7
7
  --theme-form-input-outline: white;
8
8
  --theme-form-input-outline-active: var(--orange-6);
9
9
  --theme-form-input-outline-focus: var(--orange-6);
10
- --theme-form-input-text: light-dark(var(--gray-11), var(--gray-11));
11
-
10
+ --theme-form-input-text: light-dark(var(--gray-10), var(--gray-11));
12
11
  --theme-form-focus-box-shadow: 1px 1px 8px 1px var(--orange-12);
13
12
 
14
13
  --theme-form-checkbox-bg: light-dark(var(--gray-1), var(--gray-4));
@@ -200,14 +200,15 @@ onMounted(() => {
200
200
  }
201
201
 
202
202
  input:autofill,
203
+ input:-internal-autofill-selected,
203
204
  input:-webkit-autofill-strong-password,
204
205
  input:-webkit-autofill-strong-password-viewable,
205
206
  input:-webkit-autofill-and-obscured {
206
207
  background-color: var(--theme-form-input-bg) !important;
207
208
  background-image: none !important;
208
- color: var(--_input-text-color) !important;
209
+ color: var(--theme-form-input-text) !important;
209
210
  -webkit-box-shadow: 0 0 0px 1000px var(--theme-form-input-bg) inset;
210
- /* -webkit-text-fill-color: black; */
211
+ -webkit-text-fill-color: var(--theme-form-input-text);
211
212
  transition: background-color 5000s ease-in-out 0s;
212
213
  }
213
214
  </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-forms",
3
3
  "type": "module",
4
- "version": "1.1.0",
4
+ "version": "1.2.0",
5
5
  "main": "./nuxt.config.ts",
6
6
  "scripts": {
7
7
  "reinstall": "rm -rf node_modules && npm install",