azamat-ui-kit 0.1.0 → 0.1.1
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/README.md +2 -25
- package/dist/index.cjs +2 -4
- package/dist/index.d.ts +0 -1
- package/dist/index.js +5460 -9331
- package/package.json +1 -7
- package/dist/components/ui/component-preview.d.ts +0 -10
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Personal React + TypeScript UI kit for dashboard projects. The goal is to keep s
|
|
|
4
4
|
|
|
5
5
|
## What belongs here
|
|
6
6
|
|
|
7
|
-
This package contains UI primitives, reusable wrappers, generic hooks, formatting helpers, CLI/registry helpers, and dashboard-ready components.
|
|
7
|
+
This package contains UI primitives, reusable wrappers, generic hooks, formatting helpers, CLI/registry helpers, and dashboard-ready components.
|
|
8
8
|
|
|
9
9
|
Good candidates:
|
|
10
10
|
|
|
@@ -114,7 +114,6 @@ import { Breadcrumbs, SidebarNav } from "azamat-ui-kit"
|
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
116
|
npm install
|
|
117
|
-
npm run dev
|
|
118
117
|
npm run build
|
|
119
118
|
```
|
|
120
119
|
|
|
@@ -298,26 +297,4 @@ function ProductsTable() {
|
|
|
298
297
|
}
|
|
299
298
|
```
|
|
300
299
|
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
Phase 1 added low-risk generic wrappers: ModalShell, SheetShell, ConfirmDialog, DialogActions, Pagination, SimpleSelect, MoneyInput, QuantityInput, useSessionStorageState, useBeforeUnloadWhenDirty, useIsMobile.
|
|
304
|
-
|
|
305
|
-
Phase 2 added form and async-select layer: AsyncSelect base, FormFieldShell, FormInput, FormSelect, FormAsyncSelect, FormTextarea, FormSwitch, Textarea/Switch exports and react-hook-form peer dependency.
|
|
306
|
-
|
|
307
|
-
Phase 3 improved async select: AsyncMultiSelect, grouped options, quick create, selected option preload, local option cache, selected count labels.
|
|
308
|
-
|
|
309
|
-
Phase 4 added data display layer: DataTable, DataTablePagination, DataTableToolbar, EmptyState, LoadingState, StatusBadge.
|
|
310
|
-
|
|
311
|
-
Phase 5 added dashboard helpers: ActionMenu, PageHeader, FilterBar, StatCard, DataTableColumnVisibilityMenu.
|
|
312
|
-
|
|
313
|
-
Phase 6 added layout/table/input/hook helpers: AppShell, AppHeader, AppSidebar, Checkbox, createDataTableSelectColumn, DataTableSortableHeader, MaskedInput, PhoneInput, useDisclosure, useDebouncedValue, useDebouncedCallback.
|
|
314
|
-
|
|
315
|
-
Phase 7 changed CSS strategy: package entry no longer imports global CSS; `azamat-ui-kit init` writes theme/dark-light tokens into the consumer app global CSS file.
|
|
316
|
-
|
|
317
|
-
Phase 8 added advanced inputs and form wrappers: ClearableInput, SearchInput, PasswordInput, NumberInput, DateInput, DateRangeInput, FormSearchInput, FormPasswordInput, FormNumberInput, FormPhoneInput, FormDateInput, FormDateRangeInput.
|
|
318
|
-
|
|
319
|
-
Phase 9 added data table action helpers: DataTableRowActions, createDataTableActionsColumn, DataTableBulkActions.
|
|
320
|
-
|
|
321
|
-
Phase 10 added notification and command helpers: ToastProvider, useToast, CommandPalette, useCommandPaletteShortcut.
|
|
322
|
-
|
|
323
|
-
Next phase should add calendar / popover date picker and demo playground.
|
|
300
|
+
The library repo only contains reusable package source, CLI helpers, registry templates, tests, and release files. Public docs, blocks, templates showcase pages, and the marketing site live in the separate `azamat-ui` Next.js app.
|