@hh.ru/magritte-ui-drop 7.2.8 → 7.2.9
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/Drop.js
CHANGED
|
@@ -5,7 +5,7 @@ import classnames from 'classnames';
|
|
|
5
5
|
import { DropBase } from '@hh.ru/magritte-internal-drop-base';
|
|
6
6
|
import { InternalLayerName } from '@hh.ru/magritte-internal-layer-name';
|
|
7
7
|
import { useBreakpoint } from '@hh.ru/magritte-ui-breakpoint';
|
|
8
|
-
import { s as styles, D as DropContainer } from './DropContainer-
|
|
8
|
+
import { s as styles, D as DropContainer } from './DropContainer-C7vLKj5c.js';
|
|
9
9
|
import { PureChildren } from './PureChildren.js';
|
|
10
10
|
import { Layer } from '@hh.ru/magritte-ui-layer';
|
|
11
11
|
import '@hh.ru/magritte-common-use-multiple-refs';
|
|
@@ -4,7 +4,7 @@ import { forwardRef, useRef, useCallback, useEffect } from 'react';
|
|
|
4
4
|
import { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';
|
|
5
5
|
import { Divider } from '@hh.ru/magritte-ui-divider';
|
|
6
6
|
|
|
7
|
-
var styles = {"drop":"magritte-drop___Z10P4_7-2-
|
|
7
|
+
var styles = {"drop":"magritte-drop___Z10P4_7-2-9","drop-container":"magritte-drop-container___dbMt9_7-2-9","dropContainer":"magritte-drop-container___dbMt9_7-2-9","divider-container":"magritte-divider-container___ZCdDW_7-2-9","dividerContainer":"magritte-divider-container___ZCdDW_7-2-9","drop-footer":"magritte-drop-footer___v8ZEO_7-2-9","dropFooter":"magritte-drop-footer___v8ZEO_7-2-9","drop-space-300":"magritte-drop-space-300___41acH_7-2-9","dropSpace300":"magritte-drop-space-300___41acH_7-2-9","drop-space-400":"magritte-drop-space-400___XX1RM_7-2-9","dropSpace400":"magritte-drop-space-400___XX1RM_7-2-9","drop-padding":"magritte-drop-padding___xBiJO_7-2-9","dropPadding":"magritte-drop-padding___xBiJO_7-2-9","drop-space-600":"magritte-drop-space-600___6B1i0_7-2-9","dropSpace600":"magritte-drop-space-600___6B1i0_7-2-9","drop-with-footer":"magritte-drop-with-footer___CgBIV_7-2-9","dropWithFooter":"magritte-drop-with-footer___CgBIV_7-2-9","drop-enter":"magritte-drop-enter___4vEuH_7-2-9","dropEnter":"magritte-drop-enter___4vEuH_7-2-9","drop-exit":"magritte-drop-exit___brFjz_7-2-9","dropExit":"magritte-drop-exit___brFjz_7-2-9","drop-enter-active":"magritte-drop-enter-active___SQUog_7-2-9","dropEnterActive":"magritte-drop-enter-active___SQUog_7-2-9","drop-exit-active":"magritte-drop-exit-active___GB0ET_7-2-9","dropExitActive":"magritte-drop-exit-active___GB0ET_7-2-9","drop-animation-timeout":"magritte-drop-animation-timeout___uO7LF_7-2-9","dropAnimationTimeout":"magritte-drop-animation-timeout___uO7LF_7-2-9"};
|
|
8
8
|
|
|
9
9
|
const DropContainer = forwardRef(({ children, dividerState }, ref) => {
|
|
10
10
|
const dividerRef = useRef(null);
|
|
@@ -55,4 +55,4 @@ const DropContainer = forwardRef(({ children, dividerState }, ref) => {
|
|
|
55
55
|
DropContainer.displayName = 'DropContainer';
|
|
56
56
|
|
|
57
57
|
export { DropContainer as D, styles as s };
|
|
58
|
-
//# sourceMappingURL=DropContainer-
|
|
58
|
+
//# sourceMappingURL=DropContainer-C7vLKj5c.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropContainer-
|
|
1
|
+
{"version":3,"file":"DropContainer-C7vLKj5c.js","sources":["../src/DropContainer.tsx"],"sourcesContent":["import { useRef, type PropsWithChildren, useEffect, useCallback, forwardRef } from 'react';\n\nimport { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';\nimport { Divider } from '@hh.ru/magritte-ui-divider';\nimport type { DividerState } from '@hh.ru/magritte-ui-drop/types';\n\nimport styles from './drop.less';\n\nexport const DropContainer = forwardRef<\n HTMLDivElement,\n PropsWithChildren<{\n dividerState: DividerState;\n }>\n>(({ children, dividerState }, ref) => {\n const dividerRef = useRef<HTMLDivElement>(null);\n const showDividerRef = useRef(false);\n showDividerRef.current = dividerState !== 'hide';\n const contentContainerRef = useRef<HTMLDivElement>(null);\n const contentContainerRefMulti = useMultipleRefs(contentContainerRef, ref);\n\n const updateDividerVisibility = useCallback(\n (showDivider: boolean) => {\n if (!contentContainerRef.current || !dividerRef.current) {\n return;\n }\n if (!showDivider) {\n dividerRef.current.style.visibility = 'hidden';\n return;\n }\n if (contentContainerRef?.current !== null && dividerRef.current) {\n const hasScroll =\n contentContainerRef.current.scrollHeight - contentContainerRef.current.clientHeight > 0;\n dividerRef.current.style.visibility = hasScroll ? 'visible' : 'hidden';\n }\n },\n [contentContainerRef, dividerRef]\n );\n\n useEffect(() => {\n const observer = new ResizeObserver(() => {\n updateDividerVisibility(showDividerRef.current);\n });\n observer.observe(contentContainerRef.current as Element);\n return () => observer.disconnect();\n }, [updateDividerVisibility]);\n\n useEffect(() => {\n updateDividerVisibility(showDividerRef.current);\n // eslint-disable-next-line disable-autofix/react-hooks/exhaustive-deps\n }, [updateDividerVisibility, showDividerRef.current]);\n\n const props = showDividerRef.current\n ? {\n onScroll: ({ target }: { target: EventTarget }) => {\n const scrollableContainer = target as HTMLDivElement;\n\n if (dividerRef.current && dividerState !== 'showWhenFullyScrolled') {\n const scrollEnded =\n scrollableContainer.scrollTop +\n scrollableContainer.offsetHeight -\n scrollableContainer.scrollHeight ===\n 0;\n\n dividerRef.current.style.visibility = scrollEnded ? 'hidden' : 'visible';\n }\n },\n }\n : {};\n\n return (\n <>\n <div ref={contentContainerRefMulti} className={styles.dropContainer} {...props}>\n {children}\n </div>\n <div ref={dividerRef} className={styles.dividerContainer} data-qa=\"drop-divider\">\n <Divider />\n </div>\n </>\n );\n});\n\nDropContainer.displayName = 'DropContainer';\n"],"names":["_jsxs","_Fragment","_jsx"],"mappings":"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"}
|
package/DropContainer.js
CHANGED
|
@@ -3,5 +3,5 @@ import 'react/jsx-runtime';
|
|
|
3
3
|
import 'react';
|
|
4
4
|
import '@hh.ru/magritte-common-use-multiple-refs';
|
|
5
5
|
import '@hh.ru/magritte-ui-divider';
|
|
6
|
-
export { D as DropContainer } from './DropContainer-
|
|
6
|
+
export { D as DropContainer } from './DropContainer-C7vLKj5c.js';
|
|
7
7
|
//# sourceMappingURL=DropContainer.js.map
|
package/index.css
CHANGED
|
@@ -553,7 +553,7 @@
|
|
|
553
553
|
--magritte-typography-_custom-5-italic-text-transform-v20-1-0:none;
|
|
554
554
|
--magritte-typography-_custom-5-italic-text-decoration-v20-1-0:none;
|
|
555
555
|
}
|
|
556
|
-
.magritte-drop___Z10P4_7-2-
|
|
556
|
+
.magritte-drop___Z10P4_7-2-9{
|
|
557
557
|
position:relative;
|
|
558
558
|
display:flex;
|
|
559
559
|
flex-direction:column;
|
|
@@ -564,97 +564,97 @@
|
|
|
564
564
|
height:100%;
|
|
565
565
|
overflow:hidden;
|
|
566
566
|
}
|
|
567
|
-
.magritte-drop-container___dbMt9_7-2-
|
|
567
|
+
.magritte-drop-container___dbMt9_7-2-9{
|
|
568
568
|
display:block;
|
|
569
569
|
overflow:auto;
|
|
570
570
|
}
|
|
571
|
-
.magritte-divider-container___ZCdDW_7-2-
|
|
571
|
+
.magritte-divider-container___ZCdDW_7-2-9{
|
|
572
572
|
visibility:hidden;
|
|
573
573
|
}
|
|
574
|
-
.magritte-drop-footer___v8ZEO_7-2-
|
|
574
|
+
.magritte-drop-footer___v8ZEO_7-2-9{
|
|
575
575
|
display:flex;
|
|
576
576
|
flex-flow:column;
|
|
577
577
|
gap:12px;
|
|
578
578
|
}
|
|
579
|
-
.magritte-drop-space-300___41acH_7-2-
|
|
580
|
-
.magritte-drop-space-300___41acH_7-2-
|
|
579
|
+
.magritte-drop-space-300___41acH_7-2-9 .magritte-drop-container___dbMt9_7-2-9,
|
|
580
|
+
.magritte-drop-space-300___41acH_7-2-9 .magritte-drop-footer___v8ZEO_7-2-9{
|
|
581
581
|
padding:var(--magritte-static-space-300-v20-1-0);
|
|
582
582
|
}
|
|
583
|
-
.magritte-drop-space-400___XX1RM_7-2-
|
|
584
|
-
.magritte-drop-space-400___XX1RM_7-2-
|
|
585
|
-
.magritte-drop-space-400___XX1RM_7-2-
|
|
583
|
+
.magritte-drop-space-400___XX1RM_7-2-9 .magritte-drop-padding___xBiJO_7-2-9,
|
|
584
|
+
.magritte-drop-space-400___XX1RM_7-2-9 .magritte-drop-container___dbMt9_7-2-9,
|
|
585
|
+
.magritte-drop-space-400___XX1RM_7-2-9 .magritte-drop-footer___v8ZEO_7-2-9{
|
|
586
586
|
padding:var(--magritte-static-space-400-v20-1-0);
|
|
587
587
|
}
|
|
588
|
-
.magritte-drop-space-600___6B1i0_7-2-
|
|
589
|
-
.magritte-drop-space-600___6B1i0_7-2-
|
|
590
|
-
.magritte-drop-space-600___6B1i0_7-2-
|
|
588
|
+
.magritte-drop-space-600___6B1i0_7-2-9 .magritte-drop-padding___xBiJO_7-2-9,
|
|
589
|
+
.magritte-drop-space-600___6B1i0_7-2-9 .magritte-drop-container___dbMt9_7-2-9,
|
|
590
|
+
.magritte-drop-space-600___6B1i0_7-2-9 .magritte-drop-footer___v8ZEO_7-2-9{
|
|
591
591
|
padding:var(--magritte-static-space-600-v20-1-0);
|
|
592
592
|
}
|
|
593
|
-
.magritte-drop-with-footer___CgBIV_7-2-
|
|
593
|
+
.magritte-drop-with-footer___CgBIV_7-2-9 .magritte-drop-container___dbMt9_7-2-9{
|
|
594
594
|
padding-bottom:0;
|
|
595
595
|
}
|
|
596
596
|
@media (prefers-reduced-motion: no-preference){
|
|
597
|
-
.magritte-drop-enter___4vEuH_7-2-
|
|
597
|
+
.magritte-drop-enter___4vEuH_7-2-9 .magritte-drop___Z10P4_7-2-9{
|
|
598
598
|
opacity:0;
|
|
599
599
|
}
|
|
600
|
-
.magritte-drop-exit___brFjz_7-2-
|
|
601
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
600
|
+
.magritte-drop-exit___brFjz_7-2-9 .magritte-drop___Z10P4_7-2-9,
|
|
601
|
+
.magritte-drop-enter-active___SQUog_7-2-9 .magritte-drop___Z10P4_7-2-9{
|
|
602
602
|
opacity:1;
|
|
603
603
|
}
|
|
604
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
604
|
+
.magritte-drop-exit-active___GB0ET_7-2-9 .magritte-drop___Z10P4_7-2-9{
|
|
605
605
|
opacity:0;
|
|
606
606
|
}
|
|
607
|
-
.magritte-drop-animation-timeout___uO7LF_7-2-
|
|
608
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
607
|
+
.magritte-drop-animation-timeout___uO7LF_7-2-9,
|
|
608
|
+
.magritte-drop-enter-active___SQUog_7-2-9 .magritte-drop___Z10P4_7-2-9{
|
|
609
609
|
transition-property:opacity, transform;
|
|
610
610
|
transition-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-v20-1-0);
|
|
611
611
|
transition-timing-function:var(--magritte-semantic-animation-ease-in-out-200-timing-function-v20-1-0);
|
|
612
612
|
--animation-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-v20-1-0);
|
|
613
613
|
}
|
|
614
|
-
.magritte-drop-animation-timeout___uO7LF_7-2-
|
|
615
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
614
|
+
.magritte-drop-animation-timeout___uO7LF_7-2-9,
|
|
615
|
+
.magritte-drop-exit-active___GB0ET_7-2-9 .magritte-drop___Z10P4_7-2-9{
|
|
616
616
|
transition-property:opacity, transform;
|
|
617
617
|
transition-duration:var(--magritte-semantic-animation-ease-in-out-100-duration-v20-1-0);
|
|
618
618
|
transition-timing-function:var(--magritte-semantic-animation-ease-in-out-200-timing-function-v20-1-0);
|
|
619
619
|
}
|
|
620
|
-
.magritte-drop-enter___4vEuH_7-2-
|
|
620
|
+
.magritte-drop-enter___4vEuH_7-2-9[data-magritte-drop-base-direction='top'] .magritte-drop___Z10P4_7-2-9{
|
|
621
621
|
transform:translateY(-4px);
|
|
622
622
|
}
|
|
623
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
623
|
+
.magritte-drop-exit-active___GB0ET_7-2-9[data-magritte-drop-base-direction='top'] .magritte-drop___Z10P4_7-2-9{
|
|
624
624
|
transform:translateY(-4px);
|
|
625
625
|
}
|
|
626
|
-
.magritte-drop-enter___4vEuH_7-2-
|
|
626
|
+
.magritte-drop-enter___4vEuH_7-2-9[data-magritte-drop-base-direction='bottom'] .magritte-drop___Z10P4_7-2-9{
|
|
627
627
|
transform:translateY(4px);
|
|
628
628
|
}
|
|
629
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
629
|
+
.magritte-drop-exit-active___GB0ET_7-2-9[data-magritte-drop-base-direction='bottom'] .magritte-drop___Z10P4_7-2-9{
|
|
630
630
|
transform:translateY(4px);
|
|
631
631
|
}
|
|
632
|
-
.magritte-drop-enter___4vEuH_7-2-
|
|
632
|
+
.magritte-drop-enter___4vEuH_7-2-9[data-magritte-drop-base-direction='left'] .magritte-drop___Z10P4_7-2-9{
|
|
633
633
|
transform:translateX(-4px);
|
|
634
634
|
}
|
|
635
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
635
|
+
.magritte-drop-exit-active___GB0ET_7-2-9[data-magritte-drop-base-direction='left'] .magritte-drop___Z10P4_7-2-9{
|
|
636
636
|
transform:translateX(4px);
|
|
637
637
|
}
|
|
638
|
-
.magritte-drop-enter___4vEuH_7-2-
|
|
638
|
+
.magritte-drop-enter___4vEuH_7-2-9[data-magritte-drop-base-direction='right'] .magritte-drop___Z10P4_7-2-9{
|
|
639
639
|
transform:translateX(4px);
|
|
640
640
|
}
|
|
641
|
-
.magritte-drop-exit-active___GB0ET_7-2-
|
|
641
|
+
.magritte-drop-exit-active___GB0ET_7-2-9[data-magritte-drop-base-direction='right'] .magritte-drop___Z10P4_7-2-9{
|
|
642
642
|
transform:translateX(4px);
|
|
643
643
|
}
|
|
644
|
-
.magritte-drop-exit___brFjz_7-2-
|
|
645
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
644
|
+
.magritte-drop-exit___brFjz_7-2-9[data-magritte-drop-base-direction='left'] .magritte-drop___Z10P4_7-2-9,
|
|
645
|
+
.magritte-drop-enter-active___SQUog_7-2-9[data-magritte-drop-base-direction='left'] .magritte-drop___Z10P4_7-2-9{
|
|
646
646
|
transform:translateX(0%);
|
|
647
647
|
}
|
|
648
|
-
.magritte-drop-exit___brFjz_7-2-
|
|
649
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
648
|
+
.magritte-drop-exit___brFjz_7-2-9[data-magritte-drop-base-direction='bottom'] .magritte-drop___Z10P4_7-2-9,
|
|
649
|
+
.magritte-drop-enter-active___SQUog_7-2-9[data-magritte-drop-base-direction='bottom'] .magritte-drop___Z10P4_7-2-9{
|
|
650
650
|
transform:translateY(0%);
|
|
651
651
|
}
|
|
652
|
-
.magritte-drop-exit___brFjz_7-2-
|
|
653
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
652
|
+
.magritte-drop-exit___brFjz_7-2-9[data-magritte-drop-base-direction='right'] .magritte-drop___Z10P4_7-2-9,
|
|
653
|
+
.magritte-drop-enter-active___SQUog_7-2-9[data-magritte-drop-base-direction='right'] .magritte-drop___Z10P4_7-2-9{
|
|
654
654
|
transform:translateX(0%);
|
|
655
655
|
}
|
|
656
|
-
.magritte-drop-exit___brFjz_7-2-
|
|
657
|
-
.magritte-drop-enter-active___SQUog_7-2-
|
|
656
|
+
.magritte-drop-exit___brFjz_7-2-9[data-magritte-drop-base-direction='top'] .magritte-drop___Z10P4_7-2-9,
|
|
657
|
+
.magritte-drop-enter-active___SQUog_7-2-9[data-magritte-drop-base-direction='top'] .magritte-drop___Z10P4_7-2-9{
|
|
658
658
|
transform:translateY(0%);
|
|
659
659
|
}
|
|
660
660
|
}
|
package/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import 'classnames';
|
|
|
7
7
|
import '@hh.ru/magritte-internal-drop-base';
|
|
8
8
|
import '@hh.ru/magritte-internal-layer-name';
|
|
9
9
|
import '@hh.ru/magritte-ui-breakpoint';
|
|
10
|
-
import './DropContainer-
|
|
10
|
+
import './DropContainer-C7vLKj5c.js';
|
|
11
11
|
import '@hh.ru/magritte-common-use-multiple-refs';
|
|
12
12
|
import '@hh.ru/magritte-ui-divider';
|
|
13
13
|
import './PureChildren.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hh.ru/magritte-ui-drop",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.9",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"sideEffects": [
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@hh.ru/magritte-internal-layer-name": "2.2.0",
|
|
27
27
|
"@hh.ru/magritte-ui-breakpoint": "4.1.1",
|
|
28
28
|
"@hh.ru/magritte-ui-divider": "1.1.39",
|
|
29
|
-
"@hh.ru/magritte-ui-layer": "2.1.
|
|
29
|
+
"@hh.ru/magritte-ui-layer": "2.1.2",
|
|
30
30
|
"@hh.ru/magritte-ui-theme-provider": "1.1.35"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "57867dfe289f03cc69932c1de56a3eba0e25a9b4"
|
|
40
40
|
}
|