@allxsmith/bestax-bulma 1.0.13 → 1.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.
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement> {
3
+ className?: string;
4
+ variant?: 'block' | 'lines';
5
+ lines?: number;
6
+ children?: React.ReactNode;
7
+ }
8
+ export declare const Skeleton: React.FC<SkeletonProps>;
@@ -8,6 +8,7 @@ export interface SubTitleProps extends Omit<React.HTMLAttributes<HTMLHeadingElem
8
8
  className?: string;
9
9
  size?: SubTitleSize;
10
10
  as?: SubTitleElement;
11
+ hasSkeleton?: boolean;
11
12
  children?: React.ReactNode;
12
13
  }
13
14
  export declare const SubTitle: React.FC<SubTitleProps>;
@@ -9,6 +9,7 @@ export interface TitleProps extends Omit<React.HTMLAttributes<HTMLHeadingElement
9
9
  size?: TitleSize;
10
10
  isSpaced?: boolean;
11
11
  as?: TitleElement;
12
+ hasSkeleton?: boolean;
12
13
  children?: React.ReactNode;
13
14
  }
14
15
  export declare const Title: React.FC<TitleProps>;
@@ -57,6 +57,7 @@ export interface BulmaClassesProps {
57
57
  shadow?: 'shadowless';
58
58
  responsive?: 'mobile' | 'narrow';
59
59
  viewport?: (typeof validViewports)[number];
60
+ skeleton?: boolean;
60
61
  }
61
62
  export declare const useBulmaClasses: <T extends Record<string, unknown>>(props: BulmaClassesProps & T) => {
62
63
  bulmaHelperClasses: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allxsmith/bestax-bulma",
3
- "version": "1.0.13",
3
+ "version": "1.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",