lawgic-dev-kit 0.11.6 → 0.11.7

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,4 +1,4 @@
1
- import { __module as r } from "../../_virtual/index2.js";
1
+ import { __module as r } from "../../_virtual/index6.js";
2
2
  import { __require as s } from "./node_modules/react-is/index.js";
3
3
  import { __require as t } from "./factoryWithTypeCheckers.js";
4
4
  import { __require as p } from "./factoryWithThrowingShims.js";
@@ -1,4 +1,4 @@
1
- import { __module as e } from "../../_virtual/index6.js";
1
+ import { __module as e } from "../../_virtual/index2.js";
2
2
  import { __require as o } from "./cjs/scheduler.production.js";
3
3
  import { __require as u } from "./cjs/scheduler.development.js";
4
4
  var r;
@@ -0,0 +1,3 @@
1
+ import type { ProgressBarProps } from "./ProgressBar.types";
2
+ declare const ProgressBar: ({ progress, showPercentage, color, }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default ProgressBar;
@@ -0,0 +1,7 @@
1
+ import { Color } from "../../../types/styleValues";
2
+ interface ProgressBarColorConfig {
3
+ bgColor: string;
4
+ fillColor: string;
5
+ }
6
+ export declare const resolveProgressBarColors: (color: Color) => ProgressBarColorConfig;
7
+ export {};
@@ -0,0 +1,6 @@
1
+ import { Color } from "../../../types/styleValues";
2
+ export interface ProgressBarProps {
3
+ progress: number;
4
+ showPercentage?: boolean;
5
+ color?: Color;
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lawgic-dev-kit",
3
- "version": "0.11.6",
3
+ "version": "0.11.7",
4
4
  "description": "Componentes de UI para Lawgic",
5
5
  "type": "module",
6
6
  "private": false,
@@ -1,13 +0,0 @@
1
- import { IconProp } from "@fortawesome/fontawesome-svg-core";
2
- import { Color } from "../../../types/styleValues";
3
- interface SidebarButtonProps {
4
- active: boolean;
5
- icon: IconProp;
6
- label: string;
7
- onClick: () => void;
8
- expanded: boolean;
9
- disabled?: boolean;
10
- color?: Color;
11
- }
12
- declare const SidebarButton: React.FC<SidebarButtonProps>;
13
- export default SidebarButton;
@@ -1,9 +0,0 @@
1
- import { Color } from "../../../types/styleValues";
2
- interface SidebarButtonColorConfig {
3
- activeTextColor: string;
4
- activeBgColor: string;
5
- hoverBgColor: string;
6
- activeIconColor: string;
7
- }
8
- export declare const resolveSidebarButtonColors: (color: Color) => SidebarButtonColorConfig;
9
- export {};
@@ -1,11 +0,0 @@
1
- import { Color } from "../../../types/styleValues";
2
- interface StepperColorConfig {
3
- completedBgColor: string;
4
- focusBorderColor: string;
5
- pendingBorderColor: string;
6
- iconActiveColor: string;
7
- lineActiveColor: string;
8
- lineGradientFrom: string;
9
- }
10
- export declare const resolveStepperColors: (color: Color) => StepperColorConfig;
11
- export {};
@@ -1,9 +0,0 @@
1
- import { Color } from "../../../types/styleValues";
2
- export interface StepperProps {
3
- steps: {
4
- label: string;
5
- completed: boolean;
6
- }[];
7
- direction?: "horizontal" | "vertical";
8
- color?: Color;
9
- }