@miljodirektoratet/md-css 1.5.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -7,18 +7,18 @@ Class names in brackets [] are optional-/togglable-/decorator- or state dependan
|
|
|
7
7
|
See [Storybook](https://miljodir.github.io/md-components) for examples and more info.
|
|
8
8
|
|
|
9
9
|
```html
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
10
|
+
<div className="md-radiobutton [md-checkbox--disabled]">
|
|
11
|
+
<span className="md-radiobutton__check-area">
|
|
12
|
+
<span className="md-radiobutton__selected-dot" />
|
|
13
|
+
</span>
|
|
14
|
+
<input
|
|
15
|
+
id="{radioGroupId}"
|
|
16
|
+
type="radio"
|
|
17
|
+
value="{value}"
|
|
18
|
+
checked="{true|false}"
|
|
19
|
+
disabled="{disabled}"
|
|
20
|
+
{...otherProps}
|
|
21
|
+
/>
|
|
22
|
+
<label>{label}</label>
|
|
23
|
+
</div>
|
|
24
24
|
```
|