-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(plasma-b2c): Replace
Radiobox
from plasma-new-hope and update …
…snapshots
- Loading branch information
1 parent
1a41dbc
commit 29c97dd
Showing
10 changed files
with
134 additions
and
11 deletions.
There are no files selected for viewing
Binary file modified
BIN
+121 Bytes
(100%)
...obox/Radiobox.component-test.tsx/plasma-web Radiobox -- default size m.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+158 Bytes
(100%)
...obox/Radiobox.component-test.tsx/plasma-web Radiobox -- default size s.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+60 Bytes
(100%)
...diobox/RadioboxBase.component-test.tsx/plasma-core Radiobox -- __label.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+26 Bytes
(100%)
...box/RadioboxBase.component-test.tsx/plasma-core Radiobox -- with focus.snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
75 changes: 75 additions & 0 deletions
75
packages/plasma-b2c/src/components/Radiobox/Radiobox.config.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
import { css } from '@salutejs/plasma-new-hope/styled-components'; | ||
|
||
export const config = { | ||
defaults: { | ||
view: 'accent', | ||
size: 'm', | ||
focused: 'true', | ||
}, | ||
variations: { | ||
/** | ||
* Размер контрола. | ||
*/ | ||
size: { | ||
s: css` | ||
--plasma-radiobox-trigger-size: 1rem; | ||
--plasma-radiobox-trigger-border-radius 1.125rem; | ||
--plasma-radiobox-ellipse-size 0.5rem; | ||
--plasma-radiobox-content-top-offset: 0.1rem; | ||
--plasma-radiobox-content-left-offset 0.5rem; | ||
--plasma-radiobox-label-font-family: var(--plasma-typo-footnote1-font-family); | ||
--plasma-radiobox-label-font-size: var(--plasma-typo-footnote1-font-size); | ||
--plasma-radiobox-label-font-style: var(--plasma-typo-footnote1-font-style); | ||
--plasma-radiobox-label-font-weight: var(--plasma-typo-footnote1-font-weight); | ||
--plasma-radiobox-label-letter-spacing: var(--plasma-typo-footnote1-letter-spacing); | ||
--plasma-radiobox-label-line-height: var(--plasma-typo-footnote1-line-height); | ||
--plasma-radiobox-description-font-family: var(--plasma-typo-caption-font-family); | ||
--plasma-radiobox-description-font-size: var(--plasma-typo-caption-font-size); | ||
--plasma-radiobox-description-font-style: var(--plasma-typo-caption-font-style); | ||
--plasma-radiobox-description-font-weight: var(--plasma-typo-caption-font-weight); | ||
--plasma-radiobox-description-letter-spacing: var(--plasma-typo-caption-letter-spacing); | ||
--plasma-radiobox-description-line-height: var(--plasma-typo-caption-line-height); | ||
`, | ||
m: css` | ||
--plasma-radiobox-trigger-size: 1.375rem; | ||
--plasma-radiobox-trigger-border-radius 1.125rem; | ||
--plasma-radiobox-ellipse-size 0.625rem; | ||
--plasma-radiobox-content-top-offset: 0.25rem; | ||
--plasma-radiobox-content-left-offset 0.6875rem; | ||
--plasma-radiobox-label-font-family: var(--plasma-typo-body1-font-family); | ||
--plasma-radiobox-label-font-size: var(--plasma-typo-body1-font-size); | ||
--plasma-radiobox-label-font-style: var(--plasma-typo-body1-font-style); | ||
--plasma-radiobox-label-font-weight: var(--plasma-typo-body1-font-weight); | ||
--plasma-radiobox-label-letter-spacing: var(--plasma-typo-body1-letter-spacing); | ||
--plasma-radiobox-label-line-height: var(--plasma-typo-body1-line-height); | ||
--plasma-radiobox-description-font-family: var(--plasma-typo-footnote1-font-family); | ||
--plasma-radiobox-description-font-size: var(--plasma-typo-footnote1-font-size); | ||
--plasma-radiobox-description-font-style: var(--plasma-typo-footnote1-font-style); | ||
--plasma-radiobox-description-font-weight: var(--plasma-typo-footnote1-font-weight); | ||
--plasma-radiobox-description-letter-spacing: var(--plasma-typo-footnote1-letter-spacing); | ||
--plasma-radiobox-description-line-height: var(--plasma-typo-footnote1-line-height); | ||
`, | ||
}, | ||
/** | ||
* Вид контрола. | ||
*/ | ||
view: { | ||
accent: css` | ||
--plasma-radiobox-fill-color: var(--plasma-colors-accent); | ||
--plasma-radiobox-ellipse-color: var(--plasma-colors-white); | ||
--plasma-radiobox-description-color: var(--plasma-colors-secondary); | ||
--plasma-radiobox-trigger-border-color: var(--plasma-colors-secondary); | ||
`, | ||
}, | ||
disabled: { | ||
true: css` | ||
--plasma-radiobox-disabled-opacity: 0.4; | ||
`, | ||
}, | ||
focused: { | ||
true: css` | ||
--plasma-radiobox-focus-color: var(--plasma-colors-accent); | ||
`, | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { radioboxConfig, component, mergeConfig } from '@salutejs/plasma-new-hope/styled-components'; | ||
|
||
import { config } from './Radiobox.config'; | ||
|
||
const mergedConfig = mergeConfig(radioboxConfig, config); | ||
const RadioboxComponent = component(mergedConfig); | ||
|
||
export type RadioboxProps = typeof RadioboxComponent; | ||
|
||
/** | ||
* Переключатель, или *радиокнопка*. | ||
*/ | ||
export const Radiobox = RadioboxComponent; | ||
|
||
export { RadioGroup } from '@salutejs/plasma-new-hope/styled-components'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export { Radiobox, RadioGroup } from '@salutejs/plasma-hope'; | ||
export type { RadioboxProps } from '@salutejs/plasma-hope'; | ||
export { Radiobox, RadioGroup } from './Radiobox'; | ||
export type { RadioboxProps } from './Radiobox'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters