wca-designsystem 0.0.35 → 0.0.36

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.0.35",
2
+ "version": "0.0.36",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -34,10 +34,10 @@ export const NavbarHeader = styled.div`
34
34
  display: flex;
35
35
  justify-content: center;
36
36
  gap: 10px;
37
- align-items: center;
37
+ align-items: start;
38
38
 
39
39
  .action-icon {
40
- margin-bottom: 35px;
40
+ margin-top: 15px;
41
41
  }
42
42
  `}
43
43
  `;
@@ -60,6 +60,7 @@ const Paginacao = ({
60
60
  onChange={(e) => changeLinhas(e!)}
61
61
  defaultValue={'10'}
62
62
  data={['10', '20', '30']}
63
+ allowDeselect={false}
63
64
  />
64
65
  </div>
65
66
  </div>
@@ -85,6 +85,7 @@ const TabelaHeader = <T extends MRT_RowData>({
85
85
  onChange={(_value, option) => setFiltrosPor(option)}
86
86
  value={filtrosPor ? filtrosPor.value : null}
87
87
  placeholder={`Aplicar Filtros`}
88
+ allowDeselect={false}
88
89
  comboboxProps={{
89
90
  position: 'bottom',
90
91
  middlewares: { flip: false, shift: false },
@@ -107,6 +108,7 @@ const TabelaHeader = <T extends MRT_RowData>({
107
108
  ]}
108
109
  onChange={(_value, option) => setOrdenarPor(option)}
109
110
  value={ordenarPor ? ordenarPor.value : null}
111
+ allowDeselect={false}
110
112
  placeholder={`Ordenar por ${ordenarPor}`}
111
113
  maw={200}
112
114
  comboboxProps={{