@mythpe/quasar-ui-qui 0.4.58 → 0.4.60

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mythpe/quasar-ui-qui",
3
- "version": "0.4.58",
3
+ "version": "0.4.60",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -1698,8 +1698,8 @@ defineExpose({
1698
1698
  <q-separator />
1699
1699
  <q-card-actions
1700
1700
  ref="formActions"
1701
- align="between"
1702
1701
  class="m-datatable-form-actions print-hide m-container__fluid"
1702
+ v-bind="pluginOptions.dt?.dialogActions"
1703
1703
  >
1704
1704
  <slot
1705
1705
  :dt="datatableItemsScope"
@@ -1768,6 +1768,7 @@ defineExpose({
1768
1768
  <q-card-section
1769
1769
  :style="`height: ${($q.screen.height || 100) - 84 }px`"
1770
1770
  class="scroll m-datatable__dialog-show-container"
1771
+ v-bind="pluginOptions.dt?.dialogActions"
1771
1772
  >
1772
1773
  <slot
1773
1774
  :dt="datatableItemsScope"
@@ -67,6 +67,7 @@ defineOptions({
67
67
  <MInput
68
68
  ref="input"
69
69
  v-bind="{
70
+ ltr: true,
70
71
  ...$attrs,
71
72
  name,
72
73
  label,
@@ -1,6 +1,7 @@
1
1
  import type {
2
2
  QBtnDropdownProps,
3
3
  QBtnProps,
4
+ QCardActionsProps,
4
5
  QCardProps,
5
6
  QDialogOptions,
6
7
  QDialogProps,
@@ -307,5 +308,6 @@ export interface MythComponentsProps {
307
308
  props?: Partial<QBtnProps>;
308
309
  };
309
310
  };
311
+ dialogActions?: Partial<QCardActionsProps>;
310
312
  };
311
313
  }