@comercti/react-components-hmg 0.10.2 → 0.10.3
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/comerc-style-guide.cjs.js +2 -2
- package/comerc-style-guide.es.js +171 -166
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -385,6 +385,8 @@ declare type __VLS_Props_12 = {
|
|
|
385
385
|
disabled?: boolean;
|
|
386
386
|
/** Abrange toda a largura de um elemento para o radio */
|
|
387
387
|
block?: boolean;
|
|
388
|
+
/** Exibe os radios em uma linha */
|
|
389
|
+
row?: boolean;
|
|
388
390
|
};
|
|
389
391
|
|
|
390
392
|
declare type __VLS_Props_13 = {
|
|
@@ -1709,6 +1711,7 @@ onChange?: (value: CustomEvent<any> | ModelValueType_2) => any;
|
|
|
1709
1711
|
invalid: boolean;
|
|
1710
1712
|
disabled: boolean;
|
|
1711
1713
|
block: boolean;
|
|
1714
|
+
row: boolean;
|
|
1712
1715
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1713
1716
|
|
|
1714
1717
|
declare const _default_18: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
@@ -2008,7 +2011,7 @@ declare interface IVariants {
|
|
|
2008
2011
|
|
|
2009
2012
|
declare type ModelValueType = string | number | boolean | (string | number | boolean)[];
|
|
2010
2013
|
|
|
2011
|
-
declare type ModelValueType_2 = string | number;
|
|
2014
|
+
declare type ModelValueType_2 = string | number | boolean;
|
|
2012
2015
|
|
|
2013
2016
|
declare interface optsRadio {
|
|
2014
2017
|
label?: string;
|