intergalactic 15.44.0-prerelease-1d3273a5 → 15.45.0-prerelease-dd035f5d

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 (44) hide show
  1. package/CHANGELOG.md +17 -18
  2. package/base-trigger/index.d.ts +2 -2
  3. package/base-trigger/lib/cjs/index.d.js.map +1 -1
  4. package/base-trigger/lib/es6/index.d.js.map +1 -1
  5. package/base-trigger/lib/types/index.d.ts +2 -2
  6. package/button/lib/cjs/Button.js +26 -26
  7. package/button/lib/cjs/style/button.shadow.css +49 -43
  8. package/button/lib/es6/Button.js +26 -26
  9. package/button/lib/es6/style/button.shadow.css +49 -43
  10. package/components.json +72 -72
  11. package/date-picker/index.d.ts +4 -1
  12. package/date-picker/lib/cjs/DatePicker.js +4 -4
  13. package/date-picker/lib/cjs/DatePicker.js.map +1 -1
  14. package/date-picker/lib/cjs/DateRangePicker.js +4 -4
  15. package/date-picker/lib/cjs/DateRangePicker.js.map +1 -1
  16. package/date-picker/lib/cjs/MonthPicker.js +4 -4
  17. package/date-picker/lib/cjs/MonthPicker.js.map +1 -1
  18. package/date-picker/lib/cjs/MonthRangePicker.js +4 -4
  19. package/date-picker/lib/cjs/MonthRangePicker.js.map +1 -1
  20. package/date-picker/lib/cjs/components/PickerAbstract.js +1 -1
  21. package/date-picker/lib/cjs/components/PickerAbstract.js.map +1 -1
  22. package/date-picker/lib/cjs/components/RangePickerAbstract.js +25 -11
  23. package/date-picker/lib/cjs/components/RangePickerAbstract.js.map +1 -1
  24. package/date-picker/lib/cjs/index.d.js.map +1 -1
  25. package/date-picker/lib/es6/DatePicker.js +4 -4
  26. package/date-picker/lib/es6/DatePicker.js.map +1 -1
  27. package/date-picker/lib/es6/DateRangePicker.js +4 -4
  28. package/date-picker/lib/es6/DateRangePicker.js.map +1 -1
  29. package/date-picker/lib/es6/MonthPicker.js +4 -4
  30. package/date-picker/lib/es6/MonthPicker.js.map +1 -1
  31. package/date-picker/lib/es6/MonthRangePicker.js +4 -4
  32. package/date-picker/lib/es6/MonthRangePicker.js.map +1 -1
  33. package/date-picker/lib/es6/components/PickerAbstract.js +1 -1
  34. package/date-picker/lib/es6/components/PickerAbstract.js.map +1 -1
  35. package/date-picker/lib/es6/components/RangePickerAbstract.js +25 -11
  36. package/date-picker/lib/es6/components/RangePickerAbstract.js.map +1 -1
  37. package/date-picker/lib/es6/index.d.js.map +1 -1
  38. package/date-picker/lib/types/index.d.ts +4 -1
  39. package/package.json +1 -1
  40. package/utils/lib/themes/auto.css +3 -0
  41. package/utils/lib/themes/default.css +3 -0
  42. package/utils/lib/themes/default.json +2 -0
  43. package/utils/lib/themes/light.css +3 -0
  44. package/utils/lib/themes/light.json +2 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  ## [15.45.0] - 2024-01-04
2
2
 
3
+ ### @semcore/base-trigger
4
+
5
+ - **Fixed** `BaseTriggerProps` type had `{ [key: string]: unknown; }` that was breaking it's and all inherited types manipulations.
6
+
7
+ ### @semcore/button
8
+
9
+ - **Fixed** Grouped controls separator color and shape. Additional separators are now added only between sibling `Button`s, all other components just removes one of sticked border.
10
+
11
+ ### @semcore/date-picker
12
+
13
+ - **Fixed** Disabled dates should not be available from the keyboard.
14
+ - **Fixed** Months should change when goes outside the current period.
15
+
3
16
  ### @semcore/popper
4
17
 
5
18
  - **Added** `disabled` prop to types.
@@ -8,6 +21,10 @@
8
21
 
9
22
  - **Fixed** `aria-haspopup` for `disabled` tooltips.
10
23
 
24
+ ### @semcore/utils
25
+
26
+ - **Added** Two new tokens for extra-small border-radii: `--intergalactic-rounded-extra-small` and `-intergalactic-chart-rounded`.
27
+
11
28
  ### @semcore/wizard
12
29
 
13
30
  - **Fixed** When focus is lost during the step change, the focus is moved to the wizard first focusable element.
@@ -40,24 +57,6 @@
40
57
 
41
58
  - **Fixed** Focused Pill with `behavior=tabs` were not visually highlighted.
42
59
 
43
- ### @semcore/popper
44
-
45
- - **Added** `disabled` prop to types.
46
- - **Changed** When keyboard users are focus-triggered closing popper, trigger is highlighted with focus ring while actually focus is placed on the sibling invisible element.
47
- - **Changed** When keyboard users are focus-triggered closing popper, trigger is highlighted with focus ring while actually focus is placed on the sibling invisible element.
48
-
49
- ### @semcore/tooltip
50
-
51
- - **Fixed** `aria-haspopup` for `disabled` tooltips.
52
-
53
- ### @semcore/utils
54
-
55
- - **Changed** `keyboardFocusEnhance` got context based keyboard focus enforcing.
56
-
57
- ### @semcore/wizard
58
-
59
- - **Fixed** When focus is lost during the step change, the focus is moved to the wizard first focusable element.
60
-
61
60
  ## [15.43.0] - 2023-12-19
62
61
 
63
62
  ### @semcore/core
@@ -4,14 +4,14 @@ import { Box, BoxProps } from 'intergalactic/flex-box';
4
4
  import { DotProps } from 'intergalactic/dot';
5
5
  import { NeighborItemProps } from 'intergalactic/neighbor-location';
6
6
  import { KeyboardFocusProps } from 'intergalactic/utils/lib/enhances/keyboardFocusEnhance';
7
- import { IWithAnimatedSizeEnhanceProps } from 'intergalactic/utils/lib/enhances/animatedSizeEnhance';
7
+ import { WithAnimatedSizeEnhanceProps } from 'intergalactic/utils/lib/enhances/animatedSizeEnhance';
8
8
 
9
9
  /** @deprecated */
10
10
  export interface IBaseTriggerProps extends BaseTriggerProps, UnknownProperties {}
11
11
  export type BaseTriggerProps = BoxProps &
12
12
  NeighborItemProps &
13
13
  KeyboardFocusProps &
14
- IWithAnimatedSizeEnhanceProps & {
14
+ WithAnimatedSizeEnhanceProps & {
15
15
  /**
16
16
  * Trigger size
17
17
  * @default m
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.js","names":[],"sources":["../../src/index.d.ts"],"sourcesContent":["import React from 'react';\nimport { UnknownProperties, Intergalactic } from '@semcore/core';\nimport { Box, BoxProps } from '@semcore/flex-box';\nimport { DotProps } from '@semcore/dot';\nimport { NeighborItemProps } from '@semcore/neighbor-location';\nimport { KeyboardFocusProps } from '@semcore/utils/lib/enhances/keyboardFocusEnhance';\nimport { IWithAnimatedSizeEnhanceProps } from '@semcore/utils/lib/enhances/animatedSizeEnhance';\n\n/** @deprecated */\nexport interface IBaseTriggerProps extends BaseTriggerProps, UnknownProperties {}\nexport type BaseTriggerProps = BoxProps &\n NeighborItemProps &\n KeyboardFocusProps &\n IWithAnimatedSizeEnhanceProps & {\n /**\n * Trigger size\n * @default m\n */\n size?: 'm' | 'l';\n /**\n * Trigger state\n */\n state?: 'normal' | 'valid' | 'invalid';\n /**\n * Sets active state to trigger\n */\n active?: boolean;\n /**\n * Responsible for placeholder displaying\n */\n empty?: boolean;\n /**\n * Placeholder text\n */\n placeholder?: React.ReactNode;\n /**\n * Sets disabled state to trigger\n */\n disabled?: boolean;\n /** Trigger theme\n * @deprecated\n * @use IBaseTriggerProps.state\n * */\n theme?: 'normal' | 'valid' | 'invalid' | false;\n };\n\n/** @deprecated */\nexport interface IButtonTriggerProps extends ButtonTriggerProps, UnknownProperties {}\nexport type ButtonTriggerProps = Omit<BaseTriggerProps, 'theme'> & {\n /** Sets the loading state */\n loading?: boolean;\n};\n\n/** @deprecated */\nexport interface ILinkTriggerProps extends LinkTriggerProps, UnknownProperties {}\nexport type LinkTriggerProps = Omit<BaseTriggerProps, 'theme'> & {\n /** Sets the loading state */\n loading?: boolean;\n /** Text color */\n color?: string;\n};\n\n/** @deprecated */\nexport interface IFilterTriggerProps extends FilterTriggerProps, UnknownProperties {}\nexport type FilterTriggerProps = BaseTriggerProps & {\n /** Click on the filter cleaning cross */\n onClear?: (event: React.SyntheticEvent) => void;\n locale?: string;\n /** List of props that will be added to the select inside of filter */\n includeInputProps?: string[];\n};\n\ndeclare const BaseTrigger: Intergalactic.Component<'div', BaseTriggerProps> & {\n Text: typeof Box;\n Addon: typeof Box;\n};\n\ndeclare const ButtonTrigger: Intergalactic.Component<'div', ButtonTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n};\n\ndeclare const LinkTrigger: Intergalactic.Component<'div', LinkTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n};\n\ndeclare const FilterTrigger: Intergalactic.Component<'div', FilterTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n Counter: Intergalactic.Component<'div', BoxProps & DotProps>;\n};\n\nexport default BaseTrigger;\nexport { ButtonTrigger, LinkTrigger, FilterTrigger };\n"],"mappings":""}
1
+ {"version":3,"file":"index.d.js","names":[],"sources":["../../src/index.d.ts"],"sourcesContent":["import React from 'react';\nimport { UnknownProperties, Intergalactic } from '@semcore/core';\nimport { Box, BoxProps } from '@semcore/flex-box';\nimport { DotProps } from '@semcore/dot';\nimport { NeighborItemProps } from '@semcore/neighbor-location';\nimport { KeyboardFocusProps } from '@semcore/utils/lib/enhances/keyboardFocusEnhance';\nimport { WithAnimatedSizeEnhanceProps } from '@semcore/utils/lib/enhances/animatedSizeEnhance';\n\n/** @deprecated */\nexport interface IBaseTriggerProps extends BaseTriggerProps, UnknownProperties {}\nexport type BaseTriggerProps = BoxProps &\n NeighborItemProps &\n KeyboardFocusProps &\n WithAnimatedSizeEnhanceProps & {\n /**\n * Trigger size\n * @default m\n */\n size?: 'm' | 'l';\n /**\n * Trigger state\n */\n state?: 'normal' | 'valid' | 'invalid';\n /**\n * Sets active state to trigger\n */\n active?: boolean;\n /**\n * Responsible for placeholder displaying\n */\n empty?: boolean;\n /**\n * Placeholder text\n */\n placeholder?: React.ReactNode;\n /**\n * Sets disabled state to trigger\n */\n disabled?: boolean;\n /** Trigger theme\n * @deprecated\n * @use IBaseTriggerProps.state\n * */\n theme?: 'normal' | 'valid' | 'invalid' | false;\n };\n\n/** @deprecated */\nexport interface IButtonTriggerProps extends ButtonTriggerProps, UnknownProperties {}\nexport type ButtonTriggerProps = Omit<BaseTriggerProps, 'theme'> & {\n /** Sets the loading state */\n loading?: boolean;\n};\n\n/** @deprecated */\nexport interface ILinkTriggerProps extends LinkTriggerProps, UnknownProperties {}\nexport type LinkTriggerProps = Omit<BaseTriggerProps, 'theme'> & {\n /** Sets the loading state */\n loading?: boolean;\n /** Text color */\n color?: string;\n};\n\n/** @deprecated */\nexport interface IFilterTriggerProps extends FilterTriggerProps, UnknownProperties {}\nexport type FilterTriggerProps = BaseTriggerProps & {\n /** Click on the filter cleaning cross */\n onClear?: (event: React.SyntheticEvent) => void;\n locale?: string;\n /** List of props that will be added to the select inside of filter */\n includeInputProps?: string[];\n};\n\ndeclare const BaseTrigger: Intergalactic.Component<'div', BaseTriggerProps> & {\n Text: typeof Box;\n Addon: typeof Box;\n};\n\ndeclare const ButtonTrigger: Intergalactic.Component<'div', ButtonTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n};\n\ndeclare const LinkTrigger: Intergalactic.Component<'div', LinkTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n};\n\ndeclare const FilterTrigger: Intergalactic.Component<'div', FilterTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n Counter: Intergalactic.Component<'div', BoxProps & DotProps>;\n};\n\nexport default BaseTrigger;\nexport { ButtonTrigger, LinkTrigger, FilterTrigger };\n"],"mappings":""}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.js","names":[],"sources":["../../src/index.d.ts"],"sourcesContent":["import React from 'react';\nimport { UnknownProperties, Intergalactic } from '@semcore/core';\nimport { Box, BoxProps } from '@semcore/flex-box';\nimport { DotProps } from '@semcore/dot';\nimport { NeighborItemProps } from '@semcore/neighbor-location';\nimport { KeyboardFocusProps } from '@semcore/utils/lib/enhances/keyboardFocusEnhance';\nimport { IWithAnimatedSizeEnhanceProps } from '@semcore/utils/lib/enhances/animatedSizeEnhance';\n\n/** @deprecated */\nexport interface IBaseTriggerProps extends BaseTriggerProps, UnknownProperties {}\nexport type BaseTriggerProps = BoxProps &\n NeighborItemProps &\n KeyboardFocusProps &\n IWithAnimatedSizeEnhanceProps & {\n /**\n * Trigger size\n * @default m\n */\n size?: 'm' | 'l';\n /**\n * Trigger state\n */\n state?: 'normal' | 'valid' | 'invalid';\n /**\n * Sets active state to trigger\n */\n active?: boolean;\n /**\n * Responsible for placeholder displaying\n */\n empty?: boolean;\n /**\n * Placeholder text\n */\n placeholder?: React.ReactNode;\n /**\n * Sets disabled state to trigger\n */\n disabled?: boolean;\n /** Trigger theme\n * @deprecated\n * @use IBaseTriggerProps.state\n * */\n theme?: 'normal' | 'valid' | 'invalid' | false;\n };\n\n/** @deprecated */\nexport interface IButtonTriggerProps extends ButtonTriggerProps, UnknownProperties {}\nexport type ButtonTriggerProps = Omit<BaseTriggerProps, 'theme'> & {\n /** Sets the loading state */\n loading?: boolean;\n};\n\n/** @deprecated */\nexport interface ILinkTriggerProps extends LinkTriggerProps, UnknownProperties {}\nexport type LinkTriggerProps = Omit<BaseTriggerProps, 'theme'> & {\n /** Sets the loading state */\n loading?: boolean;\n /** Text color */\n color?: string;\n};\n\n/** @deprecated */\nexport interface IFilterTriggerProps extends FilterTriggerProps, UnknownProperties {}\nexport type FilterTriggerProps = BaseTriggerProps & {\n /** Click on the filter cleaning cross */\n onClear?: (event: React.SyntheticEvent) => void;\n locale?: string;\n /** List of props that will be added to the select inside of filter */\n includeInputProps?: string[];\n};\n\ndeclare const BaseTrigger: Intergalactic.Component<'div', BaseTriggerProps> & {\n Text: typeof Box;\n Addon: typeof Box;\n};\n\ndeclare const ButtonTrigger: Intergalactic.Component<'div', ButtonTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n};\n\ndeclare const LinkTrigger: Intergalactic.Component<'div', LinkTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n};\n\ndeclare const FilterTrigger: Intergalactic.Component<'div', FilterTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n Counter: Intergalactic.Component<'div', BoxProps & DotProps>;\n};\n\nexport default BaseTrigger;\nexport { ButtonTrigger, LinkTrigger, FilterTrigger };\n"],"mappings":""}
1
+ {"version":3,"file":"index.d.js","names":[],"sources":["../../src/index.d.ts"],"sourcesContent":["import React from 'react';\nimport { UnknownProperties, Intergalactic } from '@semcore/core';\nimport { Box, BoxProps } from '@semcore/flex-box';\nimport { DotProps } from '@semcore/dot';\nimport { NeighborItemProps } from '@semcore/neighbor-location';\nimport { KeyboardFocusProps } from '@semcore/utils/lib/enhances/keyboardFocusEnhance';\nimport { WithAnimatedSizeEnhanceProps } from '@semcore/utils/lib/enhances/animatedSizeEnhance';\n\n/** @deprecated */\nexport interface IBaseTriggerProps extends BaseTriggerProps, UnknownProperties {}\nexport type BaseTriggerProps = BoxProps &\n NeighborItemProps &\n KeyboardFocusProps &\n WithAnimatedSizeEnhanceProps & {\n /**\n * Trigger size\n * @default m\n */\n size?: 'm' | 'l';\n /**\n * Trigger state\n */\n state?: 'normal' | 'valid' | 'invalid';\n /**\n * Sets active state to trigger\n */\n active?: boolean;\n /**\n * Responsible for placeholder displaying\n */\n empty?: boolean;\n /**\n * Placeholder text\n */\n placeholder?: React.ReactNode;\n /**\n * Sets disabled state to trigger\n */\n disabled?: boolean;\n /** Trigger theme\n * @deprecated\n * @use IBaseTriggerProps.state\n * */\n theme?: 'normal' | 'valid' | 'invalid' | false;\n };\n\n/** @deprecated */\nexport interface IButtonTriggerProps extends ButtonTriggerProps, UnknownProperties {}\nexport type ButtonTriggerProps = Omit<BaseTriggerProps, 'theme'> & {\n /** Sets the loading state */\n loading?: boolean;\n};\n\n/** @deprecated */\nexport interface ILinkTriggerProps extends LinkTriggerProps, UnknownProperties {}\nexport type LinkTriggerProps = Omit<BaseTriggerProps, 'theme'> & {\n /** Sets the loading state */\n loading?: boolean;\n /** Text color */\n color?: string;\n};\n\n/** @deprecated */\nexport interface IFilterTriggerProps extends FilterTriggerProps, UnknownProperties {}\nexport type FilterTriggerProps = BaseTriggerProps & {\n /** Click on the filter cleaning cross */\n onClear?: (event: React.SyntheticEvent) => void;\n locale?: string;\n /** List of props that will be added to the select inside of filter */\n includeInputProps?: string[];\n};\n\ndeclare const BaseTrigger: Intergalactic.Component<'div', BaseTriggerProps> & {\n Text: typeof Box;\n Addon: typeof Box;\n};\n\ndeclare const ButtonTrigger: Intergalactic.Component<'div', ButtonTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n};\n\ndeclare const LinkTrigger: Intergalactic.Component<'div', LinkTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n};\n\ndeclare const FilterTrigger: Intergalactic.Component<'div', FilterTriggerProps> & {\n Text: typeof BaseTrigger.Text;\n Addon: typeof BaseTrigger.Addon;\n Counter: Intergalactic.Component<'div', BoxProps & DotProps>;\n};\n\nexport default BaseTrigger;\nexport { ButtonTrigger, LinkTrigger, FilterTrigger };\n"],"mappings":""}
@@ -4,14 +4,14 @@ import { Box, BoxProps } from 'intergalactic/flex-box';
4
4
  import { DotProps } from 'intergalactic/dot';
5
5
  import { NeighborItemProps } from 'intergalactic/neighbor-location';
6
6
  import { KeyboardFocusProps } from 'intergalactic/utils/lib/enhances/keyboardFocusEnhance';
7
- import { IWithAnimatedSizeEnhanceProps } from 'intergalactic/utils/lib/enhances/animatedSizeEnhance';
7
+ import { WithAnimatedSizeEnhanceProps } from 'intergalactic/utils/lib/enhances/animatedSizeEnhance';
8
8
 
9
9
  /** @deprecated */
10
10
  export interface IBaseTriggerProps extends BaseTriggerProps, UnknownProperties {}
11
11
  export type BaseTriggerProps = BoxProps &
12
12
  NeighborItemProps &
13
13
  KeyboardFocusProps &
14
- IWithAnimatedSizeEnhanceProps & {
14
+ WithAnimatedSizeEnhanceProps & {
15
15
  /**
16
16
  * Trigger size
17
17
  * @default m
@@ -23,32 +23,32 @@ var _logger = _interopRequireDefault(require("intergalactic/utils/lib/logger"));
23
23
  var _SpinButton = _interopRequireDefault(require("./SpinButton"));
24
24
  var _hasLabels = _interopRequireDefault(require("intergalactic/utils/lib/hasLabels"));
25
25
  /*__reshadow-styles__:"./style/button.shadow.css"*/
26
- var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SButton_dx777_gg_{position:relative;display:inline-block;align-items:center;justify-content:center;padding:0;margin:0;white-space:nowrap;font-family:inherit;line-height:normal;-webkit-text-decoration:none;text-decoration:none;text-align:center;vertical-align:middle;border:1px solid transparent;outline:0;box-shadow:none;cursor:pointer;box-sizing:border-box;overflow:visible;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:manipulation;-webkit-tap-highlight-color:transparent;font-weight:var(--intergalactic-medium, 500);color:var(--intergalactic-text-secondary, #6c6e79);min-width:-moz-fit-content;min-width:fit-content}.___SButton_dx777_gg_::-moz-focus-inner{padding:0;border:0}.___SButton_dx777_gg_:active,.___SButton_dx777_gg_:focus{outline:0;-webkit-text-decoration:none;text-decoration:none}@media (hover:hover){.___SButton_dx777_gg_:hover{outline:0;-webkit-text-decoration:none;text-decoration:none}}.___SButton_dx777_gg_.__keyboardFocused_dx777_gg_{box-shadow:var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.5));z-index:1}.___SButton_dx777_gg_.__disabled_dx777_gg_{opacity:var(--intergalactic-disabled-opacity, 0.3);cursor:default;pointer-events:none;box-shadow:none;z-index:0}.___SButton_dx777_gg_._size_m_dx777_gg_{height:28px;border-radius:var(--intergalactic-control-rounded, 6px);font-size:var(--intergalactic-fs-200, 14px)}.___SButton_dx777_gg_._size_l_dx777_gg_{height:40px;border-radius:var(--intergalactic-control-rounded, 6px);font-size:var(--intergalactic-fs-300, 16px)}.___SButton_dx777_gg_._theme_primary-info_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-info, #008ff8)}@media (hover:hover){.___SButton_dx777_gg_._theme_primary-info_dx777_gg_:hover{background-color:var(--intergalactic-control-primary-info-hover, #006dca)}}.___SButton_dx777_gg_._theme_primary-info_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_primary-info_dx777_gg_:active{background-color:var(--intergalactic-control-primary-info-active, #044792)}.___SButton_dx777_gg_._theme_primary-success_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-success, #009f81)}@media (hover:hover){.___SButton_dx777_gg_._theme_primary-success_dx777_gg_:hover{background-color:var(--intergalactic-control-primary-success-hover, #007c65)}}.___SButton_dx777_gg_._theme_primary-success_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_primary-success_dx777_gg_:active{background-color:var(--intergalactic-control-primary-success-active, #055345)}.___SButton_dx777_gg_._theme_primary-warning_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-icon-primary-warning, #ff642d)}@media (hover:hover){.___SButton_dx777_gg_._theme_primary-warning_dx777_gg_:hover{background-color:var(--intergalactic-icon-primary-warning-hover-active, #CC5024)}}.___SButton_dx777_gg_._theme_primary-warning_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_primary-warning_dx777_gg_:active{background-color:var(--intergalactic-icon-primary-warning-hover-active, #CC5024)}.___SButton_dx777_gg_._theme_primary-danger_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-critical, #ff4953)}@media (hover:hover){.___SButton_dx777_gg_._theme_primary-danger_dx777_gg_:hover{background-color:var(--intergalactic-control-primary-critical-hover, #d1002f)}}.___SButton_dx777_gg_._theme_primary-danger_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_primary-danger_dx777_gg_:active{background-color:var(--intergalactic-control-primary-critical-active, #8e0016)}.___SButton_dx777_gg_._theme_primary-invert_dx777_gg_{color:var(--intergalactic-text-primary, #191b23);background-color:var(--intergalactic-control-primary-invert, #ffffff)}@media (hover:hover){.___SButton_dx777_gg_._theme_primary-invert_dx777_gg_:hover{background-color:var(--intergalactic-control-primary-invert-hover, #f4f5f9)}}.___SButton_dx777_gg_._theme_primary-invert_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_primary-invert_dx777_gg_:active{background-color:var(--intergalactic-control-primary-invert-active, #e0e1e9)}.___SButton_dx777_gg_._theme_secondary-muted_dx777_gg_{color:var(--intergalactic-text-secondary, #6c6e79);border-color:var(--intergalactic-border-primary, #c4c7cf);background-color:var(--intergalactic-control-secondary-neutral, rgba(138, 142, 155, 0.1))}@media (hover:hover){.___SButton_dx777_gg_._theme_secondary-muted_dx777_gg_:hover{background-color:var(--intergalactic-control-secondary-neutral-hover,\n rgba(138, 142, 155, 0.2)\n );color:var(--intergalactic-text-primary, #191b23)}}.___SButton_dx777_gg_._theme_secondary-muted_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_secondary-muted_dx777_gg_:active{background-color:var(--intergalactic-control-secondary-neutral-active,\n rgba(138, 142, 155, 0.3)\n );color:var(--intergalactic-text-primary, #191b23)}.___SButton_dx777_gg_._theme_secondary-info_dx777_gg_{background-color:var(--intergalactic-control-secondary-info, rgba(0, 143, 248, 0.1));color:var(--intergalactic-text-link, #006dca);border-color:var(--intergalactic-control-primary-info, #008ff8)}@media (hover:hover){.___SButton_dx777_gg_._theme_secondary-info_dx777_gg_:hover{background-color:var(--intergalactic-control-secondary-info-hover, rgba(0, 143, 248, 0.2))}}.___SButton_dx777_gg_._theme_secondary-info_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_secondary-info_dx777_gg_:active{background-color:var(--intergalactic-control-secondary-info-active, rgba(0, 143, 248, 0.3))}.___SButton_dx777_gg_._theme_secondary-invert_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);border-color:var(--intergalactic-border-primary-invert, #ffffff);background-color:var(--intergalactic-control-secondary-invert, rgba(255, 255, 255, 0.05))}@media (hover:hover){.___SButton_dx777_gg_._theme_secondary-invert_dx777_gg_:hover{background-color:var(--intergalactic-control-secondary-invert-hover, rgba(255, 255, 255, 0.1))}}.___SButton_dx777_gg_._theme_secondary-invert_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_secondary-invert_dx777_gg_:active{background-color:var(--intergalactic-control-secondary-invert-active,\n rgba(255, 255, 255, 0.3)\n )}.___SButton_dx777_gg_._theme_tertiary-info_dx777_gg_{color:var(--intergalactic-text-link, #006dca);background-color:var(--intergalactic-control-tertiary-info, rgba(0, 143, 248, 0))}@media (hover:hover){.___SButton_dx777_gg_._theme_tertiary-info_dx777_gg_:hover{background-color:var(--intergalactic-control-tertiary-info-hover, rgba(0, 143, 248, 0.2))}}.___SButton_dx777_gg_._theme_tertiary-info_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_tertiary-info_dx777_gg_:active{background-color:var(--intergalactic-control-tertiary-info-active, rgba(0, 143, 248, 0.3))}.___SButton_dx777_gg_._theme_tertiary-muted_dx777_gg_{color:var(--intergalactic-text-secondary, #6c6e79);background-color:var(--intergalactic-control-tertiary-neutral, rgba(138, 142, 155, 0))}@media (hover:hover){.___SButton_dx777_gg_._theme_tertiary-muted_dx777_gg_:hover{background-color:var(--intergalactic-control-tertiary-neutral-hover, rgba(138, 142, 155, 0.2));color:var(--intergalactic-text-primary, #191b23)}}.___SButton_dx777_gg_._theme_tertiary-muted_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_tertiary-muted_dx777_gg_:active{background-color:var(--intergalactic-control-tertiary-neutral-active,\n rgba(138, 142, 155, 0.3)\n );color:var(--intergalactic-text-primary, #191b23)}.___SButton_dx777_gg_._theme_tertiary-invert_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-tertiary-invert, rgba(255, 255, 255, 0))}@media (hover:hover){.___SButton_dx777_gg_._theme_tertiary-invert_dx777_gg_:hover{background-color:var(--intergalactic-control-tertiary-invert-hover, rgba(255, 255, 255, 0.1))}}.___SButton_dx777_gg_._theme_tertiary-invert_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_tertiary-invert_dx777_gg_:active{background-color:var(--intergalactic-control-tertiary-invert-active, rgba(255, 255, 255, 0.3))}.___SButton_dx777_gg_._neighborLocation_right_dx777_gg_{border-top-right-radius:0;border-bottom-right-radius:0}.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_{border-radius:0;margin-left:-1px}.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_._theme_primary-danger_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_._theme_primary-info_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_._theme_primary-success_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_._theme_primary-warning_dx777_gg_{border-left-color:var(--intergalactic-neighbor-location-neutral, rgba(255, 255, 255, 0.5))}.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_._theme_primary-invert_dx777_gg_{border-left-color:var(--intergalactic-neighbor-location-invert, rgba(0, 0, 0, 0.5))}.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_{border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_._theme_primary-danger_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_._theme_primary-info_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_._theme_primary-success_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_._theme_primary-warning_dx777_gg_{border-left-color:var(--intergalactic-neighbor-location-neutral, rgba(255, 255, 255, 0.5))}.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_._theme_primary-invert_dx777_gg_{border-left-color:var(--intergalactic-neighbor-location-invert, rgba(0, 0, 0, 0.5))}.___SSpin_dx777_gg_{position:absolute;top:0;left:0;width:100%;height:100%;display:flex}.___SInner_dx777_gg_{display:inline-flex;align-items:center;justify-content:center;height:100%;width:100%}.___SInner_dx777_gg_.__loading_dx777_gg_{visibility:hidden}.___SText_dx777_gg_{display:inline-flex}.___SText_dx777_gg_._size_l_dx777_gg_,.___SText_dx777_gg_._size_m_dx777_gg_{margin-left:var(--intergalactic-spacing-2x, 8px);margin-right:var(--intergalactic-spacing-2x, 8px)}.___SText_dx777_gg_._size_m_dx777_gg_{line-height:var(--intergalactic-lh-200, 142%)}.___SText_dx777_gg_._size_l_dx777_gg_{line-height:var(--intergalactic-lh-300, 150%)}.___SText_dx777_gg_._size_l_dx777_gg_:only-child{margin-left:var(--intergalactic-spacing-3x, 12px);margin-right:var(--intergalactic-spacing-3x, 12px)}.___SText_dx777_gg_._size_l_dx777_gg_:first-child{margin-left:var(--intergalactic-spacing-3x, 12px)}.___SText_dx777_gg_._size_l_dx777_gg_:last-child{margin-right:var(--intergalactic-spacing-3x, 12px)}.___SAddon_dx777_gg_{display:inline-flex;align-items:center;justify-content:center}.___SAddon_dx777_gg_._size_m_dx777_gg_:not(:only-child):first-child{margin-left:calc(var(--intergalactic-spacing-2x, 8px) - 1px)}.___SAddon_dx777_gg_._size_m_dx777_gg_:not(:only-child):last-child{margin-right:calc(var(--intergalactic-spacing-2x, 8px) - 1px)}.___SAddon_dx777_gg_._size_m_dx777_gg_:only-child{margin-left:calc(1.5*var(--intergalactic-spacing-1x, 4px) - 1px);margin-right:calc(1.5*var(--intergalactic-spacing-1x, 4px) - 1px)}.___SAddon_dx777_gg_._size_l_dx777_gg_:not(:only-child):first-child{margin-left:calc(var(--intergalactic-spacing-3x, 12px) - 1px)}.___SAddon_dx777_gg_._size_l_dx777_gg_:not(:only-child):last-child{margin-right:calc(var(--intergalactic-spacing-3x, 12px) - 1px)}.___SAddon_dx777_gg_._size_l_dx777_gg_:only-child{margin-left:calc(3*var(--intergalactic-spacing-1x, 4px) - 1px);margin-right:calc(3*var(--intergalactic-spacing-1x, 4px) - 1px)}" /*__inner_css_end__*/, "dx777_gg_") /*__reshadow_css_end__*/, {
27
- "__SButton": "___SButton_dx777_gg_",
28
- "_keyboardFocused": "__keyboardFocused_dx777_gg_",
29
- "_disabled": "__disabled_dx777_gg_",
30
- "_size_m": "_size_m_dx777_gg_",
31
- "_size_l": "_size_l_dx777_gg_",
32
- "_neighborLocation_right": "_neighborLocation_right_dx777_gg_",
33
- "__SSpin": "___SSpin_dx777_gg_",
34
- "__SInner": "___SInner_dx777_gg_",
35
- "_loading": "__loading_dx777_gg_",
36
- "__SText": "___SText_dx777_gg_",
37
- "__SAddon": "___SAddon_dx777_gg_",
38
- "_theme_primary-info": "_theme_primary-info_dx777_gg_",
39
- "_active": "__active_dx777_gg_",
40
- "_theme_primary-success": "_theme_primary-success_dx777_gg_",
41
- "_theme_primary-warning": "_theme_primary-warning_dx777_gg_",
42
- "_theme_primary-danger": "_theme_primary-danger_dx777_gg_",
43
- "_theme_primary-invert": "_theme_primary-invert_dx777_gg_",
44
- "_theme_secondary-muted": "_theme_secondary-muted_dx777_gg_",
45
- "_theme_secondary-info": "_theme_secondary-info_dx777_gg_",
46
- "_theme_secondary-invert": "_theme_secondary-invert_dx777_gg_",
47
- "_theme_tertiary-info": "_theme_tertiary-info_dx777_gg_",
48
- "_theme_tertiary-muted": "_theme_tertiary-muted_dx777_gg_",
49
- "_theme_tertiary-invert": "_theme_tertiary-invert_dx777_gg_",
50
- "_neighborLocation_both": "_neighborLocation_both_dx777_gg_",
51
- "_neighborLocation_left": "_neighborLocation_left_dx777_gg_"
26
+ var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SButton_1cy57_gg_{position:relative;display:inline-block;align-items:center;justify-content:center;padding:0;margin:0;white-space:nowrap;font-family:inherit;line-height:normal;-webkit-text-decoration:none;text-decoration:none;text-align:center;vertical-align:middle;border:1px solid transparent;outline:0;box-shadow:none;cursor:pointer;box-sizing:border-box;overflow:visible;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:manipulation;-webkit-tap-highlight-color:transparent;font-weight:var(--intergalactic-medium, 500);color:var(--intergalactic-text-secondary, #6c6e79);min-width:-moz-fit-content;min-width:fit-content}.___SButton_1cy57_gg_::-moz-focus-inner{padding:0;border:0}.___SButton_1cy57_gg_:active,.___SButton_1cy57_gg_:focus{outline:0;-webkit-text-decoration:none;text-decoration:none}@media (hover:hover){.___SButton_1cy57_gg_:hover{outline:0;-webkit-text-decoration:none;text-decoration:none}}.___SButton_1cy57_gg_.__keyboardFocused_1cy57_gg_{box-shadow:var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.5));z-index:1}.___SButton_1cy57_gg_.__disabled_1cy57_gg_{opacity:var(--intergalactic-disabled-opacity, 0.3);cursor:default;pointer-events:none;box-shadow:none;z-index:0}.___SButton_1cy57_gg_._size_m_1cy57_gg_{height:28px;border-radius:var(--intergalactic-control-rounded, 6px);font-size:var(--intergalactic-fs-200, 14px)}.___SButton_1cy57_gg_._size_l_1cy57_gg_{height:40px;border-radius:var(--intergalactic-control-rounded, 6px);font-size:var(--intergalactic-fs-300, 16px)}.___SButton_1cy57_gg_._theme_primary-info_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-info, #008ff8)}@media (hover:hover){.___SButton_1cy57_gg_._theme_primary-info_1cy57_gg_:hover{background-color:var(--intergalactic-control-primary-info-hover, #006dca)}}.___SButton_1cy57_gg_._theme_primary-info_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_primary-info_1cy57_gg_:active{background-color:var(--intergalactic-control-primary-info-active, #044792)}.___SButton_1cy57_gg_._theme_primary-success_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-success, #009f81)}@media (hover:hover){.___SButton_1cy57_gg_._theme_primary-success_1cy57_gg_:hover{background-color:var(--intergalactic-control-primary-success-hover, #007c65)}}.___SButton_1cy57_gg_._theme_primary-success_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_primary-success_1cy57_gg_:active{background-color:var(--intergalactic-control-primary-success-active, #055345)}.___SButton_1cy57_gg_._theme_primary-warning_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-icon-primary-warning, #ff642d)}@media (hover:hover){.___SButton_1cy57_gg_._theme_primary-warning_1cy57_gg_:hover{background-color:var(--intergalactic-icon-primary-warning-hover-active, #CC5024)}}.___SButton_1cy57_gg_._theme_primary-warning_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_primary-warning_1cy57_gg_:active{background-color:var(--intergalactic-icon-primary-warning-hover-active, #CC5024)}.___SButton_1cy57_gg_._theme_primary-danger_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-critical, #ff4953)}@media (hover:hover){.___SButton_1cy57_gg_._theme_primary-danger_1cy57_gg_:hover{background-color:var(--intergalactic-control-primary-critical-hover, #d1002f)}}.___SButton_1cy57_gg_._theme_primary-danger_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_primary-danger_1cy57_gg_:active{background-color:var(--intergalactic-control-primary-critical-active, #8e0016)}.___SButton_1cy57_gg_._theme_primary-invert_1cy57_gg_{color:var(--intergalactic-text-primary, #191b23);background-color:var(--intergalactic-control-primary-invert, #ffffff)}@media (hover:hover){.___SButton_1cy57_gg_._theme_primary-invert_1cy57_gg_:hover{background-color:var(--intergalactic-control-primary-invert-hover, #f4f5f9)}}.___SButton_1cy57_gg_._theme_primary-invert_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_primary-invert_1cy57_gg_:active{background-color:var(--intergalactic-control-primary-invert-active, #e0e1e9)}.___SButton_1cy57_gg_._theme_secondary-muted_1cy57_gg_{color:var(--intergalactic-text-secondary, #6c6e79);border-color:var(--intergalactic-border-primary, #c4c7cf);background-color:var(--intergalactic-control-secondary-neutral, rgba(138, 142, 155, 0.1))}@media (hover:hover){.___SButton_1cy57_gg_._theme_secondary-muted_1cy57_gg_:hover{background-color:var(--intergalactic-control-secondary-neutral-hover,\n rgba(138, 142, 155, 0.2));color:var(--intergalactic-text-primary, #191b23)}}.___SButton_1cy57_gg_._theme_secondary-muted_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_secondary-muted_1cy57_gg_:active{background-color:var(--intergalactic-control-secondary-neutral-active,\n rgba(138, 142, 155, 0.3));color:var(--intergalactic-text-primary, #191b23)}.___SButton_1cy57_gg_._theme_secondary-info_1cy57_gg_{background-color:var(--intergalactic-control-secondary-info, rgba(0, 143, 248, 0.1));color:var(--intergalactic-text-link, #006dca);border-color:var(--intergalactic-control-primary-info, #008ff8)}@media (hover:hover){.___SButton_1cy57_gg_._theme_secondary-info_1cy57_gg_:hover{background-color:var(--intergalactic-control-secondary-info-hover, rgba(0, 143, 248, 0.2))}}.___SButton_1cy57_gg_._theme_secondary-info_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_secondary-info_1cy57_gg_:active{background-color:var(--intergalactic-control-secondary-info-active, rgba(0, 143, 248, 0.3))}.___SButton_1cy57_gg_._theme_secondary-invert_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);border-color:var(--intergalactic-border-primary-invert, #ffffff);background-color:var(--intergalactic-control-secondary-invert, rgba(255, 255, 255, 0.05))}@media (hover:hover){.___SButton_1cy57_gg_._theme_secondary-invert_1cy57_gg_:hover{background-color:var(--intergalactic-control-secondary-invert-hover, rgba(255, 255, 255, 0.1))}}.___SButton_1cy57_gg_._theme_secondary-invert_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_secondary-invert_1cy57_gg_:active{background-color:var(--intergalactic-control-secondary-invert-active,\n rgba(255, 255, 255, 0.3))}.___SButton_1cy57_gg_._theme_tertiary-info_1cy57_gg_{color:var(--intergalactic-text-link, #006dca);background-color:var(--intergalactic-control-tertiary-info, rgba(0, 143, 248, 0))}@media (hover:hover){.___SButton_1cy57_gg_._theme_tertiary-info_1cy57_gg_:hover{background-color:var(--intergalactic-control-tertiary-info-hover, rgba(0, 143, 248, 0.2))}}.___SButton_1cy57_gg_._theme_tertiary-info_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_tertiary-info_1cy57_gg_:active{background-color:var(--intergalactic-control-tertiary-info-active, rgba(0, 143, 248, 0.3))}.___SButton_1cy57_gg_._theme_tertiary-muted_1cy57_gg_{color:var(--intergalactic-text-secondary, #6c6e79);background-color:var(--intergalactic-control-tertiary-neutral, rgba(138, 142, 155, 0))}@media (hover:hover){.___SButton_1cy57_gg_._theme_tertiary-muted_1cy57_gg_:hover{background-color:var(--intergalactic-control-tertiary-neutral-hover, rgba(138, 142, 155, 0.2));color:var(--intergalactic-text-primary, #191b23)}}.___SButton_1cy57_gg_._theme_tertiary-muted_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_tertiary-muted_1cy57_gg_:active{background-color:var(--intergalactic-control-tertiary-neutral-active,\n rgba(138, 142, 155, 0.3));color:var(--intergalactic-text-primary, #191b23)}.___SButton_1cy57_gg_._theme_tertiary-invert_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-tertiary-invert, rgba(255, 255, 255, 0))}@media (hover:hover){.___SButton_1cy57_gg_._theme_tertiary-invert_1cy57_gg_:hover{background-color:var(--intergalactic-control-tertiary-invert-hover, rgba(255, 255, 255, 0.1))}}.___SButton_1cy57_gg_._theme_tertiary-invert_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_tertiary-invert_1cy57_gg_:active{background-color:var(--intergalactic-control-tertiary-invert-active, rgba(255, 255, 255, 0.3))}.___SButton_1cy57_gg_._neighborLocation_right_1cy57_gg_{border-top-right-radius:0;border-bottom-right-radius:0}.___SButton_1cy57_gg_._neighborLocation_both_1cy57_gg_{border-radius:0;margin-left:-1px}.___SButton_1cy57_gg_._neighborLocation_left_1cy57_gg_{border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.___SButton_1cy57_gg_._neighborLocation_both_1cy57_gg_,.___SButton_1cy57_gg_._neighborLocation_left_1cy57_gg_{position:relative}.___SButton_1cy57_gg_+.___SButton_1cy57_gg_._neighborLocation_both_1cy57_gg_:after,.___SButton_1cy57_gg_+.___SButton_1cy57_gg_._neighborLocation_left_1cy57_gg_:after{content:\"\";position:absolute;top:-1px;left:-1px;width:1px;height:calc(100% + 2px)}.___SButton_1cy57_gg_._neighborLocation_both_1cy57_gg_:after,.___SButton_1cy57_gg_._neighborLocation_left_1cy57_gg_:after{background-color:var(--intergalactic-text-primary-invert, #ffffff)}.___SButton_1cy57_gg_._neighborLocation_both_1cy57_gg_._theme_secondary-muted_1cy57_gg_:after,.___SButton_1cy57_gg_._neighborLocation_left_1cy57_gg_._theme_secondary-muted_1cy57_gg_:after{background-color:var(--intergalactic-border-primary, #c4c7cf)}.___SSpin_1cy57_gg_{position:absolute;top:0;left:0;width:100%;height:100%;display:flex}.___SInner_1cy57_gg_{display:inline-flex;align-items:center;justify-content:center;height:100%;width:100%}.___SInner_1cy57_gg_.__loading_1cy57_gg_{visibility:hidden}.___SText_1cy57_gg_{display:inline-flex}.___SText_1cy57_gg_._size_l_1cy57_gg_,.___SText_1cy57_gg_._size_m_1cy57_gg_{margin-left:var(--intergalactic-spacing-2x, 8px);margin-right:var(--intergalactic-spacing-2x, 8px)}.___SText_1cy57_gg_._size_m_1cy57_gg_{line-height:var(--intergalactic-lh-200, 142%)}.___SText_1cy57_gg_._size_l_1cy57_gg_{line-height:var(--intergalactic-lh-300, 150%)}.___SText_1cy57_gg_._size_l_1cy57_gg_:only-child{margin-left:var(--intergalactic-spacing-3x, 12px);margin-right:var(--intergalactic-spacing-3x, 12px)}.___SText_1cy57_gg_._size_l_1cy57_gg_:first-child{margin-left:var(--intergalactic-spacing-3x, 12px)}.___SText_1cy57_gg_._size_l_1cy57_gg_:last-child{margin-right:var(--intergalactic-spacing-3x, 12px)}.___SAddon_1cy57_gg_{display:inline-flex;align-items:center;justify-content:center}.___SAddon_1cy57_gg_._size_m_1cy57_gg_:not(:only-child):first-child{margin-left:calc(var(--intergalactic-spacing-2x, 8px) - 1px)}.___SAddon_1cy57_gg_._size_m_1cy57_gg_:not(:only-child):last-child{margin-right:calc(var(--intergalactic-spacing-2x, 8px) - 1px)}.___SAddon_1cy57_gg_._size_m_1cy57_gg_:only-child{margin-left:calc(1.5*var(--intergalactic-spacing-1x, 4px) - 1px);margin-right:calc(1.5*var(--intergalactic-spacing-1x, 4px) - 1px)}.___SAddon_1cy57_gg_._size_l_1cy57_gg_:not(:only-child):first-child{margin-left:calc(var(--intergalactic-spacing-3x, 12px) - 1px)}.___SAddon_1cy57_gg_._size_l_1cy57_gg_:not(:only-child):last-child{margin-right:calc(var(--intergalactic-spacing-3x, 12px) - 1px)}.___SAddon_1cy57_gg_._size_l_1cy57_gg_:only-child{margin-left:calc(3*var(--intergalactic-spacing-1x, 4px) - 1px);margin-right:calc(3*var(--intergalactic-spacing-1x, 4px) - 1px)}" /*__inner_css_end__*/, "1cy57_gg_") /*__reshadow_css_end__*/, {
27
+ "__SButton": "___SButton_1cy57_gg_",
28
+ "_keyboardFocused": "__keyboardFocused_1cy57_gg_",
29
+ "_disabled": "__disabled_1cy57_gg_",
30
+ "_size_m": "_size_m_1cy57_gg_",
31
+ "_size_l": "_size_l_1cy57_gg_",
32
+ "_neighborLocation_right": "_neighborLocation_right_1cy57_gg_",
33
+ "_neighborLocation_both": "_neighborLocation_both_1cy57_gg_",
34
+ "_neighborLocation_left": "_neighborLocation_left_1cy57_gg_",
35
+ "__SSpin": "___SSpin_1cy57_gg_",
36
+ "__SInner": "___SInner_1cy57_gg_",
37
+ "_loading": "__loading_1cy57_gg_",
38
+ "__SText": "___SText_1cy57_gg_",
39
+ "__SAddon": "___SAddon_1cy57_gg_",
40
+ "_theme_primary-info": "_theme_primary-info_1cy57_gg_",
41
+ "_active": "__active_1cy57_gg_",
42
+ "_theme_primary-success": "_theme_primary-success_1cy57_gg_",
43
+ "_theme_primary-warning": "_theme_primary-warning_1cy57_gg_",
44
+ "_theme_primary-danger": "_theme_primary-danger_1cy57_gg_",
45
+ "_theme_primary-invert": "_theme_primary-invert_1cy57_gg_",
46
+ "_theme_secondary-muted": "_theme_secondary-muted_1cy57_gg_",
47
+ "_theme_secondary-info": "_theme_secondary-info_1cy57_gg_",
48
+ "_theme_secondary-invert": "_theme_secondary-invert_1cy57_gg_",
49
+ "_theme_tertiary-info": "_theme_tertiary-info_1cy57_gg_",
50
+ "_theme_tertiary-muted": "_theme_tertiary-muted_1cy57_gg_",
51
+ "_theme_tertiary-invert": "_theme_tertiary-invert_1cy57_gg_"
52
52
  });
53
53
  var MAP_USE_DEFAULT_THEME = {
54
54
  primary: 'info',
@@ -138,19 +138,15 @@ SButton[theme='secondary-muted'] {
138
138
  background-color: var(--intergalactic-control-secondary-neutral, rgba(138, 142, 155, 0.1));
139
139
 
140
140
  &:hover {
141
- background-color: var(
142
- --intergalactic-control-secondary-neutral-hover,
143
- rgba(138, 142, 155, 0.2)
144
- );
141
+ background-color: var(--intergalactic-control-secondary-neutral-hover,
142
+ rgba(138, 142, 155, 0.2));
145
143
  color: var(--intergalactic-text-primary, #191b23);
146
144
  }
147
145
 
148
146
  &:active,
149
147
  &[active] {
150
- background-color: var(
151
- --intergalactic-control-secondary-neutral-active,
152
- rgba(138, 142, 155, 0.3)
153
- );
148
+ background-color: var(--intergalactic-control-secondary-neutral-active,
149
+ rgba(138, 142, 155, 0.3));
154
150
  color: var(--intergalactic-text-primary, #191b23);
155
151
  }
156
152
  }
@@ -181,10 +177,8 @@ SButton[theme='secondary-invert'] {
181
177
 
182
178
  &:active,
183
179
  &[active] {
184
- background-color: var(
185
- --intergalactic-control-secondary-invert-active,
186
- rgba(255, 255, 255, 0.3)
187
- );
180
+ background-color: var(--intergalactic-control-secondary-invert-active,
181
+ rgba(255, 255, 255, 0.3));
188
182
  }
189
183
  }
190
184
 
@@ -213,10 +207,8 @@ SButton[theme='tertiary-muted'] {
213
207
 
214
208
  &:active,
215
209
  &[active] {
216
- background-color: var(
217
- --intergalactic-control-tertiary-neutral-active,
218
- rgba(138, 142, 155, 0.3)
219
- );
210
+ background-color: var(--intergalactic-control-tertiary-neutral-active,
211
+ rgba(138, 142, 155, 0.3));
220
212
  color: var(--intergalactic-text-primary, #191b23);
221
213
  }
222
214
  }
@@ -244,17 +236,6 @@ SButton[neighborLocation='both'] {
244
236
  border-radius: 0;
245
237
  /* disable-tokens-validator */
246
238
  margin-left: -1px;
247
-
248
- &[theme='primary-info'],
249
- &[theme='primary-success'],
250
- &[theme='primary-warning'],
251
- &[theme='primary-danger'] {
252
- border-left-color: var(--intergalactic-neighbor-location-neutral, rgba(255, 255, 255, 0.5));
253
- }
254
-
255
- &[theme='primary-invert'] {
256
- border-left-color: var(--intergalactic-neighbor-location-invert, rgba(0, 0, 0, 0.5));
257
- }
258
239
  }
259
240
 
260
241
  SButton[neighborLocation='left'] {
@@ -262,16 +243,31 @@ SButton[neighborLocation='left'] {
262
243
  border-bottom-left-radius: 0;
263
244
  /* disable-tokens-validator */
264
245
  margin-left: -1px;
246
+ }
265
247
 
266
- &[theme='primary-info'],
267
- &[theme='primary-success'],
268
- &[theme='primary-warning'],
269
- &[theme='primary-danger'] {
270
- border-left-color: var(--intergalactic-neighbor-location-neutral, rgba(255, 255, 255, 0.5));
248
+ SButton[neighborLocation='both'],
249
+ SButton[neighborLocation='left'] {
250
+ position: relative;
251
+
252
+ SButton+& {
253
+ &:after {
254
+ content: '';
255
+ position: absolute;
256
+ top: -1px;
257
+ left: -1px;
258
+ width: 1px;
259
+ height: calc(100% + 2px);
260
+ }
261
+ }
262
+
263
+ &:after {
264
+ background-color: var(--intergalactic-text-primary-invert, #ffffff);
271
265
  }
272
266
 
273
- &[theme='primary-invert'] {
274
- border-left-color: var(--intergalactic-neighbor-location-invert, rgba(0, 0, 0, 0.5));
267
+ &[theme='secondary-muted'] {
268
+ &:after {
269
+ background-color: var(--intergalactic-border-primary, #c4c7cf);
270
+ }
275
271
  }
276
272
  }
277
273
 
@@ -315,9 +311,11 @@ SText[size='l'] {
315
311
  margin-left: var(--intergalactic-spacing-3x, 12px);
316
312
  margin-right: var(--intergalactic-spacing-3x, 12px);
317
313
  }
314
+
318
315
  &:first-child {
319
316
  margin-left: var(--intergalactic-spacing-3x, 12px);
320
317
  }
318
+
321
319
  &:last-child {
322
320
  margin-right: var(--intergalactic-spacing-3x, 12px);
323
321
  }
@@ -331,30 +329,38 @@ SAddon {
331
329
 
332
330
  SAddon[size='m'] {
333
331
  &:not(:only-child):first-child {
334
- margin-left: calc(var(--intergalactic-spacing-2x, 8px) - 1px); /* -1px - for border width */
332
+ margin-left: calc(var(--intergalactic-spacing-2x, 8px) - 1px);
333
+ /* -1px - for border width */
335
334
  }
336
335
 
337
336
  &:not(:only-child):last-child {
338
- margin-right: calc(var(--intergalactic-spacing-2x, 8px) - 1px); /* -1px - for border width */
337
+ margin-right: calc(var(--intergalactic-spacing-2x, 8px) - 1px);
338
+ /* -1px - for border width */
339
339
  }
340
340
 
341
341
  &:only-child {
342
- margin-left: calc(1.5 * var(--intergalactic-spacing-1x, 4px) - 1px); /* -1px - for border width */
343
- margin-right: calc(1.5 * var(--intergalactic-spacing-1x, 4px) - 1px); /* -1px - for border width */
342
+ margin-left: calc(1.5 * var(--intergalactic-spacing-1x, 4px) - 1px);
343
+ /* -1px - for border width */
344
+ margin-right: calc(1.5 * var(--intergalactic-spacing-1x, 4px) - 1px);
345
+ /* -1px - for border width */
344
346
  }
345
347
  }
346
348
 
347
349
  SAddon[size='l'] {
348
350
  &:not(:only-child):first-child {
349
- margin-left: calc(var(--intergalactic-spacing-3x, 12px) - 1px); /* -1px - for border width */
351
+ margin-left: calc(var(--intergalactic-spacing-3x, 12px) - 1px);
352
+ /* -1px - for border width */
350
353
  }
351
354
 
352
355
  &:not(:only-child):last-child {
353
- margin-right: calc(var(--intergalactic-spacing-3x, 12px) - 1px); /* -1px - for border width */
356
+ margin-right: calc(var(--intergalactic-spacing-3x, 12px) - 1px);
357
+ /* -1px - for border width */
354
358
  }
355
359
 
356
360
  &:only-child {
357
- margin-left: calc(3 * var(--intergalactic-spacing-1x, 4px) - 1px); /* -1px - for border width */
358
- margin-right: calc(3 * var(--intergalactic-spacing-1x, 4px) - 1px); /* -1px - for border width */
361
+ margin-left: calc(3 * var(--intergalactic-spacing-1x, 4px) - 1px);
362
+ /* -1px - for border width */
363
+ margin-right: calc(3 * var(--intergalactic-spacing-1x, 4px) - 1px);
364
+ /* -1px - for border width */
359
365
  }
360
- }
366
+ }
@@ -18,32 +18,32 @@ import addonTextChildren from 'intergalactic/utils/lib/addonTextChildren';
18
18
  import logger from 'intergalactic/utils/lib/logger';
19
19
  import SpinButton from './SpinButton';
20
20
  /*__reshadow-styles__:"./style/button.shadow.css"*/
21
- var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SButton_dx777_gg_{position:relative;display:inline-block;align-items:center;justify-content:center;padding:0;margin:0;white-space:nowrap;font-family:inherit;line-height:normal;-webkit-text-decoration:none;text-decoration:none;text-align:center;vertical-align:middle;border:1px solid transparent;outline:0;box-shadow:none;cursor:pointer;box-sizing:border-box;overflow:visible;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:manipulation;-webkit-tap-highlight-color:transparent;font-weight:var(--intergalactic-medium, 500);color:var(--intergalactic-text-secondary, #6c6e79);min-width:-moz-fit-content;min-width:fit-content}.___SButton_dx777_gg_::-moz-focus-inner{padding:0;border:0}.___SButton_dx777_gg_:active,.___SButton_dx777_gg_:focus{outline:0;-webkit-text-decoration:none;text-decoration:none}@media (hover:hover){.___SButton_dx777_gg_:hover{outline:0;-webkit-text-decoration:none;text-decoration:none}}.___SButton_dx777_gg_.__keyboardFocused_dx777_gg_{box-shadow:var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.5));z-index:1}.___SButton_dx777_gg_.__disabled_dx777_gg_{opacity:var(--intergalactic-disabled-opacity, 0.3);cursor:default;pointer-events:none;box-shadow:none;z-index:0}.___SButton_dx777_gg_._size_m_dx777_gg_{height:28px;border-radius:var(--intergalactic-control-rounded, 6px);font-size:var(--intergalactic-fs-200, 14px)}.___SButton_dx777_gg_._size_l_dx777_gg_{height:40px;border-radius:var(--intergalactic-control-rounded, 6px);font-size:var(--intergalactic-fs-300, 16px)}.___SButton_dx777_gg_._theme_primary-info_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-info, #008ff8)}@media (hover:hover){.___SButton_dx777_gg_._theme_primary-info_dx777_gg_:hover{background-color:var(--intergalactic-control-primary-info-hover, #006dca)}}.___SButton_dx777_gg_._theme_primary-info_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_primary-info_dx777_gg_:active{background-color:var(--intergalactic-control-primary-info-active, #044792)}.___SButton_dx777_gg_._theme_primary-success_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-success, #009f81)}@media (hover:hover){.___SButton_dx777_gg_._theme_primary-success_dx777_gg_:hover{background-color:var(--intergalactic-control-primary-success-hover, #007c65)}}.___SButton_dx777_gg_._theme_primary-success_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_primary-success_dx777_gg_:active{background-color:var(--intergalactic-control-primary-success-active, #055345)}.___SButton_dx777_gg_._theme_primary-warning_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-icon-primary-warning, #ff642d)}@media (hover:hover){.___SButton_dx777_gg_._theme_primary-warning_dx777_gg_:hover{background-color:var(--intergalactic-icon-primary-warning-hover-active, #CC5024)}}.___SButton_dx777_gg_._theme_primary-warning_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_primary-warning_dx777_gg_:active{background-color:var(--intergalactic-icon-primary-warning-hover-active, #CC5024)}.___SButton_dx777_gg_._theme_primary-danger_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-critical, #ff4953)}@media (hover:hover){.___SButton_dx777_gg_._theme_primary-danger_dx777_gg_:hover{background-color:var(--intergalactic-control-primary-critical-hover, #d1002f)}}.___SButton_dx777_gg_._theme_primary-danger_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_primary-danger_dx777_gg_:active{background-color:var(--intergalactic-control-primary-critical-active, #8e0016)}.___SButton_dx777_gg_._theme_primary-invert_dx777_gg_{color:var(--intergalactic-text-primary, #191b23);background-color:var(--intergalactic-control-primary-invert, #ffffff)}@media (hover:hover){.___SButton_dx777_gg_._theme_primary-invert_dx777_gg_:hover{background-color:var(--intergalactic-control-primary-invert-hover, #f4f5f9)}}.___SButton_dx777_gg_._theme_primary-invert_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_primary-invert_dx777_gg_:active{background-color:var(--intergalactic-control-primary-invert-active, #e0e1e9)}.___SButton_dx777_gg_._theme_secondary-muted_dx777_gg_{color:var(--intergalactic-text-secondary, #6c6e79);border-color:var(--intergalactic-border-primary, #c4c7cf);background-color:var(--intergalactic-control-secondary-neutral, rgba(138, 142, 155, 0.1))}@media (hover:hover){.___SButton_dx777_gg_._theme_secondary-muted_dx777_gg_:hover{background-color:var(--intergalactic-control-secondary-neutral-hover,\n rgba(138, 142, 155, 0.2)\n );color:var(--intergalactic-text-primary, #191b23)}}.___SButton_dx777_gg_._theme_secondary-muted_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_secondary-muted_dx777_gg_:active{background-color:var(--intergalactic-control-secondary-neutral-active,\n rgba(138, 142, 155, 0.3)\n );color:var(--intergalactic-text-primary, #191b23)}.___SButton_dx777_gg_._theme_secondary-info_dx777_gg_{background-color:var(--intergalactic-control-secondary-info, rgba(0, 143, 248, 0.1));color:var(--intergalactic-text-link, #006dca);border-color:var(--intergalactic-control-primary-info, #008ff8)}@media (hover:hover){.___SButton_dx777_gg_._theme_secondary-info_dx777_gg_:hover{background-color:var(--intergalactic-control-secondary-info-hover, rgba(0, 143, 248, 0.2))}}.___SButton_dx777_gg_._theme_secondary-info_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_secondary-info_dx777_gg_:active{background-color:var(--intergalactic-control-secondary-info-active, rgba(0, 143, 248, 0.3))}.___SButton_dx777_gg_._theme_secondary-invert_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);border-color:var(--intergalactic-border-primary-invert, #ffffff);background-color:var(--intergalactic-control-secondary-invert, rgba(255, 255, 255, 0.05))}@media (hover:hover){.___SButton_dx777_gg_._theme_secondary-invert_dx777_gg_:hover{background-color:var(--intergalactic-control-secondary-invert-hover, rgba(255, 255, 255, 0.1))}}.___SButton_dx777_gg_._theme_secondary-invert_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_secondary-invert_dx777_gg_:active{background-color:var(--intergalactic-control-secondary-invert-active,\n rgba(255, 255, 255, 0.3)\n )}.___SButton_dx777_gg_._theme_tertiary-info_dx777_gg_{color:var(--intergalactic-text-link, #006dca);background-color:var(--intergalactic-control-tertiary-info, rgba(0, 143, 248, 0))}@media (hover:hover){.___SButton_dx777_gg_._theme_tertiary-info_dx777_gg_:hover{background-color:var(--intergalactic-control-tertiary-info-hover, rgba(0, 143, 248, 0.2))}}.___SButton_dx777_gg_._theme_tertiary-info_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_tertiary-info_dx777_gg_:active{background-color:var(--intergalactic-control-tertiary-info-active, rgba(0, 143, 248, 0.3))}.___SButton_dx777_gg_._theme_tertiary-muted_dx777_gg_{color:var(--intergalactic-text-secondary, #6c6e79);background-color:var(--intergalactic-control-tertiary-neutral, rgba(138, 142, 155, 0))}@media (hover:hover){.___SButton_dx777_gg_._theme_tertiary-muted_dx777_gg_:hover{background-color:var(--intergalactic-control-tertiary-neutral-hover, rgba(138, 142, 155, 0.2));color:var(--intergalactic-text-primary, #191b23)}}.___SButton_dx777_gg_._theme_tertiary-muted_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_tertiary-muted_dx777_gg_:active{background-color:var(--intergalactic-control-tertiary-neutral-active,\n rgba(138, 142, 155, 0.3)\n );color:var(--intergalactic-text-primary, #191b23)}.___SButton_dx777_gg_._theme_tertiary-invert_dx777_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-tertiary-invert, rgba(255, 255, 255, 0))}@media (hover:hover){.___SButton_dx777_gg_._theme_tertiary-invert_dx777_gg_:hover{background-color:var(--intergalactic-control-tertiary-invert-hover, rgba(255, 255, 255, 0.1))}}.___SButton_dx777_gg_._theme_tertiary-invert_dx777_gg_.__active_dx777_gg_,.___SButton_dx777_gg_._theme_tertiary-invert_dx777_gg_:active{background-color:var(--intergalactic-control-tertiary-invert-active, rgba(255, 255, 255, 0.3))}.___SButton_dx777_gg_._neighborLocation_right_dx777_gg_{border-top-right-radius:0;border-bottom-right-radius:0}.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_{border-radius:0;margin-left:-1px}.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_._theme_primary-danger_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_._theme_primary-info_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_._theme_primary-success_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_._theme_primary-warning_dx777_gg_{border-left-color:var(--intergalactic-neighbor-location-neutral, rgba(255, 255, 255, 0.5))}.___SButton_dx777_gg_._neighborLocation_both_dx777_gg_._theme_primary-invert_dx777_gg_{border-left-color:var(--intergalactic-neighbor-location-invert, rgba(0, 0, 0, 0.5))}.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_{border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_._theme_primary-danger_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_._theme_primary-info_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_._theme_primary-success_dx777_gg_,.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_._theme_primary-warning_dx777_gg_{border-left-color:var(--intergalactic-neighbor-location-neutral, rgba(255, 255, 255, 0.5))}.___SButton_dx777_gg_._neighborLocation_left_dx777_gg_._theme_primary-invert_dx777_gg_{border-left-color:var(--intergalactic-neighbor-location-invert, rgba(0, 0, 0, 0.5))}.___SSpin_dx777_gg_{position:absolute;top:0;left:0;width:100%;height:100%;display:flex}.___SInner_dx777_gg_{display:inline-flex;align-items:center;justify-content:center;height:100%;width:100%}.___SInner_dx777_gg_.__loading_dx777_gg_{visibility:hidden}.___SText_dx777_gg_{display:inline-flex}.___SText_dx777_gg_._size_l_dx777_gg_,.___SText_dx777_gg_._size_m_dx777_gg_{margin-left:var(--intergalactic-spacing-2x, 8px);margin-right:var(--intergalactic-spacing-2x, 8px)}.___SText_dx777_gg_._size_m_dx777_gg_{line-height:var(--intergalactic-lh-200, 142%)}.___SText_dx777_gg_._size_l_dx777_gg_{line-height:var(--intergalactic-lh-300, 150%)}.___SText_dx777_gg_._size_l_dx777_gg_:only-child{margin-left:var(--intergalactic-spacing-3x, 12px);margin-right:var(--intergalactic-spacing-3x, 12px)}.___SText_dx777_gg_._size_l_dx777_gg_:first-child{margin-left:var(--intergalactic-spacing-3x, 12px)}.___SText_dx777_gg_._size_l_dx777_gg_:last-child{margin-right:var(--intergalactic-spacing-3x, 12px)}.___SAddon_dx777_gg_{display:inline-flex;align-items:center;justify-content:center}.___SAddon_dx777_gg_._size_m_dx777_gg_:not(:only-child):first-child{margin-left:calc(var(--intergalactic-spacing-2x, 8px) - 1px)}.___SAddon_dx777_gg_._size_m_dx777_gg_:not(:only-child):last-child{margin-right:calc(var(--intergalactic-spacing-2x, 8px) - 1px)}.___SAddon_dx777_gg_._size_m_dx777_gg_:only-child{margin-left:calc(1.5*var(--intergalactic-spacing-1x, 4px) - 1px);margin-right:calc(1.5*var(--intergalactic-spacing-1x, 4px) - 1px)}.___SAddon_dx777_gg_._size_l_dx777_gg_:not(:only-child):first-child{margin-left:calc(var(--intergalactic-spacing-3x, 12px) - 1px)}.___SAddon_dx777_gg_._size_l_dx777_gg_:not(:only-child):last-child{margin-right:calc(var(--intergalactic-spacing-3x, 12px) - 1px)}.___SAddon_dx777_gg_._size_l_dx777_gg_:only-child{margin-left:calc(3*var(--intergalactic-spacing-1x, 4px) - 1px);margin-right:calc(3*var(--intergalactic-spacing-1x, 4px) - 1px)}" /*__inner_css_end__*/, "dx777_gg_") /*__reshadow_css_end__*/, {
22
- "__SButton": "___SButton_dx777_gg_",
23
- "_keyboardFocused": "__keyboardFocused_dx777_gg_",
24
- "_disabled": "__disabled_dx777_gg_",
25
- "_size_m": "_size_m_dx777_gg_",
26
- "_size_l": "_size_l_dx777_gg_",
27
- "_neighborLocation_right": "_neighborLocation_right_dx777_gg_",
28
- "__SSpin": "___SSpin_dx777_gg_",
29
- "__SInner": "___SInner_dx777_gg_",
30
- "_loading": "__loading_dx777_gg_",
31
- "__SText": "___SText_dx777_gg_",
32
- "__SAddon": "___SAddon_dx777_gg_",
33
- "_theme_primary-info": "_theme_primary-info_dx777_gg_",
34
- "_active": "__active_dx777_gg_",
35
- "_theme_primary-success": "_theme_primary-success_dx777_gg_",
36
- "_theme_primary-warning": "_theme_primary-warning_dx777_gg_",
37
- "_theme_primary-danger": "_theme_primary-danger_dx777_gg_",
38
- "_theme_primary-invert": "_theme_primary-invert_dx777_gg_",
39
- "_theme_secondary-muted": "_theme_secondary-muted_dx777_gg_",
40
- "_theme_secondary-info": "_theme_secondary-info_dx777_gg_",
41
- "_theme_secondary-invert": "_theme_secondary-invert_dx777_gg_",
42
- "_theme_tertiary-info": "_theme_tertiary-info_dx777_gg_",
43
- "_theme_tertiary-muted": "_theme_tertiary-muted_dx777_gg_",
44
- "_theme_tertiary-invert": "_theme_tertiary-invert_dx777_gg_",
45
- "_neighborLocation_both": "_neighborLocation_both_dx777_gg_",
46
- "_neighborLocation_left": "_neighborLocation_left_dx777_gg_"
21
+ var style = ( /*__reshadow_css_start__*/_sstyled.insert( /*__inner_css_start__*/".___SButton_1cy57_gg_{position:relative;display:inline-block;align-items:center;justify-content:center;padding:0;margin:0;white-space:nowrap;font-family:inherit;line-height:normal;-webkit-text-decoration:none;text-decoration:none;text-align:center;vertical-align:middle;border:1px solid transparent;outline:0;box-shadow:none;cursor:pointer;box-sizing:border-box;overflow:visible;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:manipulation;-webkit-tap-highlight-color:transparent;font-weight:var(--intergalactic-medium, 500);color:var(--intergalactic-text-secondary, #6c6e79);min-width:-moz-fit-content;min-width:fit-content}.___SButton_1cy57_gg_::-moz-focus-inner{padding:0;border:0}.___SButton_1cy57_gg_:active,.___SButton_1cy57_gg_:focus{outline:0;-webkit-text-decoration:none;text-decoration:none}@media (hover:hover){.___SButton_1cy57_gg_:hover{outline:0;-webkit-text-decoration:none;text-decoration:none}}.___SButton_1cy57_gg_.__keyboardFocused_1cy57_gg_{box-shadow:var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.5));z-index:1}.___SButton_1cy57_gg_.__disabled_1cy57_gg_{opacity:var(--intergalactic-disabled-opacity, 0.3);cursor:default;pointer-events:none;box-shadow:none;z-index:0}.___SButton_1cy57_gg_._size_m_1cy57_gg_{height:28px;border-radius:var(--intergalactic-control-rounded, 6px);font-size:var(--intergalactic-fs-200, 14px)}.___SButton_1cy57_gg_._size_l_1cy57_gg_{height:40px;border-radius:var(--intergalactic-control-rounded, 6px);font-size:var(--intergalactic-fs-300, 16px)}.___SButton_1cy57_gg_._theme_primary-info_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-info, #008ff8)}@media (hover:hover){.___SButton_1cy57_gg_._theme_primary-info_1cy57_gg_:hover{background-color:var(--intergalactic-control-primary-info-hover, #006dca)}}.___SButton_1cy57_gg_._theme_primary-info_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_primary-info_1cy57_gg_:active{background-color:var(--intergalactic-control-primary-info-active, #044792)}.___SButton_1cy57_gg_._theme_primary-success_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-success, #009f81)}@media (hover:hover){.___SButton_1cy57_gg_._theme_primary-success_1cy57_gg_:hover{background-color:var(--intergalactic-control-primary-success-hover, #007c65)}}.___SButton_1cy57_gg_._theme_primary-success_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_primary-success_1cy57_gg_:active{background-color:var(--intergalactic-control-primary-success-active, #055345)}.___SButton_1cy57_gg_._theme_primary-warning_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-icon-primary-warning, #ff642d)}@media (hover:hover){.___SButton_1cy57_gg_._theme_primary-warning_1cy57_gg_:hover{background-color:var(--intergalactic-icon-primary-warning-hover-active, #CC5024)}}.___SButton_1cy57_gg_._theme_primary-warning_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_primary-warning_1cy57_gg_:active{background-color:var(--intergalactic-icon-primary-warning-hover-active, #CC5024)}.___SButton_1cy57_gg_._theme_primary-danger_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-primary-critical, #ff4953)}@media (hover:hover){.___SButton_1cy57_gg_._theme_primary-danger_1cy57_gg_:hover{background-color:var(--intergalactic-control-primary-critical-hover, #d1002f)}}.___SButton_1cy57_gg_._theme_primary-danger_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_primary-danger_1cy57_gg_:active{background-color:var(--intergalactic-control-primary-critical-active, #8e0016)}.___SButton_1cy57_gg_._theme_primary-invert_1cy57_gg_{color:var(--intergalactic-text-primary, #191b23);background-color:var(--intergalactic-control-primary-invert, #ffffff)}@media (hover:hover){.___SButton_1cy57_gg_._theme_primary-invert_1cy57_gg_:hover{background-color:var(--intergalactic-control-primary-invert-hover, #f4f5f9)}}.___SButton_1cy57_gg_._theme_primary-invert_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_primary-invert_1cy57_gg_:active{background-color:var(--intergalactic-control-primary-invert-active, #e0e1e9)}.___SButton_1cy57_gg_._theme_secondary-muted_1cy57_gg_{color:var(--intergalactic-text-secondary, #6c6e79);border-color:var(--intergalactic-border-primary, #c4c7cf);background-color:var(--intergalactic-control-secondary-neutral, rgba(138, 142, 155, 0.1))}@media (hover:hover){.___SButton_1cy57_gg_._theme_secondary-muted_1cy57_gg_:hover{background-color:var(--intergalactic-control-secondary-neutral-hover,\n rgba(138, 142, 155, 0.2));color:var(--intergalactic-text-primary, #191b23)}}.___SButton_1cy57_gg_._theme_secondary-muted_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_secondary-muted_1cy57_gg_:active{background-color:var(--intergalactic-control-secondary-neutral-active,\n rgba(138, 142, 155, 0.3));color:var(--intergalactic-text-primary, #191b23)}.___SButton_1cy57_gg_._theme_secondary-info_1cy57_gg_{background-color:var(--intergalactic-control-secondary-info, rgba(0, 143, 248, 0.1));color:var(--intergalactic-text-link, #006dca);border-color:var(--intergalactic-control-primary-info, #008ff8)}@media (hover:hover){.___SButton_1cy57_gg_._theme_secondary-info_1cy57_gg_:hover{background-color:var(--intergalactic-control-secondary-info-hover, rgba(0, 143, 248, 0.2))}}.___SButton_1cy57_gg_._theme_secondary-info_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_secondary-info_1cy57_gg_:active{background-color:var(--intergalactic-control-secondary-info-active, rgba(0, 143, 248, 0.3))}.___SButton_1cy57_gg_._theme_secondary-invert_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);border-color:var(--intergalactic-border-primary-invert, #ffffff);background-color:var(--intergalactic-control-secondary-invert, rgba(255, 255, 255, 0.05))}@media (hover:hover){.___SButton_1cy57_gg_._theme_secondary-invert_1cy57_gg_:hover{background-color:var(--intergalactic-control-secondary-invert-hover, rgba(255, 255, 255, 0.1))}}.___SButton_1cy57_gg_._theme_secondary-invert_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_secondary-invert_1cy57_gg_:active{background-color:var(--intergalactic-control-secondary-invert-active,\n rgba(255, 255, 255, 0.3))}.___SButton_1cy57_gg_._theme_tertiary-info_1cy57_gg_{color:var(--intergalactic-text-link, #006dca);background-color:var(--intergalactic-control-tertiary-info, rgba(0, 143, 248, 0))}@media (hover:hover){.___SButton_1cy57_gg_._theme_tertiary-info_1cy57_gg_:hover{background-color:var(--intergalactic-control-tertiary-info-hover, rgba(0, 143, 248, 0.2))}}.___SButton_1cy57_gg_._theme_tertiary-info_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_tertiary-info_1cy57_gg_:active{background-color:var(--intergalactic-control-tertiary-info-active, rgba(0, 143, 248, 0.3))}.___SButton_1cy57_gg_._theme_tertiary-muted_1cy57_gg_{color:var(--intergalactic-text-secondary, #6c6e79);background-color:var(--intergalactic-control-tertiary-neutral, rgba(138, 142, 155, 0))}@media (hover:hover){.___SButton_1cy57_gg_._theme_tertiary-muted_1cy57_gg_:hover{background-color:var(--intergalactic-control-tertiary-neutral-hover, rgba(138, 142, 155, 0.2));color:var(--intergalactic-text-primary, #191b23)}}.___SButton_1cy57_gg_._theme_tertiary-muted_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_tertiary-muted_1cy57_gg_:active{background-color:var(--intergalactic-control-tertiary-neutral-active,\n rgba(138, 142, 155, 0.3));color:var(--intergalactic-text-primary, #191b23)}.___SButton_1cy57_gg_._theme_tertiary-invert_1cy57_gg_{color:var(--intergalactic-text-primary-invert, #ffffff);background-color:var(--intergalactic-control-tertiary-invert, rgba(255, 255, 255, 0))}@media (hover:hover){.___SButton_1cy57_gg_._theme_tertiary-invert_1cy57_gg_:hover{background-color:var(--intergalactic-control-tertiary-invert-hover, rgba(255, 255, 255, 0.1))}}.___SButton_1cy57_gg_._theme_tertiary-invert_1cy57_gg_.__active_1cy57_gg_,.___SButton_1cy57_gg_._theme_tertiary-invert_1cy57_gg_:active{background-color:var(--intergalactic-control-tertiary-invert-active, rgba(255, 255, 255, 0.3))}.___SButton_1cy57_gg_._neighborLocation_right_1cy57_gg_{border-top-right-radius:0;border-bottom-right-radius:0}.___SButton_1cy57_gg_._neighborLocation_both_1cy57_gg_{border-radius:0;margin-left:-1px}.___SButton_1cy57_gg_._neighborLocation_left_1cy57_gg_{border-top-left-radius:0;border-bottom-left-radius:0;margin-left:-1px}.___SButton_1cy57_gg_._neighborLocation_both_1cy57_gg_,.___SButton_1cy57_gg_._neighborLocation_left_1cy57_gg_{position:relative}.___SButton_1cy57_gg_+.___SButton_1cy57_gg_._neighborLocation_both_1cy57_gg_:after,.___SButton_1cy57_gg_+.___SButton_1cy57_gg_._neighborLocation_left_1cy57_gg_:after{content:\"\";position:absolute;top:-1px;left:-1px;width:1px;height:calc(100% + 2px)}.___SButton_1cy57_gg_._neighborLocation_both_1cy57_gg_:after,.___SButton_1cy57_gg_._neighborLocation_left_1cy57_gg_:after{background-color:var(--intergalactic-text-primary-invert, #ffffff)}.___SButton_1cy57_gg_._neighborLocation_both_1cy57_gg_._theme_secondary-muted_1cy57_gg_:after,.___SButton_1cy57_gg_._neighborLocation_left_1cy57_gg_._theme_secondary-muted_1cy57_gg_:after{background-color:var(--intergalactic-border-primary, #c4c7cf)}.___SSpin_1cy57_gg_{position:absolute;top:0;left:0;width:100%;height:100%;display:flex}.___SInner_1cy57_gg_{display:inline-flex;align-items:center;justify-content:center;height:100%;width:100%}.___SInner_1cy57_gg_.__loading_1cy57_gg_{visibility:hidden}.___SText_1cy57_gg_{display:inline-flex}.___SText_1cy57_gg_._size_l_1cy57_gg_,.___SText_1cy57_gg_._size_m_1cy57_gg_{margin-left:var(--intergalactic-spacing-2x, 8px);margin-right:var(--intergalactic-spacing-2x, 8px)}.___SText_1cy57_gg_._size_m_1cy57_gg_{line-height:var(--intergalactic-lh-200, 142%)}.___SText_1cy57_gg_._size_l_1cy57_gg_{line-height:var(--intergalactic-lh-300, 150%)}.___SText_1cy57_gg_._size_l_1cy57_gg_:only-child{margin-left:var(--intergalactic-spacing-3x, 12px);margin-right:var(--intergalactic-spacing-3x, 12px)}.___SText_1cy57_gg_._size_l_1cy57_gg_:first-child{margin-left:var(--intergalactic-spacing-3x, 12px)}.___SText_1cy57_gg_._size_l_1cy57_gg_:last-child{margin-right:var(--intergalactic-spacing-3x, 12px)}.___SAddon_1cy57_gg_{display:inline-flex;align-items:center;justify-content:center}.___SAddon_1cy57_gg_._size_m_1cy57_gg_:not(:only-child):first-child{margin-left:calc(var(--intergalactic-spacing-2x, 8px) - 1px)}.___SAddon_1cy57_gg_._size_m_1cy57_gg_:not(:only-child):last-child{margin-right:calc(var(--intergalactic-spacing-2x, 8px) - 1px)}.___SAddon_1cy57_gg_._size_m_1cy57_gg_:only-child{margin-left:calc(1.5*var(--intergalactic-spacing-1x, 4px) - 1px);margin-right:calc(1.5*var(--intergalactic-spacing-1x, 4px) - 1px)}.___SAddon_1cy57_gg_._size_l_1cy57_gg_:not(:only-child):first-child{margin-left:calc(var(--intergalactic-spacing-3x, 12px) - 1px)}.___SAddon_1cy57_gg_._size_l_1cy57_gg_:not(:only-child):last-child{margin-right:calc(var(--intergalactic-spacing-3x, 12px) - 1px)}.___SAddon_1cy57_gg_._size_l_1cy57_gg_:only-child{margin-left:calc(3*var(--intergalactic-spacing-1x, 4px) - 1px);margin-right:calc(3*var(--intergalactic-spacing-1x, 4px) - 1px)}" /*__inner_css_end__*/, "1cy57_gg_") /*__reshadow_css_end__*/, {
22
+ "__SButton": "___SButton_1cy57_gg_",
23
+ "_keyboardFocused": "__keyboardFocused_1cy57_gg_",
24
+ "_disabled": "__disabled_1cy57_gg_",
25
+ "_size_m": "_size_m_1cy57_gg_",
26
+ "_size_l": "_size_l_1cy57_gg_",
27
+ "_neighborLocation_right": "_neighborLocation_right_1cy57_gg_",
28
+ "_neighborLocation_both": "_neighborLocation_both_1cy57_gg_",
29
+ "_neighborLocation_left": "_neighborLocation_left_1cy57_gg_",
30
+ "__SSpin": "___SSpin_1cy57_gg_",
31
+ "__SInner": "___SInner_1cy57_gg_",
32
+ "_loading": "__loading_1cy57_gg_",
33
+ "__SText": "___SText_1cy57_gg_",
34
+ "__SAddon": "___SAddon_1cy57_gg_",
35
+ "_theme_primary-info": "_theme_primary-info_1cy57_gg_",
36
+ "_active": "__active_1cy57_gg_",
37
+ "_theme_primary-success": "_theme_primary-success_1cy57_gg_",
38
+ "_theme_primary-warning": "_theme_primary-warning_1cy57_gg_",
39
+ "_theme_primary-danger": "_theme_primary-danger_1cy57_gg_",
40
+ "_theme_primary-invert": "_theme_primary-invert_1cy57_gg_",
41
+ "_theme_secondary-muted": "_theme_secondary-muted_1cy57_gg_",
42
+ "_theme_secondary-info": "_theme_secondary-info_1cy57_gg_",
43
+ "_theme_secondary-invert": "_theme_secondary-invert_1cy57_gg_",
44
+ "_theme_tertiary-info": "_theme_tertiary-info_1cy57_gg_",
45
+ "_theme_tertiary-muted": "_theme_tertiary-muted_1cy57_gg_",
46
+ "_theme_tertiary-invert": "_theme_tertiary-invert_1cy57_gg_"
47
47
  });
48
48
  import hasLabels from 'intergalactic/utils/lib/hasLabels';
49
49
  export var MAP_USE_DEFAULT_THEME = {