quasar-factory-lib 0.0.65 → 0.0.66

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.
@@ -36,6 +36,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
36
36
  btnEmit?: undefined;
37
37
  dataCy?: undefined;
38
38
  btnColor?: undefined;
39
+ btnDisable?: undefined;
39
40
  format?: undefined;
40
41
  showBadge?: undefined;
41
42
  badgeDataCy?: undefined;
@@ -77,6 +78,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
77
78
  btnEmit?: undefined;
78
79
  dataCy?: undefined;
79
80
  btnColor?: undefined;
81
+ btnDisable?: undefined;
80
82
  format?: undefined;
81
83
  showBadge?: undefined;
82
84
  badgeDataCy?: undefined;
@@ -118,6 +120,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
118
120
  btnEmit?: undefined;
119
121
  dataCy?: undefined;
120
122
  btnColor?: undefined;
123
+ btnDisable?: undefined;
121
124
  format?: undefined;
122
125
  showBadge?: undefined;
123
126
  badgeDataCy?: undefined;
@@ -159,6 +162,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
159
162
  btnEmit?: undefined;
160
163
  dataCy?: undefined;
161
164
  btnColor?: undefined;
165
+ btnDisable?: undefined;
162
166
  format?: undefined;
163
167
  showBadge?: undefined;
164
168
  badgeDataCy?: undefined;
@@ -187,6 +191,9 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
187
191
  btnEmit: string;
188
192
  dataCy: string;
189
193
  btnColor: string;
194
+ btnDisable: (row: {
195
+ btnDisable: string;
196
+ }) => string;
190
197
  required?: undefined;
191
198
  showBasicCheckbox?: undefined;
192
199
  showCustomizedIcon?: undefined;
@@ -253,6 +260,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
253
260
  btnEmit?: undefined;
254
261
  dataCy?: undefined;
255
262
  btnColor?: undefined;
263
+ btnDisable?: undefined;
256
264
  showCustomizedCheckBox?: undefined;
257
265
  checkedIcon?: undefined;
258
266
  uncheckedIcon?: undefined;
@@ -292,6 +300,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
292
300
  btnEmit?: undefined;
293
301
  dataCy?: undefined;
294
302
  btnColor?: undefined;
303
+ btnDisable?: undefined;
295
304
  format?: undefined;
296
305
  showBadge?: undefined;
297
306
  badgeDataCy?: undefined;
@@ -328,6 +337,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
328
337
  btnEmit?: undefined;
329
338
  dataCy?: undefined;
330
339
  btnColor?: undefined;
340
+ btnDisable?: undefined;
331
341
  format?: undefined;
332
342
  showBadge?: undefined;
333
343
  badgeDataCy?: undefined;
@@ -374,6 +384,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
374
384
  popupEditDataCy?: undefined;
375
385
  popupEditMask?: undefined;
376
386
  showCustomizedButton?: undefined;
387
+ btnDisable?: undefined;
377
388
  format?: undefined;
378
389
  showBadge?: undefined;
379
390
  badgeDataCy?: undefined;
@@ -413,6 +424,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
413
424
  btnEmit?: undefined;
414
425
  dataCy?: undefined;
415
426
  btnColor?: undefined;
427
+ btnDisable?: undefined;
416
428
  format?: undefined;
417
429
  showBadge?: undefined;
418
430
  badgeDataCy?: undefined;
@@ -7526,7 +7526,7 @@ function gh(e, t, n, o, r, l) {
7526
7526
  "data-cy": c.colButtonDataCy + "-" + r.tablePropsData.row.id,
7527
7527
  "btn-color": c.btnColor || "primary",
7528
7528
  "btn-icon": c.btnIcon || "",
7529
- "btn-disable": c.btnDisable || r.tablePropsData.row.btnDisable,
7529
+ "btn-disable": r.tablePropsData.row.btnDisable,
7530
7530
  onOnClickButton: () => {
7531
7531
  e.$emit("onClickButton", c.btnEmit, r.tablePropsData.row);
7532
7532
  }
@@ -7781,7 +7781,7 @@ function bh(e, t, n, o, r, l) {
7781
7781
  "data-cy": c.colButtonDataCy + "-" + r.tablePropsData.row.id,
7782
7782
  "btn-color": c.btnColor || "primary",
7783
7783
  "btn-icon": c.btnIcon || "",
7784
- "btn-disable": c.btnDisable || r.tablePropsData.row.btnDisable,
7784
+ "btn-disable": r.tablePropsData.row.btnDisable,
7785
7785
  onOnClickButton: () => {
7786
7786
  e.$emit("onClickButton", c.btnEmit, r.tablePropsData.row);
7787
7787
  }