@scouterna/ui-react
Advanced tools
@@ -68,4 +68,8 @@ 'use client'; | ||
| events: { | ||
| onScoutChecked: 'scoutChecked', | ||
| on_fieldId: '_fieldId' | ||
| onScoutInputChange: 'scoutInputChange', | ||
| onScoutBlur: 'scoutBlur', | ||
| on_scoutValidate: '_scoutValidate', | ||
| on_scoutInvalid: '_scoutInvalid', | ||
| on_scoutFieldId: '_scoutFieldId', | ||
| onScoutChecked: 'scoutChecked' | ||
| }, | ||
@@ -98,3 +102,5 @@ defineCustomElement: defineScoutCheckbox | ||
| onScoutBlur: 'scoutBlur', | ||
| on_fieldId: '_fieldId' | ||
| on_scoutValidate: '_scoutValidate', | ||
| on_scoutInvalid: '_scoutInvalid', | ||
| on_scoutFieldId: '_scoutFieldId' | ||
| }, | ||
@@ -149,4 +155,8 @@ defineCustomElement: defineScoutInput | ||
| events: { | ||
| onScoutChecked: 'scoutChecked', | ||
| on_fieldId: '_fieldId' | ||
| onScoutInputChange: 'scoutInputChange', | ||
| onScoutBlur: 'scoutBlur', | ||
| on_scoutValidate: '_scoutValidate', | ||
| on_scoutInvalid: '_scoutInvalid', | ||
| on_scoutFieldId: '_scoutFieldId', | ||
| onScoutChecked: 'scoutChecked' | ||
| }, | ||
@@ -163,3 +173,5 @@ defineCustomElement: defineScoutRadioButton | ||
| onScoutBlur: 'scoutBlur', | ||
| on_fieldId: '_fieldId' | ||
| on_scoutValidate: '_scoutValidate', | ||
| on_scoutInvalid: '_scoutInvalid', | ||
| on_scoutFieldId: '_scoutFieldId' | ||
| }, | ||
@@ -182,6 +194,10 @@ defineCustomElement: defineScoutSelect | ||
| events: { | ||
| onScoutSwitchToggled: 'scoutSwitchToggled', | ||
| on_fieldId: '_fieldId' | ||
| onScoutInputChange: 'scoutInputChange', | ||
| onScoutBlur: 'scoutBlur', | ||
| on_scoutValidate: '_scoutValidate', | ||
| on_scoutInvalid: '_scoutInvalid', | ||
| on_scoutFieldId: '_scoutFieldId', | ||
| onScoutChecked: 'scoutChecked' | ||
| }, | ||
| defineCustomElement: defineScoutSwitch | ||
| }); |
@@ -40,2 +40,12 @@ /** | ||
| export type ScoutCheckboxEvents = { | ||
| onScoutInputChange: EventName<ScoutCheckboxCustomEvent<{ | ||
| value: string; | ||
| element: HTMLElement; | ||
| }>>; | ||
| onScoutBlur: EventName<CustomEvent<void>>; | ||
| on_scoutValidate: EventName<ScoutCheckboxCustomEvent<{ | ||
| element: HTMLElement; | ||
| }>>; | ||
| on_scoutInvalid: EventName<CustomEvent<void>>; | ||
| on_scoutFieldId: EventName<CustomEvent<string>>; | ||
| onScoutChecked: EventName<ScoutCheckboxCustomEvent<{ | ||
@@ -45,3 +55,2 @@ checked: boolean; | ||
| }>>; | ||
| on_fieldId: EventName<CustomEvent<string>>; | ||
| }; | ||
@@ -56,6 +65,10 @@ export declare const ScoutCheckbox: StencilReactComponent<ScoutCheckboxElement, ScoutCheckboxEvents>; | ||
| value: string; | ||
| element: HTMLInputElement; | ||
| element: HTMLElement; | ||
| }>>; | ||
| onScoutBlur: EventName<CustomEvent<void>>; | ||
| on_fieldId: EventName<CustomEvent<string>>; | ||
| on_scoutValidate: EventName<ScoutInputCustomEvent<{ | ||
| element: HTMLElement; | ||
| }>>; | ||
| on_scoutInvalid: EventName<CustomEvent<void>>; | ||
| on_scoutFieldId: EventName<CustomEvent<string>>; | ||
| }; | ||
@@ -78,2 +91,12 @@ export declare const ScoutInput: StencilReactComponent<ScoutInputElement, ScoutInputEvents>; | ||
| export type ScoutRadioButtonEvents = { | ||
| onScoutInputChange: EventName<ScoutRadioButtonCustomEvent<{ | ||
| value: string; | ||
| element: HTMLElement; | ||
| }>>; | ||
| onScoutBlur: EventName<CustomEvent<void>>; | ||
| on_scoutValidate: EventName<ScoutRadioButtonCustomEvent<{ | ||
| element: HTMLElement; | ||
| }>>; | ||
| on_scoutInvalid: EventName<CustomEvent<void>>; | ||
| on_scoutFieldId: EventName<CustomEvent<string>>; | ||
| onScoutChecked: EventName<ScoutRadioButtonCustomEvent<{ | ||
@@ -83,3 +106,2 @@ checked: boolean; | ||
| }>>; | ||
| on_fieldId: EventName<CustomEvent<string>>; | ||
| }; | ||
@@ -90,6 +112,10 @@ export declare const ScoutRadioButton: StencilReactComponent<ScoutRadioButtonElement, ScoutRadioButtonEvents>; | ||
| value: string; | ||
| element: HTMLSelectElement; | ||
| element: HTMLElement; | ||
| }>>; | ||
| onScoutBlur: EventName<CustomEvent<void>>; | ||
| on_fieldId: EventName<CustomEvent<string>>; | ||
| on_scoutValidate: EventName<ScoutSelectCustomEvent<{ | ||
| element: HTMLElement; | ||
| }>>; | ||
| on_scoutInvalid: EventName<CustomEvent<void>>; | ||
| on_scoutFieldId: EventName<CustomEvent<string>>; | ||
| }; | ||
@@ -100,8 +126,17 @@ export declare const ScoutSelect: StencilReactComponent<ScoutSelectElement, ScoutSelectEvents>; | ||
| export type ScoutSwitchEvents = { | ||
| onScoutSwitchToggled: EventName<ScoutSwitchCustomEvent<{ | ||
| toggled: boolean; | ||
| onScoutInputChange: EventName<ScoutSwitchCustomEvent<{ | ||
| value: string; | ||
| element: HTMLElement; | ||
| }>>; | ||
| onScoutBlur: EventName<CustomEvent<void>>; | ||
| on_scoutValidate: EventName<ScoutSwitchCustomEvent<{ | ||
| element: HTMLElement; | ||
| }>>; | ||
| on_scoutInvalid: EventName<CustomEvent<void>>; | ||
| on_scoutFieldId: EventName<CustomEvent<string>>; | ||
| onScoutChecked: EventName<ScoutSwitchCustomEvent<{ | ||
| checked: boolean; | ||
| element: HTMLInputElement; | ||
| }>>; | ||
| on_fieldId: EventName<CustomEvent<string>>; | ||
| }; | ||
| export declare const ScoutSwitch: StencilReactComponent<ScoutSwitchElement, ScoutSwitchEvents>; |
+2
-2
| { | ||
| "name": "@scouterna/ui-react", | ||
| "version": "2.2.1", | ||
| "version": "2.2.2", | ||
| "description": "Scouterna Design System React Components", | ||
@@ -20,3 +20,3 @@ "main": "dist/index.js", | ||
| "@stencil/react-output-target": "^1.2.0", | ||
| "@scouterna/ui-webc": "2.2.1" | ||
| "@scouterna/ui-webc": "2.2.2" | ||
| }, | ||
@@ -23,0 +23,0 @@ "devDependencies": { |
Explicitly Unlicensed Item
LicenseSomething was found which is explicitly marked as unlicensed.
Found 1 instance in 1 package
Explicitly Unlicensed Item
LicenseSomething was found which is explicitly marked as unlicensed.
Found 1 instance in 1 package
19557
11.23%335
17.96%+ Added
+ Added
- Removed
- Removed
Updated