@allxsmith/bestax-bulma 5.0.0 → 5.1.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.
@@ -7,6 +7,7 @@ export interface ThemeProps extends Omit<BulmaClassesProps, 'color' | 'backgroun
7
7
  children: ReactNode;
8
8
  className?: string;
9
9
  isRoot?: boolean;
10
+ colorMode?: 'light' | 'dark' | 'system';
10
11
  bulmaVars?: BulmaVars;
11
12
  schemeH?: string;
12
13
  schemeS?: string;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ export interface ExampleMetaProps {
3
+ skill: string;
4
+ skillHref: string;
5
+ prompt: string;
6
+ model: string;
7
+ date: string;
8
+ }
9
+ export declare const ExampleMeta: React.FC<ExampleMetaProps>;
10
+ export default ExampleMeta;
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ import { BulmaClassesProps } from '../helpers/useBulmaClasses';
3
+ export interface ProfileCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'title' | 'color'>, BulmaClassesProps {
4
+ name: string;
5
+ role?: string;
6
+ imageSrc: string;
7
+ imageAlt?: string;
8
+ }
9
+ export declare const ProfileCard: React.ForwardRefExoticComponent<ProfileCardProps & React.RefAttributes<HTMLDivElement>>;
10
+ export default ProfileCard;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allxsmith/bestax-bulma",
3
- "version": "5.0.0",
3
+ "version": "5.1.0",
4
4
  "description": "A fully-typed React component library for the Bulma CSS framework. Build modern UIs quickly with reusable, accessible, and customizable Bulma-based React components.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",