oddsgate-ds 1.0.65 → 1.0.66
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/cjs/index.js +5 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/index.d.ts +1 -0
- package/dist/types.d.ts +3 -1
- package/package.json +1 -1
- package/src/index.ts +1 -0
|
@@ -45,4 +45,5 @@ export { default as CircularSlider } from './components/organisms/CircularSlider
|
|
|
45
45
|
export { iconsList } from './helpers/getIcons';
|
|
46
46
|
export { default as GlobalStyles } from './styles/Global';
|
|
47
47
|
export { default as clickOutSideToClose } from './helpers/clickOutsideToClose';
|
|
48
|
+
export { default as isTouchDevice } from './helpers/isTouchDevice';
|
|
48
49
|
export { variables };
|
package/dist/types.d.ts
CHANGED
|
@@ -619,4 +619,6 @@ declare const GlobalStyles: React$1.NamedExoticComponent<styled_components.Execu
|
|
|
619
619
|
|
|
620
620
|
declare function clickOutSideToClose(ref: React.RefObject<HTMLDivElement>, closeFunction: () => void): void;
|
|
621
621
|
|
|
622
|
-
|
|
622
|
+
declare const isTouchDevice: () => boolean;
|
|
623
|
+
|
|
624
|
+
export { Accordion, AccordionItem, BlogCard, Button, CheckRadioField, Chip, CircularSlider, CloseButton, Column, Counter, Cover, Dropdown, DropdownItem, EmptyState, EventsCard, Flex, FormField, GlobalStyles, Heading, Icon, IconBox, IconTitle, ImageWrapper, Loader, LogosCard, Marquee, Modal, NewsCard, OffCanvas, PortalComponent, ProductCard, Quote, RichText, Row, ScrollingNav, Separator, ShareModal, Slider, SocialLinks, Spacer, Tabs, TeamCard, Video, VideoEmbed, clickOutSideToClose, iconsList, isTouchDevice, variables };
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -55,6 +55,7 @@ export { iconsList } from './helpers/getIcons'
|
|
|
55
55
|
export { default as GlobalStyles } from './styles/Global'
|
|
56
56
|
|
|
57
57
|
export { default as clickOutSideToClose } from './helpers/clickOutsideToClose'
|
|
58
|
+
export { default as isTouchDevice } from './helpers/isTouchDevice'
|
|
58
59
|
|
|
59
60
|
export { variables };
|
|
60
61
|
|