webcoreui 0.10.0 → 0.10.1

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/README.md CHANGED
@@ -283,6 +283,7 @@ import { Accordion } from 'webcoreui/react'
283
283
 
284
284
  ## Blocks
285
285
 
286
+ - [Author](https://github.com/Frontendland/webcoreui/tree/main/src/blocks/Author)
286
287
  - [BlogCard](https://github.com/Frontendland/webcoreui/tree/main/src/blocks/BlogCard)
287
288
  - [ComponentMap](https://github.com/Frontendland/webcoreui/tree/main/src/blocks/ComponentMap)
288
289
  - [DeviceMockup](https://github.com/Frontendland/webcoreui/tree/main/src/blocks/DeviceMockup)
@@ -297,6 +298,7 @@ import { Accordion } from 'webcoreui/react'
297
298
  - [SettingCard](https://github.com/Frontendland/webcoreui/tree/main/src/blocks/SettingCard)
298
299
  - [SignUp](https://github.com/Frontendland/webcoreui/tree/main/src/blocks/SignUp)
299
300
  - [SocialProof](https://github.com/Frontendland/webcoreui/tree/main/src/blocks/SocialProof)
301
+ - [Socials](https://github.com/Frontendland/webcoreui/tree/main/src/blocks/Socials)
300
302
  - [Tiles](https://github.com/Frontendland/webcoreui/tree/main/src/blocks/Tiles)
301
303
  - [User](https://github.com/Frontendland/webcoreui/tree/main/src/blocks/User)
302
304
 
@@ -113,7 +113,7 @@ const hasPagination = data?.length && itemsPerPage
113
113
  class:list={classes}
114
114
  style={maxHeight ? `max-height:${maxHeight}` : undefined}
115
115
  >
116
- <table data-items-per-page={itemsPerPage} data-page={hasPagination && 1}>
116
+ <table data-items-per-page={itemsPerPage} data-page={hasPagination ? 1 : undefined}>
117
117
  {headings?.length && (
118
118
  <thead>
119
119
  <tr>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "webcoreui",
3
3
  "type": "module",
4
- "version": "0.10.0",
4
+ "version": "0.10.1",
5
5
  "scripts": {
6
6
  "prepare": "husky",
7
7
  "pre-commit": "lint-staged",