@fixefy/fixefy-ui-components 0.3.14 → 0.3.15
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/index.d.ts +1 -0
- package/dist/index.js +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export { FxStatisticsBar, StatisticsPropsType } from './FxStatisticsBar';
|
|
|
22
22
|
export { FxStyledButton } from './FxStyledButton';
|
|
23
23
|
export { FxStatusBar, StatusBarPropsType, Options } from './FxStatusBar';
|
|
24
24
|
export { FxToggleButtons } from './FxToggleButtons';
|
|
25
|
+
export { FxTabs } from './FxTabs';
|
|
25
26
|
export { FxTag, TagPropsType } from './FxTag';
|
|
26
27
|
export { FxTextField, TextFieldPropsType } from './FxTextField';
|
|
27
28
|
export { FxTodo, TodoItemType, TodoPropsType } from './FxTodo';
|
package/dist/index.js
CHANGED
|
@@ -114,6 +114,9 @@ _export(exports, {
|
|
|
114
114
|
FxStyledButton: function() {
|
|
115
115
|
return _FxStyledButton.FxStyledButton;
|
|
116
116
|
},
|
|
117
|
+
FxTabs: function() {
|
|
118
|
+
return _FxTabs.FxTabs;
|
|
119
|
+
},
|
|
117
120
|
FxTag: function() {
|
|
118
121
|
return _FxTag.FxTag;
|
|
119
122
|
},
|
|
@@ -241,6 +244,7 @@ const _FxStatisticsBar = require("./FxStatisticsBar");
|
|
|
241
244
|
const _FxStyledButton = require("./FxStyledButton");
|
|
242
245
|
const _FxStatusBar = require("./FxStatusBar");
|
|
243
246
|
const _FxToggleButtons = require("./FxToggleButtons");
|
|
247
|
+
const _FxTabs = require("./FxTabs");
|
|
244
248
|
const _FxTag = require("./FxTag");
|
|
245
249
|
const _FxTextField = require("./FxTextField");
|
|
246
250
|
const _FxTodo = require("./FxTodo");
|
package/package.json
CHANGED