@type-dom/ui 0.0.9 → 0.1.0

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 (311) hide show
  1. package/README.md +44 -44
  2. package/package.json +4 -10
  3. package/src/aria.d.ts +2 -2
  4. package/src/components/basic/td-button/td-button.abstract.d.ts +5 -5
  5. package/src/components/basic/td-button/td-button.abstract.js +46 -42
  6. package/src/components/basic/td-button/td-button.interface.d.ts +3 -6
  7. package/src/components/basic/td-button/td-button.style.d.ts +16 -5
  8. package/src/components/basic/td-button/td-button.style.js +43 -17
  9. package/src/components/basic/td-button-group/td-button-group.class.d.ts +3 -2
  10. package/src/components/basic/td-button-group/td-button-group.class.js +34 -37
  11. package/src/components/basic/td-button-group/td-button-group.interface.d.ts +3 -3
  12. package/src/components/basic/td-container/td-aside/td-aside.class.d.ts +2 -2
  13. package/src/components/basic/td-container/td-aside/td-aside.class.js +6 -5
  14. package/src/components/basic/td-container/td-aside/td-aside.interface.d.ts +3 -3
  15. package/src/components/basic/td-container/td-container.class.d.ts +2 -3
  16. package/src/components/basic/td-container/td-container.class.js +9 -7
  17. package/src/components/basic/td-container/td-container.interface.d.ts +3 -4
  18. package/src/components/basic/td-container/td-container.js +3 -2
  19. package/src/components/basic/td-container/td-footer/td-footer.class.d.ts +2 -2
  20. package/src/components/basic/td-container/td-footer/td-footer.class.js +4 -3
  21. package/src/components/basic/td-container/td-footer/td-footer.interface.d.ts +3 -3
  22. package/src/components/basic/td-container/td-header/td-header.class.d.ts +2 -2
  23. package/src/components/basic/td-container/td-header/td-header.class.js +3 -3
  24. package/src/components/basic/td-container/td-header/td-header.interface.d.ts +3 -3
  25. package/src/components/basic/td-container/td-main/td-main.class.d.ts +4 -2
  26. package/src/components/basic/td-container/td-main/td-main.class.js +8 -5
  27. package/src/components/basic/td-container/td-main/td-main.interface.d.ts +3 -3
  28. package/src/components/basic/td-icon/td-icon.class.d.ts +4 -6
  29. package/src/components/basic/td-icon/td-icon.class.js +32 -29
  30. package/src/components/basic/td-icon/td-icon.interface.d.ts +3 -4
  31. package/src/components/basic/td-layout/td-col/td-col.class.d.ts +2 -3
  32. package/src/components/basic/td-layout/td-col/td-col.class.js +4 -4
  33. package/src/components/basic/td-layout/td-col/td-col.interface.d.ts +3 -3
  34. package/src/components/basic/td-layout/td-row/td-row.class.d.ts +2 -2
  35. package/src/components/basic/td-layout/td-row/td-row.class.js +5 -4
  36. package/src/components/basic/td-layout/td-row/td-row.interface.d.ts +3 -3
  37. package/src/components/basic/td-link/td-link.class.d.ts +2 -2
  38. package/src/components/basic/td-link/td-link.class.js +6 -10
  39. package/src/components/basic/td-link/td-link.interface.d.ts +3 -3
  40. package/src/components/basic/td-link/td-link.style.js +1 -1
  41. package/src/components/basic/td-scrollbar/bar/bar.class.d.ts +2 -2
  42. package/src/components/basic/td-scrollbar/bar/bar.class.js +4 -4
  43. package/src/components/basic/td-scrollbar/bar/bar.interface.d.ts +3 -3
  44. package/src/components/basic/td-scrollbar/td-scrollbar.class.d.ts +4 -2
  45. package/src/components/basic/td-scrollbar/td-scrollbar.class.js +4 -3
  46. package/src/components/basic/td-scrollbar/td-scrollbar.interface.d.ts +3 -4
  47. package/src/components/basic/td-scrollbar/td-scrollbar.interface.js +1 -1
  48. package/src/components/basic/td-scrollbar/thumb/thumb.class.d.ts +2 -2
  49. package/src/components/basic/td-scrollbar/thumb/thumb.class.js +2 -3
  50. package/src/components/basic/td-scrollbar/thumb/thumb.interface.d.ts +3 -3
  51. package/src/components/basic/td-space/td-space.class.d.ts +2 -2
  52. package/src/components/basic/td-space/td-space.class.js +11 -5
  53. package/src/components/basic/td-space/td-space.interface.d.ts +3 -4
  54. package/src/components/basic/td-text/td-text.class.d.ts +4 -2
  55. package/src/components/basic/td-text/td-text.class.js +6 -4
  56. package/src/components/basic/td-text/td-text.interface.d.ts +3 -3
  57. package/src/components/data/td-avatar/td-avatar.class.d.ts +2 -2
  58. package/src/components/data/td-avatar/td-avatar.class.js +19 -25
  59. package/src/components/data/td-avatar/td-avatar.interface.d.ts +3 -3
  60. package/src/components/data/td-avatar/td-avatar.style.d.ts +2 -0
  61. package/src/components/data/td-avatar/td-avatar.style.js +19 -1
  62. package/src/components/data/td-badge/td-badge.class.d.ts +2 -2
  63. package/src/components/data/td-badge/td-badge.class.js +4 -4
  64. package/src/components/data/td-badge/td-badge.interface.d.ts +3 -3
  65. package/src/components/data/td-card/td-card.class.d.ts +4 -5
  66. package/src/components/data/td-card/td-card.class.js +16 -30
  67. package/src/components/data/td-card/td-card.interface.d.ts +3 -3
  68. package/src/components/data/td-card/td-card.style.d.ts +3 -2
  69. package/src/components/data/td-card/td-card.style.js +17 -3
  70. package/src/components/data/td-check-tag/td-check-tag.class.d.ts +2 -2
  71. package/src/components/data/td-check-tag/td-check-tag.class.js +5 -5
  72. package/src/components/data/td-check-tag/td-check-tag.interface.d.ts +3 -3
  73. package/src/components/data/td-check-tag/td-check-tag.style.d.ts +2 -2
  74. package/src/components/data/td-check-tag/td-check-tag.style.js +3 -3
  75. package/src/components/data/td-collapse/td-collapse.class.d.ts +2 -2
  76. package/src/components/data/td-collapse/td-collapse.class.js +20 -20
  77. package/src/components/data/td-collapse/td-collapse.interface.d.ts +3 -3
  78. package/src/components/data/td-collapse/td-collapse.style.d.ts +2 -0
  79. package/src/components/data/td-collapse/td-collapse.style.js +9 -1
  80. package/src/components/data/td-collapse-item/td-collapse-item.class.d.ts +4 -5
  81. package/src/components/data/td-collapse-item/td-collapse-item.class.js +16 -16
  82. package/src/components/data/td-collapse-item/td-collapse-item.interface.d.ts +3 -3
  83. package/src/components/data/td-count-down/td-count-down.class.d.ts +1 -1
  84. package/src/components/data/td-count-down/td-count-down.class.js +1 -1
  85. package/src/components/data/td-descriptions/td-descriptions-row.d.ts +4 -5
  86. package/src/components/data/td-descriptions/td-descriptions-row.js +1 -1
  87. package/src/components/data/td-descriptions/td-descriptions.class.d.ts +3 -3
  88. package/src/components/data/td-descriptions/td-descriptions.class.js +2 -3
  89. package/src/components/data/td-descriptions/td-descriptions.interface.d.ts +3 -4
  90. package/src/components/data/td-descriptions/td-descritions-cell.d.ts +6 -5
  91. package/src/components/data/td-descriptions/td-descritions-cell.js +5 -4
  92. package/src/components/data/td-descriptions-item/td-descriptions-item.class.d.ts +2 -3
  93. package/src/components/data/td-descriptions-item/td-descriptions-item.class.js +5 -4
  94. package/src/components/data/td-descriptions-item/td-descriptions-item.interface.d.ts +3 -4
  95. package/src/components/data/td-empty/td-empty.class.d.ts +2 -2
  96. package/src/components/data/td-empty/td-empty.class.js +2 -3
  97. package/src/components/data/td-empty/td-empty.interface.d.ts +3 -4
  98. package/src/components/data/td-image/td-image.class.d.ts +2 -3
  99. package/src/components/data/td-image/td-image.class.js +4 -22
  100. package/src/components/data/td-image/td-image.interface.d.ts +3 -3
  101. package/src/components/data/td-image/td-image.style.d.ts +2 -0
  102. package/src/components/data/td-image/td-image.style.js +19 -1
  103. package/src/components/data/td-image-viewer/td-image-viewer.class.d.ts +3 -5
  104. package/src/components/data/td-image-viewer/td-image-viewer.class.js +20 -17
  105. package/src/components/data/td-image-viewer/td-image-viewer.interface.d.ts +3 -3
  106. package/src/components/data/td-result/td-result.class.d.ts +2 -2
  107. package/src/components/data/td-result/td-result.class.js +4 -3
  108. package/src/components/data/td-result/td-result.interface.d.ts +3 -4
  109. package/src/components/data/td-segmented/td-segmented.class.d.ts +2 -3
  110. package/src/components/data/td-segmented/td-segmented.class.js +7 -8
  111. package/src/components/data/td-segmented/td-segmented.interface.d.ts +2 -3
  112. package/src/components/data/td-statistic/td-statistic.abstract.d.ts +3 -4
  113. package/src/components/data/td-statistic/td-statistic.abstract.js +15 -14
  114. package/src/components/data/td-statistic/td-statistic.class.js +1 -0
  115. package/src/components/data/td-statistic/td-statistic.interface.d.ts +3 -4
  116. package/src/components/data/td-tag/td-tag.class.d.ts +3 -4
  117. package/src/components/data/td-tag/td-tag.class.js +13 -13
  118. package/src/components/data/td-tag/td-tag.interface.d.ts +3 -3
  119. package/src/components/feedback/index.d.ts +4 -0
  120. package/src/components/feedback/index.js +5 -2
  121. package/src/components/feedback/td-alert/td-alert.class.d.ts +2 -3
  122. package/src/components/feedback/td-alert/td-alert.class.js +19 -17
  123. package/src/components/feedback/td-alert/td-alert.interface.d.ts +3 -3
  124. package/src/components/feedback/td-dialog/td-dialog.class.d.ts +3 -3
  125. package/src/components/feedback/td-dialog/td-dialog.class.js +25 -29
  126. package/src/components/feedback/td-dialog/td-dialog.interface.d.ts +3 -3
  127. package/src/components/feedback/td-dialog/td-dialog.interface.js +1 -1
  128. package/src/components/feedback/td-dialog-content/td-dialog-content.class.d.ts +2 -3
  129. package/src/components/feedback/td-dialog-content/td-dialog-content.class.js +10 -7
  130. package/src/components/feedback/td-dialog-content/td-dialog-content.interface.d.ts +3 -4
  131. package/src/components/feedback/td-drawer/td-drawer.class.d.ts +3 -3
  132. package/src/components/feedback/td-drawer/td-drawer.class.js +5 -5
  133. package/src/components/feedback/td-drawer/td-drawer.interface.d.ts +2 -2
  134. package/src/components/feedback/td-focus-trap/focus-trap.d.ts +15 -0
  135. package/src/components/feedback/td-focus-trap/focus-trap.js +71 -0
  136. package/src/components/feedback/td-focus-trap/td-focus-trap.class.d.ts +8 -7
  137. package/src/components/feedback/td-focus-trap/td-focus-trap.class.js +129 -129
  138. package/src/components/feedback/td-focus-trap/td-focus-trap.interface.d.ts +3 -3
  139. package/src/components/feedback/td-loading/td-loading.class.d.ts +4 -3
  140. package/src/components/feedback/td-loading/td-loading.class.js +27 -17
  141. package/src/components/feedback/td-loading/td-loading.interface.d.ts +3 -4
  142. package/src/components/feedback/td-message/td-message.class.d.ts +4 -4
  143. package/src/components/feedback/td-message/td-message.class.js +31 -31
  144. package/src/components/feedback/td-message/td-message.interface.d.ts +3 -4
  145. package/src/components/feedback/td-message-box/td-message-box.class.d.ts +10 -12
  146. package/src/components/feedback/td-message-box/td-message-box.class.js +30 -52
  147. package/src/components/feedback/td-message-box/td-message-box.interface.d.ts +4 -5
  148. package/src/components/feedback/td-notification/td-notification.class.d.ts +4 -5
  149. package/src/components/feedback/td-notification/td-notification.class.js +17 -18
  150. package/src/components/feedback/td-notification/td-notification.interface.d.ts +3 -4
  151. package/src/components/feedback/td-notification/td-notification.style.js +6 -6
  152. package/src/components/feedback/td-only-child/td-only-child.class.d.ts +3 -3
  153. package/src/components/feedback/td-only-child/td-only-child.class.js +3 -3
  154. package/src/components/feedback/td-overlay/td-overlay.class.d.ts +2 -3
  155. package/src/components/feedback/td-overlay/td-overlay.class.js +6 -5
  156. package/src/components/feedback/td-overlay/td-overlay.interface.d.ts +3 -3
  157. package/src/components/feedback/td-popper/arrow/arrow.class.d.ts +2 -2
  158. package/src/components/feedback/td-popper/arrow/arrow.class.js +7 -6
  159. package/src/components/feedback/td-popper/arrow/arrow.const.d.ts +3 -0
  160. package/src/components/feedback/td-popper/arrow/arrow.const.js +6 -0
  161. package/src/components/feedback/td-popper/arrow/arrow.interface.d.ts +3 -4
  162. package/src/components/feedback/td-popper/constants.d.ts +25 -0
  163. package/src/components/feedback/td-popper/constants.js +5 -0
  164. package/src/components/feedback/td-popper/content/content.class.d.ts +2 -2
  165. package/src/components/feedback/td-popper/content/content.class.js +7 -13
  166. package/src/components/feedback/td-popper/content/content.const.d.ts +2 -2
  167. package/src/components/feedback/td-popper/content/content.const.js +3 -4
  168. package/src/components/feedback/td-popper/content/content.interface.d.ts +24 -11
  169. package/src/components/feedback/td-popper/content/content.interface.js +4 -0
  170. package/src/components/feedback/td-popper/td-popper.class.d.ts +3 -2
  171. package/src/components/feedback/td-popper/td-popper.class.js +9 -7
  172. package/src/components/feedback/td-popper/td-popper.const.d.ts +5 -20
  173. package/src/components/feedback/td-popper/td-popper.const.js +8 -3
  174. package/src/components/feedback/td-popper/td-popper.interface.d.ts +6 -4
  175. package/src/components/feedback/td-popper/trigger/trigger.class.d.ts +2 -2
  176. package/src/components/feedback/td-popper/trigger/trigger.class.js +6 -6
  177. package/src/components/feedback/td-popper/trigger/trigger.const.d.ts +1 -0
  178. package/src/components/feedback/td-popper/trigger/trigger.const.js +4 -1
  179. package/src/components/feedback/td-popper/trigger/trigger.interface.d.ts +3 -3
  180. package/src/components/feedback/td-tooltip/content/content.class.d.ts +2 -2
  181. package/src/components/feedback/td-tooltip/content/content.class.js +4 -3
  182. package/src/components/feedback/td-tooltip/content/content.const.d.ts +55 -0
  183. package/src/components/feedback/td-tooltip/content/content.const.js +6 -0
  184. package/src/components/feedback/td-tooltip/content/content.interface.d.ts +19 -3
  185. package/src/components/feedback/td-tooltip/td-tooltip.class.d.ts +5 -3
  186. package/src/components/feedback/td-tooltip/td-tooltip.class.js +84 -9
  187. package/src/components/feedback/td-tooltip/td-tooltip.const.d.ts +77 -0
  188. package/src/components/feedback/td-tooltip/td-tooltip.const.js +9 -0
  189. package/src/components/feedback/td-tooltip/td-tooltip.interface.d.ts +6 -3
  190. package/src/components/feedback/td-tooltip/trigger/trigger.class.d.ts +3 -2
  191. package/src/components/feedback/td-tooltip/trigger/trigger.class.js +56 -3
  192. package/src/components/feedback/td-tooltip/trigger/trigger.const.d.ts +4 -0
  193. package/src/components/feedback/td-tooltip/trigger/trigger.const.js +6 -0
  194. package/src/components/feedback/td-tooltip/trigger/trigger.interface.d.ts +7 -2
  195. package/src/components/form/index.d.ts +17 -16
  196. package/src/components/form/index.js +19 -17
  197. package/src/components/form/td-checkbox/composables/use-checkbox-status.js +1 -1
  198. package/src/components/form/td-checkbox/composables/use-checkbox.js +1 -1
  199. package/src/components/form/td-checkbox/td-checkbox.class.d.ts +18 -3
  200. package/src/components/form/td-checkbox/td-checkbox.class.js +231 -9
  201. package/src/components/form/td-checkbox/td-checkbox.const.d.ts +63 -0
  202. package/src/components/form/td-checkbox/td-checkbox.const.js +88 -0
  203. package/src/components/form/td-checkbox/td-checkbox.interface.d.ts +5 -5
  204. package/src/components/form/td-checkbox/td-checkbox.style.d.ts +9 -0
  205. package/src/components/form/td-checkbox/td-checkbox.style.js +167 -14
  206. package/src/components/form/td-checkbox-button/td-checkbox-button.class.d.ts +9 -3
  207. package/src/components/form/td-checkbox-button/td-checkbox-button.class.js +114 -26
  208. package/src/components/form/td-checkbox-button/td-checkbox-button.interface.d.ts +2 -4
  209. package/src/components/form/td-checkbox-button/td-checkbox-button.style.d.ts +8 -1
  210. package/src/components/form/td-checkbox-button/td-checkbox-button.style.js +89 -12
  211. package/src/components/form/td-checkbox-group/td-checkbox-group.class.d.ts +11 -3
  212. package/src/components/form/td-checkbox-group/td-checkbox-group.class.js +118 -5
  213. package/src/components/form/td-checkbox-group/td-checkbox-group.interface.d.ts +8 -5
  214. package/src/components/form/td-form/td-form.class.d.ts +4 -2
  215. package/src/components/form/td-form/td-form.class.js +9 -5
  216. package/src/components/form/td-form/td-form.interface.d.ts +7 -4
  217. package/src/components/form/td-form-item/td-form-item.class.d.ts +4 -5
  218. package/src/components/form/td-form-item/td-form-item.class.js +34 -27
  219. package/src/components/form/td-form-item/td-form-item.interface.d.ts +3 -3
  220. package/src/components/form/td-input/td-input.class.d.ts +3 -4
  221. package/src/components/form/td-input/td-input.class.js +30 -26
  222. package/src/components/form/td-input/td-input.interface.d.ts +3 -4
  223. package/src/components/form/td-input/widget/suffix.d.ts +1 -0
  224. package/src/components/form/td-input/widget/suffix.js +6 -1
  225. package/src/components/form/td-input/widget/td-input-wrapper.class.js +5 -5
  226. package/src/components/form/td-input/widget/utils.js +8 -8
  227. package/src/components/form/td-option/td-option.class.d.ts +2 -2
  228. package/src/components/form/td-option/td-option.class.js +3 -3
  229. package/src/components/form/td-option/td-option.interface.d.ts +3 -3
  230. package/src/components/form/td-option-group/td-option-group.class.d.ts +2 -2
  231. package/src/components/form/td-option-group/td-option-group.class.js +2 -3
  232. package/src/components/form/td-option-group/td-option-group.interface.d.ts +3 -3
  233. package/src/components/form/td-radio/td-radio.class.d.ts +2 -3
  234. package/src/components/form/td-radio/td-radio.class.js +8 -5
  235. package/src/components/form/td-radio/td-radio.interface.d.ts +3 -3
  236. package/src/components/form/td-radio-button/td-radio-button.class.d.ts +2 -3
  237. package/src/components/form/td-radio-button/td-radio-button.class.js +9 -9
  238. package/src/components/form/td-radio-button/td-radio-button.interface.d.ts +3 -3
  239. package/src/components/form/td-radio-group/td-radio-group.class.d.ts +2 -5
  240. package/src/components/form/td-radio-group/td-radio-group.class.js +14 -11
  241. package/src/components/form/td-radio-group/td-radio-group.interface.d.ts +3 -4
  242. package/src/components/form/td-select/dropdown/dropdown.class.d.ts +2 -2
  243. package/src/components/form/td-select/dropdown/dropdown.class.js +2 -3
  244. package/src/components/form/td-select/dropdown/dropdown.interface.d.ts +3 -4
  245. package/src/components/form/td-select/td-select.class.d.ts +4 -6
  246. package/src/components/form/td-select/td-select.class.js +4 -6
  247. package/src/components/form/td-select/td-select.interface.d.ts +13 -5
  248. package/src/components/form/td-select/td-select.style.d.ts +23 -0
  249. package/src/components/form/td-select/td-select.style.js +170 -1
  250. package/src/components/form/td-switch/td-switch.class.d.ts +2 -3
  251. package/src/components/form/td-switch/td-switch.class.js +2 -3
  252. package/src/components/form/td-switch/td-switch.interface.d.ts +3 -4
  253. package/src/components/form/td-switch/widget/td-switch-core.js +4 -4
  254. package/src/components/navigation/td-affix/td-affix.class.d.ts +2 -3
  255. package/src/components/navigation/td-affix/td-affix.class.js +2 -3
  256. package/src/components/navigation/td-affix/td-affix.interface.d.ts +3 -4
  257. package/src/components/navigation/td-anchor/td-anchor-link/td-anchor-link.class.d.ts +2 -2
  258. package/src/components/navigation/td-anchor/td-anchor-link/td-anchor-link.class.js +2 -3
  259. package/src/components/navigation/td-anchor/td-anchor-link/td-anchor-link.interface.d.ts +3 -4
  260. package/src/components/navigation/td-anchor/td-anchor.class.d.ts +2 -2
  261. package/src/components/navigation/td-anchor/td-anchor.class.js +6 -4
  262. package/src/components/navigation/td-anchor/td-anchor.function.js +1 -1
  263. package/src/components/navigation/td-anchor/td-anchor.interface.d.ts +3 -3
  264. package/src/components/navigation/td-backtop/td-backtop.class.d.ts +5 -6
  265. package/src/components/navigation/td-backtop/td-backtop.class.js +36 -59
  266. package/src/components/navigation/td-backtop/td-backtop.const.d.ts +18 -0
  267. package/src/components/navigation/td-backtop/td-backtop.const.js +21 -0
  268. package/src/components/navigation/td-backtop/td-backtop.interface.d.ts +3 -3
  269. package/src/components/navigation/td-backtop/td-backtop.style.d.ts +2 -0
  270. package/src/components/navigation/td-backtop/td-backtop.style.js +19 -1
  271. package/src/components/navigation/td-backtop/use-backtop.d.ts +2 -3
  272. package/src/components/navigation/td-backtop/use-backtop.js +2 -2
  273. package/src/components/navigation/td-breadcrumb/td-breadcrumb.class.d.ts +3 -3
  274. package/src/components/navigation/td-breadcrumb/td-breadcrumb.class.js +12 -8
  275. package/src/components/navigation/td-breadcrumb/td-breadcrumb.interface.d.ts +3 -4
  276. package/src/components/navigation/td-breadcrumb-item/td-breadcrumb-item.class.d.ts +2 -2
  277. package/src/components/navigation/td-breadcrumb-item/td-breadcrumb-item.class.js +2 -3
  278. package/src/components/navigation/td-breadcrumb-item/td-breadcrumb-item.interface.d.ts +3 -4
  279. package/src/components/navigation/td-menu/td-menu.class.d.ts +2 -2
  280. package/src/components/navigation/td-menu/td-menu.class.js +4 -3
  281. package/src/components/navigation/td-menu/td-menu.interface.d.ts +3 -4
  282. package/src/components/navigation/td-tabs/td-tab-bar.class.d.ts +2 -2
  283. package/src/components/navigation/td-tabs/td-tab-bar.class.js +3 -3
  284. package/src/components/navigation/td-tabs/td-tab-bar.interface.d.ts +3 -3
  285. package/src/components/navigation/td-tabs/td-tab-nav.class.d.ts +2 -3
  286. package/src/components/navigation/td-tabs/td-tab-nav.class.js +3 -4
  287. package/src/components/navigation/td-tabs/td-tab-nav.interface.d.ts +3 -3
  288. package/src/components/navigation/td-tabs/td-tab-pane.class.d.ts +2 -3
  289. package/src/components/navigation/td-tabs/td-tab-pane.class.js +12 -16
  290. package/src/components/navigation/td-tabs/td-tab-pane.interface.d.ts +3 -4
  291. package/src/components/navigation/td-tabs/td-tabs.class.d.ts +2 -2
  292. package/src/components/navigation/td-tabs/td-tabs.class.js +6 -4
  293. package/src/components/navigation/td-tabs/td-tabs.interface.d.ts +3 -3
  294. package/src/components/others/example/example-source-wrapper.js +2 -1
  295. package/src/components/others/td-divider/td-divider.class.d.ts +2 -2
  296. package/src/components/others/td-divider/td-divider.class.js +2 -3
  297. package/src/components/others/td-divider/td-divider.interface.d.ts +3 -3
  298. package/src/constants/aria.d.ts +17 -0
  299. package/src/constants/aria.js +20 -0
  300. package/src/hooks/index.d.ts +1 -0
  301. package/src/hooks/index.js +1 -0
  302. package/src/hooks/use-delayed-toggle.d.ts +23 -0
  303. package/src/hooks/use-delayed-toggle.js +52 -0
  304. package/src/styles/var.d.ts +2 -16
  305. package/src/styles/var.js +7 -17
  306. package/src/utils/dom/event.d.ts +6 -0
  307. package/src/utils/dom/event.js +17 -0
  308. package/src/ui/ui.abstract.d.ts +0 -18
  309. package/src/ui/ui.abstract.js +0 -50
  310. package/src/ui/ui.interface.d.ts +0 -12
  311. package/src/ui/ui.interface.js +0 -2
@@ -1,10 +1,11 @@
1
- import { IUI, IUIConfig } from '../../../ui/ui.interface';
2
- import { IJsonData, IPrimitive, XProxy } from '@type-dom/framework';
1
+ import { AnyFn, IJsonData, IPrimitive, ITypeConfig, ITypeDiv, XProxy } from '@type-dom/framework';
3
2
  import { ISize } from '../../../styles/size';
4
- export interface ITdSelect extends IUI {
3
+ import { TdIcon } from '../../basic';
4
+ import { CheckboxValueType } from '../td-checkbox/td-checkbox.interface';
5
+ export interface ITdSelect extends ITypeDiv {
5
6
  className: 'TdSelect';
6
7
  }
7
- export interface ITdSelectConfig extends IUIConfig {
8
+ export interface ITdSelectConfig extends ITypeConfig {
8
9
  /**
9
10
  * @description the name attribute of select input
10
11
  */
@@ -17,7 +18,7 @@ export interface ITdSelectConfig extends IUIConfig {
17
18
  * @description binding value
18
19
  * default: undefined,
19
20
  */
20
- modelValue?: IPrimitive | XProxy<IJsonData>;
21
+ modelValue?: IPrimitive | object | CheckboxValueType[] | XProxy<IJsonData>;
21
22
  /**
22
23
  * @description the autocomplete attribute of select input
23
24
  * default: 'off',
@@ -83,9 +84,11 @@ export interface ITdSelectConfig extends IUIConfig {
83
84
  /**
84
85
  * @description custom remote search method
85
86
  */
87
+ remoteMethod?: AnyFn;
86
88
  /**
87
89
  * @description custom filter method
88
90
  */
91
+ filterMethod?: AnyFn;
89
92
  /**
90
93
  * @description whether multiple-select is activated
91
94
  */
@@ -136,18 +139,23 @@ export interface ITdSelectConfig extends IUIConfig {
136
139
  persistent?: boolean;
137
140
  /**
138
141
  * @description custom clear icon component
142
+ * default: CircleClose,
139
143
  */
144
+ clearIcon?: TdIcon;
140
145
  /**
141
146
  * @description whether the width of the dropdown is the same as the input
142
147
  */
143
148
  fitInputWidth?: boolean;
144
149
  /**
145
150
  * @description custom suffix icon component
151
+ * default: ArrowDown,
146
152
  */
153
+ suffixIcon?: TdIcon;
147
154
  /**
148
155
  * @description tag type
149
156
  * default: 'info'
150
157
  */
158
+ tagType?: string;
151
159
  /**
152
160
  * @description whether to trigger form validation
153
161
  * default: true,
@@ -1,3 +1,5 @@
1
+ import { IStyle } from '@type-dom/css-type';
2
+ import { ITdSelectConfig } from './td-select.interface';
1
3
  export declare const $select: {
2
4
  borderColorHover: string;
3
5
  disabledColor: string;
@@ -5,6 +7,8 @@ export declare const $select: {
5
7
  fontSize: string;
6
8
  closeHoverColor: string;
7
9
  inputColor: string;
10
+ multipleInputColor: string;
11
+ inputFocusBorderColor: string;
8
12
  inputFontSize: string;
9
13
  width: string;
10
14
  };
@@ -51,3 +55,22 @@ export declare const $selectItemHeight: {
51
55
  default: string;
52
56
  small: string;
53
57
  };
58
+ export declare const $selectStyle: IStyle;
59
+ export declare function mixInputBorder($color: string): {
60
+ boxShadow: string;
61
+ };
62
+ export declare const $selectWrapperStyle: IStyle;
63
+ export declare const $selectPrefixStyle: IStyle;
64
+ export declare const $selectSuffixStyle: IStyle;
65
+ export declare const $selectCaretStyle: IStyle;
66
+ export declare const $selectSelectionStyle: IStyle;
67
+ export declare const $selectedItemStyle: IStyle;
68
+ export declare const $selectTagTextStyle: IStyle;
69
+ export declare const $selectPlaceholderStyle: IStyle;
70
+ export declare const $selectPopperStyle: IStyle;
71
+ export declare const $selectInputWrapperStyle: IStyle;
72
+ export declare const $selectInputStyle: IStyle;
73
+ export declare const $selectInputCalculatorStyle: IStyle;
74
+ export declare function useSelectStyle(params: ITdSelectConfig): void;
75
+ export declare function useDisabled(params: ITdSelectConfig): void;
76
+ export declare function useSize(params: ITdSelectConfig): void;
@@ -1,8 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.$selectItemHeight = exports.$selectItemGap = exports.$selectNearMarginLeft = exports.$selectWrapperPadding = exports.$selectDropdown = exports.$selectGroup = exports.$selectOption = exports.$select = void 0;
3
+ exports.$selectInputCalculatorStyle = exports.$selectInputStyle = exports.$selectInputWrapperStyle = exports.$selectPopperStyle = exports.$selectPlaceholderStyle = exports.$selectTagTextStyle = exports.$selectedItemStyle = exports.$selectSelectionStyle = exports.$selectCaretStyle = exports.$selectSuffixStyle = exports.$selectPrefixStyle = exports.$selectWrapperStyle = exports.$selectStyle = exports.$selectItemHeight = exports.$selectItemGap = exports.$selectNearMarginLeft = exports.$selectWrapperPadding = exports.$selectDropdown = exports.$selectGroup = exports.$selectOption = exports.$select = void 0;
4
+ exports.mixInputBorder = mixInputBorder;
5
+ exports.useSelectStyle = useSelectStyle;
6
+ exports.useDisabled = useDisabled;
7
+ exports.useSize = useSize;
4
8
  // Select
5
9
  const var_1 = require("../../../styles/var");
10
+ const td_input_style_1 = require("../td-input/td-input.style");
11
+ const transition_1 = require("../../../styles/transition");
6
12
  exports.$select = {
7
13
  // borderColorHover: getCssVar('border-color-hover'),
8
14
  borderColorHover: var_1.$borderColorHover,
@@ -17,7 +23,9 @@ exports.$select = {
17
23
  // inputColor: getCssVar('text-color-placeholder'),
18
24
  inputColor: var_1.$textColor.placeholder,
19
25
  // multipleInputColor: getCssVar('text-color-regular'),
26
+ multipleInputColor: var_1.$textColor.regular,
20
27
  // inputFocusBorderColor: getCssVar('color-primary'),
28
+ inputFocusBorderColor: var_1.$colorPrimary,
21
29
  inputFontSize: '14px',
22
30
  width: '100%'
23
31
  };
@@ -74,3 +82,164 @@ exports.$selectItemHeight = {
74
82
  default: '24px',
75
83
  small: '20px'
76
84
  };
85
+ exports.$selectStyle = {
86
+ display: 'inline-block',
87
+ position: 'relative',
88
+ verticalAlign: 'middle',
89
+ // width: getCssVar('select-width'),
90
+ width: exports.$select.width
91
+ };
92
+ function mixInputBorder($color) {
93
+ return {
94
+ boxShadow: '0 0 0 1px ' + $color + 'inset'
95
+ };
96
+ }
97
+ exports.$selectWrapperStyle = Object.assign({ display: 'flex', alignItems: 'center', position: 'relative', boxSizing: 'border-box', cursor: 'pointer', textAlign: 'left',
98
+ // font-size: map.get($input-font-size, 'default'),
99
+ fontSize: td_input_style_1.$inputFontSize.default,
100
+ // padding: map.get($select-wrapper-padding, 'default'),
101
+ padding: exports.$selectWrapperPadding.default,
102
+ // gap: map.get($select-item-gap, 'default'),
103
+ gap: exports.$selectItemGap.default,
104
+ // min-height: map.get($input-height, 'default'),
105
+ minHeight: td_input_style_1.$inputHeight.default,
106
+ // line-height: map.get($select-item-height, 'default'),
107
+ lineHeight: exports.$selectItemHeight.default,
108
+ // border-radius: getCssVar('border-radius-base'),
109
+ borderRadius: var_1.$borderRadius.base,
110
+ // background-color: getCssVar('fill-color', 'blank'),
111
+ backgroundColor: var_1.$fillColor.blank,
112
+ // transition: getCssVar('transition', 'duration'),
113
+ transition: transition_1.$transitionDuration.default, transform: 'translate3d(0, 0, 0)' }, mixInputBorder(var_1.$borderColor.base));
114
+ exports.$selectPrefixStyle = {
115
+ display: 'flex',
116
+ alignItems: 'center',
117
+ flexShrink: 0,
118
+ // gap: map.get($select-item-gap, 'default'),
119
+ gap: exports.$selectItemGap.default,
120
+ // color: var(
121
+ // #{getCssVarName('input-icon-color')},
122
+ // map.get($input, 'icon-color')
123
+ // );
124
+ color: td_input_style_1.$input.iconColor
125
+ };
126
+ exports.$selectSuffixStyle = {
127
+ display: 'flex',
128
+ alignItems: 'center',
129
+ flexShrink: 0,
130
+ // gap: map.get($select-item-gap, 'default'),
131
+ gap: exports.$selectItemGap.default,
132
+ // color: var(
133
+ // #{getCssVarName('input-icon-color')},
134
+ // map.get($input, 'icon-color')
135
+ // );
136
+ color: td_input_style_1.$input.iconColor
137
+ };
138
+ exports.$selectCaretStyle = {
139
+ // color: getCssVar('select-input-color'),
140
+ color: exports.$select.inputColor,
141
+ // font-size: getCssVar('select-input-font-size'),
142
+ fontSize: exports.$select.inputFontSize,
143
+ // transition: getCssVar('transition', 'duration'),
144
+ transition: transition_1.$transitionDuration.default,
145
+ transform: 'rotateZ(0deg)',
146
+ cursor: 'pointer'
147
+ };
148
+ exports.$selectSelectionStyle = {
149
+ position: 'relative',
150
+ display: 'flex',
151
+ flexWrap: 'wrap',
152
+ alignItems: 'center',
153
+ flex: 1,
154
+ minWidth: 0,
155
+ // gap: map.get($select-item-gap, 'default'),
156
+ gap: exports.$selectItemGap.default
157
+ };
158
+ exports.$selectedItemStyle = {
159
+ display: 'flex',
160
+ flexWrap: 'wrap',
161
+ userSelect: 'none'
162
+ };
163
+ exports.$selectTagTextStyle = {
164
+ display: 'block',
165
+ lineHeight: 'normal',
166
+ // @include utils-ellipsis,
167
+ overflow: 'hidden',
168
+ textOverflow: 'ellipsis',
169
+ whiteSpace: 'nowrap'
170
+ };
171
+ exports.$selectPlaceholderStyle = {
172
+ position: 'absolute',
173
+ display: 'block',
174
+ top: '50%',
175
+ transform: 'translateY(-50%)',
176
+ width: '100%',
177
+ // @include utils-ellipsis;
178
+ overflow: 'hidden',
179
+ textOverflow: 'ellipsis',
180
+ whiteSpace: 'nowrap',
181
+ // color: var(
182
+ // #{getCssVarName('input-text-color')},
183
+ // map.get($input, 'text-color')
184
+ // );
185
+ color: td_input_style_1.$input.textColor
186
+ };
187
+ exports.$selectPopperStyle = {
188
+ // @include picker-popper(
189
+ // map.get($select-dropdown, 'bg-color'),
190
+ // map.get($select-dropdown, 'border'),
191
+ // map.get($select-dropdown, 'shadow')
192
+ // );
193
+ backgroundColor: exports.$selectDropdown.bgColor,
194
+ border: exports.$selectDropdown.border,
195
+ boxShadow: exports.$selectDropdown.shadow
196
+ };
197
+ exports.$selectInputWrapperStyle = {
198
+ maxWidth: '100%'
199
+ };
200
+ exports.$selectInputStyle = {
201
+ border: 'none',
202
+ outline: 'none',
203
+ padding: 0,
204
+ // color: getCssVar('select-multiple-input-color'),
205
+ color: exports.$select.multipleInputColor,
206
+ fontSize: 'inherit',
207
+ fontFamily: 'inherit',
208
+ appearance: 'none',
209
+ // height: map.get($select-item-height, 'default'),
210
+ height: exports.$selectItemHeight.default,
211
+ maxWidth: '100%',
212
+ backgroundColor: 'transparent'
213
+ };
214
+ exports.$selectInputCalculatorStyle = {
215
+ position: 'absolute',
216
+ left: 0,
217
+ top: 0,
218
+ maxWidth: '100%',
219
+ visibility: 'hidden',
220
+ whiteSpace: 'pre',
221
+ overflow: 'hidden'
222
+ };
223
+ function useSelectStyle(params) {
224
+ useSize(params);
225
+ useDisabled(params);
226
+ }
227
+ function useDisabled(params) {
228
+ const disabled = params.disabled;
229
+ if (disabled) {
230
+ }
231
+ else {
232
+ }
233
+ }
234
+ function useSize(params) {
235
+ const size = params.size || 'default';
236
+ exports.$selectWrapperStyle.gap = exports.$selectItemGap[size];
237
+ exports.$selectWrapperStyle.padding = exports.$selectWrapperPadding[size];
238
+ exports.$selectWrapperStyle.minHeight = exports.$selectItemHeight[size];
239
+ exports.$selectWrapperStyle.lineHeight = exports.$selectItemHeight[size];
240
+ exports.$selectWrapperStyle.fontSize = td_input_style_1.$inputFontSize[size];
241
+ exports.$selectSelectionStyle.gap = exports.$selectItemGap[size];
242
+ exports.$selectPrefixStyle.gap = exports.$selectItemGap[size];
243
+ exports.$selectSuffixStyle.gap = exports.$selectItemGap[size];
244
+ exports.$selectInputStyle.height = exports.$selectItemHeight[size];
245
+ }
@@ -1,7 +1,6 @@
1
- import { Input } from '@type-dom/framework';
2
- import { UI } from '../../../ui/ui.abstract';
1
+ import { Input, TypeDiv } from '@type-dom/framework';
3
2
  import { ITdSwitch, ITdSwitchConfig } from './td-switch.interface';
4
- export declare class TdSwitch extends UI implements ITdSwitch {
3
+ export declare class TdSwitch extends TypeDiv implements ITdSwitch {
5
4
  className: 'TdSwitch';
6
5
  props: ITdSwitchConfig;
7
6
  input: Input;
@@ -3,17 +3,16 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.TdSwitch = void 0;
4
4
  const utils_1 = require("@type-dom/utils");
5
5
  const framework_1 = require("@type-dom/framework");
6
- const ui_abstract_1 = require("../../../ui/ui.abstract");
7
6
  const var_1 = require("../../../styles/var");
8
7
  const event_1 = require("../../../constants/event");
9
8
  const td_switch_core_1 = require("./widget/td-switch-core");
10
9
  const td_switch_left_1 = require("./widget/td-switch-left");
11
10
  const td_switch_right_1 = require("./widget/td-switch-right");
12
11
  const td_switch_style_1 = require("./td-switch.style");
13
- class TdSwitch extends ui_abstract_1.UI {
12
+ class TdSwitch extends framework_1.TypeDiv {
14
13
  constructor(params = {}) {
15
14
  var _a, _b, _c, _d, _e, _f, _g, _h, _j;
16
- super(params);
15
+ super();
17
16
  this.className = 'TdSwitch';
18
17
  this.style.addObj({
19
18
  display: 'inline-flex',
@@ -1,10 +1,9 @@
1
- import { TypeSvgSvg } from '@type-dom/framework';
2
- import { IUI, IUIConfig } from '../../../ui/ui.interface';
1
+ import { ITypeConfig, ITypeDiv, TypeSvgSvg } from '@type-dom/framework';
3
2
  import { CHANGE_EVENT, INPUT_EVENT, UPDATE_MODEL_EVENT } from '../../../constants/event';
4
- export interface ITdSwitch extends IUI {
3
+ export interface ITdSwitch extends ITypeDiv {
5
4
  className: 'TdSwitch';
6
5
  }
7
- export interface ITdSwitchConfig extends IUIConfig {
6
+ export interface ITdSwitchConfig extends ITypeConfig {
8
7
  /**
9
8
  * @description binding value, it should be equivalent to either `active-value` or `inactive-value`, by default it's `boolean` type
10
9
  * default: false
@@ -28,9 +28,9 @@ class TdSwitchCore extends framework_1.TypeSpan {
28
28
  // transition: border-color var(--el-transition-duration), background-color var(--el-transition-duration);
29
29
  transition: var_1.$borderColor.base +
30
30
  ' ' +
31
- var_1.$transitionDuration +
31
+ var_1.$transitionDurationDefault +
32
32
  ', background-color ' +
33
- var_1.$transitionDuration,
33
+ var_1.$transitionDurationDefault,
34
34
  // minWidth: map.get($switch-core-width, 'default');
35
35
  minWidth: td_switch_style_1.$switchCoreWidth[(params === null || params === void 0 ? void 0 : params.size) || 'default'],
36
36
  // height: map.get($switch-core-height, 'default');
@@ -42,7 +42,7 @@ class TdSwitchCore extends framework_1.TypeSpan {
42
42
  styleObj: {
43
43
  width: '100%',
44
44
  // transition: all getCssVar('transition-duration'),
45
- transition: 'all ' + var_1.$transitionDuration,
45
+ transition: 'all ' + var_1.$transitionDurationDefault,
46
46
  // height: map.get($switch-button-size, 'default'),
47
47
  height: td_switch_style_1.$switchButtonSize[(params === null || params === void 0 ? void 0 : params.size) || 'default'],
48
48
  display: 'flex',
@@ -108,7 +108,7 @@ class TdSwitchCore extends framework_1.TypeSpan {
108
108
  // borderRadius: var(--el-border-radius-circle),
109
109
  borderRadius: var_1.$borderRadius.circle,
110
110
  // transition: all var(--el-transition-duration),
111
- transition: 'all ' + var_1.$transitionDuration,
111
+ transition: 'all ' + var_1.$transitionDurationDefault,
112
112
  width: td_switch_style_1.$switchButtonSize[(params === null || params === void 0 ? void 0 : params.size) || 'default'],
113
113
  // width: map.get($switch-button-size, 'default');
114
114
  height: td_switch_style_1.$switchButtonSize[(params === null || params === void 0 ? void 0 : params.size) || 'default'],
@@ -1,8 +1,7 @@
1
- import { TypeNode } from '@type-dom/framework';
2
- import { UI } from '../../../ui/ui.abstract';
1
+ import { TypeDiv, TypeNode } from '@type-dom/framework';
3
2
  import { ITdAffix, ITdAffixConfig } from './td-affix.interface';
4
3
  import { IStyle } from '@type-dom/css-type';
5
- export declare class TdAffix extends UI implements ITdAffix {
4
+ export declare class TdAffix extends TypeDiv implements ITdAffix {
6
5
  className: 'TdAffix';
7
6
  props: ITdAffixConfig;
8
7
  private affix;
@@ -3,10 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.TdAffix = void 0;
4
4
  const utils_1 = require("@type-dom/utils");
5
5
  const framework_1 = require("@type-dom/framework");
6
- const ui_abstract_1 = require("../../../ui/ui.abstract");
7
- class TdAffix extends ui_abstract_1.UI {
6
+ class TdAffix extends framework_1.TypeDiv {
8
7
  constructor(params = {}) {
9
- super(params);
8
+ super();
10
9
  this.onScroll = () => {
11
10
  console.log('this.scrollContainer scroll . ');
12
11
  // if (this.fixed) {
@@ -1,9 +1,8 @@
1
- import { IUI, IUIConfig } from '../../../ui/ui.interface';
2
- import { IJsonData, XProxy } from '@type-dom/framework';
3
- export interface ITdAffix extends IUI {
1
+ import { IJsonData, ITypeConfig, ITypeDiv, XProxy } from '@type-dom/framework';
2
+ export interface ITdAffix extends ITypeDiv {
4
3
  className: 'TdAffix';
5
4
  }
6
- export interface ITdAffixConfig extends IUIConfig {
5
+ export interface ITdAffixConfig extends ITypeConfig {
7
6
  /**
8
7
  * @description affix element zIndex value
9
8
  * default: 100,
@@ -1,6 +1,6 @@
1
- import { UI } from '../../../../ui/ui.abstract';
1
+ import { TypeDiv } from '@type-dom/framework';
2
2
  import { ITdAnchorLink, ITdAnchorLinkConfig } from './td-anchor-link.interface';
3
- export declare class TdAnchorLink extends UI implements ITdAnchorLink {
3
+ export declare class TdAnchorLink extends TypeDiv implements ITdAnchorLink {
4
4
  className: 'TdAnchorLink';
5
5
  private href;
6
6
  private list?;
@@ -2,10 +2,9 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.TdAnchorLink = void 0;
4
4
  const framework_1 = require("@type-dom/framework");
5
- const ui_abstract_1 = require("../../../../ui/ui.abstract");
6
- class TdAnchorLink extends ui_abstract_1.UI {
5
+ class TdAnchorLink extends framework_1.TypeDiv {
7
6
  constructor(params = {}) {
8
- super(params);
7
+ super();
9
8
  this.className = 'TdAnchorLink';
10
9
  this.href = new framework_1.A({
11
10
  text: (params === null || params === void 0 ? void 0 : params.title) || '',
@@ -1,9 +1,8 @@
1
- import { IUI, IUIConfig } from '../../../../ui/ui.interface';
2
- import { TypeElement } from '@type-dom/framework';
3
- export interface ITdAnchorLink extends IUI {
1
+ import { ITypeConfig, ITypeDiv, TypeElement } from '@type-dom/framework';
2
+ export interface ITdAnchorLink extends ITypeDiv {
4
3
  className: 'TdAnchorLink';
5
4
  }
6
- export interface ITdAnchorLinkConfig extends IUIConfig {
5
+ export interface ITdAnchorLinkConfig extends ITypeConfig {
7
6
  /**
8
7
  * @description the text content of the anchor link
9
8
  */
@@ -1,6 +1,6 @@
1
- import { UI } from '../../../ui/ui.abstract';
1
+ import { TypeDiv } from '@type-dom/framework';
2
2
  import { ITdAnchor, ITdAnchorConfig } from './td-anchor.interface';
3
- export declare class TdAnchor extends UI implements ITdAnchor {
3
+ export declare class TdAnchor extends TypeDiv implements ITdAnchor {
4
4
  className: 'TdAnchor';
5
5
  props: ITdAnchorConfig;
6
6
  private marker?;
@@ -2,15 +2,17 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.TdAnchor = void 0;
4
4
  const framework_1 = require("@type-dom/framework");
5
- const ui_abstract_1 = require("../../../ui/ui.abstract");
6
5
  const td_anchor_style_1 = require("./td-anchor.style");
7
6
  const td_anchor_function_1 = require("./td-anchor.function");
8
- class TdAnchor extends ui_abstract_1.UI {
7
+ class TdAnchor extends framework_1.TypeDiv {
9
8
  constructor(params = {}) {
10
9
  var _a, _b, _c, _d;
11
- super(params);
10
+ super();
12
11
  this.className = 'TdAnchor';
13
- this.style.addObj({
12
+ this.attr.setObj({
13
+ name: 'td-anchor'
14
+ });
15
+ this.style.setObj({
14
16
  position: 'relative',
15
17
  // background-color: getCssVar('anchor-bg-color')
16
18
  backgroundColor: td_anchor_style_1.$anchor.bgColor.default
@@ -7,7 +7,7 @@ const currentAnchor = (0, framework_1.createProxy)(null);
7
7
  const containerEl = (0, framework_1.createProxy)(null); // ref<HTMLElement | Window>()
8
8
  const links = {};
9
9
  let isScrolling = false;
10
- let currentScrollTop = 0;
10
+ const currentScrollTop = 0;
11
11
  const addLink = (state) => {
12
12
  links[state.href] = state.el;
13
13
  };
@@ -1,8 +1,8 @@
1
- import { IUI, IUIConfig } from '../../../ui/ui.interface';
2
- export interface ITdAnchor extends IUI {
1
+ import { ITypeConfig, ITypeDiv } from '@type-dom/framework';
2
+ export interface ITdAnchor extends ITypeDiv {
3
3
  className: 'TdAnchor';
4
4
  }
5
- export interface ITdAnchorConfig extends IUIConfig {
5
+ export interface ITdAnchorConfig extends ITypeConfig {
6
6
  /**
7
7
  * @description scroll container
8
8
  */
@@ -1,19 +1,18 @@
1
- import { TypeNode } from '@type-dom/framework';
2
- import { UI } from '../../../ui/ui.abstract';
1
+ import { Transition, TypeFragment, TypeNode } from '@type-dom/framework';
3
2
  import { ITdBackTop, ITdBackTopConfig } from './td-backtop.interface';
4
- export declare class TdBackTop extends UI implements ITdBackTop {
3
+ export declare class TdBackTop extends TypeFragment implements ITdBackTop {
5
4
  className: 'TdBackTop';
5
+ content: Transition;
6
6
  props: ITdBackTopConfig;
7
7
  static initCalled: boolean;
8
8
  private container;
9
- private el;
9
+ private target;
10
10
  private visible;
11
- private transition;
12
11
  private division;
13
12
  constructor(params?: ITdBackTopConfig);
14
13
  mounted(): void;
15
14
  destroy(root?: TypeNode): void;
16
15
  throttleScroll: () => void;
17
- handleScroll: () => void;
16
+ handleScroll: (target?: any, event?: MouseEvent) => void;
18
17
  handleClick(): void;
19
18
  }