@fixefy/fixefy-ui-components 0.2.19 → 0.2.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,9 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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
|
+
FxWizard: function() {
|
|
13
|
+
return FxWizard;
|
|
14
|
+
},
|
|
15
|
+
default: function() {
|
|
8
16
|
return _default;
|
|
9
17
|
}
|
|
10
18
|
});
|
|
@@ -2,9 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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
|
+
StepsLauncher: function() {
|
|
13
|
+
return StepsLauncher;
|
|
14
|
+
},
|
|
15
|
+
default: function() {
|
|
8
16
|
return _default;
|
|
9
17
|
}
|
|
10
18
|
});
|
|
@@ -31,7 +39,7 @@ const StepsLauncher = (steps, footer)=>{
|
|
|
31
39
|
nextStepPath: '/uploader-page',
|
|
32
40
|
},
|
|
33
41
|
]
|
|
34
|
-
|
|
42
|
+
|
|
35
43
|
footer is a component
|
|
36
44
|
*/ const config = {
|
|
37
45
|
steps
|
package/dist/index.d.ts
CHANGED
|
@@ -20,4 +20,5 @@ export { FxStatusBar, StatusBarPropsType, Options } from './FxStatusBar';
|
|
|
20
20
|
export { FxTag, TagPropsType } from './FxTag';
|
|
21
21
|
export { FxTextField, TextFieldPropsType } from './FxTextField';
|
|
22
22
|
export { FxTodo, TodoItemType, TodoPropsType } from './FxTodo';
|
|
23
|
+
export { FxWizard, StepsLauncher } from './FxWizard';
|
|
23
24
|
export { Card, PageHeader, Label, BoldValue, Value, PageTitle, Link, Text, ShowMore, ShowMoreContainer, DataWrapper, Bars, } from './FxStyledComponents';
|
package/dist/index.js
CHANGED
|
@@ -111,6 +111,9 @@ _export(exports, {
|
|
|
111
111
|
FxTodo: function() {
|
|
112
112
|
return _FxTodo.FxTodo;
|
|
113
113
|
},
|
|
114
|
+
FxWizard: function() {
|
|
115
|
+
return _FxWizard.FxWizard;
|
|
116
|
+
},
|
|
114
117
|
Label: function() {
|
|
115
118
|
return _FxStyledComponents.Label;
|
|
116
119
|
},
|
|
@@ -168,6 +171,9 @@ _export(exports, {
|
|
|
168
171
|
StatusBarPropsType: function() {
|
|
169
172
|
return _FxStatusBar.StatusBarPropsType;
|
|
170
173
|
},
|
|
174
|
+
StepsLauncher: function() {
|
|
175
|
+
return _FxWizard.StepsLauncher;
|
|
176
|
+
},
|
|
171
177
|
StylesOptions: function() {
|
|
172
178
|
return _FxAsyncDropdown.StylesOptions;
|
|
173
179
|
},
|
|
@@ -212,4 +218,5 @@ const _FxStatusBar = require("./FxStatusBar");
|
|
|
212
218
|
const _FxTag = require("./FxTag");
|
|
213
219
|
const _FxTextField = require("./FxTextField");
|
|
214
220
|
const _FxTodo = require("./FxTodo");
|
|
221
|
+
const _FxWizard = require("./FxWizard");
|
|
215
222
|
const _FxStyledComponents = require("./FxStyledComponents");
|
package/package.json
CHANGED