@salutejs/plasma-new-hope 0.88.0-canary.1249.9498851415.0 → 0.88.0-canary.1249.9542153800.0
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salutejs/plasma-new-hope",
|
3
|
-
"version": "0.88.0-canary.1249.
|
3
|
+
"version": "0.88.0-canary.1249.9542153800.0",
|
4
4
|
"description": "Salute Design System blueprint",
|
5
5
|
"main": "cjs/index.js",
|
6
6
|
"module": "es/index.js",
|
@@ -103,5 +103,5 @@
|
|
103
103
|
"react-popper": "2.3.0",
|
104
104
|
"storeon": "3.1.5"
|
105
105
|
},
|
106
|
-
"gitHead": "
|
106
|
+
"gitHead": "c735c6d8bc2086c85a6cd556ba94e3b0d3be171f"
|
107
107
|
}
|
@@ -31,9 +31,11 @@ export function App() {
|
|
31
31
|
Компоненты `Radiobox` следует объединять в `RadioGroup`
|
32
32
|
|
33
33
|
```tsx live
|
34
|
-
<
|
35
|
-
<
|
36
|
-
|
37
|
-
|
38
|
-
|
34
|
+
<div>
|
35
|
+
<RadioGroup aria-labelledby="radiogroup-title-id">
|
36
|
+
<H3 id="radiogroup-title-id" style=\{{"margin-bottom": "12px"}}>Заголовок</H3>
|
37
|
+
<Radiobox name="radio-1" label="Радиокнопка 1" description="Описание 1" defaultChecked />
|
38
|
+
<Radiobox name="radio-1" label="Радиокнопка 2" description="Описание 2" />
|
39
|
+
</RadioGroup>
|
40
|
+
</div>
|
39
41
|
```
|
@@ -31,9 +31,11 @@ export function App() {
|
|
31
31
|
Компоненты `Radiobox` следует объединять в `RadioGroup`
|
32
32
|
|
33
33
|
```tsx live
|
34
|
-
<
|
35
|
-
<
|
36
|
-
|
37
|
-
|
38
|
-
|
34
|
+
<div>
|
35
|
+
<RadioGroup aria-labelledby="radiogroup-title-id">
|
36
|
+
<H3 id="radiogroup-title-id" style=\{{"margin-bottom": "12px"}}>Заголовок</H3>
|
37
|
+
<Radiobox name="radio-1" label="Радиокнопка 1" description="Описание 1" defaultChecked />
|
38
|
+
<Radiobox name="radio-1" label="Радиокнопка 2" description="Описание 2" />
|
39
|
+
</RadioGroup>
|
40
|
+
</div>
|
39
41
|
```
|