@nattstack/ui 0.0.64 → 0.0.66

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.
@@ -53,9 +53,9 @@ declare const BUTTON_CLASS_NAME: {
53
53
  };
54
54
  //#endregion
55
55
  //#region src/components/button-link/button-link.d.ts
56
- type ButtonLinkProps<ComponentType extends ElementType = "a"> = ButtonLinkInternalProps & ComponentProps<ComponentType>;
57
- interface ButtonLinkInternalProps extends Pick<ButtonProps, "isFullWidth" | "isIconOnly" | "isRounded" | "size" | "variant"> {
58
- as?: ElementType;
56
+ type ButtonLinkProps<ComponentType extends ElementType = "a"> = ButtonLinkInternalProps<ComponentType> & Omit<ComponentProps<ComponentType>, keyof ButtonLinkInternalProps<ComponentType>>;
57
+ interface ButtonLinkInternalProps<ComponentType extends ElementType> extends Pick<ButtonProps, "isFullWidth" | "isIconOnly" | "isRounded" | "size" | "variant"> {
58
+ as?: ComponentType;
59
59
  }
60
60
  declare function ButtonLink<ComponentType extends ElementType = "a">(props: ButtonLinkProps<ComponentType>): JSX.Element;
61
61
  //#endregion
@@ -210,6 +210,10 @@
210
210
  background-color: var(--color-gray-3);
211
211
  }
212
212
 
213
+ .dark .button-module_button__variant_secondary_4nLWdW {
214
+ color: #fff;
215
+ }
216
+
213
217
  .button-module_button__width_base_4nLWdW {
214
218
  width: max-content;
215
219
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nattstack/ui",
3
- "version": "0.0.64",
3
+ "version": "0.0.66",
4
4
  "description": "A collection of reusable React components built with Base UI, TypeScript, and CSS Modules",
5
5
  "keywords": [
6
6
  "base-ui",