plataforma-fundacao-componentes 2.23.12 → 2.23.13
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/etiqueta/Etiqueta.d.ts +1 -0
- package/dist/components/tableWithOverflow/TableWithOverflow.stories.d.ts +1 -0
- package/dist/index.css +33 -6
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/libraries/EtiquetasThemes.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -9076,12 +9076,16 @@ var EtiquetasStyle;
|
|
|
9076
9076
|
EtiquetasStyle["Aprovado"] = "aprovado";
|
|
9077
9077
|
EtiquetasStyle["Reprovado"] = "reprovado";
|
|
9078
9078
|
EtiquetasStyle["Cancelado"] = "cancelado";
|
|
9079
|
+
EtiquetasStyle["OutlinePrimary"] = "outline-primary";
|
|
9080
|
+
EtiquetasStyle["OutlineDanger"] = "outline-danger";
|
|
9081
|
+
EtiquetasStyle["OutlineBlue"] = "outline-blue";
|
|
9082
|
+
EtiquetasStyle["OutlineWarningDark"] = "outline-warning-dark";
|
|
9079
9083
|
})(EtiquetasStyle || (EtiquetasStyle = {}));
|
|
9080
9084
|
|
|
9081
9085
|
var rootClassName$2b = 'component-etiqueta';
|
|
9082
9086
|
function Etiqueta(props) {
|
|
9083
9087
|
return React.createElement("div", {
|
|
9084
|
-
className: getMergedClassNames([rootClassName$2b, props.theme])
|
|
9088
|
+
className: getMergedClassNames([rootClassName$2b, props.theme, props.fitContent ? 'fit-content' : undefined])
|
|
9085
9089
|
}, props.icon ? React.createElement("div", {
|
|
9086
9090
|
className: rootClassName$2b + "-icon"
|
|
9087
9091
|
}, props.icon) : undefined, React.createElement("div", {
|