@conduction/nextcloud-vue 0.1.0-beta.4 → 0.1.0-beta.5
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/dist/nextcloud-vue.cjs +67614 -0
- package/dist/nextcloud-vue.cjs.js +9554 -8980
- package/dist/nextcloud-vue.cjs.js.map +1 -1
- package/dist/nextcloud-vue.cjs.map +1 -0
- package/dist/nextcloud-vue.css +1231 -1231
- package/dist/nextcloud-vue.esm.js +9554 -8980
- package/dist/nextcloud-vue.esm.js.map +1 -1
- package/package.json +11 -4
- package/src/components/CnActionsBar/CnActionsBar.vue +235 -235
- package/src/components/CnAdvancedFormDialog/CnAdvancedFormDialog.vue +579 -579
- package/src/components/CnAdvancedFormDialog/CnDataTab.vue +217 -217
- package/src/components/CnAdvancedFormDialog/CnMetadataTab.vue +121 -121
- package/src/components/CnAdvancedFormDialog/CnPropertiesTab.vue +418 -418
- package/src/components/CnAdvancedFormDialog/CnPropertyValueCell.vue +247 -247
- package/src/components/CnCardGrid/CnCardGrid.vue +152 -152
- package/src/components/CnCellRenderer/CnCellRenderer.vue +132 -132
- package/src/components/CnChartWidget/CnChartWidget.vue +320 -320
- package/src/components/CnConfigurationCard/CnConfigurationCard.vue +77 -77
- package/src/components/CnCopyDialog/CnCopyDialog.vue +250 -250
- package/src/components/CnDashboardGrid/CnDashboardGrid.vue +225 -225
- package/src/components/CnDashboardPage/CnDashboardPage.vue +390 -390
- package/src/components/CnDataTable/CnDataTable.vue +349 -349
- package/src/components/CnDeleteDialog/CnDeleteDialog.vue +170 -170
- package/src/components/CnDetailCard/CnDetailCard.vue +214 -214
- package/src/components/CnDetailPage/CnDetailPage.vue +285 -281
- package/src/components/CnFacetSidebar/CnFacetSidebar.vue +231 -231
- package/src/components/CnFilterBar/CnFilterBar.vue +152 -152
- package/src/components/CnFormDialog/CnFormDialog.vue +302 -11
- package/src/components/CnIcon/CnIcon.vue +89 -89
- package/src/components/CnIndexPage/CnIndexPage.vue +884 -874
- package/src/components/CnIndexSidebar/CnIndexSidebar.vue +503 -503
- package/src/components/CnItemCard/CnItemCard.vue +132 -132
- package/src/components/CnKpiGrid/CnKpiGrid.vue +89 -89
- package/src/components/CnMassActionBar/CnMassActionBar.vue +160 -160
- package/src/components/CnMassCopyDialog/CnMassCopyDialog.vue +320 -320
- package/src/components/CnMassDeleteDialog/CnMassDeleteDialog.vue +238 -238
- package/src/components/CnMassExportDialog/CnMassExportDialog.vue +190 -190
- package/src/components/CnMassImportDialog/CnMassImportDialog.vue +491 -491
- package/src/components/CnNoteCard/CnNoteCard.vue +149 -149
- package/src/components/CnNotesCard/CnNotesCard.vue +413 -413
- package/src/components/CnObjectCard/CnObjectCard.vue +292 -292
- package/src/components/CnObjectSidebar/CnObjectSidebar.vue +876 -876
- package/src/components/CnPageHeader/CnPageHeader.vue +57 -57
- package/src/components/CnPagination/CnPagination.vue +252 -252
- package/src/components/CnRegisterMapping/CnRegisterMapping.vue +792 -792
- package/src/components/CnRowActions/CnRowActions.vue +95 -73
- package/src/components/CnSchemaFormDialog/CnSchemaConfigurationTab.vue +226 -226
- package/src/components/CnSchemaFormDialog/CnSchemaFormDialog.vue +787 -787
- package/src/components/CnSchemaFormDialog/CnSchemaPropertiesTab.vue +305 -305
- package/src/components/CnSchemaFormDialog/CnSchemaPropertyActions.vue +1398 -1398
- package/src/components/CnSchemaFormDialog/CnSchemaSecurityTab.vue +236 -236
- package/src/components/CnSettingsCard/CnSettingsCard.vue +92 -92
- package/src/components/CnSettingsSection/CnSettingsSection.vue +266 -266
- package/src/components/CnStatsBlock/CnStatsBlock.vue +420 -420
- package/src/components/CnStatusBadge/CnStatusBadge.vue +77 -77
- package/src/components/CnTabbedFormDialog/CnTabbedFormDialog.vue +540 -540
- package/src/components/CnTasksCard/CnTasksCard.vue +373 -373
- package/src/components/CnTileWidget/CnTileWidget.vue +159 -159
- package/src/components/CnTimelineStages/CnTimelineStages.vue +292 -292
- package/src/components/CnUserActionMenu/CnUserActionMenu.vue +435 -435
- package/src/components/CnVersionInfoCard/CnVersionInfoCard.vue +312 -312
- package/src/components/CnWidgetRenderer/CnWidgetRenderer.vue +180 -180
- package/src/components/CnWidgetWrapper/CnWidgetWrapper.vue +211 -211
- package/src/index.js +1 -1
- package/src/types/notification.d.ts +13 -13
- package/src/types/organisation.d.ts +15 -15
- package/src/types/schema.d.ts +13 -13
- package/src/types/task.d.ts +6 -6
|
@@ -1,132 +1,132 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="cn-item-card" @click="$emit('click', $event)">
|
|
3
|
-
<div class="cn-item-card__header">
|
|
4
|
-
<div class="cn-item-card__title-row">
|
|
5
|
-
<slot name="icon">
|
|
6
|
-
<component :is="icon" v-if="icon" :size="iconSize" />
|
|
7
|
-
</slot>
|
|
8
|
-
<div class="cn-item-card__title-content">
|
|
9
|
-
<h3 class="cn-item-card__title">{{ title }}</h3>
|
|
10
|
-
<span v-if="subtitle" class="cn-item-card__subtitle">{{ subtitle }}</span>
|
|
11
|
-
</div>
|
|
12
|
-
</div>
|
|
13
|
-
<div v-if="$slots.actions || $scopedSlots.actions" class="cn-item-card__actions">
|
|
14
|
-
<slot name="actions" />
|
|
15
|
-
</div>
|
|
16
|
-
</div>
|
|
17
|
-
<div v-if="$slots.default || $scopedSlots.default" class="cn-item-card__content">
|
|
18
|
-
<slot />
|
|
19
|
-
</div>
|
|
20
|
-
</div>
|
|
21
|
-
</template>
|
|
22
|
-
|
|
23
|
-
<script>
|
|
24
|
-
/**
|
|
25
|
-
* CnItemCard — Compact card for displaying an item in a sidebar list.
|
|
26
|
-
*
|
|
27
|
-
* Provides a card with a header (icon + title + optional actions) and
|
|
28
|
-
* a flexible content area. Designed for use in sidebar lists such as
|
|
29
|
-
* schema listings, source listings, etc.
|
|
30
|
-
*
|
|
31
|
-
* @example Basic usage
|
|
32
|
-
* <CnItemCard title="My Schema" :icon="FileCodeOutline">
|
|
33
|
-
* <p>Schema content here</p>
|
|
34
|
-
* </CnItemCard>
|
|
35
|
-
*
|
|
36
|
-
* @example With actions and stats
|
|
37
|
-
* <CnItemCard title="My Schema" :icon="FileCodeOutline" subtitle="v1.0">
|
|
38
|
-
* <template #actions>
|
|
39
|
-
* <NcActions>
|
|
40
|
-
* <NcActionButton @click="edit">Edit</NcActionButton>
|
|
41
|
-
* </NcActions>
|
|
42
|
-
* </template>
|
|
43
|
-
* <CnKpiGrid :columns="2">
|
|
44
|
-
* <CnStatsBlock title="Objects" :count="42" />
|
|
45
|
-
* <CnStatsBlock title="Size" :count="0" :breakdown="{ size: '1.2 MB' }" />
|
|
46
|
-
* </CnKpiGrid>
|
|
47
|
-
* </CnItemCard>
|
|
48
|
-
*/
|
|
49
|
-
export default {
|
|
50
|
-
name: 'CnItemCard',
|
|
51
|
-
|
|
52
|
-
props: {
|
|
53
|
-
/** Card title */
|
|
54
|
-
title: {
|
|
55
|
-
type: String,
|
|
56
|
-
default: '',
|
|
57
|
-
},
|
|
58
|
-
/** Optional subtitle below the title */
|
|
59
|
-
subtitle: {
|
|
60
|
-
type: String,
|
|
61
|
-
default: '',
|
|
62
|
-
},
|
|
63
|
-
/** Icon component (e.g., imported MDI icon) */
|
|
64
|
-
icon: {
|
|
65
|
-
type: [Object, Function],
|
|
66
|
-
default: null,
|
|
67
|
-
},
|
|
68
|
-
/** Icon size in pixels */
|
|
69
|
-
iconSize: {
|
|
70
|
-
type: Number,
|
|
71
|
-
default: 20,
|
|
72
|
-
},
|
|
73
|
-
},
|
|
74
|
-
}
|
|
75
|
-
</script>
|
|
76
|
-
|
|
77
|
-
<style scoped>
|
|
78
|
-
.cn-item-card {
|
|
79
|
-
background: var(--color-main-background);
|
|
80
|
-
border: 1px solid var(--color-border);
|
|
81
|
-
border-radius: var(--border-radius-large, 10px);
|
|
82
|
-
padding: 12px;
|
|
83
|
-
margin-bottom: 12px;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
.cn-item-card:last-child {
|
|
87
|
-
margin-bottom: 0;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.cn-item-card__header {
|
|
91
|
-
display: flex;
|
|
92
|
-
align-items: center;
|
|
93
|
-
justify-content: space-between;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.cn-item-card__title-row {
|
|
97
|
-
display: flex;
|
|
98
|
-
align-items: center;
|
|
99
|
-
gap: 8px;
|
|
100
|
-
min-width: 0;
|
|
101
|
-
flex: 1;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.cn-item-card__title-content {
|
|
105
|
-
display: flex;
|
|
106
|
-
flex-direction: column;
|
|
107
|
-
min-width: 0;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.cn-item-card__title {
|
|
111
|
-
margin: 0;
|
|
112
|
-
font-size: 1em;
|
|
113
|
-
font-weight: 600;
|
|
114
|
-
color: var(--color-main-text);
|
|
115
|
-
overflow: hidden;
|
|
116
|
-
text-overflow: ellipsis;
|
|
117
|
-
white-space: nowrap;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.cn-item-card__subtitle {
|
|
121
|
-
font-size: 0.85em;
|
|
122
|
-
color: var(--color-text-maxcontrast);
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.cn-item-card__actions {
|
|
126
|
-
flex-shrink: 0;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.cn-item-card__content {
|
|
130
|
-
margin-top: 8px;
|
|
131
|
-
}
|
|
132
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="cn-item-card" @click="$emit('click', $event)">
|
|
3
|
+
<div class="cn-item-card__header">
|
|
4
|
+
<div class="cn-item-card__title-row">
|
|
5
|
+
<slot name="icon">
|
|
6
|
+
<component :is="icon" v-if="icon" :size="iconSize" />
|
|
7
|
+
</slot>
|
|
8
|
+
<div class="cn-item-card__title-content">
|
|
9
|
+
<h3 class="cn-item-card__title">{{ title }}</h3>
|
|
10
|
+
<span v-if="subtitle" class="cn-item-card__subtitle">{{ subtitle }}</span>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
<div v-if="$slots.actions || $scopedSlots.actions" class="cn-item-card__actions">
|
|
14
|
+
<slot name="actions" />
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
<div v-if="$slots.default || $scopedSlots.default" class="cn-item-card__content">
|
|
18
|
+
<slot />
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
</template>
|
|
22
|
+
|
|
23
|
+
<script>
|
|
24
|
+
/**
|
|
25
|
+
* CnItemCard — Compact card for displaying an item in a sidebar list.
|
|
26
|
+
*
|
|
27
|
+
* Provides a card with a header (icon + title + optional actions) and
|
|
28
|
+
* a flexible content area. Designed for use in sidebar lists such as
|
|
29
|
+
* schema listings, source listings, etc.
|
|
30
|
+
*
|
|
31
|
+
* @example Basic usage
|
|
32
|
+
* <CnItemCard title="My Schema" :icon="FileCodeOutline">
|
|
33
|
+
* <p>Schema content here</p>
|
|
34
|
+
* </CnItemCard>
|
|
35
|
+
*
|
|
36
|
+
* @example With actions and stats
|
|
37
|
+
* <CnItemCard title="My Schema" :icon="FileCodeOutline" subtitle="v1.0">
|
|
38
|
+
* <template #actions>
|
|
39
|
+
* <NcActions>
|
|
40
|
+
* <NcActionButton @click="edit">Edit</NcActionButton>
|
|
41
|
+
* </NcActions>
|
|
42
|
+
* </template>
|
|
43
|
+
* <CnKpiGrid :columns="2">
|
|
44
|
+
* <CnStatsBlock title="Objects" :count="42" />
|
|
45
|
+
* <CnStatsBlock title="Size" :count="0" :breakdown="{ size: '1.2 MB' }" />
|
|
46
|
+
* </CnKpiGrid>
|
|
47
|
+
* </CnItemCard>
|
|
48
|
+
*/
|
|
49
|
+
export default {
|
|
50
|
+
name: 'CnItemCard',
|
|
51
|
+
|
|
52
|
+
props: {
|
|
53
|
+
/** Card title */
|
|
54
|
+
title: {
|
|
55
|
+
type: String,
|
|
56
|
+
default: '',
|
|
57
|
+
},
|
|
58
|
+
/** Optional subtitle below the title */
|
|
59
|
+
subtitle: {
|
|
60
|
+
type: String,
|
|
61
|
+
default: '',
|
|
62
|
+
},
|
|
63
|
+
/** Icon component (e.g., imported MDI icon) */
|
|
64
|
+
icon: {
|
|
65
|
+
type: [Object, Function],
|
|
66
|
+
default: null,
|
|
67
|
+
},
|
|
68
|
+
/** Icon size in pixels */
|
|
69
|
+
iconSize: {
|
|
70
|
+
type: Number,
|
|
71
|
+
default: 20,
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
}
|
|
75
|
+
</script>
|
|
76
|
+
|
|
77
|
+
<style scoped>
|
|
78
|
+
.cn-item-card {
|
|
79
|
+
background: var(--color-main-background);
|
|
80
|
+
border: 1px solid var(--color-border);
|
|
81
|
+
border-radius: var(--border-radius-large, 10px);
|
|
82
|
+
padding: 12px;
|
|
83
|
+
margin-bottom: 12px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.cn-item-card:last-child {
|
|
87
|
+
margin-bottom: 0;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.cn-item-card__header {
|
|
91
|
+
display: flex;
|
|
92
|
+
align-items: center;
|
|
93
|
+
justify-content: space-between;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.cn-item-card__title-row {
|
|
97
|
+
display: flex;
|
|
98
|
+
align-items: center;
|
|
99
|
+
gap: 8px;
|
|
100
|
+
min-width: 0;
|
|
101
|
+
flex: 1;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.cn-item-card__title-content {
|
|
105
|
+
display: flex;
|
|
106
|
+
flex-direction: column;
|
|
107
|
+
min-width: 0;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.cn-item-card__title {
|
|
111
|
+
margin: 0;
|
|
112
|
+
font-size: 1em;
|
|
113
|
+
font-weight: 600;
|
|
114
|
+
color: var(--color-main-text);
|
|
115
|
+
overflow: hidden;
|
|
116
|
+
text-overflow: ellipsis;
|
|
117
|
+
white-space: nowrap;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.cn-item-card__subtitle {
|
|
121
|
+
font-size: 0.85em;
|
|
122
|
+
color: var(--color-text-maxcontrast);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.cn-item-card__actions {
|
|
126
|
+
flex-shrink: 0;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.cn-item-card__content {
|
|
130
|
+
margin-top: 8px;
|
|
131
|
+
}
|
|
132
|
+
</style>
|
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="cn-kpi-grid" :class="gridClasses">
|
|
3
|
-
<slot />
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
|
|
7
|
-
<script>
|
|
8
|
-
/**
|
|
9
|
-
* CnKpiGrid — Responsive grid layout for KPI/stats cards.
|
|
10
|
-
*
|
|
11
|
-
* Wraps CnStatsBlock components in a responsive CSS grid. Supports
|
|
12
|
-
* 2, 3, or 4 column layouts that adapt to screen size.
|
|
13
|
-
*
|
|
14
|
-
* @example 4-column dashboard (default)
|
|
15
|
-
* <CnKpiGrid>
|
|
16
|
-
* <CnStatsBlock title="Cases" :count="42" :icon="BriefcaseOutline" variant="primary" />
|
|
17
|
-
* <CnStatsBlock title="Contacts" :count="128" :icon="AccountGroup" variant="success" />
|
|
18
|
-
* <CnStatsBlock title="Tasks" :count="7" :icon="ClipboardCheck" variant="warning" />
|
|
19
|
-
* <CnStatsBlock title="Overdue" :count="3" :icon="AlertCircle" variant="error" />
|
|
20
|
-
* </CnKpiGrid>
|
|
21
|
-
*
|
|
22
|
-
* @example 2-column layout
|
|
23
|
-
* <CnKpiGrid :columns="2">
|
|
24
|
-
* <CnStatsBlock title="Open" :count="15" />
|
|
25
|
-
* <CnStatsBlock title="Closed" :count="42" />
|
|
26
|
-
* </CnKpiGrid>
|
|
27
|
-
*/
|
|
28
|
-
export default {
|
|
29
|
-
name: 'CnKpiGrid',
|
|
30
|
-
|
|
31
|
-
props: {
|
|
32
|
-
/** Number of columns at max width: 2, 3, or 4 */
|
|
33
|
-
columns: {
|
|
34
|
-
type: Number,
|
|
35
|
-
default: 4,
|
|
36
|
-
validator: (v) => [2, 3, 4].includes(v),
|
|
37
|
-
},
|
|
38
|
-
},
|
|
39
|
-
|
|
40
|
-
computed: {
|
|
41
|
-
gridClasses() {
|
|
42
|
-
return {
|
|
43
|
-
[`cn-kpi-grid--cols-${this.columns}`]: true,
|
|
44
|
-
}
|
|
45
|
-
},
|
|
46
|
-
},
|
|
47
|
-
}
|
|
48
|
-
</script>
|
|
49
|
-
|
|
50
|
-
<style scoped>
|
|
51
|
-
.cn-kpi-grid {
|
|
52
|
-
display: grid;
|
|
53
|
-
gap: 16px;
|
|
54
|
-
margin-bottom: 24px;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.cn-kpi-grid--cols-2 {
|
|
58
|
-
grid-template-columns: repeat(2, 1fr);
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.cn-kpi-grid--cols-3 {
|
|
62
|
-
grid-template-columns: repeat(3, 1fr);
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.cn-kpi-grid--cols-4 {
|
|
66
|
-
grid-template-columns: repeat(4, 1fr);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
/* Responsive breakpoints */
|
|
70
|
-
@media (max-width: 1200px) {
|
|
71
|
-
.cn-kpi-grid--cols-4 {
|
|
72
|
-
grid-template-columns: repeat(2, 1fr);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
@media (max-width: 900px) {
|
|
77
|
-
.cn-kpi-grid--cols-3 {
|
|
78
|
-
grid-template-columns: repeat(2, 1fr);
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
@media (max-width: 600px) {
|
|
83
|
-
.cn-kpi-grid--cols-2,
|
|
84
|
-
.cn-kpi-grid--cols-3,
|
|
85
|
-
.cn-kpi-grid--cols-4 {
|
|
86
|
-
grid-template-columns: 1fr;
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="cn-kpi-grid" :class="gridClasses">
|
|
3
|
+
<slot />
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
/**
|
|
9
|
+
* CnKpiGrid — Responsive grid layout for KPI/stats cards.
|
|
10
|
+
*
|
|
11
|
+
* Wraps CnStatsBlock components in a responsive CSS grid. Supports
|
|
12
|
+
* 2, 3, or 4 column layouts that adapt to screen size.
|
|
13
|
+
*
|
|
14
|
+
* @example 4-column dashboard (default)
|
|
15
|
+
* <CnKpiGrid>
|
|
16
|
+
* <CnStatsBlock title="Cases" :count="42" :icon="BriefcaseOutline" variant="primary" />
|
|
17
|
+
* <CnStatsBlock title="Contacts" :count="128" :icon="AccountGroup" variant="success" />
|
|
18
|
+
* <CnStatsBlock title="Tasks" :count="7" :icon="ClipboardCheck" variant="warning" />
|
|
19
|
+
* <CnStatsBlock title="Overdue" :count="3" :icon="AlertCircle" variant="error" />
|
|
20
|
+
* </CnKpiGrid>
|
|
21
|
+
*
|
|
22
|
+
* @example 2-column layout
|
|
23
|
+
* <CnKpiGrid :columns="2">
|
|
24
|
+
* <CnStatsBlock title="Open" :count="15" />
|
|
25
|
+
* <CnStatsBlock title="Closed" :count="42" />
|
|
26
|
+
* </CnKpiGrid>
|
|
27
|
+
*/
|
|
28
|
+
export default {
|
|
29
|
+
name: 'CnKpiGrid',
|
|
30
|
+
|
|
31
|
+
props: {
|
|
32
|
+
/** Number of columns at max width: 2, 3, or 4 */
|
|
33
|
+
columns: {
|
|
34
|
+
type: Number,
|
|
35
|
+
default: 4,
|
|
36
|
+
validator: (v) => [2, 3, 4].includes(v),
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
computed: {
|
|
41
|
+
gridClasses() {
|
|
42
|
+
return {
|
|
43
|
+
[`cn-kpi-grid--cols-${this.columns}`]: true,
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
}
|
|
48
|
+
</script>
|
|
49
|
+
|
|
50
|
+
<style scoped>
|
|
51
|
+
.cn-kpi-grid {
|
|
52
|
+
display: grid;
|
|
53
|
+
gap: 16px;
|
|
54
|
+
margin-bottom: 24px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.cn-kpi-grid--cols-2 {
|
|
58
|
+
grid-template-columns: repeat(2, 1fr);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.cn-kpi-grid--cols-3 {
|
|
62
|
+
grid-template-columns: repeat(3, 1fr);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.cn-kpi-grid--cols-4 {
|
|
66
|
+
grid-template-columns: repeat(4, 1fr);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
/* Responsive breakpoints */
|
|
70
|
+
@media (max-width: 1200px) {
|
|
71
|
+
.cn-kpi-grid--cols-4 {
|
|
72
|
+
grid-template-columns: repeat(2, 1fr);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@media (max-width: 900px) {
|
|
77
|
+
.cn-kpi-grid--cols-3 {
|
|
78
|
+
grid-template-columns: repeat(2, 1fr);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@media (max-width: 600px) {
|
|
83
|
+
.cn-kpi-grid--cols-2,
|
|
84
|
+
.cn-kpi-grid--cols-3,
|
|
85
|
+
.cn-kpi-grid--cols-4 {
|
|
86
|
+
grid-template-columns: 1fr;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
</style>
|