@hh.ru/magritte-ui-suggest 6.4.18 → 6.4.20
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/Suggest.js +1 -1
- package/SuggestPicker.js +3 -2
- package/SuggestPicker.js.map +1 -1
- package/index.css +22 -552
- package/index.js +1 -1
- package/package.json +15 -15
- package/{sectionRenderers-JN6-tHnw.js → sectionRenderers-C2PFOLF0.js} +2 -2
- package/{sectionRenderers-JN6-tHnw.js.map → sectionRenderers-C2PFOLF0.js.map} +1 -1
- package/sectionRenderers.js +1 -1
package/Suggest.js
CHANGED
|
@@ -6,7 +6,7 @@ import { useBreakpoint } from '@hh.ru/magritte-ui-breakpoint';
|
|
|
6
6
|
import { getSearchResultCount, SuggestPicker } from './SuggestPicker.js';
|
|
7
7
|
import { DataProviderError } from './dataProvider.js';
|
|
8
8
|
import { useSuggestKeyboardNav } from './useSuggestKeyboardNav.js';
|
|
9
|
-
import { s as styles } from './sectionRenderers-
|
|
9
|
+
import { s as styles } from './sectionRenderers-C2PFOLF0.js';
|
|
10
10
|
import 'classnames';
|
|
11
11
|
import '@hh.ru/magritte-common-keyboard';
|
|
12
12
|
import '@hh.ru/magritte-ui-bottom-sheet';
|
package/SuggestPicker.js
CHANGED
|
@@ -9,13 +9,14 @@ import { Button } from '@hh.ru/magritte-ui-button';
|
|
|
9
9
|
import { Drop } from '@hh.ru/magritte-ui-drop';
|
|
10
10
|
import { ArrowPathOutlinedSize24 } from '@hh.ru/magritte-ui-icon/icon';
|
|
11
11
|
import { NavigationBar } from '@hh.ru/magritte-ui-navigation-bar';
|
|
12
|
-
import { r as renderSection, s as styles } from './sectionRenderers-
|
|
12
|
+
import { r as renderSection, s as styles } from './sectionRenderers-C2PFOLF0.js';
|
|
13
13
|
import '@hh.ru/magritte-ui-card';
|
|
14
14
|
import '@hh.ru/magritte-ui-cell';
|
|
15
15
|
import '@hh.ru/magritte-ui-chips';
|
|
16
16
|
import '@hh.ru/magritte-ui-typography';
|
|
17
17
|
|
|
18
18
|
const getSearchResultCount = (options) => options?.filter(({ type, searchable = true }) => type !== 'delimiter' && searchable).length || 0;
|
|
19
|
+
const dropPlacement = ['bottom-left', 'top-left'];
|
|
19
20
|
const SuggestPicker = function ({ data, activatorRef, inputRef, onValueSelect, maxHeight, navigationBarProps, input, inputFocused, currentInputValueSelectedFromSuggest, suggestContainerRef, itemsGap, onBottomSheetClose, onBottomSheetOpen, inputValue, topContent, bottomContent, dropWidth, isError, trls, errorPlaceholder, onClickReload, onDropOpen, onDropClose, onSearchSubmit, }) {
|
|
20
21
|
const { isMobile, breakpoint } = useBreakpoint();
|
|
21
22
|
const [showBottomSheet, setShowBottomSheet] = useState(false);
|
|
@@ -92,7 +93,7 @@ const SuggestPicker = function ({ data, activatorRef, inputRef, onValueSelect, m
|
|
|
92
93
|
setCaretVisible(false);
|
|
93
94
|
}, onClose: () => {
|
|
94
95
|
setShowBottomSheet(false);
|
|
95
|
-
}, footer: isError && (jsx(BottomSheetFooter, { children: jsx(Button, { mode: "secondary", style: "negative", icon: jsx(ArrowPathOutlinedSize24, {}), onClick: onClickReload, "data-qa": "suggest-reload-button", stretched: true, children: trls.resetButton }) })), ref: suggestContainerRef, allowScrollWhileFocused: true, children: [!isError && (jsxs("div", { onKeyDown: processInput(bottomSheetInputRef), className: styles.suggestItemsContainer, style: { gap: itemsGap }, children: [topContent, suggestContent, bottomContent] })), isError && jsx("div", { className: styles.errorWrapper, children: errorPlaceholder })] }), jsx(Drop, { autoFocusWhenOpened: false, placement:
|
|
96
|
+
}, footer: isError && (jsx(BottomSheetFooter, { children: jsx(Button, { mode: "secondary", style: "negative", icon: jsx(ArrowPathOutlinedSize24, {}), onClick: onClickReload, "data-qa": "suggest-reload-button", stretched: true, children: trls.resetButton }) })), ref: suggestContainerRef, allowScrollWhileFocused: true, children: [!isError && (jsxs("div", { onKeyDown: processInput(bottomSheetInputRef), className: styles.suggestItemsContainer, style: { gap: itemsGap }, children: [topContent, suggestContent, bottomContent] })), isError && jsx("div", { className: styles.errorWrapper, children: errorPlaceholder })] }), jsx(Drop, { autoFocusWhenOpened: false, placement: dropPlacement, lockPlacement: true, visible: dropVisible, onClose: () => setShowDrop(false), activatorRef: activatorRef, role: "status", space: 400, widthEqualToActivator: !dropWidth, width: dropWidth, forcePlacement: true, keyboardNavigationMode: "list", "data-qa": "suggest-drop", ref: suggestContainerRef, onAppear: onDropOpen, onAfterExit: onDropClose, children: jsx("div", { onKeyDown: processInput(inputRef), className: styles.suggestItemsContainer, style: { maxHeight }, children: jsxs("div", { className: styles.suggestItemsContainerWrapper, style: { gap: itemsGap }, children: [topContent, suggestContent, bottomContent] }) }) })] }));
|
|
96
97
|
};
|
|
97
98
|
SuggestPicker.displayName = 'SuggestPicker';
|
|
98
99
|
|
package/SuggestPicker.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SuggestPicker.js","sources":["../src/SuggestPicker.tsx"],"sourcesContent":["import {\n RefObject,\n useMemo,\n useEffect,\n useRef,\n useState,\n ReactElement,\n KeyboardEventHandler,\n ReactNode,\n useCallback,\n} from 'react';\nimport classnames from 'classnames';\n\nimport { keyboardKeys, keyboardMatch } from '@hh.ru/magritte-common-keyboard';\nimport { type TokenBaseCoreSpace } from '@hh.ru/magritte-design-tokens/types';\nimport { BottomSheet, BottomSheetFooter } from '@hh.ru/magritte-ui-bottom-sheet';\nimport { useBreakpoint } from '@hh.ru/magritte-ui-breakpoint';\nimport { Button } from '@hh.ru/magritte-ui-button';\nimport { Drop } from '@hh.ru/magritte-ui-drop';\nimport { ArrowPathOutlinedSize24 } from '@hh.ru/magritte-ui-icon/icon';\nimport { ControlledInputProps } from '@hh.ru/magritte-ui-input';\nimport { NavigationBar } from '@hh.ru/magritte-ui-navigation-bar';\nimport { renderSection } from '@hh.ru/magritte-ui-suggest/sectionRenderers';\nimport {\n DataProviderResult,\n SuggestProps,\n SuggestInputComponent,\n InputProp,\n SearchSubmitType,\n} from '@hh.ru/magritte-ui-suggest/types';\n\nimport styles from './suggest.less';\n\ninterface SuggestPickerProps<K, P extends SuggestInputComponent = SuggestInputComponent> {\n data: DataProviderResult<K> | null | undefined;\n activatorRef: RefObject<HTMLElement>;\n inputRef: RefObject<HTMLElement>;\n onValueSelect: (value: string, data: K | undefined) => void;\n maxHeight: number;\n navigationBarProps: SuggestProps<unknown, SuggestInputComponent>['navigationBarProps'];\n input: InputProp<P>;\n inputFocused: boolean;\n currentInputValueSelectedFromSuggest: boolean;\n suggestContainerRef: RefObject<HTMLElement>;\n itemsGap: TokenBaseCoreSpace;\n onBottomSheetClose: VoidFunction;\n inputValue: string;\n topContent?: ReactNode;\n bottomContent?: ReactNode;\n dropWidth?: number;\n isError: boolean;\n trls: SuggestProps<unknown, SuggestInputComponent>['trls'];\n errorPlaceholder: ReactNode;\n onClickReload: VoidFunction;\n onBottomSheetOpen?: VoidFunction;\n onDropOpen?: VoidFunction;\n onDropClose?: VoidFunction;\n onSearchSubmit?: SearchSubmitType;\n}\n\nexport const getSearchResultCount = <K,>(options: DataProviderResult<K> | null | undefined): number =>\n options?.filter(({ type, searchable = true }) => type !== 'delimiter' && searchable).length || 0;\n\nexport const SuggestPicker = function <K, P extends SuggestInputComponent>({\n data,\n activatorRef,\n inputRef,\n onValueSelect,\n maxHeight,\n navigationBarProps,\n input,\n inputFocused,\n currentInputValueSelectedFromSuggest,\n suggestContainerRef,\n itemsGap,\n onBottomSheetClose,\n onBottomSheetOpen,\n inputValue,\n topContent,\n bottomContent,\n dropWidth,\n isError,\n trls,\n errorPlaceholder,\n onClickReload,\n onDropOpen,\n onDropClose,\n onSearchSubmit,\n}: SuggestPickerProps<K, P>): ReactElement | null {\n const { isMobile, breakpoint } = useBreakpoint();\n const [showBottomSheet, setShowBottomSheet] = useState(false);\n const [showDrop, setShowDrop] = useState(true);\n const bottomSheetInputRef = useRef<HTMLInputElement>(null);\n const [caretVisible, setCaretVisible] = useState(false);\n\n useEffect(() => {\n if (inputFocused) {\n setShowBottomSheet(true);\n } else if (!isMobile) {\n setShowBottomSheet(false);\n }\n // eslint-disable-next-line disable-autofix/react-hooks/exhaustive-deps\n }, [inputFocused, setShowBottomSheet]);\n\n useEffect(() => {\n if (currentInputValueSelectedFromSuggest) {\n setShowBottomSheet(false);\n }\n }, [currentInputValueSelectedFromSuggest, isMobile]);\n\n // если скрыли дроп из-за скрытия активатора под скроллом, то при следующем изменении данных нужно его показать\n useEffect(() => {\n setShowDrop(true);\n }, [inputValue, inputFocused]);\n\n const onKeyDownHandler = useCallback<KeyboardEventHandler<HTMLInputElement>>(\n (event) => {\n input.props.onKeyDown?.(event);\n if (onSearchSubmit && keyboardMatch(event.nativeEvent, keyboardKeys.Enter)) {\n const onCloseBottomSheet = () => {\n setShowBottomSheet(false);\n };\n // в onSearchSubmit нужно вернуть количество результатов поиска\n onSearchSubmit(event, onCloseBottomSheet, getSearchResultCount(data));\n }\n },\n [input.props, onSearchSubmit, data]\n );\n\n const suggestContent = useMemo(() => {\n if (!data) {\n return null;\n }\n\n return data.reduce<Array<JSX.Element>>((result, section, index) => {\n const renderResult = renderSection(\n section,\n index,\n onValueSelect,\n breakpoint,\n data.length,\n Boolean(bottomContent)\n );\n result.push(...renderResult);\n return result;\n }, []);\n }, [data, onValueSelect, breakpoint, bottomContent]);\n\n const dropVisible =\n suggestContent !== null &&\n suggestContent.length > 0 &&\n !currentInputValueSelectedFromSuggest &&\n inputFocused &&\n showDrop;\n\n const InputComponent = input.component;\n const processInput =\n (ref: RefObject<HTMLElement>): KeyboardEventHandler<HTMLElement> =>\n (event) => {\n const hasPrintableRepresentation = event.key.replace(/\\s/g, '').length === 1;\n if (!hasPrintableRepresentation) {\n return;\n }\n ref.current?.focus();\n const newEvent = new KeyboardEvent('keydown', event.nativeEvent);\n ref.current?.dispatchEvent(newEvent);\n };\n\n return (\n <>\n <BottomSheet\n visible={showBottomSheet}\n height=\"full-screen\"\n onAfterExit={onBottomSheetClose}\n keyboardOverlaysContent={false}\n header={\n <NavigationBar\n {...navigationBarProps}\n options={\n <div\n className={classnames({\n [styles.bottomSheetInputHideCaret]: !caretVisible,\n })}\n >\n <InputComponent\n {...({\n ...input.props,\n invalid: false,\n ref: bottomSheetInputRef,\n autoComplete: 'off',\n onKeyDown: onKeyDownHandler,\n } as unknown as JSX.IntrinsicAttributes &\n JSX.LibraryManagedAttributes<P, ControlledInputProps>)}\n />\n </div>\n }\n />\n }\n onAppear={() => {\n bottomSheetInputRef?.current?.focus();\n setCaretVisible(true);\n onBottomSheetOpen?.();\n }}\n onBeforeExit={() => {\n bottomSheetInputRef?.current?.blur();\n setCaretVisible(false);\n }}\n onClose={() => {\n setShowBottomSheet(false);\n }}\n footer={\n isError && (\n <BottomSheetFooter>\n <Button\n mode=\"secondary\"\n style=\"negative\"\n icon={<ArrowPathOutlinedSize24 />}\n onClick={onClickReload}\n data-qa=\"suggest-reload-button\"\n stretched\n >\n {trls.resetButton}\n </Button>\n </BottomSheetFooter>\n )\n }\n ref={suggestContainerRef}\n allowScrollWhileFocused\n >\n {!isError && (\n <div\n onKeyDown={processInput(bottomSheetInputRef)}\n className={styles.suggestItemsContainer}\n style={{ gap: itemsGap }}\n >\n {topContent}\n {suggestContent}\n {bottomContent}\n </div>\n )}\n {isError && <div className={styles.errorWrapper}>{errorPlaceholder}</div>}\n </BottomSheet>\n <Drop\n autoFocusWhenOpened={false}\n placement=\"bottom-left\"\n visible={dropVisible}\n onClose={() => setShowDrop(false)}\n activatorRef={activatorRef}\n role=\"status\"\n space={400}\n widthEqualToActivator={!dropWidth}\n width={dropWidth}\n forcePlacement\n keyboardNavigationMode=\"list\"\n data-qa=\"suggest-drop\"\n ref={suggestContainerRef}\n onAppear={onDropOpen}\n onAfterExit={onDropClose}\n >\n <div onKeyDown={processInput(inputRef)} className={styles.suggestItemsContainer} style={{ maxHeight }}>\n <div className={styles.suggestItemsContainerWrapper} style={{ gap: itemsGap }}>\n {topContent}\n {suggestContent}\n {bottomContent}\n </div>\n </div>\n </Drop>\n </>\n );\n};\n\nSuggestPicker.displayName = 'SuggestPicker';\n"],"names":["_jsxs","_Fragment","_jsx"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"SuggestPicker.js","sources":["../src/SuggestPicker.tsx"],"sourcesContent":["import {\n RefObject,\n useMemo,\n useEffect,\n useRef,\n useState,\n ReactElement,\n KeyboardEventHandler,\n ReactNode,\n useCallback,\n} from 'react';\nimport classnames from 'classnames';\n\nimport { keyboardKeys, keyboardMatch } from '@hh.ru/magritte-common-keyboard';\nimport { type TokenBaseCoreSpace } from '@hh.ru/magritte-design-tokens/types';\nimport { BottomSheet, BottomSheetFooter } from '@hh.ru/magritte-ui-bottom-sheet';\nimport { useBreakpoint } from '@hh.ru/magritte-ui-breakpoint';\nimport { Button } from '@hh.ru/magritte-ui-button';\nimport { Drop } from '@hh.ru/magritte-ui-drop';\nimport { ArrowPathOutlinedSize24 } from '@hh.ru/magritte-ui-icon/icon';\nimport { ControlledInputProps } from '@hh.ru/magritte-ui-input';\nimport { NavigationBar } from '@hh.ru/magritte-ui-navigation-bar';\nimport { renderSection } from '@hh.ru/magritte-ui-suggest/sectionRenderers';\nimport {\n DataProviderResult,\n SuggestProps,\n SuggestInputComponent,\n InputProp,\n SearchSubmitType,\n} from '@hh.ru/magritte-ui-suggest/types';\n\nimport styles from './suggest.less';\n\ninterface SuggestPickerProps<K, P extends SuggestInputComponent = SuggestInputComponent> {\n data: DataProviderResult<K> | null | undefined;\n activatorRef: RefObject<HTMLElement>;\n inputRef: RefObject<HTMLElement>;\n onValueSelect: (value: string, data: K | undefined) => void;\n maxHeight: number;\n navigationBarProps: SuggestProps<unknown, SuggestInputComponent>['navigationBarProps'];\n input: InputProp<P>;\n inputFocused: boolean;\n currentInputValueSelectedFromSuggest: boolean;\n suggestContainerRef: RefObject<HTMLElement>;\n itemsGap: TokenBaseCoreSpace;\n onBottomSheetClose: VoidFunction;\n inputValue: string;\n topContent?: ReactNode;\n bottomContent?: ReactNode;\n dropWidth?: number;\n isError: boolean;\n trls: SuggestProps<unknown, SuggestInputComponent>['trls'];\n errorPlaceholder: ReactNode;\n onClickReload: VoidFunction;\n onBottomSheetOpen?: VoidFunction;\n onDropOpen?: VoidFunction;\n onDropClose?: VoidFunction;\n onSearchSubmit?: SearchSubmitType;\n}\n\nexport const getSearchResultCount = <K,>(options: DataProviderResult<K> | null | undefined): number =>\n options?.filter(({ type, searchable = true }) => type !== 'delimiter' && searchable).length || 0;\n\nconst dropPlacement = ['bottom-left', 'top-left'];\n\nexport const SuggestPicker = function <K, P extends SuggestInputComponent>({\n data,\n activatorRef,\n inputRef,\n onValueSelect,\n maxHeight,\n navigationBarProps,\n input,\n inputFocused,\n currentInputValueSelectedFromSuggest,\n suggestContainerRef,\n itemsGap,\n onBottomSheetClose,\n onBottomSheetOpen,\n inputValue,\n topContent,\n bottomContent,\n dropWidth,\n isError,\n trls,\n errorPlaceholder,\n onClickReload,\n onDropOpen,\n onDropClose,\n onSearchSubmit,\n}: SuggestPickerProps<K, P>): ReactElement | null {\n const { isMobile, breakpoint } = useBreakpoint();\n const [showBottomSheet, setShowBottomSheet] = useState(false);\n const [showDrop, setShowDrop] = useState(true);\n const bottomSheetInputRef = useRef<HTMLInputElement>(null);\n const [caretVisible, setCaretVisible] = useState(false);\n\n useEffect(() => {\n if (inputFocused) {\n setShowBottomSheet(true);\n } else if (!isMobile) {\n setShowBottomSheet(false);\n }\n // eslint-disable-next-line disable-autofix/react-hooks/exhaustive-deps\n }, [inputFocused, setShowBottomSheet]);\n\n useEffect(() => {\n if (currentInputValueSelectedFromSuggest) {\n setShowBottomSheet(false);\n }\n }, [currentInputValueSelectedFromSuggest, isMobile]);\n\n // если скрыли дроп из-за скрытия активатора под скроллом, то при следующем изменении данных нужно его показать\n useEffect(() => {\n setShowDrop(true);\n }, [inputValue, inputFocused]);\n\n const onKeyDownHandler = useCallback<KeyboardEventHandler<HTMLInputElement>>(\n (event) => {\n input.props.onKeyDown?.(event);\n if (onSearchSubmit && keyboardMatch(event.nativeEvent, keyboardKeys.Enter)) {\n const onCloseBottomSheet = () => {\n setShowBottomSheet(false);\n };\n // в onSearchSubmit нужно вернуть количество результатов поиска\n onSearchSubmit(event, onCloseBottomSheet, getSearchResultCount(data));\n }\n },\n [input.props, onSearchSubmit, data]\n );\n\n const suggestContent = useMemo(() => {\n if (!data) {\n return null;\n }\n\n return data.reduce<Array<JSX.Element>>((result, section, index) => {\n const renderResult = renderSection(\n section,\n index,\n onValueSelect,\n breakpoint,\n data.length,\n Boolean(bottomContent)\n );\n result.push(...renderResult);\n return result;\n }, []);\n }, [data, onValueSelect, breakpoint, bottomContent]);\n\n const dropVisible =\n suggestContent !== null &&\n suggestContent.length > 0 &&\n !currentInputValueSelectedFromSuggest &&\n inputFocused &&\n showDrop;\n\n const InputComponent = input.component;\n const processInput =\n (ref: RefObject<HTMLElement>): KeyboardEventHandler<HTMLElement> =>\n (event) => {\n const hasPrintableRepresentation = event.key.replace(/\\s/g, '').length === 1;\n if (!hasPrintableRepresentation) {\n return;\n }\n ref.current?.focus();\n const newEvent = new KeyboardEvent('keydown', event.nativeEvent);\n ref.current?.dispatchEvent(newEvent);\n };\n\n return (\n <>\n <BottomSheet\n visible={showBottomSheet}\n height=\"full-screen\"\n onAfterExit={onBottomSheetClose}\n keyboardOverlaysContent={false}\n header={\n <NavigationBar\n {...navigationBarProps}\n options={\n <div\n className={classnames({\n [styles.bottomSheetInputHideCaret]: !caretVisible,\n })}\n >\n <InputComponent\n {...({\n ...input.props,\n invalid: false,\n ref: bottomSheetInputRef,\n autoComplete: 'off',\n onKeyDown: onKeyDownHandler,\n } as unknown as JSX.IntrinsicAttributes &\n JSX.LibraryManagedAttributes<P, ControlledInputProps>)}\n />\n </div>\n }\n />\n }\n onAppear={() => {\n bottomSheetInputRef?.current?.focus();\n setCaretVisible(true);\n onBottomSheetOpen?.();\n }}\n onBeforeExit={() => {\n bottomSheetInputRef?.current?.blur();\n setCaretVisible(false);\n }}\n onClose={() => {\n setShowBottomSheet(false);\n }}\n footer={\n isError && (\n <BottomSheetFooter>\n <Button\n mode=\"secondary\"\n style=\"negative\"\n icon={<ArrowPathOutlinedSize24 />}\n onClick={onClickReload}\n data-qa=\"suggest-reload-button\"\n stretched\n >\n {trls.resetButton}\n </Button>\n </BottomSheetFooter>\n )\n }\n ref={suggestContainerRef}\n allowScrollWhileFocused\n >\n {!isError && (\n <div\n onKeyDown={processInput(bottomSheetInputRef)}\n className={styles.suggestItemsContainer}\n style={{ gap: itemsGap }}\n >\n {topContent}\n {suggestContent}\n {bottomContent}\n </div>\n )}\n {isError && <div className={styles.errorWrapper}>{errorPlaceholder}</div>}\n </BottomSheet>\n <Drop\n autoFocusWhenOpened={false}\n placement={dropPlacement}\n lockPlacement\n visible={dropVisible}\n onClose={() => setShowDrop(false)}\n activatorRef={activatorRef}\n role=\"status\"\n space={400}\n widthEqualToActivator={!dropWidth}\n width={dropWidth}\n forcePlacement\n keyboardNavigationMode=\"list\"\n data-qa=\"suggest-drop\"\n ref={suggestContainerRef}\n onAppear={onDropOpen}\n onAfterExit={onDropClose}\n >\n <div onKeyDown={processInput(inputRef)} className={styles.suggestItemsContainer} style={{ maxHeight }}>\n <div className={styles.suggestItemsContainerWrapper} style={{ gap: itemsGap }}>\n {topContent}\n {suggestContent}\n {bottomContent}\n </div>\n </div>\n </Drop>\n </>\n );\n};\n\nSuggestPicker.displayName = 'SuggestPicker';\n"],"names":["_jsxs","_Fragment","_jsx"],"mappings":"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"}
|
package/index.css
CHANGED
|
@@ -1,594 +1,64 @@
|
|
|
1
1
|
:root{
|
|
2
|
-
--magritte-color-text-primary-
|
|
2
|
+
--magritte-color-text-primary-v21-0-0:#000000;
|
|
3
3
|
}
|
|
4
4
|
:root{
|
|
5
|
-
--magritte-
|
|
6
|
-
--magritte-
|
|
7
|
-
--magritte-typography-title-1-semibold-line-height-v20-1-0:60px;
|
|
8
|
-
--magritte-typography-title-1-semibold-font-size-v20-1-0:48px;
|
|
9
|
-
--magritte-typography-title-1-semibold-letter-spacing-v20-1-0:-0.02em;
|
|
10
|
-
--magritte-typography-title-1-semibold-text-indent-v20-1-0:0px;
|
|
11
|
-
--magritte-typography-title-1-semibold-text-transform-v20-1-0:none;
|
|
12
|
-
--magritte-typography-title-1-semibold-text-decoration-v20-1-0:none;
|
|
13
|
-
--magritte-typography-title-2-semibold-font-family-v20-1-0:"hh sans";
|
|
14
|
-
--magritte-typography-title-2-semibold-font-weight-v20-1-0:500;
|
|
15
|
-
--magritte-typography-title-2-semibold-line-height-v20-1-0:48px;
|
|
16
|
-
--magritte-typography-title-2-semibold-font-size-v20-1-0:36px;
|
|
17
|
-
--magritte-typography-title-2-semibold-letter-spacing-v20-1-0:-0.0175em;
|
|
18
|
-
--magritte-typography-title-2-semibold-text-indent-v20-1-0:0px;
|
|
19
|
-
--magritte-typography-title-2-semibold-text-transform-v20-1-0:none;
|
|
20
|
-
--magritte-typography-title-2-semibold-text-decoration-v20-1-0:none;
|
|
21
|
-
--magritte-typography-title-3-semibold-font-family-v20-1-0:"hh sans";
|
|
22
|
-
--magritte-typography-title-3-semibold-font-weight-v20-1-0:500;
|
|
23
|
-
--magritte-typography-title-3-semibold-line-height-v20-1-0:40px;
|
|
24
|
-
--magritte-typography-title-3-semibold-font-size-v20-1-0:28px;
|
|
25
|
-
--magritte-typography-title-3-semibold-letter-spacing-v20-1-0:-0.0125em;
|
|
26
|
-
--magritte-typography-title-3-semibold-text-indent-v20-1-0:0px;
|
|
27
|
-
--magritte-typography-title-3-semibold-text-transform-v20-1-0:none;
|
|
28
|
-
--magritte-typography-title-3-semibold-text-decoration-v20-1-0:none;
|
|
29
|
-
--magritte-typography-title-4-semibold-font-family-v20-1-0:"hh sans";
|
|
30
|
-
--magritte-typography-title-4-semibold-font-weight-v20-1-0:500;
|
|
31
|
-
--magritte-typography-title-4-semibold-line-height-v20-1-0:32px;
|
|
32
|
-
--magritte-typography-title-4-semibold-font-size-v20-1-0:22px;
|
|
33
|
-
--magritte-typography-title-4-semibold-letter-spacing-v20-1-0:-0.0075em;
|
|
34
|
-
--magritte-typography-title-4-semibold-text-indent-v20-1-0:0px;
|
|
35
|
-
--magritte-typography-title-4-semibold-text-transform-v20-1-0:none;
|
|
36
|
-
--magritte-typography-title-4-semibold-text-decoration-v20-1-0:none;
|
|
37
|
-
--magritte-typography-title-5-semibold-font-family-v20-1-0:"hh sans";
|
|
38
|
-
--magritte-typography-title-5-semibold-font-weight-v20-1-0:500;
|
|
39
|
-
--magritte-typography-title-5-semibold-line-height-v20-1-0:26px;
|
|
40
|
-
--magritte-typography-title-5-semibold-font-size-v20-1-0:18px;
|
|
41
|
-
--magritte-typography-title-5-semibold-letter-spacing-v20-1-0:0em;
|
|
42
|
-
--magritte-typography-title-5-semibold-text-indent-v20-1-0:0px;
|
|
43
|
-
--magritte-typography-title-5-semibold-text-transform-v20-1-0:none;
|
|
44
|
-
--magritte-typography-title-5-semibold-text-decoration-v20-1-0:none;
|
|
45
|
-
--magritte-typography-subtitle-1-semibold-font-family-v20-1-0:"hh sans";
|
|
46
|
-
--magritte-typography-subtitle-1-semibold-font-weight-v20-1-0:500;
|
|
47
|
-
--magritte-typography-subtitle-1-semibold-line-height-v20-1-0:22px;
|
|
48
|
-
--magritte-typography-subtitle-1-semibold-font-size-v20-1-0:16px;
|
|
49
|
-
--magritte-typography-subtitle-1-semibold-letter-spacing-v20-1-0:0em;
|
|
50
|
-
--magritte-typography-subtitle-1-semibold-text-indent-v20-1-0:0px;
|
|
51
|
-
--magritte-typography-subtitle-1-semibold-text-transform-v20-1-0:none;
|
|
52
|
-
--magritte-typography-subtitle-1-semibold-text-decoration-v20-1-0:none;
|
|
53
|
-
--magritte-typography-subtitle-2-semibold-font-family-v20-1-0:"hh sans";
|
|
54
|
-
--magritte-typography-subtitle-2-semibold-font-weight-v20-1-0:500;
|
|
55
|
-
--magritte-typography-subtitle-2-semibold-line-height-v20-1-0:20px;
|
|
56
|
-
--magritte-typography-subtitle-2-semibold-font-size-v20-1-0:14px;
|
|
57
|
-
--magritte-typography-subtitle-2-semibold-letter-spacing-v20-1-0:0.005em;
|
|
58
|
-
--magritte-typography-subtitle-2-semibold-text-indent-v20-1-0:0px;
|
|
59
|
-
--magritte-typography-subtitle-2-semibold-text-transform-v20-1-0:none;
|
|
60
|
-
--magritte-typography-subtitle-2-semibold-text-decoration-v20-1-0:none;
|
|
61
|
-
--magritte-typography-subtitle-3-semibold-font-family-v20-1-0:"hh sans";
|
|
62
|
-
--magritte-typography-subtitle-3-semibold-font-weight-v20-1-0:500;
|
|
63
|
-
--magritte-typography-subtitle-3-semibold-line-height-v20-1-0:18px;
|
|
64
|
-
--magritte-typography-subtitle-3-semibold-font-size-v20-1-0:12px;
|
|
65
|
-
--magritte-typography-subtitle-3-semibold-letter-spacing-v20-1-0:0.01em;
|
|
66
|
-
--magritte-typography-subtitle-3-semibold-text-indent-v20-1-0:0px;
|
|
67
|
-
--magritte-typography-subtitle-3-semibold-text-transform-v20-1-0:none;
|
|
68
|
-
--magritte-typography-subtitle-3-semibold-text-decoration-v20-1-0:none;
|
|
69
|
-
--magritte-typography-subtitle-4-semibold-font-family-v20-1-0:"hh sans";
|
|
70
|
-
--magritte-typography-subtitle-4-semibold-font-weight-v20-1-0:500;
|
|
71
|
-
--magritte-typography-subtitle-4-semibold-line-height-v20-1-0:16px;
|
|
72
|
-
--magritte-typography-subtitle-4-semibold-font-size-v20-1-0:10px;
|
|
73
|
-
--magritte-typography-subtitle-4-semibold-letter-spacing-v20-1-0:0.015em;
|
|
74
|
-
--magritte-typography-subtitle-4-semibold-text-indent-v20-1-0:0px;
|
|
75
|
-
--magritte-typography-subtitle-4-semibold-text-transform-v20-1-0:none;
|
|
76
|
-
--magritte-typography-subtitle-4-semibold-text-decoration-v20-1-0:none;
|
|
77
|
-
--magritte-typography-label-1-regular-font-family-v20-1-0:"hh sans";
|
|
78
|
-
--magritte-typography-label-1-regular-font-weight-v20-1-0:400;
|
|
79
|
-
--magritte-typography-label-1-regular-line-height-v20-1-0:26px;
|
|
80
|
-
--magritte-typography-label-1-regular-font-size-v20-1-0:18px;
|
|
81
|
-
--magritte-typography-label-1-regular-letter-spacing-v20-1-0:-0.005em;
|
|
82
|
-
--magritte-typography-label-1-regular-text-indent-v20-1-0:0px;
|
|
83
|
-
--magritte-typography-label-1-regular-text-transform-v20-1-0:none;
|
|
84
|
-
--magritte-typography-label-1-regular-text-decoration-v20-1-0:none;
|
|
85
|
-
--magritte-typography-label-2-regular-font-family-v20-1-0:"hh sans";
|
|
86
|
-
--magritte-typography-label-2-regular-font-weight-v20-1-0:400;
|
|
87
|
-
--magritte-typography-label-2-regular-line-height-v20-1-0:22px;
|
|
88
|
-
--magritte-typography-label-2-regular-font-size-v20-1-0:16px;
|
|
89
|
-
--magritte-typography-label-2-regular-letter-spacing-v20-1-0:0em;
|
|
90
|
-
--magritte-typography-label-2-regular-text-indent-v20-1-0:0px;
|
|
91
|
-
--magritte-typography-label-2-regular-text-transform-v20-1-0:none;
|
|
92
|
-
--magritte-typography-label-2-regular-text-decoration-v20-1-0:none;
|
|
93
|
-
--magritte-typography-label-3-regular-font-family-v20-1-0:"hh sans";
|
|
94
|
-
--magritte-typography-label-3-regular-font-weight-v20-1-0:400;
|
|
95
|
-
--magritte-typography-label-3-regular-line-height-v20-1-0:20px;
|
|
96
|
-
--magritte-typography-label-3-regular-font-size-v20-1-0:14px;
|
|
97
|
-
--magritte-typography-label-3-regular-letter-spacing-v20-1-0:0.005em;
|
|
98
|
-
--magritte-typography-label-3-regular-text-indent-v20-1-0:0px;
|
|
99
|
-
--magritte-typography-label-3-regular-text-transform-v20-1-0:none;
|
|
100
|
-
--magritte-typography-label-3-regular-text-decoration-v20-1-0:none;
|
|
101
|
-
--magritte-typography-label-4-regular-font-family-v20-1-0:"hh sans";
|
|
102
|
-
--magritte-typography-label-4-regular-font-weight-v20-1-0:400;
|
|
103
|
-
--magritte-typography-label-4-regular-line-height-v20-1-0:18px;
|
|
104
|
-
--magritte-typography-label-4-regular-font-size-v20-1-0:12px;
|
|
105
|
-
--magritte-typography-label-4-regular-letter-spacing-v20-1-0:0.01em;
|
|
106
|
-
--magritte-typography-label-4-regular-text-indent-v20-1-0:0px;
|
|
107
|
-
--magritte-typography-label-4-regular-text-transform-v20-1-0:none;
|
|
108
|
-
--magritte-typography-label-4-regular-text-decoration-v20-1-0:none;
|
|
109
|
-
--magritte-typography-label-5-regular-font-family-v20-1-0:"hh sans";
|
|
110
|
-
--magritte-typography-label-5-regular-font-weight-v20-1-0:400;
|
|
111
|
-
--magritte-typography-label-5-regular-line-height-v20-1-0:14px;
|
|
112
|
-
--magritte-typography-label-5-regular-font-size-v20-1-0:10px;
|
|
113
|
-
--magritte-typography-label-5-regular-letter-spacing-v20-1-0:0.02em;
|
|
114
|
-
--magritte-typography-label-5-regular-text-indent-v20-1-0:0px;
|
|
115
|
-
--magritte-typography-label-5-regular-text-transform-v20-1-0:none;
|
|
116
|
-
--magritte-typography-label-5-regular-text-decoration-v20-1-0:none;
|
|
117
|
-
--magritte-typography-paragraph-1-regular-font-family-v20-1-0:"hh sans";
|
|
118
|
-
--magritte-typography-paragraph-1-regular-font-weight-v20-1-0:400;
|
|
119
|
-
--magritte-typography-paragraph-1-regular-line-height-v20-1-0:28px;
|
|
120
|
-
--magritte-typography-paragraph-1-regular-font-size-v20-1-0:18px;
|
|
121
|
-
--magritte-typography-paragraph-1-regular-letter-spacing-v20-1-0:0em;
|
|
122
|
-
--magritte-typography-paragraph-1-regular-text-indent-v20-1-0:0px;
|
|
123
|
-
--magritte-typography-paragraph-1-regular-text-transform-v20-1-0:none;
|
|
124
|
-
--magritte-typography-paragraph-1-regular-text-decoration-v20-1-0:none;
|
|
125
|
-
--magritte-typography-paragraph-2-regular-font-family-v20-1-0:"hh sans";
|
|
126
|
-
--magritte-typography-paragraph-2-regular-font-weight-v20-1-0:400;
|
|
127
|
-
--magritte-typography-paragraph-2-regular-line-height-v20-1-0:26px;
|
|
128
|
-
--magritte-typography-paragraph-2-regular-font-size-v20-1-0:16px;
|
|
129
|
-
--magritte-typography-paragraph-2-regular-letter-spacing-v20-1-0:0.005em;
|
|
130
|
-
--magritte-typography-paragraph-2-regular-text-indent-v20-1-0:0px;
|
|
131
|
-
--magritte-typography-paragraph-2-regular-text-transform-v20-1-0:none;
|
|
132
|
-
--magritte-typography-paragraph-2-regular-text-decoration-v20-1-0:none;
|
|
133
|
-
--magritte-typography-paragraph-3-regular-font-family-v20-1-0:"hh sans";
|
|
134
|
-
--magritte-typography-paragraph-3-regular-font-weight-v20-1-0:400;
|
|
135
|
-
--magritte-typography-paragraph-3-regular-line-height-v20-1-0:24px;
|
|
136
|
-
--magritte-typography-paragraph-3-regular-font-size-v20-1-0:14px;
|
|
137
|
-
--magritte-typography-paragraph-3-regular-letter-spacing-v20-1-0:0.01em;
|
|
138
|
-
--magritte-typography-paragraph-3-regular-text-indent-v20-1-0:0px;
|
|
139
|
-
--magritte-typography-paragraph-3-regular-text-transform-v20-1-0:none;
|
|
140
|
-
--magritte-typography-paragraph-3-regular-text-decoration-v20-1-0:none;
|
|
141
|
-
--magritte-typography-paragraph-4-regular-font-family-v20-1-0:"hh sans";
|
|
142
|
-
--magritte-typography-paragraph-4-regular-font-weight-v20-1-0:400;
|
|
143
|
-
--magritte-typography-paragraph-4-regular-line-height-v20-1-0:22px;
|
|
144
|
-
--magritte-typography-paragraph-4-regular-font-size-v20-1-0:12px;
|
|
145
|
-
--magritte-typography-paragraph-4-regular-letter-spacing-v20-1-0:0.015em;
|
|
146
|
-
--magritte-typography-paragraph-4-regular-text-indent-v20-1-0:0px;
|
|
147
|
-
--magritte-typography-paragraph-4-regular-text-transform-v20-1-0:none;
|
|
148
|
-
--magritte-typography-paragraph-4-regular-text-decoration-v20-1-0:none;
|
|
149
|
-
--magritte-typography-_custom-1-semibold-font-family-v20-1-0:"hh sans";
|
|
150
|
-
--magritte-typography-_custom-1-semibold-font-weight-v20-1-0:500;
|
|
151
|
-
--magritte-typography-_custom-1-semibold-line-height-v20-1-0:28px;
|
|
152
|
-
--magritte-typography-_custom-1-semibold-font-size-v20-1-0:18px;
|
|
153
|
-
--magritte-typography-_custom-1-semibold-letter-spacing-v20-1-0:0em;
|
|
154
|
-
--magritte-typography-_custom-1-semibold-text-indent-v20-1-0:0px;
|
|
155
|
-
--magritte-typography-_custom-1-semibold-text-transform-v20-1-0:none;
|
|
156
|
-
--magritte-typography-_custom-1-semibold-text-decoration-v20-1-0:none;
|
|
157
|
-
--magritte-typography-_custom-2-semibold-font-family-v20-1-0:"hh sans";
|
|
158
|
-
--magritte-typography-_custom-2-semibold-font-weight-v20-1-0:500;
|
|
159
|
-
--magritte-typography-_custom-2-semibold-line-height-v20-1-0:26px;
|
|
160
|
-
--magritte-typography-_custom-2-semibold-font-size-v20-1-0:16px;
|
|
161
|
-
--magritte-typography-_custom-2-semibold-letter-spacing-v20-1-0:0.005em;
|
|
162
|
-
--magritte-typography-_custom-2-semibold-text-indent-v20-1-0:0px;
|
|
163
|
-
--magritte-typography-_custom-2-semibold-text-transform-v20-1-0:none;
|
|
164
|
-
--magritte-typography-_custom-2-semibold-text-decoration-v20-1-0:none;
|
|
165
|
-
--magritte-typography-_custom-3-semibold-font-family-v20-1-0:"hh sans";
|
|
166
|
-
--magritte-typography-_custom-3-semibold-font-weight-v20-1-0:500;
|
|
167
|
-
--magritte-typography-_custom-3-semibold-line-height-v20-1-0:24px;
|
|
168
|
-
--magritte-typography-_custom-3-semibold-font-size-v20-1-0:14px;
|
|
169
|
-
--magritte-typography-_custom-3-semibold-letter-spacing-v20-1-0:0.01em;
|
|
170
|
-
--magritte-typography-_custom-3-semibold-text-indent-v20-1-0:0px;
|
|
171
|
-
--magritte-typography-_custom-3-semibold-text-transform-v20-1-0:none;
|
|
172
|
-
--magritte-typography-_custom-3-semibold-text-decoration-v20-1-0:none;
|
|
173
|
-
--magritte-typography-_custom-4-semibold-font-family-v20-1-0:"hh sans";
|
|
174
|
-
--magritte-typography-_custom-4-semibold-font-weight-v20-1-0:400;
|
|
175
|
-
--magritte-typography-_custom-4-semibold-line-height-v20-1-0:22px;
|
|
176
|
-
--magritte-typography-_custom-4-semibold-font-size-v20-1-0:12px;
|
|
177
|
-
--magritte-typography-_custom-4-semibold-letter-spacing-v20-1-0:0.015em;
|
|
178
|
-
--magritte-typography-_custom-4-semibold-text-indent-v20-1-0:0px;
|
|
179
|
-
--magritte-typography-_custom-4-semibold-text-transform-v20-1-0:none;
|
|
180
|
-
--magritte-typography-_custom-4-semibold-text-decoration-v20-1-0:none;
|
|
181
|
-
--magritte-typography-_custom-5-semibold-font-family-v20-1-0:"hh sans";
|
|
182
|
-
--magritte-typography-_custom-5-semibold-font-weight-v20-1-0:400;
|
|
183
|
-
--magritte-typography-_custom-5-semibold-line-height-v20-1-0:12px;
|
|
184
|
-
--magritte-typography-_custom-5-semibold-font-size-v20-1-0:10px;
|
|
185
|
-
--magritte-typography-_custom-5-semibold-letter-spacing-v20-1-0:0.015em;
|
|
186
|
-
--magritte-typography-_custom-5-semibold-text-indent-v20-1-0:0px;
|
|
187
|
-
--magritte-typography-_custom-5-semibold-text-transform-v20-1-0:none;
|
|
188
|
-
--magritte-typography-_custom-5-semibold-text-decoration-v20-1-0:none;
|
|
189
|
-
--magritte-typography-_custom-1-medium-font-family-v20-1-0:"hh sans";
|
|
190
|
-
--magritte-typography-_custom-1-medium-font-weight-v20-1-0:500;
|
|
191
|
-
--magritte-typography-_custom-1-medium-line-height-v20-1-0:28px;
|
|
192
|
-
--magritte-typography-_custom-1-medium-font-size-v20-1-0:18px;
|
|
193
|
-
--magritte-typography-_custom-1-medium-letter-spacing-v20-1-0:0em;
|
|
194
|
-
--magritte-typography-_custom-1-medium-text-indent-v20-1-0:0px;
|
|
195
|
-
--magritte-typography-_custom-1-medium-text-transform-v20-1-0:none;
|
|
196
|
-
--magritte-typography-_custom-1-medium-text-decoration-v20-1-0:none;
|
|
197
|
-
--magritte-typography-_custom-2-medium-font-family-v20-1-0:"hh sans";
|
|
198
|
-
--magritte-typography-_custom-2-medium-font-weight-v20-1-0:500;
|
|
199
|
-
--magritte-typography-_custom-2-medium-line-height-v20-1-0:26px;
|
|
200
|
-
--magritte-typography-_custom-2-medium-font-size-v20-1-0:16px;
|
|
201
|
-
--magritte-typography-_custom-2-medium-letter-spacing-v20-1-0:0.005em;
|
|
202
|
-
--magritte-typography-_custom-2-medium-text-indent-v20-1-0:0px;
|
|
203
|
-
--magritte-typography-_custom-2-medium-text-transform-v20-1-0:none;
|
|
204
|
-
--magritte-typography-_custom-2-medium-text-decoration-v20-1-0:none;
|
|
205
|
-
--magritte-typography-_custom-3-medium-font-family-v20-1-0:"hh sans";
|
|
206
|
-
--magritte-typography-_custom-3-medium-font-weight-v20-1-0:500;
|
|
207
|
-
--magritte-typography-_custom-3-medium-line-height-v20-1-0:24px;
|
|
208
|
-
--magritte-typography-_custom-3-medium-font-size-v20-1-0:14px;
|
|
209
|
-
--magritte-typography-_custom-3-medium-letter-spacing-v20-1-0:0.01em;
|
|
210
|
-
--magritte-typography-_custom-3-medium-text-indent-v20-1-0:0px;
|
|
211
|
-
--magritte-typography-_custom-3-medium-text-transform-v20-1-0:none;
|
|
212
|
-
--magritte-typography-_custom-3-medium-text-decoration-v20-1-0:none;
|
|
213
|
-
--magritte-typography-_custom-4-medium-font-family-v20-1-0:"hh sans";
|
|
214
|
-
--magritte-typography-_custom-4-medium-font-weight-v20-1-0:500;
|
|
215
|
-
--magritte-typography-_custom-4-medium-line-height-v20-1-0:22px;
|
|
216
|
-
--magritte-typography-_custom-4-medium-font-size-v20-1-0:12px;
|
|
217
|
-
--magritte-typography-_custom-4-medium-letter-spacing-v20-1-0:0.015em;
|
|
218
|
-
--magritte-typography-_custom-4-medium-text-indent-v20-1-0:0px;
|
|
219
|
-
--magritte-typography-_custom-4-medium-text-transform-v20-1-0:none;
|
|
220
|
-
--magritte-typography-_custom-4-medium-text-decoration-v20-1-0:none;
|
|
221
|
-
--magritte-typography-_custom-5-medium-font-family-v20-1-0:"hh sans";
|
|
222
|
-
--magritte-typography-_custom-5-medium-font-weight-v20-1-0:500;
|
|
223
|
-
--magritte-typography-_custom-5-medium-line-height-v20-1-0:12px;
|
|
224
|
-
--magritte-typography-_custom-5-medium-font-size-v20-1-0:10px;
|
|
225
|
-
--magritte-typography-_custom-5-medium-letter-spacing-v20-1-0:0.015em;
|
|
226
|
-
--magritte-typography-_custom-5-medium-text-indent-v20-1-0:0px;
|
|
227
|
-
--magritte-typography-_custom-5-medium-text-transform-v20-1-0:none;
|
|
228
|
-
--magritte-typography-_custom-5-medium-text-decoration-v20-1-0:none;
|
|
229
|
-
--magritte-typography-_custom-1-italic-font-family-v20-1-0:"hh sans";
|
|
230
|
-
--magritte-typography-_custom-1-italic-font-weight-v20-1-0:400;
|
|
231
|
-
--magritte-typography-_custom-1-italic-line-height-v20-1-0:28px;
|
|
232
|
-
--magritte-typography-_custom-1-italic-font-size-v20-1-0:18px;
|
|
233
|
-
--magritte-typography-_custom-1-italic-letter-spacing-v20-1-0:0em;
|
|
234
|
-
--magritte-typography-_custom-1-italic-text-indent-v20-1-0:0px;
|
|
235
|
-
--magritte-typography-_custom-1-italic-text-transform-v20-1-0:none;
|
|
236
|
-
--magritte-typography-_custom-1-italic-text-decoration-v20-1-0:none;
|
|
237
|
-
--magritte-typography-_custom-2-italic-font-family-v20-1-0:"hh sans";
|
|
238
|
-
--magritte-typography-_custom-2-italic-font-weight-v20-1-0:400;
|
|
239
|
-
--magritte-typography-_custom-2-italic-line-height-v20-1-0:26px;
|
|
240
|
-
--magritte-typography-_custom-2-italic-font-size-v20-1-0:16px;
|
|
241
|
-
--magritte-typography-_custom-2-italic-letter-spacing-v20-1-0:0.005em;
|
|
242
|
-
--magritte-typography-_custom-2-italic-text-indent-v20-1-0:0px;
|
|
243
|
-
--magritte-typography-_custom-2-italic-text-transform-v20-1-0:none;
|
|
244
|
-
--magritte-typography-_custom-2-italic-text-decoration-v20-1-0:none;
|
|
245
|
-
--magritte-typography-_custom-3-italic-font-family-v20-1-0:"hh sans";
|
|
246
|
-
--magritte-typography-_custom-3-italic-font-weight-v20-1-0:400;
|
|
247
|
-
--magritte-typography-_custom-3-italic-line-height-v20-1-0:24px;
|
|
248
|
-
--magritte-typography-_custom-3-italic-font-size-v20-1-0:14px;
|
|
249
|
-
--magritte-typography-_custom-3-italic-letter-spacing-v20-1-0:0.01em;
|
|
250
|
-
--magritte-typography-_custom-3-italic-text-indent-v20-1-0:0px;
|
|
251
|
-
--magritte-typography-_custom-3-italic-text-transform-v20-1-0:none;
|
|
252
|
-
--magritte-typography-_custom-3-italic-text-decoration-v20-1-0:none;
|
|
253
|
-
--magritte-typography-_custom-4-italic-font-family-v20-1-0:"hh sans";
|
|
254
|
-
--magritte-typography-_custom-4-italic-font-weight-v20-1-0:400;
|
|
255
|
-
--magritte-typography-_custom-4-italic-line-height-v20-1-0:22px;
|
|
256
|
-
--magritte-typography-_custom-4-italic-font-size-v20-1-0:12px;
|
|
257
|
-
--magritte-typography-_custom-4-italic-letter-spacing-v20-1-0:0.015em;
|
|
258
|
-
--magritte-typography-_custom-4-italic-text-indent-v20-1-0:0px;
|
|
259
|
-
--magritte-typography-_custom-4-italic-text-transform-v20-1-0:none;
|
|
260
|
-
--magritte-typography-_custom-4-italic-text-decoration-v20-1-0:none;
|
|
261
|
-
--magritte-typography-_custom-5-italic-font-family-v20-1-0:"hh sans";
|
|
262
|
-
--magritte-typography-_custom-5-italic-font-weight-v20-1-0:400;
|
|
263
|
-
--magritte-typography-_custom-5-italic-line-height-v20-1-0:12px;
|
|
264
|
-
--magritte-typography-_custom-5-italic-font-size-v20-1-0:10px;
|
|
265
|
-
--magritte-typography-_custom-5-italic-letter-spacing-v20-1-0:0.015em;
|
|
266
|
-
--magritte-typography-_custom-5-italic-text-indent-v20-1-0:0px;
|
|
267
|
-
--magritte-typography-_custom-5-italic-text-transform-v20-1-0:none;
|
|
268
|
-
--magritte-typography-_custom-5-italic-text-decoration-v20-1-0:none;
|
|
269
|
-
--magritte-static-space-300-v20-1-0:12px;
|
|
270
|
-
--magritte-static-space-400-v20-1-0:16px;
|
|
5
|
+
--magritte-static-space-300-v21-0-0:12px;
|
|
6
|
+
--magritte-static-space-400-v21-0-0:16px;
|
|
271
7
|
}
|
|
272
8
|
.magritte-night-theme{
|
|
273
|
-
--magritte-color-text-primary-
|
|
9
|
+
--magritte-color-text-primary-v21-0-0:#ffffff;
|
|
274
10
|
}
|
|
275
|
-
.magritte-
|
|
276
|
-
--magritte-typography-title-1-semibold-font-family-v20-1-0:"Inter";
|
|
277
|
-
--magritte-typography-title-1-semibold-font-weight-v20-1-0:600;
|
|
278
|
-
--magritte-typography-title-1-semibold-line-height-v20-1-0:60px;
|
|
279
|
-
--magritte-typography-title-1-semibold-font-size-v20-1-0:48px;
|
|
280
|
-
--magritte-typography-title-1-semibold-letter-spacing-v20-1-0:-0.02em;
|
|
281
|
-
--magritte-typography-title-1-semibold-text-indent-v20-1-0:0px;
|
|
282
|
-
--magritte-typography-title-1-semibold-text-transform-v20-1-0:none;
|
|
283
|
-
--magritte-typography-title-1-semibold-text-decoration-v20-1-0:none;
|
|
284
|
-
--magritte-typography-title-2-semibold-font-family-v20-1-0:"Inter";
|
|
285
|
-
--magritte-typography-title-2-semibold-font-weight-v20-1-0:600;
|
|
286
|
-
--magritte-typography-title-2-semibold-line-height-v20-1-0:48px;
|
|
287
|
-
--magritte-typography-title-2-semibold-font-size-v20-1-0:36px;
|
|
288
|
-
--magritte-typography-title-2-semibold-letter-spacing-v20-1-0:-0.0175em;
|
|
289
|
-
--magritte-typography-title-2-semibold-text-indent-v20-1-0:0px;
|
|
290
|
-
--magritte-typography-title-2-semibold-text-transform-v20-1-0:none;
|
|
291
|
-
--magritte-typography-title-2-semibold-text-decoration-v20-1-0:none;
|
|
292
|
-
--magritte-typography-title-3-semibold-font-family-v20-1-0:"Inter";
|
|
293
|
-
--magritte-typography-title-3-semibold-font-weight-v20-1-0:600;
|
|
294
|
-
--magritte-typography-title-3-semibold-line-height-v20-1-0:40px;
|
|
295
|
-
--magritte-typography-title-3-semibold-font-size-v20-1-0:28px;
|
|
296
|
-
--magritte-typography-title-3-semibold-letter-spacing-v20-1-0:-0.0125em;
|
|
297
|
-
--magritte-typography-title-3-semibold-text-indent-v20-1-0:0px;
|
|
298
|
-
--magritte-typography-title-3-semibold-text-transform-v20-1-0:none;
|
|
299
|
-
--magritte-typography-title-3-semibold-text-decoration-v20-1-0:none;
|
|
300
|
-
--magritte-typography-title-4-semibold-font-family-v20-1-0:"Inter";
|
|
301
|
-
--magritte-typography-title-4-semibold-font-weight-v20-1-0:600;
|
|
302
|
-
--magritte-typography-title-4-semibold-line-height-v20-1-0:32px;
|
|
303
|
-
--magritte-typography-title-4-semibold-font-size-v20-1-0:22px;
|
|
304
|
-
--magritte-typography-title-4-semibold-letter-spacing-v20-1-0:-0.0075em;
|
|
305
|
-
--magritte-typography-title-4-semibold-text-indent-v20-1-0:0px;
|
|
306
|
-
--magritte-typography-title-4-semibold-text-transform-v20-1-0:none;
|
|
307
|
-
--magritte-typography-title-4-semibold-text-decoration-v20-1-0:none;
|
|
308
|
-
--magritte-typography-title-5-semibold-font-family-v20-1-0:"Inter";
|
|
309
|
-
--magritte-typography-title-5-semibold-font-weight-v20-1-0:600;
|
|
310
|
-
--magritte-typography-title-5-semibold-line-height-v20-1-0:26px;
|
|
311
|
-
--magritte-typography-title-5-semibold-font-size-v20-1-0:18px;
|
|
312
|
-
--magritte-typography-title-5-semibold-letter-spacing-v20-1-0:0em;
|
|
313
|
-
--magritte-typography-title-5-semibold-text-indent-v20-1-0:0px;
|
|
314
|
-
--magritte-typography-title-5-semibold-text-transform-v20-1-0:none;
|
|
315
|
-
--magritte-typography-title-5-semibold-text-decoration-v20-1-0:none;
|
|
316
|
-
--magritte-typography-subtitle-1-semibold-font-family-v20-1-0:"Inter";
|
|
317
|
-
--magritte-typography-subtitle-1-semibold-font-weight-v20-1-0:600;
|
|
318
|
-
--magritte-typography-subtitle-1-semibold-line-height-v20-1-0:22px;
|
|
319
|
-
--magritte-typography-subtitle-1-semibold-font-size-v20-1-0:16px;
|
|
320
|
-
--magritte-typography-subtitle-1-semibold-letter-spacing-v20-1-0:0em;
|
|
321
|
-
--magritte-typography-subtitle-1-semibold-text-indent-v20-1-0:0px;
|
|
322
|
-
--magritte-typography-subtitle-1-semibold-text-transform-v20-1-0:none;
|
|
323
|
-
--magritte-typography-subtitle-1-semibold-text-decoration-v20-1-0:none;
|
|
324
|
-
--magritte-typography-subtitle-2-semibold-font-family-v20-1-0:"Inter";
|
|
325
|
-
--magritte-typography-subtitle-2-semibold-font-weight-v20-1-0:600;
|
|
326
|
-
--magritte-typography-subtitle-2-semibold-line-height-v20-1-0:20px;
|
|
327
|
-
--magritte-typography-subtitle-2-semibold-font-size-v20-1-0:14px;
|
|
328
|
-
--magritte-typography-subtitle-2-semibold-letter-spacing-v20-1-0:0.005em;
|
|
329
|
-
--magritte-typography-subtitle-2-semibold-text-indent-v20-1-0:0px;
|
|
330
|
-
--magritte-typography-subtitle-2-semibold-text-transform-v20-1-0:none;
|
|
331
|
-
--magritte-typography-subtitle-2-semibold-text-decoration-v20-1-0:none;
|
|
332
|
-
--magritte-typography-subtitle-3-semibold-font-family-v20-1-0:"Inter";
|
|
333
|
-
--magritte-typography-subtitle-3-semibold-font-weight-v20-1-0:600;
|
|
334
|
-
--magritte-typography-subtitle-3-semibold-line-height-v20-1-0:18px;
|
|
335
|
-
--magritte-typography-subtitle-3-semibold-font-size-v20-1-0:12px;
|
|
336
|
-
--magritte-typography-subtitle-3-semibold-letter-spacing-v20-1-0:0.01em;
|
|
337
|
-
--magritte-typography-subtitle-3-semibold-text-indent-v20-1-0:0px;
|
|
338
|
-
--magritte-typography-subtitle-3-semibold-text-transform-v20-1-0:none;
|
|
339
|
-
--magritte-typography-subtitle-3-semibold-text-decoration-v20-1-0:none;
|
|
340
|
-
--magritte-typography-subtitle-4-semibold-font-family-v20-1-0:"Inter";
|
|
341
|
-
--magritte-typography-subtitle-4-semibold-font-weight-v20-1-0:600;
|
|
342
|
-
--magritte-typography-subtitle-4-semibold-line-height-v20-1-0:16px;
|
|
343
|
-
--magritte-typography-subtitle-4-semibold-font-size-v20-1-0:10px;
|
|
344
|
-
--magritte-typography-subtitle-4-semibold-letter-spacing-v20-1-0:0.015em;
|
|
345
|
-
--magritte-typography-subtitle-4-semibold-text-indent-v20-1-0:0px;
|
|
346
|
-
--magritte-typography-subtitle-4-semibold-text-transform-v20-1-0:none;
|
|
347
|
-
--magritte-typography-subtitle-4-semibold-text-decoration-v20-1-0:none;
|
|
348
|
-
--magritte-typography-label-1-regular-font-family-v20-1-0:"Inter";
|
|
349
|
-
--magritte-typography-label-1-regular-font-weight-v20-1-0:400;
|
|
350
|
-
--magritte-typography-label-1-regular-line-height-v20-1-0:26px;
|
|
351
|
-
--magritte-typography-label-1-regular-font-size-v20-1-0:18px;
|
|
352
|
-
--magritte-typography-label-1-regular-letter-spacing-v20-1-0:-0.005em;
|
|
353
|
-
--magritte-typography-label-1-regular-text-indent-v20-1-0:0px;
|
|
354
|
-
--magritte-typography-label-1-regular-text-transform-v20-1-0:none;
|
|
355
|
-
--magritte-typography-label-1-regular-text-decoration-v20-1-0:none;
|
|
356
|
-
--magritte-typography-label-2-regular-font-family-v20-1-0:"Inter";
|
|
357
|
-
--magritte-typography-label-2-regular-font-weight-v20-1-0:400;
|
|
358
|
-
--magritte-typography-label-2-regular-line-height-v20-1-0:22px;
|
|
359
|
-
--magritte-typography-label-2-regular-font-size-v20-1-0:16px;
|
|
360
|
-
--magritte-typography-label-2-regular-letter-spacing-v20-1-0:0em;
|
|
361
|
-
--magritte-typography-label-2-regular-text-indent-v20-1-0:0px;
|
|
362
|
-
--magritte-typography-label-2-regular-text-transform-v20-1-0:none;
|
|
363
|
-
--magritte-typography-label-2-regular-text-decoration-v20-1-0:none;
|
|
364
|
-
--magritte-typography-label-3-regular-font-family-v20-1-0:"Inter";
|
|
365
|
-
--magritte-typography-label-3-regular-font-weight-v20-1-0:400;
|
|
366
|
-
--magritte-typography-label-3-regular-line-height-v20-1-0:20px;
|
|
367
|
-
--magritte-typography-label-3-regular-font-size-v20-1-0:14px;
|
|
368
|
-
--magritte-typography-label-3-regular-letter-spacing-v20-1-0:0.005em;
|
|
369
|
-
--magritte-typography-label-3-regular-text-indent-v20-1-0:0px;
|
|
370
|
-
--magritte-typography-label-3-regular-text-transform-v20-1-0:none;
|
|
371
|
-
--magritte-typography-label-3-regular-text-decoration-v20-1-0:none;
|
|
372
|
-
--magritte-typography-label-4-regular-font-family-v20-1-0:"Inter";
|
|
373
|
-
--magritte-typography-label-4-regular-font-weight-v20-1-0:400;
|
|
374
|
-
--magritte-typography-label-4-regular-line-height-v20-1-0:18px;
|
|
375
|
-
--magritte-typography-label-4-regular-font-size-v20-1-0:12px;
|
|
376
|
-
--magritte-typography-label-4-regular-letter-spacing-v20-1-0:0.01em;
|
|
377
|
-
--magritte-typography-label-4-regular-text-indent-v20-1-0:0px;
|
|
378
|
-
--magritte-typography-label-4-regular-text-transform-v20-1-0:none;
|
|
379
|
-
--magritte-typography-label-4-regular-text-decoration-v20-1-0:none;
|
|
380
|
-
--magritte-typography-label-5-regular-font-family-v20-1-0:"Inter";
|
|
381
|
-
--magritte-typography-label-5-regular-font-weight-v20-1-0:400;
|
|
382
|
-
--magritte-typography-label-5-regular-line-height-v20-1-0:14px;
|
|
383
|
-
--magritte-typography-label-5-regular-font-size-v20-1-0:10px;
|
|
384
|
-
--magritte-typography-label-5-regular-letter-spacing-v20-1-0:0.02em;
|
|
385
|
-
--magritte-typography-label-5-regular-text-indent-v20-1-0:0px;
|
|
386
|
-
--magritte-typography-label-5-regular-text-transform-v20-1-0:none;
|
|
387
|
-
--magritte-typography-label-5-regular-text-decoration-v20-1-0:none;
|
|
388
|
-
--magritte-typography-paragraph-1-regular-font-family-v20-1-0:"Inter";
|
|
389
|
-
--magritte-typography-paragraph-1-regular-font-weight-v20-1-0:400;
|
|
390
|
-
--magritte-typography-paragraph-1-regular-line-height-v20-1-0:28px;
|
|
391
|
-
--magritte-typography-paragraph-1-regular-font-size-v20-1-0:18px;
|
|
392
|
-
--magritte-typography-paragraph-1-regular-letter-spacing-v20-1-0:0em;
|
|
393
|
-
--magritte-typography-paragraph-1-regular-text-indent-v20-1-0:0px;
|
|
394
|
-
--magritte-typography-paragraph-1-regular-text-transform-v20-1-0:none;
|
|
395
|
-
--magritte-typography-paragraph-1-regular-text-decoration-v20-1-0:none;
|
|
396
|
-
--magritte-typography-paragraph-2-regular-font-family-v20-1-0:"Inter";
|
|
397
|
-
--magritte-typography-paragraph-2-regular-font-weight-v20-1-0:400;
|
|
398
|
-
--magritte-typography-paragraph-2-regular-line-height-v20-1-0:26px;
|
|
399
|
-
--magritte-typography-paragraph-2-regular-font-size-v20-1-0:16px;
|
|
400
|
-
--magritte-typography-paragraph-2-regular-letter-spacing-v20-1-0:0.005em;
|
|
401
|
-
--magritte-typography-paragraph-2-regular-text-indent-v20-1-0:0px;
|
|
402
|
-
--magritte-typography-paragraph-2-regular-text-transform-v20-1-0:none;
|
|
403
|
-
--magritte-typography-paragraph-2-regular-text-decoration-v20-1-0:none;
|
|
404
|
-
--magritte-typography-paragraph-3-regular-font-family-v20-1-0:"Inter";
|
|
405
|
-
--magritte-typography-paragraph-3-regular-font-weight-v20-1-0:400;
|
|
406
|
-
--magritte-typography-paragraph-3-regular-line-height-v20-1-0:24px;
|
|
407
|
-
--magritte-typography-paragraph-3-regular-font-size-v20-1-0:14px;
|
|
408
|
-
--magritte-typography-paragraph-3-regular-letter-spacing-v20-1-0:0.01em;
|
|
409
|
-
--magritte-typography-paragraph-3-regular-text-indent-v20-1-0:0px;
|
|
410
|
-
--magritte-typography-paragraph-3-regular-text-transform-v20-1-0:none;
|
|
411
|
-
--magritte-typography-paragraph-3-regular-text-decoration-v20-1-0:none;
|
|
412
|
-
--magritte-typography-paragraph-4-regular-font-family-v20-1-0:"Inter";
|
|
413
|
-
--magritte-typography-paragraph-4-regular-font-weight-v20-1-0:400;
|
|
414
|
-
--magritte-typography-paragraph-4-regular-line-height-v20-1-0:22px;
|
|
415
|
-
--magritte-typography-paragraph-4-regular-font-size-v20-1-0:12px;
|
|
416
|
-
--magritte-typography-paragraph-4-regular-letter-spacing-v20-1-0:0.015em;
|
|
417
|
-
--magritte-typography-paragraph-4-regular-text-indent-v20-1-0:0px;
|
|
418
|
-
--magritte-typography-paragraph-4-regular-text-transform-v20-1-0:none;
|
|
419
|
-
--magritte-typography-paragraph-4-regular-text-decoration-v20-1-0:none;
|
|
420
|
-
--magritte-typography-_custom-1-semibold-font-family-v20-1-0:"Inter";
|
|
421
|
-
--magritte-typography-_custom-1-semibold-font-weight-v20-1-0:600;
|
|
422
|
-
--magritte-typography-_custom-1-semibold-line-height-v20-1-0:28px;
|
|
423
|
-
--magritte-typography-_custom-1-semibold-font-size-v20-1-0:18px;
|
|
424
|
-
--magritte-typography-_custom-1-semibold-letter-spacing-v20-1-0:0em;
|
|
425
|
-
--magritte-typography-_custom-1-semibold-text-indent-v20-1-0:0px;
|
|
426
|
-
--magritte-typography-_custom-1-semibold-text-transform-v20-1-0:none;
|
|
427
|
-
--magritte-typography-_custom-1-semibold-text-decoration-v20-1-0:none;
|
|
428
|
-
--magritte-typography-_custom-2-semibold-font-family-v20-1-0:"Inter";
|
|
429
|
-
--magritte-typography-_custom-2-semibold-font-weight-v20-1-0:600;
|
|
430
|
-
--magritte-typography-_custom-2-semibold-line-height-v20-1-0:26px;
|
|
431
|
-
--magritte-typography-_custom-2-semibold-font-size-v20-1-0:16px;
|
|
432
|
-
--magritte-typography-_custom-2-semibold-letter-spacing-v20-1-0:0.005em;
|
|
433
|
-
--magritte-typography-_custom-2-semibold-text-indent-v20-1-0:0px;
|
|
434
|
-
--magritte-typography-_custom-2-semibold-text-transform-v20-1-0:none;
|
|
435
|
-
--magritte-typography-_custom-2-semibold-text-decoration-v20-1-0:none;
|
|
436
|
-
--magritte-typography-_custom-3-semibold-font-family-v20-1-0:"Inter";
|
|
437
|
-
--magritte-typography-_custom-3-semibold-font-weight-v20-1-0:600;
|
|
438
|
-
--magritte-typography-_custom-3-semibold-line-height-v20-1-0:24px;
|
|
439
|
-
--magritte-typography-_custom-3-semibold-font-size-v20-1-0:14px;
|
|
440
|
-
--magritte-typography-_custom-3-semibold-letter-spacing-v20-1-0:0.01em;
|
|
441
|
-
--magritte-typography-_custom-3-semibold-text-indent-v20-1-0:0px;
|
|
442
|
-
--magritte-typography-_custom-3-semibold-text-transform-v20-1-0:none;
|
|
443
|
-
--magritte-typography-_custom-3-semibold-text-decoration-v20-1-0:none;
|
|
444
|
-
--magritte-typography-_custom-4-semibold-font-family-v20-1-0:"Inter";
|
|
445
|
-
--magritte-typography-_custom-4-semibold-font-weight-v20-1-0:400;
|
|
446
|
-
--magritte-typography-_custom-4-semibold-line-height-v20-1-0:22px;
|
|
447
|
-
--magritte-typography-_custom-4-semibold-font-size-v20-1-0:12px;
|
|
448
|
-
--magritte-typography-_custom-4-semibold-letter-spacing-v20-1-0:0.015em;
|
|
449
|
-
--magritte-typography-_custom-4-semibold-text-indent-v20-1-0:0px;
|
|
450
|
-
--magritte-typography-_custom-4-semibold-text-transform-v20-1-0:none;
|
|
451
|
-
--magritte-typography-_custom-4-semibold-text-decoration-v20-1-0:none;
|
|
452
|
-
--magritte-typography-_custom-5-semibold-font-family-v20-1-0:"Inter";
|
|
453
|
-
--magritte-typography-_custom-5-semibold-font-weight-v20-1-0:400;
|
|
454
|
-
--magritte-typography-_custom-5-semibold-line-height-v20-1-0:12px;
|
|
455
|
-
--magritte-typography-_custom-5-semibold-font-size-v20-1-0:10px;
|
|
456
|
-
--magritte-typography-_custom-5-semibold-letter-spacing-v20-1-0:0.015em;
|
|
457
|
-
--magritte-typography-_custom-5-semibold-text-indent-v20-1-0:0px;
|
|
458
|
-
--magritte-typography-_custom-5-semibold-text-transform-v20-1-0:none;
|
|
459
|
-
--magritte-typography-_custom-5-semibold-text-decoration-v20-1-0:none;
|
|
460
|
-
--magritte-typography-_custom-1-medium-font-family-v20-1-0:"Inter";
|
|
461
|
-
--magritte-typography-_custom-1-medium-font-weight-v20-1-0:undefined;
|
|
462
|
-
--magritte-typography-_custom-1-medium-line-height-v20-1-0:28px;
|
|
463
|
-
--magritte-typography-_custom-1-medium-font-size-v20-1-0:18px;
|
|
464
|
-
--magritte-typography-_custom-1-medium-letter-spacing-v20-1-0:0em;
|
|
465
|
-
--magritte-typography-_custom-1-medium-text-indent-v20-1-0:0px;
|
|
466
|
-
--magritte-typography-_custom-1-medium-text-transform-v20-1-0:none;
|
|
467
|
-
--magritte-typography-_custom-1-medium-text-decoration-v20-1-0:none;
|
|
468
|
-
--magritte-typography-_custom-2-medium-font-family-v20-1-0:"Inter";
|
|
469
|
-
--magritte-typography-_custom-2-medium-font-weight-v20-1-0:undefined;
|
|
470
|
-
--magritte-typography-_custom-2-medium-line-height-v20-1-0:26px;
|
|
471
|
-
--magritte-typography-_custom-2-medium-font-size-v20-1-0:16px;
|
|
472
|
-
--magritte-typography-_custom-2-medium-letter-spacing-v20-1-0:0.005em;
|
|
473
|
-
--magritte-typography-_custom-2-medium-text-indent-v20-1-0:0px;
|
|
474
|
-
--magritte-typography-_custom-2-medium-text-transform-v20-1-0:none;
|
|
475
|
-
--magritte-typography-_custom-2-medium-text-decoration-v20-1-0:none;
|
|
476
|
-
--magritte-typography-_custom-3-medium-font-family-v20-1-0:"Inter";
|
|
477
|
-
--magritte-typography-_custom-3-medium-font-weight-v20-1-0:undefined;
|
|
478
|
-
--magritte-typography-_custom-3-medium-line-height-v20-1-0:24px;
|
|
479
|
-
--magritte-typography-_custom-3-medium-font-size-v20-1-0:14px;
|
|
480
|
-
--magritte-typography-_custom-3-medium-letter-spacing-v20-1-0:0.01em;
|
|
481
|
-
--magritte-typography-_custom-3-medium-text-indent-v20-1-0:0px;
|
|
482
|
-
--magritte-typography-_custom-3-medium-text-transform-v20-1-0:none;
|
|
483
|
-
--magritte-typography-_custom-3-medium-text-decoration-v20-1-0:none;
|
|
484
|
-
--magritte-typography-_custom-4-medium-font-family-v20-1-0:"Inter";
|
|
485
|
-
--magritte-typography-_custom-4-medium-font-weight-v20-1-0:undefined;
|
|
486
|
-
--magritte-typography-_custom-4-medium-line-height-v20-1-0:22px;
|
|
487
|
-
--magritte-typography-_custom-4-medium-font-size-v20-1-0:12px;
|
|
488
|
-
--magritte-typography-_custom-4-medium-letter-spacing-v20-1-0:0.015em;
|
|
489
|
-
--magritte-typography-_custom-4-medium-text-indent-v20-1-0:0px;
|
|
490
|
-
--magritte-typography-_custom-4-medium-text-transform-v20-1-0:none;
|
|
491
|
-
--magritte-typography-_custom-4-medium-text-decoration-v20-1-0:none;
|
|
492
|
-
--magritte-typography-_custom-5-medium-font-family-v20-1-0:"Inter";
|
|
493
|
-
--magritte-typography-_custom-5-medium-font-weight-v20-1-0:undefined;
|
|
494
|
-
--magritte-typography-_custom-5-medium-line-height-v20-1-0:12px;
|
|
495
|
-
--magritte-typography-_custom-5-medium-font-size-v20-1-0:10px;
|
|
496
|
-
--magritte-typography-_custom-5-medium-letter-spacing-v20-1-0:0.015em;
|
|
497
|
-
--magritte-typography-_custom-5-medium-text-indent-v20-1-0:0px;
|
|
498
|
-
--magritte-typography-_custom-5-medium-text-transform-v20-1-0:none;
|
|
499
|
-
--magritte-typography-_custom-5-medium-text-decoration-v20-1-0:none;
|
|
500
|
-
--magritte-typography-_custom-1-italic-font-family-v20-1-0:"Inter";
|
|
501
|
-
--magritte-typography-_custom-1-italic-font-weight-v20-1-0:200;
|
|
502
|
-
--magritte-typography-_custom-1-italic-line-height-v20-1-0:28px;
|
|
503
|
-
--magritte-typography-_custom-1-italic-font-size-v20-1-0:18px;
|
|
504
|
-
--magritte-typography-_custom-1-italic-letter-spacing-v20-1-0:0em;
|
|
505
|
-
--magritte-typography-_custom-1-italic-text-indent-v20-1-0:0px;
|
|
506
|
-
--magritte-typography-_custom-1-italic-text-transform-v20-1-0:none;
|
|
507
|
-
--magritte-typography-_custom-1-italic-text-decoration-v20-1-0:none;
|
|
508
|
-
--magritte-typography-_custom-2-italic-font-family-v20-1-0:"Inter";
|
|
509
|
-
--magritte-typography-_custom-2-italic-font-weight-v20-1-0:200;
|
|
510
|
-
--magritte-typography-_custom-2-italic-line-height-v20-1-0:26px;
|
|
511
|
-
--magritte-typography-_custom-2-italic-font-size-v20-1-0:16px;
|
|
512
|
-
--magritte-typography-_custom-2-italic-letter-spacing-v20-1-0:0.005em;
|
|
513
|
-
--magritte-typography-_custom-2-italic-text-indent-v20-1-0:0px;
|
|
514
|
-
--magritte-typography-_custom-2-italic-text-transform-v20-1-0:none;
|
|
515
|
-
--magritte-typography-_custom-2-italic-text-decoration-v20-1-0:none;
|
|
516
|
-
--magritte-typography-_custom-3-italic-font-family-v20-1-0:"Inter";
|
|
517
|
-
--magritte-typography-_custom-3-italic-font-weight-v20-1-0:200;
|
|
518
|
-
--magritte-typography-_custom-3-italic-line-height-v20-1-0:24px;
|
|
519
|
-
--magritte-typography-_custom-3-italic-font-size-v20-1-0:14px;
|
|
520
|
-
--magritte-typography-_custom-3-italic-letter-spacing-v20-1-0:0.01em;
|
|
521
|
-
--magritte-typography-_custom-3-italic-text-indent-v20-1-0:0px;
|
|
522
|
-
--magritte-typography-_custom-3-italic-text-transform-v20-1-0:none;
|
|
523
|
-
--magritte-typography-_custom-3-italic-text-decoration-v20-1-0:none;
|
|
524
|
-
--magritte-typography-_custom-4-italic-font-family-v20-1-0:"Inter";
|
|
525
|
-
--magritte-typography-_custom-4-italic-font-weight-v20-1-0:200;
|
|
526
|
-
--magritte-typography-_custom-4-italic-line-height-v20-1-0:22px;
|
|
527
|
-
--magritte-typography-_custom-4-italic-font-size-v20-1-0:12px;
|
|
528
|
-
--magritte-typography-_custom-4-italic-letter-spacing-v20-1-0:0.015em;
|
|
529
|
-
--magritte-typography-_custom-4-italic-text-indent-v20-1-0:0px;
|
|
530
|
-
--magritte-typography-_custom-4-italic-text-transform-v20-1-0:none;
|
|
531
|
-
--magritte-typography-_custom-4-italic-text-decoration-v20-1-0:none;
|
|
532
|
-
--magritte-typography-_custom-5-italic-font-family-v20-1-0:"Inter";
|
|
533
|
-
--magritte-typography-_custom-5-italic-font-weight-v20-1-0:200;
|
|
534
|
-
--magritte-typography-_custom-5-italic-line-height-v20-1-0:12px;
|
|
535
|
-
--magritte-typography-_custom-5-italic-font-size-v20-1-0:10px;
|
|
536
|
-
--magritte-typography-_custom-5-italic-letter-spacing-v20-1-0:0.015em;
|
|
537
|
-
--magritte-typography-_custom-5-italic-text-indent-v20-1-0:0px;
|
|
538
|
-
--magritte-typography-_custom-5-italic-text-transform-v20-1-0:none;
|
|
539
|
-
--magritte-typography-_custom-5-italic-text-decoration-v20-1-0:none;
|
|
540
|
-
}
|
|
541
|
-
.magritte-chips-section-container___Z7N-E_6-4-18{
|
|
11
|
+
.magritte-chips-section-container___Z7N-E_6-4-20{
|
|
542
12
|
display:flex;
|
|
543
13
|
gap:12px;
|
|
544
14
|
flex:1 1;
|
|
545
15
|
flex-wrap:wrap;
|
|
546
16
|
}
|
|
547
|
-
.magritte-chips-section-container_with-other-items___eJZAr_6-4-
|
|
17
|
+
.magritte-chips-section-container_with-other-items___eJZAr_6-4-20{
|
|
548
18
|
padding-bottom:16px;
|
|
549
19
|
}
|
|
550
|
-
.magritte-suggest-items-container___SKj-g_6-4-
|
|
20
|
+
.magritte-suggest-items-container___SKj-g_6-4-20{
|
|
551
21
|
display:flex;
|
|
552
22
|
flex-direction:column;
|
|
553
23
|
}
|
|
554
|
-
.magritte-suggest-items-container___SKj-g_6-4-
|
|
24
|
+
.magritte-suggest-items-container___SKj-g_6-4-20 .focus-visible{
|
|
555
25
|
z-index:1;
|
|
556
26
|
position:relative;
|
|
557
27
|
}
|
|
558
|
-
.magritte-suggest-items-container-wrapper___T2L5U_6-4-
|
|
559
|
-
padding:var(--magritte-static-space-400-
|
|
560
|
-
margin:calc(-1 * var(--magritte-static-space-400-
|
|
28
|
+
.magritte-suggest-items-container-wrapper___T2L5U_6-4-20{
|
|
29
|
+
padding:var(--magritte-static-space-400-v21-0-0);
|
|
30
|
+
margin:calc(-1 * var(--magritte-static-space-400-v21-0-0));
|
|
561
31
|
display:flex;
|
|
562
32
|
flex-direction:column;
|
|
563
33
|
}
|
|
564
34
|
@media (min-width: 1020px){
|
|
565
|
-
body.magritte-old-layout .magritte-suggest-items-container-wrapper___T2L5U_6-4-
|
|
566
|
-
padding:var(--magritte-static-space-300-
|
|
35
|
+
body.magritte-old-layout .magritte-suggest-items-container-wrapper___T2L5U_6-4-20{
|
|
36
|
+
padding:var(--magritte-static-space-300-v21-0-0);
|
|
567
37
|
}
|
|
568
38
|
}
|
|
569
39
|
@media (min-width: 1024px){
|
|
570
|
-
body:not(.magritte-old-layout) .magritte-suggest-items-container-wrapper___T2L5U_6-4-
|
|
571
|
-
padding:var(--magritte-static-space-300-
|
|
40
|
+
body:not(.magritte-old-layout) .magritte-suggest-items-container-wrapper___T2L5U_6-4-20{
|
|
41
|
+
padding:var(--magritte-static-space-300-v21-0-0);
|
|
572
42
|
}
|
|
573
43
|
}
|
|
574
|
-
.magritte-suggest-input-container___l3OkM_6-4-
|
|
44
|
+
.magritte-suggest-input-container___l3OkM_6-4-20{
|
|
575
45
|
--magritte-ui-input-caret-color-override:transparent;
|
|
576
46
|
display:inline-block;
|
|
577
47
|
width:100%;
|
|
578
48
|
}
|
|
579
49
|
@media (min-width: 700px){
|
|
580
|
-
body.magritte-old-layout .magritte-suggest-input-container___l3OkM_6-4-
|
|
581
|
-
--magritte-ui-input-caret-color-override:var(--magritte-color-text-primary-
|
|
50
|
+
body.magritte-old-layout .magritte-suggest-input-container___l3OkM_6-4-20{
|
|
51
|
+
--magritte-ui-input-caret-color-override:var(--magritte-color-text-primary-v21-0-0);
|
|
582
52
|
}
|
|
583
53
|
}
|
|
584
54
|
@media (min-width: 600px){
|
|
585
|
-
body:not(.magritte-old-layout) .magritte-suggest-input-container___l3OkM_6-4-
|
|
586
|
-
--magritte-ui-input-caret-color-override:var(--magritte-color-text-primary-
|
|
55
|
+
body:not(.magritte-old-layout) .magritte-suggest-input-container___l3OkM_6-4-20{
|
|
56
|
+
--magritte-ui-input-caret-color-override:var(--magritte-color-text-primary-v21-0-0);
|
|
587
57
|
}
|
|
588
58
|
}
|
|
589
|
-
.magritte-bottom-sheet-input-hide-caret___ikoig_6-4-
|
|
59
|
+
.magritte-bottom-sheet-input-hide-caret___ikoig_6-4-20{
|
|
590
60
|
--magritte-ui-input-caret-color-override:transparent;
|
|
591
61
|
}
|
|
592
|
-
.magritte-error-wrapper___Ui4xt_6-4-
|
|
62
|
+
.magritte-error-wrapper___Ui4xt_6-4-20{
|
|
593
63
|
height:100%;
|
|
594
64
|
}
|
package/index.js
CHANGED
|
@@ -14,7 +14,7 @@ import '@hh.ru/magritte-ui-button';
|
|
|
14
14
|
import '@hh.ru/magritte-ui-drop';
|
|
15
15
|
import '@hh.ru/magritte-ui-icon/icon';
|
|
16
16
|
import '@hh.ru/magritte-ui-navigation-bar';
|
|
17
|
-
import './sectionRenderers-
|
|
17
|
+
import './sectionRenderers-C2PFOLF0.js';
|
|
18
18
|
import '@hh.ru/magritte-ui-card';
|
|
19
19
|
import '@hh.ru/magritte-ui-cell';
|
|
20
20
|
import '@hh.ru/magritte-ui-chips';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hh.ru/magritte-ui-suggest",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.20",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"sideEffects": [
|
|
@@ -24,21 +24,21 @@
|
|
|
24
24
|
"@hh.ru/magritte-common-fuzzy-search": "1.0.5",
|
|
25
25
|
"@hh.ru/magritte-common-keyboard": "4.0.3",
|
|
26
26
|
"@hh.ru/magritte-common-use-multiple-refs": "1.1.5",
|
|
27
|
-
"@hh.ru/magritte-design-tokens": "
|
|
28
|
-
"@hh.ru/magritte-ui-bottom-sheet": "5.5.
|
|
27
|
+
"@hh.ru/magritte-design-tokens": "21.0.0",
|
|
28
|
+
"@hh.ru/magritte-ui-bottom-sheet": "5.5.29",
|
|
29
29
|
"@hh.ru/magritte-ui-breakpoint": "5.0.0",
|
|
30
|
-
"@hh.ru/magritte-ui-button": "5.2.
|
|
31
|
-
"@hh.ru/magritte-ui-card": "6.1.
|
|
32
|
-
"@hh.ru/magritte-ui-cell": "4.0.
|
|
33
|
-
"@hh.ru/magritte-ui-chips": "5.3.
|
|
34
|
-
"@hh.ru/magritte-ui-drop": "7.2.
|
|
35
|
-
"@hh.ru/magritte-ui-icon": "7.9.
|
|
36
|
-
"@hh.ru/magritte-ui-input": "7.1.
|
|
30
|
+
"@hh.ru/magritte-ui-button": "5.2.15",
|
|
31
|
+
"@hh.ru/magritte-ui-card": "6.1.26",
|
|
32
|
+
"@hh.ru/magritte-ui-cell": "4.0.30",
|
|
33
|
+
"@hh.ru/magritte-ui-chips": "5.3.5",
|
|
34
|
+
"@hh.ru/magritte-ui-drop": "7.2.12",
|
|
35
|
+
"@hh.ru/magritte-ui-icon": "7.9.11",
|
|
36
|
+
"@hh.ru/magritte-ui-input": "7.1.5",
|
|
37
37
|
"@hh.ru/magritte-ui-mock-component": "1.0.12",
|
|
38
|
-
"@hh.ru/magritte-ui-navigation-bar": "6.3.
|
|
39
|
-
"@hh.ru/magritte-ui-theme-provider": "1.1.
|
|
40
|
-
"@hh.ru/magritte-ui-trigger": "3.0.
|
|
41
|
-
"@hh.ru/magritte-ui-typography": "3.0.
|
|
38
|
+
"@hh.ru/magritte-ui-navigation-bar": "6.3.17",
|
|
39
|
+
"@hh.ru/magritte-ui-theme-provider": "1.1.36",
|
|
40
|
+
"@hh.ru/magritte-ui-trigger": "3.0.15",
|
|
41
|
+
"@hh.ru/magritte-ui-typography": "3.0.26"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"axios": ">=0.26.0",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "63be4e0bc30632fe572103a23a41e0550a561693"
|
|
52
52
|
}
|
|
@@ -8,7 +8,7 @@ import { Cell } from '@hh.ru/magritte-ui-cell';
|
|
|
8
8
|
import { CustomChip } from '@hh.ru/magritte-ui-chips';
|
|
9
9
|
import { Text } from '@hh.ru/magritte-ui-typography';
|
|
10
10
|
|
|
11
|
-
var styles = {"chips-section-container":"magritte-chips-section-container___Z7N-E_6-4-
|
|
11
|
+
var styles = {"chips-section-container":"magritte-chips-section-container___Z7N-E_6-4-20","chipsSectionContainer":"magritte-chips-section-container___Z7N-E_6-4-20","chips-section-container_with-other-items":"magritte-chips-section-container_with-other-items___eJZAr_6-4-20","chipsSectionContainerWithOtherItems":"magritte-chips-section-container_with-other-items___eJZAr_6-4-20","suggest-items-container":"magritte-suggest-items-container___SKj-g_6-4-20","suggestItemsContainer":"magritte-suggest-items-container___SKj-g_6-4-20","suggest-items-container-wrapper":"magritte-suggest-items-container-wrapper___T2L5U_6-4-20","suggestItemsContainerWrapper":"magritte-suggest-items-container-wrapper___T2L5U_6-4-20","suggest-input-container":"magritte-suggest-input-container___l3OkM_6-4-20","suggestInputContainer":"magritte-suggest-input-container___l3OkM_6-4-20","bottom-sheet-input-hide-caret":"magritte-bottom-sheet-input-hide-caret___ikoig_6-4-20","bottomSheetInputHideCaret":"magritte-bottom-sheet-input-hide-caret___ikoig_6-4-20","error-wrapper":"magritte-error-wrapper___Ui4xt_6-4-20","errorWrapper":"magritte-error-wrapper___Ui4xt_6-4-20"};
|
|
12
12
|
|
|
13
13
|
const cellSectionRenderer = (section, sectionId, onValueSelect, breakpoint) => {
|
|
14
14
|
return section.items.map((item) => {
|
|
@@ -45,4 +45,4 @@ const renderSection = (section, sectionId, onValueSelect, breakpoint, length, ha
|
|
|
45
45
|
};
|
|
46
46
|
|
|
47
47
|
export { renderSection as r, styles as s };
|
|
48
|
-
//# sourceMappingURL=sectionRenderers-
|
|
48
|
+
//# sourceMappingURL=sectionRenderers-C2PFOLF0.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sectionRenderers-
|
|
1
|
+
{"version":3,"file":"sectionRenderers-C2PFOLF0.js","sources":["../src/sectionRenderers.tsx"],"sourcesContent":["import classnames from 'classnames';\n\nimport { Breakpoint } from '@hh.ru/magritte-ui-breakpoint';\nimport { Card } from '@hh.ru/magritte-ui-card';\nimport { Cell } from '@hh.ru/magritte-ui-cell';\nimport { CustomChip } from '@hh.ru/magritte-ui-chips';\nimport { DataSection, DataSectionOfType } from '@hh.ru/magritte-ui-suggest/types';\nimport { Text } from '@hh.ru/magritte-ui-typography';\n\nimport styles from './suggest.less';\n\ninterface ValueSelectHandler<K> {\n (value: string, data: K | undefined): void;\n}\n\ninterface SectionRenderer<T extends DataSection['type'], K = unknown> {\n (\n section: DataSectionOfType<T>,\n sectionId: number,\n onValueSelect: ValueSelectHandler<K>,\n breakpoint: Breakpoint,\n length: number,\n haveBottomContent: boolean\n ): JSX.Element[] | JSX.Element;\n}\n\nconst cellSectionRenderer: SectionRenderer<'cells'> = (section, sectionId, onValueSelect, breakpoint) => {\n return section.items.map((item) => {\n return (\n <Card\n style=\"blank\"\n stretched\n hoverStyle=\"neutral\"\n onMouseDown={(event) => {\n event.preventDefault();\n }}\n onClick={(event) => {\n event.preventDefault();\n onValueSelect(item.value, item.data);\n }}\n actionCard\n padding={[Breakpoint.XS, Breakpoint.S].includes(breakpoint) ? 0 : 12}\n paddingTop={12}\n paddingBottom={12}\n borderRadius={12}\n key={`cell_${sectionId}_${item.value}`}\n data-qa=\"suggest-item-cell\"\n >\n <Cell {...item.componentProps} onClick={undefined} />\n </Card>\n );\n });\n};\n\nconst chipsSectionRenderer: SectionRenderer<'chips'> = (\n section,\n sectionId,\n onValueSelect,\n _,\n length,\n haveBottomContent\n) => {\n return (\n <div\n className={classnames(styles.chipsSectionContainer, {\n // чипсы - не последний элемент или есть нижний контент\n [styles.chipsSectionContainerWithOtherItems]: sectionId !== length - 1 || haveBottomContent,\n })}\n key={`chips_section_${sectionId}`}\n >\n {section.items.map((item) => {\n return (\n <CustomChip\n {...(item.componentProps || {})}\n key={`chips_${sectionId}_${item.value}`}\n onMouseDown={(event) => event.preventDefault()}\n onClick={() => onValueSelect(item.value, item.data)}\n data-qa=\"suggest-item-chips\"\n >\n {item.value}\n </CustomChip>\n );\n })}\n </div>\n );\n};\n\nconst delimiterSectionRenderer: SectionRenderer<'delimiter'> = (section, _, __, breakpoint) => {\n return [\n <Card\n style=\"blank\"\n stretched\n padding={[Breakpoint.XS, Breakpoint.S].includes(breakpoint) ? 0 : 12}\n paddingTop={8}\n paddingBottom={8}\n key={`delimiter_${section.text}`}\n data-qa=\"suggest-item-delimiter\"\n >\n <Text style=\"secondary\" typography=\"label-3-regular\">\n {section.text}\n </Text>\n </Card>,\n ];\n};\n\nconst SECTION_TYPE_TO_RENDERER_MAP: { [K in DataSection['type']]: SectionRenderer<K> } = {\n cells: cellSectionRenderer,\n chips: chipsSectionRenderer,\n delimiter: delimiterSectionRenderer,\n};\n\nexport const renderSection = <T, K extends DataSection['type']>(\n section: DataSectionOfType<K>,\n sectionId: number,\n onValueSelect: ValueSelectHandler<T>,\n breakpoint: Breakpoint,\n length: number,\n haveBottomContent: boolean\n): JSX.Element[] => {\n const renderer = SECTION_TYPE_TO_RENDERER_MAP[section.type];\n const result = renderer(\n section,\n sectionId,\n onValueSelect as ValueSelectHandler<unknown>,\n breakpoint,\n length,\n haveBottomContent\n );\n return Array.isArray(result) ? result : [result];\n};\n"],"names":["_jsx","_createElement"],"mappings":"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"}
|
package/sectionRenderers.js
CHANGED
|
@@ -7,5 +7,5 @@ import '@hh.ru/magritte-ui-card';
|
|
|
7
7
|
import '@hh.ru/magritte-ui-cell';
|
|
8
8
|
import '@hh.ru/magritte-ui-chips';
|
|
9
9
|
import '@hh.ru/magritte-ui-typography';
|
|
10
|
-
export { r as renderSection } from './sectionRenderers-
|
|
10
|
+
export { r as renderSection } from './sectionRenderers-C2PFOLF0.js';
|
|
11
11
|
//# sourceMappingURL=sectionRenderers.js.map
|