@webority-technologies/mobile 0.0.23 → 0.0.25
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/lib/commonjs/components/Accordion/Accordion.js +5 -5
- package/lib/commonjs/components/AnimatePresence/AnimatePresence.js +69 -0
- package/lib/commonjs/components/AnimatePresence/index.js +13 -0
- package/lib/commonjs/components/AppBar/AppBar.js +9 -6
- package/lib/commonjs/components/Autocomplete/Autocomplete.js +204 -0
- package/lib/commonjs/components/Autocomplete/index.js +13 -0
- package/lib/commonjs/components/Banner/Banner.js +12 -2
- package/lib/commonjs/components/BottomNavigation/BottomNavigation.js +1 -1
- package/lib/commonjs/components/Card/Card.js +3 -3
- package/lib/commonjs/components/Checkbox/Checkbox.js +3 -2
- package/lib/commonjs/components/Chip/Chip.js +4 -2
- package/lib/commonjs/components/Confetti/Confetti.js +170 -0
- package/lib/commonjs/components/Confetti/index.js +13 -0
- package/lib/commonjs/components/DatePicker/DatePicker.js +23 -18
- package/lib/commonjs/components/DateRangePicker/DateRangePicker.js +11 -9
- package/lib/commonjs/components/Dialog/Dialog.js +4 -2
- package/lib/commonjs/components/Drawer/Drawer.js +4 -2
- package/lib/commonjs/components/FieldBase/FieldBase.js +0 -2
- package/lib/commonjs/components/FloatingActionButton/FloatingActionButton.js +10 -8
- package/lib/commonjs/components/IconButton/IconButton.js +176 -0
- package/lib/commonjs/components/IconButton/index.js +13 -0
- package/lib/commonjs/components/ImageGallery/ImageGallery.js +17 -15
- package/lib/commonjs/components/ListItem/ListItem.js +4 -3
- package/lib/commonjs/components/Modal/Modal.js +4 -4
- package/lib/commonjs/components/NumberInput/NumberInput.js +7 -5
- package/lib/commonjs/components/OTPInput/OTPInput.js +7 -7
- package/lib/commonjs/components/ProgressBar/ProgressBar.js +32 -4
- package/lib/commonjs/components/Radio/Radio.js +2 -3
- package/lib/commonjs/components/Rating/Rating.js +4 -3
- package/lib/commonjs/components/SearchBar/SearchBar.js +7 -4
- package/lib/commonjs/components/SegmentedControl/SegmentedControl.js +4 -3
- package/lib/commonjs/components/Select/Select.js +7 -4
- package/lib/commonjs/components/SlideToConfirm/SlideToConfirm.js +224 -0
- package/lib/commonjs/components/SlideToConfirm/index.js +13 -0
- package/lib/commonjs/components/Slider/Slider.js +228 -228
- package/lib/commonjs/components/Stepper/Stepper.js +6 -5
- package/lib/commonjs/components/Swipeable/Swipeable.js +8 -9
- package/lib/commonjs/components/Tabs/Tabs.js +4 -3
- package/lib/commonjs/components/TimePicker/TimePicker.js +14 -9
- package/lib/commonjs/components/index.js +149 -114
- package/lib/commonjs/hooks/usePressAnimation.js +0 -1
- package/lib/commonjs/utils/hapticUtils.js +11 -1
- package/lib/commonjs/utils/index.js +6 -0
- package/lib/module/components/Accordion/Accordion.js +6 -6
- package/lib/module/components/AnimatePresence/AnimatePresence.js +63 -0
- package/lib/module/components/AnimatePresence/index.js +4 -0
- package/lib/module/components/AppBar/AppBar.js +10 -7
- package/lib/module/components/Autocomplete/Autocomplete.js +199 -0
- package/lib/module/components/Autocomplete/index.js +4 -0
- package/lib/module/components/Banner/Banner.js +12 -2
- package/lib/module/components/BottomNavigation/BottomNavigation.js +1 -1
- package/lib/module/components/Card/Card.js +4 -4
- package/lib/module/components/Checkbox/Checkbox.js +4 -3
- package/lib/module/components/Chip/Chip.js +5 -3
- package/lib/module/components/Confetti/Confetti.js +166 -0
- package/lib/module/components/Confetti/index.js +4 -0
- package/lib/module/components/DatePicker/DatePicker.js +24 -19
- package/lib/module/components/DateRangePicker/DateRangePicker.js +12 -10
- package/lib/module/components/Dialog/Dialog.js +5 -3
- package/lib/module/components/Drawer/Drawer.js +5 -3
- package/lib/module/components/FieldBase/FieldBase.js +0 -2
- package/lib/module/components/FloatingActionButton/FloatingActionButton.js +11 -9
- package/lib/module/components/IconButton/IconButton.js +172 -0
- package/lib/module/components/IconButton/index.js +4 -0
- package/lib/module/components/ImageGallery/ImageGallery.js +18 -16
- package/lib/module/components/ListItem/ListItem.js +5 -4
- package/lib/module/components/Modal/Modal.js +5 -5
- package/lib/module/components/NumberInput/NumberInput.js +8 -6
- package/lib/module/components/OTPInput/OTPInput.js +8 -8
- package/lib/module/components/ProgressBar/ProgressBar.js +33 -5
- package/lib/module/components/Radio/Radio.js +3 -4
- package/lib/module/components/Rating/Rating.js +5 -4
- package/lib/module/components/SearchBar/SearchBar.js +8 -5
- package/lib/module/components/SegmentedControl/SegmentedControl.js +5 -4
- package/lib/module/components/Select/Select.js +8 -5
- package/lib/module/components/SlideToConfirm/SlideToConfirm.js +220 -0
- package/lib/module/components/SlideToConfirm/index.js +4 -0
- package/lib/module/components/Slider/Slider.js +231 -231
- package/lib/module/components/Stepper/Stepper.js +7 -6
- package/lib/module/components/Swipeable/Swipeable.js +9 -10
- package/lib/module/components/Tabs/Tabs.js +5 -4
- package/lib/module/components/TimePicker/TimePicker.js +15 -10
- package/lib/module/components/index.js +5 -0
- package/lib/module/hooks/usePressAnimation.js +0 -1
- package/lib/module/utils/hapticUtils.js +9 -0
- package/lib/module/utils/index.js +1 -1
- package/lib/typescript/commonjs/components/Accordion/Accordion.d.ts +3 -0
- package/lib/typescript/commonjs/components/AnimatePresence/AnimatePresence.d.ts +30 -0
- package/lib/typescript/commonjs/components/AnimatePresence/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/AppBar/AppBar.d.ts +6 -0
- package/lib/typescript/commonjs/components/Autocomplete/Autocomplete.d.ts +53 -0
- package/lib/typescript/commonjs/components/Autocomplete/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Banner/Banner.d.ts +3 -0
- package/lib/typescript/commonjs/components/Card/Card.d.ts +3 -0
- package/lib/typescript/commonjs/components/Checkbox/Checkbox.d.ts +1 -0
- package/lib/typescript/commonjs/components/Chip/Chip.d.ts +3 -0
- package/lib/typescript/commonjs/components/Confetti/Confetti.d.ts +41 -0
- package/lib/typescript/commonjs/components/Confetti/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/DatePicker/DatePicker.d.ts +3 -0
- package/lib/typescript/commonjs/components/DateRangePicker/DateRangePicker.d.ts +6 -0
- package/lib/typescript/commonjs/components/Dialog/Dialog.d.ts +3 -0
- package/lib/typescript/commonjs/components/Drawer/Drawer.d.ts +3 -0
- package/lib/typescript/commonjs/components/FloatingActionButton/FloatingActionButton.d.ts +5 -0
- package/lib/typescript/commonjs/components/IconButton/IconButton.d.ts +34 -0
- package/lib/typescript/commonjs/components/IconButton/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/ImageGallery/ImageGallery.d.ts +6 -0
- package/lib/typescript/commonjs/components/ListItem/ListItem.d.ts +3 -0
- package/lib/typescript/commonjs/components/Modal/Modal.d.ts +6 -0
- package/lib/typescript/commonjs/components/NumberInput/NumberInput.d.ts +3 -0
- package/lib/typescript/commonjs/components/OTPInput/OTPInput.d.ts +6 -0
- package/lib/typescript/commonjs/components/ProgressBar/ProgressBar.d.ts +12 -0
- package/lib/typescript/commonjs/components/ProgressBar/index.d.ts +1 -1
- package/lib/typescript/commonjs/components/Rating/Rating.d.ts +6 -0
- package/lib/typescript/commonjs/components/SearchBar/SearchBar.d.ts +3 -0
- package/lib/typescript/commonjs/components/SegmentedControl/SegmentedControl.d.ts +3 -0
- package/lib/typescript/commonjs/components/Select/Select.d.ts +6 -0
- package/lib/typescript/commonjs/components/SlideToConfirm/SlideToConfirm.d.ts +34 -0
- package/lib/typescript/commonjs/components/SlideToConfirm/index.d.ts +3 -0
- package/lib/typescript/commonjs/components/Slider/Slider.d.ts +3 -0
- package/lib/typescript/commonjs/components/Stepper/Stepper.d.ts +6 -0
- package/lib/typescript/commonjs/components/Swipeable/Swipeable.d.ts +3 -0
- package/lib/typescript/commonjs/components/Tabs/Tabs.d.ts +3 -0
- package/lib/typescript/commonjs/components/TimePicker/TimePicker.d.ts +3 -0
- package/lib/typescript/commonjs/components/index.d.ts +11 -1
- package/lib/typescript/commonjs/hooks/usePressAnimation.d.ts +1 -2
- package/lib/typescript/commonjs/theme/types.d.ts +2 -67
- package/lib/typescript/commonjs/utils/hapticUtils.d.ts +8 -0
- package/lib/typescript/commonjs/utils/index.d.ts +1 -1
- package/lib/typescript/module/components/Accordion/Accordion.d.ts +3 -0
- package/lib/typescript/module/components/AnimatePresence/AnimatePresence.d.ts +30 -0
- package/lib/typescript/module/components/AnimatePresence/index.d.ts +3 -0
- package/lib/typescript/module/components/AppBar/AppBar.d.ts +6 -0
- package/lib/typescript/module/components/Autocomplete/Autocomplete.d.ts +53 -0
- package/lib/typescript/module/components/Autocomplete/index.d.ts +3 -0
- package/lib/typescript/module/components/Banner/Banner.d.ts +3 -0
- package/lib/typescript/module/components/Card/Card.d.ts +3 -0
- package/lib/typescript/module/components/Checkbox/Checkbox.d.ts +1 -0
- package/lib/typescript/module/components/Chip/Chip.d.ts +3 -0
- package/lib/typescript/module/components/Confetti/Confetti.d.ts +41 -0
- package/lib/typescript/module/components/Confetti/index.d.ts +3 -0
- package/lib/typescript/module/components/DatePicker/DatePicker.d.ts +3 -0
- package/lib/typescript/module/components/DateRangePicker/DateRangePicker.d.ts +6 -0
- package/lib/typescript/module/components/Dialog/Dialog.d.ts +3 -0
- package/lib/typescript/module/components/Drawer/Drawer.d.ts +3 -0
- package/lib/typescript/module/components/FloatingActionButton/FloatingActionButton.d.ts +5 -0
- package/lib/typescript/module/components/IconButton/IconButton.d.ts +34 -0
- package/lib/typescript/module/components/IconButton/index.d.ts +3 -0
- package/lib/typescript/module/components/ImageGallery/ImageGallery.d.ts +6 -0
- package/lib/typescript/module/components/ListItem/ListItem.d.ts +3 -0
- package/lib/typescript/module/components/Modal/Modal.d.ts +6 -0
- package/lib/typescript/module/components/NumberInput/NumberInput.d.ts +3 -0
- package/lib/typescript/module/components/OTPInput/OTPInput.d.ts +6 -0
- package/lib/typescript/module/components/ProgressBar/ProgressBar.d.ts +12 -0
- package/lib/typescript/module/components/ProgressBar/index.d.ts +1 -1
- package/lib/typescript/module/components/Rating/Rating.d.ts +6 -0
- package/lib/typescript/module/components/SearchBar/SearchBar.d.ts +3 -0
- package/lib/typescript/module/components/SegmentedControl/SegmentedControl.d.ts +3 -0
- package/lib/typescript/module/components/Select/Select.d.ts +6 -0
- package/lib/typescript/module/components/SlideToConfirm/SlideToConfirm.d.ts +34 -0
- package/lib/typescript/module/components/SlideToConfirm/index.d.ts +3 -0
- package/lib/typescript/module/components/Slider/Slider.d.ts +3 -0
- package/lib/typescript/module/components/Stepper/Stepper.d.ts +6 -0
- package/lib/typescript/module/components/Swipeable/Swipeable.d.ts +3 -0
- package/lib/typescript/module/components/Tabs/Tabs.d.ts +3 -0
- package/lib/typescript/module/components/TimePicker/TimePicker.d.ts +3 -0
- package/lib/typescript/module/components/index.d.ts +11 -1
- package/lib/typescript/module/hooks/usePressAnimation.d.ts +1 -2
- package/lib/typescript/module/theme/types.d.ts +2 -67
- package/lib/typescript/module/utils/hapticUtils.d.ts +8 -0
- package/lib/typescript/module/utils/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -15,454 +15,489 @@ Object.defineProperty(exports, "AccordionGroup", {
|
|
|
15
15
|
return _index.AccordionGroup;
|
|
16
16
|
}
|
|
17
17
|
});
|
|
18
|
+
Object.defineProperty(exports, "AnimatePresence", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function () {
|
|
21
|
+
return _index2.AnimatePresence;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
18
24
|
Object.defineProperty(exports, "AppBar", {
|
|
19
25
|
enumerable: true,
|
|
20
26
|
get: function () {
|
|
21
|
-
return
|
|
27
|
+
return _index27.AppBar;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "Autocomplete", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function () {
|
|
33
|
+
return _index3.Autocomplete;
|
|
22
34
|
}
|
|
23
35
|
});
|
|
24
36
|
Object.defineProperty(exports, "Avatar", {
|
|
25
37
|
enumerable: true,
|
|
26
38
|
get: function () {
|
|
27
|
-
return
|
|
39
|
+
return _index4.Avatar;
|
|
28
40
|
}
|
|
29
41
|
});
|
|
30
42
|
Object.defineProperty(exports, "AvatarGroup", {
|
|
31
43
|
enumerable: true,
|
|
32
44
|
get: function () {
|
|
33
|
-
return
|
|
45
|
+
return _index4.AvatarGroup;
|
|
34
46
|
}
|
|
35
47
|
});
|
|
36
48
|
Object.defineProperty(exports, "Badge", {
|
|
37
49
|
enumerable: true,
|
|
38
50
|
get: function () {
|
|
39
|
-
return
|
|
51
|
+
return _index5.Badge;
|
|
40
52
|
}
|
|
41
53
|
});
|
|
42
54
|
Object.defineProperty(exports, "Banner", {
|
|
43
55
|
enumerable: true,
|
|
44
56
|
get: function () {
|
|
45
|
-
return
|
|
57
|
+
return _index6.Banner;
|
|
46
58
|
}
|
|
47
59
|
});
|
|
48
60
|
Object.defineProperty(exports, "BottomNavigation", {
|
|
49
61
|
enumerable: true,
|
|
50
62
|
get: function () {
|
|
51
|
-
return
|
|
63
|
+
return _index7.BottomNavigation;
|
|
52
64
|
}
|
|
53
65
|
});
|
|
54
66
|
Object.defineProperty(exports, "BottomSheet", {
|
|
55
67
|
enumerable: true,
|
|
56
68
|
get: function () {
|
|
57
|
-
return
|
|
69
|
+
return _index8.BottomSheet;
|
|
58
70
|
}
|
|
59
71
|
});
|
|
60
72
|
Object.defineProperty(exports, "Box", {
|
|
61
73
|
enumerable: true,
|
|
62
74
|
get: function () {
|
|
63
|
-
return
|
|
75
|
+
return _index1.Box;
|
|
64
76
|
}
|
|
65
77
|
});
|
|
66
78
|
Object.defineProperty(exports, "Button", {
|
|
67
79
|
enumerable: true,
|
|
68
80
|
get: function () {
|
|
69
|
-
return
|
|
81
|
+
return _index9.Button;
|
|
70
82
|
}
|
|
71
83
|
});
|
|
72
84
|
Object.defineProperty(exports, "Card", {
|
|
73
85
|
enumerable: true,
|
|
74
86
|
get: function () {
|
|
75
|
-
return
|
|
87
|
+
return _index13.Card;
|
|
76
88
|
}
|
|
77
89
|
});
|
|
78
90
|
Object.defineProperty(exports, "Carousel", {
|
|
79
91
|
enumerable: true,
|
|
80
92
|
get: function () {
|
|
81
|
-
return
|
|
93
|
+
return _index14.Carousel;
|
|
82
94
|
}
|
|
83
95
|
});
|
|
84
96
|
Object.defineProperty(exports, "Checkbox", {
|
|
85
97
|
enumerable: true,
|
|
86
98
|
get: function () {
|
|
87
|
-
return
|
|
99
|
+
return _index15.Checkbox;
|
|
88
100
|
}
|
|
89
101
|
});
|
|
90
102
|
Object.defineProperty(exports, "Chip", {
|
|
91
103
|
enumerable: true,
|
|
92
104
|
get: function () {
|
|
93
|
-
return
|
|
105
|
+
return _index16.Chip;
|
|
106
|
+
}
|
|
107
|
+
});
|
|
108
|
+
Object.defineProperty(exports, "Confetti", {
|
|
109
|
+
enumerable: true,
|
|
110
|
+
get: function () {
|
|
111
|
+
return _index17.Confetti;
|
|
94
112
|
}
|
|
95
113
|
});
|
|
96
114
|
Object.defineProperty(exports, "DatePicker", {
|
|
97
115
|
enumerable: true,
|
|
98
116
|
get: function () {
|
|
99
|
-
return
|
|
117
|
+
return _index18.DatePicker;
|
|
100
118
|
}
|
|
101
119
|
});
|
|
102
120
|
Object.defineProperty(exports, "DateRangePicker", {
|
|
103
121
|
enumerable: true,
|
|
104
122
|
get: function () {
|
|
105
|
-
return
|
|
123
|
+
return _index19.DateRangePicker;
|
|
106
124
|
}
|
|
107
125
|
});
|
|
108
126
|
Object.defineProperty(exports, "Dialog", {
|
|
109
127
|
enumerable: true,
|
|
110
128
|
get: function () {
|
|
111
|
-
return
|
|
129
|
+
return _index20.Dialog;
|
|
112
130
|
}
|
|
113
131
|
});
|
|
114
132
|
Object.defineProperty(exports, "Divider", {
|
|
115
133
|
enumerable: true,
|
|
116
134
|
get: function () {
|
|
117
|
-
return
|
|
135
|
+
return _index21.Divider;
|
|
118
136
|
}
|
|
119
137
|
});
|
|
120
138
|
Object.defineProperty(exports, "Drawer", {
|
|
121
139
|
enumerable: true,
|
|
122
140
|
get: function () {
|
|
123
|
-
return
|
|
141
|
+
return _index22.Drawer;
|
|
124
142
|
}
|
|
125
143
|
});
|
|
126
144
|
Object.defineProperty(exports, "EmptyState", {
|
|
127
145
|
enumerable: true,
|
|
128
146
|
get: function () {
|
|
129
|
-
return
|
|
147
|
+
return _index23.EmptyState;
|
|
130
148
|
}
|
|
131
149
|
});
|
|
132
150
|
Object.defineProperty(exports, "FloatingActionButton", {
|
|
133
151
|
enumerable: true,
|
|
134
152
|
get: function () {
|
|
135
|
-
return
|
|
153
|
+
return _index25.FloatingActionButton;
|
|
136
154
|
}
|
|
137
155
|
});
|
|
138
156
|
Object.defineProperty(exports, "FloatingActionButtonGroup", {
|
|
139
157
|
enumerable: true,
|
|
140
158
|
get: function () {
|
|
141
|
-
return
|
|
159
|
+
return _index25.FloatingActionButtonGroup;
|
|
142
160
|
}
|
|
143
161
|
});
|
|
144
162
|
Object.defineProperty(exports, "ForceUpdateDialog", {
|
|
145
163
|
enumerable: true,
|
|
146
164
|
get: function () {
|
|
147
|
-
return
|
|
165
|
+
return _index26.ForceUpdateDialog;
|
|
148
166
|
}
|
|
149
167
|
});
|
|
150
168
|
Object.defineProperty(exports, "FormField", {
|
|
151
169
|
enumerable: true,
|
|
152
170
|
get: function () {
|
|
153
|
-
return
|
|
171
|
+
return _index24.FormField;
|
|
172
|
+
}
|
|
173
|
+
});
|
|
174
|
+
Object.defineProperty(exports, "IconButton", {
|
|
175
|
+
enumerable: true,
|
|
176
|
+
get: function () {
|
|
177
|
+
return _index0.IconButton;
|
|
154
178
|
}
|
|
155
179
|
});
|
|
156
180
|
Object.defineProperty(exports, "ImageGallery", {
|
|
157
181
|
enumerable: true,
|
|
158
182
|
get: function () {
|
|
159
|
-
return
|
|
183
|
+
return _index28.ImageGallery;
|
|
160
184
|
}
|
|
161
185
|
});
|
|
162
186
|
Object.defineProperty(exports, "Input", {
|
|
163
187
|
enumerable: true,
|
|
164
188
|
get: function () {
|
|
165
|
-
return
|
|
189
|
+
return _index29.Input;
|
|
166
190
|
}
|
|
167
191
|
});
|
|
168
192
|
Object.defineProperty(exports, "KeyboardAwareScrollView", {
|
|
169
193
|
enumerable: true,
|
|
170
194
|
get: function () {
|
|
171
|
-
return
|
|
195
|
+
return _index11.KeyboardAwareScrollView;
|
|
172
196
|
}
|
|
173
197
|
});
|
|
174
198
|
Object.defineProperty(exports, "KeyboardToolbar", {
|
|
175
199
|
enumerable: true,
|
|
176
200
|
get: function () {
|
|
177
|
-
return
|
|
201
|
+
return _index12.KeyboardToolbar;
|
|
178
202
|
}
|
|
179
203
|
});
|
|
180
204
|
Object.defineProperty(exports, "ListItem", {
|
|
181
205
|
enumerable: true,
|
|
182
206
|
get: function () {
|
|
183
|
-
return
|
|
207
|
+
return _index30.ListItem;
|
|
184
208
|
}
|
|
185
209
|
});
|
|
186
210
|
Object.defineProperty(exports, "Modal", {
|
|
187
211
|
enumerable: true,
|
|
188
212
|
get: function () {
|
|
189
|
-
return
|
|
213
|
+
return _index32.Modal;
|
|
190
214
|
}
|
|
191
215
|
});
|
|
192
216
|
Object.defineProperty(exports, "NumberInput", {
|
|
193
217
|
enumerable: true,
|
|
194
218
|
get: function () {
|
|
195
|
-
return
|
|
219
|
+
return _index33.NumberInput;
|
|
196
220
|
}
|
|
197
221
|
});
|
|
198
222
|
Object.defineProperty(exports, "OTPInput", {
|
|
199
223
|
enumerable: true,
|
|
200
224
|
get: function () {
|
|
201
|
-
return
|
|
225
|
+
return _index34.OTPInput;
|
|
202
226
|
}
|
|
203
227
|
});
|
|
204
228
|
Object.defineProperty(exports, "PickerTrigger", {
|
|
205
229
|
enumerable: true,
|
|
206
230
|
get: function () {
|
|
207
|
-
return
|
|
231
|
+
return _index35.PickerTrigger;
|
|
208
232
|
}
|
|
209
233
|
});
|
|
210
234
|
Object.defineProperty(exports, "ProgressBar", {
|
|
211
235
|
enumerable: true,
|
|
212
236
|
get: function () {
|
|
213
|
-
return
|
|
237
|
+
return _index36.ProgressBar;
|
|
214
238
|
}
|
|
215
239
|
});
|
|
216
240
|
Object.defineProperty(exports, "Radio", {
|
|
217
241
|
enumerable: true,
|
|
218
242
|
get: function () {
|
|
219
|
-
return
|
|
243
|
+
return _index37.Radio;
|
|
220
244
|
}
|
|
221
245
|
});
|
|
222
246
|
Object.defineProperty(exports, "RadioGroup", {
|
|
223
247
|
enumerable: true,
|
|
224
248
|
get: function () {
|
|
225
|
-
return
|
|
249
|
+
return _index37.RadioGroup;
|
|
226
250
|
}
|
|
227
251
|
});
|
|
228
252
|
Object.defineProperty(exports, "Rating", {
|
|
229
253
|
enumerable: true,
|
|
230
254
|
get: function () {
|
|
231
|
-
return
|
|
255
|
+
return _index38.Rating;
|
|
232
256
|
}
|
|
233
257
|
});
|
|
234
258
|
Object.defineProperty(exports, "Row", {
|
|
235
259
|
enumerable: true,
|
|
236
260
|
get: function () {
|
|
237
|
-
return
|
|
261
|
+
return _index1.Row;
|
|
238
262
|
}
|
|
239
263
|
});
|
|
240
264
|
Object.defineProperty(exports, "SearchBar", {
|
|
241
265
|
enumerable: true,
|
|
242
266
|
get: function () {
|
|
243
|
-
return
|
|
267
|
+
return _index39.SearchBar;
|
|
244
268
|
}
|
|
245
269
|
});
|
|
246
270
|
Object.defineProperty(exports, "SegmentedControl", {
|
|
247
271
|
enumerable: true,
|
|
248
272
|
get: function () {
|
|
249
|
-
return
|
|
273
|
+
return _index40.SegmentedControl;
|
|
250
274
|
}
|
|
251
275
|
});
|
|
252
276
|
Object.defineProperty(exports, "Select", {
|
|
253
277
|
enumerable: true,
|
|
254
278
|
get: function () {
|
|
255
|
-
return
|
|
279
|
+
return _index41.Select;
|
|
256
280
|
}
|
|
257
281
|
});
|
|
258
282
|
Object.defineProperty(exports, "Skeleton", {
|
|
259
283
|
enumerable: true,
|
|
260
284
|
get: function () {
|
|
261
|
-
return
|
|
285
|
+
return _index43.Skeleton;
|
|
262
286
|
}
|
|
263
287
|
});
|
|
264
288
|
Object.defineProperty(exports, "SkeletonCircle", {
|
|
265
289
|
enumerable: true,
|
|
266
290
|
get: function () {
|
|
267
|
-
return
|
|
291
|
+
return _index43.SkeletonCircle;
|
|
268
292
|
}
|
|
269
293
|
});
|
|
270
294
|
Object.defineProperty(exports, "SkeletonClockProvider", {
|
|
271
295
|
enumerable: true,
|
|
272
296
|
get: function () {
|
|
273
|
-
return
|
|
297
|
+
return _index43.SkeletonClockProvider;
|
|
274
298
|
}
|
|
275
299
|
});
|
|
276
300
|
Object.defineProperty(exports, "SkeletonContent", {
|
|
277
301
|
enumerable: true,
|
|
278
302
|
get: function () {
|
|
279
|
-
return
|
|
303
|
+
return _index43.SkeletonContent;
|
|
280
304
|
}
|
|
281
305
|
});
|
|
282
306
|
Object.defineProperty(exports, "SkeletonList", {
|
|
283
307
|
enumerable: true,
|
|
284
308
|
get: function () {
|
|
285
|
-
return
|
|
309
|
+
return _index43.SkeletonList;
|
|
286
310
|
}
|
|
287
311
|
});
|
|
288
312
|
Object.defineProperty(exports, "SkeletonProvider", {
|
|
289
313
|
enumerable: true,
|
|
290
314
|
get: function () {
|
|
291
|
-
return
|
|
315
|
+
return _index43.SkeletonProvider;
|
|
292
316
|
}
|
|
293
317
|
});
|
|
294
318
|
Object.defineProperty(exports, "SkeletonSkip", {
|
|
295
319
|
enumerable: true,
|
|
296
320
|
get: function () {
|
|
297
|
-
return
|
|
321
|
+
return _index43.SkeletonSkip;
|
|
298
322
|
}
|
|
299
323
|
});
|
|
300
324
|
Object.defineProperty(exports, "SkeletonText", {
|
|
301
325
|
enumerable: true,
|
|
302
326
|
get: function () {
|
|
303
|
-
return
|
|
327
|
+
return _index43.SkeletonText;
|
|
328
|
+
}
|
|
329
|
+
});
|
|
330
|
+
Object.defineProperty(exports, "SlideToConfirm", {
|
|
331
|
+
enumerable: true,
|
|
332
|
+
get: function () {
|
|
333
|
+
return _index44.SlideToConfirm;
|
|
304
334
|
}
|
|
305
335
|
});
|
|
306
336
|
Object.defineProperty(exports, "Slider", {
|
|
307
337
|
enumerable: true,
|
|
308
338
|
get: function () {
|
|
309
|
-
return
|
|
339
|
+
return _index45.Slider;
|
|
310
340
|
}
|
|
311
341
|
});
|
|
312
342
|
Object.defineProperty(exports, "Spacer", {
|
|
313
343
|
enumerable: true,
|
|
314
344
|
get: function () {
|
|
315
|
-
return
|
|
345
|
+
return _index1.Spacer;
|
|
316
346
|
}
|
|
317
347
|
});
|
|
318
348
|
Object.defineProperty(exports, "Spinner", {
|
|
319
349
|
enumerable: true,
|
|
320
350
|
get: function () {
|
|
321
|
-
return
|
|
351
|
+
return _index31.Spinner;
|
|
322
352
|
}
|
|
323
353
|
});
|
|
324
354
|
Object.defineProperty(exports, "Stack", {
|
|
325
355
|
enumerable: true,
|
|
326
356
|
get: function () {
|
|
327
|
-
return
|
|
357
|
+
return _index1.Stack;
|
|
328
358
|
}
|
|
329
359
|
});
|
|
330
360
|
Object.defineProperty(exports, "Stepper", {
|
|
331
361
|
enumerable: true,
|
|
332
362
|
get: function () {
|
|
333
|
-
return
|
|
363
|
+
return _index42.Stepper;
|
|
334
364
|
}
|
|
335
365
|
});
|
|
336
366
|
Object.defineProperty(exports, "Swipeable", {
|
|
337
367
|
enumerable: true,
|
|
338
368
|
get: function () {
|
|
339
|
-
return
|
|
369
|
+
return _index46.Swipeable;
|
|
340
370
|
}
|
|
341
371
|
});
|
|
342
372
|
Object.defineProperty(exports, "Switch", {
|
|
343
373
|
enumerable: true,
|
|
344
374
|
get: function () {
|
|
345
|
-
return
|
|
375
|
+
return _index47.Switch;
|
|
346
376
|
}
|
|
347
377
|
});
|
|
348
378
|
Object.defineProperty(exports, "Tabs", {
|
|
349
379
|
enumerable: true,
|
|
350
380
|
get: function () {
|
|
351
|
-
return
|
|
381
|
+
return _index48.Tabs;
|
|
352
382
|
}
|
|
353
383
|
});
|
|
354
384
|
Object.defineProperty(exports, "Text", {
|
|
355
385
|
enumerable: true,
|
|
356
386
|
get: function () {
|
|
357
|
-
return
|
|
387
|
+
return _index10.Text;
|
|
358
388
|
}
|
|
359
389
|
});
|
|
360
390
|
Object.defineProperty(exports, "TimePicker", {
|
|
361
391
|
enumerable: true,
|
|
362
392
|
get: function () {
|
|
363
|
-
return
|
|
393
|
+
return _index49.TimePicker;
|
|
364
394
|
}
|
|
365
395
|
});
|
|
366
396
|
Object.defineProperty(exports, "Toast", {
|
|
367
397
|
enumerable: true,
|
|
368
398
|
get: function () {
|
|
369
|
-
return
|
|
399
|
+
return _index50.Toast;
|
|
370
400
|
}
|
|
371
401
|
});
|
|
372
402
|
Object.defineProperty(exports, "ToastProvider", {
|
|
373
403
|
enumerable: true,
|
|
374
404
|
get: function () {
|
|
375
|
-
return
|
|
405
|
+
return _index50.ToastProvider;
|
|
376
406
|
}
|
|
377
407
|
});
|
|
378
408
|
Object.defineProperty(exports, "Tooltip", {
|
|
379
409
|
enumerable: true,
|
|
380
410
|
get: function () {
|
|
381
|
-
return
|
|
411
|
+
return _index51.Tooltip;
|
|
382
412
|
}
|
|
383
413
|
});
|
|
384
414
|
Object.defineProperty(exports, "toast", {
|
|
385
415
|
enumerable: true,
|
|
386
416
|
get: function () {
|
|
387
|
-
return
|
|
417
|
+
return _index50.toast;
|
|
388
418
|
}
|
|
389
419
|
});
|
|
390
420
|
Object.defineProperty(exports, "useBottomSheet", {
|
|
391
421
|
enumerable: true,
|
|
392
422
|
get: function () {
|
|
393
|
-
return
|
|
423
|
+
return _index8.useBottomSheet;
|
|
394
424
|
}
|
|
395
425
|
});
|
|
396
426
|
Object.defineProperty(exports, "useReduceMotion", {
|
|
397
427
|
enumerable: true,
|
|
398
428
|
get: function () {
|
|
399
|
-
return
|
|
429
|
+
return _index43.useReduceMotion;
|
|
400
430
|
}
|
|
401
431
|
});
|
|
402
432
|
Object.defineProperty(exports, "useSkeletonClock", {
|
|
403
433
|
enumerable: true,
|
|
404
434
|
get: function () {
|
|
405
|
-
return
|
|
435
|
+
return _index43.useSkeletonClock;
|
|
406
436
|
}
|
|
407
437
|
});
|
|
408
438
|
Object.defineProperty(exports, "useSkeletonDefaults", {
|
|
409
439
|
enumerable: true,
|
|
410
440
|
get: function () {
|
|
411
|
-
return
|
|
441
|
+
return _index43.useSkeletonDefaults;
|
|
412
442
|
}
|
|
413
443
|
});
|
|
414
444
|
Object.defineProperty(exports, "useToast", {
|
|
415
445
|
enumerable: true,
|
|
416
446
|
get: function () {
|
|
417
|
-
return
|
|
447
|
+
return _index50.useToast;
|
|
418
448
|
}
|
|
419
449
|
});
|
|
420
450
|
var _index = require("./Accordion/index.js");
|
|
421
|
-
var _index2 = require("./
|
|
422
|
-
var _index3 = require("./
|
|
423
|
-
var _index4 = require("./
|
|
424
|
-
var _index5 = require("./
|
|
425
|
-
var _index6 = require("./
|
|
426
|
-
var _index7 = require("./
|
|
427
|
-
var _index8 = require("./
|
|
428
|
-
var _index9 = require("./
|
|
429
|
-
var _index0 = require("./
|
|
430
|
-
var _index1 = require("./
|
|
431
|
-
var _index10 = require("./
|
|
432
|
-
var _index11 = require("./
|
|
433
|
-
var _index12 = require("./
|
|
434
|
-
var _index13 = require("./
|
|
435
|
-
var _index14 = require("./
|
|
436
|
-
var _index15 = require("./
|
|
437
|
-
var _index16 = require("./
|
|
438
|
-
var _index17 = require("./
|
|
439
|
-
var _index18 = require("./
|
|
440
|
-
var _index19 = require("./
|
|
441
|
-
var _index20 = require("./
|
|
442
|
-
var _index21 = require("./
|
|
443
|
-
var _index22 = require("./
|
|
444
|
-
var _index23 = require("./
|
|
445
|
-
var _index24 = require("./
|
|
446
|
-
var _index25 = require("./
|
|
447
|
-
var _index26 = require("./
|
|
448
|
-
var _index27 = require("./
|
|
449
|
-
var _index28 = require("./
|
|
450
|
-
var _index29 = require("./
|
|
451
|
-
var _index30 = require("./
|
|
452
|
-
var _index31 = require("./
|
|
453
|
-
var _index32 = require("./
|
|
454
|
-
var _index33 = require("./
|
|
455
|
-
var _index34 = require("./
|
|
456
|
-
var _index35 = require("./
|
|
457
|
-
var _index36 = require("./
|
|
458
|
-
var _index37 = require("./
|
|
459
|
-
var _index38 = require("./
|
|
460
|
-
var _index39 = require("./
|
|
461
|
-
var _index40 = require("./
|
|
462
|
-
var _index41 = require("./
|
|
463
|
-
var _index42 = require("./
|
|
464
|
-
var _index43 = require("./
|
|
465
|
-
var _index44 = require("./
|
|
466
|
-
var _index45 = require("./
|
|
467
|
-
var _index46 = require("./
|
|
451
|
+
var _index2 = require("./AnimatePresence/index.js");
|
|
452
|
+
var _index3 = require("./Autocomplete/index.js");
|
|
453
|
+
var _index4 = require("./Avatar/index.js");
|
|
454
|
+
var _index5 = require("./Badge/index.js");
|
|
455
|
+
var _index6 = require("./Banner/index.js");
|
|
456
|
+
var _index7 = require("./BottomNavigation/index.js");
|
|
457
|
+
var _index8 = require("./BottomSheet/index.js");
|
|
458
|
+
var _index9 = require("./Button/index.js");
|
|
459
|
+
var _index0 = require("./IconButton/index.js");
|
|
460
|
+
var _index1 = require("./Box/index.js");
|
|
461
|
+
var _index10 = require("./Text/index.js");
|
|
462
|
+
var _index11 = require("./KeyboardAwareScrollView/index.js");
|
|
463
|
+
var _index12 = require("./KeyboardToolbar/index.js");
|
|
464
|
+
var _index13 = require("./Card/index.js");
|
|
465
|
+
var _index14 = require("./Carousel/index.js");
|
|
466
|
+
var _index15 = require("./Checkbox/index.js");
|
|
467
|
+
var _index16 = require("./Chip/index.js");
|
|
468
|
+
var _index17 = require("./Confetti/index.js");
|
|
469
|
+
var _index18 = require("./DatePicker/index.js");
|
|
470
|
+
var _index19 = require("./DateRangePicker/index.js");
|
|
471
|
+
var _index20 = require("./Dialog/index.js");
|
|
472
|
+
var _index21 = require("./Divider/index.js");
|
|
473
|
+
var _index22 = require("./Drawer/index.js");
|
|
474
|
+
var _index23 = require("./EmptyState/index.js");
|
|
475
|
+
var _index24 = require("./FormField/index.js");
|
|
476
|
+
var _index25 = require("./FloatingActionButton/index.js");
|
|
477
|
+
var _index26 = require("./ForceUpdateDialog/index.js");
|
|
478
|
+
var _index27 = require("./AppBar/index.js");
|
|
479
|
+
var _index28 = require("./ImageGallery/index.js");
|
|
480
|
+
var _index29 = require("./Input/index.js");
|
|
481
|
+
var _index30 = require("./ListItem/index.js");
|
|
482
|
+
var _index31 = require("./Spinner/index.js");
|
|
483
|
+
var _index32 = require("./Modal/index.js");
|
|
484
|
+
var _index33 = require("./NumberInput/index.js");
|
|
485
|
+
var _index34 = require("./OTPInput/index.js");
|
|
486
|
+
var _index35 = require("./PickerTrigger/index.js");
|
|
487
|
+
var _index36 = require("./ProgressBar/index.js");
|
|
488
|
+
var _index37 = require("./Radio/index.js");
|
|
489
|
+
var _index38 = require("./Rating/index.js");
|
|
490
|
+
var _index39 = require("./SearchBar/index.js");
|
|
491
|
+
var _index40 = require("./SegmentedControl/index.js");
|
|
492
|
+
var _index41 = require("./Select/index.js");
|
|
493
|
+
var _index42 = require("./Stepper/index.js");
|
|
494
|
+
var _index43 = require("./Skeleton/index.js");
|
|
495
|
+
var _index44 = require("./SlideToConfirm/index.js");
|
|
496
|
+
var _index45 = require("./Slider/index.js");
|
|
497
|
+
var _index46 = require("./Swipeable/index.js");
|
|
498
|
+
var _index47 = require("./Switch/index.js");
|
|
499
|
+
var _index48 = require("./Tabs/index.js");
|
|
500
|
+
var _index49 = require("./TimePicker/index.js");
|
|
501
|
+
var _index50 = require("./Toast/index.js");
|
|
502
|
+
var _index51 = require("./Tooltip/index.js");
|
|
468
503
|
//# sourceMappingURL=index.js.map
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.triggerHaptic = exports.setHapticImplementation = void 0;
|
|
6
|
+
exports.triggerHaptic = exports.setHapticImplementation = exports.resolveHaptic = void 0;
|
|
7
7
|
var _reactNative = require("react-native");
|
|
8
8
|
let hapticImpl = null;
|
|
9
9
|
const tryLoadOptional = () => {
|
|
@@ -53,5 +53,15 @@ exports.triggerHaptic = triggerHaptic;
|
|
|
53
53
|
const setHapticImplementation = impl => {
|
|
54
54
|
hapticImpl = impl;
|
|
55
55
|
};
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Resolves a component's `haptic` prop to the type that should fire, or null
|
|
59
|
+
* when haptics are off. `false` disables; a `HapticType` overrides; `undefined`
|
|
60
|
+
* falls back to the component's sensible default. Pair with `triggerHaptic`:
|
|
61
|
+
* const h = resolveHaptic(haptic, 'selection');
|
|
62
|
+
* if (h) triggerHaptic(h);
|
|
63
|
+
*/
|
|
56
64
|
exports.setHapticImplementation = setHapticImplementation;
|
|
65
|
+
const resolveHaptic = (haptic, fallbackType) => haptic === false ? null : haptic ?? fallbackType;
|
|
66
|
+
exports.resolveHaptic = resolveHaptic;
|
|
57
67
|
//# sourceMappingURL=hapticUtils.js.map
|
|
@@ -57,6 +57,12 @@ Object.defineProperty(exports, "isTablet", {
|
|
|
57
57
|
return _responsive.isTablet;
|
|
58
58
|
}
|
|
59
59
|
});
|
|
60
|
+
Object.defineProperty(exports, "resolveHaptic", {
|
|
61
|
+
enumerable: true,
|
|
62
|
+
get: function () {
|
|
63
|
+
return _hapticUtils.resolveHaptic;
|
|
64
|
+
}
|
|
65
|
+
});
|
|
60
66
|
Object.defineProperty(exports, "setHapticImplementation", {
|
|
61
67
|
enumerable: true,
|
|
62
68
|
get: function () {
|