File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
storybook/stubs/nim/sectionmocks Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ import QtQuick
2+
3+ // Required mock of: src/app/modules/main/browser_section/view.nim
4+
5+ Item {
6+ readonly property string contextPropertyName: " browserSection"
7+
8+ readonly property QtObject activityController: QtObject {
9+ readonly property QtObject model: QtObject {
10+ readonly property int count: 0
11+ readonly property bool hasMore: false
12+ }
13+ readonly property QtObject status: QtObject {
14+ readonly property bool loadingData: false
15+ readonly property bool isFilterDirty: false
16+ readonly property bool newDataAvailable: false
17+ readonly property int errorCode: 0
18+ }
19+
20+ function setFilterAddressesJson (addresses ) {}
21+ function setFilterChainsJson (chains , allEnabled ) {}
22+ function newFilterSession () {}
23+ function loadMoreItems () {}
24+ function updateFilter () {}
25+ function resetActivityData () {}
26+ function updateCollectiblesModel () {}
27+ function updateRecipientsModel () {}
28+ }
29+ }
You can’t perform that action at this time.
0 commit comments