@prosperitainova/mirage-ui 1.1.55 → 1.1.58
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.
- package/dist/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/Button/Button.d.ts +4 -0
- package/dist/cjs/types/lib/SummaryPanel/SummaryPanel.d.ts +1 -0
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/Button/Button.d.ts +4 -0
- package/dist/esm/types/lib/SummaryPanel/SummaryPanel.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
|
@@ -5,6 +5,8 @@ export declare const AppButton: import("styled-components").StyledComponent<"but
|
|
|
5
5
|
link?: boolean | undefined;
|
|
6
6
|
icon?: string | undefined;
|
|
7
7
|
iconPosition?: "left" | "right" | undefined;
|
|
8
|
+
iconColorFilter?: string | undefined;
|
|
9
|
+
labelColor?: string | undefined;
|
|
8
10
|
arrow?: "left" | "right" | undefined;
|
|
9
11
|
danger?: boolean | undefined;
|
|
10
12
|
disabled?: boolean | undefined;
|
|
@@ -20,6 +22,8 @@ export type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
20
22
|
link?: boolean;
|
|
21
23
|
icon?: string;
|
|
22
24
|
iconPosition?: "left" | "right";
|
|
25
|
+
iconColorFilter?: string;
|
|
26
|
+
labelColor?: string;
|
|
23
27
|
arrow?: "left" | "right";
|
|
24
28
|
danger?: boolean;
|
|
25
29
|
disabled?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -19,6 +19,8 @@ type ButtonProps = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
19
19
|
link?: boolean;
|
|
20
20
|
icon?: string;
|
|
21
21
|
iconPosition?: "left" | "right";
|
|
22
|
+
iconColorFilter?: string;
|
|
23
|
+
labelColor?: string;
|
|
22
24
|
arrow?: "left" | "right";
|
|
23
25
|
danger?: boolean;
|
|
24
26
|
disabled?: boolean;
|
|
@@ -325,6 +327,7 @@ declare const InputCurrency: (props: InputCurrencyProps) => JSX.Element;
|
|
|
325
327
|
|
|
326
328
|
type panelProps = {
|
|
327
329
|
label?: string;
|
|
330
|
+
colorLabel?: string;
|
|
328
331
|
balance?: string;
|
|
329
332
|
currency?: string;
|
|
330
333
|
value?: string;
|