@fixefy/fixefy-ui-components 0.3.14 → 0.3.16

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.
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ export declare const Popper: ({ anchorEl, children, placement, open, arrow, preventOverflow, }: {
3
+ anchorEl: any;
4
+ children: any;
5
+ placement: any;
6
+ open: boolean;
7
+ arrow?: boolean;
8
+ preventOverflow?: string;
9
+ }) => React.JSX.Element;
10
+ export default Popper;
@@ -0,0 +1,134 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ Popper: function() {
13
+ return Popper;
14
+ },
15
+ default: function() {
16
+ return _default;
17
+ }
18
+ });
19
+ const _jsxruntime = require("react/jsx-runtime");
20
+ const _react = /*#__PURE__*/ _interop_require_wildcard(require("react"));
21
+ const _makeStyles = require("./styles/makeStyles");
22
+ const _material = require("@mui/material");
23
+ function _getRequireWildcardCache(nodeInterop) {
24
+ if (typeof WeakMap !== "function") return null;
25
+ var cacheBabelInterop = new WeakMap();
26
+ var cacheNodeInterop = new WeakMap();
27
+ return (_getRequireWildcardCache = function(nodeInterop) {
28
+ return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
29
+ })(nodeInterop);
30
+ }
31
+ function _interop_require_wildcard(obj, nodeInterop) {
32
+ if (!nodeInterop && obj && obj.__esModule) {
33
+ return obj;
34
+ }
35
+ if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
36
+ return {
37
+ default: obj
38
+ };
39
+ }
40
+ var cache = _getRequireWildcardCache(nodeInterop);
41
+ if (cache && cache.has(obj)) {
42
+ return cache.get(obj);
43
+ }
44
+ var newObj = {
45
+ __proto__: null
46
+ };
47
+ var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
48
+ for(var key in obj){
49
+ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
50
+ var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
51
+ if (desc && (desc.get || desc.set)) {
52
+ Object.defineProperty(newObj, key, desc);
53
+ } else {
54
+ newObj[key] = obj[key];
55
+ }
56
+ }
57
+ }
58
+ newObj.default = obj;
59
+ if (cache) {
60
+ cache.set(obj, newObj);
61
+ }
62
+ return newObj;
63
+ }
64
+ const useStyles = (0, _makeStyles.makeStyles)()((theme)=>({
65
+ popper: {
66
+ left: '10px !important',
67
+ zIndex: 4,
68
+ width: '300px',
69
+ maxHeight: '500px'
70
+ },
71
+ popperArrow: {
72
+ position: 'absolute',
73
+ fontSize: 7,
74
+ width: '1em',
75
+ height: '3em',
76
+ left: 0,
77
+ marginLeft: '-0.9em',
78
+ '&::before': {
79
+ content: '""',
80
+ margin: 'auto',
81
+ display: 'block',
82
+ width: 0,
83
+ height: 0,
84
+ borderStyle: 'solid',
85
+ borderWidth: '1em 1em 1em 0',
86
+ borderColor: `transparent ${theme.palette.greyscale.light} transparent transparent`,
87
+ filter: 'drop-shadow(-1px 0px 1px rgba(0,0,0,.3))'
88
+ }
89
+ }
90
+ }));
91
+ const Popper = ({ anchorEl, children, placement, open, arrow = true, preventOverflow = 'scrollParent' })=>{
92
+ const { classes } = useStyles();
93
+ const [arrowRef, setArrowRef] = (0, _react.useState)(null);
94
+ return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_material.Popper, {
95
+ open: open,
96
+ anchorEl: anchorEl,
97
+ placement: placement,
98
+ disablePortal: false,
99
+ className: classes.popper,
100
+ modifiers: [
101
+ {
102
+ name: 'flip',
103
+ enabled: true,
104
+ options: {
105
+ fallbackPlacements: [
106
+ 'middle'
107
+ ]
108
+ }
109
+ },
110
+ {
111
+ name: 'arrow',
112
+ enabled: true,
113
+ options: {
114
+ element: arrowRef
115
+ }
116
+ },
117
+ {
118
+ name: 'preventOverflow',
119
+ enabled: preventOverflow !== 'disabled',
120
+ options: {
121
+ boundary: preventOverflow === 'disabled' ? 'scrollParent' : preventOverflow
122
+ }
123
+ }
124
+ ],
125
+ children: [
126
+ arrow ? /*#__PURE__*/ (0, _jsxruntime.jsx)("span", {
127
+ className: classes.popperArrow,
128
+ ref: setArrowRef
129
+ }) : null,
130
+ children
131
+ ]
132
+ });
133
+ };
134
+ const _default = Popper;
@@ -0,0 +1,10 @@
1
+ import React, { ReactElement } from 'react';
2
+ import { PopperProps } from '@mui/material';
3
+ export declare const PopperWithOutside: ({ open, anchorEl, placement, children, onClickAway, modifiers, className, disablePortal, setArrowRef, arrowColor, arrow, }: {
4
+ onClickAway: () => void;
5
+ children: ReactElement;
6
+ setArrowRef?: any;
7
+ arrowColor?: string;
8
+ arrow?: boolean;
9
+ } & PopperProps) => React.JSX.Element;
10
+ export default PopperWithOutside;
@@ -0,0 +1,115 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ PopperWithOutside: function() {
13
+ return PopperWithOutside;
14
+ },
15
+ default: function() {
16
+ return _default;
17
+ }
18
+ });
19
+ const _jsxruntime = require("react/jsx-runtime");
20
+ const _react = /*#__PURE__*/ _interop_require_default(require("react"));
21
+ const _popperstyles = require("./styles/popper.styles");
22
+ const _material = require("@mui/material");
23
+ const _clsx = /*#__PURE__*/ _interop_require_default(require("clsx"));
24
+ function _define_property(obj, key, value) {
25
+ if (key in obj) {
26
+ Object.defineProperty(obj, key, {
27
+ value: value,
28
+ enumerable: true,
29
+ configurable: true,
30
+ writable: true
31
+ });
32
+ } else {
33
+ obj[key] = value;
34
+ }
35
+ return obj;
36
+ }
37
+ function _interop_require_default(obj) {
38
+ return obj && obj.__esModule ? obj : {
39
+ default: obj
40
+ };
41
+ }
42
+ function _object_spread(target) {
43
+ for(var i = 1; i < arguments.length; i++){
44
+ var source = arguments[i] != null ? arguments[i] : {};
45
+ var ownKeys = Object.keys(source);
46
+ if (typeof Object.getOwnPropertySymbols === "function") {
47
+ ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
48
+ return Object.getOwnPropertyDescriptor(source, sym).enumerable;
49
+ }));
50
+ }
51
+ ownKeys.forEach(function(key) {
52
+ _define_property(target, key, source[key]);
53
+ });
54
+ }
55
+ return target;
56
+ }
57
+ function ownKeys(object, enumerableOnly) {
58
+ var keys = Object.keys(object);
59
+ if (Object.getOwnPropertySymbols) {
60
+ var symbols = Object.getOwnPropertySymbols(object);
61
+ if (enumerableOnly) {
62
+ symbols = symbols.filter(function(sym) {
63
+ return Object.getOwnPropertyDescriptor(object, sym).enumerable;
64
+ });
65
+ }
66
+ keys.push.apply(keys, symbols);
67
+ }
68
+ return keys;
69
+ }
70
+ function _object_spread_props(target, source) {
71
+ source = source != null ? source : {};
72
+ if (Object.getOwnPropertyDescriptors) {
73
+ Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
74
+ } else {
75
+ ownKeys(Object(source)).forEach(function(key) {
76
+ Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
77
+ });
78
+ }
79
+ return target;
80
+ }
81
+ const PopperWithOutside = ({ open, anchorEl, placement, children, onClickAway, modifiers = [], className, disablePortal, setArrowRef, arrowColor, arrow = true })=>{
82
+ return /*#__PURE__*/ (0, _jsxruntime.jsx)(_popperstyles.PopperStyled, {
83
+ style: {
84
+ zIndex: 1300
85
+ },
86
+ open: open,
87
+ anchorEl: anchorEl,
88
+ placement: placement,
89
+ disablePortal: disablePortal,
90
+ className: (0, _clsx.default)([
91
+ className
92
+ ]),
93
+ transition: true,
94
+ modifiers: modifiers,
95
+ arrowColor: arrowColor,
96
+ children: ({ TransitionProps })=>/*#__PURE__*/ (0, _jsxruntime.jsx)(_material.ClickAwayListener, {
97
+ onClickAway: onClickAway,
98
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)("div", {
99
+ children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_material.Fade, _object_spread_props(_object_spread({}, TransitionProps), {
100
+ children: /*#__PURE__*/ (0, _jsxruntime.jsxs)("div", {
101
+ children: [
102
+ arrow ? /*#__PURE__*/ (0, _jsxruntime.jsx)(_popperstyles.PopperArrow, {
103
+ "data-popper-arrow": true,
104
+ className: "popper-arrow",
105
+ ref: setArrowRef
106
+ }) : null,
107
+ children
108
+ ]
109
+ })
110
+ }))
111
+ })
112
+ })
113
+ });
114
+ };
115
+ const _default = PopperWithOutside;
@@ -0,0 +1,5 @@
1
+ import React, { ReactNode } from 'react';
2
+ export declare const PopperHeader: ({ children, icon }: {
3
+ children: JSX.Element | string;
4
+ icon?: ReactNode;
5
+ }) => React.JSX.Element;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "PopperHeader", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return PopperHeader;
9
+ }
10
+ });
11
+ const _jsxruntime = require("react/jsx-runtime");
12
+ const _react = /*#__PURE__*/ _interop_require_default(require("react"));
13
+ const _styles = require("@mui/material/styles");
14
+ function _interop_require_default(obj) {
15
+ return obj && obj.__esModule ? obj : {
16
+ default: obj
17
+ };
18
+ }
19
+ const PopperHeaderStyled = (0, _styles.styled)('div')(({ theme })=>({
20
+ height: '50px',
21
+ background: '#568793',
22
+ color: theme.palette.common.white,
23
+ padding: '0 17px',
24
+ display: 'grid',
25
+ gridAutoFlow: 'column',
26
+ alignItems: 'center',
27
+ justifyContent: 'space-between'
28
+ }));
29
+ const PopperHeader = ({ children, icon })=>{
30
+ return /*#__PURE__*/ (0, _jsxruntime.jsxs)(PopperHeaderStyled, {
31
+ children: [
32
+ children,
33
+ icon && icon
34
+ ]
35
+ });
36
+ };
@@ -0,0 +1 @@
1
+ export { PopperHeader } from './PopperHeader';
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "PopperHeader", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return _PopperHeader.PopperHeader;
9
+ }
10
+ });
11
+ const _PopperHeader = require("./PopperHeader");
@@ -0,0 +1,3 @@
1
+ export { Arrow } from './styles/popper.styles';
2
+ export { PopperHeader } from './content';
3
+ export { PopperWithOutside } from './PopperWithOutside';
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ Arrow: function() {
13
+ return _popperstyles.Arrow;
14
+ },
15
+ PopperHeader: function() {
16
+ return _content.PopperHeader;
17
+ },
18
+ PopperWithOutside: function() {
19
+ return _PopperWithOutside.PopperWithOutside;
20
+ }
21
+ });
22
+ const _popperstyles = require("./styles/popper.styles");
23
+ const _content = require("./content");
24
+ const _PopperWithOutside = require("./PopperWithOutside");
@@ -0,0 +1,16 @@
1
+ export declare const makeStyles: <Params = void, RuleNameSubsetReferencableInNestedSelectors extends string = never>(params?: {
2
+ name?: string | Record<string, unknown> | undefined;
3
+ uniqId?: string | undefined;
4
+ } | undefined) => <RuleName extends string>(cssObjectByRuleNameOrGetCssObjectByRuleName: Record<RuleName, import("tss-react").CSSObject> | ((theme: import("@mui/styles").DefaultTheme, params: Params, classes: Record<RuleNameSubsetReferencableInNestedSelectors, string>) => Record<RuleNameSubsetReferencableInNestedSelectors | RuleName, import("tss-react").CSSObject>)) => (params: Params, muiStyleOverridesParams?: {
5
+ props: Record<string, unknown>;
6
+ ownerState?: Record<string, unknown> | undefined;
7
+ } | undefined) => {
8
+ classes: Record<RuleName, string>;
9
+ theme: import("@mui/styles").DefaultTheme;
10
+ css: import("tss-react").Css;
11
+ cx: import("tss-react").Cx;
12
+ }, useStyles: () => {
13
+ theme: import("@mui/styles").DefaultTheme;
14
+ css: import("tss-react").Css;
15
+ cx: import("tss-react").Cx;
16
+ };
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ makeStyles: function() {
13
+ return makeStyles;
14
+ },
15
+ useStyles: function() {
16
+ return useStyles;
17
+ }
18
+ });
19
+ const _tssreact = require("tss-react");
20
+ const _styles = require("@mui/styles");
21
+ const { makeStyles, useStyles } = (0, _tssreact.createMakeStyles)({
22
+ useTheme: _styles.useTheme
23
+ });
@@ -0,0 +1,3 @@
1
+ export declare const PopperArrow: StyledComponent<ComponentProps, SpecificComponentProps, JSXProps>;
2
+ export declare const PopperStyled: StyledComponent<ComponentProps & AdditionalProps, SpecificComponentProps, JSXProps>;
3
+ export declare const Arrow: StyledComponent<ComponentProps, SpecificComponentProps, JSXProps>;
@@ -0,0 +1,138 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ Arrow: function() {
13
+ return Arrow;
14
+ },
15
+ PopperArrow: function() {
16
+ return PopperArrow;
17
+ },
18
+ PopperStyled: function() {
19
+ return PopperStyled;
20
+ }
21
+ });
22
+ const _Popper = /*#__PURE__*/ _interop_require_default(require("@mui/material/Popper"));
23
+ const _styles = require("@mui/material/styles");
24
+ function _interop_require_default(obj) {
25
+ return obj && obj.__esModule ? obj : {
26
+ default: obj
27
+ };
28
+ }
29
+ const PopperArrow = (0, _styles.styled)('div')(({ theme })=>({
30
+ position: 'absolute',
31
+ fontSize: 7,
32
+ width: '0.5em',
33
+ height: '3em',
34
+ left: 0,
35
+ marginLeft: '-4px',
36
+ top: '78px',
37
+ '&::before': {
38
+ content: '""',
39
+ margin: 'auto',
40
+ display: 'block',
41
+ width: 0,
42
+ height: 0,
43
+ borderStyle: 'solid',
44
+ borderWidth: '8px 6px 8px 2px',
45
+ //@ts-ignore
46
+ borderColor: `transparent ${theme.palette.primary[700]} transparent transparent`,
47
+ filter: 'drop-shadow(0px 0px 10px rgba(86, 135, 147, 0.2))'
48
+ }
49
+ }));
50
+ const PopperStyled = (0, _styles.styled)(_Popper.default, {
51
+ shouldForwardProp: (prop)=>prop !== 'arrow'
52
+ })(({ theme, arrow, arrowColor = theme.palette.primary[700] })=>({
53
+ // maxHeight: '500px',
54
+ zIndex: 1,
55
+ '& > div': {
56
+ position: 'relative'
57
+ },
58
+ '&[data-popper-placement*="bottom"]': {
59
+ '& > div': {
60
+ marginTop: arrow ? 2 : 0
61
+ },
62
+ '& .popper-arrow': {
63
+ top: 0,
64
+ left: 0,
65
+ marginTop: '-1em',
66
+ width: '3em',
67
+ height: '1em',
68
+ '&::before': {
69
+ borderWidth: '0 1em 1em 1em',
70
+ borderColor: `transparent transparent ${arrowColor} transparent`,
71
+ filter: 'drop-shadow(-1.1px 0px 1px rgba(0,0,0,.2))'
72
+ }
73
+ }
74
+ },
75
+ '&[data-popper-placement*="top"]': {
76
+ '& > div': {
77
+ marginBottom: arrow ? 2 : 0
78
+ },
79
+ '& .popper-arrow': {
80
+ bottom: 0,
81
+ left: 0,
82
+ marginBottom: '-1em',
83
+ width: '3em',
84
+ height: '1em',
85
+ '&::before': {
86
+ borderWidth: '1em 1em 0 1em',
87
+ borderColor: `${arrowColor} transparent transparent transparent`,
88
+ filter: 'drop-shadow(-1.1px 0px 1px rgba(0,0,0,.2))'
89
+ }
90
+ }
91
+ },
92
+ '&[data-popper-placement*="right"]': {
93
+ '& > div': {
94
+ marginLeft: arrow ? 2 : 0
95
+ },
96
+ '& .popper-arrow': {
97
+ left: 0,
98
+ marginLeft: '-1em',
99
+ height: '3em',
100
+ width: '1em',
101
+ '&::before': {
102
+ borderWidth: '1em 1em 1em 0',
103
+ borderColor: `transparent ${arrowColor} transparent transparent`,
104
+ filter: 'drop-shadow(-1.1px 0px 1px rgba(0,0,0,.2))'
105
+ }
106
+ }
107
+ },
108
+ '&[data-popper-placement*="left"]': {
109
+ '& > div': {
110
+ marginRight: arrow ? 2 : 0
111
+ },
112
+ '& .popper-arrow': {
113
+ right: 0,
114
+ marginRight: '-1em',
115
+ height: '3em',
116
+ width: '1em',
117
+ '&::before': {
118
+ borderWidth: '1em 0 1em 1em',
119
+ borderColor: `transparent transparent transparent ${arrowColor}`,
120
+ filter: 'drop-shadow(-1.1px 0px 1px rgba(0,0,0,.2))'
121
+ }
122
+ }
123
+ }
124
+ }));
125
+ const Arrow = (0, _styles.styled)('div')({
126
+ position: 'absolute',
127
+ fontSize: 7,
128
+ width: '3em',
129
+ height: '3em',
130
+ '&::before': {
131
+ content: '""',
132
+ margin: 'auto',
133
+ display: 'block',
134
+ width: 0,
135
+ height: 0,
136
+ borderStyle: 'solid'
137
+ }
138
+ });
package/dist/index.d.ts CHANGED
@@ -12,6 +12,7 @@ export { FxModalWithComponent } from './FxModalWithComponent';
12
12
  export { FxModalWithMenu } from './FxModalWithMenu';
13
13
  export { FxNotes, NoteCreateInput, NotesPropsType } from './FxNotes';
14
14
  export { FxNumberField, NumberfieldPropsType } from './FxNumberField';
15
+ export { Arrow, PopperHeader, PopperWithOutside } from './FxPopper';
15
16
  export { FxProgressCircle, ProgressCirclePropsType } from './FxProgressCircle';
16
17
  export { FxProgressCounter, ProgressCounterPropsType } from './FxProgressCounter';
17
18
  export { FxScore, ScorePropsType } from './FxScore';
@@ -22,6 +23,7 @@ export { FxStatisticsBar, StatisticsPropsType } from './FxStatisticsBar';
22
23
  export { FxStyledButton } from './FxStyledButton';
23
24
  export { FxStatusBar, StatusBarPropsType, Options } from './FxStatusBar';
24
25
  export { FxToggleButtons } from './FxToggleButtons';
26
+ export { FxTabs } from './FxTabs';
25
27
  export { FxTag, TagPropsType } from './FxTag';
26
28
  export { FxTextField, TextFieldPropsType } from './FxTextField';
27
29
  export { FxTodo, TodoItemType, TodoPropsType } from './FxTodo';
package/dist/index.js CHANGED
@@ -18,6 +18,9 @@ _export(exports, {
18
18
  AggregationsDataPropsType: function() {
19
19
  return _FxAggregationsBar.AggregationsDataPropsType;
20
20
  },
21
+ Arrow: function() {
22
+ return _FxPopper.Arrow;
23
+ },
21
24
  AsyncDropdownPropsType: function() {
22
25
  return _FxAsyncDropdown.AsyncDropdownPropsType;
23
26
  },
@@ -114,6 +117,9 @@ _export(exports, {
114
117
  FxStyledButton: function() {
115
118
  return _FxStyledButton.FxStyledButton;
116
119
  },
120
+ FxTabs: function() {
121
+ return _FxTabs.FxTabs;
122
+ },
117
123
  FxTag: function() {
118
124
  return _FxTag.FxTag;
119
125
  },
@@ -159,6 +165,12 @@ _export(exports, {
159
165
  PageTitle: function() {
160
166
  return _FxStyledComponents.PageTitle;
161
167
  },
168
+ PopperHeader: function() {
169
+ return _FxPopper.PopperHeader;
170
+ },
171
+ PopperWithOutside: function() {
172
+ return _FxPopper.PopperWithOutside;
173
+ },
162
174
  ProgressCirclePropsType: function() {
163
175
  return _FxProgressCircle.ProgressCirclePropsType;
164
176
  },
@@ -231,6 +243,7 @@ const _FxModalWithComponent = require("./FxModalWithComponent");
231
243
  const _FxModalWithMenu = require("./FxModalWithMenu");
232
244
  const _FxNotes = require("./FxNotes");
233
245
  const _FxNumberField = require("./FxNumberField");
246
+ const _FxPopper = require("./FxPopper");
234
247
  const _FxProgressCircle = require("./FxProgressCircle");
235
248
  const _FxProgressCounter = require("./FxProgressCounter");
236
249
  const _FxScore = require("./FxScore");
@@ -241,6 +254,7 @@ const _FxStatisticsBar = require("./FxStatisticsBar");
241
254
  const _FxStyledButton = require("./FxStyledButton");
242
255
  const _FxStatusBar = require("./FxStatusBar");
243
256
  const _FxToggleButtons = require("./FxToggleButtons");
257
+ const _FxTabs = require("./FxTabs");
244
258
  const _FxTag = require("./FxTag");
245
259
  const _FxTextField = require("./FxTextField");
246
260
  const _FxTodo = require("./FxTodo");
package/package.json CHANGED
@@ -16,7 +16,8 @@
16
16
  "next": "14.2.3",
17
17
  "react": "18.3.1",
18
18
  "react-dom": "18.3.1",
19
- "react-use-wizard": "2.3.0"
19
+ "react-use-wizard": "2.3.0",
20
+ "tss-react": "^4.9.14"
20
21
  },
21
22
  "devDependencies": {
22
23
  "@svgr/webpack": "8.1.0",
@@ -66,5 +67,5 @@
66
67
  "require": "./dist/index.js"
67
68
  }
68
69
  },
69
- "version": "0.3.14"
70
+ "version": "0.3.16"
70
71
  }