@gouvminint/vue-dsfr
Advanced tools
Comparing version 5.10.2 to 5.10.3
{ | ||
"name": "@gouvminint/vue-dsfr", | ||
"version": "5.10.2", | ||
"version": "5.10.3", | ||
"type": "module", | ||
@@ -57,2 +57,3 @@ "files": [ | ||
"coverage": "vitest run --coverage", | ||
"test-storybook": "test-storybook --url $TEST_STORYBOOK_URL", | ||
"test": "run-s test:unit test:ct-ci", | ||
@@ -100,2 +101,3 @@ "test:watch": "vitest", | ||
"@storybook/test": "^7.6.10", | ||
"@storybook/test-runner": "^0.16.0", | ||
"@storybook/testing-library": "^0.2.2", | ||
@@ -134,2 +136,3 @@ "@storybook/theming": "^7.6.10", | ||
"patch-package": "^8.0.0", | ||
"playwright": "^1.41.2", | ||
"postcss": "^8.4.33", | ||
@@ -136,0 +139,0 @@ "postcss-csso": "^6.0.1", |
export type DsfrRadioButtonProps = { | ||
id?: string; | ||
name?: string; | ||
modelValue?: string | number | undefined; | ||
modelValue: string | number | undefined; | ||
small?: boolean; | ||
@@ -22,4 +22,4 @@ inline?: boolean; | ||
legend?: string; | ||
modelValue: string | number | undefined; | ||
modelValue?: string | number | undefined; | ||
options?: DsfrRadioButtonProps[]; | ||
}; |
@@ -23,3 +23,3 @@ import type { DsfrRadioButtonProps } from './DsfrRadioButton.types'; | ||
label: string; | ||
modelValue: string | number; | ||
modelValue: string | number | undefined; | ||
hint: string; | ||
@@ -26,0 +26,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
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
801218
70