design-system-next 2.7.5 → 2.7.6
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/design-system-next.js +3643 -3650
- package/dist/design-system-next.js.gz +0 -0
- package/package.json +1 -1
- package/src/components/filter/filter.vue +26 -5
|
Binary file
|
package/package.json
CHANGED
|
@@ -22,7 +22,14 @@
|
|
|
22
22
|
@click="isFilterOpen = true"
|
|
23
23
|
>
|
|
24
24
|
<slot>
|
|
25
|
-
<spr-input
|
|
25
|
+
<spr-input
|
|
26
|
+
id="search"
|
|
27
|
+
v-model="searchValue"
|
|
28
|
+
type="text"
|
|
29
|
+
:placeholder="placeholder"
|
|
30
|
+
:label="label"
|
|
31
|
+
:disabled="disabled"
|
|
32
|
+
>
|
|
26
33
|
<template #icon>
|
|
27
34
|
<Icon icon="ph:magnifying-glass" />
|
|
28
35
|
</template>
|
|
@@ -51,7 +58,7 @@
|
|
|
51
58
|
:triggers="['click']"
|
|
52
59
|
:auto-hide="false"
|
|
53
60
|
>
|
|
54
|
-
<spr-button has-icon variant="secondary" size="small">
|
|
61
|
+
<spr-button id="add-filter-button" has-icon variant="secondary" size="small">
|
|
55
62
|
<Icon icon="ph:faders-horizontal" />
|
|
56
63
|
</spr-button>
|
|
57
64
|
|
|
@@ -96,7 +103,12 @@
|
|
|
96
103
|
</div>
|
|
97
104
|
|
|
98
105
|
<div class="spr-p-size-spacing-2xs">
|
|
99
|
-
<spr-input
|
|
106
|
+
<spr-input
|
|
107
|
+
id="search"
|
|
108
|
+
v-model="filterMenuSearchvalue"
|
|
109
|
+
type="text"
|
|
110
|
+
placeholder="Select Employees"
|
|
111
|
+
>
|
|
100
112
|
<template #icon>
|
|
101
113
|
<Icon icon="ph:magnifying-glass" />
|
|
102
114
|
</template>
|
|
@@ -131,6 +143,7 @@
|
|
|
131
143
|
]"
|
|
132
144
|
>
|
|
133
145
|
<spr-checkbox
|
|
146
|
+
id="filter-menu-option"
|
|
134
147
|
v-model="getFiltereredMenuOption[key].isSelected"
|
|
135
148
|
class="spr-w-full"
|
|
136
149
|
:checked="getFiltereredMenuOption[key].isSelected"
|
|
@@ -147,13 +160,19 @@
|
|
|
147
160
|
|
|
148
161
|
<div :class="filterClass.ActionButtonClasses">
|
|
149
162
|
<spr-button
|
|
163
|
+
id="cancel-button"
|
|
150
164
|
variant="secondary"
|
|
151
165
|
size="small"
|
|
152
166
|
@click="mappedFilterMenuList[menu.field].isFilterVisible = false"
|
|
153
167
|
>
|
|
154
168
|
Cancel
|
|
155
169
|
</spr-button>
|
|
156
|
-
<spr-button
|
|
170
|
+
<spr-button
|
|
171
|
+
id="save-button"
|
|
172
|
+
size="small"
|
|
173
|
+
tone="success"
|
|
174
|
+
@click="saveSelectedFilter(menu.field)"
|
|
175
|
+
>
|
|
157
176
|
Save
|
|
158
177
|
</spr-button>
|
|
159
178
|
</div>
|
|
@@ -166,7 +185,9 @@
|
|
|
166
185
|
</Menu>
|
|
167
186
|
</div>
|
|
168
187
|
|
|
169
|
-
<spr-button variant="secondary" size="small" @click="selectAllOptions"
|
|
188
|
+
<spr-button id="select-all-button" variant="secondary" size="small" @click="selectAllOptions"
|
|
189
|
+
>Select All</spr-button
|
|
190
|
+
>
|
|
170
191
|
</div>
|
|
171
192
|
|
|
172
193
|
<div
|