platformscode-new-react 0.0.81 → 0.0.82
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/dist/components.d.ts +4 -1
- package/dist/index.cjs.js +27167 -207
- package/dist/index.js +30614 -3643
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/components.d.ts
CHANGED
|
@@ -219,7 +219,10 @@ export declare const DgaProgressIndicatorV2: import('@lit/react').ReactWebCompon
|
|
|
219
219
|
export declare const DgaQuote: import('@lit/react').ReactWebComponent<DgaQuoteElement, {}>;
|
|
220
220
|
export declare const DgaRadialStepper: import('@lit/react').ReactWebComponent<DgaRadialStepperElement, {}>;
|
|
221
221
|
export declare const DgaRadioButton: import('@lit/react').ReactWebComponent<DgaRadioButtonElement, {}>;
|
|
222
|
-
|
|
222
|
+
type DgaRatingEvents = {
|
|
223
|
+
onRatingChange: EventName<CustomEvent<number>>;
|
|
224
|
+
};
|
|
225
|
+
export declare const DgaRating: import('@lit/react').ReactWebComponent<DgaRatingElement, DgaRatingEvents>;
|
|
223
226
|
export declare const DgaRectangleSkeleton: import('@lit/react').ReactWebComponent<DgaRectangleSkeletonElement, {}>;
|
|
224
227
|
type DgaSearchBoxEvents = {
|
|
225
228
|
onOnChange: EventName<CustomEvent<any>>;
|