@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/components/lib/form-colors.ts +3 -0
- package/components/ui/badge.tsx +4 -2
- package/components/ui/confirm-badge.tsx +4 -2
- package/components/ui/file-structure-section.tsx +135 -70
- package/components/ui/file-tree.tsx +2 -2
- package/components/ui/filter-dropdown.tsx +1 -1
- package/components/ui/icon-button.tsx +6 -2
- package/components/ui/label.tsx +4 -1
- package/components/ui/registry-detail.tsx +3 -0
- package/components/ui/resizable-textarea.tsx +2 -2
- package/components/ui/segmented-toggle.tsx +34 -16
- package/components/ui/select.tsx +1 -1
- package/components/ui/settings-card.tsx +27 -0
- package/components/ui/settings-info-box.tsx +80 -0
- package/components/ui/settings-section-title.tsx +24 -0
- package/components/ui/sort-dropdown.tsx +1 -1
- package/components/ui/tooltip.tsx +1 -1
- package/dist/index.d.ts +83 -46
- package/dist/index.js +1423 -1205
- package/index.ts +4 -1
- package/package.json +1 -1
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,
|