@fiscozen/composables 0.1.31 → 0.1.33

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiscozen/composables",
3
- "version": "0.1.31",
3
+ "version": "0.1.33",
4
4
  "description": "Design System utility composables",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
@@ -26,8 +26,8 @@
26
26
  "vitest": "^1.2.0",
27
27
  "vue-tsc": "^1.8.25",
28
28
  "@fiscozen/tsconfig": "^0.1.0",
29
- "@fiscozen/eslint-config": "^0.1.0",
30
- "@fiscozen/prettier-config": "^0.1.0"
29
+ "@fiscozen/prettier-config": "^0.1.0",
30
+ "@fiscozen/eslint-config": "^0.1.0"
31
31
  },
32
32
  "license": "ISC",
33
33
  "scripts": {
@@ -99,7 +99,7 @@ const contentClass = computed(() => {
99
99
  return props.contentClass
100
100
  }
101
101
 
102
- return ['bg-core-white fixed p-4 z-10', props.contentClass]
102
+ return ['bg-core-white fixed p-4', props.contentClass]
103
103
  })
104
104
  </script>
105
105
 
package/src/index.ts CHANGED
@@ -2,3 +2,4 @@ export { default as FzFloating } from './FzFloating.vue'
2
2
 
3
3
  export * from './composables'
4
4
  export * from './types'
5
+ export * from './utils'