@thi.ng/hiccup-css 2.6.5 → 2.6.6

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-02-22T11:59:16Z
3
+ - **Last updated**: 2024-02-25T14:07:53Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/animation.d.ts CHANGED
@@ -15,6 +15,8 @@ export interface AnimationOpts {
15
15
  *
16
16
  * @example
17
17
  * ```ts
18
+ * import { animation, css } from "@thi.ng/hiccup-css";
19
+ *
18
20
  * css(
19
21
  * animation(
20
22
  * "fadein",
package/keyframes.d.ts CHANGED
@@ -7,6 +7,8 @@ export type Keyframe = Record<string, any>;
7
7
  *
8
8
  * @example
9
9
  * ```ts
10
+ * import { at_keyframes, css } from "@thi.ng/hiccup-css";
11
+ *
10
12
  * css(at_keyframes("fadein", {0: {opacity: 0}, 100: {opacity: 1}}))
11
13
  * // @keyframes fadein {
12
14
  * //
@@ -27,6 +29,8 @@ export type Keyframe = Record<string, any>;
27
29
  *
28
30
  * @example
29
31
  * ```ts
32
+ * import { at_keyframes, css } from "@thi.ng/hiccup-css";
33
+ *
30
34
  * css(at_keyframes("fadein", {opacity: 0}, {opacity: 1}));
31
35
  * // @keyframes fadein {
32
36
  * //
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hiccup-css",
3
- "version": "2.6.5",
3
+ "version": "2.6.6",
4
4
  "description": "CSS from nested JS data structures",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -35,10 +35,10 @@
35
35
  "test": "bun test"
36
36
  },
37
37
  "dependencies": {
38
- "@thi.ng/api": "^8.9.25",
38
+ "@thi.ng/api": "^8.9.26",
39
39
  "@thi.ng/checks": "^3.5.0",
40
40
  "@thi.ng/errors": "^2.4.18",
41
- "@thi.ng/transducers": "^8.9.6"
41
+ "@thi.ng/transducers": "^8.9.7"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@microsoft/api-extractor": "^7.40.1",
@@ -126,5 +126,5 @@
126
126
  ],
127
127
  "year": 2016
128
128
  },
129
- "gitHead": "16f2b92b5410bd35dcde6c2971c8e62783ebc472\n"
129
+ "gitHead": "6e20f80dd9df1c8055ffa3c1e4d6f7598add0c0b\n"
130
130
  }