wca-designsystem 0.0.81 → 0.0.84

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.81",
2
+ "version": "0.0.84",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -27,6 +27,7 @@ const SelectCustomizado = ({
27
27
  <S.SelectRound
28
28
  {...props}
29
29
  data-testid="round"
30
+ rightSectionPointerEvents="none"
30
31
  radius={8}
31
32
  rightSection={
32
33
  <S.RightSelect>
@@ -88,7 +88,7 @@ TabelaProps.args = {
88
88
  setRowSelection: () => console.log('selecionou'),
89
89
  setFiltrosPor: () => console.log('aqui'),
90
90
  fetchMoreData: () => console.log('fetchMoreData'),
91
- hasInfinitScrool: true,
91
+ hasInfinitScrool: false,
92
92
  hasMoreData: true,
93
93
  hasOrder: true,
94
94
  setGlobalFilter: () => console.log('aqui'),
@@ -203,7 +203,9 @@ const Tabela = <
203
203
  )}
204
204
  </S.StyledTable>
205
205
  </S.TableContainer>
206
- {data.length > 0 && (
206
+ {}
207
+
208
+ {data.length > 0 && !hasInfinitScrool && (
207
209
  <Paginacao
208
210
  color={color}
209
211
  setPagination={setPagination}
@@ -189,7 +189,7 @@ export const PaginacaoWrapper = styled.div<ColorsProp>`
189
189
  font-size: ${theme.sizes.small};
190
190
  font-weight: bold;
191
191
  text-align: center;
192
- margin: 30px auto;
192
+ margin: 10px auto;
193
193
  max-width: 455px;
194
194
 
195
195
  .pagination-header {