@toolr/ui-design 0.1.2 → 0.1.3

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.
package/index.ts CHANGED
@@ -32,7 +32,6 @@ export { FormActions, type FormActionsProps } from './components/ui/form-actions
32
32
  export { ConfirmModal, AlertModal, type ConfirmModalProps, type AlertModalProps, type ModalKind, type ModalSize } from './components/ui/modal.tsx'
33
33
  export { ActionDialog, type ActionDialogProps } from './components/ui/action-dialog.tsx'
34
34
  export { ExecutionDetailsPanel, type ExecutionDetailsPanelProps, type ExecutionDetailRow } from './components/ui/execution-details-panel.tsx'
35
- export { SettingRow, type SettingRowProps } from './components/ui/setting-row.tsx'
36
35
  export { FileTree, collectDirPaths, type FileTreeProps, type FileTreeNode } from './components/ui/file-tree.tsx'
37
36
  export { EditorToolbar, type EditorToolbarProps } from './components/ui/editor-toolbar.tsx'
38
37
  export { BottomPanelHeader, type BottomPanelHeaderProps, type PanelTab, type StatusBanner } from './components/ui/bottom-panel-header.tsx'
@@ -123,6 +122,10 @@ export { useDropdownMaxHeight } from './components/hooks/use-dropdown-max-height
123
122
  export { useNavigationHistory, type UseNavigationHistoryReturn } from './components/hooks/use-navigation-history.ts'
124
123
 
125
124
  // Settings
125
+ export { SettingRow, type SettingRowProps } from './components/ui/setting-row.tsx'
126
+ export { SettingsCard, type SettingsCardProps } from './components/ui/settings-card.tsx'
127
+ export { SettingsInfoBox, type SettingsInfoBoxProps, type SettingsInfoBoxColor } from './components/ui/settings-info-box.tsx'
128
+ export { SettingsSectionTitle, type SettingsSectionTitleProps } from './components/ui/settings-section-title.tsx'
126
129
  export {
127
130
  SettingsPanel, type SettingsPanelProps,
128
131
  SettingsTreeNav, type SettingsTreeNavProps,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toolr/ui-design",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",