@fixefy/fixefy-ui-components 0.3.108 → 0.3.110
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/FxAsyncDropdown/FxAsyncDropdown.js +3 -3
- package/dist/FxDatesProgress/styles/progress.styles.js +1 -1
- package/dist/FxUserImage/FxUserImage.js +2 -2
- package/dist/fixefy-ui-components/src/FxActionsTray/FxActionsTray.js +111 -0
- package/dist/fixefy-ui-components/src/FxActionsTray/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxActionsTray/styles/actionsTray.style.js +114 -0
- package/dist/fixefy-ui-components/src/FxAggregationsBar/FxAggregations.js +41 -0
- package/dist/fixefy-ui-components/src/FxAggregationsBar/helpers/structureReader.js +80 -0
- package/dist/fixefy-ui-components/src/FxAggregationsBar/index.js +22 -0
- package/dist/fixefy-ui-components/src/FxAggregationsBar/operations/query.js +73 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/FxAsyncDropdown.js +500 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/components/CheckboxIcon.js +44 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/components/ChipOption.js +35 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/components/ChosenIcon.js +45 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/components/DeleteButton.js +37 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/components/LogoOption.js +101 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/components/TextOption.js +74 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/components/index.js +36 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/helpers/helpers.js +233 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/styles/dropdown.styles.js +211 -0
- package/dist/fixefy-ui-components/src/FxAsyncDropdown/types.js +4 -0
- package/dist/fixefy-ui-components/src/FxAvatar/FxAvatar.js +145 -0
- package/dist/fixefy-ui-components/src/FxAvatar/helpers/stringToColor.js +23 -0
- package/dist/fixefy-ui-components/src/FxAvatar/index.js +22 -0
- package/dist/fixefy-ui-components/src/FxAvatar/styles/avatar.styles.js +233 -0
- package/dist/fixefy-ui-components/src/FxButton/FxButton.js +106 -0
- package/dist/fixefy-ui-components/src/FxButton/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxButton/styles/button.styles.js +28 -0
- package/dist/fixefy-ui-components/src/FxButtonModalWithComponent/FxButtonModalWithComponent.js +118 -0
- package/dist/fixefy-ui-components/src/FxButtonModalWithComponent/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxButtonModalWithMenu/FxButtonModalWithMenu.js +126 -0
- package/dist/fixefy-ui-components/src/FxButtonModalWithMenu/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxChip/FxChip.js +75 -0
- package/dist/fixefy-ui-components/src/FxChip/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxChip/styles/chip.styles.js +147 -0
- package/dist/fixefy-ui-components/src/FxDatesProgress/FxDatesProgress.js +126 -0
- package/dist/fixefy-ui-components/src/FxDatesProgress/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxDatesProgress/styles/progress.styles.js +24 -0
- package/dist/fixefy-ui-components/src/FxGeneralModal/FxGeneralModal.js +107 -0
- package/dist/fixefy-ui-components/src/FxGeneralModal/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxGridEmptyState/FxGridEmptyState.js +86 -0
- package/dist/fixefy-ui-components/src/FxGridEmptyState/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxGridError/FxGridError.js +91 -0
- package/dist/fixefy-ui-components/src/FxGridError/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxIcon/FxIcon.js +118 -0
- package/dist/fixefy-ui-components/src/FxIcon/content/dynamic_icon.js +20 -0
- package/dist/fixefy-ui-components/src/FxIcon/content/index.js +20 -0
- package/dist/fixefy-ui-components/src/FxIcon/content/lazy_icon.js +87 -0
- package/dist/fixefy-ui-components/src/FxIcon/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxMenuItemWithIcon/FxMenuItemWithIcon.js +84 -0
- package/dist/fixefy-ui-components/src/FxMenuItemWithIcon/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxModal/FxModal.js +171 -0
- package/dist/fixefy-ui-components/src/FxModal/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxModal/styles/modal.style.js +66 -0
- package/dist/fixefy-ui-components/src/FxNotes/FxNotes.js +216 -0
- package/dist/fixefy-ui-components/src/FxNotes/helpers/stringToColor.js +26 -0
- package/dist/fixefy-ui-components/src/FxNotes/index.js +22 -0
- package/dist/fixefy-ui-components/src/FxNotes/operations/queries.js +35 -0
- package/dist/fixefy-ui-components/src/FxNotes/styles/notes.styles.js +168 -0
- package/dist/fixefy-ui-components/src/FxNumberField/FxNumberField.js +108 -0
- package/dist/fixefy-ui-components/src/FxNumberField/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxNumberField/styles/number_field.styles.js +99 -0
- package/dist/fixefy-ui-components/src/FxObjStaticDropdown/FxObjStaticDropdown.js +548 -0
- package/dist/fixefy-ui-components/src/FxObjStaticDropdown/index.js +25 -0
- package/dist/fixefy-ui-components/src/FxObjStaticDropdown/styles/dropdown.styles.js +211 -0
- package/dist/fixefy-ui-components/src/FxPopper/Popper.js +139 -0
- package/dist/fixefy-ui-components/src/FxPopper/PopperWithOutside.js +116 -0
- package/dist/fixefy-ui-components/src/FxPopper/content/PopperHeader.js +36 -0
- package/dist/fixefy-ui-components/src/FxPopper/content/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxPopper/index.js +24 -0
- package/dist/fixefy-ui-components/src/FxPopper/styles/popper.styles.js +138 -0
- package/dist/fixefy-ui-components/src/FxProgressCircle/FxProgressCircle.js +65 -0
- package/dist/fixefy-ui-components/src/FxProgressCircle/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxProgressCircle/styles/progress_circle.styles.js +106 -0
- package/dist/fixefy-ui-components/src/FxProgressCounter/ProgressCounter.js +168 -0
- package/dist/fixefy-ui-components/src/FxProgressCounter/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxProgressCounter/styles/progress_counter.styles.js +66 -0
- package/dist/fixefy-ui-components/src/FxScore/FxScore.js +215 -0
- package/dist/fixefy-ui-components/src/FxScore/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxScore/styles/score.styles.js +102 -0
- package/dist/fixefy-ui-components/src/FxShowMore/FxShowMore.js +80 -0
- package/dist/fixefy-ui-components/src/FxShowMore/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxShowMore/styles/show_more.styles.js +143 -0
- package/dist/fixefy-ui-components/src/FxSlider/FxSlider.js +49 -0
- package/dist/fixefy-ui-components/src/FxSlider/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxStatisticsBar/FxStatisticsBar.js +198 -0
- package/dist/fixefy-ui-components/src/FxStatisticsBar/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxStatisticsBar/styles/statistics.styles.js +103 -0
- package/dist/fixefy-ui-components/src/FxStatusBar/FxStatusBar.js +149 -0
- package/dist/fixefy-ui-components/src/FxStatusBar/helpers/constants.js +22 -0
- package/dist/fixefy-ui-components/src/FxStatusBar/index.js +22 -0
- package/dist/fixefy-ui-components/src/FxStatusBar/styles/statusBar.styles.js +138 -0
- package/dist/fixefy-ui-components/src/FxStrStaticDropdown/FxStrStaticDropdown.js +382 -0
- package/dist/fixefy-ui-components/src/FxStrStaticDropdown/helpers/helpers.js +22 -0
- package/dist/fixefy-ui-components/src/FxStrStaticDropdown/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxStrStaticDropdown/styles/dropdown.styles.js +190 -0
- package/dist/fixefy-ui-components/src/FxStyledButton/FxStyledButton.js +57 -0
- package/dist/fixefy-ui-components/src/FxStyledButton/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxStyledComponents/index.js +319 -0
- package/dist/fixefy-ui-components/src/FxSwitch/FxSwitch.js +106 -0
- package/dist/fixefy-ui-components/src/FxSwitch/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxSwitch/styles/switch.styles.js +42 -0
- package/dist/fixefy-ui-components/src/FxTabs/FxTabs.js +79 -0
- package/dist/fixefy-ui-components/src/FxTabs/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxTag/FxTag.js +50 -0
- package/dist/fixefy-ui-components/src/FxTag/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxTag/styles/tag.styles.js +106 -0
- package/dist/fixefy-ui-components/src/FxTextField/FxTextField.js +211 -0
- package/dist/fixefy-ui-components/src/FxTextField/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxTodo/FxTodo.js +95 -0
- package/dist/fixefy-ui-components/src/FxTodo/index.js +22 -0
- package/dist/fixefy-ui-components/src/FxTodo/styles/todo.styles.js +183 -0
- package/dist/fixefy-ui-components/src/FxToggleButtons/FxToggleButtons.js +69 -0
- package/dist/fixefy-ui-components/src/FxToggleButtons/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxUserImage/FxUserImage.js +236 -0
- package/dist/fixefy-ui-components/src/FxUserImage/index.js +11 -0
- package/dist/fixefy-ui-components/src/FxWizard/FxWizard.js +50 -0
- package/dist/fixefy-ui-components/src/FxWizard/index.js +19 -0
- package/dist/fixefy-ui-components/src/FxWizard/steps launcher/StepsLauncher.js +52 -0
- package/dist/fixefy-ui-components/src/FxWizard/steps launcher/index.js +18 -0
- package/dist/fixefy-ui-components/src/index.js +277 -0
- package/package.json +4 -5
|
@@ -0,0 +1,277 @@
|
|
|
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
|
+
AggreationsBarPropsType: function() {
|
|
13
|
+
return _FxAggregationsBar.AggreationsBarPropsType;
|
|
14
|
+
},
|
|
15
|
+
AggregationsDataPropsType: function() {
|
|
16
|
+
return _FxAggregationsBar.AggregationsDataPropsType;
|
|
17
|
+
},
|
|
18
|
+
Arrow: function() {
|
|
19
|
+
return _FxPopper.Arrow;
|
|
20
|
+
},
|
|
21
|
+
AvatarPropsType: function() {
|
|
22
|
+
return _FxAvatar.AvatarPropsType;
|
|
23
|
+
},
|
|
24
|
+
BackgroundColorsType: function() {
|
|
25
|
+
return _FxAvatar.BackgroundColorsType;
|
|
26
|
+
},
|
|
27
|
+
Bars: function() {
|
|
28
|
+
return _FxStyledComponents.Bars;
|
|
29
|
+
},
|
|
30
|
+
BoldValue: function() {
|
|
31
|
+
return _FxStyledComponents.BoldValue;
|
|
32
|
+
},
|
|
33
|
+
ButtonPropsType: function() {
|
|
34
|
+
return _FxButton.ButtonPropsType;
|
|
35
|
+
},
|
|
36
|
+
Card: function() {
|
|
37
|
+
return _FxStyledComponents.Card;
|
|
38
|
+
},
|
|
39
|
+
ChipPropsType: function() {
|
|
40
|
+
return _FxChip.ChipPropsType;
|
|
41
|
+
},
|
|
42
|
+
DataWrapper: function() {
|
|
43
|
+
return _FxStyledComponents.DataWrapper;
|
|
44
|
+
},
|
|
45
|
+
FxActionsTray: function() {
|
|
46
|
+
return _FxActionsTray.FxActionsTray;
|
|
47
|
+
},
|
|
48
|
+
FxAggregationsBar: function() {
|
|
49
|
+
return _FxAggregationsBar.FxAggregationsBar;
|
|
50
|
+
},
|
|
51
|
+
FxAsyncDropdown: function() {
|
|
52
|
+
return _FxAsyncDropdown.FxAsyncDropdown;
|
|
53
|
+
},
|
|
54
|
+
FxAvatar: function() {
|
|
55
|
+
return _FxAvatar.FxAvatar;
|
|
56
|
+
},
|
|
57
|
+
FxButton: function() {
|
|
58
|
+
return _FxButton.FxButton;
|
|
59
|
+
},
|
|
60
|
+
FxButtonModalWithComponent: function() {
|
|
61
|
+
return _FxButtonModalWithComponent.FxButtonModalWithComponent;
|
|
62
|
+
},
|
|
63
|
+
FxButtonModalWithMenu: function() {
|
|
64
|
+
return _FxButtonModalWithMenu.FxButtonModalWithMenu;
|
|
65
|
+
},
|
|
66
|
+
FxChip: function() {
|
|
67
|
+
return _FxChip.FxChip;
|
|
68
|
+
},
|
|
69
|
+
FxDatesProgress: function() {
|
|
70
|
+
return _FxDatesProgress.FxDatesProgress;
|
|
71
|
+
},
|
|
72
|
+
FxGeneralModal: function() {
|
|
73
|
+
return _FxGeneralModal.FxGeneralModal;
|
|
74
|
+
},
|
|
75
|
+
FxGridEmptyState: function() {
|
|
76
|
+
return _FxGridEmptyState.FxGridEmptyState;
|
|
77
|
+
},
|
|
78
|
+
FxGridError: function() {
|
|
79
|
+
return _FxGridError.FxGridError;
|
|
80
|
+
},
|
|
81
|
+
FxIcon: function() {
|
|
82
|
+
return _FxIcon.FxIcon;
|
|
83
|
+
},
|
|
84
|
+
FxLink: function() {
|
|
85
|
+
return _FxStyledComponents.FxLink;
|
|
86
|
+
},
|
|
87
|
+
FxMenuItemWithIcon: function() {
|
|
88
|
+
return _FxMenuItemWithIcon.FxMenuItemWithIcon;
|
|
89
|
+
},
|
|
90
|
+
FxModal: function() {
|
|
91
|
+
return _FxModal.FxModal;
|
|
92
|
+
},
|
|
93
|
+
FxNotes: function() {
|
|
94
|
+
return _FxNotes.FxNotes;
|
|
95
|
+
},
|
|
96
|
+
FxNumberField: function() {
|
|
97
|
+
return _FxNumberField.FxNumberField;
|
|
98
|
+
},
|
|
99
|
+
FxObjStaticDropdown: function() {
|
|
100
|
+
return _FxObjStaticDropdown.FxObjStaticDropdown;
|
|
101
|
+
},
|
|
102
|
+
FxProgressCircle: function() {
|
|
103
|
+
return _FxProgressCircle.FxProgressCircle;
|
|
104
|
+
},
|
|
105
|
+
FxProgressCounter: function() {
|
|
106
|
+
return _FxProgressCounter.FxProgressCounter;
|
|
107
|
+
},
|
|
108
|
+
FxScore: function() {
|
|
109
|
+
return _FxScore.FxScore;
|
|
110
|
+
},
|
|
111
|
+
FxShowMore: function() {
|
|
112
|
+
return _FxShowMore.FxShowMore;
|
|
113
|
+
},
|
|
114
|
+
FxSlider: function() {
|
|
115
|
+
return _FxSlider.FxSlider;
|
|
116
|
+
},
|
|
117
|
+
FxStatisticsBar: function() {
|
|
118
|
+
return _FxStatisticsBar.FxStatisticsBar;
|
|
119
|
+
},
|
|
120
|
+
FxStatusBar: function() {
|
|
121
|
+
return _FxStatusBar.FxStatusBar;
|
|
122
|
+
},
|
|
123
|
+
FxStrStaticDropdown: function() {
|
|
124
|
+
return _FxStrStaticDropdown.FxStrStaticDropdown;
|
|
125
|
+
},
|
|
126
|
+
FxStyledButton: function() {
|
|
127
|
+
return _FxStyledButton.FxStyledButton;
|
|
128
|
+
},
|
|
129
|
+
FxSwitch: function() {
|
|
130
|
+
return _FxSwitch.FxSwitch;
|
|
131
|
+
},
|
|
132
|
+
FxTabs: function() {
|
|
133
|
+
return _FxTabs.FxTabs;
|
|
134
|
+
},
|
|
135
|
+
FxTag: function() {
|
|
136
|
+
return _FxTag.FxTag;
|
|
137
|
+
},
|
|
138
|
+
FxTextField: function() {
|
|
139
|
+
return _FxTextField.FxTextField;
|
|
140
|
+
},
|
|
141
|
+
FxTodo: function() {
|
|
142
|
+
return _FxTodo.FxTodo;
|
|
143
|
+
},
|
|
144
|
+
FxToggleButtons: function() {
|
|
145
|
+
return _FxToggleButtons.FxToggleButtons;
|
|
146
|
+
},
|
|
147
|
+
FxUserImage: function() {
|
|
148
|
+
return _FxUserImage.FxUserImage;
|
|
149
|
+
},
|
|
150
|
+
FxWizard: function() {
|
|
151
|
+
return _FxWizard.FxWizard;
|
|
152
|
+
},
|
|
153
|
+
Label: function() {
|
|
154
|
+
return _FxStyledComponents.Label;
|
|
155
|
+
},
|
|
156
|
+
ModalPropsType: function() {
|
|
157
|
+
return _FxModal.ModalPropsType;
|
|
158
|
+
},
|
|
159
|
+
NoteCreateInput: function() {
|
|
160
|
+
return _FxNotes.NoteCreateInput;
|
|
161
|
+
},
|
|
162
|
+
NotesPropsType: function() {
|
|
163
|
+
return _FxNotes.NotesPropsType;
|
|
164
|
+
},
|
|
165
|
+
NumberfieldPropsType: function() {
|
|
166
|
+
return _FxNumberField.NumberfieldPropsType;
|
|
167
|
+
},
|
|
168
|
+
Options: function() {
|
|
169
|
+
return _FxStatusBar.Options;
|
|
170
|
+
},
|
|
171
|
+
PageHeader: function() {
|
|
172
|
+
return _FxStyledComponents.PageHeader;
|
|
173
|
+
},
|
|
174
|
+
PageTitle: function() {
|
|
175
|
+
return _FxStyledComponents.PageTitle;
|
|
176
|
+
},
|
|
177
|
+
PopperHeader: function() {
|
|
178
|
+
return _FxPopper.PopperHeader;
|
|
179
|
+
},
|
|
180
|
+
PopperWithOutside: function() {
|
|
181
|
+
return _FxPopper.PopperWithOutside;
|
|
182
|
+
},
|
|
183
|
+
ProgressCirclePropsType: function() {
|
|
184
|
+
return _FxProgressCircle.ProgressCirclePropsType;
|
|
185
|
+
},
|
|
186
|
+
ProgressCounterPropsType: function() {
|
|
187
|
+
return _FxProgressCounter.ProgressCounterPropsType;
|
|
188
|
+
},
|
|
189
|
+
ScorePropsType: function() {
|
|
190
|
+
return _FxScore.ScorePropsType;
|
|
191
|
+
},
|
|
192
|
+
ShowMore: function() {
|
|
193
|
+
return _FxStyledComponents.ShowMore;
|
|
194
|
+
},
|
|
195
|
+
ShowMoreContainer: function() {
|
|
196
|
+
return _FxStyledComponents.ShowMoreContainer;
|
|
197
|
+
},
|
|
198
|
+
ShowMorePropsType: function() {
|
|
199
|
+
return _FxShowMore.ShowMorePropsType;
|
|
200
|
+
},
|
|
201
|
+
SliderPropsType: function() {
|
|
202
|
+
return _FxSlider.SliderPropsType;
|
|
203
|
+
},
|
|
204
|
+
StaticDropdownPropsType: function() {
|
|
205
|
+
return _FxStrStaticDropdown.StaticDropdownPropsType;
|
|
206
|
+
},
|
|
207
|
+
StaticDropdownStylesOptions: function() {
|
|
208
|
+
return _FxStrStaticDropdown.StaticDropdownStylesOptions;
|
|
209
|
+
},
|
|
210
|
+
StatisticsPropsType: function() {
|
|
211
|
+
return _FxStatisticsBar.StatisticsPropsType;
|
|
212
|
+
},
|
|
213
|
+
StatusBarPropsType: function() {
|
|
214
|
+
return _FxStatusBar.StatusBarPropsType;
|
|
215
|
+
},
|
|
216
|
+
StepsLauncher: function() {
|
|
217
|
+
return _FxWizard.StepsLauncher;
|
|
218
|
+
},
|
|
219
|
+
SwitchPropsType: function() {
|
|
220
|
+
return _FxSwitch.SwitchPropsType;
|
|
221
|
+
},
|
|
222
|
+
TagPropsType: function() {
|
|
223
|
+
return _FxTag.TagPropsType;
|
|
224
|
+
},
|
|
225
|
+
Text: function() {
|
|
226
|
+
return _FxStyledComponents.Text;
|
|
227
|
+
},
|
|
228
|
+
TextFieldPropsType: function() {
|
|
229
|
+
return _FxTextField.TextFieldPropsType;
|
|
230
|
+
},
|
|
231
|
+
TodoItemType: function() {
|
|
232
|
+
return _FxTodo.TodoItemType;
|
|
233
|
+
},
|
|
234
|
+
TodoPropsType: function() {
|
|
235
|
+
return _FxTodo.TodoPropsType;
|
|
236
|
+
},
|
|
237
|
+
Value: function() {
|
|
238
|
+
return _FxStyledComponents.Value;
|
|
239
|
+
}
|
|
240
|
+
});
|
|
241
|
+
const _FxActionsTray = require("./FxActionsTray");
|
|
242
|
+
const _FxAggregationsBar = require("./FxAggregationsBar");
|
|
243
|
+
const _FxAsyncDropdown = require("./FxAsyncDropdown");
|
|
244
|
+
const _FxAvatar = require("./FxAvatar");
|
|
245
|
+
const _FxButton = require("./FxButton");
|
|
246
|
+
const _FxChip = require("./FxChip");
|
|
247
|
+
const _FxDatesProgress = require("./FxDatesProgress");
|
|
248
|
+
const _FxGridEmptyState = require("./FxGridEmptyState");
|
|
249
|
+
const _FxGridError = require("./FxGridError");
|
|
250
|
+
const _FxGeneralModal = require("./FxGeneralModal");
|
|
251
|
+
const _FxIcon = require("./FxIcon");
|
|
252
|
+
const _FxMenuItemWithIcon = require("./FxMenuItemWithIcon");
|
|
253
|
+
const _FxModal = require("./FxModal");
|
|
254
|
+
const _FxButtonModalWithComponent = require("./FxButtonModalWithComponent");
|
|
255
|
+
const _FxButtonModalWithMenu = require("./FxButtonModalWithMenu");
|
|
256
|
+
const _FxNotes = require("./FxNotes");
|
|
257
|
+
const _FxNumberField = require("./FxNumberField");
|
|
258
|
+
const _FxPopper = require("./FxPopper");
|
|
259
|
+
const _FxObjStaticDropdown = require("./FxObjStaticDropdown");
|
|
260
|
+
const _FxProgressCircle = require("./FxProgressCircle");
|
|
261
|
+
const _FxProgressCounter = require("./FxProgressCounter");
|
|
262
|
+
const _FxScore = require("./FxScore");
|
|
263
|
+
const _FxShowMore = require("./FxShowMore");
|
|
264
|
+
const _FxSlider = require("./FxSlider");
|
|
265
|
+
const _FxStrStaticDropdown = require("./FxStrStaticDropdown");
|
|
266
|
+
const _FxStatisticsBar = require("./FxStatisticsBar");
|
|
267
|
+
const _FxStyledButton = require("./FxStyledButton");
|
|
268
|
+
const _FxStatusBar = require("./FxStatusBar");
|
|
269
|
+
const _FxSwitch = require("./FxSwitch");
|
|
270
|
+
const _FxToggleButtons = require("./FxToggleButtons");
|
|
271
|
+
const _FxTabs = require("./FxTabs");
|
|
272
|
+
const _FxTag = require("./FxTag");
|
|
273
|
+
const _FxTextField = require("./FxTextField");
|
|
274
|
+
const _FxTodo = require("./FxTodo");
|
|
275
|
+
const _FxUserImage = require("./FxUserImage");
|
|
276
|
+
const _FxWizard = require("./FxWizard");
|
|
277
|
+
const _FxStyledComponents = require("./FxStyledComponents");
|
package/package.json
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"fs": false
|
|
5
5
|
},
|
|
6
6
|
"peerDependencies": {
|
|
7
|
+
"@fixefy/fixefy-cookies": ">=0.1.0",
|
|
7
8
|
"@fixefy/fixefy-hooks": ">=0.0.16",
|
|
8
9
|
"@fixefy/fixefy-ui-utils": ">=0.2.56",
|
|
9
10
|
"@mui/material": ">=5.16.12",
|
|
@@ -11,16 +12,15 @@
|
|
|
11
12
|
"clsx": ">=2.1.1",
|
|
12
13
|
"graphql-tag": ">=2.12.6",
|
|
13
14
|
"next": ">=14.2.26",
|
|
14
|
-
"nookies": ">=2.5.2",
|
|
15
15
|
"react": ">=18.3.1",
|
|
16
16
|
"react-dom": ">=18.3.1"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@apollo/client": "3.7.15",
|
|
20
|
+
"@fixefy/fixefy-cookies": "^0.1.0",
|
|
20
21
|
"@fixefy/next-s3-upload": "^0.0.12",
|
|
21
22
|
"@mui/icons-material": "5.16.12",
|
|
22
23
|
"@mui/lab": "6.0.0-beta.7",
|
|
23
|
-
"nookies": "^2.5.2",
|
|
24
24
|
"pluralize": "8.0.0",
|
|
25
25
|
"react-use-wizard": "2.3.0"
|
|
26
26
|
},
|
|
@@ -64,7 +64,6 @@
|
|
|
64
64
|
"files": [
|
|
65
65
|
"dist/**/*"
|
|
66
66
|
],
|
|
67
|
-
"private": false,
|
|
68
67
|
"main": "./dist/index.js",
|
|
69
68
|
"module": "./dist/index.js",
|
|
70
69
|
"exports": {
|
|
@@ -73,5 +72,5 @@
|
|
|
73
72
|
"require": "./dist/index.js"
|
|
74
73
|
}
|
|
75
74
|
},
|
|
76
|
-
"version": "0.3.
|
|
77
|
-
}
|
|
75
|
+
"version": "0.3.110"
|
|
76
|
+
}
|