@dineug/erd-editor 3.0.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 (306) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +337 -0
  3. package/dist/components/appContext.d.ts +22 -0
  4. package/dist/components/customElementRegistry.d.ts +1 -0
  5. package/dist/components/erd/Erd.d.ts +6 -0
  6. package/dist/components/erd/Erd.styles.d.ts +1 -0
  7. package/dist/components/erd/automatic-table-placement/AutomaticTablePlacement.d.ts +14 -0
  8. package/dist/components/erd/automatic-table-placement/AutomaticTablePlacement.styles.d.ts +2 -0
  9. package/dist/components/erd/automatic-table-placement/createAutomaticTablePlacement.d.ts +11 -0
  10. package/dist/components/erd/canvas/Canvas.d.ts +7 -0
  11. package/dist/components/erd/canvas/Canvas.styles.d.ts +1 -0
  12. package/dist/components/erd/canvas/canvas-svg/CanvasSvg.d.ts +7 -0
  13. package/dist/components/erd/canvas/canvas-svg/CanvasSvg.styles.d.ts +1 -0
  14. package/dist/components/erd/canvas/canvas-svg/relationship/Relationship.d.ts +8 -0
  15. package/dist/components/erd/canvas/canvas-svg/relationship/Relationship.template.d.ts +3 -0
  16. package/dist/components/erd/canvas/draw-relationship/DrawRelationship.d.ts +8 -0
  17. package/dist/components/erd/canvas/draw-relationship/DrawRelationship.styles.d.ts +1 -0
  18. package/dist/components/erd/canvas/high-level-table/HighLevelTable.d.ts +7 -0
  19. package/dist/components/erd/canvas/high-level-table/HighLevelTable.styles.d.ts +1 -0
  20. package/dist/components/erd/canvas/memo/Memo.d.ts +7 -0
  21. package/dist/components/erd/canvas/memo/Memo.styles.d.ts +6 -0
  22. package/dist/components/erd/canvas/memo/memo-sash/MemoSash.d.ts +9 -0
  23. package/dist/components/erd/canvas/table/Table.d.ts +7 -0
  24. package/dist/components/erd/canvas/table/Table.styles.d.ts +5 -0
  25. package/dist/components/erd/canvas/table/column/Column.d.ts +29 -0
  26. package/dist/components/erd/canvas/table/column/Column.styles.d.ts +2 -0
  27. package/dist/components/erd/canvas/table/column/column-data-type/ColumnDataType.d.ts +16 -0
  28. package/dist/components/erd/canvas/table/column/column-data-type/ColumnDataType.styles.d.ts +3 -0
  29. package/dist/components/erd/canvas/table/column/column-key/ColumnKey.d.ts +6 -0
  30. package/dist/components/erd/canvas/table/column/column-key/ColumnKey.styles.d.ts +1 -0
  31. package/dist/components/erd/canvas/table/column/column-not-null/ColumnNotNull.d.ts +7 -0
  32. package/dist/components/erd/canvas/table/column/column-not-null/ColumnNotNull.styles.d.ts +1 -0
  33. package/dist/components/erd/canvas/table/column/column-option/ColumnOption.d.ts +11 -0
  34. package/dist/components/erd/canvas/table/column/column-option/ColumnOption.styles.d.ts +1 -0
  35. package/dist/components/erd/canvas/table/useFocusTable.d.ts +7 -0
  36. package/dist/components/erd/canvas/table/useMoveTable.d.ts +6 -0
  37. package/dist/components/erd/drag-select/DragSelect.d.ts +9 -0
  38. package/dist/components/erd/drag-select/DragSelect.styles.d.ts +1 -0
  39. package/dist/components/erd/erd-context-menu/ErdContextMenu.d.ts +17 -0
  40. package/dist/components/erd/erd-context-menu/menus/databaseMenus.d.ts +12 -0
  41. package/dist/components/erd/erd-context-menu/menus/drawRelationshipMenus.d.ts +16 -0
  42. package/dist/components/erd/erd-context-menu/menus/exportMenus.d.ts +9 -0
  43. package/dist/components/erd/erd-context-menu/menus/importMenus.d.ts +9 -0
  44. package/dist/components/erd/erd-context-menu/menus/relationshipMenus.d.ts +7 -0
  45. package/dist/components/erd/erd-context-menu/menus/showMenus.d.ts +6 -0
  46. package/dist/components/erd/erdShortcutPerformCheck.d.ts +3 -0
  47. package/dist/components/erd/hide-sign/HideSign.d.ts +6 -0
  48. package/dist/components/erd/hide-sign/HideSign.styles.d.ts +1 -0
  49. package/dist/components/erd/minimap/Minimap.d.ts +4 -0
  50. package/dist/components/erd/minimap/Minimap.styles.d.ts +3 -0
  51. package/dist/components/erd/minimap/memo/Memo.d.ts +7 -0
  52. package/dist/components/erd/minimap/table/Table.d.ts +7 -0
  53. package/dist/components/erd/minimap/useMinimapScroll.d.ts +7 -0
  54. package/dist/components/erd/minimap/viewport/Viewport.d.ts +6 -0
  55. package/dist/components/erd/minimap/viewport/Viewport.styles.d.ts +1 -0
  56. package/dist/components/erd/table-properties/TableProperties.d.ts +9 -0
  57. package/dist/components/erd/table-properties/TableProperties.styles.d.ts +6 -0
  58. package/dist/components/erd/table-properties/table-properties-indexes/TablePropertiesIndexes.d.ts +6 -0
  59. package/dist/components/erd/table-properties/table-properties-indexes/TablePropertiesIndexes.styles.d.ts +3 -0
  60. package/dist/components/erd/table-properties/table-properties-indexes/indexes-checkbox-column/IndexesCheckboxColumn.d.ts +8 -0
  61. package/dist/components/erd/table-properties/table-properties-indexes/indexes-checkbox-column/IndexesCheckboxColumn.styles.d.ts +1 -0
  62. package/dist/components/erd/table-properties/table-properties-indexes/indexes-column/IndexesColumn.d.ts +7 -0
  63. package/dist/components/erd/table-properties/table-properties-indexes/indexes-column/IndexesColumn.styles.d.ts +3 -0
  64. package/dist/components/erd/table-properties/table-properties-indexes/indexes-index/IndexesIndex.d.ts +9 -0
  65. package/dist/components/erd/table-properties/table-properties-indexes/indexes-index/IndexesIndex.styles.d.ts +4 -0
  66. package/dist/components/erd/table-properties/table-properties-tabs/TablePropertiesTabs.d.ts +14 -0
  67. package/dist/components/erd/table-properties/table-properties-tabs/TablePropertiesTabs.styles.d.ts +2 -0
  68. package/dist/components/erd/useErdShortcut.d.ts +2 -0
  69. package/dist/components/erd-editor/ErdEditor.d.ts +26 -0
  70. package/dist/components/erd-editor/ErdEditor.stories.d.ts +18 -0
  71. package/dist/components/erd-editor/ErdEditor.styles.d.ts +2 -0
  72. package/dist/components/erd-editor/useErdEditorAttachElement.d.ts +21 -0
  73. package/dist/components/generator-code/GeneratorCode.d.ts +7 -0
  74. package/dist/components/generator-code/GeneratorCode.styles.d.ts +1 -0
  75. package/dist/components/generator-code/generator-code-context-menu/GeneratorCodeContextMenu.d.ts +6 -0
  76. package/dist/components/generator-code/generator-code-context-menu/menus/columnNameCaseMenus.d.ts +12 -0
  77. package/dist/components/generator-code/generator-code-context-menu/menus/languageMenus.d.ts +12 -0
  78. package/dist/components/generator-code/generator-code-context-menu/menus/tableNameCaseMenus.d.ts +12 -0
  79. package/dist/components/global-styles/GlobalStyles.d.ts +4 -0
  80. package/dist/components/primitives/button/Button.d.ts +9 -0
  81. package/dist/components/primitives/button/Button.stories.d.ts +26 -0
  82. package/dist/components/primitives/button/Button.styles.d.ts +6 -0
  83. package/dist/components/primitives/code-block/CodeBlock.d.ts +10 -0
  84. package/dist/components/primitives/code-block/CodeBlock.stories.d.ts +25 -0
  85. package/dist/components/primitives/code-block/CodeBlock.styles.d.ts +3 -0
  86. package/dist/components/primitives/color-picker/ColorPicker.d.ts +12 -0
  87. package/dist/components/primitives/color-picker/ColorPicker.stories.d.ts +26 -0
  88. package/dist/components/primitives/color-picker/ColorPicker.styles.d.ts +1 -0
  89. package/dist/components/primitives/context-menu/ContextMenu.d.ts +10 -0
  90. package/dist/components/primitives/context-menu/ContextMenu.stories.d.ts +16 -0
  91. package/dist/components/primitives/context-menu/context-menu-content/ContextMenuContent.d.ts +9 -0
  92. package/dist/components/primitives/context-menu/context-menu-content/ContextMenuContent.styles.d.ts +1 -0
  93. package/dist/components/primitives/context-menu/context-menu-item/ContextMenuItem.d.ts +8 -0
  94. package/dist/components/primitives/context-menu/context-menu-item/ContextMenuItem.styles.d.ts +1 -0
  95. package/dist/components/primitives/context-menu/context-menu-root/ContextMenuRoot.d.ts +6 -0
  96. package/dist/components/primitives/context-menu/context-menu-root/contextMenuRootContext.d.ts +22 -0
  97. package/dist/components/primitives/context-menu/menu/Menu.d.ts +8 -0
  98. package/dist/components/primitives/context-menu/menu/Menu.styles.d.ts +3 -0
  99. package/dist/components/primitives/edit-input/EditInput.d.ts +16 -0
  100. package/dist/components/primitives/edit-input/EditInput.stories.d.ts +36 -0
  101. package/dist/components/primitives/edit-input/EditInput.styles.d.ts +4 -0
  102. package/dist/components/primitives/highlighted-text/HighlightedText.d.ts +8 -0
  103. package/dist/components/primitives/highlighted-text/HighlightedText.stories.d.ts +23 -0
  104. package/dist/components/primitives/highlighted-text/HighlightedText.styles.d.ts +1 -0
  105. package/dist/components/primitives/icon/Icon.d.ts +14 -0
  106. package/dist/components/primitives/icon/Icon.stories.d.ts +8 -0
  107. package/dist/components/primitives/icon/Icon.styles.d.ts +2 -0
  108. package/dist/components/primitives/icon/icons.d.ts +29 -0
  109. package/dist/components/primitives/kbd/Kbd.d.ts +7 -0
  110. package/dist/components/primitives/kbd/Kbd.stories.d.ts +17 -0
  111. package/dist/components/primitives/kbd/Kbd.styles.d.ts +3 -0
  112. package/dist/components/primitives/sash/Sash.d.ts +27 -0
  113. package/dist/components/primitives/sash/Sash.stories.d.ts +30 -0
  114. package/dist/components/primitives/sash/Sash.styles.d.ts +2 -0
  115. package/dist/components/primitives/separator/Separator.d.ts +7 -0
  116. package/dist/components/primitives/separator/Separator.stories.d.ts +25 -0
  117. package/dist/components/primitives/separator/Separator.styles.d.ts +2 -0
  118. package/dist/components/primitives/switch/Switch.d.ts +8 -0
  119. package/dist/components/primitives/switch/Switch.stories.d.ts +21 -0
  120. package/dist/components/primitives/switch/Switch.styles.d.ts +5 -0
  121. package/dist/components/primitives/text-input/TextInput.d.ts +19 -0
  122. package/dist/components/primitives/text-input/TextInput.stories.d.ts +41 -0
  123. package/dist/components/primitives/toast/Toast.d.ts +8 -0
  124. package/dist/components/primitives/toast/Toast.stories.d.ts +20 -0
  125. package/dist/components/primitives/toast/Toast.styles.d.ts +5 -0
  126. package/dist/components/quick-search/QuickSearch.d.ts +4 -0
  127. package/dist/components/quick-search/QuickSearch.styles.d.ts +10 -0
  128. package/dist/components/quick-search/actions.d.ts +14 -0
  129. package/dist/components/schema-sql/SchemaSQL.d.ts +7 -0
  130. package/dist/components/schema-sql/SchemaSQL.styles.d.ts +1 -0
  131. package/dist/components/schema-sql/schema-sql-context-menu/SchemaSQLContextMenu.d.ts +6 -0
  132. package/dist/components/schema-sql/schema-sql-context-menu/menus/bracketMenus.d.ts +12 -0
  133. package/dist/components/settings/Settings.d.ts +4 -0
  134. package/dist/components/settings/Settings.styles.d.ts +10 -0
  135. package/dist/components/settings/settings-lnb/SettingsLnb.d.ts +13 -0
  136. package/dist/components/settings/settings-lnb/SettingsLnb.styles.d.ts +3 -0
  137. package/dist/components/settings/shortcuts/Shortcuts.d.ts +4 -0
  138. package/dist/components/settings/shortcuts/Shortcuts.styles.d.ts +2 -0
  139. package/dist/components/theme/Theme.d.ts +7 -0
  140. package/dist/components/theme-builder/ThemeBuilder.d.ts +7 -0
  141. package/dist/components/theme-builder/ThemeBuilder.styles.d.ts +8 -0
  142. package/dist/components/toast-container/ToastContainer.d.ts +4 -0
  143. package/dist/components/toast-container/ToastContainer.styles.d.ts +1 -0
  144. package/dist/components/toolbar/Toolbar.d.ts +6 -0
  145. package/dist/components/toolbar/Toolbar.styles.d.ts +3 -0
  146. package/dist/components/visualization/Visualization.d.ts +4 -0
  147. package/dist/components/visualization/Visualization.styles.d.ts +1 -0
  148. package/dist/components/visualization/createVisualization.d.ts +9 -0
  149. package/dist/components/visualization/table/Table.d.ts +10 -0
  150. package/dist/components/visualization/table/Table.styles.d.ts +1 -0
  151. package/dist/components/visualization/table/column/Column.d.ts +12 -0
  152. package/dist/components/visualization/table/column/Column.styles.d.ts +1 -0
  153. package/dist/constants/language.d.ts +1 -0
  154. package/dist/constants/layout.d.ts +32 -0
  155. package/dist/constants/open.d.ts +8 -0
  156. package/dist/constants/schema.d.ts +102 -0
  157. package/dist/constants/sql/dataType/MSSQL.d.ts +5 -0
  158. package/dist/constants/sql/dataType/MariaDB.d.ts +5 -0
  159. package/dist/constants/sql/dataType/MySQL.d.ts +5 -0
  160. package/dist/constants/sql/dataType/Oracle.d.ts +5 -0
  161. package/dist/constants/sql/dataType/PostgreSQL.d.ts +5 -0
  162. package/dist/constants/sql/dataType/SQLite.d.ts +5 -0
  163. package/dist/constants/sql/dataType/index.d.ts +25 -0
  164. package/dist/constants/sql/database.d.ts +12 -0
  165. package/dist/engine/actions.d.ts +35 -0
  166. package/dist/engine/context.d.ts +5 -0
  167. package/dist/engine/generator.actions.d.ts +4 -0
  168. package/dist/engine/history.actions.d.ts +9 -0
  169. package/dist/engine/history.d.ts +20 -0
  170. package/dist/engine/hooks.d.ts +8 -0
  171. package/dist/engine/modules/editor/actions.d.ts +93 -0
  172. package/dist/engine/modules/editor/atom.actions.d.ts +406 -0
  173. package/dist/engine/modules/editor/generator.actions.d.ts +31 -0
  174. package/dist/engine/modules/editor/history.d.ts +5 -0
  175. package/dist/engine/modules/editor/state.d.ts +63 -0
  176. package/dist/engine/modules/editor/utils/focus.d.ts +15 -0
  177. package/dist/engine/modules/editor/utils/selectRangeColumn.d.ts +3 -0
  178. package/dist/engine/modules/index/actions.d.ts +31 -0
  179. package/dist/engine/modules/index/atom.actions.d.ts +101 -0
  180. package/dist/engine/modules/index/generator.actions.d.ts +7 -0
  181. package/dist/engine/modules/index/history.d.ts +7 -0
  182. package/dist/engine/modules/index-column/actions.d.ts +37 -0
  183. package/dist/engine/modules/index-column/atom.actions.d.ts +125 -0
  184. package/dist/engine/modules/index-column/generator.actions.d.ts +11 -0
  185. package/dist/engine/modules/index-column/history.d.ts +7 -0
  186. package/dist/engine/modules/memo/actions.d.ts +59 -0
  187. package/dist/engine/modules/memo/atom.actions.d.ts +225 -0
  188. package/dist/engine/modules/memo/generator.actions.d.ts +9 -0
  189. package/dist/engine/modules/memo/history.d.ts +12 -0
  190. package/dist/engine/modules/relationship/actions.d.ts +31 -0
  191. package/dist/engine/modules/relationship/atom.actions.d.ts +102 -0
  192. package/dist/engine/modules/relationship/generator.actions.d.ts +1 -0
  193. package/dist/engine/modules/relationship/history.d.ts +6 -0
  194. package/dist/engine/modules/relationship/hooks.d.ts +2 -0
  195. package/dist/engine/modules/settings/actions.d.ts +83 -0
  196. package/dist/engine/modules/settings/atom.actions.d.ts +348 -0
  197. package/dist/engine/modules/settings/generator.actions.d.ts +7 -0
  198. package/dist/engine/modules/settings/history.d.ts +11 -0
  199. package/dist/engine/modules/table/actions.d.ts +57 -0
  200. package/dist/engine/modules/table/atom.actions.d.ts +224 -0
  201. package/dist/engine/modules/table/generator.actions.d.ts +12 -0
  202. package/dist/engine/modules/table/history.d.ts +13 -0
  203. package/dist/engine/modules/table/hooks.d.ts +2 -0
  204. package/dist/engine/modules/table-column/actions.d.ts +53 -0
  205. package/dist/engine/modules/table-column/atom.actions.d.ts +230 -0
  206. package/dist/engine/modules/table-column/generator.actions.d.ts +19 -0
  207. package/dist/engine/modules/table-column/history.d.ts +14 -0
  208. package/dist/engine/modules/table-column/hooks.d.ts +2 -0
  209. package/dist/engine/modules/table-column/utils/dataType.d.ts +3 -0
  210. package/dist/engine/rx-operators/actionsFilter.d.ts +3 -0
  211. package/dist/engine/rx-operators/groupByStreamActions.d.ts +5 -0
  212. package/dist/engine/rx-operators/ignoreTagFilter.d.ts +3 -0
  213. package/dist/engine/rx-operators/index.d.ts +4 -0
  214. package/dist/engine/rx-operators/notEmptyActions.d.ts +2 -0
  215. package/dist/engine/rx-operators/readonlyIgnoreFilter.d.ts +3 -0
  216. package/dist/engine/rx-store.d.ts +10 -0
  217. package/dist/engine/state.d.ts +5 -0
  218. package/dist/engine/store.d.ts +5 -0
  219. package/dist/engine/store.hooks.d.ts +4 -0
  220. package/dist/engine/tag.d.ts +7 -0
  221. package/dist/erd-editor.js +42402 -0
  222. package/dist/hooks/useDarkMode.d.ts +5 -0
  223. package/dist/hooks/useFlipAnimation.d.ts +2 -0
  224. package/dist/hooks/useKeyBindingMap.d.ts +3 -0
  225. package/dist/hooks/useUnmounted.d.ts +5 -0
  226. package/dist/index.d.ts +5 -0
  227. package/dist/index.dev.d.ts +1 -0
  228. package/dist/internal-types/index.d.ts +40 -0
  229. package/dist/services/schema-gc/index.d.ts +10 -0
  230. package/dist/services/schema-gc/procGC.d.ts +3 -0
  231. package/dist/services/schema-gc/schemaGCService.d.ts +4 -0
  232. package/dist/services/shikiService.d.ts +8 -0
  233. package/dist/styles/colorPicker.style.d.ts +1 -0
  234. package/dist/styles/fonts.styles.d.ts +3 -0
  235. package/dist/styles/reset.styles.d.ts +1 -0
  236. package/dist/styles/scrollbar.styles.d.ts +1 -0
  237. package/dist/styles/typography.styles.d.ts +14 -0
  238. package/dist/themes/radix-ui-theme.config.d.ts +2 -0
  239. package/dist/themes/radix-ui-theme.d.ts +1792 -0
  240. package/dist/themes/textColor.d.ts +2 -0
  241. package/dist/themes/tokens.d.ts +63 -0
  242. package/dist/utils/attribute.d.ts +1 -0
  243. package/dist/utils/bit.d.ts +1 -0
  244. package/dist/utils/calcMemo.d.ts +3 -0
  245. package/dist/utils/calcTable.d.ts +16 -0
  246. package/dist/utils/clipboard.d.ts +1 -0
  247. package/dist/utils/collection/index.entity.d.ts +2 -0
  248. package/dist/utils/collection/indexColumn.entity.d.ts +2 -0
  249. package/dist/utils/collection/memo.entity.d.ts +2 -0
  250. package/dist/utils/collection/relationship.entity.d.ts +2 -0
  251. package/dist/utils/collection/sequence.d.ts +1 -0
  252. package/dist/utils/collection/table.entity.d.ts +2 -0
  253. package/dist/utils/collection/tableColumn.entity.d.ts +2 -0
  254. package/dist/utils/device-detect/index.d.ts +7 -0
  255. package/dist/utils/domEvent.d.ts +6 -0
  256. package/dist/utils/dragSelect.d.ts +23 -0
  257. package/dist/utils/draw-relationship/calc.d.ts +6 -0
  258. package/dist/utils/draw-relationship/draw.d.ts +4 -0
  259. package/dist/utils/draw-relationship/index.d.ts +108 -0
  260. package/dist/utils/draw-relationship/pathFinding.d.ts +3 -0
  261. package/dist/utils/draw-relationship/sort.d.ts +2 -0
  262. package/dist/utils/emitter.d.ts +141 -0
  263. package/dist/utils/file/exportFile.d.ts +9 -0
  264. package/dist/utils/file/importFile.d.ts +10 -0
  265. package/dist/utils/flipAnimation.d.ts +10 -0
  266. package/dist/utils/focus.d.ts +5 -0
  267. package/dist/utils/generator-code/csharp.d.ts +4 -0
  268. package/dist/utils/generator-code/graphql.d.ts +4 -0
  269. package/dist/utils/generator-code/index.d.ts +4 -0
  270. package/dist/utils/generator-code/java.d.ts +4 -0
  271. package/dist/utils/generator-code/jpa.d.ts +4 -0
  272. package/dist/utils/generator-code/kotlin.d.ts +4 -0
  273. package/dist/utils/generator-code/scala.d.ts +4 -0
  274. package/dist/utils/generator-code/typescript.d.ts +4 -0
  275. package/dist/utils/generator-code/utils.d.ts +19 -0
  276. package/dist/utils/globalEmitter.d.ts +28 -0
  277. package/dist/utils/globalEventObservable.d.ts +41 -0
  278. package/dist/utils/icon.d.ts +1 -0
  279. package/dist/utils/index.d.ts +7 -0
  280. package/dist/utils/internalEvents.d.ts +38 -0
  281. package/dist/utils/keyboard-shortcut/index.d.ts +36 -0
  282. package/dist/utils/keyboard-shortcut/utils.d.ts +2 -0
  283. package/dist/utils/promise.d.ts +1 -0
  284. package/dist/utils/rx-operators/fromCopy.d.ts +3 -0
  285. package/dist/utils/rx-operators/fromDraggable.d.ts +1 -0
  286. package/dist/utils/rx-operators/fromPaste.d.ts +3 -0
  287. package/dist/utils/rx-operators/fromShadowDraggable.d.ts +1 -0
  288. package/dist/utils/rx-operators/takeUnsubscribe.d.ts +2 -0
  289. package/dist/utils/schema-sql/MSSQL.d.ts +5 -0
  290. package/dist/utils/schema-sql/MariaDB.d.ts +5 -0
  291. package/dist/utils/schema-sql/MySQL.d.ts +5 -0
  292. package/dist/utils/schema-sql/Oracle.d.ts +5 -0
  293. package/dist/utils/schema-sql/PostgreSQL.d.ts +5 -0
  294. package/dist/utils/schema-sql/SQLite.d.ts +5 -0
  295. package/dist/utils/schema-sql/index.d.ts +4 -0
  296. package/dist/utils/schema-sql/utils.d.ts +53 -0
  297. package/dist/utils/schema-sql-parser/index.d.ts +3 -0
  298. package/dist/utils/schema-sql-parser/utils.d.ts +3 -0
  299. package/dist/utils/table-clipboard/copy.d.ts +3 -0
  300. package/dist/utils/table-clipboard/index.d.ts +15 -0
  301. package/dist/utils/table-clipboard/paste.d.ts +4 -0
  302. package/dist/utils/text.d.ts +4 -0
  303. package/dist/utils/validation.d.ts +16 -0
  304. package/dist/workers/schemaGC.shared-worker.d.ts +1 -0
  305. package/dist/workers/schemaGC.worker.d.ts +1 -0
  306. package/package.json +101 -0
@@ -0,0 +1,16 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type EditInputProps = {
3
+ class?: any;
4
+ placeholder?: string;
5
+ title?: string;
6
+ edit: boolean;
7
+ focus: boolean;
8
+ width: number;
9
+ value: string;
10
+ autofocus?: boolean;
11
+ onInput?: (event: InputEvent) => void;
12
+ onBlur?: (event: FocusEvent) => void;
13
+ onKeydown?: (event: KeyboardEvent) => void;
14
+ };
15
+ declare const EditInput: FC<EditInputProps>;
16
+ export default EditInput;
@@ -0,0 +1,36 @@
1
+ import type { StoryObj } from '@storybook/html';
2
+ import { EditInputProps } from './EditInput';
3
+ declare const meta: {
4
+ title: string;
5
+ render: (args: EditInputProps) => DocumentFragment;
6
+ argTypes: {
7
+ placeholder: {
8
+ control: string;
9
+ };
10
+ edit: {
11
+ control: string;
12
+ };
13
+ focus: {
14
+ control: string;
15
+ };
16
+ width: {
17
+ control: string;
18
+ };
19
+ value: {
20
+ control: string;
21
+ };
22
+ onInput: {
23
+ action: string;
24
+ };
25
+ onBlur: {
26
+ action: string;
27
+ };
28
+ onKeydown: {
29
+ action: string;
30
+ };
31
+ };
32
+ };
33
+ export default meta;
34
+ type Story = StoryObj<EditInputProps>;
35
+ export declare const Normal: Story;
36
+ export declare const Edit: Story;
@@ -0,0 +1,4 @@
1
+ export declare const root: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const cursor: import("@dineug/r-html").CSSTemplateLiterals;
3
+ export declare const userSelect: import("@dineug/r-html").CSSTemplateLiterals;
4
+ export declare const ellipsis: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,8 @@
1
+ import { FC } from '@dineug/r-html';
2
+ import { findAll } from 'highlight-words-core';
3
+ export type HighlightedTextProps = Parameters<typeof findAll>[0] & {
4
+ searchWords: string[];
5
+ textToHighlight: string;
6
+ };
7
+ declare const HighlightedText: FC<HighlightedTextProps>;
8
+ export default HighlightedText;
@@ -0,0 +1,23 @@
1
+ import type { StoryObj } from '@storybook/html';
2
+ import { HighlightedTextProps } from './HighlightedText';
3
+ declare const meta: {
4
+ title: string;
5
+ render: (args: HighlightedTextProps) => DocumentFragment;
6
+ argTypes: {
7
+ autoEscape: {
8
+ type: "boolean";
9
+ };
10
+ caseSensitive: {
11
+ type: "boolean";
12
+ };
13
+ searchWords: {
14
+ options: string[];
15
+ };
16
+ textToHighlight: {
17
+ type: "string";
18
+ };
19
+ };
20
+ };
21
+ export default meta;
22
+ type Story = StoryObj<HighlightedTextProps>;
23
+ export declare const Normal: Story;
@@ -0,0 +1 @@
1
+ export declare const highlighted: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,14 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type IconProps = {
3
+ class?: any;
4
+ prefix?: string;
5
+ name: string;
6
+ size?: number;
7
+ color?: string;
8
+ useTransition?: boolean;
9
+ title?: string;
10
+ rotate?: number;
11
+ onClick?: (event: MouseEvent) => void;
12
+ };
13
+ declare const Icon: FC<IconProps>;
14
+ export default Icon;
@@ -0,0 +1,8 @@
1
+ import type { StoryObj } from '@storybook/html';
2
+ import { IconProps } from './Icon';
3
+ declare const meta: {
4
+ title: string;
5
+ };
6
+ export default meta;
7
+ type Story = StoryObj<IconProps>;
8
+ export declare const Icons: Story;
@@ -0,0 +1,2 @@
1
+ export declare const wrap: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const icon: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,29 @@
1
+ import { ValuesType } from "../../../internal-types";
2
+ export declare const BASE_64_ICON: {
3
+ /** @deprecated */
4
+ readonly ZeroOneN: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0RFRDI1RjI0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0RFRDI1RjM0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCQTE2QzQzRDQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCQTE2QzQzRTQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnTT5ywAAAJMSURBVHja7Fc9T2JBFB3MZq1IqLSgsRM6G6TcAmK7VNoRK4yBxE6XP/CsNxBohc6G5w+AoCU0aEWpBfAD4AeM55AZMjvvg2dClsRwkxOeb+7ce+6dmTPPmJRSbNP2xJZtR2DrBH6k0+ndEkSxBHAD9AGpMAJc4Lfh1zDGn4GLgHglNb8kqANhSKVSTiaTkY7jyMFgILWNx2PZ7XZluVyW8BkBJWA1PhwO+f7ZinUO9DmH8xl3XfIGnefzuQwzBsvlcjKIAH4PWAh9zCLq9Xp48mq16knGwASTmkaShULBQ0B1ZlSr1TyFtFqtwOS3xWLxH2eyZctUUOKVFTGRtslk4iHAODZZ/k2yLDKIwLsZjJ2gM3Bo+V0wieu6vsvCCu0ucS+RPHC1vId8kp+YrWRwvHsIWaosO7Nun3DDqn1yD+zr+RQiz3WYz+dXz6iCP82g84lKB4jxF0Rv0G7P+Gw2E6ha9Ho9/eoPsRJAucbUzl53Wi79NmwU25QSJuLx+ObugkqlInD+l8+oTsAny1aHxDlKJpOBgzhBot1ui8Vi4R3cwCY8jbIJeap4JOHvAmd6flDQj+l06ncMD/yktdPp+AoW59nEeBqUnjjAzyACd7YQUcnUxL7CyJZWk7QWIs6xdcLQg6cvSzETEl+Q4iyXkAWZBHU3/stlpLvKpaWkm0sb5Tq+19exqfvWdbyU1gjX8SGLIlnKNJ9jPGYRP0gugQLwS717Az6AB+DJ+CC5Vs8vSkEffeIdK79mVALf95swtvvXbEdg2wQ+BRgAvLABcxKvek4AAAAASUVORK5CYII=";
5
+ readonly ZeroOne: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkExNkM0M0I0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkExNkM0M0M0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCQTE2QzQzOTQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCQTE2QzQzQTQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PomEhhsAAAKSSURBVHja7FexbhpBED0ipFRI7ixBQwlV0nCUWKJIydEkFSRpHCGQ0iXgBqfBbQrAShXzA4BLJJCdEip3UDoSUFvwAZv30B5a1ncHBiSk2CONdrU3O/N2dt6w+IQQxiHllXFgeQFwcAD+aDT6zDPwBNsjaAoaVtbuoNcee46hOSi5/hd6pRv41vUBXJFJJ4FA4FMymTRCodDy22g0Mnq93gOml8Ph8Mxhb71QKOQYYzqdGq1W6zPsVkHwo5tGIpFvsVhMNJtN4Saz2UwUi0UB299QU9u/tBsMBrS51WN4BrcsS4zHY7GJEKQOYmsAMIzz5GrwyWQiSqWSwDXQkchms6LRaCwyoIPYB4Ar3NdyM+cEhPXv0LC0OYH+ZJZUEASG9fdbA2AAnlI9uQwedwF7waC29Pt92t5sCoCN6FzSZCmsdluq1aoxn8+LqN6+E0uwXoKPKNiQ4j7TNA0w5gRLZRdWraz7QZOyTkU6saXb7XL4taZH3IGSKRs4asVA5s5Vg2AwaOTz+QSmCZ2GniLTuI6uFpyLbcRfq9UeHYcZwL0v5mw8SFsYqb73yMBb9Tel3W4zA4s5gC1G2Yget2Lc8Q99MZ1Ol20AmLMOTjE9c7nT1xgstW4qlQrrhn7LNgACgp8/mN56dkKk84hVb1OLo+T+qUv66wi4QlnSeNc+cAG0y81IvyDfZaf7CE1Av5JubE6qSLDxXQEc05ib9HbLvp/JZARPTc6rQjDMyL5+Cz7wKkDDjapZD74zAOngHbRN57wGJyFAmfa6w/71ndCruyBoB0MHlf4FxZUDJd+o7wF8Z7Vfy/dAx8HFJWies1ng+CABqqe8oMIOL6KHDV5ElPt9APj/HqW+l/+Gzx7APwEGACfjkeXK58xsAAAAAElFTkSuQmCC";
6
+ readonly ZeroN: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDc5MkNFMEM0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDc5MkNFMEQ0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0NzkyQ0UwQTQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0NzkyQ0UwQjQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpR0ImIAAALlSURBVHja7Fe/jxJBGF0MyVUk2HgJFJ6NQqUNWEoCkfKWxusozxBI7Eiw8ardKy/hxyVWQqcF8AdA9Eqg8DqwuwJI7Aj8AeN7OEuGhd09tCBRvuTLzA4z37z53rxvF58QQtunPdD2bAcA/mg0+p9nYMf5Qfhz5fnmbwH47iND0PQaTS4QCOiRSGQ1PhgMZmja8OvhcNi/z4aIdc5Ycs1HjQCcHJu9hH/KZrOi0+kIu83nc9FsNkUymRSYZ3jEegqv6bousLHI5/NcU3RbkIa3W62W8DICKZVKDFhziFWMxWKiXq+v1ozHY8Exv0OajpmmSqVyitOtxrvdrjYajZZ90KGlUiktFAot+4ZhcDiHtTOc8L1KHWLoAKiFw+FVrOl0+rvjgNjA5msnJA3MCPxC+hX8DhuvzZN0kDqDfTt1nCPT/w1+tm3zIFPDidYC8oZxc8vcI6ZdBUHKMPadY1YMy0gBY6uxfHhIMBEKAw+BvIUMLB+q1aqG/iXSWnKg6wjND9DzmHQsFgttMploqlpIm2maWr/fv8bj5zUZMrV2KWYymaXTyDMCPgGAOxdpXRQKhQ9I7cZv2FSzDrPVvG44TiLc5CWp0Mnrn5gfxWQDFG8r02nddpwwiAzMXOrLC6d3CtNPWhxLMSjYKKcYe0XZ0OLxOOVHOX1xA6Bybj8MKWg0GjdOFNjTeUL5WNbr9UjDV3jcIf3nVIllrHK8V2xVYxypphr8kbXeidO2ql+WWwnijQrU0rq6mdT4W/gta4ldiuVy2ZJi0Q1AmoHVxTyBDL50/m7XOkETvIxxTL1zHpSwBoJlWBa2mtvNNpky+wmcjJvIk6Vtcc5Y9QjeHovxveRlbiun9tLKVFul1S2W+kJiywx4fg9AXmm+UDD5lIqg3HizwftSYgBHmV1izhXGfnrEeobmHeLkuB7rIj4n+WyTGjwh2xP4rXR+kMx2/BBKyLWzXQD8mx+lvsNfswOAfQP4JcAAK/At0HQvwB8AAAAASUVORK5CYII=";
7
+ readonly OneOnly: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUJCNTBCRDA0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkExNkM0MzQ0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQkI1MEJDRTQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQkI1MEJDRjQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pur5d4QAAAE1SURBVHjaYvz//z/DQAImhgEGow4YcAewaGpqjvAQoJI5CUAsD2VPB+JXULY4EGcCMSivPwTiBRgOuH79OkU2A6MwITAwcL6UlBSYP3XqVHGgmVlQufqcnJxMUFnz7NkzhvXr1zMA5VAdAZKkBGtoaBw4derUfxgA8v8jycHFQWpAatH1j2bDUQeACqIGaDahGgClfmLlWIDZpJ7SKhmWBUEgOzsbRDVgUwOUswcy7ZHFGf8PcIOABVhwUGwIsCBiQCqIUOSgIQIviNABI7BwaKDQfodFixbZm5qawuIYRDVC5ephJe3p06cZ4uLiDgKZB0ZLwtGCaNg1SBYAs5c9MJExIDVI4GxgtgQ1SBiePn3KgK1BAsqG1GoRKSA54CVaiwgEHtDSAUM3DTCO9g1HvAMAAgwAvvwYPnW1JuQAAAAASUVORK5CYII=";
8
+ readonly OneN: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkExNkM0Mzc0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkExNkM0Mzg0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCQTE2QzQzNTQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCQTE2QzQzNjQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pt+BFx8AAAIISURBVHja7Fc9TwJBEF0MLYkdBgot4QdwLSaQSAmNdkCrR61CI9Ud1oCUIB0NYElBtJU/QIkmQKIVgcpqfXPekQNBYu7WM4FJJvs1x87Ovnk7uDjnzEnZYw7LzgHHHXAFAoHtjoDbpt9JQw/1fgX6vsH+CDohdVnlgWAwmE4kElWfz6eNy+Vypd/vX6yx9aK58fv959PplM1mswNGDlhRYOip1+txQzDma+wuoYNSqaTZUYvxnXAHMJag1WQyyYfDITdLJBLhbpEAQ8gVj8eThTBc03weoWeqqrLRaFQREgHoKfQRG3Pc9cKpW60WD4VCZKPS90IiAJA1FEVhkiTN58bjMaNIwNl7yhQA9VlLQ4Qpj9a2J1GWZZbJZBbmkBkMoHtFt6pPxbBvTGNCHZWWNqX7xalXriHkdNfrqZg7XBC4KTxWhSJgENGy0Onb7faPj1He4v7H9Xo9DGRrg1QqpaWY2SEAj+Vyua+0W6ZpQWn4YjCeWYrFIq0NiBWN70U54CWajcfj3LxGQmxIrEjsSCwplIrRP6N1cMI3Qmo2mxohCa0HQDYNNCfASAG8z7rd7nwtGo3+TUECJz6gWfB/DAT1QCAlViSgYq5gBxXXQDZhQrqpIFnlSAdNBwx4BWwUsPk15m7tqgnTepVjOPC2wX5fr4hse4xqv7Sf/J+yfPffcOsd+BRgAOvawAWTC+PMAAAAAElFTkSuQmCC";
9
+ /** @deprecated */
10
+ readonly One: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUJCNTBCQ0M0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUJCNTBCQ0Q0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQkI1MEJDQTQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQkI1MEJDQjQ4NjQxMUU3QkRBMDg1MDlCNjg0QjgzMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnOhfCQAAADcSURBVHjaYvz//z/DQAImhgEGow4YcAewaGpqjvAQoJI5CUAsD2VPB+JXxGpkpLQcAEZhQmBg4HwpKSkwf+rUqdOvX7+eRbQBIAdQgjU0NA6cOnXqPwwA+f9J0T+aDUcdACqIGkBpkZqGAs2sJzobTpky5T+lWRGYDRmkpaXBbKB5JOll/D/ADQIWYMFBsSGgEEAqiEgLAWDB0UCh/Q6LFi2yNzU1hcU/iGocLQlHC6IR1SBZsH79entgQmRAapCQlA2p1SJSQHLAS3o3yRYM2TTAONo3HPEOAAgwAJh583IRUllDAAAAAElFTkSuQmCC";
11
+ /** @deprecated */
12
+ readonly N: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDc5MkNFMDg0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDc5MkNFMDk0ODY0MTFFN0JEQTA4NTA5QjY4NEI4MzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozNDQwRjc3NTQ4M0MxMUU3QkRBMDg1MDlCNjg0QjgzMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozNDQwRjc3NjQ4M0MxMUU3QkRBMDg1MDlCNjg0QjgzMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkbQDKwAAAGjSURBVHja7Jcxb4JQEMefLl272cjSUbYu0g+gSVemdpPZwKzRRSf4AGg70k8AfACTdqx+ibYJLp2MfoDr/wg0vJp2Al6TeskFeQ+4e/fufvdsEJFQKU2hWE4OKHeg0el0TlugQi6h5+kW1MkBXddbuMw0TRvu93txOBwumjUaH+Hy4jjOcLVaCcuyeHgmOAJVKpLcgAaDwYCSJKGi9Hq9yo273W6XwjCUDCP8NJlMCPP3VRm+hT6xETZWlCiKiJ3CvJfmX8mGW7wqDu16vZYMb7db4m3A/CP0On+HQTRHMpRVCiaS7Mq2bWlwuVyKxWLxjp/BEQkxQWWVYr/fF9/JipALrP5nFJPiA0EagbI+BsAI0zSlMV59HMe/NqN5mYg1DMPyPE+02+2vwc1mI6bTKTvzgNsP6Y0KSnAMfctySxLf97kKXqGj/PmqOJCWI7aDsHrJCaZhVo4BU7JqEt5Bn13XPQIS05GBVEcvOGPqsTE0IQnHtThQcOQGGnP4mYpZL/Bqc6CYpFkvGOcoVsEfPg3tVB7Jdn/nWH76b/jvHfgUYADeZNmzPgOYQQAAAABJRU5ErkJggg==";
13
+ };
14
+ export type BASE_64_ICON = ValuesType<typeof BASE_64_ICON>;
15
+ export interface IconDefinition {
16
+ prefix: string;
17
+ iconName: string;
18
+ icon: [
19
+ number,
20
+ number,
21
+ // height
22
+ string[] | undefined,
23
+ // ligatures
24
+ string | undefined,
25
+ string
26
+ ];
27
+ }
28
+ export declare const iconMap: Record<string, IconDefinition>;
29
+ export declare function getIcon(prefix: string, iconName: string): IconDefinition | undefined;
@@ -0,0 +1,7 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type KbdProps = {
3
+ shortcut?: string;
4
+ mini?: boolean;
5
+ };
6
+ declare const Kbd: FC<KbdProps>;
7
+ export default Kbd;
@@ -0,0 +1,17 @@
1
+ import type { StoryObj } from '@storybook/html';
2
+ import { KbdProps } from './Kbd';
3
+ declare const meta: {
4
+ title: string;
5
+ render: (args: KbdProps) => DocumentFragment;
6
+ argTypes: {
7
+ shortcut: {
8
+ control: string;
9
+ };
10
+ mini: {
11
+ control: string;
12
+ };
13
+ };
14
+ };
15
+ export default meta;
16
+ type Story = StoryObj<KbdProps>;
17
+ export declare const Normal: Story;
@@ -0,0 +1,3 @@
1
+ export declare const root: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const kbd: import("@dineug/r-html").CSSTemplateLiterals;
3
+ export declare const mini: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,27 @@
1
+ import { FC } from '@dineug/r-html';
2
+ import { ValuesType } from "../../../internal-types";
3
+ import { DragMove } from "../../../utils/globalEventObservable";
4
+ export declare const Cursor: {
5
+ readonly default: "default";
6
+ readonly ewResize: "ew-resize";
7
+ readonly nsResize: "ns-resize";
8
+ readonly neswResize: "nesw-resize";
9
+ readonly nwseResize: "nwse-resize";
10
+ };
11
+ export type Cursor = ValuesType<typeof Cursor>;
12
+ export declare const SashType: {
13
+ readonly vertical: "vertical";
14
+ readonly horizontal: "horizontal";
15
+ readonly edge: "edge";
16
+ };
17
+ export type SashType = ValuesType<typeof SashType>;
18
+ export type SashProps = {
19
+ type: SashType;
20
+ cursor?: Cursor;
21
+ top?: number;
22
+ left?: number;
23
+ onMove?: (dragMove: DragMove) => void;
24
+ onMousedown?: (event: MouseEvent) => void;
25
+ };
26
+ declare const Sash: FC<SashProps>;
27
+ export default Sash;
@@ -0,0 +1,30 @@
1
+ import type { StoryObj } from '@storybook/html';
2
+ import { SashProps } from './Sash';
3
+ declare const meta: {
4
+ title: string;
5
+ render: (args: SashProps) => DocumentFragment;
6
+ argTypes: {
7
+ type: {
8
+ options: ("vertical" | "horizontal" | "edge")[];
9
+ control: string;
10
+ };
11
+ cursor: {
12
+ options: ("default" | "ew-resize" | "ns-resize" | "nesw-resize" | "nwse-resize")[];
13
+ control: string;
14
+ };
15
+ top: {
16
+ control: string;
17
+ };
18
+ left: {
19
+ control: string;
20
+ };
21
+ onMove: {
22
+ action: string;
23
+ };
24
+ };
25
+ };
26
+ export default meta;
27
+ type Story = StoryObj<SashProps>;
28
+ export declare const Vertical: Story;
29
+ export declare const Horizontal: Story;
30
+ export declare const Edge: Story;
@@ -0,0 +1,2 @@
1
+ export declare const SASH_SIZE = 5;
2
+ export declare const sash: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,7 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type SeparatorProps = {
3
+ space?: number;
4
+ padding?: number;
5
+ };
6
+ declare const Separator: FC<SeparatorProps>;
7
+ export default Separator;
@@ -0,0 +1,25 @@
1
+ import type { StoryObj } from '@storybook/html';
2
+ import { SeparatorProps } from './Separator';
3
+ declare const meta: {
4
+ title: string;
5
+ render: (args: SeparatorProps) => DocumentFragment;
6
+ argTypes: {
7
+ space: {
8
+ control: {
9
+ type: string;
10
+ min: number;
11
+ max: number;
12
+ };
13
+ };
14
+ padding: {
15
+ control: {
16
+ type: string;
17
+ min: number;
18
+ max: number;
19
+ };
20
+ };
21
+ };
22
+ };
23
+ export default meta;
24
+ type Story = StoryObj<SeparatorProps>;
25
+ export declare const Normal: Story;
@@ -0,0 +1,2 @@
1
+ export declare const separator: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const horizontal: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,8 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type SwitchProps = {
3
+ size?: '1' | '2' | '3';
4
+ value: boolean;
5
+ onChange: (value: boolean) => void;
6
+ };
7
+ declare const Switch: FC<SwitchProps>;
8
+ export default Switch;
@@ -0,0 +1,21 @@
1
+ import type { StoryObj } from '@storybook/html';
2
+ import { SwitchProps } from './Switch';
3
+ declare const meta: {
4
+ title: string;
5
+ render: (args: SwitchProps) => DocumentFragment;
6
+ argTypes: {
7
+ size: {
8
+ control: string;
9
+ options: string[];
10
+ };
11
+ value: {
12
+ control: string;
13
+ };
14
+ onChange: {
15
+ action: string;
16
+ };
17
+ };
18
+ };
19
+ export default meta;
20
+ type Story = StoryObj<SwitchProps>;
21
+ export declare const Normal: Story;
@@ -0,0 +1,5 @@
1
+ export declare const switchButton: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const size1: import("@dineug/r-html").CSSTemplateLiterals;
3
+ export declare const size2: import("@dineug/r-html").CSSTemplateLiterals;
4
+ export declare const size3: import("@dineug/r-html").CSSTemplateLiterals;
5
+ export declare const switchThumb: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,19 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type TextInputProps = {
3
+ class?: any;
4
+ title?: string;
5
+ placeholder?: string;
6
+ readonly?: boolean;
7
+ disabled?: boolean;
8
+ width?: number;
9
+ value: string;
10
+ numberOnly?: boolean;
11
+ autofocus?: boolean;
12
+ onInput?: (event: InputEvent) => void;
13
+ onChange?: (event: InputEvent) => void;
14
+ onBlur?: (event: FocusEvent) => void;
15
+ onKeyup?: (event: KeyboardEvent) => void;
16
+ onKeydown?: (event: KeyboardEvent) => void;
17
+ };
18
+ declare const TextInput: FC<TextInputProps>;
19
+ export default TextInput;
@@ -0,0 +1,41 @@
1
+ import type { StoryObj } from '@storybook/html';
2
+ import { TextInputProps } from './TextInput';
3
+ declare const meta: {
4
+ title: string;
5
+ render: (args: TextInputProps) => DocumentFragment;
6
+ argTypes: {
7
+ title: {
8
+ control: string;
9
+ };
10
+ placeholder: {
11
+ control: string;
12
+ };
13
+ readonly: {
14
+ control: string;
15
+ };
16
+ width: {
17
+ control: string;
18
+ };
19
+ value: {
20
+ control: string;
21
+ };
22
+ numberOnly: {
23
+ control: string;
24
+ };
25
+ onInput: {
26
+ action: string;
27
+ };
28
+ onChange: {
29
+ action: string;
30
+ };
31
+ onBlur: {
32
+ action: string;
33
+ };
34
+ onKeyup: {
35
+ action: string;
36
+ };
37
+ };
38
+ };
39
+ export default meta;
40
+ type Story = StoryObj<TextInputProps>;
41
+ export declare const Normal: Story;
@@ -0,0 +1,8 @@
1
+ import { DOMTemplateLiterals, FC } from '@dineug/r-html';
2
+ export type ToastProps = {
3
+ title?: DOMTemplateLiterals | string;
4
+ description?: DOMTemplateLiterals | string;
5
+ action?: DOMTemplateLiterals | string;
6
+ };
7
+ declare const Toast: FC<ToastProps>;
8
+ export default Toast;
@@ -0,0 +1,20 @@
1
+ import type { StoryObj } from '@storybook/html';
2
+ import { ToastProps } from './Toast';
3
+ declare const meta: {
4
+ title: string;
5
+ render: (args: ToastProps) => DocumentFragment;
6
+ argTypes: {
7
+ title: {
8
+ control: string;
9
+ };
10
+ description: {
11
+ control: string;
12
+ };
13
+ action: {
14
+ control: string;
15
+ };
16
+ };
17
+ };
18
+ export default meta;
19
+ type Story = StoryObj<ToastProps>;
20
+ export declare const Normal: Story;
@@ -0,0 +1,5 @@
1
+ export declare const root: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const textWrap: import("@dineug/r-html").CSSTemplateLiterals;
3
+ export declare const title: import("@dineug/r-html").CSSTemplateLiterals;
4
+ export declare const description: import("@dineug/r-html").CSSTemplateLiterals;
5
+ export declare const action: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,4 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type QuickSearchProps = {};
3
+ declare const QuickSearch: FC<QuickSearchProps>;
4
+ export default QuickSearch;
@@ -0,0 +1,10 @@
1
+ export declare const root: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const container: import("@dineug/r-html").CSSTemplateLiterals;
3
+ export declare const search: import("@dineug/r-html").CSSTemplateLiterals;
4
+ export declare const list: import("@dineug/r-html").CSSTemplateLiterals;
5
+ export declare const action: import("@dineug/r-html").CSSTemplateLiterals;
6
+ export declare const icon: import("@dineug/r-html").CSSTemplateLiterals;
7
+ export declare const name: import("@dineug/r-html").CSSTemplateLiterals;
8
+ export declare const keyword: import("@dineug/r-html").CSSTemplateLiterals;
9
+ export declare const vertical: import("@dineug/r-html").CSSTemplateLiterals;
10
+ export declare const shortcut: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,14 @@
1
+ import { DOMTemplateLiterals } from '@dineug/r-html';
2
+ import { AppContext } from "../appContext";
3
+ export type Action = {
4
+ icon?: DOMTemplateLiterals | null;
5
+ name: string;
6
+ keywords?: string;
7
+ shortcut?: string;
8
+ filter?: (app: AppContext) => boolean;
9
+ perform?: (app: AppContext) => void;
10
+ next?: Action[];
11
+ };
12
+ export declare function searchActions(actions: Action[], keyword: string): Action[];
13
+ export declare function createScopeActions(app: AppContext): Action[];
14
+ export declare const allScopeActions: Action[];
@@ -0,0 +1,7 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type SchemaSQLProps = {
3
+ isDarkMode: boolean;
4
+ tableId?: string;
5
+ };
6
+ declare const SchemaSQL: FC<SchemaSQLProps>;
7
+ export default SchemaSQL;
@@ -0,0 +1 @@
1
+ export declare const root: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,6 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type SchemaSQLContextMenuProps = {
3
+ onClose: () => void;
4
+ };
5
+ declare const SchemaSQLContextMenu: FC<SchemaSQLContextMenuProps>;
6
+ export default SchemaSQLContextMenu;
@@ -0,0 +1,12 @@
1
+ import { AppContext } from "../../../appContext";
2
+ type Menu = {
3
+ name: string;
4
+ value: number;
5
+ };
6
+ export declare const menus: Menu[];
7
+ export declare function createBracketMenus({ store }: AppContext): {
8
+ checked: boolean;
9
+ name: string;
10
+ onClick: () => void;
11
+ }[];
12
+ export {};
@@ -0,0 +1,4 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type SettingsProps = {};
3
+ declare const Settings: FC<SettingsProps>;
4
+ export default Settings;
@@ -0,0 +1,10 @@
1
+ export declare const root: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const lnbArea: import("@dineug/r-html").CSSTemplateLiterals;
3
+ export declare const contentArea: import("@dineug/r-html").CSSTemplateLiterals;
4
+ export declare const content: import("@dineug/r-html").CSSTemplateLiterals;
5
+ export declare const section: import("@dineug/r-html").CSSTemplateLiterals;
6
+ export declare const row: import("@dineug/r-html").CSSTemplateLiterals;
7
+ export declare const vertical: (size: number) => import("@dineug/r-html").CSSTemplateLiterals;
8
+ export declare const columnOrderSection: import("@dineug/r-html").CSSTemplateLiterals;
9
+ export declare const columnOrderList: import("@dineug/r-html").CSSTemplateLiterals;
10
+ export declare const columnOrderItem: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,13 @@
1
+ import { FC } from '@dineug/r-html';
2
+ import { ValuesType } from "../../../internal-types";
3
+ export declare const Lnb: {
4
+ readonly preferences: "Preferences";
5
+ readonly shortcuts: "Shortcuts";
6
+ };
7
+ export type Lnb = ValuesType<typeof Lnb>;
8
+ export type SettingsLnbProps = {
9
+ value: Lnb;
10
+ onChange: (value: Lnb) => void;
11
+ };
12
+ declare const SettingsLnb: FC<SettingsLnbProps>;
13
+ export default SettingsLnb;
@@ -0,0 +1,3 @@
1
+ export declare const lnb: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const list: import("@dineug/r-html").CSSTemplateLiterals;
3
+ export declare const item: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,4 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type ShortcutsProps = {};
3
+ declare const Shortcuts: FC<ShortcutsProps>;
4
+ export default Shortcuts;
@@ -0,0 +1,2 @@
1
+ export declare const table: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const shortcutGroup: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,7 @@
1
+ import { FC } from '@dineug/r-html';
2
+ import { Theme } from "../../themes/tokens";
3
+ export type ThemeProps = {
4
+ theme: Theme;
5
+ };
6
+ declare const Theme: FC<ThemeProps>;
7
+ export default Theme;
@@ -0,0 +1,7 @@
1
+ import { FC } from '@dineug/r-html';
2
+ import { ThemeOptions } from "../../themes/radix-ui-theme";
3
+ export type ThemeBuilderProps = {
4
+ theme: ThemeOptions;
5
+ };
6
+ declare const ThemeBuilder: FC<ThemeBuilderProps>;
7
+ export default ThemeBuilder;
@@ -0,0 +1,8 @@
1
+ export declare const root: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const title: import("@dineug/r-html").CSSTemplateLiterals;
3
+ export declare const subTitle: import("@dineug/r-html").CSSTemplateLiterals;
4
+ export declare const palette: import("@dineug/r-html").CSSTemplateLiterals;
5
+ export declare const color: import("@dineug/r-html").CSSTemplateLiterals;
6
+ export declare const lightDarkButtonGroup: import("@dineug/r-html").CSSTemplateLiterals;
7
+ export declare const lightDarkButton: import("@dineug/r-html").CSSTemplateLiterals;
8
+ export declare const vertical: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,4 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type ToastContainerProps = {};
3
+ declare const ToastContainer: FC<ToastContainerProps>;
4
+ export default ToastContainer;
@@ -0,0 +1 @@
1
+ export declare const root: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,6 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type ToolbarProps = {
3
+ enableThemeBuilder: boolean;
4
+ };
5
+ declare const Toolbar: FC<ToolbarProps>;
6
+ export default Toolbar;
@@ -0,0 +1,3 @@
1
+ export declare const root: import("@dineug/r-html").CSSTemplateLiterals;
2
+ export declare const vertical: import("@dineug/r-html").CSSTemplateLiterals;
3
+ export declare const menu: import("@dineug/r-html").CSSTemplateLiterals;
@@ -0,0 +1,4 @@
1
+ import { FC } from '@dineug/r-html';
2
+ export type VisualizationProps = {};
3
+ declare const Visualization: FC<VisualizationProps>;
4
+ export default Visualization;
@@ -0,0 +1 @@
1
+ export declare const root: import("@dineug/r-html").CSSTemplateLiterals;