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.
@@ -5,6 +5,7 @@ interface EtiquetaProps {
5
5
  theme?: EtiquetasStyle;
6
6
  label?: string | number;
7
7
  icon?: React.ReactNode;
8
+ fitContent?: boolean;
8
9
  }
9
10
  declare function Etiqueta(props: EtiquetaProps): JSX.Element;
10
11
  declare namespace Etiqueta {
@@ -6,3 +6,4 @@ export default _default;
6
6
  export declare const Primary: () => JSX.Element;
7
7
  export declare const UpperHeader: () => JSX.Element;
8
8
  export declare const UpperHeaderWithColumnFilter: () => JSX.Element;
9
+ export declare const CollapseExample: () => JSX.Element;
package/dist/index.css CHANGED
@@ -4864,7 +4864,7 @@ max-width 100% 540px 720px 960px 1140px
4864
4864
  display: flex;
4865
4865
  align-items: center;
4866
4866
  justify-content: center;
4867
- height: 20px;
4867
+ height: 25px;
4868
4868
  border: 1px solid rgba(0, 0, 0, 0);
4869
4869
  border-radius: 20px;
4870
4870
  padding: 10px; }
@@ -4876,19 +4876,26 @@ max-width 100% 540px 720px 960px 1140px
4876
4876
  font-size: 14px;
4877
4877
  font-weight: 700;
4878
4878
  -webkit-user-select: none;
4879
- -moz-user-select: none;
4880
- user-select: none; }
4879
+ -moz-user-select: none;
4880
+ user-select: none;
4881
+ margin-bottom: 2px; }
4881
4882
  .component-etiqueta .component-etiqueta-icon {
4882
4883
  display: flex;
4883
4884
  align-items: center;
4884
4885
  justify-content: center;
4885
4886
  -webkit-user-select: none;
4886
- -moz-user-select: none;
4887
- user-select: none;
4888
- margin-right: 8px; }
4887
+ -moz-user-select: none;
4888
+ user-select: none;
4889
+ margin-right: 8px;
4890
+ margin-bottom: 1px; }
4889
4891
  .component-etiqueta .component-etiqueta-icon svg {
4890
4892
  height: 14px;
4891
4893
  width: 14px; }
4894
+ .component-etiqueta.fit-content {
4895
+ width: -webkit-fit-content;
4896
+ width: -moz-fit-content;
4897
+ width: fit-content;
4898
+ padding: 8px 12px; }
4892
4899
 
4893
4900
  .component-etiqueta.programas {
4894
4901
  background-color: rgba(0, 0, 0, 0);
@@ -4930,6 +4937,26 @@ max-width 100% 540px 720px 960px 1140px
4930
4937
  color: #ab4745;
4931
4938
  border-color: #ab4745; }
4932
4939
 
4940
+ .component-etiqueta.outline-primary {
4941
+ background-color: rgba(0, 0, 0, 0);
4942
+ color: #3fa110;
4943
+ border-color: #3fa110; }
4944
+
4945
+ .component-etiqueta.outline-danger {
4946
+ background-color: rgba(0, 0, 0, 0);
4947
+ color: #ab4745;
4948
+ border-color: #ab4745; }
4949
+
4950
+ .component-etiqueta.outline-blue {
4951
+ background-color: rgba(0, 0, 0, 0);
4952
+ color: #2b517b;
4953
+ border-color: #2b517b; }
4954
+
4955
+ .component-etiqueta.outline-warning-dark {
4956
+ background-color: rgba(0, 0, 0, 0);
4957
+ color: #765f00;
4958
+ border-color: #765f00; }
4959
+
4933
4960
  :export {
4934
4961
  widthXs: 575.98px;
4935
4962
  widthSm: 767.98px;
package/dist/index.js CHANGED
@@ -9056,12 +9056,16 @@ var Etapas$1 = React.memo(Etapas);
9056
9056
  EtiquetasStyle["Aprovado"] = "aprovado";
9057
9057
  EtiquetasStyle["Reprovado"] = "reprovado";
9058
9058
  EtiquetasStyle["Cancelado"] = "cancelado";
9059
+ EtiquetasStyle["OutlinePrimary"] = "outline-primary";
9060
+ EtiquetasStyle["OutlineDanger"] = "outline-danger";
9061
+ EtiquetasStyle["OutlineBlue"] = "outline-blue";
9062
+ EtiquetasStyle["OutlineWarningDark"] = "outline-warning-dark";
9059
9063
  })(exports.EtiquetasStyle || (exports.EtiquetasStyle = {}));
9060
9064
 
9061
9065
  var rootClassName$2b = 'component-etiqueta';
9062
9066
  function Etiqueta(props) {
9063
9067
  return React__default.createElement("div", {
9064
- className: getMergedClassNames([rootClassName$2b, props.theme])
9068
+ className: getMergedClassNames([rootClassName$2b, props.theme, props.fitContent ? 'fit-content' : undefined])
9065
9069
  }, props.icon ? React__default.createElement("div", {
9066
9070
  className: rootClassName$2b + "-icon"
9067
9071
  }, props.icon) : undefined, React__default.createElement("div", {