quasar-ui-danx 0.2.16 → 0.2.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. package/dist/danx.es.js +11 -11
  2. package/dist/danx.es.js.map +1 -1
  3. package/dist/danx.umd.js +2 -2
  4. package/dist/danx.umd.js.map +1 -1
  5. package/dist/style.css +1 -1
  6. package/package.json +1 -1
  7. package/src/components/ActionTable/ActionMenu.vue +4 -4
  8. package/src/components/ActionTable/ActionTable.vue +12 -12
  9. package/src/components/ActionTable/ActionTableColumn.vue +11 -11
  10. package/src/components/ActionTable/Columns/ColumnListItem.vue +2 -2
  11. package/src/components/ActionTable/Columns/ColumnSettingsDialog.vue +8 -8
  12. package/src/components/ActionTable/Columns/TitleColumnFormat.vue +1 -1
  13. package/src/components/ActionTable/Columns/VisibleColumnsToggleButtons.vue +7 -7
  14. package/src/components/ActionTable/EmptyTableState.vue +4 -4
  15. package/src/components/ActionTable/Filters/CollapsableFiltersSidebar.vue +3 -3
  16. package/src/components/ActionTable/Filters/FilterFieldList.vue +6 -6
  17. package/src/components/ActionTable/Filters/FilterListToggle.vue +3 -3
  18. package/src/components/ActionTable/Filters/FilterToolbarLayout.vue +3 -3
  19. package/src/components/ActionTable/Filters/FilterableField.vue +6 -6
  20. package/src/components/ActionTable/Form/Fields/BooleanField.vue +4 -4
  21. package/src/components/ActionTable/Form/Fields/ConfirmPasswordField.vue +7 -7
  22. package/src/components/ActionTable/Form/Fields/DateField.vue +6 -6
  23. package/src/components/ActionTable/Form/Fields/DateRangeField.vue +13 -13
  24. package/src/components/ActionTable/Form/Fields/DateTimeField.vue +6 -6
  25. package/src/components/ActionTable/Form/Fields/DateTimePicker.vue +6 -6
  26. package/src/components/ActionTable/Form/Fields/EditableDiv.vue +3 -3
  27. package/src/components/ActionTable/Form/Fields/FieldLabel.vue +2 -2
  28. package/src/components/ActionTable/Form/Fields/FileUploadButton.vue +15 -15
  29. package/src/components/ActionTable/Form/Fields/InlineDateTimeField.vue +7 -7
  30. package/src/components/ActionTable/Form/Fields/IntegerField.vue +2 -2
  31. package/src/components/ActionTable/Form/Fields/LabeledInput.vue +2 -2
  32. package/src/components/ActionTable/Form/Fields/MultiFileField.vue +6 -6
  33. package/src/components/ActionTable/Form/Fields/MultiKeywordField.vue +8 -8
  34. package/src/components/ActionTable/Form/Fields/NewPasswordField.vue +6 -6
  35. package/src/components/ActionTable/Form/Fields/NumberField.vue +20 -20
  36. package/src/components/ActionTable/Form/Fields/NumberRangeField.vue +20 -20
  37. package/src/components/ActionTable/Form/Fields/SelectDrawer.vue +8 -8
  38. package/src/components/ActionTable/Form/Fields/SelectField.vue +36 -36
  39. package/src/components/ActionTable/Form/Fields/SelectWithChildrenField.vue +9 -9
  40. package/src/components/ActionTable/Form/Fields/SingleFileField.vue +6 -6
  41. package/src/components/ActionTable/Form/Fields/TextField.vue +15 -15
  42. package/src/components/ActionTable/Form/Fields/WysiwygField.vue +4 -4
  43. package/src/components/ActionTable/Form/RenderedForm.vue +5 -5
  44. package/src/components/ActionTable/TableSummaryRow.vue +8 -8
  45. package/src/components/ActionTable/listControls.ts +5 -5
  46. package/src/components/ActionTable/listHelpers.ts +1 -1
  47. package/src/components/ActionTable/tableColumns.ts +24 -1
  48. package/src/components/AuditHistory/AuditHistoryItem.vue +4 -4
  49. package/src/components/AuditHistory/AuditHistoryItemValue.vue +10 -10
  50. package/src/components/DragAndDrop/HandleDraggable.vue +8 -8
  51. package/src/components/DragAndDrop/ListItemDraggable.vue +8 -8
  52. package/src/components/DragAndDrop/dragAndDrop.ts +219 -219
  53. package/src/components/DragAndDrop/listDragAndDrop.ts +4 -4
  54. package/src/components/PanelsDrawer/PanelsDrawer.vue +7 -7
  55. package/src/components/PanelsDrawer/PanelsDrawerPanels.vue +1 -1
  56. package/src/components/PanelsDrawer/PanelsDrawerTabs.vue +4 -4
  57. package/src/components/Utility/Buttons/ExportButton.vue +4 -4
  58. package/src/components/Utility/Buttons/RefreshButton.vue +2 -2
  59. package/src/components/Utility/Controls/PreviousNextControls.vue +2 -2
  60. package/src/components/Utility/Dialogs/ConfirmDialog.vue +14 -14
  61. package/src/components/Utility/Dialogs/FullScreenDialog.vue +8 -8
  62. package/src/components/Utility/Dialogs/FullscreenCarouselDialog.vue +11 -11
  63. package/src/components/Utility/Dialogs/InfoDialog.vue +12 -12
  64. package/src/components/Utility/Dialogs/InputDialog.vue +5 -5
  65. package/src/components/Utility/Files/FilePreview.vue +10 -10
  66. package/src/components/Utility/Formats/GpsCoordinatesFormat.vue +4 -4
  67. package/src/components/Utility/Formats/IconWithTextFormat.vue +2 -2
  68. package/src/components/Utility/Formats/LabelValueFormat.vue +2 -2
  69. package/src/components/Utility/Layouts/CollapsableSidebar.vue +15 -15
  70. package/src/components/Utility/Layouts/ContentDrawer.vue +6 -6
  71. package/src/components/Utility/Popovers/InteractiveTooltip.vue +4 -4
  72. package/src/components/Utility/Popovers/PopoverMenu.vue +49 -49
  73. package/src/components/Utility/Tabs/BadgeTab.vue +1 -1
  74. package/src/components/Utility/Tabs/IndicatorTab.vue +3 -3
  75. package/src/components/Utility/Tools/ActionVnode.vue +3 -3
  76. package/src/components/Utility/Tools/RenderComponent.vue +3 -3
  77. package/src/components/Utility/Transitions/StaggeredListTransition.vue +3 -3
  78. package/src/helpers/array.ts +16 -16
  79. package/src/helpers/storage.ts +5 -5
  80. package/src/helpers/utils.ts +1 -1
  81. package/src/index.common.js +1 -2
  82. package/src/index.esm.js +1 -1
  83. package/src/index.umd.js +2 -2
  84. package/src/svg/CaretDownIcon.svg +1 -1
  85. package/src/svg/DragHandleDotsIcon.svg +3 -3
  86. package/src/svg/DragHandleIcon.svg +3 -3
  87. package/src/svg/FilterIcon.svg +5 -5
  88. package/src/svg/ImageIcon.svg +27 -27
  89. package/src/svg/PdfIcon.svg +5 -5
  90. package/src/svg/SkipNextIcon.svg +3 -3
  91. package/src/svg/SkipPreviousIcon.svg +3 -3
  92. package/src/svg/TrashIcon.svg +12 -12
  93. package/src/svg/WarningIcon.svg +3 -3
  94. package/src/svg/XIcon.svg +15 -15
  95. package/src/vue-plugin.js +5 -5
package/dist/danx.es.js CHANGED
@@ -10903,7 +10903,7 @@ const ao = { render: O_ }, MT = {
10903
10903
  });
10904
10904
  };
10905
10905
  }
10906
- }, V_ = /* @__PURE__ */ It(z_, [["__scopeId", "data-v-d14549c8"]]), G_ = {
10906
+ }, V_ = /* @__PURE__ */ It(z_, [["__scopeId", "data-v-4e05e875"]]), G_ = {
10907
10907
  key: 0,
10908
10908
  class: "p-4 m-4 absolute-top-right top right cursor-pointer"
10909
10909
  }, UT = {
@@ -11250,7 +11250,7 @@ const ao = { render: O_ }, MT = {
11250
11250
  ], 2);
11251
11251
  };
11252
11252
  }
11253
- }, vr = /* @__PURE__ */ It(r2, [["__scopeId", "data-v-ed8155ce"]]), i2 = ["src", "alt"], s2 = {
11253
+ }, vr = /* @__PURE__ */ It(r2, [["__scopeId", "data-v-e78aac88"]]), i2 = ["src", "alt"], s2 = {
11254
11254
  __name: "SvgImg",
11255
11255
  props: {
11256
11256
  svg: {
@@ -11512,7 +11512,7 @@ const ao = { render: O_ }, MT = {
11512
11512
  ], 6);
11513
11513
  };
11514
11514
  }
11515
- }, _2 = /* @__PURE__ */ It(v2, [["__scopeId", "data-v-168ec366"]]), x2 = {
11515
+ }, _2 = /* @__PURE__ */ It(v2, [["__scopeId", "data-v-961fea9b"]]), x2 = {
11516
11516
  __name: "ContentDrawer",
11517
11517
  props: {
11518
11518
  show: Boolean,
@@ -11566,7 +11566,7 @@ const ao = { render: O_ }, MT = {
11566
11566
  }, 8, ["modelValue", "position", "seamless", "class"]);
11567
11567
  };
11568
11568
  }
11569
- }, Fc = /* @__PURE__ */ It(x2, [["__scopeId", "data-v-c7e24fdd"]]), Oc = (t) => t.vnode;
11569
+ }, Fc = /* @__PURE__ */ It(x2, [["__scopeId", "data-v-fe311538"]]), Oc = (t) => t.vnode;
11570
11570
  Oc.props = { vnode: { type: Object, required: !0 } };
11571
11571
  const _r = Oc, b2 = {
11572
11572
  __name: "ActionVnode",
@@ -13957,7 +13957,7 @@ const Zx = {
13957
13957
  _: 3
13958
13958
  }, 512));
13959
13959
  }
13960
- }, jT = /* @__PURE__ */ It(Zx, [["__scopeId", "data-v-6a1edcb9"]]);
13960
+ }, jT = /* @__PURE__ */ It(Zx, [["__scopeId", "data-v-67038be9"]]);
13961
13961
  class Hx extends kc {
13962
13962
  constructor(n = {}) {
13963
13963
  super({
@@ -14341,7 +14341,7 @@ const Wx = { class: "flex items-center" }, qx = { key: 0 }, Yx = { class: "flex-
14341
14341
  ]);
14342
14342
  };
14343
14343
  }
14344
- }, XT = /* @__PURE__ */ It(tb, [["__scopeId", "data-v-a55d8e51"]]), KT = {
14344
+ }, XT = /* @__PURE__ */ It(tb, [["__scopeId", "data-v-9649010d"]]), KT = {
14345
14345
  __name: "CollapsableFiltersSidebar",
14346
14346
  props: {
14347
14347
  name: {
@@ -16730,7 +16730,7 @@ const bS = {
16730
16730
  onActionItem: s
16731
16731
  }, null, 8, ["items", "disabled", "tooltip", "loading", "loading-component"]));
16732
16732
  }
16733
- }, SS = { class: "flex-grow" }, TS = {
16733
+ }, SS = { class: "flex-grow overflow-hidden" }, TS = {
16734
16734
  key: 0,
16735
16735
  class: "flex flex-shrink-0 pl-2"
16736
16736
  }, wS = {
@@ -16995,7 +16995,7 @@ const bS = {
16995
16995
  columns: t.columns,
16996
16996
  loading: t.isLoadingList,
16997
16997
  rows: ((l = t.pagedItems) == null ? void 0 : l.data) || [],
16998
- "binary-state-sort": "",
16998
+ "binary-state-sort": !1,
16999
16999
  selection: "multiple",
17000
17000
  "rows-per-page-options": t.rowsPerPageOptions,
17001
17001
  class: "sticky-column sticky-header w-full h-full !border-0",
@@ -17070,7 +17070,7 @@ const bS = {
17070
17070
  ]);
17071
17071
  };
17072
17072
  }
17073
- }, dw = /* @__PURE__ */ It(NS, [["__scopeId", "data-v-c99a35fa"]]), MS = { class: "flex space-x-2" }, LS = ["innerHTML"], Tl = {
17073
+ }, dw = /* @__PURE__ */ It(NS, [["__scopeId", "data-v-4d212888"]]), MS = { class: "flex space-x-2" }, LS = ["innerHTML"], Tl = {
17074
17074
  __name: "AuditHistoryItemValue",
17075
17075
  props: {
17076
17076
  type: {
@@ -17254,7 +17254,7 @@ const bS = {
17254
17254
  }, 8, ["model-value"]);
17255
17255
  };
17256
17256
  }
17257
- }, WS = /* @__PURE__ */ It(HS, [["__scopeId", "data-v-beaa5548"]]), qS = { class: "flex flex-col flex-nowrap h-full" }, YS = { class: "flex items-center px-6 py-4 border-b" }, jS = { class: "flex-grow" }, QS = { class: "flex-grow overflow-hidden h-full" }, XS = { class: "flex items-stretch flex-nowrap h-full" }, KS = { class: "border-r w-[13.5rem] overflow-y-auto" }, JS = {
17257
+ }, WS = /* @__PURE__ */ It(HS, [["__scopeId", "data-v-da00bd76"]]), qS = { class: "flex flex-col flex-nowrap h-full" }, YS = { class: "flex items-center px-6 py-4 border-b" }, jS = { class: "flex-grow" }, QS = { class: "flex-grow overflow-hidden h-full" }, XS = { class: "flex items-stretch flex-nowrap h-full" }, KS = { class: "border-r w-[13.5rem] overflow-y-auto" }, JS = {
17258
17258
  key: 0,
17259
17259
  class: "border-l overflow-y-auto"
17260
17260
  }, mw = {
@@ -17331,7 +17331,7 @@ const bS = {
17331
17331
  });
17332
17332
  };
17333
17333
  }
17334
- }, eT = "quasar-ui-danx", tT = "0.2.15", nT = "Dan <dan@flytedesk.com>", rT = "DanX Vue / Quasar component library", iT = "MIT", sT = "module", oT = "dist/danx.es.js", aT = "dist/danx.es.js", lT = {
17334
+ }, eT = "quasar-ui-danx", tT = "0.2.17", nT = "Dan <dan@flytedesk.com>", rT = "DanX Vue / Quasar component library", iT = "MIT", sT = "module", oT = "dist/danx.es.js", aT = "dist/danx.es.js", lT = {
17335
17335
  dev: "cd dev && quasar dev && cd ..",
17336
17336
  build: "vite build",
17337
17337
  preview: "vite preview"