@proprioo/salatim 37.0.5 → 37.0.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.
- package/lib/index.js +15 -27
- package/lib/index.js.map +1 -1
- package/lib/ui/src/clickableTag/TagColors.d.ts +6 -0
- package/lib/ui/src/clickableTag/interfaces.d.ts +2 -1
- package/lib/ui/src/feesInputOutputSlider/FeesInputOutputSlider.d.ts +2 -2
- package/lib/ui/src/feesInputOutputSlider/FeesInputOutputSlider.styles.d.ts +0 -2
- package/lib/ui/src/tag/TagColors.d.ts +6 -0
- package/lib/ui/src/tag/interfaces.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { FC } from 'react';
|
|
2
2
|
export type RoleKey = 'mandate' | 'lead' | 'viewingAgent' | 'projectOwner';
|
|
3
3
|
export type RoleValue = {
|
|
4
4
|
agentId: number;
|
|
@@ -20,5 +20,5 @@ export interface FeesInputOutputSliderProps {
|
|
|
20
20
|
thumbColors?: string[];
|
|
21
21
|
dataTestSliderWrapper?: string;
|
|
22
22
|
}
|
|
23
|
-
declare const FeesInputOutputSlider:
|
|
23
|
+
declare const FeesInputOutputSlider: FC<FeesInputOutputSliderProps>;
|
|
24
24
|
export default FeesInputOutputSlider;
|
|
@@ -12,5 +12,3 @@ export declare const Thumb: import("styled-components").StyledComponent<"button"
|
|
|
12
12
|
color: string;
|
|
13
13
|
disabled?: boolean;
|
|
14
14
|
}, never>;
|
|
15
|
-
export declare const SegmentLabel: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
16
|
-
export declare const LabelsColumn: import("styled-components").StyledComponent<"div", any, {}, never>;
|