Merge branch 'master' of https://github.com/primefaces/primevue
commit
523eaa508e
|
@ -144,7 +144,7 @@
|
||||||
},
|
},
|
||||||
menu: {
|
menu: {
|
||||||
root: {
|
root: {
|
||||||
style: 'width: 10rem; min-width: auto',
|
style: 'width: 10rem; min-width: auto'
|
||||||
},
|
},
|
||||||
action: 'p-2'
|
action: 'p-2'
|
||||||
}
|
}
|
||||||
|
|
|
@ -222,6 +222,19 @@ export interface MeterGroupSlots {
|
||||||
*/
|
*/
|
||||||
totalPercent: string;
|
totalPercent: string;
|
||||||
}): VNode[];
|
}): VNode[];
|
||||||
|
/**
|
||||||
|
* Custom icon template.
|
||||||
|
*/
|
||||||
|
icon(scope: {
|
||||||
|
/**
|
||||||
|
* Current value of the component
|
||||||
|
*/
|
||||||
|
value: MeterItemOptions;
|
||||||
|
/**
|
||||||
|
* Style class of the icon
|
||||||
|
*/
|
||||||
|
class: string;
|
||||||
|
}): VNode[];
|
||||||
/**
|
/**
|
||||||
* Custom start template.
|
* Custom start template.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -3,7 +3,10 @@
|
||||||
<slot v-if="labelPosition === 'start'" name="label" :value="value" :totalPercent="totalPercentValue()">
|
<slot v-if="labelPosition === 'start'" name="label" :value="value" :totalPercent="totalPercentValue()">
|
||||||
<ol :class="cx('labellist')" v-bind="ptm('labellist')">
|
<ol :class="cx('labellist')" v-bind="ptm('labellist')">
|
||||||
<li v-for="(val, index) in value" :key="index + '_label'" :class="cx('labellistitem')" v-bind="ptm('labellistitem')">
|
<li v-for="(val, index) in value" :key="index + '_label'" :class="cx('labellistitem')" v-bind="ptm('labellistitem')">
|
||||||
<span :class="cx('labellisttype')" :style="{ backgroundColor: val.color }" v-bind="ptm('labellisttype')" />
|
<slot name="icon" :value="val" :class="cx('labelicon')">
|
||||||
|
<i v-if="val.icon" :class="[val.icon, cx('labelicon')]" v-bind="ptm('labelicon')" />
|
||||||
|
<span v-else :class="cx('labellisttype')" :style="{ backgroundColor: val.color }" v-bind="ptm('labellisttype')" />
|
||||||
|
</slot>
|
||||||
<span :class="cx('label')" v-bind="ptm('label')">{{ val.label }} ({{ percentValue(val.value) }})</span>
|
<span :class="cx('label')" v-bind="ptm('label')">{{ val.label }} ({{ percentValue(val.value) }})</span>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
|
@ -26,12 +26,16 @@ const css = `
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-metergroup-label-list-horizontal {
|
.p-metergroup-vertical .p-metergroup-label-list {
|
||||||
|
align-items: start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-metergroup-horizontal .p-metergroup-label-list-vertical {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-metergroup-vertical .p-metergroup-label-list-vertical {
|
.p-metergroup-vertical .p-metergroup-label-list-horizontal {
|
||||||
align-items: start;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-metergroup-label-list-item {
|
.p-metergroup-label-list-item {
|
||||||
|
@ -42,6 +46,12 @@ const css = `
|
||||||
.p-metergroup-label-type {
|
.p-metergroup-label-type {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.p-metergroup-label-icon {
|
||||||
|
width: 1rem;
|
||||||
|
height: 1rem;
|
||||||
|
margin-right: .5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -65,6 +75,7 @@ const classes = {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
labellistitem: 'p-metergroup-label-list-item',
|
labellistitem: 'p-metergroup-label-list-item',
|
||||||
|
labelicon: 'p-metergroup-label-icon',
|
||||||
labellisttype: 'p-metergroup-label-type',
|
labellisttype: 'p-metergroup-label-type',
|
||||||
label: 'p-metergroup-label'
|
label: 'p-metergroup-label'
|
||||||
};
|
};
|
||||||
|
|
|
@ -244,6 +244,10 @@ export interface OverlayPanelEmits {
|
||||||
* @group Component
|
* @group Component
|
||||||
*/
|
*/
|
||||||
declare class OverlayPanel extends ClassComponent<OverlayPanelProps, OverlayPanelSlots, OverlayPanelEmits> {
|
declare class OverlayPanel extends ClassComponent<OverlayPanelProps, OverlayPanelSlots, OverlayPanelEmits> {
|
||||||
|
/**
|
||||||
|
* Aligns overlay panel based on the current position of the container.
|
||||||
|
*/
|
||||||
|
alignOverlay(): void;
|
||||||
/**
|
/**
|
||||||
* Toggles the visibility of the overlay.
|
* Toggles the visibility of the overlay.
|
||||||
* @param {Event} event - Browser event.
|
* @param {Event} event - Browser event.
|
||||||
|
|
|
@ -35580,6 +35580,18 @@
|
||||||
"returnType": "VNode<RendererNode, RendererElement, Object>[]",
|
"returnType": "VNode<RendererNode, RendererElement, Object>[]",
|
||||||
"description": "Custom meter template."
|
"description": "Custom meter template."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon",
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"name": "scope",
|
||||||
|
"optional": false,
|
||||||
|
"type": "{\n \t <span class=\"ml-3 doc-option-parameter-name\">value</span>: <span class=\"doc-option-parameter-type\">MeterItemOptions</span>, <span class=\"doc-option-parameter-type\">// Current value of the component</span>\n \t <span class=\"ml-3 doc-option-parameter-name\">class</span>: <span class=\"doc-option-parameter-type\">string</span>, <span class=\"doc-option-parameter-type\">// Style class of the icon</span>\n }"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"returnType": "VNode<RendererNode, RendererElement, Object>[]",
|
||||||
|
"description": "Custom icon template."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "start",
|
"name": "start",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
|
@ -38410,6 +38422,12 @@
|
||||||
"methods": {
|
"methods": {
|
||||||
"description": "Defines methods that can be accessed by the component's reference.",
|
"description": "Defines methods that can be accessed by the component's reference.",
|
||||||
"values": [
|
"values": [
|
||||||
|
{
|
||||||
|
"name": "alignOverlay",
|
||||||
|
"parameters": [],
|
||||||
|
"returnType": "void",
|
||||||
|
"description": "Aligns overlay panel based on the current position of the container."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "toggle",
|
"name": "toggle",
|
||||||
"parameters": [
|
"parameters": [
|
||||||
|
|
|
@ -12,11 +12,7 @@
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
value: [
|
value: [{ label: 'Space used', value: 15 }],
|
||||||
{ color: '#239EF0', label: 'Mortgage', value: 25 },
|
|
||||||
{ color: '#FAA419', label: 'Loan', value: 15 },
|
|
||||||
{ color: '#EE5879', label: 'Credit Card', value: 20 }
|
|
||||||
],
|
|
||||||
code: {
|
code: {
|
||||||
basic: `
|
basic: `
|
||||||
<MeterGroup :value="value" />
|
<MeterGroup :value="value" />
|
||||||
|
@ -32,11 +28,7 @@ export default {
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
value: [
|
value: [{ label: 'Space used', value: 15 }],
|
||||||
{ color: '#239EF0', label: 'Mortgage', value: 25 },
|
|
||||||
{ color: '#FAA419', label: 'Loan', value: 15 },
|
|
||||||
{ color: '#EE5879', label: 'Credit Card', value: 20 }
|
|
||||||
]
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -52,11 +44,7 @@ export default {
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
|
|
||||||
const value = ref([
|
const value = ref([{ label: 'Space used', value: 15 }]);
|
||||||
{ color: '#239EF0', label: 'Mortgage', value: 25 },
|
|
||||||
{ color: '#FAA419', label: 'Loan', value: 15 },
|
|
||||||
{ color: '#EE5879', label: 'Credit Card', value: 20 }
|
|
||||||
]);
|
|
||||||
<\/script>
|
<\/script>
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
<template>
|
<template>
|
||||||
<DocSectionText v-bind="$attrs">
|
<DocSectionText v-bind="$attrs">
|
||||||
<p>
|
<p>
|
||||||
Default layout of MeterGroup is <i>horizontal</i>, and also <i>orientation</i> property can be set as <i>vertical</i>.In addition, position of the label can be changed using <i>labelPosition</i> property that the default value is
|
Default layout of MeterGroup is <i>horizontal</i>, and also <i>labelOrientation</i> property can be set as <i>vertical</i>.In addition, position of the label can be changed using <i>labelPosition</i> property that the default value is
|
||||||
<i>end</i> and also <i>start</i> option is available.
|
<i>end</i> and also <i>start</i> option is available.
|
||||||
</p>
|
</p>
|
||||||
</DocSectionText>
|
</DocSectionText>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<MeterGroup :value="value" labelOrientation="vertical" labelPosition="start" />
|
<MeterGroup :value="value" labelPosition="start" />
|
||||||
</div>
|
</div>
|
||||||
<DocSectionCode :code="code" />
|
<DocSectionCode :code="code" />
|
||||||
</template>
|
</template>
|
||||||
|
@ -16,18 +16,19 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
value: [
|
value: [
|
||||||
{ color: '#239EF0', label: 'Mortgage', value: 25 },
|
{ label: 'Apps', value: 16, color: '#EB9A9C', icon: 'pi pi-cog' },
|
||||||
{ color: '#FAA419', label: 'Loan', value: 15 },
|
{ label: 'Messages', value: 8, color: '#FFCF91', icon: 'pi pi-envelope' },
|
||||||
{ color: '#EE5879', label: 'Credit Card', value: 20 }
|
{ label: 'Media', value: 24, color: '#93DEAC', icon: 'pi pi-image' },
|
||||||
|
{ label: 'System Data', value: 20, color: '#91cff8', icon: 'pi pi-database' }
|
||||||
],
|
],
|
||||||
code: {
|
code: {
|
||||||
basic: `
|
basic: `
|
||||||
<MeterGroup :value="value" labelOrientation="vertical" labelPosition="start" />
|
<MeterGroup :value="value" labelPosition="start" />
|
||||||
`,
|
`,
|
||||||
options: `
|
options: `
|
||||||
<template>
|
<template>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<MeterGroup :value="value" labelOrientation="vertical" labelPosition="start" />
|
<MeterGroup :value="value" labelPosition="start" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -36,9 +37,10 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
value: [
|
value: [
|
||||||
{ color: '#239EF0', label: 'Mortgage', value: 25 },
|
{ label: 'Apps', value: 16, color: '#EB9A9C', icon: 'pi pi-cog' },
|
||||||
{ color: '#FAA419', label: 'Loan', value: 15 },
|
{ label: 'Messages', value: 8, color: '#FFCF91', icon: 'pi pi-envelope' },
|
||||||
{ color: '#EE5879', label: 'Credit Card', value: 20 }
|
{ label: 'Media', value: 24, color: '#93DEAC', icon: 'pi pi-image' },
|
||||||
|
{ label: 'System Data', value: 20, color: '#91cff8', icon: 'pi pi-database' }
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -48,7 +50,7 @@ export default {
|
||||||
composition: `
|
composition: `
|
||||||
<template>
|
<template>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<MeterGroup :value="value" labelOrientation="vertical" labelPosition="start" />
|
<MeterGroup :value="value" labelPosition="start" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -56,9 +58,10 @@ export default {
|
||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
|
|
||||||
const value = ref([
|
const value = ref([
|
||||||
{ color: '#239EF0', label: 'Mortgage', value: 25 },
|
{ label: 'Apps', value: 16, color: '#EB9A9C', icon: 'pi pi-cog' },
|
||||||
{ color: '#FAA419', label: 'Loan', value: 15 },
|
{ label: 'Messages', value: 8, color: '#FFCF91', icon: 'pi pi-envelope' },
|
||||||
{ color: '#EE5879', label: 'Credit Card', value: 20 }
|
{ label: 'Media', value: 24, color: '#93DEAC', icon: 'pi pi-image' },
|
||||||
|
{ label: 'System Data', value: 20, color: '#91cff8', icon: 'pi pi-database' }
|
||||||
]);
|
]);
|
||||||
<\/script>
|
<\/script>
|
||||||
`
|
`
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
value: [{ label: 'Space used', value: 15 }],
|
value: [{ label: 'Space used', value: 15, color: '#FDBB74' }],
|
||||||
code: {
|
code: {
|
||||||
basic: `
|
basic: `
|
||||||
<MeterGroup :value="value" :min="-50" :max="50" />
|
<MeterGroup :value="value" :min="-50" :max="50" />
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
<template>
|
||||||
|
<DocSectionText v-bind="$attrs">
|
||||||
|
<p>MeterGroup is used with the <i>value</i> property.</p>
|
||||||
|
</DocSectionText>
|
||||||
|
<div class="card">
|
||||||
|
<MeterGroup :value="value" />
|
||||||
|
</div>
|
||||||
|
<DocSectionCode :code="code" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
value: [
|
||||||
|
{ color: '#239EF0', label: 'Mortgage', value: 25 },
|
||||||
|
{ color: '#FAA419', label: 'Loan', value: 15 },
|
||||||
|
{ color: '#EE5879', label: 'Credit Card', value: 20 }
|
||||||
|
],
|
||||||
|
code: {
|
||||||
|
basic: `
|
||||||
|
<MeterGroup :value="value" />
|
||||||
|
`,
|
||||||
|
options: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<MeterGroup :value="value" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
value: [
|
||||||
|
{ color: '#239EF0', label: 'Mortgage', value: 25 },
|
||||||
|
{ color: '#FAA419', label: 'Loan', value: 15 },
|
||||||
|
{ color: '#EE5879', label: 'Credit Card', value: 20 }
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
<\/script>
|
||||||
|
`,
|
||||||
|
composition: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<MeterGroup :value="value" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref } from "vue";
|
||||||
|
|
||||||
|
const value = ref([
|
||||||
|
{ color: '#239EF0', label: 'Mortgage', value: 25 },
|
||||||
|
{ color: '#FAA419', label: 'Loan', value: 15 },
|
||||||
|
{ color: '#EE5879', label: 'Credit Card', value: 20 }
|
||||||
|
]);
|
||||||
|
<\/script>
|
||||||
|
`
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -2,7 +2,7 @@
|
||||||
<DocSectionText v-bind="$attrs">
|
<DocSectionText v-bind="$attrs">
|
||||||
<p>Layout of the MeterGroup is configured with the <i>orientation</i> property that accepts <i>horizontal</i> and <i>vertical</i> as options.</p>
|
<p>Layout of the MeterGroup is configured with the <i>orientation</i> property that accepts <i>horizontal</i> and <i>vertical</i> as options.</p>
|
||||||
</DocSectionText>
|
</DocSectionText>
|
||||||
<div class="card flex" style="height: 350px">
|
<div class="card flex justify-content-center" style="height: 350px">
|
||||||
<MeterGroup :value="value" orientation="vertical" />
|
<MeterGroup :value="value" orientation="vertical" />
|
||||||
</div>
|
</div>
|
||||||
<DocSectionCode :code="code" />
|
<DocSectionCode :code="code" />
|
||||||
|
@ -23,7 +23,7 @@ export default {
|
||||||
`,
|
`,
|
||||||
options: `
|
options: `
|
||||||
<template>
|
<template>
|
||||||
<div class="card flex" style="height: 350px">
|
<div class="card flex justify-content-center" style="height: 350px">
|
||||||
<MeterGroup :value="value" orientation="vertical" />
|
<MeterGroup :value="value" orientation="vertical" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -44,7 +44,7 @@ export default {
|
||||||
`,
|
`,
|
||||||
composition: `
|
composition: `
|
||||||
<template>
|
<template>
|
||||||
<div class="card flex" style="height: 350px">
|
<div class="card flex justify-content-center" style="height: 350px">
|
||||||
<MeterGroup :value="value" orientation="vertical" />
|
<MeterGroup :value="value" orientation="vertical" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<DocSectionText v-bind="$attrs">
|
<DocSectionText v-bind="$attrs">
|
||||||
<p>
|
<p>An existing pass through configuration is customized with the <i>usePassThrough</i> utility. The first parameter is the object to customize, the second parameter is the customizations and the final parameter is the merge strategy.</p>
|
||||||
An existing pass through configuration is customized with the <i>usePassThrough</i> utility. The first parameter is the object to customize, the second parameter is the customizations and the final parameter is the merge strategy.
|
|
||||||
</p>
|
|
||||||
<DocSectionCode :code="code1" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
|
<DocSectionCode :code="code1" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
|
||||||
<p>
|
<p>
|
||||||
The <i>mergeSections</i> defines whether the sections from the main configuration gets added and the <i>mergeProps</i> controls whether to override or merge the defined props. Defaults are <i>true</i> for <i>mergeSections</i> and
|
The <i>mergeSections</i> defines whether the sections from the main configuration gets added and the <i>mergeProps</i> controls whether to override or merge the defined props. Defaults are <i>true</i> for <i>mergeSections</i> and
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
<script>
|
<script>
|
||||||
import AccessibilityDoc from '@/doc/metergroup/AccessibilityDoc.vue';
|
import AccessibilityDoc from '@/doc/metergroup/AccessibilityDoc.vue';
|
||||||
import BasicDoc from '@/doc/metergroup/BasicDoc.vue';
|
import BasicDoc from '@/doc/metergroup/BasicDoc.vue';
|
||||||
|
import MultipleDoc from '@/doc/metergroup/MultipleDoc.vue';
|
||||||
import ImportDoc from '@/doc/metergroup/ImportDoc.vue';
|
import ImportDoc from '@/doc/metergroup/ImportDoc.vue';
|
||||||
import VerticalDoc from '@/doc/metergroup/VerticalDoc.vue';
|
import VerticalDoc from '@/doc/metergroup/VerticalDoc.vue';
|
||||||
import LabelDoc from '@/doc/metergroup/LabelDoc.vue';
|
import LabelDoc from '@/doc/metergroup/LabelDoc.vue';
|
||||||
|
@ -28,15 +29,20 @@ export default {
|
||||||
component: BasicDoc
|
component: BasicDoc
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'vertical',
|
id: 'multiple',
|
||||||
label: 'Vertical',
|
label: 'Multiple',
|
||||||
component: VerticalDoc
|
component: MultipleDoc
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'label',
|
id: 'label',
|
||||||
label: 'Label',
|
label: 'Label',
|
||||||
component: LabelDoc
|
component: LabelDoc
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'vertical',
|
||||||
|
label: 'Vertical',
|
||||||
|
component: VerticalDoc
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id: 'minmax',
|
id: 'minmax',
|
||||||
label: 'Min-Max',
|
label: 'Min-Max',
|
||||||
|
|
Loading…
Reference in New Issue