@fixefy/fixefy-ui-components 0.3.47 → 0.3.48
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
|
@@ -29,5 +29,6 @@ export { FxTabs } from './FxTabs';
|
|
|
29
29
|
export { FxTag, TagPropsType } from './FxTag';
|
|
30
30
|
export { FxTextField, TextFieldPropsType } from './FxTextField';
|
|
31
31
|
export { FxTodo, TodoItemType, TodoPropsType } from './FxTodo';
|
|
32
|
+
export { FxUserImage } from './FxUserImage';
|
|
32
33
|
export { FxWizard, StepsLauncher } from './FxWizard';
|
|
33
34
|
export { Card, PageHeader, Label, BoldValue, Value, PageTitle, Link, Text, ShowMore, ShowMoreContainer, DataWrapper, Bars, } from './FxStyledComponents';
|
package/dist/index.js
CHANGED
|
@@ -135,6 +135,9 @@ _export(exports, {
|
|
|
135
135
|
FxToggleButtons: function() {
|
|
136
136
|
return _FxToggleButtons.FxToggleButtons;
|
|
137
137
|
},
|
|
138
|
+
FxUserImage: function() {
|
|
139
|
+
return _FxUserImage.FxUserImage;
|
|
140
|
+
},
|
|
138
141
|
FxWizard: function() {
|
|
139
142
|
return _FxWizard.FxWizard;
|
|
140
143
|
},
|
|
@@ -263,5 +266,6 @@ const _FxTabs = require("./FxTabs");
|
|
|
263
266
|
const _FxTag = require("./FxTag");
|
|
264
267
|
const _FxTextField = require("./FxTextField");
|
|
265
268
|
const _FxTodo = require("./FxTodo");
|
|
269
|
+
const _FxUserImage = require("./FxUserImage");
|
|
266
270
|
const _FxWizard = require("./FxWizard");
|
|
267
271
|
const _FxStyledComponents = require("./FxStyledComponents");
|
package/package.json
CHANGED