@flux-ui/components 3.0.0-next.63 → 3.0.0-next.65

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@flux-ui/components",
3
3
  "description": "A set of opiniated UI components.",
4
- "version": "3.0.0-next.63",
4
+ "version": "3.0.0-next.65",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "funding": "https://github.com/sponsors/basmilius",
@@ -53,8 +53,8 @@
53
53
  "dependencies": {
54
54
  "@basmilius/common": "^3.25.0",
55
55
  "@basmilius/utils": "^3.25.0",
56
- "@flux-ui/internals": "3.0.0-next.63",
57
- "@flux-ui/types": "3.0.0-next.63",
56
+ "@flux-ui/internals": "3.0.0-next.65",
57
+ "@flux-ui/types": "3.0.0-next.65",
58
58
  "@fortawesome/fontawesome-common-types": "^7.2.0",
59
59
  "clsx": "^2.1.1",
60
60
  "imask": "^7.6.1",
@@ -2,13 +2,15 @@
2
2
  <div :class="CLASS_MAP[variant]">
3
3
  <slot/>
4
4
 
5
- <slot
6
- v-if="isLoading"
7
- name="loader">
8
- <div :class="$style.paneLoader">
9
- <FluxSpinner/>
10
- </div>
11
- </slot>
5
+ <FluxFadeTransition>
6
+ <slot
7
+ v-if="isLoading"
8
+ name="loader">
9
+ <div :class="$style.paneLoader">
10
+ <FluxSpinner/>
11
+ </div>
12
+ </slot>
13
+ </FluxFadeTransition>
12
14
 
13
15
  <div
14
16
  v-if="tag"
@@ -22,6 +24,7 @@
22
24
  lang="ts"
23
25
  setup>
24
26
  import type { VNode } from 'vue';
27
+ import { FluxFadeTransition } from '~flux/components/transition';
25
28
  import FluxSpinner from './FluxSpinner.vue';
26
29
  import $style from '~flux/components/css/component/Pane.module.scss';
27
30
 
@@ -163,6 +163,7 @@
163
163
  border-radius: var(--radius);
164
164
  box-shadow: var(--shadow-px);
165
165
  color: var(--foreground);
166
+ outline: 0 solid transparent;
166
167
  transition: var(--transition-default);
167
168
  transition-property: background, border-color, mixin.focus-ring-transition-properties();
168
169
 
@@ -65,7 +65,7 @@
65
65
  }
66
66
 
67
67
  > .icon {
68
- font-size: 14px;
68
+ font-size: 12px;
69
69
  }
70
70
  }
71
71