@christianriedl/media 1.0.74 → 1.0.75

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@christianriedl/media",
3
- "version": "1.0.74",
3
+ "version": "1.0.75",
4
4
  "description": "RIC media interfaces",
5
5
 
6
6
  "main": "dist/index.js",
@@ -123,19 +123,19 @@
123
123
 
124
124
  <v-row dense class="font-weight-bold">
125
125
  <v-col cols="2">
126
- <v-btn @click="onCreate">CREATE</v-btn>
126
+ <v-btn color="primary" @click="onCreate">CREATE</v-btn>
127
127
  </v-col>
128
128
  <v-col cols="2">
129
- <v-btn @click="onCancel">CANCEL</v-btn>
129
+ <v-btn color="primary" @click="onCancel">CANCEL</v-btn>
130
130
  </v-col>
131
131
  <v-col cols="2">
132
- <v-btn @click="onClear">CLEAR</v-btn>
132
+ <v-btn color="primary" @click="onClear">CLEAR</v-btn>
133
133
  </v-col>
134
134
  <v-col cols="2">
135
- <v-btn @click="onWritePretty">WRITE PRETTY</v-btn>
135
+ <v-btn color="primary" @click="onWritePretty">WRITE PRETTY</v-btn>
136
136
  </v-col>
137
137
  <v-col cols="4">
138
- <v-btn @click="onMakeCurrent">MAKE CURRENT</v-btn>
138
+ <v-btn color="primary" @click="onMakeCurrent">MAKE CURRENT</v-btn>
139
139
  </v-col>
140
140
  </v-row>
141
141
  <v-row dense class="font-weight-bold">
@@ -221,9 +221,9 @@
221
221
  <v-list-item-group v-model="itemIndex" color="primary">
222
222
  <v-list-item v-for="item in items" :key="item.DLNAID" :title="itemText(item)" :value="itemText(item)" density="compact" @click.stop="listItem(item)">
223
223
  <template v-slot:append>
224
- <v-btn color="grey" icon="$share" @click.stop.prevent="onShare(item)"></v-btn>
225
- <v-btn color="grey" icon="$download" @click.stop.prevent="onDownload(item)"></v-btn>
226
- <v-btn color="grey" icon="$grid" @click.stop.prevent="onLightbox(item)"></v-btn>
224
+ <v-btn color="grey" variant="tonal" icon="$share" @click.stop.prevent="onShare(item)"></v-btn>
225
+ <v-btn color="grey" variant="tonal" icon="$download" @click.stop.prevent="onDownload(item)"></v-btn>
226
+ <v-btn color="grey" variant="tonal" icon="$grid" @click.stop.prevent="onLightbox(item)"></v-btn>
227
227
  </template>
228
228
  </v-list-item>
229
229
  </v-list-item-group>
@@ -235,9 +235,9 @@
235
235
  </template>
236
236
  <v-list-item v-for="subItem in item.Folders" :key="subItem.DLNAID" :title="itemText(subItem)" :value="itemText(subItem)" density="compact" @click.stop="listSubItem(subItem)">
237
237
  <template v-slot:append>
238
- <v-btn color="grey" icon="$share" @click.stop.prevent="onShare(subItem)"></v-btn>
239
- <v-btn color="grey" icon="$download" @click.stop.prevent="onDownload(subItem)"></v-btn>
240
- <v-btn color="grey" icon="$grid" @click.stop.prevent="onLightbox(subItem)"></v-btn>
238
+ <v-btn color="grey" variant="tonal" icon="$share" @click.stop.prevent="onShare(subItem)"></v-btn>
239
+ <v-btn color="grey" variant="tonal" icon="$download" @click.stop.prevent="onDownload(subItem)"></v-btn>
240
+ <v-btn color="grey" variant="tonal" icon="$grid" @click.stop.prevent="onLightbox(subItem)"></v-btn>
241
241
  </template>
242
242
  </v-list-item>
243
243
  </v-list-group>