monkey-style-guide 21.0.7 → 21.0.9
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -96,7 +96,7 @@ interface MonkeyBreadcrumb {
|
|
|
96
96
|
* MIT Licence
|
|
97
97
|
************************* */
|
|
98
98
|
type MonkeyButtonType = 'primary' | 'secondary' | 'tertiary';
|
|
99
|
-
type MonkeyButtonColor = 'default' | 'success' | 'error';
|
|
99
|
+
type MonkeyButtonColor = 'default' | 'success' | 'error' | 'black';
|
|
100
100
|
|
|
101
101
|
/** ************************
|
|
102
102
|
* Copyright Monkey Exchange. All Rights Reserved
|
|
@@ -2124,6 +2124,8 @@ declare class MonkeyPassNumberComponent {
|
|
|
2124
2124
|
protected _id: string;
|
|
2125
2125
|
protected selected: number[];
|
|
2126
2126
|
onChange: i0.OutputEmitterRef<number[]>;
|
|
2127
|
+
get isDisabledNumbers(): boolean;
|
|
2128
|
+
get isDisabledClear(): boolean;
|
|
2127
2129
|
get id(): string;
|
|
2128
2130
|
set id(value: string);
|
|
2129
2131
|
constructor();
|
|
Binary file
|