@fiscozen/composables 0.1.4 → 0.1.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/types.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiscozen/composables",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Design System utility composables",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
package/src/types.ts CHANGED
@@ -7,8 +7,8 @@ export type FzFloatingPosition = PositionPrimary | `${PositionPrimary}-${Positio
7
7
  export interface FzFloatingProps {
8
8
  isOpen: boolean
9
9
  position?: FzFloatingPosition
10
- container?: string | null,
11
- contentClass?: string | string[] | Record<string, boolean>
10
+ container?: string | null
11
+ contentClass?: string | string[] | Record<string, boolean|undefined> | Array<string|Record<string,boolean|undefined>>
12
12
  }
13
13
 
14
14
  export interface FzAbsolutePosition {