@gusarov-studio/rubik-ui 3.18.0 → 4.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.
Files changed (59) hide show
  1. package/dist/Alert/Alert.d.ts +5 -2
  2. package/dist/Alert/AlertDescription.d.ts +6 -0
  3. package/dist/Alert/AlertTitle.d.ts +6 -0
  4. package/dist/Alert/index.d.ts +2 -0
  5. package/dist/Icon/Icon.d.ts +1 -1
  6. package/dist/Icon/glyphs/index.d.ts +3 -3
  7. package/dist/LoadingIndicator/LoadingIndicator.d.ts +10 -0
  8. package/dist/LoadingIndicator/index.d.ts +1 -0
  9. package/dist/LoadingIndicator/indicators/BarsFade.d.ts +5 -0
  10. package/dist/LoadingIndicator/indicators/BarsRotateFade.d.ts +5 -0
  11. package/dist/LoadingIndicator/indicators/BarsScale.d.ts +5 -0
  12. package/dist/LoadingIndicator/indicators/BarsScaleFade.d.ts +5 -0
  13. package/dist/LoadingIndicator/indicators/BarsScaleMiddle.d.ts +5 -0
  14. package/dist/LoadingIndicator/indicators/BlocksScale.d.ts +5 -0
  15. package/dist/LoadingIndicator/indicators/BlocksShuffleThree.d.ts +5 -0
  16. package/dist/LoadingIndicator/indicators/BlocksShuffleTwo.d.ts +5 -0
  17. package/dist/LoadingIndicator/indicators/BlocksWave.d.ts +5 -0
  18. package/dist/LoadingIndicator/indicators/BouncingBall.d.ts +5 -0
  19. package/dist/LoadingIndicator/indicators/Clock.d.ts +5 -0
  20. package/dist/LoadingIndicator/indicators/DotRevolve.d.ts +5 -0
  21. package/dist/LoadingIndicator/indicators/Eclipse.d.ts +5 -0
  22. package/dist/LoadingIndicator/indicators/EclipseHalf.d.ts +5 -0
  23. package/dist/LoadingIndicator/indicators/GooeyBallsOne.d.ts +5 -0
  24. package/dist/LoadingIndicator/indicators/GooeyBallsTwo.d.ts +5 -0
  25. package/dist/LoadingIndicator/indicators/NinetyRing.d.ts +5 -0
  26. package/dist/LoadingIndicator/indicators/NinetyRingWithBg.d.ts +5 -0
  27. package/dist/LoadingIndicator/indicators/OneEightyRing.d.ts +5 -0
  28. package/dist/LoadingIndicator/indicators/OneEightyRingWithBg.d.ts +5 -0
  29. package/dist/LoadingIndicator/indicators/Pulse.d.ts +5 -0
  30. package/dist/LoadingIndicator/indicators/PulseMultiple.d.ts +5 -0
  31. package/dist/LoadingIndicator/indicators/PulseRing.d.ts +5 -0
  32. package/dist/LoadingIndicator/indicators/PulseRingsMultiple.d.ts +5 -0
  33. package/dist/LoadingIndicator/indicators/PulseRingsThree.d.ts +5 -0
  34. package/dist/LoadingIndicator/indicators/PulseRingsTwo.d.ts +5 -0
  35. package/dist/LoadingIndicator/indicators/PulseThree.d.ts +5 -0
  36. package/dist/LoadingIndicator/indicators/PulseTwo.d.ts +5 -0
  37. package/dist/LoadingIndicator/indicators/SixDotsRotate.d.ts +5 -0
  38. package/dist/LoadingIndicator/indicators/SixDotsScale.d.ts +5 -0
  39. package/dist/LoadingIndicator/indicators/SixDotsScaleMiddle.d.ts +5 -0
  40. package/dist/LoadingIndicator/indicators/Tadpole.d.ts +5 -0
  41. package/dist/LoadingIndicator/indicators/ThreeDotsBounce.d.ts +5 -0
  42. package/dist/LoadingIndicator/indicators/ThreeDotsFade.d.ts +5 -0
  43. package/dist/LoadingIndicator/indicators/ThreeDotsMoving.d.ts +5 -0
  44. package/dist/LoadingIndicator/indicators/ThreeDotsRotate.d.ts +5 -0
  45. package/dist/LoadingIndicator/indicators/ThreeDotsScale.d.ts +5 -0
  46. package/dist/LoadingIndicator/indicators/ThreeDotsScaleMiddle.d.ts +5 -0
  47. package/dist/LoadingIndicator/indicators/TwelveDotsScaleRotate.d.ts +5 -0
  48. package/dist/LoadingIndicator/indicators/TwoSeventyRing.d.ts +5 -0
  49. package/dist/LoadingIndicator/indicators/TwoSeventyRingWithBg.d.ts +5 -0
  50. package/dist/LoadingIndicator/indicators/Wifi.d.ts +5 -0
  51. package/dist/LoadingIndicator/indicators/WifiFade.d.ts +5 -0
  52. package/dist/LoadingIndicator/indicators/WindToy.d.ts +5 -0
  53. package/dist/LoadingIndicator/indicators/index.d.ts +49 -0
  54. package/dist/LoadingIndicator/types.d.ts +6 -0
  55. package/dist/index.d.ts +1 -0
  56. package/dist/index.js +1 -1
  57. package/dist/index.js.map +1 -1
  58. package/dist/tsconfig.declarations.tsbuildinfo +1 -1
  59. package/package.json +1 -1
@@ -1,7 +1,10 @@
1
1
  import React from "react";
2
2
  import "./Alert.scss";
3
3
  interface AlertProps extends React.HTMLAttributes<HTMLDivElement> {
4
- variant: "danger" | "default";
4
+ appearance?: "app-level" | "standard" | "inline";
5
+ variant?: "success" | "error" | "warning" | "info";
6
+ onClose?: (event: React.MouseEvent) => void;
7
+ icon?: React.ReactNode;
5
8
  }
6
9
  declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
7
- export { Alert };
10
+ export { Alert, type AlertProps };
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface AlertDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
3
+ asChild?: boolean;
4
+ }
5
+ declare const AlertDescription: React.ForwardRefExoticComponent<AlertDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
6
+ export { AlertDescription };
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ interface AlertTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
3
+ asChild?: boolean;
4
+ }
5
+ declare const AlertTitle: React.ForwardRefExoticComponent<AlertTitleProps & React.RefAttributes<HTMLHeadingElement>>;
6
+ export { AlertTitle };
@@ -1 +1,3 @@
1
1
  export * from "./Alert";
2
+ export * from "./AlertTitle";
3
+ export * from "./AlertDescription";
@@ -2,7 +2,7 @@ import React from "react";
2
2
  import type { GlyphProps } from "./types";
3
3
  import { type IconGlyph } from "./glyphs";
4
4
  import "./Icon.scss";
5
- export interface IconProps extends GlyphProps {
5
+ interface IconProps extends GlyphProps {
6
6
  glyph: IconGlyph;
7
7
  appearance?: "inherit" | "primary" | "secondary" | "accent" | "success" | "danger" | "info" | "warning" | "disabled" | "white" | "black" | "placeholder";
8
8
  }
@@ -1,4 +1,4 @@
1
- export declare const glyphs: {
1
+ declare const glyphs: {
2
2
  "activity-heart": import("react").ForwardRefExoticComponent<import("../types").GlyphProps & import("react").RefAttributes<SVGSVGElement>>;
3
3
  activity: import("react").ForwardRefExoticComponent<import("../types").GlyphProps & import("react").RefAttributes<SVGSVGElement>>;
4
4
  "add-dataset": import("react").ForwardRefExoticComponent<import("../types").GlyphProps & import("react").RefAttributes<SVGSVGElement>>;
@@ -1213,6 +1213,6 @@ export declare const glyphs: {
1213
1213
  "zoom-in": import("react").ForwardRefExoticComponent<import("../types").GlyphProps & import("react").RefAttributes<SVGSVGElement>>;
1214
1214
  "zoom-out": import("react").ForwardRefExoticComponent<import("../types").GlyphProps & import("react").RefAttributes<SVGSVGElement>>;
1215
1215
  };
1216
- export type IconGlyph = keyof typeof glyphs;
1216
+ type IconGlyph = keyof typeof glyphs;
1217
1217
  declare function getGlyph(glyph: string): import("react").ForwardRefExoticComponent<import("../types").GlyphProps & import("react").RefAttributes<SVGSVGElement>>;
1218
- export { getGlyph };
1218
+ export { glyphs, type IconGlyph, getGlyph };
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "./types";
3
+ import { type IndicatorType } from "./indicators";
4
+ import "./LoadingIndicator.scss";
5
+ interface LoadingIndicatorProps extends IndicatorTypeProps {
6
+ type: IndicatorType;
7
+ variant?: "inherit" | "primary" | "secondary" | "accent";
8
+ }
9
+ declare const LoadingIndicator: React.ForwardRefExoticComponent<LoadingIndicatorProps & React.RefAttributes<SVGSVGElement>>;
10
+ export { LoadingIndicator, type LoadingIndicatorProps };
@@ -0,0 +1 @@
1
+ export * from "./LoadingIndicator";
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./BarsFade.scss";
4
+ declare const BarsFade: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { BarsFade };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./BarsRotateFade.scss";
4
+ declare const BarsRotateFade: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { BarsRotateFade };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./BarsScale.scss";
4
+ declare const BarsScale: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { BarsScale };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./BarsScaleFade.scss";
4
+ declare const BarsScaleFade: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { BarsScaleFade };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./BarsScaleMiddle.scss";
4
+ declare const BarsScaleMiddle: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { BarsScaleMiddle };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./BlocksScale.scss";
4
+ declare const BlocksScale: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { BlocksScale };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./BlocksShuffleThree.scss";
4
+ declare const BlocksShuffleThree: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { BlocksShuffleThree };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./BlocksShuffleTwo.scss";
4
+ declare const BlocksShuffleTwo: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { BlocksShuffleTwo };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./BlocksWave.scss";
4
+ declare const BlocksWave: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { BlocksWave };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./BouncingBall.scss";
4
+ declare const BouncingBall: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { BouncingBall };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./Clock.scss";
4
+ declare const Clock: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { Clock };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./DotRevolve.scss";
4
+ declare const DotRevolve: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { DotRevolve };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./Eclipse.scss";
4
+ declare const Eclipse: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { Eclipse };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./EclipseHalf.scss";
4
+ declare const EclipseHalf: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { EclipseHalf };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./GooeyBallsOne.scss";
4
+ declare const GooeyBallsOne: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { GooeyBallsOne };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./GooeyBallsTwo.scss";
4
+ declare const GooeyBallsTwo: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { GooeyBallsTwo };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./NinetyRing.scss";
4
+ declare const NinetyRing: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { NinetyRing };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./NinetyRingWithBg.scss";
4
+ declare const NinetyRingWithBg: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { NinetyRingWithBg };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./OneEightyRing.scss";
4
+ declare const OneEightyRing: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { OneEightyRing };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./OneEightyRingWithBg.scss";
4
+ declare const OneEightyRingWithBg: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { OneEightyRingWithBg };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./Pulse.scss";
4
+ declare const Pulse: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { Pulse };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./PulseMultiple.scss";
4
+ declare const PulseMultiple: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { PulseMultiple };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./PulseRing.scss";
4
+ declare const PulseRing: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { PulseRing };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./PulseRingsMultiple.scss";
4
+ declare const PulseRingsMultiple: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { PulseRingsMultiple };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./PulseRingsThree.scss";
4
+ declare const PulseRingsThree: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { PulseRingsThree };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./PulseRingsTwo.scss";
4
+ declare const PulseRingsTwo: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { PulseRingsTwo };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./PulseThree.scss";
4
+ declare const PulseThree: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { PulseThree };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./PulseTwo.scss";
4
+ declare const PulseTwo: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { PulseTwo };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./SixDotsRotate.scss";
4
+ declare const SixDotsRotate: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { SixDotsRotate };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./SixDotsScale.scss";
4
+ declare const SixDotsScale: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { SixDotsScale };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./SixDotsScaleMiddle.scss";
4
+ declare const SixDotsScaleMiddle: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { SixDotsScaleMiddle };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./Tadpole.scss";
4
+ declare const Tadpole: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { Tadpole };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./ThreeDotsBounce.scss";
4
+ declare const ThreeDotsBounce: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { ThreeDotsBounce };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./ThreeDotsFade.scss";
4
+ declare const ThreeDotsFade: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { ThreeDotsFade };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./ThreeDotsMoving.scss";
4
+ declare const ThreeDotsMoving: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { ThreeDotsMoving };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./ThreeDotsRotate.scss";
4
+ declare const ThreeDotsRotate: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { ThreeDotsRotate };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./ThreeDotsScale.scss";
4
+ declare const ThreeDotsScale: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { ThreeDotsScale };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./ThreeDotsScaleMiddle.scss";
4
+ declare const ThreeDotsScaleMiddle: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { ThreeDotsScaleMiddle };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./TwelveDotsScaleRotate.scss";
4
+ declare const TwelveDotsScaleRotate: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { TwelveDotsScaleRotate };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./TwoSeventyRing.scss";
4
+ declare const TwoSeventyRing: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { TwoSeventyRing };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./TwoSeventyRingWithBg.scss";
4
+ declare const TwoSeventyRingWithBg: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { TwoSeventyRingWithBg };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./Wifi.scss";
4
+ declare const Wifi: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { Wifi };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./WifiFade.scss";
4
+ declare const WifiFade: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { WifiFade };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import type { IndicatorTypeProps } from "../types";
3
+ import "./WindToy.scss";
4
+ declare const WindToy: React.ForwardRefExoticComponent<IndicatorTypeProps & React.RefAttributes<SVGSVGElement>>;
5
+ export { WindToy };
@@ -0,0 +1,49 @@
1
+ declare const indicators: {
2
+ "bars-fade": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
3
+ "bars-rotate-fade": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
4
+ "bars-scale": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
5
+ "bars-scale-fade": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
6
+ "bars-scale-middle": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
7
+ "block-scale": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
8
+ "block-shuffle-three": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
9
+ "block-shuffle-two": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
10
+ "blocks-wave": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
11
+ "bouncing-ball": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
12
+ clock: import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
13
+ "dot-revolve": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
14
+ eclipse: import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
15
+ "eclipse-half": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
16
+ "gooey-balls-one": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
17
+ "gooey-balls-two": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
18
+ "ninety-ring": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
19
+ "ninety-ring-with-bg": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
20
+ "one-eighty-ring": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
21
+ "one-eighty-ring-withBg": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
22
+ pulse: import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
23
+ "pulse-multiple": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
24
+ "pulse-ring": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
25
+ "pulse-rings-multiple": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
26
+ "pulse-rings-three": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
27
+ "pulse-rings-two": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
28
+ "pulse-three": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
29
+ "pulse-two": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
30
+ "six-dots-rotate": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
31
+ "six-dots-scale": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
32
+ "six-dots-scale-middle": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
33
+ tadpole: import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
34
+ "three-dots-bounce": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
35
+ "three-dots-fade": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
36
+ "three-dots-moving": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
37
+ "three-dots-rotate": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
38
+ "three-dots-scale": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
39
+ "three-dots-scale-middle": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
40
+ "twelve-dots-scale-rotate": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
41
+ "two-seventy-ring": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
42
+ "two-seventy-with-bg": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
43
+ wifi: import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
44
+ "wifi-fade": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
45
+ "wind-toy": import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
46
+ };
47
+ type IndicatorType = keyof typeof indicators;
48
+ declare function getIndicator(type: string): import("react").ForwardRefExoticComponent<import("../types").IndicatorTypeProps & import("react").RefAttributes<SVGSVGElement>>;
49
+ export { indicators, type IndicatorType, getIndicator };
@@ -0,0 +1,6 @@
1
+ import type React from "react";
2
+ import type { CSSUnit } from "../types/CSSUnit";
3
+ export interface IndicatorTypeProps extends React.SVGAttributes<SVGElement> {
4
+ children?: never;
5
+ size?: CSSUnit | `${number}` | number;
6
+ }
package/dist/index.d.ts CHANGED
@@ -15,6 +15,7 @@ export * from "./FeatureIcon";
15
15
  export * from "./Icon";
16
16
  export * from "./IconButton";
17
17
  export * from "./InputSlider";
18
+ export * from "./LoadingIndicator";
18
19
  export * from "./Stack";
19
20
  export * from "./Tabs";
20
21
  export * from "./Text";