pull/132/head
mertsincan 2019-12-30 13:57:09 +03:00
commit af9e62bfa5
6 changed files with 34 additions and 17 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "primevue", "name": "primevue",
"version": "1.0.0-rc.4-SNAPSHOT", "version": "1.0.0-rc.5-SNAPSHOT",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/primefaces/primevue.git" "url": "https://github.com/primefaces/primevue.git"

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="content-section layout-footer clearfix"> <div class="content-section layout-footer clearfix">
<span>PrimeVue 1.0.0-rc.4</span> <span>PrimeVue 1.0.0-rc.5</span>
<div class="footer-links"> <div class="footer-links">
<a href="https://github.com/primefaces/primevue"><i class=" icon-github fa fa-github-square"></i></a> <a href="https://github.com/primefaces/primevue"><i class=" icon-github fa fa-github-square"></i></a>
<a href="https://twitter.com/primevue"><i class="icon-twitter fa fa-twitter-square"></i></a> <a href="https://twitter.com/primevue"><i class="icon-twitter fa fa-twitter-square"></i></a>

View File

@ -91,6 +91,21 @@ body {
font-size: 14px; font-size: 14px;
} }
input[type="number"] {
-moz-appearance: textfield;
&::-webkit-outer-spin-button,
&::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
}
a {
text-decoration: none;
color: #4eafe6;
}
.layout-topbar { .layout-topbar {
background-color: #ffffff; background-color: #ffffff;
display: block; display: block;
@ -959,7 +974,6 @@ body {
} }
} }
.clearfix { .clearfix {
display: inline-block; display: inline-block;
@ -1310,19 +1324,22 @@ body {
.layout-content .content-section.content-submenu ul li { .layout-content .content-section.content-submenu ul li {
width: 50%; width: 50%;
} }
.layout-config {
top: 110px;
height: calc(100% - 110px);
transform: translate3d(100%,0,0);
.layout-config-button {
left: auto;
right: -52px;
} }
input[type="number"] { &.layout-config-active {
-moz-appearance: textfield; width: 100%;
&::-webkit-outer-spin-button, transform: translate3d(0,0,0);
&::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
} }
} }
a{
text-decoration: none;
color: #4eafe6;
} }
@media screen and (max-width: 640px) { @media screen and (max-width: 640px) {

View File

@ -742,7 +742,7 @@ export default {
//enter //enter
case 13: case 13:
this.onRowClick(event, rowData, rowIndex); this.onRowClick({originalEvent: event, data: rowData, index: rowIndex});
break; break;
default: default:

View File

@ -18,7 +18,7 @@
</colgroup> </colgroup>
<slot name="body"></slot> <slot name="body"></slot>
</table> </table>
<table ref="loadingTable" :style="{top:'0', display: 'none'}" class="p-datatable-scrollable-body-table p-datatable-loading-virtual-table p-datatable-virtual-table"> <table ref="loadingTable" :style="{top:'0', display: 'none'}" class="p-datatable-scrollable-body-table p-datatable-loading-virtual-table p-datatable-virtual-table" v-if="virtualScroll">
<colgroup class="p-datatable-scrollable-colgroup"> <colgroup class="p-datatable-scrollable-colgroup">
<col v-for="(col,i) of columns" :key="col.columnKey||col.field||i" :style="col.headerStyle" /> <col v-for="(col,i) of columns" :key="col.columnKey||col.field||i" :style="col.headerStyle" />
</colgroup> </colgroup>

View File

@ -20,7 +20,7 @@
<div ref="itemsWrapper" class="p-dropdown-items-wrapper" :style="{'max-height': scrollHeight}"> <div ref="itemsWrapper" class="p-dropdown-items-wrapper" :style="{'max-height': scrollHeight}">
<ul class="p-dropdown-items p-dropdown-list p-component" role="listbox"> <ul class="p-dropdown-items p-dropdown-list p-component" role="listbox">
<li v-for="(option, i) of visibleOptions" :class="['p-dropdown-item', {'p-highlight': isSelected(option), 'p-disabled': isOptionDisabled(option)}]" <li v-for="(option, i) of visibleOptions" :class="['p-dropdown-item', {'p-highlight': isSelected(option), 'p-disabled': isOptionDisabled(option)}]"
:aria-label="getOptionLabel(option)" :key="getOptionLabel(option)" @click="onOptionSelect($event, option)" role="option" :aria-selected="isSelected(option)"> :aria-label="getOptionLabel(option)" :key="getOptionLabel(option) + '_' + i" @click="onOptionSelect($event, option)" role="option" :aria-selected="isSelected(option)">
<slot name="option" :option="option" :index="i"> <slot name="option" :option="option" :index="i">
{{getOptionLabel(option)}} {{getOptionLabel(option)}}
</slot> </slot>