@forter/radio-button
Advanced tools
Comparing version 2.1.5 to 2.1.6
@@ -6,2 +6,10 @@ # Change Log | ||
## [2.1.6](https://github.com/forter/web-components/compare/@forter/radio-button@2.1.5...@forter/radio-button@2.1.6) (2019-11-27) | ||
**Note:** Version bump only for package @forter/radio-button | ||
## [2.1.5](https://github.com/forter/web-components/compare/@forter/radio-button@2.1.4...@forter/radio-button@2.1.5) (2019-09-19) | ||
@@ -8,0 +16,0 @@ |
import { decorate as _decorate, get as _get, getPrototypeOf as _getPrototypeOf } from './_virtual/_rollupPluginBabelHelpers.js'; | ||
import { LitElement, property, html } from 'lit-element'; | ||
import bound from 'bound-decorator'; | ||
@@ -7,4 +6,5 @@ import { getRandomString } from '@forter/functions/get-random-string'; | ||
import { DelegatesFocusMixin } from '@forter/mixins/delegates-focus-mixin'; | ||
import { LitElement, property, html } from 'lit-element'; | ||
import { render } from 'lit-html'; | ||
import style from './fc-radio-button.css.js'; | ||
import style from './fc-radio-button.css'; | ||
@@ -11,0 +11,0 @@ /** |
import { decorate as _decorate } from './_virtual/_rollupPluginBabelHelpers.js'; | ||
import { LitElement, property, html } from 'lit-element'; | ||
import { SelectMixin } from '@forter/mixins/select-mixin'; | ||
import style from './fc-radio-group.css.js'; | ||
import fieldsetReset from '@forter/styles/fieldset-reset.css.js'; | ||
import style from './fc-radio-group.css'; | ||
import fieldsetReset from '@forter/styles/fieldset-reset.css'; | ||
@@ -7,0 +7,0 @@ /** |
@@ -0,3 +1,3 @@ | ||
import './fc-radio-button.js'; | ||
import './fc-radio-group.js'; | ||
import './fc-radio-button.js'; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@forter/radio-button", | ||
"version": "2.1.5", | ||
"version": "2.1.6", | ||
"description": "Radio Button and Group from Forter Components", | ||
@@ -53,3 +53,3 @@ "author": "Forter Developers", | ||
"dependencies": { | ||
"@forter/core": "^2.0.0", | ||
"@forter/core": "^2.0.1", | ||
"@forter/functions": "^2.0.0", | ||
@@ -59,3 +59,3 @@ "@forter/mixins": "^3.0.0", | ||
}, | ||
"gitHead": "0aae1f4ddd21eb0daaab2d0b142f7eb25bd511e1" | ||
"gitHead": "26a81b071f7d326de0472263bfd092842d61a9f8" | ||
} |
# fc-radio-button | ||
## Properties | ||
| Property | Attribute | Type | Description | | ||
|------------|------------|-----------|---------------------------------| | ||
| `checked` | `checked` | `boolean` | If the element is disabled | | ||
| `disabled` | `disabled` | `boolean` | Whether the element is disabled | | ||
| `inputId` | | `string` | | | ||
| `label` | `label` | `string` | The element's label | | ||
| `labelId` | | `string` | | | ||
| `name` | `name` | `string` | The input's name | | ||
| `value` | `value` | `string` | The input's value | | ||
| Property | Attribute | Type | Default | Description | | ||
|------------|------------|-----------|---------|---------------------------------| | ||
| `checked` | `checked` | `boolean` | false | If the element is disabled | | ||
| `disabled` | `disabled` | `boolean` | false | Whether the element is disabled | | ||
| `inputId` | | `string` | | | | ||
| `label` | `label` | `string` | "" | The element's label | | ||
| `labelId` | | `string` | | | | ||
| `name` | `name` | `string` | "" | The input's name | | ||
| `value` | `value` | `string` | "" | The input's value | | ||
@@ -20,2 +20,9 @@ ## Events | ||
## Slots | ||
| Name | Description | | ||
|---------|--------------------------------------------------| | ||
| `input` | internally used to render light children. Do not use. | | ||
| `label` | internally used to render light children. Do not use. | | ||
## CSS Custom Properties | ||
@@ -32,10 +39,3 @@ | ||
## Slots | ||
| Name | Description | | ||
|---------|--------------------------------------------------| | ||
| `input` | internally used to render light children. Do not use. | | ||
| `label` | internally used to render light children. Do not use. | | ||
# fc-radio-group | ||
@@ -81,4 +81,10 @@ | ||
| `attributeForSelected` | | `string` | "checked" | | | ||
| `legend` | `legend` | `string` | | The legend for the fieldset | | ||
| `legend` | `legend` | `string` | "" | The legend for the fieldset | | ||
## Slots | ||
| Name | Description | | ||
|------|----------------------------------------------| | ||
| | internally used for light input. Do not use. | | ||
## CSS Custom Properties | ||
@@ -89,7 +95,1 @@ | ||
| `--fc-radio-group-legend-color` | default: `var(--ftr-red)` | | ||
## Slots | ||
| Name | Description | | ||
|------|----------------------------------------------| | ||
| | internally used for light input. Do not use. | |
@@ -0,2 +1,2 @@ | ||
export * from './fc-radio-button'; | ||
export * from './fc-radio-group'; | ||
export * from './fc-radio-button'; |
@@ -93,2 +93,28 @@ { | ||
} | ||
], | ||
"cssProperties": [ | ||
{ | ||
"name": "--fc-radio-disabled-text-color", | ||
"description": "default: `var(--gray-3)`" | ||
}, | ||
{ | ||
"name": "--fc-radio-disabled-border-color", | ||
"description": "default: `rgba(0, 0, 0, 0.25)`" | ||
}, | ||
{ | ||
"name": "--fc-radio-hover-color", | ||
"description": "default: `var(--gray-0)`" | ||
}, | ||
{ | ||
"name": "--fc-radio-checked-color", | ||
"description": "default: `var(--ftr-cyan)`" | ||
}, | ||
{ | ||
"name": "--fc-radio-text-color", | ||
"description": "default: `black`" | ||
}, | ||
{ | ||
"name": "--fc-radio-border-color", | ||
"description": "default: `var(--gray-8)`" | ||
} | ||
] | ||
@@ -120,3 +146,2 @@ }, | ||
], | ||
"events": [], | ||
"slots": [ | ||
@@ -127,2 +152,8 @@ { | ||
} | ||
], | ||
"cssProperties": [ | ||
{ | ||
"name": "--fc-radio-group-legend-color", | ||
"description": "default: `var(--ftr-red)`" | ||
} | ||
] | ||
@@ -129,0 +160,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77368
1463
1
Updated@forter/core@^2.0.1