@fixefy/fixefy-ui-components 0.3.78 → 0.3.79
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 +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export { FxStrStaticDropdown, StaticDropdownStylesOptions, StaticDropdownPropsTy
|
|
|
26
26
|
export { FxStatisticsBar, StatisticsPropsType } from './FxStatisticsBar';
|
|
27
27
|
export { FxStyledButton } from './FxStyledButton';
|
|
28
28
|
export { FxStatusBar, StatusBarPropsType, Options } from './FxStatusBar';
|
|
29
|
+
export { FxSwitch, SwitchPropsType } from './FxSwitch';
|
|
29
30
|
export { FxToggleButtons } from './FxToggleButtons';
|
|
30
31
|
export { FxTabs } from './FxTabs';
|
|
31
32
|
export { FxTag, TagPropsType } from './FxTag';
|
package/dist/index.js
CHANGED
|
@@ -126,6 +126,9 @@ _export(exports, {
|
|
|
126
126
|
FxStyledButton: function() {
|
|
127
127
|
return _FxStyledButton.FxStyledButton;
|
|
128
128
|
},
|
|
129
|
+
FxSwitch: function() {
|
|
130
|
+
return _FxSwitch.FxSwitch;
|
|
131
|
+
},
|
|
129
132
|
FxTabs: function() {
|
|
130
133
|
return _FxTabs.FxTabs;
|
|
131
134
|
},
|
|
@@ -213,6 +216,9 @@ _export(exports, {
|
|
|
213
216
|
StepsLauncher: function() {
|
|
214
217
|
return _FxWizard.StepsLauncher;
|
|
215
218
|
},
|
|
219
|
+
SwitchPropsType: function() {
|
|
220
|
+
return _FxSwitch.SwitchPropsType;
|
|
221
|
+
},
|
|
216
222
|
TagPropsType: function() {
|
|
217
223
|
return _FxTag.TagPropsType;
|
|
218
224
|
},
|
|
@@ -260,6 +266,7 @@ const _FxStrStaticDropdown = require("./FxStrStaticDropdown");
|
|
|
260
266
|
const _FxStatisticsBar = require("./FxStatisticsBar");
|
|
261
267
|
const _FxStyledButton = require("./FxStyledButton");
|
|
262
268
|
const _FxStatusBar = require("./FxStatusBar");
|
|
269
|
+
const _FxSwitch = require("./FxSwitch");
|
|
263
270
|
const _FxToggleButtons = require("./FxToggleButtons");
|
|
264
271
|
const _FxTabs = require("./FxTabs");
|
|
265
272
|
const _FxTag = require("./FxTag");
|
package/package.json
CHANGED