@tempots/ui 14.0.5 → 15.0.0

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": "@tempots/ui",
3
- "version": "14.0.5",
3
+ "version": "15.0.0",
4
4
  "type": "module",
5
5
  "main": "./index.cjs",
6
6
  "module": "./index.js",
@@ -41,7 +41,7 @@
41
41
  "@floating-ui/dom": "^1.7.1"
42
42
  },
43
43
  "peerDependencies": {
44
- "@tempots/dom": "^35.0.4",
45
- "@tempots/std": "^0.25.2"
44
+ "@tempots/dom": "^36.0.0",
45
+ "@tempots/std": "^0.26.0"
46
46
  }
47
47
  }
@@ -5,4 +5,4 @@ import { Value } from '@tempots/dom';
5
5
  * @param obj - The record of signals.
6
6
  * @returns The created renderable.
7
7
  */
8
- export declare function classes(obj: Record<string, Value<boolean>>): import('@tempots/dom').Renderable<import('@tempots/dom').DOMContext>;
8
+ export declare function classes(obj: Record<string, Value<boolean>>): import('@tempots/core').Renderable<import('@tempots/dom').DOMContext, typeof import('@tempots/dom').DOM_RENDERABLE_TYPE>;
@@ -77,4 +77,4 @@ export type PopOverOptions = {
77
77
  */
78
78
  export declare const PopOver: (fn: (open: (options: PopOverOptions) => void, close: () => void) => TNode, options?: {
79
79
  isOpen: Value<boolean>;
80
- }) => import('@tempots/dom').Renderable<import('@tempots/dom').DOMContext>;
80
+ }) => import('@tempots/core').Renderable<import('@tempots/dom').DOMContext, typeof import('@tempots/dom').DOM_RENDERABLE_TYPE>;