@almadar/std 13.0.7 → 13.1.0
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/behaviors/registry/core/atoms/std-browse.orb +34 -34
- package/behaviors/registry/core/atoms/std-filter.orb +37 -220
- package/behaviors/registry/core/atoms/std-pagination.orb +31 -199
- package/behaviors/registry/core/atoms/std-search.orb +11 -300
- package/behaviors/registry/core/molecules/std-filtered-list.orb +22 -24
- package/dist/behaviors/registry/core/atoms/std-browse.orb +34 -34
- package/dist/behaviors/registry/core/atoms/std-filter.orb +37 -220
- package/dist/behaviors/registry/core/atoms/std-pagination.orb +31 -199
- package/dist/behaviors/registry/core/atoms/std-search.orb +11 -300
- package/dist/behaviors/registry/core/molecules/std-filtered-list.orb +22 -24
- package/package.json +1 -1
|
@@ -57,7 +57,6 @@
|
|
|
57
57
|
{
|
|
58
58
|
"ref": "Search.traits.SearchResultSearch",
|
|
59
59
|
"name": "FilteredItemSearch",
|
|
60
|
-
"linkedEntity": "FilteredListItem",
|
|
61
60
|
"config": {
|
|
62
61
|
"placeholder": "Search filtered items…",
|
|
63
62
|
"event": "SEARCH"
|
|
@@ -66,21 +65,20 @@
|
|
|
66
65
|
{
|
|
67
66
|
"ref": "Filter.traits.FilterTargetFilter",
|
|
68
67
|
"name": "FilteredItemFilter",
|
|
69
|
-
"linkedEntity": "FilteredListItem",
|
|
70
68
|
"config": {
|
|
71
|
-
"event": "FILTER",
|
|
72
69
|
"filters": [
|
|
73
70
|
{
|
|
74
71
|
"label": "Status",
|
|
75
|
-
"filterType": "select",
|
|
76
72
|
"options": [
|
|
77
73
|
"active",
|
|
78
74
|
"inactive",
|
|
79
75
|
"pending"
|
|
80
76
|
],
|
|
81
|
-
"field": "status"
|
|
77
|
+
"field": "status",
|
|
78
|
+
"filterType": "select"
|
|
82
79
|
}
|
|
83
|
-
]
|
|
80
|
+
],
|
|
81
|
+
"event": "FILTER"
|
|
84
82
|
}
|
|
85
83
|
},
|
|
86
84
|
{
|
|
@@ -90,19 +88,19 @@
|
|
|
90
88
|
"config": {
|
|
91
89
|
"fields": [
|
|
92
90
|
{
|
|
93
|
-
"
|
|
91
|
+
"variant": "h4",
|
|
94
92
|
"label": "Name",
|
|
95
|
-
"
|
|
93
|
+
"name": "name"
|
|
96
94
|
},
|
|
97
95
|
{
|
|
98
|
-
"name": "description",
|
|
99
96
|
"label": "Description",
|
|
100
|
-
"variant": "caption"
|
|
97
|
+
"variant": "caption",
|
|
98
|
+
"name": "description"
|
|
101
99
|
},
|
|
102
100
|
{
|
|
103
|
-
"name": "status",
|
|
104
101
|
"label": "Status",
|
|
105
|
-
"variant": "badge"
|
|
102
|
+
"variant": "badge",
|
|
103
|
+
"name": "status"
|
|
106
104
|
}
|
|
107
105
|
]
|
|
108
106
|
},
|
|
@@ -136,10 +134,10 @@
|
|
|
136
134
|
{
|
|
137
135
|
"ref": "Pagination.traits.PagedItemPagination",
|
|
138
136
|
"name": "FilteredItemPagination",
|
|
139
|
-
"linkedEntity": "FilteredListItem",
|
|
140
137
|
"config": {
|
|
141
|
-
"
|
|
142
|
-
"
|
|
138
|
+
"totalPages": 10.0,
|
|
139
|
+
"pageSize": 10.0,
|
|
140
|
+
"event": "PAGE"
|
|
143
141
|
}
|
|
144
142
|
},
|
|
145
143
|
{
|
|
@@ -229,43 +227,43 @@
|
|
|
229
227
|
"render-ui",
|
|
230
228
|
"main",
|
|
231
229
|
{
|
|
230
|
+
"type": "stack",
|
|
232
231
|
"gap": "md",
|
|
233
|
-
"direction": "vertical",
|
|
234
232
|
"className": "max-w-5xl mx-auto w-full",
|
|
235
233
|
"children": [
|
|
236
234
|
{
|
|
237
235
|
"type": "stack",
|
|
236
|
+
"direction": "horizontal",
|
|
237
|
+
"align": "center",
|
|
238
|
+
"gap": "sm",
|
|
238
239
|
"children": [
|
|
239
240
|
{
|
|
240
241
|
"name": "list",
|
|
241
242
|
"type": "icon"
|
|
242
243
|
},
|
|
243
244
|
{
|
|
244
|
-
"
|
|
245
|
+
"variant": "h2",
|
|
245
246
|
"type": "typography",
|
|
246
|
-
"
|
|
247
|
+
"content": "Filtered List"
|
|
247
248
|
}
|
|
248
|
-
]
|
|
249
|
-
"gap": "sm",
|
|
250
|
-
"direction": "horizontal",
|
|
251
|
-
"align": "center"
|
|
249
|
+
]
|
|
252
250
|
},
|
|
253
251
|
{
|
|
254
252
|
"type": "divider"
|
|
255
253
|
},
|
|
256
254
|
{
|
|
257
|
-
"type": "stack",
|
|
258
255
|
"direction": "horizontal",
|
|
259
256
|
"children": [
|
|
260
257
|
"@trait.FilteredItemSearch",
|
|
261
258
|
"@trait.FilteredItemFilter"
|
|
262
259
|
],
|
|
260
|
+
"type": "stack",
|
|
263
261
|
"gap": "sm"
|
|
264
262
|
},
|
|
265
263
|
"@trait.FilteredItemBrowse",
|
|
266
264
|
"@trait.FilteredItemPagination"
|
|
267
265
|
],
|
|
268
|
-
"
|
|
266
|
+
"direction": "vertical"
|
|
269
267
|
}
|
|
270
268
|
]
|
|
271
269
|
]
|