quasar-ui-danx 0.3.11 → 0.3.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. package/dist/danx.es.js +5978 -5901
  2. package/dist/danx.es.js.map +1 -1
  3. package/dist/danx.umd.js +5 -5
  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 +7 -7
  8. package/src/components/ActionTable/ActionTable.vue +55 -31
  9. package/src/components/ActionTable/ActionTableColumn.vue +37 -15
  10. package/src/components/ActionTable/ActionTableHeaderColumn.vue +9 -9
  11. package/src/components/ActionTable/Columns/ColumnListItem.vue +33 -10
  12. package/src/components/ActionTable/Columns/ColumnSettingsDialog.vue +23 -19
  13. package/src/components/ActionTable/Columns/TitleColumnFormat.vue +5 -3
  14. package/src/components/ActionTable/Columns/VisibleColumnsToggleButtons.vue +24 -22
  15. package/src/components/ActionTable/EmptyTableState.vue +4 -2
  16. package/src/components/ActionTable/Filters/CollapsableFiltersSidebar.vue +17 -9
  17. package/src/components/ActionTable/Filters/FilterFieldItem.vue +7 -5
  18. package/src/components/ActionTable/Filters/FilterFieldList.vue +21 -21
  19. package/src/components/ActionTable/Filters/FilterListToggle.vue +13 -10
  20. package/src/components/ActionTable/Filters/FilterToolbarLayout.vue +14 -7
  21. package/src/components/ActionTable/Filters/FilterableField.vue +75 -70
  22. package/src/components/ActionTable/Form/Fields/BooleanField.vue +9 -9
  23. package/src/components/ActionTable/Form/Fields/ConfirmPasswordField.vue +7 -7
  24. package/src/components/ActionTable/Form/Fields/DateField.vue +4 -4
  25. package/src/components/ActionTable/Form/Fields/DateRangeField.vue +10 -12
  26. package/src/components/ActionTable/Form/Fields/DateTimeField.vue +13 -10
  27. package/src/components/ActionTable/Form/Fields/DateTimePicker.vue +36 -14
  28. package/src/components/ActionTable/Form/Fields/EditableDiv.vue +3 -3
  29. package/src/components/ActionTable/Form/Fields/FieldLabel.vue +2 -2
  30. package/src/components/ActionTable/Form/Fields/FileUploadButton.vue +23 -20
  31. package/src/components/ActionTable/Form/Fields/InlineDateTimeField.vue +10 -10
  32. package/src/components/ActionTable/Form/Fields/IntegerField.vue +6 -6
  33. package/src/components/ActionTable/Form/Fields/LabeledInput.vue +20 -17
  34. package/src/components/ActionTable/Form/Fields/MultiFileField.vue +35 -35
  35. package/src/components/ActionTable/Form/Fields/MultiKeywordField.vue +15 -15
  36. package/src/components/ActionTable/Form/Fields/NewPasswordField.vue +4 -4
  37. package/src/components/ActionTable/Form/Fields/NumberField.vue +11 -11
  38. package/src/components/ActionTable/Form/Fields/NumberRangeField.vue +11 -11
  39. package/src/components/ActionTable/Form/Fields/SelectDrawer.vue +38 -33
  40. package/src/components/ActionTable/Form/Fields/SelectField.vue +37 -35
  41. package/src/components/ActionTable/Form/Fields/SelectWithChildrenField.vue +19 -15
  42. package/src/components/ActionTable/Form/Fields/SingleFileField.vue +29 -28
  43. package/src/components/ActionTable/Form/Fields/TextField.vue +22 -22
  44. package/src/components/ActionTable/Form/RenderedForm.vue +5 -1
  45. package/src/components/ActionTable/Layouts/ActionTableLayout.vue +1 -1
  46. package/src/components/ActionTable/TableSummaryRow.vue +15 -15
  47. package/src/components/ActionTable/listControls.ts +378 -383
  48. package/src/components/AuditHistory/AuditHistoryItem.vue +12 -6
  49. package/src/components/AuditHistory/AuditHistoryItemValue.vue +6 -6
  50. package/src/components/DragAndDrop/HandleDraggable.vue +21 -21
  51. package/src/components/DragAndDrop/ListItemDraggable.vue +19 -15
  52. package/src/components/PanelsDrawer/PanelsDrawer.vue +18 -11
  53. package/src/components/PanelsDrawer/PanelsDrawerPanels.vue +9 -5
  54. package/src/components/PanelsDrawer/PanelsDrawerTabs.vue +18 -13
  55. package/src/components/Utility/Buttons/ExportButton.vue +5 -1
  56. package/src/components/Utility/Buttons/RefreshButton.vue +2 -2
  57. package/src/components/Utility/Controls/PreviousNextControls.vue +8 -8
  58. package/src/components/Utility/Dialogs/ConfirmDialog.vue +32 -29
  59. package/src/components/Utility/Dialogs/FullScreenDialog.vue +12 -9
  60. package/src/components/Utility/Dialogs/FullscreenCarouselDialog.vue +30 -26
  61. package/src/components/Utility/Dialogs/InfoDialog.vue +25 -22
  62. package/src/components/Utility/Dialogs/InputDialog.vue +7 -7
  63. package/src/components/Utility/Files/FilePreview.vue +64 -47
  64. package/src/components/Utility/Files/SvgImg.vue +7 -4
  65. package/src/components/Utility/Formats/GpsCoordinatesFormat.vue +11 -3
  66. package/src/components/Utility/Layouts/CollapsableSidebar.vue +16 -16
  67. package/src/components/Utility/Layouts/ContentDrawer.vue +8 -8
  68. package/src/components/Utility/Popovers/InteractiveTooltip.vue +7 -7
  69. package/src/components/Utility/Popovers/PopoverMenu.vue +21 -21
  70. package/src/components/Utility/Tabs/BadgeTab.vue +9 -7
  71. package/src/components/Utility/Tools/ActionVnode.vue +5 -5
  72. package/src/components/Utility/Tools/RenderComponent.vue +11 -9
  73. package/src/components/Utility/Transitions/StaggeredListTransition.vue +7 -7
  74. package/src/styles/quasar-reset.scss +63 -19
  75. package/src/styles/themes/danx/action-table.scss +19 -0
  76. package/src/styles/themes/danx/index.scss +1 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.