zerozeeker 2.3.3 → 2.3.4
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/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -42,7 +42,9 @@ var REGISTRY = [
|
|
|
42
42
|
{ name: "badge-alert", category: "Alerts", desc: "Floating pill badge overlapping the top-left corner of the card" },
|
|
43
43
|
{ name: "split-alert", category: "Alerts", desc: "Solid colored left icon panel + white content body" },
|
|
44
44
|
{ name: "terminal-alert", category: "Alerts", desc: "Dark terminal/console style with monospace font and log level label" },
|
|
45
|
-
{ name: "fill-alert", category: "Alerts", desc: "Bold solid color fill \u2014 entire background is the accent color" }
|
|
45
|
+
{ name: "fill-alert", category: "Alerts", desc: "Bold solid color fill \u2014 entire background is the accent color" },
|
|
46
|
+
// UI Effects
|
|
47
|
+
{ name: "click-spark", category: "UI Effects", desc: "Canvas sparks burst from cursor on every click, wraps any content" }
|
|
46
48
|
];
|
|
47
49
|
var COMPONENT_NAMES = REGISTRY.map((c) => c.name);
|
|
48
50
|
function printHeader() {
|