@fixefy/fixefy-ui-components 0.3.18 → 0.3.20
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.
|
@@ -2,7 +2,7 @@ export declare const useStyles: (params: void, muiStyleOverridesParams?: {
|
|
|
2
2
|
props: Record<string, unknown>;
|
|
3
3
|
ownerState?: Record<string, unknown> | undefined;
|
|
4
4
|
} | undefined) => {
|
|
5
|
-
classes: Record<"container" | "
|
|
5
|
+
classes: Record<"container" | "approveButton" | "paper" | "selected" | "divider" | "actions" | "close" | "actionButton", string>;
|
|
6
6
|
theme: import("@mui/private-theming").DefaultTheme;
|
|
7
7
|
css: import("tss-react").Css;
|
|
8
8
|
cx: import("tss-react").Cx;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import '@fixefy/fixefy-ui-utils';
|
|
2
|
-
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"container" | "
|
|
2
|
+
export declare const useStyles: (props?: any) => import("@mui/styles").ClassNameMap<"container" | "label" | "value" | "contrastLabel" | "contrastValue">;
|
|
@@ -52,6 +52,9 @@ const FxToggleButtons = ({ activeTab, tabsData, onChange })=>{
|
|
|
52
52
|
},
|
|
53
53
|
value: value,
|
|
54
54
|
children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Typography, {
|
|
55
|
+
sx: {
|
|
56
|
+
textTransform: 'none'
|
|
57
|
+
},
|
|
55
58
|
lineHeight: '24px',
|
|
56
59
|
fontSize: '12px',
|
|
57
60
|
fontWeight: 500,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { FxActionsTray } from './FxActionsTray';
|
|
1
2
|
export { FxAggregationsBar, AggregationsDataPropsType, AggreationsBarPropsType } from './FxAggregationsBar';
|
|
2
3
|
export { FxAsyncDropdown, Option, StylesOptions, AsyncDropdownPropsType } from './FxAsyncDropdown';
|
|
3
4
|
export { FxAvatar, AvatarPropsType, BackgroundColorsType } from './FxAvatar';
|
package/dist/index.js
CHANGED
|
@@ -45,6 +45,9 @@ _export(exports, {
|
|
|
45
45
|
DataWrapper: function() {
|
|
46
46
|
return _FxStyledComponents.DataWrapper;
|
|
47
47
|
},
|
|
48
|
+
FxActionsTray: function() {
|
|
49
|
+
return _FxActionsTray.FxActionsTray;
|
|
50
|
+
},
|
|
48
51
|
FxAggregationsBar: function() {
|
|
49
52
|
return _FxAggregationsBar.FxAggregationsBar;
|
|
50
53
|
},
|
|
@@ -220,6 +223,7 @@ _export(exports, {
|
|
|
220
223
|
return _FxStyledComponents.Value;
|
|
221
224
|
}
|
|
222
225
|
});
|
|
226
|
+
const _FxActionsTray = require("./FxActionsTray");
|
|
223
227
|
const _FxAggregationsBar = require("./FxAggregationsBar");
|
|
224
228
|
const _FxAsyncDropdown = require("./FxAsyncDropdown");
|
|
225
229
|
const _FxAvatar = require("./FxAvatar");
|
package/package.json
CHANGED