@alfalab/core-components-picker-button 11.12.21 → 11.12.23

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.
Files changed (50) hide show
  1. package/{esm/component-8bdd19d3.d.ts → component-ee751dcf.d.ts} +11 -5
  2. package/{component-03d088c4.d.ts → component-f0afaf5b.d.ts} +5 -2
  3. package/{component-8bdd19d3.d.ts → cssm/component-ee751dcf.d.ts} +11 -5
  4. package/{modern/component-03d088c4.d.ts → cssm/component-f0afaf5b.d.ts} +5 -2
  5. package/cssm/field/index.module.css +1 -1
  6. package/cssm/index-281accb7.d.ts +5 -2
  7. package/{esm/index-03d088c4.d.ts → cssm/index-f0afaf5b.d.ts} +5 -2
  8. package/cssm/index.module.css +1 -1
  9. package/cssm/option/index.module.css +1 -1
  10. package/cssm/typings-d515b24c.d.ts +6 -2
  11. package/desktop/Component.desktop.js +1 -1
  12. package/{modern/component-8bdd19d3.d.ts → esm/component-ee751dcf.d.ts} +11 -5
  13. package/{cssm/component-03d088c4.d.ts → esm/component-f0afaf5b.d.ts} +5 -2
  14. package/esm/desktop/Component.desktop.js +1 -1
  15. package/esm/field/Component.js +1 -1
  16. package/esm/field/index.css +7 -7
  17. package/esm/index-281accb7.d.ts +5 -2
  18. package/{cssm/index-03d088c4.d.ts → esm/index-f0afaf5b.d.ts} +5 -2
  19. package/esm/index.css +6 -6
  20. package/esm/option/Component.js +1 -1
  21. package/esm/option/index.css +5 -5
  22. package/esm/typings-d515b24c.d.ts +6 -2
  23. package/field/Component.js +1 -1
  24. package/field/index.css +7 -7
  25. package/index-281accb7.d.ts +5 -2
  26. package/{index-03d088c4.d.ts → index-f0afaf5b.d.ts} +5 -2
  27. package/index.css +6 -6
  28. package/{cssm/component-8bdd19d3.d.ts → modern/component-ee751dcf.d.ts} +11 -5
  29. package/{esm/component-03d088c4.d.ts → modern/component-f0afaf5b.d.ts} +5 -2
  30. package/modern/desktop/Component.desktop.js +1 -1
  31. package/modern/field/Component.js +1 -1
  32. package/modern/field/index.css +7 -7
  33. package/modern/index-281accb7.d.ts +5 -2
  34. package/modern/{index-03d088c4.d.ts → index-f0afaf5b.d.ts} +5 -2
  35. package/modern/index.css +6 -6
  36. package/modern/option/Component.js +1 -1
  37. package/modern/option/index.css +5 -5
  38. package/modern/typings-d515b24c.d.ts +6 -2
  39. package/moderncssm/component-ee751dcf.d.ts +129 -0
  40. package/moderncssm/component-f0afaf5b.d.ts +43 -0
  41. package/moderncssm/index-281accb7.d.ts +5 -2
  42. package/moderncssm/index-f0afaf5b.d.ts +23 -0
  43. package/moderncssm/typings-d515b24c.d.ts +6 -2
  44. package/option/Component.js +1 -1
  45. package/option/index.css +5 -5
  46. package/package.json +4 -4
  47. package/typings-d515b24c.d.ts +6 -2
  48. package/moderncssm/component-03d088c4.d.ts +0 -40
  49. package/moderncssm/component-8bdd19d3.d.ts +0 -123
  50. package/moderncssm/index-03d088c4.d.ts +0 -20
@@ -3,7 +3,7 @@ import React from 'react';
3
3
  import { HTMLAttributes } from "react";
4
4
  import { Color } from "./colors-2c123cbc";
5
5
  import { TextSkeletonProps } from "./types-1328ead9";
6
- declare function getDefaultWeight(font: "styrene" | "system", platform: "mobile" | "desktop"): "medium" | "bold" | "semibold";
6
+ declare function getDefaultWeight(font: "styrene" | "system" | "alfasans", platform: "mobile" | "desktop"): "medium" | "bold" | "semibold";
7
7
  type NativeProps = HTMLAttributes<HTMLHeadingElement>;
8
8
  type TitleProps = Omit<NativeProps, 'color'> & {
9
9
  /**
@@ -11,7 +11,7 @@ type TitleProps = Omit<NativeProps, 'color'> & {
11
11
  */
12
12
  tag: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
13
13
  /**
14
- * [Вариант начертания](https://core-ds.github.io/core-components/master/?path=/docs/guidelines-typography--page)
14
+ * [Вариант начертания](?path=/docs/guidelines-typography--page)
15
15
  */
16
16
  view?: 'xlarge' | 'large' | 'medium' | 'small' | 'xsmall';
17
17
  /**
@@ -25,7 +25,10 @@ type TitleProps = Omit<NativeProps, 'color'> & {
25
25
  /**
26
26
  * Шрифт текста
27
27
  */
28
- font?: 'styrene' | 'system';
28
+ font?: 'styrene' | 'system' | 'alfasans' | {
29
+ font: 'alfasans';
30
+ systemCompat: boolean;
31
+ };
29
32
  /**
30
33
  * Добавляет отступы
31
34
  */
@@ -72,7 +75,7 @@ declare const TitleBase: React.ForwardRefExoticComponent<Omit<NativeProps, "colo
72
75
  */
73
76
  tag: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
74
77
  /**
75
- * [Вариант начертания](https://core-ds.github.io/core-components/master/?path=/docs/guidelines-typography--page)
78
+ * [Вариант начертания](?path=/docs/guidelines-typography--page)
76
79
  */
77
80
  view?: "small" | "medium" | "large" | "xlarge" | "xsmall" | undefined;
78
81
  /**
@@ -86,7 +89,10 @@ declare const TitleBase: React.ForwardRefExoticComponent<Omit<NativeProps, "colo
86
89
  /**
87
90
  * Шрифт текста
88
91
  */
89
- font?: "styrene" | "system" | undefined;
92
+ font?: "alfasans" | "styrene" | "system" | {
93
+ font: 'alfasans';
94
+ systemCompat: boolean;
95
+ } | undefined;
90
96
  /**
91
97
  * Добавляет отступы
92
98
  */
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import React from 'react';
3
- import { TitleProps } from "./index-03d088c4";
3
+ import { TitleProps } from "./index-f0afaf5b";
4
4
  type TitleResponsiveProps = TitleProps & {
5
5
  /**
6
6
  * Контрольная точка, с нее начинается desktop версия
@@ -17,7 +17,10 @@ declare const TitleResponsive: React.ForwardRefExoticComponent<Omit<React.HTMLAt
17
17
  view?: "small" | "medium" | "large" | "xlarge" | "xsmall" | undefined;
18
18
  color?: "link" | "accent" | "primary" | "primary-inverted" | "secondary" | "secondary-inverted" | "tertiary" | "tertiary-inverted" | "attention" | "positive" | "negative" | "static-accent" | "disabled" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-positive" | undefined;
19
19
  weight?: "bold" | "medium" | "regular" | "semibold" | undefined;
20
- font?: "styrene" | "system" | undefined;
20
+ font?: "alfasans" | "styrene" | "system" | {
21
+ font: "alfasans";
22
+ systemCompat: boolean;
23
+ } | undefined;
21
24
  defaultMargins?: boolean | undefined;
22
25
  className?: string | undefined;
23
26
  dataTestId?: string | undefined;
@@ -3,7 +3,7 @@ import React from 'react';
3
3
  import { HTMLAttributes } from "react";
4
4
  import { Color } from "./colors-2c123cbc";
5
5
  import { TextSkeletonProps } from "./types-1328ead9";
6
- declare function getDefaultWeight(font: "styrene" | "system", platform: "mobile" | "desktop"): "medium" | "bold" | "semibold";
6
+ declare function getDefaultWeight(font: "styrene" | "system" | "alfasans", platform: "mobile" | "desktop"): "medium" | "bold" | "semibold";
7
7
  type NativeProps = HTMLAttributes<HTMLHeadingElement>;
8
8
  type TitleProps = Omit<NativeProps, 'color'> & {
9
9
  /**
@@ -11,7 +11,7 @@ type TitleProps = Omit<NativeProps, 'color'> & {
11
11
  */
12
12
  tag: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
13
13
  /**
14
- * [Вариант начертания](https://core-ds.github.io/core-components/master/?path=/docs/guidelines-typography--page)
14
+ * [Вариант начертания](?path=/docs/guidelines-typography--page)
15
15
  */
16
16
  view?: 'xlarge' | 'large' | 'medium' | 'small' | 'xsmall';
17
17
  /**
@@ -25,7 +25,10 @@ type TitleProps = Omit<NativeProps, 'color'> & {
25
25
  /**
26
26
  * Шрифт текста
27
27
  */
28
- font?: 'styrene' | 'system';
28
+ font?: 'styrene' | 'system' | 'alfasans' | {
29
+ font: 'alfasans';
30
+ systemCompat: boolean;
31
+ };
29
32
  /**
30
33
  * Добавляет отступы
31
34
  */
@@ -72,7 +75,7 @@ declare const TitleBase: React.ForwardRefExoticComponent<Omit<NativeProps, "colo
72
75
  */
73
76
  tag: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
74
77
  /**
75
- * [Вариант начертания](https://core-ds.github.io/core-components/master/?path=/docs/guidelines-typography--page)
78
+ * [Вариант начертания](?path=/docs/guidelines-typography--page)
76
79
  */
77
80
  view?: "small" | "medium" | "large" | "xlarge" | "xsmall" | undefined;
78
81
  /**
@@ -86,7 +89,10 @@ declare const TitleBase: React.ForwardRefExoticComponent<Omit<NativeProps, "colo
86
89
  /**
87
90
  * Шрифт текста
88
91
  */
89
- font?: "styrene" | "system" | undefined;
92
+ font?: "alfasans" | "styrene" | "system" | {
93
+ font: 'alfasans';
94
+ systemCompat: boolean;
95
+ } | undefined;
90
96
  /**
91
97
  * Добавляет отступы
92
98
  */
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import React from 'react';
3
- import { TitleProps } from "./index-03d088c4";
3
+ import { TitleProps } from "./index-f0afaf5b";
4
4
  type TitleResponsiveProps = TitleProps & {
5
5
  /**
6
6
  * Контрольная точка, с нее начинается desktop версия
@@ -17,7 +17,10 @@ declare const TitleResponsive: React.ForwardRefExoticComponent<Omit<React.HTMLAt
17
17
  view?: "small" | "medium" | "large" | "xlarge" | "xsmall" | undefined;
18
18
  color?: "link" | "accent" | "primary" | "primary-inverted" | "secondary" | "secondary-inverted" | "tertiary" | "tertiary-inverted" | "attention" | "positive" | "negative" | "static-accent" | "disabled" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-positive" | undefined;
19
19
  weight?: "bold" | "medium" | "regular" | "semibold" | undefined;
20
- font?: "styrene" | "system" | undefined;
20
+ font?: "alfasans" | "styrene" | "system" | {
21
+ font: "alfasans";
22
+ systemCompat: boolean;
23
+ } | undefined;
21
24
  defaultMargins?: boolean | undefined;
22
25
  className?: string | undefined;
23
26
  dataTestId?: string | undefined;
@@ -22,7 +22,7 @@
22
22
  /* stylelint-disable-next-line length-zero-no-unit */
23
23
  --gap-4: var(--gap-2xs);
24
24
  } :root {
25
- } :root {
25
+ } /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ :root {
26
26
  --arrow-transform: rotate(180deg);
27
27
  } /* сбрасывает синюю подсветку при нажатии */ .iconContainer {
28
28
  display: flex;
@@ -5,7 +5,10 @@ declare const TitleMobile: React.ForwardRefExoticComponent<Omit<React.HTMLAttrib
5
5
  view?: "small" | "medium" | "large" | "xlarge" | "xsmall" | undefined;
6
6
  color?: "link" | "accent" | "primary" | "primary-inverted" | "secondary" | "secondary-inverted" | "tertiary" | "tertiary-inverted" | "attention" | "positive" | "negative" | "static-accent" | "disabled" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-positive" | undefined;
7
7
  weight?: "bold" | "medium" | "regular" | "semibold" | undefined;
8
- font?: "styrene" | "system" | undefined;
8
+ font?: "alfasans" | "styrene" | "system" | {
9
+ font: "alfasans";
10
+ systemCompat: boolean;
11
+ } | undefined;
9
12
  defaultMargins?: boolean | undefined;
10
13
  className?: string | undefined;
11
14
  dataTestId?: string | undefined;
@@ -16,4 +19,4 @@ declare const TitleMobile: React.ForwardRefExoticComponent<Omit<React.HTMLAttrib
16
19
  defaultMatchMediaValue?: boolean | (() => boolean) | undefined;
17
20
  } & React.RefAttributes<HTMLDivElement | HTMLHeadingElement>>;
18
21
  export { TitleMobile };
19
- export type { TitleProps as TitleMobileProps } from "./component-8bdd19d3";
22
+ export type { TitleProps as TitleMobileProps } from "./component-ee751dcf";
@@ -1,12 +1,15 @@
1
1
  /// <reference types="react" />
2
2
  import React from 'react';
3
- import { TitleProps } from "./component-8bdd19d3";
3
+ import { TitleProps } from "./component-ee751dcf";
4
4
  declare const Title: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLHeadingElement>, "color"> & {
5
5
  tag: "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
6
6
  view?: "small" | "medium" | "large" | "xlarge" | "xsmall" | undefined;
7
7
  color?: "link" | "accent" | "primary" | "primary-inverted" | "secondary" | "secondary-inverted" | "tertiary" | "tertiary-inverted" | "attention" | "positive" | "negative" | "static-accent" | "disabled" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-positive" | undefined;
8
8
  weight?: "bold" | "medium" | "regular" | "semibold" | undefined;
9
- font?: "styrene" | "system" | undefined;
9
+ font?: "alfasans" | "styrene" | "system" | {
10
+ font: "alfasans";
11
+ systemCompat: boolean;
12
+ } | undefined;
10
13
  defaultMargins?: boolean | undefined;
11
14
  className?: string | undefined;
12
15
  dataTestId?: string | undefined;
@@ -24,7 +24,7 @@
24
24
  --gap-8: var(--gap-xs);
25
25
  --gap-16: var(--gap-m);
26
26
  } :root {
27
- } :root {
27
+ } /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ :root {
28
28
  } /* сбрасывает синюю подсветку при нажатии */ .container {
29
29
  min-width: auto;
30
30
  } :global(.cc-picker-button).optionsPopover.sideGap {
@@ -21,7 +21,7 @@
21
21
  /* stylelint-disable-next-line length-zero-no-unit */
22
22
  --gap-12: var(--gap-s);
23
23
  } :root {
24
- } :root {
24
+ } /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ :root {
25
25
  } /* сбрасывает синюю подсветку при нажатии */ .container {
26
26
  display: flex;
27
27
  align-items: center;
@@ -11,7 +11,7 @@ import { ModalResponsiveProps as ModalProps } from "./typings-4b7234ef";
11
11
  import { SwipeableHandlers, SwipeDirections } from "react-swipeable";
12
12
  import { Color } from "./colors-2c123cbc";
13
13
  import { TextElementType, TextSkeletonProps } from "./types-1328ead9";
14
- import { Title, TitleProps } from "./index-03d088c4";
14
+ import { Title, TitleProps } from "./index-f0afaf5b";
15
15
  import { TitleMobile, TitleMobileProps } from "./index-281accb7";
16
16
  import { FormControlProps } from "./index-c44170fe";
17
17
  import { PopoverProps } from "@alfalab/core-components-popover";
@@ -680,6 +680,10 @@ type TextBaseProps = {
680
680
  * Пропы для скелетона
681
681
  */
682
682
  skeletonProps?: TextSkeletonProps;
683
+ /**
684
+ * Шрифт текста
685
+ */
686
+ font?: "alfasans" | undefined | null;
683
687
  };
684
688
  type TextPTagProps = Omit<TextBaseProps, "tag" | "defaultMargins"> & {
685
689
  tag?: "p";
@@ -1483,7 +1487,7 @@ export { BottomSheet, CLOSE_OFFSET, HEADER_OFFSET, InputProps, Input, ModalRespo
1483
1487
  export type { BottomSheetProps, BottomSheetTitleAlign, HeaderProps as ModalHeaderProps, FooterProps as ModalFooterProps, TextProps };
1484
1488
  export { ModalResponsiveProps as ModalProps } from "./typings-4b7234ef";
1485
1489
  export type { ContentProps as ModalContentProps } from "./typings-4b7234ef";
1486
- export type { TitleProps } from "./index-03d088c4";
1490
+ export type { TitleProps } from "./index-f0afaf5b";
1487
1491
  export type { Color } from "./colors-2c123cbc";
1488
1492
  export * from "./Component.desktop-63dec22f";
1489
1493
  export * from "./Component.mobile-96988a65";
@@ -15,7 +15,7 @@ function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'defau
15
15
  var React__default = /*#__PURE__*/_interopDefaultCompat(React);
16
16
  var cn__default = /*#__PURE__*/_interopDefaultCompat(cn);
17
17
 
18
- var styles = {"container":"picker-button__container_1t4t8","optionsPopover":"picker-button__optionsPopover_1t4t8","sideGap":"picker-button__sideGap_1t4t8","option":"picker-button__option_1t4t8"};
18
+ var styles = {"container":"picker-button__container_1qljl","optionsPopover":"picker-button__optionsPopover_1qljl","sideGap":"picker-button__sideGap_1qljl","option":"picker-button__option_1qljl"};
19
19
  require('./../index.css')
20
20
 
21
21
  var SIDE_POSITIONS = ['right', 'right-start', 'right-end', 'left', 'left-start', 'left-end'];
@@ -3,7 +3,7 @@ import React from 'react';
3
3
  import { HTMLAttributes } from "react";
4
4
  import { Color } from "./colors-2c123cbc";
5
5
  import { TextSkeletonProps } from "./types-1328ead9";
6
- declare function getDefaultWeight(font: "styrene" | "system", platform: "mobile" | "desktop"): "medium" | "bold" | "semibold";
6
+ declare function getDefaultWeight(font: "styrene" | "system" | "alfasans", platform: "mobile" | "desktop"): "medium" | "bold" | "semibold";
7
7
  type NativeProps = HTMLAttributes<HTMLHeadingElement>;
8
8
  type TitleProps = Omit<NativeProps, 'color'> & {
9
9
  /**
@@ -11,7 +11,7 @@ type TitleProps = Omit<NativeProps, 'color'> & {
11
11
  */
12
12
  tag: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
13
13
  /**
14
- * [Вариант начертания](https://core-ds.github.io/core-components/master/?path=/docs/guidelines-typography--page)
14
+ * [Вариант начертания](?path=/docs/guidelines-typography--page)
15
15
  */
16
16
  view?: 'xlarge' | 'large' | 'medium' | 'small' | 'xsmall';
17
17
  /**
@@ -25,7 +25,10 @@ type TitleProps = Omit<NativeProps, 'color'> & {
25
25
  /**
26
26
  * Шрифт текста
27
27
  */
28
- font?: 'styrene' | 'system';
28
+ font?: 'styrene' | 'system' | 'alfasans' | {
29
+ font: 'alfasans';
30
+ systemCompat: boolean;
31
+ };
29
32
  /**
30
33
  * Добавляет отступы
31
34
  */
@@ -72,7 +75,7 @@ declare const TitleBase: React.ForwardRefExoticComponent<Omit<NativeProps, "colo
72
75
  */
73
76
  tag: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
74
77
  /**
75
- * [Вариант начертания](https://core-ds.github.io/core-components/master/?path=/docs/guidelines-typography--page)
78
+ * [Вариант начертания](?path=/docs/guidelines-typography--page)
76
79
  */
77
80
  view?: "small" | "medium" | "large" | "xlarge" | "xsmall" | undefined;
78
81
  /**
@@ -86,7 +89,10 @@ declare const TitleBase: React.ForwardRefExoticComponent<Omit<NativeProps, "colo
86
89
  /**
87
90
  * Шрифт текста
88
91
  */
89
- font?: "styrene" | "system" | undefined;
92
+ font?: "alfasans" | "styrene" | "system" | {
93
+ font: 'alfasans';
94
+ systemCompat: boolean;
95
+ } | undefined;
90
96
  /**
91
97
  * Добавляет отступы
92
98
  */
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import React from 'react';
3
- import { TitleProps } from "./index-03d088c4";
3
+ import { TitleProps } from "./index-f0afaf5b";
4
4
  type TitleResponsiveProps = TitleProps & {
5
5
  /**
6
6
  * Контрольная точка, с нее начинается desktop версия
@@ -17,7 +17,10 @@ declare const TitleResponsive: React.ForwardRefExoticComponent<Omit<React.HTMLAt
17
17
  view?: "small" | "medium" | "large" | "xlarge" | "xsmall" | undefined;
18
18
  color?: "link" | "accent" | "primary" | "primary-inverted" | "secondary" | "secondary-inverted" | "tertiary" | "tertiary-inverted" | "attention" | "positive" | "negative" | "static-accent" | "disabled" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-positive" | undefined;
19
19
  weight?: "bold" | "medium" | "regular" | "semibold" | undefined;
20
- font?: "styrene" | "system" | undefined;
20
+ font?: "alfasans" | "styrene" | "system" | {
21
+ font: "alfasans";
22
+ systemCompat: boolean;
23
+ } | undefined;
21
24
  defaultMargins?: boolean | undefined;
22
25
  className?: string | undefined;
23
26
  dataTestId?: string | undefined;
@@ -6,7 +6,7 @@ import { BaseSelect, OptionsList, Optgroup } from '@alfalab/core-components-sele
6
6
  import { Field } from '../field/Component.js';
7
7
  import { Option } from '../option/Component.js';
8
8
 
9
- var styles = {"container":"picker-button__container_1t4t8","optionsPopover":"picker-button__optionsPopover_1t4t8","sideGap":"picker-button__sideGap_1t4t8","option":"picker-button__option_1t4t8"};
9
+ var styles = {"container":"picker-button__container_1qljl","optionsPopover":"picker-button__optionsPopover_1qljl","sideGap":"picker-button__sideGap_1qljl","option":"picker-button__option_1qljl"};
10
10
  require('./../index.css')
11
11
 
12
12
  var SIDE_POSITIONS = ['right', 'right-start', 'right-end', 'left', 'left-start', 'left-end'];
@@ -4,7 +4,7 @@ import cn from 'classnames';
4
4
  import { Button } from '@alfalab/core-components-button/esm';
5
5
  import { getIcon } from '../utils/index.js';
6
6
 
7
- var styles = {"iconContainer":"picker-button__iconContainer_eeenl","addonsContainer":"picker-button__addonsContainer_eeenl","showControlIcon":"picker-button__showControlIcon_eeenl","open":"picker-button__open_eeenl","linkOpen":"picker-button__linkOpen_eeenl"};
7
+ var styles = {"iconContainer":"picker-button__iconContainer_97pci","addonsContainer":"picker-button__addonsContainer_97pci","showControlIcon":"picker-button__showControlIcon_97pci","open":"picker-button__open_97pci","linkOpen":"picker-button__linkOpen_97pci"};
8
8
  require('./index.css')
9
9
 
10
10
  var SIZE_TO_CLASSNAME_MAP = {
@@ -1,4 +1,4 @@
1
- /* hash: 14z0u */
1
+ /* hash: lzcs2 */
2
2
  :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
3
3
  } /* deprecated */ :root {
4
4
  --color-light-transparent-default-hover: rgba(38, 55, 88, 0.06); /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
@@ -23,17 +23,17 @@
23
23
  /* stylelint-disable-next-line length-zero-no-unit */
24
24
  --gap-4: var(--gap-2xs);
25
25
  } :root {
26
- } :root {
26
+ } /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ :root {
27
27
  --arrow-transform: rotate(180deg);
28
- } /* сбрасывает синюю подсветку при нажатии */ .picker-button__iconContainer_eeenl {
28
+ } /* сбрасывает синюю подсветку при нажатии */ .picker-button__iconContainer_97pci {
29
29
  display: flex;
30
30
  transition: transform 0.15s ease-in-out;
31
- } .picker-button__addonsContainer_eeenl {
31
+ } .picker-button__addonsContainer_97pci {
32
32
  display: flex
33
- } .picker-button__addonsContainer_eeenl.picker-button__showControlIcon_eeenl {
33
+ } .picker-button__addonsContainer_97pci.picker-button__showControlIcon_97pci {
34
34
  margin-right: var(--gap-4);
35
- } .picker-button__open_eeenl {
35
+ } .picker-button__open_97pci {
36
36
  transform: var(--arrow-transform);
37
- } .picker-button__linkOpen_eeenl:not(:hover) {
37
+ } .picker-button__linkOpen_97pci:not(:hover) {
38
38
  background-color: var(--color-light-transparent-default-hover);
39
39
  }
@@ -5,7 +5,10 @@ declare const TitleMobile: React.ForwardRefExoticComponent<Omit<React.HTMLAttrib
5
5
  view?: "small" | "medium" | "large" | "xlarge" | "xsmall" | undefined;
6
6
  color?: "link" | "accent" | "primary" | "primary-inverted" | "secondary" | "secondary-inverted" | "tertiary" | "tertiary-inverted" | "attention" | "positive" | "negative" | "static-accent" | "disabled" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-positive" | undefined;
7
7
  weight?: "bold" | "medium" | "regular" | "semibold" | undefined;
8
- font?: "styrene" | "system" | undefined;
8
+ font?: "alfasans" | "styrene" | "system" | {
9
+ font: "alfasans";
10
+ systemCompat: boolean;
11
+ } | undefined;
9
12
  defaultMargins?: boolean | undefined;
10
13
  className?: string | undefined;
11
14
  dataTestId?: string | undefined;
@@ -16,4 +19,4 @@ declare const TitleMobile: React.ForwardRefExoticComponent<Omit<React.HTMLAttrib
16
19
  defaultMatchMediaValue?: boolean | (() => boolean) | undefined;
17
20
  } & React.RefAttributes<HTMLDivElement | HTMLHeadingElement>>;
18
21
  export { TitleMobile };
19
- export type { TitleProps as TitleMobileProps } from "./component-8bdd19d3";
22
+ export type { TitleProps as TitleMobileProps } from "./component-ee751dcf";
@@ -1,12 +1,15 @@
1
1
  /// <reference types="react" />
2
2
  import React from 'react';
3
- import { TitleProps } from "./component-8bdd19d3";
3
+ import { TitleProps } from "./component-ee751dcf";
4
4
  declare const Title: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLHeadingElement>, "color"> & {
5
5
  tag: "div" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
6
6
  view?: "small" | "medium" | "large" | "xlarge" | "xsmall" | undefined;
7
7
  color?: "link" | "accent" | "primary" | "primary-inverted" | "secondary" | "secondary-inverted" | "tertiary" | "tertiary-inverted" | "attention" | "positive" | "negative" | "static-accent" | "disabled" | "static-primary-light" | "static-secondary-light" | "static-tertiary-light" | "static-primary-dark" | "static-secondary-dark" | "static-tertiary-dark" | "static-positive" | undefined;
8
8
  weight?: "bold" | "medium" | "regular" | "semibold" | undefined;
9
- font?: "styrene" | "system" | undefined;
9
+ font?: "alfasans" | "styrene" | "system" | {
10
+ font: "alfasans";
11
+ systemCompat: boolean;
12
+ } | undefined;
10
13
  defaultMargins?: boolean | undefined;
11
14
  className?: string | undefined;
12
15
  dataTestId?: string | undefined;
package/esm/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /* hash: pbveq */
1
+ /* hash: 6c7c2 */
2
2
  :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
3
3
  } /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
4
4
  } :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
@@ -25,14 +25,14 @@
25
25
  --gap-8: var(--gap-xs);
26
26
  --gap-16: var(--gap-m);
27
27
  } :root {
28
- } :root {
29
- } /* сбрасывает синюю подсветку при нажатии */ .picker-button__container_1t4t8 {
28
+ } /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ :root {
29
+ } /* сбрасывает синюю подсветку при нажатии */ .picker-button__container_1qljl {
30
30
  min-width: auto;
31
- } .cc-picker-button.picker-button__optionsPopover_1t4t8.picker-button__sideGap_1t4t8 {
31
+ } .cc-picker-button.picker-button__optionsPopover_1qljl.picker-button__sideGap_1qljl {
32
32
  padding: var(--gap-0) var(--gap-8);
33
- } .cc-picker-button .picker-button__option_1t4t8 {
33
+ } .cc-picker-button .picker-button__option_1qljl {
34
34
  padding: var(--gap-0) var(--gap-16)
35
- } .cc-picker-button .picker-button__option_1t4t8:before {
35
+ } .cc-picker-button .picker-button__option_1qljl:before {
36
36
  /* Удаляем разделители у опций выпадающего списка. */
37
37
  display: none;
38
38
  }
@@ -2,7 +2,7 @@ import { __rest, __assign } from 'tslib';
2
2
  import React from 'react';
3
3
  import { Option as Option$1 } from '@alfalab/core-components-select/esm/shared';
4
4
 
5
- var styles = {"container":"picker-button__container_1hcp5","icon":"picker-button__icon_1hcp5","content":"picker-button__content_1hcp5"};
5
+ var styles = {"container":"picker-button__container_173zv","icon":"picker-button__icon_173zv","content":"picker-button__content_173zv"};
6
6
  require('./index.css')
7
7
 
8
8
  var Option = function (_a) {
@@ -1,4 +1,4 @@
1
- /* hash: 1kf8h */
1
+ /* hash: 11fkf */
2
2
  :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
3
3
  } /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
4
4
  } :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
@@ -22,14 +22,14 @@
22
22
  /* stylelint-disable-next-line length-zero-no-unit */
23
23
  --gap-12: var(--gap-s);
24
24
  } :root {
25
- } :root {
26
- } /* сбрасывает синюю подсветку при нажатии */ .picker-button__container_1hcp5 {
25
+ } /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ /* @deprecated */ :root {
26
+ } /* сбрасывает синюю подсветку при нажатии */ .picker-button__container_173zv {
27
27
  display: flex;
28
28
  align-items: center;
29
- } .picker-button__icon_1hcp5 {
29
+ } .picker-button__icon_173zv {
30
30
  display: flex;
31
31
  margin-right: var(--gap-12);
32
- } .picker-button__content_1hcp5 {
32
+ } .picker-button__content_173zv {
33
33
  overflow: hidden;
34
34
  flex: 1;
35
35
  text-overflow: ellipsis;