3h1-ui 1.0.68 → 1.0.70

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 (101) hide show
  1. package/es/index.js +4544 -276
  2. package/es/style.css +253 -0
  3. package/es/ui/index.d.ts +3 -0
  4. package/es/ui/src/Basic/index.d.ts +4 -0
  5. package/es/ui/src/Basic/src/BasicHelp.vue.d.ts +99 -0
  6. package/es/ui/src/Basic/src/BasicTitle.vue.d.ts +117 -0
  7. package/es/ui/src/Button/index.d.ts +6 -0
  8. package/es/ui/src/Button/src/BasicButton.vue.d.ts +2 -0
  9. package/es/ui/src/Button/src/PopConfirmButton.vue.d.ts +24 -0
  10. package/es/ui/src/Button/src/props.d.ts +37 -0
  11. package/es/ui/src/Container/index.d.ts +5 -0
  12. package/es/ui/src/Container/src/LazyContainer.vue.d.ts +121 -0
  13. package/es/ui/src/Container/src/ScrollContainer.vue.d.ts +9 -0
  14. package/es/ui/src/Container/src/collapse/CollapseContainer.vue.d.ts +553 -0
  15. package/es/ui/src/Container/src/collapse/CollapseHeader.vue.d.ts +42 -0
  16. package/es/ui/src/Container/src/typing.d.ts +15 -0
  17. package/es/ui/src/CountDown/index.d.ts +3 -0
  18. package/es/ui/src/CountDown/src/CountButton.vue.d.ts +35 -0
  19. package/es/ui/src/CountDown/src/CountdownInput.vue.d.ts +41 -0
  20. package/es/ui/src/CountDown/src/useCountdown.d.ts +9 -0
  21. package/es/ui/src/Dropdown/index.d.ts +3 -0
  22. package/es/ui/src/Dropdown/src/typing.d.ts +9 -0
  23. package/es/ui/src/Icon/index.d.ts +5 -0
  24. package/es/ui/src/Icon/src/IconPickerDemo.vue.d.ts +2 -0
  25. package/es/ui/src/Icon/src/SvgIcon.vue.d.ts +45 -0
  26. package/es/ui/src/Modal/index.d.ts +5 -0
  27. package/es/ui/src/Modal/src/components/BasicHelp.vue.d.ts +99 -0
  28. package/es/ui/src/Modal/src/components/BasicTitle.vue.d.ts +117 -0
  29. package/es/ui/src/Modal/src/components/ModalClose.vue.d.ts +39 -0
  30. package/es/ui/src/Modal/src/components/ModalHeader.vue.d.ts +19 -0
  31. package/es/ui/src/Modal/src/components/ModalWrapper.vue.d.ts +95 -0
  32. package/es/ui/src/Modal/src/components/ScrollContainer.vue.d.ts +9 -0
  33. package/es/ui/src/Modal/src/hooks/useAttrs.d.ts +9 -0
  34. package/es/ui/src/Modal/src/hooks/useContext.d.ts +10 -0
  35. package/es/ui/src/Modal/src/hooks/useDesign.d.ts +22 -0
  36. package/es/ui/src/Modal/src/hooks/useI18n.d.ts +15 -0
  37. package/es/ui/src/Modal/src/hooks/useModal.d.ts +6 -0
  38. package/es/ui/src/Modal/src/hooks/useModalContext.d.ts +7 -0
  39. package/es/ui/src/Modal/src/hooks/useModalDrag.d.ts +7 -0
  40. package/es/ui/src/Modal/src/hooks/useModalFullScreen.d.ts +11 -0
  41. package/es/ui/src/Modal/src/hooks/useScrollTo.d.ts +10 -0
  42. package/es/ui/src/Modal/src/hooks/useTimeout.d.ts +10 -0
  43. package/es/ui/src/Modal/src/hooks/useWindowSizeFn.d.ts +7 -0
  44. package/es/ui/src/Modal/src/typing.d.ts +173 -0
  45. package/es/ui/src/Modal/src/utils/env.d.ts +26 -0
  46. package/es/ui/src/Modal/src/utils/index.d.ts +5 -0
  47. package/es/ui/src/Modal/src/utils/is.d.ts +13 -0
  48. package/es/ui/src/Modal/src/utils/log.d.ts +2 -0
  49. package/es/ui/src/Modal/src/utils/tsxHelper.d.ts +13 -0
  50. package/es/ui/src/Page/index.d.ts +4 -0
  51. package/es/ui/src/Page/src/PageFooter.vue.d.ts +5 -0
  52. package/es/ui/src/Scrollbar/index.d.ts +6 -0
  53. package/es/ui/src/Scrollbar/src/Scrollbar.vue.d.ts +72 -0
  54. package/es/ui/src/Scrollbar/src/bar.d.ts +14 -0
  55. package/es/ui/src/Scrollbar/src/types.d.ts +18 -0
  56. package/es/ui/src/Scrollbar/src/util.d.ts +8 -0
  57. package/es/ui/src/StrengthMeter/index.d.ts +2 -0
  58. package/es/ui/src/Table/index.d.ts +11 -0
  59. package/es/ui/src/Table/src/componentMap.d.ts +6 -0
  60. package/es/ui/src/Table/src/components/EditTableHeaderIcon.vue.d.ts +14 -0
  61. package/es/ui/src/Table/src/components/HeaderCell.vue.d.ts +21 -0
  62. package/es/ui/src/Table/src/components/TableHeader.vue.d.ts +40 -0
  63. package/es/ui/src/Table/src/components/editable/CellComponent.d.ts +10 -0
  64. package/es/ui/src/Table/src/components/editable/helper.d.ts +5 -0
  65. package/es/ui/src/Table/src/components/editable/index.d.ts +22 -0
  66. package/es/ui/src/Table/src/components/settings/ColumnSetting.vue.d.ts +29 -0
  67. package/es/ui/src/Table/src/components/settings/FullScreenSetting.vue.d.ts +6 -0
  68. package/es/ui/src/Table/src/components/settings/RedoSetting.vue.d.ts +5 -0
  69. package/es/ui/src/Table/src/components/settings/SizeSetting.vue.d.ts +11 -0
  70. package/es/ui/src/Table/src/components/settings/index.vue.d.ts +22 -0
  71. package/es/ui/src/Table/src/const.d.ts +22 -0
  72. package/es/ui/src/Table/src/hooks/useCustomRow.d.ts +19 -0
  73. package/es/ui/src/Table/src/hooks/useDataSource.d.ts +28 -0
  74. package/es/ui/src/Table/src/hooks/useLoading.d.ts +6 -0
  75. package/es/ui/src/Table/src/hooks/usePagination.d.ts +10 -0
  76. package/es/ui/src/Table/src/hooks/useRowSelection.d.ts +12 -0
  77. package/es/ui/src/Table/src/hooks/useScrollTo.d.ts +4 -0
  78. package/es/ui/src/Table/src/hooks/useTable.d.ts +17 -0
  79. package/es/ui/src/Table/src/hooks/useTableContext.d.ts +13 -0
  80. package/es/ui/src/Table/src/hooks/useTableExpand.d.ts +14 -0
  81. package/es/ui/src/Table/src/hooks/useTableFooter.d.ts +9 -0
  82. package/es/ui/src/Table/src/hooks/useTableForm.d.ts +9 -0
  83. package/es/ui/src/Table/src/hooks/useTableHeader.d.ts +5 -0
  84. package/es/ui/src/Table/src/hooks/useTableScroll.d.ts +10 -0
  85. package/es/ui/src/Table/src/hooks/useTableStyle.d.ts +5 -0
  86. package/es/ui/src/Table/src/types/componentType.d.ts +1 -0
  87. package/es/ui/src/Table/src/types/pagination.d.ts +93 -0
  88. package/es/ui/src/Table/src/types/table.d.ts +372 -0
  89. package/es/ui/src/Table/src/types/tableAction.d.ts +28 -0
  90. package/es/ui/src/Transition/index.d.ts +368 -0
  91. package/es/ui/src/Transition/src/CollapseTransition.vue.d.ts +11 -0
  92. package/es/ui/src/Transition/src/CreateTransition.d.ts +47 -0
  93. package/es/ui/src/Transition/src/ExpandTransition.d.ts +23 -0
  94. package/es/ui/src/directives/clickOutside.d.ts +3 -0
  95. package/es/ui/src/directives/index.d.ts +1 -0
  96. package/es/{global.d.ts → ui/types/global.d.ts} +0 -0
  97. package/es/{index.d.ts → ui/types/index.d.ts} +0 -0
  98. package/lib/index.d.ts +1 -28
  99. package/lib/index.js +4532 -263
  100. package/package.json +39 -39
  101. package/lib/global.d.ts +0 -102

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.