fds-vue-core 2.1.53 → 2.1.55

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/dist/apply.css CHANGED
@@ -42,6 +42,14 @@
42
42
  @apply text-blue-600 hover:text-blue-700 active:text-blue-800 underline focus-visible:outline-dashed focus-visible:outline-2 focus-visible:outline-offset-4 focus-visible:outline-blue-500;
43
43
  }
44
44
 
45
+ .link--with-parens::before {
46
+ content: '(';
47
+ }
48
+
49
+ .link--with-parens::after {
50
+ content: ')';
51
+ }
52
+
45
53
  .capitalize-first::first-letter {
46
54
  text-transform: uppercase;
47
55
  }
@@ -7845,7 +7845,7 @@ try {
7845
7845
  }
7846
7846
  const _hoisted_1$b = ["for"];
7847
7847
  const _hoisted_2$9 = { class: "relative" };
7848
- const _hoisted_3$7 = ["type", "required", "value", "disabled", "tabindex", "aria-invalid", "aria-label"];
7848
+ const _hoisted_3$7 = ["type", "required", "value", "disabled", "tabindex", "aria-invalid", "aria-label", "autocomplete"];
7849
7849
  const _hoisted_4$6 = {
7850
7850
  key: 0,
7851
7851
  class: "text-red-600 font-bold mt-1"
@@ -8105,7 +8105,8 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
8105
8105
  "aria-invalid": props.valid === false ? "true" : void 0,
8106
8106
  class: inputClasses.value,
8107
8107
  style: inputStyle.value,
8108
- "aria-label": props.ariaLabel
8108
+ "aria-label": props.ariaLabel,
8109
+ autocomplete: props.autocomplete
8109
8110
  }, inputAttrs.value, {
8110
8111
  onInput: handleInputChange,
8111
8112
  onChange: handleInputChange,