@oneclick.dev/cms-core-modules 0.0.11

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.
Files changed (126) hide show
  1. package/README.md +1 -0
  2. package/dist/cms-core-modules.css +1 -0
  3. package/dist/index-BIlpXuWX.mjs +3430 -0
  4. package/dist/index-Ds7aKppr.js +1 -0
  5. package/dist/index.cjs.js +39 -0
  6. package/dist/index.mjs +21541 -0
  7. package/dist/src/custom/components/AdminElementEditor.vue.d.ts +6 -0
  8. package/dist/src/custom/components/AdminToolbar.vue.d.ts +16 -0
  9. package/dist/src/custom/components/AdminToolbarView.vue.d.ts +10 -0
  10. package/dist/src/custom/components/CustomDashboard.vue.d.ts +4 -0
  11. package/dist/src/custom/components/admin/Transformer.vue.d.ts +16 -0
  12. package/dist/src/custom/components/admin/element-setting-views/Button.vue.d.ts +2 -0
  13. package/dist/src/custom/components/admin/element-setting-views/Checkbox.vue.d.ts +2 -0
  14. package/dist/src/custom/components/admin/element-setting-views/Label.vue.d.ts +2 -0
  15. package/dist/src/custom/components/admin/element-setting-views/Radios.vue.d.ts +2 -0
  16. package/dist/src/custom/components/admin/element-setting-views/Select.vue.d.ts +2 -0
  17. package/dist/src/custom/components/admin/element-setting-views/Text.vue.d.ts +2 -0
  18. package/dist/src/custom/components/admin/element-setting-views/Textarea.vue.d.ts +2 -0
  19. package/dist/src/custom/components/admin/element-setting-views/Textfield.vue.d.ts +2 -0
  20. package/dist/src/custom/components/admin/element-setting-views/index.d.ts +11 -0
  21. package/dist/src/custom/components/admin/setting-views/ApiActionsView.vue.d.ts +2 -0
  22. package/dist/src/custom/components/admin/setting-views/HistoryView.vue.d.ts +2 -0
  23. package/dist/src/custom/components/admin/setting-views/NewElementView.vue.d.ts +2 -0
  24. package/dist/src/custom/components/admin/setting-views/VariablesView.vue.d.ts +2 -0
  25. package/dist/src/custom/components/admin/setting-views/new-element-view/DraggableElement.vue.d.ts +29 -0
  26. package/dist/src/custom/components/admin/setting-views/variables-view/ApiActionVariables.vue.d.ts +2 -0
  27. package/dist/src/custom/components/admin/setting-views/variables-view/RouteQueryParams.vue.d.ts +2 -0
  28. package/dist/src/custom/components/admin/setting-views/variables-view/Transformers.vue.d.ts +2 -0
  29. package/dist/src/custom/components/admin/setting-views/variables-view/Variables.vue.d.ts +2 -0
  30. package/dist/src/custom/components/elements/button/Button.vue.d.ts +40 -0
  31. package/dist/src/custom/components/elements/button/index.d.ts +1 -0
  32. package/dist/src/custom/components/elements/checkbox/Checkbox.vue.d.ts +28 -0
  33. package/dist/src/custom/components/elements/checkbox/index.d.ts +1 -0
  34. package/dist/src/custom/components/elements/file/File.vue.d.ts +2 -0
  35. package/dist/src/custom/components/elements/file/index.d.ts +1 -0
  36. package/dist/src/custom/components/elements/images/Images.vue.d.ts +2 -0
  37. package/dist/src/custom/components/elements/images/index.d.ts +1 -0
  38. package/dist/src/custom/components/elements/items/Items.vue.d.ts +2 -0
  39. package/dist/src/custom/components/elements/items/index.d.ts +1 -0
  40. package/dist/src/custom/components/elements/label/Label.vue.d.ts +14 -0
  41. package/dist/src/custom/components/elements/label/index.d.ts +1 -0
  42. package/dist/src/custom/components/elements/location/Location.vue.d.ts +2 -0
  43. package/dist/src/custom/components/elements/location/index.d.ts +1 -0
  44. package/dist/src/custom/components/elements/radios/Radios.vue.d.ts +44 -0
  45. package/dist/src/custom/components/elements/radios/index.d.ts +1 -0
  46. package/dist/src/custom/components/elements/richtext/RichText.vue.d.ts +2 -0
  47. package/dist/src/custom/components/elements/richtext/index.d.ts +1 -0
  48. package/dist/src/custom/components/elements/select/Select.vue.d.ts +44 -0
  49. package/dist/src/custom/components/elements/select/index.d.ts +1 -0
  50. package/dist/src/custom/components/elements/text/Text.vue.d.ts +14 -0
  51. package/dist/src/custom/components/elements/text/index.d.ts +1 -0
  52. package/dist/src/custom/components/elements/textarea/Textarea.vue.d.ts +31 -0
  53. package/dist/src/custom/components/elements/textarea/index.d.ts +1 -0
  54. package/dist/src/custom/components/elements/textfield/Textfield.vue.d.ts +31 -0
  55. package/dist/src/custom/components/elements/textfield/index.d.ts +1 -0
  56. package/dist/src/custom/composables/useTable.d.ts +3 -0
  57. package/dist/src/custom/config.d.ts +2 -0
  58. package/dist/src/custom/index.d.ts +38 -0
  59. package/dist/src/custom/index.vue.d.ts +22 -0
  60. package/dist/src/custom/metadata.d.ts +2 -0
  61. package/dist/src/custom/pages/View.vue.d.ts +14 -0
  62. package/dist/src/custom/permissions.d.ts +1 -0
  63. package/dist/src/custom/routes.d.ts +15 -0
  64. package/dist/src/custom/stores/useTableStore.d.ts +5 -0
  65. package/dist/src/custom/tools.d.ts +1 -0
  66. package/dist/src/custom/types.d.ts +0 -0
  67. package/dist/src/index.d.ts +3 -0
  68. package/dist/src/lib/dateRangePresets.d.ts +13 -0
  69. package/dist/src/lib/interpolation.d.ts +8 -0
  70. package/dist/src/lib/utils.d.ts +6 -0
  71. package/dist/src/products/components/detail/Inventory.vue.d.ts +2 -0
  72. package/dist/src/products/components/detail/Main.vue.d.ts +2 -0
  73. package/dist/src/products/components/detail/Price.vue.d.ts +2 -0
  74. package/dist/src/products/components/detail/SEO.vue.d.ts +2 -0
  75. package/dist/src/products/components/detail/Shipping.vue.d.ts +2 -0
  76. package/dist/src/products/components/detail/Status.vue.d.ts +2 -0
  77. package/dist/src/products/components/detail/price/UnitPriceDialog.vue.d.ts +17 -0
  78. package/dist/src/products/components/detail/variants/Options.vue.d.ts +30 -0
  79. package/dist/src/products/components/detail/variants/VariantList.vue.d.ts +26 -0
  80. package/dist/src/products/components/overview/GridView.vue.d.ts +12 -0
  81. package/dist/src/products/components/overview/ListView.vue.d.ts +12 -0
  82. package/dist/src/products/composables/useTable.d.ts +3 -0
  83. package/dist/src/products/config.d.ts +59 -0
  84. package/dist/src/products/index.d.ts +98 -0
  85. package/dist/src/products/index.vue.d.ts +21 -0
  86. package/dist/src/products/metadata.d.ts +2 -0
  87. package/dist/src/products/pages/Detail.vue.d.ts +14 -0
  88. package/dist/src/products/pages/Overview.vue.d.ts +16 -0
  89. package/dist/src/products/permissions.d.ts +5 -0
  90. package/dist/src/products/routes.d.ts +15 -0
  91. package/dist/src/products/stores/useTableStore.d.ts +5 -0
  92. package/dist/src/products/tools.d.ts +25 -0
  93. package/dist/src/products/types.d.ts +64 -0
  94. package/dist/src/table/components/ColumnDropdown.vue.d.ts +2 -0
  95. package/dist/src/table/components/ColumnEditorDialog.vue.d.ts +34 -0
  96. package/dist/src/table/components/DataTable.vue.d.ts +6 -0
  97. package/dist/src/table/components/DataTableAction.vue.d.ts +14 -0
  98. package/dist/src/table/components/DataTablePagination.vue.d.ts +6 -0
  99. package/dist/src/table/components/actions/ActionDialog.vue.d.ts +19 -0
  100. package/dist/src/table/components/actions/CtaActionDialog.vue.d.ts +4 -0
  101. package/dist/src/table/components/actions/action-dialog/OpenDialogSettings.vue.d.ts +23 -0
  102. package/dist/src/table/components/actions/action-dialog/OpenModuleSettings.vue.d.ts +19 -0
  103. package/dist/src/table/components/actions/action-dialog/OpenUrlSettings.vue.d.ts +30 -0
  104. package/dist/src/table/components/date-range-filter/DateRangeFilter.vue.d.ts +2 -0
  105. package/dist/src/table/components/date-range-filter/DateRangeSettingsDialog.vue.d.ts +27 -0
  106. package/dist/src/table/components/filters/FilterDialog.vue.d.ts +12 -0
  107. package/dist/src/table/components/filters/Filters.vue.d.ts +27 -0
  108. package/dist/src/table/components/search/Search.vue.d.ts +2 -0
  109. package/dist/src/table/components/sort/SortMode.vue.d.ts +2 -0
  110. package/dist/src/table/components/sort/SortModeSettingsDialog.vue.d.ts +18 -0
  111. package/dist/src/table/components/stats/StatDialog.vue.d.ts +12 -0
  112. package/dist/src/table/components/stats/Stats.vue.d.ts +27 -0
  113. package/dist/src/table/composables/useTable.d.ts +3 -0
  114. package/dist/src/table/config.d.ts +2 -0
  115. package/dist/src/table/index.d.ts +70 -0
  116. package/dist/src/table/index.vue.d.ts +22 -0
  117. package/dist/src/table/metadata.d.ts +2 -0
  118. package/dist/src/table/pages/TableView.vue.d.ts +42 -0
  119. package/dist/src/table/permissions.d.ts +5 -0
  120. package/dist/src/table/routes.d.ts +43 -0
  121. package/dist/src/table/stores/useTableStore.d.ts +5 -0
  122. package/dist/src/table/tools.d.ts +25 -0
  123. package/dist/src/table/types.d.ts +0 -0
  124. package/dist/src/types/global-composables.d.ts +12 -0
  125. package/dist/src/types/index.d.ts +60 -0
  126. package/package.json +48 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # whitelabel-cms-modules
@@ -0,0 +1 @@
1
+ .vue-grid-item[data-v-99aff433]{transition:all .2s ease;transition-property:left,top,right}.vue-grid-item.no-touch[data-v-99aff433]{touch-action:none}.vue-grid-item.cssTransforms[data-v-99aff433]{transition-property:transform;left:0;right:auto}.vue-grid-item.cssTransforms.render-rtl[data-v-99aff433]{left:auto;right:0}.vue-grid-item.resizing[data-v-99aff433]{opacity:.6;z-index:3}.vue-grid-item.vue-draggable-dragging[data-v-99aff433]{transition:none;z-index:3}.vue-grid-item.vue-grid-placeholder[data-v-99aff433]{background:red;opacity:.2;transition-duration:.1s;z-index:2;-webkit-user-select:none;user-select:none}.vue-grid-item>.vue-resizable-handle[data-v-99aff433]{position:absolute;width:20px;height:20px;bottom:0;right:0;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pg08IS0tIEdlbmVyYXRvcjogQWRvYmUgRmlyZXdvcmtzIENTNiwgRXhwb3J0IFNWRyBFeHRlbnNpb24gYnkgQWFyb24gQmVhbGwgKGh0dHA6Ly9maXJld29ya3MuYWJlYWxsLmNvbSkgLiBWZXJzaW9uOiAwLjYuMSAgLS0+DTwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DTxzdmcgaWQ9IlVudGl0bGVkLVBhZ2UlMjAxIiB2aWV3Qm94PSIwIDAgNiA2IiBzdHlsZT0iYmFja2dyb3VuZC1jb2xvcjojZmZmZmZmMDAiIHZlcnNpb249IjEuMSINCXhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbDpzcGFjZT0icHJlc2VydmUiDQl4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjZweCIgaGVpZ2h0PSI2cHgiDT4NCTxnIG9wYWNpdHk9IjAuMzAyIj4NCQk8cGF0aCBkPSJNIDYgNiBMIDAgNiBMIDAgNC4yIEwgNCA0LjIgTCA0LjIgNC4yIEwgNC4yIDAgTCA2IDAgTCA2IDYgTCA2IDYgWiIgZmlsbD0iIzAwMDAwMCIvPg0JPC9nPg08L3N2Zz4=);background-position:bottom right;padding:0 3px 3px 0;background-repeat:no-repeat;background-origin:content-box;box-sizing:border-box;cursor:se-resize}.vue-grid-item>.vue-rtl-resizable-handle[data-v-99aff433]{bottom:0;left:0;background:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAuMDAwMDAwMDAwMDAwMDAyIiBoZWlnaHQ9IjEwLjAwMDAwMDAwMDAwMDAwMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KIDwhLS0gQ3JlYXRlZCB3aXRoIE1ldGhvZCBEcmF3IC0gaHR0cDovL2dpdGh1Yi5jb20vZHVvcGl4ZWwvTWV0aG9kLURyYXcvIC0tPgogPGc+CiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPgogIDxyZWN0IGZpbGw9Im5vbmUiIGlkPSJjYW52YXNfYmFja2dyb3VuZCIgaGVpZ2h0PSIxMiIgd2lkdGg9IjEyIiB5PSItMSIgeD0iLTEiLz4KICA8ZyBkaXNwbGF5PSJub25lIiBvdmVyZmxvdz0idmlzaWJsZSIgeT0iMCIgeD0iMCIgaGVpZ2h0PSIxMDAlIiB3aWR0aD0iMTAwJSIgaWQ9ImNhbnZhc0dyaWQiPgogICA8cmVjdCBmaWxsPSJ1cmwoI2dyaWRwYXR0ZXJuKSIgc3Ryb2tlLXdpZHRoPSIwIiB5PSIwIiB4PSIwIiBoZWlnaHQ9IjEwMCUiIHdpZHRoPSIxMDAlIi8+CiAgPC9nPgogPC9nPgogPGc+CiAgPHRpdGxlPkxheWVyIDE8L3RpdGxlPgogIDxsaW5lIGNhbnZhcz0iI2ZmZmZmZiIgY2FudmFzLW9wYWNpdHk9IjEiIHN0cm9rZS1saW5lY2FwPSJ1bmRlZmluZWQiIHN0cm9rZS1saW5lam9pbj0idW5kZWZpbmVkIiBpZD0ic3ZnXzEiIHkyPSItNzAuMTc4NDA3IiB4Mj0iMTI0LjQ2NDE3NSIgeTE9Ii0zOC4zOTI3MzciIHgxPSIxNDQuODIxMjg5IiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlPSIjMDAwIiBmaWxsPSJub25lIi8+CiAgPGxpbmUgc3Ryb2tlPSIjNjY2NjY2IiBzdHJva2UtbGluZWNhcD0idW5kZWZpbmVkIiBzdHJva2UtbGluZWpvaW49InVuZGVmaW5lZCIgaWQ9InN2Z181IiB5Mj0iOS4xMDY5NTciIHgyPSIwLjk0NzI0NyIgeTE9Ii0wLjAxODEyOCIgeDE9IjAuOTQ3MjQ3IiBzdHJva2Utd2lkdGg9IjIiIGZpbGw9Im5vbmUiLz4KICA8bGluZSBzdHJva2UtbGluZWNhcD0idW5kZWZpbmVkIiBzdHJva2UtbGluZWpvaW49InVuZGVmaW5lZCIgaWQ9InN2Z183IiB5Mj0iOSIgeDI9IjEwLjA3MzUyOSIgeTE9IjkiIHgxPSItMC42NTU2NCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiM2NjY2NjYiIGZpbGw9Im5vbmUiLz4KIDwvZz4KPC9zdmc+);background-position:bottom left;padding-left:3px;background-repeat:no-repeat;background-origin:content-box;cursor:sw-resize;right:auto}.vue-grid-item.disable-userselect[data-v-99aff433]{-webkit-user-select:none;user-select:none}.vue-grid-layout[data-v-a10aee95]{position:relative;transition:height .2s ease}.dark #custom-module-wrapper::-webkit-scrollbar-thumb{background:#d8d8d8}#custom-module-wrapper::-webkit-scrollbar{width:5px;height:5px}#custom-module-wrapper::-webkit-scrollbar-track{background:transparent}#custom-module-wrapper::-webkit-scrollbar-thumb{background:#494949;border-radius:5px}#custom-module-wrapper .bg-grid{background-image:repeating-linear-gradient(to right,var(--primary) 0,var(--primary) 1px,transparent 1px,transparent calc(100% / 12)),repeating-linear-gradient(to bottom,var(--primary) 0,var(--primary) 1px,transparent 1px,transparent 8px);background-size:100% 100%}#custom-module-wrapper .vue-grid-item.vue-resizable:hover .vue-resizable-handle{display:block}#custom-module-wrapper .vue-grid-item.vue-resizable .vue-resizable-handle{display:none;background:var(--color-muted);border-radius:100px;width:12px;height:12px;right:-6px;bottom:-6px;border:2px solid var(--primary)}