@next-bricks/presentational 1.6.8 → 1.6.9
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/dist/bricks.json +8 -8
- package/dist/chunks/{2612.d738d359.js → 2612.63415cbe.js} +2 -2
- package/dist/chunks/{2612.d738d359.js.map → 2612.63415cbe.js.map} +1 -1
- package/dist/chunks/{2652.8c39ed2a.js → 2652.d8379b86.js} +2 -2
- package/dist/chunks/2652.d8379b86.js.map +1 -0
- package/dist/chunks/{7115.bd27cc31.js → 7115.21e2b5ae.js} +2 -2
- package/dist/chunks/{7115.bd27cc31.js.map → 7115.21e2b5ae.js.map} +1 -1
- package/dist/chunks/{9496.622974ed.js → 9496.8f93e6db.js} +2 -2
- package/dist/chunks/{9496.622974ed.js.map → 9496.8f93e6db.js.map} +1 -1
- package/dist/chunks/{eo-descriptions.06e4f230.js → eo-descriptions.ff57bf99.js} +3 -3
- package/dist/chunks/{eo-descriptions.06e4f230.js.map → eo-descriptions.ff57bf99.js.map} +1 -1
- package/dist/chunks/{eo-info-card-item.107aaf4f.js → eo-info-card-item.1593dfd5.js} +3 -3
- package/dist/chunks/{eo-info-card-item.107aaf4f.js.map → eo-info-card-item.1593dfd5.js.map} +1 -1
- package/dist/chunks/{eo-loading-step.b441d89f.js → eo-loading-step.05a4b3e6.js} +3 -3
- package/dist/chunks/{eo-loading-step.b441d89f.js.map → eo-loading-step.05a4b3e6.js.map} +1 -1
- package/dist/chunks/{main.923a1368.js → main.8fb5aece.js} +2 -2
- package/dist/chunks/{main.923a1368.js.map → main.8fb5aece.js.map} +1 -1
- package/dist/examples.json +3 -3
- package/dist/{index.4f05bcae.js → index.a8e247ad.js} +2 -2
- package/dist/{index.4f05bcae.js.map → index.a8e247ad.js.map} +1 -1
- package/dist/manifest.json +50 -50
- package/dist/types.json +62 -62
- package/package.json +2 -2
- package/dist/chunks/2652.8c39ed2a.js.map +0 -1
- /package/dist/chunks/{eo-descriptions.06e4f230.js.LICENSE.txt → eo-descriptions.ff57bf99.js.LICENSE.txt} +0 -0
- /package/dist/chunks/{eo-info-card-item.107aaf4f.js.LICENSE.txt → eo-info-card-item.1593dfd5.js.LICENSE.txt} +0 -0
- /package/dist/chunks/{eo-loading-step.b441d89f.js.LICENSE.txt → eo-loading-step.05a4b3e6.js.LICENSE.txt} +0 -0
package/dist/manifest.json
CHANGED
|
@@ -118,6 +118,56 @@
|
|
|
118
118
|
"description": "告警提示",
|
|
119
119
|
"category": "display-component"
|
|
120
120
|
},
|
|
121
|
+
{
|
|
122
|
+
"name": "eo-pagination",
|
|
123
|
+
"properties": [
|
|
124
|
+
{
|
|
125
|
+
"name": "total",
|
|
126
|
+
"description": "数据总数",
|
|
127
|
+
"default": "0",
|
|
128
|
+
"type": "number"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"name": "page",
|
|
132
|
+
"description": "当前页数",
|
|
133
|
+
"default": "1",
|
|
134
|
+
"type": "number"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "pageSize",
|
|
138
|
+
"description": "每页条数",
|
|
139
|
+
"default": "20",
|
|
140
|
+
"type": "number"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "pageSizeOptions",
|
|
144
|
+
"description": "指定每页可以显示多少条",
|
|
145
|
+
"default": "[10, 20, 50, 100]",
|
|
146
|
+
"attribute": false,
|
|
147
|
+
"type": "number[]"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "showSizeChanger",
|
|
151
|
+
"description": "是否展示`pageSize`分页器",
|
|
152
|
+
"default": "true",
|
|
153
|
+
"type": "boolean"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"events": [
|
|
157
|
+
{
|
|
158
|
+
"name": "change",
|
|
159
|
+
"description": "页码及每页条数改变事件",
|
|
160
|
+
"detail": {
|
|
161
|
+
"type": "{ page: number; pageSize: number }"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"slots": [],
|
|
166
|
+
"methods": [],
|
|
167
|
+
"parts": [],
|
|
168
|
+
"description": "分页",
|
|
169
|
+
"category": "navigation"
|
|
170
|
+
},
|
|
121
171
|
{
|
|
122
172
|
"name": "eo-code-display",
|
|
123
173
|
"alias": [
|
|
@@ -175,56 +225,6 @@
|
|
|
175
225
|
"description": "代码展示",
|
|
176
226
|
"category": "display-component"
|
|
177
227
|
},
|
|
178
|
-
{
|
|
179
|
-
"name": "eo-pagination",
|
|
180
|
-
"properties": [
|
|
181
|
-
{
|
|
182
|
-
"name": "total",
|
|
183
|
-
"description": "数据总数",
|
|
184
|
-
"default": "0",
|
|
185
|
-
"type": "number"
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"name": "page",
|
|
189
|
-
"description": "当前页数",
|
|
190
|
-
"default": "1",
|
|
191
|
-
"type": "number"
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
"name": "pageSize",
|
|
195
|
-
"description": "每页条数",
|
|
196
|
-
"default": "20",
|
|
197
|
-
"type": "number"
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
"name": "pageSizeOptions",
|
|
201
|
-
"description": "指定每页可以显示多少条",
|
|
202
|
-
"default": "[10, 20, 50, 100]",
|
|
203
|
-
"attribute": false,
|
|
204
|
-
"type": "number[]"
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
"name": "showSizeChanger",
|
|
208
|
-
"description": "是否展示`pageSize`分页器",
|
|
209
|
-
"default": "true",
|
|
210
|
-
"type": "boolean"
|
|
211
|
-
}
|
|
212
|
-
],
|
|
213
|
-
"events": [
|
|
214
|
-
{
|
|
215
|
-
"name": "change",
|
|
216
|
-
"description": "页码及每页条数改变事件",
|
|
217
|
-
"detail": {
|
|
218
|
-
"type": "{ page: number; pageSize: number }"
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
],
|
|
222
|
-
"slots": [],
|
|
223
|
-
"methods": [],
|
|
224
|
-
"parts": [],
|
|
225
|
-
"description": "分页",
|
|
226
|
-
"category": "navigation"
|
|
227
|
-
},
|
|
228
228
|
{
|
|
229
229
|
"name": "eo-card-item",
|
|
230
230
|
"properties": [
|
package/dist/types.json
CHANGED
|
@@ -1620,68 +1620,6 @@
|
|
|
1620
1620
|
}
|
|
1621
1621
|
]
|
|
1622
1622
|
},
|
|
1623
|
-
"eo-code-display": {
|
|
1624
|
-
"properties": [
|
|
1625
|
-
{
|
|
1626
|
-
"name": "value",
|
|
1627
|
-
"annotation": {
|
|
1628
|
-
"type": "keyword",
|
|
1629
|
-
"value": "string"
|
|
1630
|
-
}
|
|
1631
|
-
},
|
|
1632
|
-
{
|
|
1633
|
-
"name": "language",
|
|
1634
|
-
"annotation": {
|
|
1635
|
-
"type": "keyword",
|
|
1636
|
-
"value": "string"
|
|
1637
|
-
}
|
|
1638
|
-
},
|
|
1639
|
-
{
|
|
1640
|
-
"name": "hideLineNumber",
|
|
1641
|
-
"annotation": {
|
|
1642
|
-
"type": "keyword",
|
|
1643
|
-
"value": "boolean"
|
|
1644
|
-
}
|
|
1645
|
-
},
|
|
1646
|
-
{
|
|
1647
|
-
"name": "maxLines",
|
|
1648
|
-
"annotation": {
|
|
1649
|
-
"type": "keyword",
|
|
1650
|
-
"value": "number"
|
|
1651
|
-
}
|
|
1652
|
-
},
|
|
1653
|
-
{
|
|
1654
|
-
"name": "minLines",
|
|
1655
|
-
"annotation": {
|
|
1656
|
-
"type": "keyword",
|
|
1657
|
-
"value": "number"
|
|
1658
|
-
}
|
|
1659
|
-
},
|
|
1660
|
-
{
|
|
1661
|
-
"name": "showCopyButton",
|
|
1662
|
-
"annotation": {
|
|
1663
|
-
"type": "keyword",
|
|
1664
|
-
"value": "boolean"
|
|
1665
|
-
}
|
|
1666
|
-
},
|
|
1667
|
-
{
|
|
1668
|
-
"name": "showExportButton",
|
|
1669
|
-
"annotation": {
|
|
1670
|
-
"type": "keyword",
|
|
1671
|
-
"value": "boolean"
|
|
1672
|
-
}
|
|
1673
|
-
},
|
|
1674
|
-
{
|
|
1675
|
-
"name": "exportFileName",
|
|
1676
|
-
"annotation": {
|
|
1677
|
-
"type": "keyword",
|
|
1678
|
-
"value": "string"
|
|
1679
|
-
}
|
|
1680
|
-
}
|
|
1681
|
-
],
|
|
1682
|
-
"events": [],
|
|
1683
|
-
"methods": []
|
|
1684
|
-
},
|
|
1685
1623
|
"eo-pagination": {
|
|
1686
1624
|
"properties": [
|
|
1687
1625
|
{
|
|
@@ -1761,6 +1699,68 @@
|
|
|
1761
1699
|
],
|
|
1762
1700
|
"methods": []
|
|
1763
1701
|
},
|
|
1702
|
+
"eo-code-display": {
|
|
1703
|
+
"properties": [
|
|
1704
|
+
{
|
|
1705
|
+
"name": "value",
|
|
1706
|
+
"annotation": {
|
|
1707
|
+
"type": "keyword",
|
|
1708
|
+
"value": "string"
|
|
1709
|
+
}
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
"name": "language",
|
|
1713
|
+
"annotation": {
|
|
1714
|
+
"type": "keyword",
|
|
1715
|
+
"value": "string"
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"name": "hideLineNumber",
|
|
1720
|
+
"annotation": {
|
|
1721
|
+
"type": "keyword",
|
|
1722
|
+
"value": "boolean"
|
|
1723
|
+
}
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"name": "maxLines",
|
|
1727
|
+
"annotation": {
|
|
1728
|
+
"type": "keyword",
|
|
1729
|
+
"value": "number"
|
|
1730
|
+
}
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
"name": "minLines",
|
|
1734
|
+
"annotation": {
|
|
1735
|
+
"type": "keyword",
|
|
1736
|
+
"value": "number"
|
|
1737
|
+
}
|
|
1738
|
+
},
|
|
1739
|
+
{
|
|
1740
|
+
"name": "showCopyButton",
|
|
1741
|
+
"annotation": {
|
|
1742
|
+
"type": "keyword",
|
|
1743
|
+
"value": "boolean"
|
|
1744
|
+
}
|
|
1745
|
+
},
|
|
1746
|
+
{
|
|
1747
|
+
"name": "showExportButton",
|
|
1748
|
+
"annotation": {
|
|
1749
|
+
"type": "keyword",
|
|
1750
|
+
"value": "boolean"
|
|
1751
|
+
}
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
"name": "exportFileName",
|
|
1755
|
+
"annotation": {
|
|
1756
|
+
"type": "keyword",
|
|
1757
|
+
"value": "string"
|
|
1758
|
+
}
|
|
1759
|
+
}
|
|
1760
|
+
],
|
|
1761
|
+
"events": [],
|
|
1762
|
+
"methods": []
|
|
1763
|
+
},
|
|
1764
1764
|
"eo-humanize-time": {
|
|
1765
1765
|
"properties": [
|
|
1766
1766
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next-bricks/presentational",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.9",
|
|
4
4
|
"homepage": "https://github.com/easyops-cn/next-bricks/tree/master/bricks/presentational",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"@next-bricks/containers": "*",
|
|
44
44
|
"@next-bricks/icons": "*"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "adfe580e70057118d49130e5142c6d26978da17c"
|
|
47
47
|
}
|