@quoreadmin/ui 1.4.3 → 1.4.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/index154.js +1 -0
- package/dist/index168.js +4 -4
- package/dist/index175.js +8 -8
- package/dist/index177.js +8 -8
- package/dist/index181.js +17 -17
- package/dist/index184.js +7 -7
- package/dist/index195.js +4 -4
- package/dist/index213.js +121 -155
- package/dist/index214.js +37 -19
- package/dist/index215.js +80 -20
- package/dist/index216.js +13 -15
- package/dist/index217.js +19 -198
- package/dist/index218.js +18 -68
- package/dist/index219.js +20 -34
- package/dist/index220.js +19 -39
- package/dist/index221.js +156 -122
- package/dist/index222.js +225 -35
- package/dist/index223.js +37 -80
- package/dist/index224.js +10 -20
- package/dist/index225.js +160 -19
- package/dist/index226.js +10 -10
- package/dist/index227.js +15 -13
- package/dist/index228.js +194 -156
- package/dist/index229.js +66 -224
- package/dist/index230.js +34 -37
- package/dist/index231.js +39 -9
- package/dist/index235.js +6 -6
- package/dist/index236.js +1 -1
- package/dist/index242.js +1 -1
- package/dist/index243.js +1 -1
- package/dist/index244.js +6 -6
- package/dist/index253.js +6 -6
- package/dist/index254.js +1 -1
- package/dist/index255.js +1 -1
- package/dist/index268.js +2 -2
- package/dist/index275.js +2 -54
- package/dist/index277.js +234 -25
- package/dist/index278.js +5 -21
- package/dist/index279.js +133 -21
- package/dist/index280.js +68 -16
- package/dist/index281.js +85 -15
- package/dist/index282.js +28 -22
- package/dist/index283.js +9 -2
- package/dist/index284.js +69 -229
- package/dist/index285.js +3 -5
- package/dist/index286.js +2 -134
- package/dist/index287.js +79 -64
- package/dist/index288.js +51 -84
- package/dist/index289.js +5 -28
- package/dist/index290.js +4 -8
- package/dist/index291.js +173 -69
- package/dist/index292.js +62 -3
- package/dist/index293.js +75 -2
- package/dist/index294.js +49 -78
- package/dist/index295.js +25 -53
- package/dist/index296.js +21 -5
- package/dist/index297.js +21 -4
- package/dist/index298.js +15 -178
- package/dist/index299.js +16 -62
- package/dist/index300.js +22 -74
- package/dist/index301.js +1518 -79
- package/dist/index302.js +386 -22
- package/dist/index303.js +2698 -902
- package/dist/index304.js +85 -21
- package/dist/index305.js +3770 -20
- package/dist/index306.js +59 -19
- package/dist/index307.js +15 -69
- package/dist/index308.js +84 -19
- package/dist/index309.js +201 -18
- package/dist/index310.js +246 -22
- package/dist/index311.js +78 -21
- package/dist/index312.js +22 -63
- package/dist/index313.js +909 -1492
- package/dist/index314.js +22 -386
- package/dist/index315.js +20 -2731
- package/dist/index316.js +19 -85
- package/dist/index317.js +58 -3759
- package/dist/index318.js +19 -60
- package/dist/index319.js +19 -15
- package/dist/index320.js +21 -83
- package/dist/index321.js +22 -202
- package/dist/index322.js +63 -246
- package/dist/index347.js +1 -1
- package/dist/index348.js +1 -1
- package/dist/index349.js +5 -5
- package/dist/index351.js +2 -2
- package/dist/index353.js +2 -2
- package/dist/index355.js +1 -1
- package/dist/index357.js +4 -4
- package/dist/index358.js +3 -3
- package/dist/index361.js +1 -1
- package/dist/index363.js +1 -1
- package/dist/index364.js +3 -3
- package/dist/index369.js +1 -1
- package/dist/index371.js +1 -1
- package/dist/index372.js +3 -3
- package/dist/index373.js +3 -3
- package/dist/index375.js +100 -16
- package/dist/index376.js +90 -100
- package/dist/index377.js +98 -91
- package/dist/index378.js +16 -97
- package/dist/index385.js +1 -1
- package/dist/src/composables/filtering.d.ts +5 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/views/lists.vue.d.ts +52 -12
- package/dist/src/views/showcase.vue.d.ts +130 -30
- package/dist/src/views/tables.vue.d.ts +52 -12
- package/package.json +3 -3
- package/tailwind.preset.ts +1 -0
|
@@ -14,53 +14,73 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
14
14
|
filteredData: import('vue').Ref<any[], any[]>;
|
|
15
15
|
filteredPropertyData: import('vue').Ref<any[], any[]>;
|
|
16
16
|
filters: import('vue').Ref<{
|
|
17
|
+
attribute?: string | undefined;
|
|
17
18
|
key?: string | undefined;
|
|
18
19
|
message?: string | undefined;
|
|
19
20
|
name?: string | undefined;
|
|
20
21
|
options: {
|
|
21
|
-
id?: number | string | undefined;
|
|
22
|
+
id?: number | string | boolean | undefined;
|
|
22
23
|
key?: string | undefined;
|
|
23
24
|
name: string;
|
|
24
25
|
value?: number | string | boolean | undefined;
|
|
25
26
|
checked?: boolean | undefined;
|
|
27
|
+
optionClass?: string | undefined;
|
|
28
|
+
tagClass?: string | undefined;
|
|
29
|
+
closeTagClass?: string | undefined;
|
|
26
30
|
}[];
|
|
27
31
|
selected: {
|
|
28
|
-
id?: number | string | undefined;
|
|
32
|
+
id?: number | string | boolean | undefined;
|
|
29
33
|
key?: string | undefined;
|
|
30
34
|
name: string;
|
|
31
35
|
value?: number | string | boolean | undefined;
|
|
32
36
|
checked?: boolean | undefined;
|
|
37
|
+
optionClass?: string | undefined;
|
|
38
|
+
tagClass?: string | undefined;
|
|
39
|
+
closeTagClass?: string | undefined;
|
|
33
40
|
} | {
|
|
34
|
-
id?: number | string | undefined;
|
|
41
|
+
id?: number | string | boolean | undefined;
|
|
35
42
|
key?: string | undefined;
|
|
36
43
|
name: string;
|
|
37
44
|
value?: number | string | boolean | undefined;
|
|
38
45
|
checked?: boolean | undefined;
|
|
46
|
+
optionClass?: string | undefined;
|
|
47
|
+
tagClass?: string | undefined;
|
|
48
|
+
closeTagClass?: string | undefined;
|
|
39
49
|
}[] | null;
|
|
40
50
|
required?: boolean | undefined;
|
|
41
51
|
}[], FilterObject[] | {
|
|
52
|
+
attribute?: string | undefined;
|
|
42
53
|
key?: string | undefined;
|
|
43
54
|
message?: string | undefined;
|
|
44
55
|
name?: string | undefined;
|
|
45
56
|
options: {
|
|
46
|
-
id?: number | string | undefined;
|
|
57
|
+
id?: number | string | boolean | undefined;
|
|
47
58
|
key?: string | undefined;
|
|
48
59
|
name: string;
|
|
49
60
|
value?: number | string | boolean | undefined;
|
|
50
61
|
checked?: boolean | undefined;
|
|
62
|
+
optionClass?: string | undefined;
|
|
63
|
+
tagClass?: string | undefined;
|
|
64
|
+
closeTagClass?: string | undefined;
|
|
51
65
|
}[];
|
|
52
66
|
selected: {
|
|
53
|
-
id?: number | string | undefined;
|
|
67
|
+
id?: number | string | boolean | undefined;
|
|
54
68
|
key?: string | undefined;
|
|
55
69
|
name: string;
|
|
56
70
|
value?: number | string | boolean | undefined;
|
|
57
71
|
checked?: boolean | undefined;
|
|
72
|
+
optionClass?: string | undefined;
|
|
73
|
+
tagClass?: string | undefined;
|
|
74
|
+
closeTagClass?: string | undefined;
|
|
58
75
|
} | {
|
|
59
|
-
id?: number | string | undefined;
|
|
76
|
+
id?: number | string | boolean | undefined;
|
|
60
77
|
key?: string | undefined;
|
|
61
78
|
name: string;
|
|
62
79
|
value?: number | string | boolean | undefined;
|
|
63
80
|
checked?: boolean | undefined;
|
|
81
|
+
optionClass?: string | undefined;
|
|
82
|
+
tagClass?: string | undefined;
|
|
83
|
+
closeTagClass?: string | undefined;
|
|
64
84
|
}[] | null;
|
|
65
85
|
required?: boolean | undefined;
|
|
66
86
|
}[]>;
|
|
@@ -125,53 +145,73 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
125
145
|
propertyColumns: import('vue').Ref<any[], any[]>;
|
|
126
146
|
propertyData: import('vue').Ref<any[], any[]>;
|
|
127
147
|
propertyFilters: import('vue').Ref<{
|
|
148
|
+
attribute?: string | undefined;
|
|
128
149
|
key?: string | undefined;
|
|
129
150
|
message?: string | undefined;
|
|
130
151
|
name?: string | undefined;
|
|
131
152
|
options: {
|
|
132
|
-
id?: number | string | undefined;
|
|
153
|
+
id?: number | string | boolean | undefined;
|
|
133
154
|
key?: string | undefined;
|
|
134
155
|
name: string;
|
|
135
156
|
value?: number | string | boolean | undefined;
|
|
136
157
|
checked?: boolean | undefined;
|
|
158
|
+
optionClass?: string | undefined;
|
|
159
|
+
tagClass?: string | undefined;
|
|
160
|
+
closeTagClass?: string | undefined;
|
|
137
161
|
}[];
|
|
138
162
|
selected: {
|
|
139
|
-
id?: number | string | undefined;
|
|
163
|
+
id?: number | string | boolean | undefined;
|
|
140
164
|
key?: string | undefined;
|
|
141
165
|
name: string;
|
|
142
166
|
value?: number | string | boolean | undefined;
|
|
143
167
|
checked?: boolean | undefined;
|
|
168
|
+
optionClass?: string | undefined;
|
|
169
|
+
tagClass?: string | undefined;
|
|
170
|
+
closeTagClass?: string | undefined;
|
|
144
171
|
} | {
|
|
145
|
-
id?: number | string | undefined;
|
|
172
|
+
id?: number | string | boolean | undefined;
|
|
146
173
|
key?: string | undefined;
|
|
147
174
|
name: string;
|
|
148
175
|
value?: number | string | boolean | undefined;
|
|
149
176
|
checked?: boolean | undefined;
|
|
177
|
+
optionClass?: string | undefined;
|
|
178
|
+
tagClass?: string | undefined;
|
|
179
|
+
closeTagClass?: string | undefined;
|
|
150
180
|
}[] | null;
|
|
151
181
|
required?: boolean | undefined;
|
|
152
182
|
}[], FilterObject[] | {
|
|
183
|
+
attribute?: string | undefined;
|
|
153
184
|
key?: string | undefined;
|
|
154
185
|
message?: string | undefined;
|
|
155
186
|
name?: string | undefined;
|
|
156
187
|
options: {
|
|
157
|
-
id?: number | string | undefined;
|
|
188
|
+
id?: number | string | boolean | undefined;
|
|
158
189
|
key?: string | undefined;
|
|
159
190
|
name: string;
|
|
160
191
|
value?: number | string | boolean | undefined;
|
|
161
192
|
checked?: boolean | undefined;
|
|
193
|
+
optionClass?: string | undefined;
|
|
194
|
+
tagClass?: string | undefined;
|
|
195
|
+
closeTagClass?: string | undefined;
|
|
162
196
|
}[];
|
|
163
197
|
selected: {
|
|
164
|
-
id?: number | string | undefined;
|
|
198
|
+
id?: number | string | boolean | undefined;
|
|
165
199
|
key?: string | undefined;
|
|
166
200
|
name: string;
|
|
167
201
|
value?: number | string | boolean | undefined;
|
|
168
202
|
checked?: boolean | undefined;
|
|
203
|
+
optionClass?: string | undefined;
|
|
204
|
+
tagClass?: string | undefined;
|
|
205
|
+
closeTagClass?: string | undefined;
|
|
169
206
|
} | {
|
|
170
|
-
id?: number | string | undefined;
|
|
207
|
+
id?: number | string | boolean | undefined;
|
|
171
208
|
key?: string | undefined;
|
|
172
209
|
name: string;
|
|
173
210
|
value?: number | string | boolean | undefined;
|
|
174
211
|
checked?: boolean | undefined;
|
|
212
|
+
optionClass?: string | undefined;
|
|
213
|
+
tagClass?: string | undefined;
|
|
214
|
+
closeTagClass?: string | undefined;
|
|
175
215
|
}[] | null;
|
|
176
216
|
required?: boolean | undefined;
|
|
177
217
|
}[]>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quoreadmin/ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
7
7
|
"**/*.css",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"pdfjs-dist": "^4.10.38"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@intlify/unplugin-vue-i18n": "^
|
|
69
|
+
"@intlify/unplugin-vue-i18n": "^11.0.3",
|
|
70
70
|
"vue": "^3.5.26",
|
|
71
71
|
"vue-router": "^4.6.4",
|
|
72
72
|
"@storybook/addon-designs": "^11.1.1",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@tiptap/pm": "^3.15.3",
|
|
83
83
|
"@tiptap/starter-kit": "^3.15.3",
|
|
84
84
|
"@tiptap/vue-3": "^3.15.3",
|
|
85
|
-
"@types/node": "^
|
|
85
|
+
"@types/node": "^25.0.8",
|
|
86
86
|
"@typescript-eslint/eslint-plugin": "^8.52.0",
|
|
87
87
|
"@typescript-eslint/parser": "^8.52.0",
|
|
88
88
|
"@vitejs/plugin-vue": "^6.0.3",
|