revdev-components 0.176.0 → 0.177.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.
@@ -1,7 +1,7 @@
1
1
  import React from "react";
2
2
  import { RegularIconName } from "src/icon";
3
3
  export interface AlfaAttributorOption {
4
- label: React.ReactNode;
4
+ content: React.ReactNode;
5
5
  href?: string;
6
6
  icon?: RegularIconName;
7
7
  }
package/build/index.js CHANGED
@@ -5677,8 +5677,8 @@ var s$2 = {"root":"index-module_root__UuWET","link":"index-module_link__qD-Ss"};
5677
5677
  var AlfaAttributor = function (_a) {
5678
5678
  var className = _a.className, options = _a.options;
5679
5679
  return options.length ? (React.createElement("div", { className: classNames(s$2.root, className) }, options.map(function (_a, i) {
5680
- var icon = _a.icon, label = _a.label, href = _a.href;
5681
- return (React.createElement(IconDivision, { key: href || i, icon: icon }, href ? (React.createElement(AppLink, { className: s$2.link, href: href }, label)) : (label)));
5680
+ var icon = _a.icon, content = _a.content, href = _a.href;
5681
+ return (React.createElement(IconDivision, { key: href || i, icon: icon }, href ? (React.createElement(AppLink, { className: s$2.link, href: href }, content)) : (content)));
5682
5682
  }))) : null;
5683
5683
  };
5684
5684
 
package/build/styles.css CHANGED
@@ -575,6 +575,7 @@ body {
575
575
  color: var(--passiveColor);
576
576
  display: flex;
577
577
  flex-direction: row;
578
+ align-items: flex-start;
578
579
  gap: 8px;
579
580
  }
580
581
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev-components",
3
- "version": "0.176.0",
3
+ "version": "0.177.0",
4
4
  "main": "build/index.js",
5
5
  "module": "build/index.esm.js",
6
6
  "scripts": {