oddsgate-ds 1.0.95 → 1.0.97
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/components/organisms/Tabs/Tabs.interface.d.ts +1 -0
- package/dist/esm/index.js +5 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/organisms/Tabs/Tabs.interface.d.ts +1 -0
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
- package/src/components/atoms/FormField/FormField.theme.tsx +9 -0
- package/src/components/molecules/ProductCard/ProductCard.component.tsx +1 -1
- package/src/components/organisms/Tabs/Tabs.component.tsx +1 -2
- package/src/components/organisms/Tabs/Tabs.interface.ts +1 -0
- package/src/components/organisms/Tabs/Tabs.theme.ts +1 -1
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -103,4 +103,13 @@ export const StyledFieldContainer = styled.div<IFormField>`
|
|
|
103
103
|
gap: 1rem;
|
|
104
104
|
}
|
|
105
105
|
`}
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
::placeholder {
|
|
109
|
+
color: rbga(${colors.third10}, 0.2);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
::-ms-input-placeholder { /* Edge 12 -18 */
|
|
113
|
+
color: rbga(${colors.third10}, 0.2);
|
|
114
|
+
}
|
|
106
115
|
`
|
|
@@ -44,7 +44,7 @@ const ProductCard = ({
|
|
|
44
44
|
{secondRowTitle}
|
|
45
45
|
</Heading>
|
|
46
46
|
</StyledProductCardWrapper>
|
|
47
|
-
{description && <RichText tag='p' className='color-secondary50 mt-
|
|
47
|
+
{description && <RichText tag='p' className='color-secondary50 mt-6'>{description}</RichText>}
|
|
48
48
|
</StyledProductCard>
|
|
49
49
|
)
|
|
50
50
|
}
|
|
@@ -29,7 +29,6 @@ const Tabs = ({ id, title, menu, vertical, className, style }: ITabs) => {
|
|
|
29
29
|
heights.push(child?.offsetHeight as number)
|
|
30
30
|
})
|
|
31
31
|
tabsContent.current.style.height = `${Math.max(...heights)}px`;
|
|
32
|
-
window.dispatchEvent(new Event('resize'));
|
|
33
32
|
}, 250)
|
|
34
33
|
|
|
35
34
|
useEffect(()=>{
|
|
@@ -43,7 +42,7 @@ const Tabs = ({ id, title, menu, vertical, className, style }: ITabs) => {
|
|
|
43
42
|
|
|
44
43
|
|
|
45
44
|
return (
|
|
46
|
-
<StyledTabs id={id} vertical={vertical} className={className} style={style}>
|
|
45
|
+
<StyledTabs id={id} $vertical={vertical} className={className} style={style}>
|
|
47
46
|
<div>
|
|
48
47
|
{title && <Heading tag="h3" size="h1" className='text-uppercase mb-4'>{title}</Heading>}
|
|
49
48
|
<StyledTabsMenu align='left'>
|