@razorpay/blade 11.30.3 → 11.30.5
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/build/lib/web/development/components/Carousel/Carousel.web.js +12 -2
- package/build/lib/web/development/components/Carousel/Carousel.web.js.map +1 -1
- package/build/lib/web/development/components/Table/TableBody.web.js +10 -6
- package/build/lib/web/development/components/Table/TableBody.web.js.map +1 -1
- package/build/lib/web/development/components/Table/TableEditableCell.web.js +6 -6
- package/build/lib/web/development/components/Table/TableEditableCell.web.js.map +1 -1
- package/build/lib/web/production/components/Carousel/Carousel.web.js +12 -2
- package/build/lib/web/production/components/Carousel/Carousel.web.js.map +1 -1
- package/build/lib/web/production/components/Table/TableBody.web.js +10 -6
- package/build/lib/web/production/components/Table/TableBody.web.js.map +1 -1
- package/build/lib/web/production/components/Table/TableEditableCell.web.js +6 -6
- package/build/lib/web/production/components/Table/TableEditableCell.web.js.map +1 -1
- package/build/types/components/index.d.ts +3 -2
- package/build/types/components/index.native.d.ts +2 -1
- package/package.json +1 -1
|
@@ -5153,9 +5153,10 @@ type CarouselProps = {
|
|
|
5153
5153
|
* @default undefined
|
|
5154
5154
|
*/
|
|
5155
5155
|
accessibilityLabel?: string;
|
|
5156
|
-
|
|
5156
|
+
height?: BoxProps['height'];
|
|
5157
|
+
} & StyledPropsBlade;
|
|
5157
5158
|
|
|
5158
|
-
declare const Carousel: ({ autoPlay, visibleItems, showIndicators, navigationButtonPosition, children, shouldAddStartEndSpacing, carouselItemWidth, scrollOverlayColor, accessibilityLabel, onChange, indicatorVariant, navigationButtonVariant, carouselItemAlignment, }: CarouselProps) => React__default.ReactElement;
|
|
5159
|
+
declare const Carousel: ({ autoPlay, visibleItems, showIndicators, navigationButtonPosition, children, shouldAddStartEndSpacing, carouselItemWidth, scrollOverlayColor, accessibilityLabel, onChange, indicatorVariant, navigationButtonVariant, carouselItemAlignment, height, ...props }: CarouselProps) => React__default.ReactElement;
|
|
5159
5160
|
|
|
5160
5161
|
type CarouselItemProps = {
|
|
5161
5162
|
id?: string;
|
|
@@ -4289,7 +4289,8 @@ type CarouselProps = {
|
|
|
4289
4289
|
* @default undefined
|
|
4290
4290
|
*/
|
|
4291
4291
|
accessibilityLabel?: string;
|
|
4292
|
-
|
|
4292
|
+
height?: BoxProps['height'];
|
|
4293
|
+
} & StyledPropsBlade;
|
|
4293
4294
|
|
|
4294
4295
|
declare const Carousel: ({ autoPlay, showIndicators, children, carouselItemWidth, accessibilityLabel, onChange, indicatorVariant, navigationButtonVariant, }: CarouselProps) => React__default.ReactElement;
|
|
4295
4296
|
|