@tachui/data 0.11.0 → 0.11.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -46,7 +46,7 @@ const app = VStack({
46
46
  data: items,
47
47
  renderItem: item => Text(item.name),
48
48
  })
49
- .modifier.padding(16)
49
+ .padding(16)
50
50
  ,
51
51
  ],
52
52
  })
@@ -72,7 +72,7 @@ const sectionedList = List({
72
72
  ],
73
73
  renderItem: item => Text(item.name),
74
74
  renderSectionHeader: section =>
75
- Text(section.header).modifier.fontWeight('bold'),
75
+ Text(section.header).fontWeight('bold'),
76
76
  })
77
77
  ```
78
78
 
@@ -152,9 +152,9 @@ const sectionedList = List({
152
152
  ],
153
153
  renderItem: item => Text(item.name),
154
154
  renderSectionHeader: section =>
155
- Text(section.header).modifier.fontWeight('bold'),
155
+ Text(section.header).fontWeight('bold'),
156
156
  renderSectionFooter: section =>
157
- section.footer ? Text(section.footer).modifier.fontSize(12) : undefined,
157
+ section.footer ? Text(section.footer).fontSize(12) : undefined,
158
158
  })
159
159
  ```
160
160
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tachui/data",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "Data display and organization components for tachUI framework",
5
5
  "homepage": "https://tachui.dev/",
6
6
  "type": "module",
@@ -40,10 +40,10 @@
40
40
  "lint": "oxlint src"
41
41
  },
42
42
  "dependencies": {
43
- "@tachui/core": "0.11.0",
44
- "@tachui/flow-control": "0.11.0",
45
- "@tachui/mobile": "0.11.0",
46
- "@tachui/primitives": "0.11.0"
43
+ "@tachui/core": "0.11.1",
44
+ "@tachui/flow-control": "0.11.1",
45
+ "@tachui/mobile": "0.11.1",
46
+ "@tachui/primitives": "0.11.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@types/node": "^20.0.0",