@onereach/ui-components-vue2 26.6.3 → 26.6.4-beta.5947.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.
@@ -37,8 +37,11 @@ const InputControl = [
37
37
  // Theme (placeholder)
38
38
  'placeholder:theme-foreground-outline', 'dark:placeholder:theme-foreground-outline-dark',
39
39
  // Autofill hack,
40
- // disable (delay color change)
41
- 'autofill:transition-colors autofill:duration-[5000s]',
40
+ // override Chrome autofill transition so theme switching doesn't "stick" to previous text color
41
+ // (Chrome's autofill styles may include long transitions; avoid transitioning `color`)
42
+ 'autofill:[transition-property:background-color] autofill:duration-[5000s]',
43
+ // force correct text/caret color in Chrome autofill
44
+ 'autofill:[-webkit-text-fill-color:currentColor!important]', 'autofill:[caret-color:currentColor!important]',
42
45
  // override background color using box-shadow
43
46
  'autofill:shadow-[10px_0_1000px_theme(backgroundColor.primary-opacity-0-08)_inset]', 'dark:autofill:shadow-[0_0_0px_1000px_theme(backgroundColor.primary-opacity-0-08-dark)_inset]'];
44
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/ui-components-vue2",
3
- "version": "26.6.3",
3
+ "version": "26.6.4-beta.5947.0",
4
4
  "description": "Vue components library for v2",
5
5
  "license": "Apache-2.0",
6
6
  "sideEffects": false,
@@ -40,8 +40,8 @@
40
40
  "@codemirror/view": "^6",
41
41
  "@floating-ui/dom": "1.5.3",
42
42
  "@lezer/highlight": "*",
43
- "@onereach/styles": "^26.6.3",
44
- "@onereach/ui-components-common": "^26.6.3",
43
+ "@onereach/styles": "^26.6.4-beta.5947.0",
44
+ "@onereach/ui-components-common": "^26.6.4-beta.5947.0",
45
45
  "@splidejs/splide": "4.0.6",
46
46
  "@tiptap/core": "2.27.1",
47
47
  "@tiptap/extension-blockquote": "2.27.1",
@@ -102,6 +102,5 @@
102
102
  "publishConfig": {
103
103
  "access": "public"
104
104
  },
105
- "npmUnpacked": "4.15.2",
106
- "gitHead": "9f3c1f2cf235b5dfbfb773d61384ae9c59e4ad22"
105
+ "npmUnpacked": "4.15.2"
107
106
  }