@shoplflow/base 0.23.1 → 0.23.2

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.d.cts CHANGED
@@ -327,10 +327,14 @@ interface StackOptionProps {
327
327
  * width 설정
328
328
  */
329
329
  width?: CSSProperties['width'];
330
+ maxWidth?: CSSProperties['maxWidth'];
331
+ minWidth?: CSSProperties['minWidth'];
330
332
  /**
331
333
  * height 설정
332
334
  */
333
335
  height?: CSSProperties['height'];
336
+ maxHeight?: CSSProperties['maxHeight'];
337
+ minHeight?: CSSProperties['minHeight'];
334
338
  /**
335
339
  * flex 설정
336
340
  */
package/dist/index.d.ts CHANGED
@@ -327,10 +327,14 @@ interface StackOptionProps {
327
327
  * width 설정
328
328
  */
329
329
  width?: CSSProperties['width'];
330
+ maxWidth?: CSSProperties['maxWidth'];
331
+ minWidth?: CSSProperties['minWidth'];
330
332
  /**
331
333
  * height 설정
332
334
  */
333
335
  height?: CSSProperties['height'];
336
+ maxHeight?: CSSProperties['maxHeight'];
337
+ minHeight?: CSSProperties['minHeight'];
334
338
  /**
335
339
  * flex 설정
336
340
  */
package/dist/index.js CHANGED
@@ -563,7 +563,11 @@ var AvatarSizeVariants = {
563
563
  var StyledStack = styled6.div`
564
564
  display: flex;
565
565
  width: ${({ width }) => width};
566
+ max-width: ${({ maxWidth }) => maxWidth};
567
+ min-width: ${({ minWidth }) => minWidth};
566
568
  height: ${({ height }) => height};
569
+ max-height: ${({ maxHeight }) => maxHeight};
570
+ min-height: ${({ minHeight }) => minHeight};
567
571
  flex-direction: ${({ direction }) => direction};
568
572
  align-items: ${({ align }) => align};
569
573
  justify-content: ${({ justify }) => justify};