@designbasekorea/figma-ui 0.1.83 → 0.1.87
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/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.css +1 -1
- package/dist/index.esm.css.map +1 -1
- package/dist/index.esm.js +2 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -113,7 +113,7 @@ const FigmaHeader = ({ children, actions = [], searchBar, sticky = true, classNa
|
|
|
113
113
|
};
|
|
114
114
|
FigmaHeader.displayName = 'FigmaHeader';
|
|
115
115
|
|
|
116
|
-
const FigmaSection = ({ title, dataCategory, iconButton, children, marginBottom, isEnabled = true, onToggle, className, enableScrollNavigation = false, headerHeight = 94, onActiveSectionChange, t, collapsible = false, defaultCollapsed = false, onCollapseChange, badge, }) => {
|
|
116
|
+
const FigmaSection = ({ title, dataCategory, iconButton, children, marginBottom, isEnabled = true, onToggle, className, enableScrollNavigation = false, headerHeight = 94, onActiveSectionChange, t, collapsible = false, defaultCollapsed = false, onCollapseChange, badge, overflowVisible = false, }) => {
|
|
117
117
|
const sectionRef = React.useRef(null);
|
|
118
118
|
const clipRef = React.useRef(null);
|
|
119
119
|
const innerRef = React.useRef(null);
|
|
@@ -125,6 +125,7 @@ const FigmaSection = ({ title, dataCategory, iconButton, children, marginBottom,
|
|
|
125
125
|
!isEnabled && 'designbase-figma-section--disabled',
|
|
126
126
|
collapsible && 'designbase-figma-section--collapsible',
|
|
127
127
|
collapsed && collapsible && 'designbase-figma-section--collapsed',
|
|
128
|
+
overflowVisible && 'designbase-figma-section--overflow-visible',
|
|
128
129
|
className,
|
|
129
130
|
].filter(Boolean).join(' ');
|
|
130
131
|
const toggle = () => {
|