@tempots/ui 0.18.4 → 0.20.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/index.cjs +1 -1
- package/index.d.ts +1 -0
- package/index.js +581 -505
- package/package.json +1 -1
- package/renderables/appearance.d.ts +2 -2
- package/utils/format-relative-time.d.ts +3 -0
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Signal, TNode } from '@tempots/dom';
|
|
1
|
+
import { Signal, TNode, Renderable } from '@tempots/dom';
|
|
2
2
|
/**
|
|
3
3
|
* Defines the possible appearance types for the application.
|
|
4
4
|
*
|
|
@@ -22,7 +22,7 @@ export declare const appearanceMarker: import('@tempots/dom').ProviderMark<Signa
|
|
|
22
22
|
* @returns The child component with the appearance context.
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
|
-
export declare const ProvideAppearance: (child: TNode) =>
|
|
25
|
+
export declare const ProvideAppearance: (child: TNode) => Renderable;
|
|
26
26
|
/**
|
|
27
27
|
* Makes the AppearanceType available to the child component by consuming the signal provided by the parent.
|
|
28
28
|
* The result of the function is returned as the final output.
|