fds-vue-core 4.0.0 → 4.0.1
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/fds-vue-core.cjs.js +1 -1
- package/dist/fds-vue-core.cjs.js.map +1 -1
- package/dist/fds-vue-core.es.js +1 -1
- package/dist/fds-vue-core.es.js.map +1 -1
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/components/Buttons/FdsButtonMinor/FdsButtonMinor.vue +1 -1
- package/src/components/FdsSearchSelect/FdsSearchSelect.stories.ts +5 -4
package/dist/fds-vue-core.cjs.js
CHANGED
|
@@ -1352,7 +1352,7 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
1352
1352
|
const props = __props;
|
|
1353
1353
|
const emit = __emit;
|
|
1354
1354
|
const { disabled, href, target, rel, attrs } = useAttrsWithDefaults(props);
|
|
1355
|
-
const rootClasses = vue.computed(() => ["
|
|
1355
|
+
const rootClasses = vue.computed(() => ["flex transition-opacity duration-200", props.block && "block w-full"]);
|
|
1356
1356
|
const externalClass = vue.computed(() => attrs.class);
|
|
1357
1357
|
const variantClasses2 = vue.computed(
|
|
1358
1358
|
() => props.invert ? "border-0 font-normal text-white bg-transparent focus-visible:outline-dashed focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white hover:bg-white-100 active:bg-white-200" : "border-0 font-normal text-blue-600 bg-transparent focus-visible:outline-dashed focus-visible:outline-2 focus-visible:outline-offset-4 focus-visible:outline-blue-500 hover:bg-blue_t-100 active:bg-blue_t-200"
|