@jameskabz/nextcraft-ui 0.6.15 → 0.7.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.
- package/README.md +37 -3
- package/dist/components/craft-button.cjs +64 -4
- package/dist/components/craft-button.cjs.map +1 -1
- package/dist/components/craft-button.d.cts +5 -2
- package/dist/components/craft-button.d.ts +5 -2
- package/dist/components/craft-button.js +65 -5
- package/dist/components/craft-button.js.map +1 -1
- package/dist/components/craft-checkbox.cjs +2 -2
- package/dist/components/craft-checkbox.cjs.map +1 -1
- package/dist/components/craft-checkbox.js +2 -2
- package/dist/components/craft-checkbox.js.map +1 -1
- package/dist/components/craft-create-edit-drawer.cjs +5 -3
- package/dist/components/craft-create-edit-drawer.cjs.map +1 -1
- package/dist/components/craft-create-edit-drawer.js +5 -3
- package/dist/components/craft-create-edit-drawer.js.map +1 -1
- package/dist/components/craft-data-table-header.cjs +74 -0
- package/dist/components/craft-data-table-header.cjs.map +1 -0
- package/dist/components/craft-data-table-header.d.cts +17 -0
- package/dist/components/craft-data-table-header.d.ts +17 -0
- package/dist/components/craft-data-table-header.js +50 -0
- package/dist/components/craft-data-table-header.js.map +1 -0
- package/dist/components/craft-data-table-pagination.cjs +107 -0
- package/dist/components/craft-data-table-pagination.cjs.map +1 -0
- package/dist/components/craft-data-table-pagination.d.cts +25 -0
- package/dist/components/craft-data-table-pagination.d.ts +25 -0
- package/dist/components/craft-data-table-pagination.js +83 -0
- package/dist/components/craft-data-table-pagination.js.map +1 -0
- package/dist/components/craft-data-table.cjs +424 -192
- package/dist/components/craft-data-table.cjs.map +1 -1
- package/dist/components/craft-data-table.d.cts +61 -9
- package/dist/components/craft-data-table.d.ts +61 -9
- package/dist/components/craft-data-table.js +424 -192
- package/dist/components/craft-data-table.js.map +1 -1
- package/dist/components/craft-form-field.cjs +67 -11
- package/dist/components/craft-form-field.cjs.map +1 -1
- package/dist/components/craft-form-field.d.cts +4 -1
- package/dist/components/craft-form-field.d.ts +4 -1
- package/dist/components/craft-form-field.js +57 -11
- package/dist/components/craft-form-field.js.map +1 -1
- package/dist/components/craft-form-modal.cjs +29 -28
- package/dist/components/craft-form-modal.cjs.map +1 -1
- package/dist/components/craft-form-modal.js +29 -28
- package/dist/components/craft-form-modal.js.map +1 -1
- package/dist/components/craft-form.cjs +5 -3
- package/dist/components/craft-form.cjs.map +1 -1
- package/dist/components/craft-form.js +5 -3
- package/dist/components/craft-form.js.map +1 -1
- package/dist/components/craft-icon.cjs +26 -32
- package/dist/components/craft-icon.cjs.map +1 -1
- package/dist/components/craft-icon.d.cts +1 -2
- package/dist/components/craft-icon.d.ts +1 -2
- package/dist/components/craft-icon.js +36 -32
- package/dist/components/craft-icon.js.map +1 -1
- package/dist/components/craft-loader.cjs +195 -0
- package/dist/components/craft-loader.cjs.map +1 -0
- package/dist/components/craft-loader.d.cts +21 -0
- package/dist/components/craft-loader.d.ts +21 -0
- package/dist/components/craft-loader.js +171 -0
- package/dist/components/craft-loader.js.map +1 -0
- package/dist/components/craft-switch.cjs +4 -11
- package/dist/components/craft-switch.cjs.map +1 -1
- package/dist/components/craft-switch.js +4 -11
- package/dist/components/craft-switch.js.map +1 -1
- package/dist/components/layout/app-template.cjs +2 -3
- package/dist/components/layout/app-template.cjs.map +1 -1
- package/dist/components/layout/app-template.d.cts +1 -2
- package/dist/components/layout/app-template.d.ts +1 -2
- package/dist/components/layout/app-template.js +2 -3
- package/dist/components/layout/app-template.js.map +1 -1
- package/dist/index.cjs +9 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/styles.css +245 -32
- package/package.json +8 -8
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export { CraftButton } from \"./components/craft-button\";\nexport type { CraftButtonProps } from \"./components/craft-button\";\n\nexport { GlassCard } from \"./components/glass-card\";\nexport type { GlassCardProps } from \"./components/glass-card\";\n\nexport { CraftInput } from \"./components/craft-input\";\nexport type { CraftInputProps } from \"./components/craft-input\";\n\nexport { CraftTextarea } from \"./components/craft-textarea\";\nexport type { CraftTextareaProps } from \"./components/craft-textarea\";\n\nexport { CraftSelect } from \"./components/craft-select\";\nexport type { CraftSelectProps } from \"./components/craft-select\";\n\nexport { CraftCheckbox } from \"./components/craft-checkbox\";\nexport type { CraftCheckboxProps } from \"./components/craft-checkbox\";\n\nexport { CraftSwitch } from \"./components/craft-switch\";\nexport type { CraftSwitchProps } from \"./components/craft-switch\";\n\nexport { CraftBadge } from \"./components/craft-badge\";\nexport type { CraftBadgeProps } from \"./components/craft-badge\";\n\nexport { CraftAlert } from \"./components/craft-alert\";\nexport type { CraftAlertProps } from \"./components/craft-alert\";\n\nexport { CraftErrorState } from \"./components/craft-error-state\";\nexport type { CraftErrorStateProps } from \"./components/craft-error-state\";\n\nexport { CraftLoadingState } from \"./components/craft-loading-state\";\nexport type { CraftLoadingStateProps } from \"./components/craft-loading-state\";\n\nexport { CraftCard } from \"./components/craft-card\";\nexport type { CraftCardProps } from \"./components/craft-card\";\n\nexport { CraftModal } from \"./components/craft-modal\";\nexport type { CraftModalProps } from \"./components/craft-modal\";\n\nexport { CraftDrawer } from \"./components/craft-drawer\";\nexport type { CraftDrawerProps } from \"./components/craft-drawer\";\n\nexport { CraftTabs } from \"./components/craft-tabs\";\nexport type { CraftTabsProps } from \"./components/craft-tabs\";\n\nexport { CraftTooltip } from \"./components/craft-tooltip\";\nexport type { CraftTooltipProps } from \"./components/craft-tooltip\";\n\nexport { CraftToastHost, useCraftToast } from \"./components/craft-toast\";\nexport type { CraftToast, CraftToastHostProps } from \"./components/craft-toast\";\n\nexport { CraftSkeleton } from \"./components/craft-skeleton\";\nexport type { CraftSkeletonProps } from \"./components/craft-skeleton\";\n\nexport { CraftEmptyState } from \"./components/craft-empty-state\";\nexport type { CraftEmptyStateProps } from \"./components/craft-empty-state\";\n\nexport { CraftPopover } from \"./components/craft-popover\";\nexport type { CraftPopoverProps } from \"./components/craft-popover\";\n\nexport { CraftDropdownMenu } from \"./components/craft-dropdown-menu\";\nexport type { CraftDropdownMenuProps, CraftDropdownItem } from \"./components/craft-dropdown-menu\";\n\nexport { CraftCommandPalette } from \"./components/craft-command-palette\";\nexport type { CraftCommandPaletteProps, CraftCommandItem } from \"./components/craft-command-palette\";\n\nexport { CraftLink } from \"./components/craft-link\";\nexport type { CraftLinkProps } from \"./components/craft-link\";\n\nexport { CraftStatCard } from \"./components/craft-stat-card\";\nexport type { CraftStatCardProps } from \"./components/craft-stat-card\";\n\nexport { CraftDatePicker } from \"./components/craft-date-picker\";\nexport type { CraftDatePickerProps } from \"./components/craft-date-picker\";\n\nexport { CraftIcon, CraftIconProvider } from \"./components/craft-icon\";\nexport type {\n CraftIconProps,\n CraftIconProviderProps,\n CraftIconRegistry,\n} from \"./components/craft-icon\";\n\nexport { CraftNumberInput } from \"./components/craft-number-input\";\nexport type { CraftNumberInputProps } from \"./components/craft-number-input\";\n\nexport { CraftCurrencyInput } from \"./components/craft-currency-input\";\nexport type { CraftCurrencyInputProps } from \"./components/craft-currency-input\";\n\nexport { CraftForm } from \"./components/craft-form\";\nexport type { CraftFormProps } from \"./components/craft-form\";\n\nexport { CraftFormModal } from \"./components/craft-form-modal\";\nexport type { CraftFormModalProps, CraftFormModalField } from \"./components/craft-form-modal\";\n\nexport { CraftFormField } from \"./components/craft-form-field\";\nexport type { CraftFormFieldProps, CraftFormFieldOption, CraftFormFieldType } from \"./components/craft-form-field\";\n\nexport {
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export { CraftButton } from \"./components/craft-button\";\nexport type { CraftButtonProps } from \"./components/craft-button\";\n\nexport { GlassCard } from \"./components/glass-card\";\nexport type { GlassCardProps } from \"./components/glass-card\";\n\nexport { CraftInput } from \"./components/craft-input\";\nexport type { CraftInputProps } from \"./components/craft-input\";\n\nexport { CraftTextarea } from \"./components/craft-textarea\";\nexport type { CraftTextareaProps } from \"./components/craft-textarea\";\n\nexport { CraftSelect } from \"./components/craft-select\";\nexport type { CraftSelectProps } from \"./components/craft-select\";\n\nexport { CraftCheckbox } from \"./components/craft-checkbox\";\nexport type { CraftCheckboxProps } from \"./components/craft-checkbox\";\n\nexport { CraftSwitch } from \"./components/craft-switch\";\nexport type { CraftSwitchProps } from \"./components/craft-switch\";\n\nexport { CraftBadge } from \"./components/craft-badge\";\nexport type { CraftBadgeProps } from \"./components/craft-badge\";\n\nexport { CraftAlert } from \"./components/craft-alert\";\nexport type { CraftAlertProps } from \"./components/craft-alert\";\n\nexport { CraftErrorState } from \"./components/craft-error-state\";\nexport type { CraftErrorStateProps } from \"./components/craft-error-state\";\n\nexport { CraftLoadingState } from \"./components/craft-loading-state\";\nexport type { CraftLoadingStateProps } from \"./components/craft-loading-state\";\n\nexport { CraftCard } from \"./components/craft-card\";\nexport type { CraftCardProps } from \"./components/craft-card\";\n\nexport { CraftModal } from \"./components/craft-modal\";\nexport type { CraftModalProps } from \"./components/craft-modal\";\n\nexport { CraftDrawer } from \"./components/craft-drawer\";\nexport type { CraftDrawerProps } from \"./components/craft-drawer\";\n\nexport { CraftTabs } from \"./components/craft-tabs\";\nexport type { CraftTabsProps } from \"./components/craft-tabs\";\n\nexport { CraftTooltip } from \"./components/craft-tooltip\";\nexport type { CraftTooltipProps } from \"./components/craft-tooltip\";\n\nexport { CraftToastHost, useCraftToast } from \"./components/craft-toast\";\nexport type { CraftToast, CraftToastHostProps } from \"./components/craft-toast\";\n\nexport { CraftSkeleton } from \"./components/craft-skeleton\";\nexport type { CraftSkeletonProps } from \"./components/craft-skeleton\";\n\nexport { CraftEmptyState } from \"./components/craft-empty-state\";\nexport type { CraftEmptyStateProps } from \"./components/craft-empty-state\";\n\nexport { CraftPopover } from \"./components/craft-popover\";\nexport type { CraftPopoverProps } from \"./components/craft-popover\";\n\nexport { CraftDropdownMenu } from \"./components/craft-dropdown-menu\";\nexport type { CraftDropdownMenuProps, CraftDropdownItem } from \"./components/craft-dropdown-menu\";\n\nexport { CraftCommandPalette } from \"./components/craft-command-palette\";\nexport type { CraftCommandPaletteProps, CraftCommandItem } from \"./components/craft-command-palette\";\n\nexport { CraftLink } from \"./components/craft-link\";\nexport type { CraftLinkProps } from \"./components/craft-link\";\n\nexport { CraftStatCard } from \"./components/craft-stat-card\";\nexport type { CraftStatCardProps } from \"./components/craft-stat-card\";\n\nexport { CraftDatePicker } from \"./components/craft-date-picker\";\nexport type { CraftDatePickerProps } from \"./components/craft-date-picker\";\n\nexport { CraftIcon, CraftIconProvider } from \"./components/craft-icon\";\nexport type {\n CraftIconProps,\n CraftIconProviderProps,\n CraftIconRegistry,\n} from \"./components/craft-icon\";\n\nexport { CraftNumberInput } from \"./components/craft-number-input\";\nexport type { CraftNumberInputProps } from \"./components/craft-number-input\";\n\nexport { CraftCurrencyInput } from \"./components/craft-currency-input\";\nexport type { CraftCurrencyInputProps } from \"./components/craft-currency-input\";\n\nexport { CraftForm } from \"./components/craft-form\";\nexport type { CraftFormProps } from \"./components/craft-form\";\n\nexport { CraftFormModal } from \"./components/craft-form-modal\";\nexport type { CraftFormModalProps, CraftFormModalField } from \"./components/craft-form-modal\";\n\nexport { CraftFormField } from \"./components/craft-form-field\";\nexport type { CraftFormFieldProps, CraftFormFieldOption, CraftFormFieldType } from \"./components/craft-form-field\";\n\n\nexport { CraftConfirmDialog } from \"./components/craft-confirm-dialog\";\nexport type { CraftConfirmDialogProps } from \"./components/craft-confirm-dialog\";\n\nexport { CraftCreateEditDrawer } from \"./components/craft-create-edit-drawer\";\nexport type { CraftCreateEditDrawerProps } from \"./components/craft-create-edit-drawer\";\n\nexport { CraftFilterBar } from \"./components/craft-filter-bar\";\nexport type { CraftFilterBarProps } from \"./components/craft-filter-bar\";\n\nexport { CraftTableToolbar } from \"./components/craft-table-toolbar\";\nexport type { CraftTableToolbarProps } from \"./components/craft-table-toolbar\";\n\nexport { CraftDataTable } from \"./components/craft-data-table\";\nexport type {\n CraftDataTableProps,\n CraftDataTableColumn,\n CraftDataTableSort,\n CraftDataTableAction,\n} from \"./components/craft-data-table\";\nexport { CraftDataTableHeader } from \"./components/craft-data-table-header\";\nexport type { CraftDataTableHeaderProps } from \"./components/craft-data-table-header\";\nexport { CraftDataTablePagination } from \"./components/craft-data-table-pagination\";\nexport type { CraftDataTablePaginationProps } from \"./components/craft-data-table-pagination\";\nexport { CraftLoader } from \"./components/craft-loader\";\nexport type { CraftLoaderProps } from \"./components/craft-loader\";\n\nexport { CraftPagination } from \"./components/craft-pagination\";\nexport type { CraftPaginationProps } from \"./components/craft-pagination\";\n\nexport { AppShell } from \"./components/layout/app-shell\";\nexport type { AppShellProps } from \"./components/layout/app-shell\";\n\nexport { AppTemplate } from \"./components/layout/app-template\";\nexport type { AppTemplateProps } from \"./components/layout/app-template\";\n\nexport type {\n LayoutConfig,\n LayoutSidebarItem,\n LayoutBreadcrumbItem,\n LayoutIconName,\n} from \"./components/layout/layout-config\";\nexport { layoutConfigSchema } from \"./components/layout/layout-config\";\n\nexport { Sidebar } from \"./components/layout/sidebar\";\nexport type { SidebarProps, SidebarItem } from \"./components/layout/sidebar\";\n\nexport { TopNav } from \"./components/layout/top-nav\";\nexport type { TopNavProps } from \"./components/layout/top-nav\";\n\nexport { PageHeader } from \"./components/layout/page-header\";\nexport type { PageHeaderProps } from \"./components/layout/page-header\";\n\nexport { Breadcrumbs } from \"./components/layout/breadcrumbs\";\nexport type { BreadcrumbsProps, BreadcrumbItem } from \"./components/layout/breadcrumbs\";\n\nexport { AuthLayout } from \"./components/layout/auth-layout\";\nexport type { AuthLayoutProps } from \"./components/layout/auth-layout\";\n\nexport { Container } from \"./components/layout/container\";\nexport type { ContainerProps } from \"./components/layout/container\";\n\nexport { Grid } from \"./components/layout/grid\";\nexport type { GridProps } from \"./components/layout/grid\";\n\nexport { ThemeSwitcher } from \"./components/theme-switcher\";\nexport type { ThemeSwitcherProps } from \"./components/theme-switcher\";\n\nexport { ThemeProvider, useTheme } from \"./theme/theme-context\";\nexport type { ThemeName, ThemeMode } from \"./theme/theme-context\";\n"],"mappings":"AAAA,SAAS,mBAAmB;AAG5B,SAAS,iBAAiB;AAG1B,SAAS,kBAAkB;AAG3B,SAAS,qBAAqB;AAG9B,SAAS,mBAAmB;AAG5B,SAAS,qBAAqB;AAG9B,SAAS,mBAAmB;AAG5B,SAAS,kBAAkB;AAG3B,SAAS,kBAAkB;AAG3B,SAAS,uBAAuB;AAGhC,SAAS,yBAAyB;AAGlC,SAAS,iBAAiB;AAG1B,SAAS,kBAAkB;AAG3B,SAAS,mBAAmB;AAG5B,SAAS,iBAAiB;AAG1B,SAAS,oBAAoB;AAG7B,SAAS,gBAAgB,qBAAqB;AAG9C,SAAS,qBAAqB;AAG9B,SAAS,uBAAuB;AAGhC,SAAS,oBAAoB;AAG7B,SAAS,yBAAyB;AAGlC,SAAS,2BAA2B;AAGpC,SAAS,iBAAiB;AAG1B,SAAS,qBAAqB;AAG9B,SAAS,uBAAuB;AAGhC,SAAS,WAAW,yBAAyB;AAO7C,SAAS,wBAAwB;AAGjC,SAAS,0BAA0B;AAGnC,SAAS,iBAAiB;AAG1B,SAAS,sBAAsB;AAG/B,SAAS,sBAAsB;AAI/B,SAAS,0BAA0B;AAGnC,SAAS,6BAA6B;AAGtC,SAAS,sBAAsB;AAG/B,SAAS,yBAAyB;AAGlC,SAAS,sBAAsB;AAO/B,SAAS,4BAA4B;AAErC,SAAS,gCAAgC;AAEzC,SAAS,mBAAmB;AAG5B,SAAS,uBAAuB;AAGhC,SAAS,gBAAgB;AAGzB,SAAS,mBAAmB;AAS5B,SAAS,0BAA0B;AAEnC,SAAS,eAAe;AAGxB,SAAS,cAAc;AAGvB,SAAS,kBAAkB;AAG3B,SAAS,mBAAmB;AAG5B,SAAS,kBAAkB;AAG3B,SAAS,iBAAiB;AAG1B,SAAS,YAAY;AAGrB,SAAS,qBAAqB;AAG9B,SAAS,eAAe,gBAAgB;","names":[]}
|
package/dist/styles.css
CHANGED
|
@@ -44,12 +44,16 @@
|
|
|
44
44
|
--font-weight-semibold: 600;
|
|
45
45
|
--font-weight-bold: 700;
|
|
46
46
|
--tracking-wide: 0.025em;
|
|
47
|
+
--radius-sm: 0.25rem;
|
|
47
48
|
--radius-md: 0.375rem;
|
|
48
49
|
--radius-lg: 0.5rem;
|
|
49
50
|
--radius-xl: 0.75rem;
|
|
50
51
|
--radius-2xl: 1rem;
|
|
51
52
|
--radius-3xl: 1.5rem;
|
|
52
53
|
--animate-spin: spin 1s linear infinite;
|
|
54
|
+
--animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
|
|
55
|
+
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
56
|
+
--animate-bounce: bounce 1s infinite;
|
|
53
57
|
--blur-sm: 8px;
|
|
54
58
|
--blur-md: 12px;
|
|
55
59
|
--blur-xl: 24px;
|
|
@@ -212,6 +216,9 @@
|
|
|
212
216
|
.pointer-events-none {
|
|
213
217
|
pointer-events: none;
|
|
214
218
|
}
|
|
219
|
+
.visible {
|
|
220
|
+
visibility: visible;
|
|
221
|
+
}
|
|
215
222
|
.sr-only {
|
|
216
223
|
position: absolute;
|
|
217
224
|
width: 1px;
|
|
@@ -238,17 +245,14 @@
|
|
|
238
245
|
.top-0 {
|
|
239
246
|
top: calc(var(--spacing) * 0);
|
|
240
247
|
}
|
|
241
|
-
.top-0\.5 {
|
|
242
|
-
top: calc(var(--spacing) * 0.5);
|
|
243
|
-
}
|
|
244
248
|
.top-1\/2 {
|
|
245
249
|
top: calc(1/2 * 100%);
|
|
246
250
|
}
|
|
247
251
|
.top-6 {
|
|
248
252
|
top: calc(var(--spacing) * 6);
|
|
249
253
|
}
|
|
250
|
-
.top-
|
|
251
|
-
top: calc(var(--spacing) *
|
|
254
|
+
.top-12 {
|
|
255
|
+
top: calc(var(--spacing) * 12);
|
|
252
256
|
}
|
|
253
257
|
.top-full {
|
|
254
258
|
top: 100%;
|
|
@@ -271,9 +275,6 @@
|
|
|
271
275
|
.left-0 {
|
|
272
276
|
left: calc(var(--spacing) * 0);
|
|
273
277
|
}
|
|
274
|
-
.left-0\.5 {
|
|
275
|
-
left: calc(var(--spacing) * 0.5);
|
|
276
|
-
}
|
|
277
278
|
.left-1\/2 {
|
|
278
279
|
left: calc(1/2 * 100%);
|
|
279
280
|
}
|
|
@@ -295,6 +296,18 @@
|
|
|
295
296
|
.z-50 {
|
|
296
297
|
z-index: 50;
|
|
297
298
|
}
|
|
299
|
+
.row-1 {
|
|
300
|
+
grid-row: 1;
|
|
301
|
+
}
|
|
302
|
+
.row-2 {
|
|
303
|
+
grid-row: 2;
|
|
304
|
+
}
|
|
305
|
+
.row-3 {
|
|
306
|
+
grid-row: 3;
|
|
307
|
+
}
|
|
308
|
+
.row-4 {
|
|
309
|
+
grid-row: 4;
|
|
310
|
+
}
|
|
298
311
|
.mx-2 {
|
|
299
312
|
margin-inline: calc(var(--spacing) * 2);
|
|
300
313
|
}
|
|
@@ -325,6 +338,9 @@
|
|
|
325
338
|
.mt-auto {
|
|
326
339
|
margin-top: auto;
|
|
327
340
|
}
|
|
341
|
+
.mr-2 {
|
|
342
|
+
margin-right: calc(var(--spacing) * 2);
|
|
343
|
+
}
|
|
328
344
|
.mb-2 {
|
|
329
345
|
margin-bottom: calc(var(--spacing) * 2);
|
|
330
346
|
}
|
|
@@ -334,6 +350,9 @@
|
|
|
334
350
|
.mb-6 {
|
|
335
351
|
margin-bottom: calc(var(--spacing) * 6);
|
|
336
352
|
}
|
|
353
|
+
.ml-1 {
|
|
354
|
+
margin-left: calc(var(--spacing) * 1);
|
|
355
|
+
}
|
|
337
356
|
.block {
|
|
338
357
|
display: block;
|
|
339
358
|
}
|
|
@@ -406,6 +425,9 @@
|
|
|
406
425
|
.w-3 {
|
|
407
426
|
width: calc(var(--spacing) * 3);
|
|
408
427
|
}
|
|
428
|
+
.w-3\/4 {
|
|
429
|
+
width: calc(3/4 * 100%);
|
|
430
|
+
}
|
|
409
431
|
.w-4 {
|
|
410
432
|
width: calc(var(--spacing) * 4);
|
|
411
433
|
}
|
|
@@ -430,8 +452,8 @@
|
|
|
430
452
|
.w-40 {
|
|
431
453
|
width: calc(var(--spacing) * 40);
|
|
432
454
|
}
|
|
433
|
-
.w-
|
|
434
|
-
width: calc(var(--spacing) *
|
|
455
|
+
.w-56 {
|
|
456
|
+
width: calc(var(--spacing) * 56);
|
|
435
457
|
}
|
|
436
458
|
.w-full {
|
|
437
459
|
width: 100%;
|
|
@@ -466,9 +488,15 @@
|
|
|
466
488
|
.min-w-48 {
|
|
467
489
|
min-width: calc(var(--spacing) * 48);
|
|
468
490
|
}
|
|
491
|
+
.min-w-full {
|
|
492
|
+
min-width: 100%;
|
|
493
|
+
}
|
|
469
494
|
.flex-1 {
|
|
470
495
|
flex: 1;
|
|
471
496
|
}
|
|
497
|
+
.shrink-0 {
|
|
498
|
+
flex-shrink: 0;
|
|
499
|
+
}
|
|
472
500
|
.border-collapse {
|
|
473
501
|
border-collapse: collapse;
|
|
474
502
|
}
|
|
@@ -507,6 +535,15 @@
|
|
|
507
535
|
.transform {
|
|
508
536
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
509
537
|
}
|
|
538
|
+
.animate-bounce {
|
|
539
|
+
animation: var(--animate-bounce);
|
|
540
|
+
}
|
|
541
|
+
.animate-ping {
|
|
542
|
+
animation: var(--animate-ping);
|
|
543
|
+
}
|
|
544
|
+
.animate-pulse {
|
|
545
|
+
animation: var(--animate-pulse);
|
|
546
|
+
}
|
|
510
547
|
.animate-spin {
|
|
511
548
|
animation: var(--animate-spin);
|
|
512
549
|
}
|
|
@@ -534,12 +571,18 @@
|
|
|
534
571
|
.flex-col {
|
|
535
572
|
flex-direction: column;
|
|
536
573
|
}
|
|
574
|
+
.flex-col-reverse {
|
|
575
|
+
flex-direction: column-reverse;
|
|
576
|
+
}
|
|
537
577
|
.flex-wrap {
|
|
538
578
|
flex-wrap: wrap;
|
|
539
579
|
}
|
|
540
580
|
.items-center {
|
|
541
581
|
align-items: center;
|
|
542
582
|
}
|
|
583
|
+
.items-end {
|
|
584
|
+
align-items: flex-end;
|
|
585
|
+
}
|
|
543
586
|
.items-start {
|
|
544
587
|
align-items: flex-start;
|
|
545
588
|
}
|
|
@@ -552,6 +595,9 @@
|
|
|
552
595
|
.justify-end {
|
|
553
596
|
justify-content: flex-end;
|
|
554
597
|
}
|
|
598
|
+
.gap-1 {
|
|
599
|
+
gap: calc(var(--spacing) * 1);
|
|
600
|
+
}
|
|
555
601
|
.gap-2 {
|
|
556
602
|
gap: calc(var(--spacing) * 2);
|
|
557
603
|
}
|
|
@@ -633,12 +679,23 @@
|
|
|
633
679
|
margin-block-end: calc(calc(var(--spacing) * 12) * calc(1 - var(--tw-space-y-reverse)));
|
|
634
680
|
}
|
|
635
681
|
}
|
|
682
|
+
.truncate {
|
|
683
|
+
overflow: hidden;
|
|
684
|
+
text-overflow: ellipsis;
|
|
685
|
+
white-space: nowrap;
|
|
686
|
+
}
|
|
636
687
|
.overflow-hidden {
|
|
637
688
|
overflow: hidden;
|
|
638
689
|
}
|
|
690
|
+
.overflow-x-auto {
|
|
691
|
+
overflow-x: auto;
|
|
692
|
+
}
|
|
639
693
|
.overflow-y-auto {
|
|
640
694
|
overflow-y: auto;
|
|
641
695
|
}
|
|
696
|
+
.rounded {
|
|
697
|
+
border-radius: 0.25rem;
|
|
698
|
+
}
|
|
642
699
|
.rounded-2xl {
|
|
643
700
|
border-radius: var(--radius-2xl);
|
|
644
701
|
}
|
|
@@ -654,6 +711,9 @@
|
|
|
654
711
|
.rounded-md {
|
|
655
712
|
border-radius: var(--radius-md);
|
|
656
713
|
}
|
|
714
|
+
.rounded-sm {
|
|
715
|
+
border-radius: var(--radius-sm);
|
|
716
|
+
}
|
|
657
717
|
.rounded-xl {
|
|
658
718
|
border-radius: var(--radius-xl);
|
|
659
719
|
}
|
|
@@ -709,27 +769,33 @@
|
|
|
709
769
|
.border-\[rgb\(var\(--nc-accent-2\)\/0\.45\)\] {
|
|
710
770
|
border-color: rgb(var(--nc-accent-2)/0.45);
|
|
711
771
|
}
|
|
772
|
+
.border-\[rgb\(var\(--nc-accent-3\)\)\] {
|
|
773
|
+
border-color: rgb(var(--nc-accent-3));
|
|
774
|
+
}
|
|
712
775
|
.border-\[rgb\(var\(--nc-accent-3\)\/0\.45\)\] {
|
|
713
776
|
border-color: rgb(var(--nc-accent-3)/0.45);
|
|
714
777
|
}
|
|
715
778
|
.border-\[rgb\(var\(--nc-accent-3\)\/0\.65\)\] {
|
|
716
779
|
border-color: rgb(var(--nc-accent-3)/0.65);
|
|
717
780
|
}
|
|
781
|
+
.border-\[rgb\(var\(--nc-border\)\/0\.2\)\] {
|
|
782
|
+
border-color: rgb(var(--nc-border)/0.2);
|
|
783
|
+
}
|
|
718
784
|
.border-\[rgb\(var\(--nc-border\)\/0\.3\)\] {
|
|
719
785
|
border-color: rgb(var(--nc-border)/0.3);
|
|
720
786
|
}
|
|
721
787
|
.border-\[rgb\(var\(--nc-border\)\/0\.15\)\] {
|
|
722
788
|
border-color: rgb(var(--nc-border)/0.15);
|
|
723
789
|
}
|
|
790
|
+
.border-\[rgb\(var\(--nc-border\)\/0\.25\)\] {
|
|
791
|
+
border-color: rgb(var(--nc-border)/0.25);
|
|
792
|
+
}
|
|
724
793
|
.border-\[rgb\(var\(--nc-border\)\/0\.35\)\] {
|
|
725
794
|
border-color: rgb(var(--nc-border)/0.35);
|
|
726
795
|
}
|
|
727
796
|
.border-\[rgb\(var\(--nc-border\)\/0\.45\)\] {
|
|
728
797
|
border-color: rgb(var(--nc-border)/0.45);
|
|
729
798
|
}
|
|
730
|
-
.border-\[rgb\(var\(--nc-fg-muted\)\)\] {
|
|
731
|
-
border-color: rgb(var(--nc-fg-muted));
|
|
732
|
-
}
|
|
733
799
|
.border-amber-400\/40 {
|
|
734
800
|
border-color: color-mix(in srgb, oklch(82.8% 0.189 84.429) 40%, transparent);
|
|
735
801
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -751,6 +817,9 @@
|
|
|
751
817
|
.border-slate-300 {
|
|
752
818
|
border-color: var(--color-slate-300);
|
|
753
819
|
}
|
|
820
|
+
.border-transparent {
|
|
821
|
+
border-color: transparent;
|
|
822
|
+
}
|
|
754
823
|
.border-white\/10 {
|
|
755
824
|
border-color: color-mix(in srgb, #fff 10%, transparent);
|
|
756
825
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -790,9 +859,6 @@
|
|
|
790
859
|
.bg-\[rgb\(var\(--nc-accent-1\)\/0\.3\)\] {
|
|
791
860
|
background-color: rgb(var(--nc-accent-1)/0.3);
|
|
792
861
|
}
|
|
793
|
-
.bg-\[rgb\(var\(--nc-accent-1\)\/0\.08\)\] {
|
|
794
|
-
background-color: rgb(var(--nc-accent-1)/0.08);
|
|
795
|
-
}
|
|
796
862
|
.bg-\[rgb\(var\(--nc-accent-1\)\/0\.12\)\] {
|
|
797
863
|
background-color: rgb(var(--nc-accent-1)/0.12);
|
|
798
864
|
}
|
|
@@ -811,9 +877,15 @@
|
|
|
811
877
|
.bg-\[rgb\(var\(--nc-accent-3\)\/0\.18\)\] {
|
|
812
878
|
background-color: rgb(var(--nc-accent-3)/0.18);
|
|
813
879
|
}
|
|
880
|
+
.bg-\[rgb\(var\(--nc-border\)\/0\.3\)\] {
|
|
881
|
+
background-color: rgb(var(--nc-border)/0.3);
|
|
882
|
+
}
|
|
814
883
|
.bg-\[rgb\(var\(--nc-surface\)\/0\.2\)\] {
|
|
815
884
|
background-color: rgb(var(--nc-surface)/0.2);
|
|
816
885
|
}
|
|
886
|
+
.bg-\[rgb\(var\(--nc-surface\)\/0\.04\)\] {
|
|
887
|
+
background-color: rgb(var(--nc-surface)/0.04);
|
|
888
|
+
}
|
|
817
889
|
.bg-\[rgb\(var\(--nc-surface\)\/0\.08\)\] {
|
|
818
890
|
background-color: rgb(var(--nc-surface)/0.08);
|
|
819
891
|
}
|
|
@@ -826,9 +898,6 @@
|
|
|
826
898
|
.bg-\[rgb\(var\(--nc-surface\)\/1\.52\)\] {
|
|
827
899
|
background-color: rgb(var(--nc-surface)/1.52);
|
|
828
900
|
}
|
|
829
|
-
.bg-\[rgb\(var\(--nc-surface-muted\)\/0\.9\)\] {
|
|
830
|
-
background-color: rgb(var(--nc-surface-muted)/0.9);
|
|
831
|
-
}
|
|
832
901
|
.bg-background {
|
|
833
902
|
background-color: var(--background);
|
|
834
903
|
}
|
|
@@ -907,6 +976,9 @@
|
|
|
907
976
|
.bg-clip-text {
|
|
908
977
|
background-clip: text;
|
|
909
978
|
}
|
|
979
|
+
.p-0 {
|
|
980
|
+
padding: calc(var(--spacing) * 0);
|
|
981
|
+
}
|
|
910
982
|
.p-2 {
|
|
911
983
|
padding: calc(var(--spacing) * 2);
|
|
912
984
|
}
|
|
@@ -955,11 +1027,17 @@
|
|
|
955
1027
|
.py-4 {
|
|
956
1028
|
padding-block: calc(var(--spacing) * 4);
|
|
957
1029
|
}
|
|
1030
|
+
.py-5 {
|
|
1031
|
+
padding-block: calc(var(--spacing) * 5);
|
|
1032
|
+
}
|
|
1033
|
+
.py-6 {
|
|
1034
|
+
padding-block: calc(var(--spacing) * 6);
|
|
1035
|
+
}
|
|
958
1036
|
.py-8 {
|
|
959
1037
|
padding-block: calc(var(--spacing) * 8);
|
|
960
1038
|
}
|
|
961
|
-
.py-
|
|
962
|
-
padding-block: calc(var(--spacing) *
|
|
1039
|
+
.py-12 {
|
|
1040
|
+
padding-block: calc(var(--spacing) * 12);
|
|
963
1041
|
}
|
|
964
1042
|
.py-16 {
|
|
965
1043
|
padding-block: calc(var(--spacing) * 16);
|
|
@@ -1020,6 +1098,9 @@
|
|
|
1020
1098
|
font-size: var(--text-xs);
|
|
1021
1099
|
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
1022
1100
|
}
|
|
1101
|
+
.text-\[11px\] {
|
|
1102
|
+
font-size: 11px;
|
|
1103
|
+
}
|
|
1023
1104
|
.font-bold {
|
|
1024
1105
|
--tw-font-weight: var(--font-weight-bold);
|
|
1025
1106
|
font-weight: var(--font-weight-bold);
|
|
@@ -1043,12 +1124,18 @@
|
|
|
1043
1124
|
.whitespace-nowrap {
|
|
1044
1125
|
white-space: nowrap;
|
|
1045
1126
|
}
|
|
1127
|
+
.whitespace-pre-wrap {
|
|
1128
|
+
white-space: pre-wrap;
|
|
1129
|
+
}
|
|
1046
1130
|
.text-\[color\:rgb\(var\(--nc-accent-1\)\)\] {
|
|
1047
1131
|
color: rgb(var(--nc-accent-1));
|
|
1048
1132
|
}
|
|
1049
1133
|
.text-\[rgb\(var\(--nc-accent-1\)\)\] {
|
|
1050
1134
|
color: rgb(var(--nc-accent-1));
|
|
1051
1135
|
}
|
|
1136
|
+
.text-\[rgb\(var\(--nc-accent-2\)\)\] {
|
|
1137
|
+
color: rgb(var(--nc-accent-2));
|
|
1138
|
+
}
|
|
1052
1139
|
.text-\[rgb\(var\(--nc-accent-3\)\)\] {
|
|
1053
1140
|
color: rgb(var(--nc-accent-3));
|
|
1054
1141
|
}
|
|
@@ -1070,6 +1157,9 @@
|
|
|
1070
1157
|
.text-amber-200 {
|
|
1071
1158
|
color: var(--color-amber-200);
|
|
1072
1159
|
}
|
|
1160
|
+
.text-current {
|
|
1161
|
+
color: currentcolor;
|
|
1162
|
+
}
|
|
1073
1163
|
.text-emerald-200 {
|
|
1074
1164
|
color: var(--color-emerald-200);
|
|
1075
1165
|
}
|
|
@@ -1125,6 +1215,9 @@
|
|
|
1125
1215
|
.opacity-0 {
|
|
1126
1216
|
opacity: 0%;
|
|
1127
1217
|
}
|
|
1218
|
+
.opacity-25 {
|
|
1219
|
+
opacity: 25%;
|
|
1220
|
+
}
|
|
1128
1221
|
.opacity-40 {
|
|
1129
1222
|
opacity: 40%;
|
|
1130
1223
|
}
|
|
@@ -1134,6 +1227,9 @@
|
|
|
1134
1227
|
.opacity-60 {
|
|
1135
1228
|
opacity: 60%;
|
|
1136
1229
|
}
|
|
1230
|
+
.opacity-75 {
|
|
1231
|
+
opacity: 75%;
|
|
1232
|
+
}
|
|
1137
1233
|
.opacity-100 {
|
|
1138
1234
|
opacity: 100%;
|
|
1139
1235
|
}
|
|
@@ -1217,6 +1313,10 @@
|
|
|
1217
1313
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1218
1314
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1219
1315
|
}
|
|
1316
|
+
.ring {
|
|
1317
|
+
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1318
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1319
|
+
}
|
|
1220
1320
|
.outline {
|
|
1221
1321
|
outline-style: var(--tw-outline-style);
|
|
1222
1322
|
outline-width: 1px;
|
|
@@ -1280,12 +1380,6 @@
|
|
|
1280
1380
|
--tw-outline-style: none;
|
|
1281
1381
|
outline-style: none;
|
|
1282
1382
|
}
|
|
1283
|
-
.peer-checked\:translate-x-5 {
|
|
1284
|
-
&:is(:where(.peer):checked ~ *) {
|
|
1285
|
-
--tw-translate-x: calc(var(--spacing) * 5);
|
|
1286
|
-
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1287
|
-
}
|
|
1288
|
-
}
|
|
1289
1383
|
.peer-checked\:border-\[rgb\(var\(--nc-accent-1\)\)\] {
|
|
1290
1384
|
&:is(:where(.peer):checked ~ *) {
|
|
1291
1385
|
border-color: rgb(var(--nc-accent-1));
|
|
@@ -1301,11 +1395,6 @@
|
|
|
1301
1395
|
background-color: rgb(var(--nc-accent-1)/0.25);
|
|
1302
1396
|
}
|
|
1303
1397
|
}
|
|
1304
|
-
.peer-checked\:bg-\[rgb\(var\(--nc-surface-muted\)\)\] {
|
|
1305
|
-
&:is(:where(.peer):checked ~ *) {
|
|
1306
|
-
background-color: rgb(var(--nc-surface-muted));
|
|
1307
|
-
}
|
|
1308
|
-
}
|
|
1309
1398
|
.peer-checked\:opacity-100 {
|
|
1310
1399
|
&:is(:where(.peer):checked ~ *) {
|
|
1311
1400
|
opacity: 100%;
|
|
@@ -1370,6 +1459,11 @@
|
|
|
1370
1459
|
color: rgb(var(--nc-fg));
|
|
1371
1460
|
}
|
|
1372
1461
|
}
|
|
1462
|
+
.placeholder\:text-\[rgb\(var\(--nc-fg-muted\)\)\] {
|
|
1463
|
+
&::placeholder {
|
|
1464
|
+
color: rgb(var(--nc-fg-muted));
|
|
1465
|
+
}
|
|
1466
|
+
}
|
|
1373
1467
|
.placeholder\:text-\[rgb\(var\(--nc-fg-soft\)\)\] {
|
|
1374
1468
|
&::placeholder {
|
|
1375
1469
|
color: rgb(var(--nc-fg-soft));
|
|
@@ -1393,18 +1487,54 @@
|
|
|
1393
1487
|
inset: calc(var(--spacing) * 0);
|
|
1394
1488
|
}
|
|
1395
1489
|
}
|
|
1490
|
+
.before\:top-0\.5 {
|
|
1491
|
+
&::before {
|
|
1492
|
+
content: var(--tw-content);
|
|
1493
|
+
top: calc(var(--spacing) * 0.5);
|
|
1494
|
+
}
|
|
1495
|
+
}
|
|
1496
|
+
.before\:left-0\.5 {
|
|
1497
|
+
&::before {
|
|
1498
|
+
content: var(--tw-content);
|
|
1499
|
+
left: calc(var(--spacing) * 0.5);
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1396
1502
|
.before\:-z-10 {
|
|
1397
1503
|
&::before {
|
|
1398
1504
|
content: var(--tw-content);
|
|
1399
1505
|
z-index: calc(10 * -1);
|
|
1400
1506
|
}
|
|
1401
1507
|
}
|
|
1508
|
+
.before\:h-4 {
|
|
1509
|
+
&::before {
|
|
1510
|
+
content: var(--tw-content);
|
|
1511
|
+
height: calc(var(--spacing) * 4);
|
|
1512
|
+
}
|
|
1513
|
+
}
|
|
1514
|
+
.before\:w-4 {
|
|
1515
|
+
&::before {
|
|
1516
|
+
content: var(--tw-content);
|
|
1517
|
+
width: calc(var(--spacing) * 4);
|
|
1518
|
+
}
|
|
1519
|
+
}
|
|
1520
|
+
.before\:rounded-full {
|
|
1521
|
+
&::before {
|
|
1522
|
+
content: var(--tw-content);
|
|
1523
|
+
border-radius: calc(infinity * 1px);
|
|
1524
|
+
}
|
|
1525
|
+
}
|
|
1402
1526
|
.before\:rounded-xl {
|
|
1403
1527
|
&::before {
|
|
1404
1528
|
content: var(--tw-content);
|
|
1405
1529
|
border-radius: var(--radius-xl);
|
|
1406
1530
|
}
|
|
1407
1531
|
}
|
|
1532
|
+
.before\:bg-\[rgb\(var\(--nc-fg\)\/0\.92\)\] {
|
|
1533
|
+
&::before {
|
|
1534
|
+
content: var(--tw-content);
|
|
1535
|
+
background-color: rgb(var(--nc-fg)/0.92);
|
|
1536
|
+
}
|
|
1537
|
+
}
|
|
1408
1538
|
.before\:bg-linear-to-br {
|
|
1409
1539
|
&::before {
|
|
1410
1540
|
content: var(--tw-content);
|
|
@@ -1470,6 +1600,13 @@
|
|
|
1470
1600
|
opacity: 0%;
|
|
1471
1601
|
}
|
|
1472
1602
|
}
|
|
1603
|
+
.before\:shadow-\[0_1px_2px_rgba\(0\,0\,0\,0\.4\)\] {
|
|
1604
|
+
&::before {
|
|
1605
|
+
content: var(--tw-content);
|
|
1606
|
+
--tw-shadow: 0 1px 2px var(--tw-shadow-color, rgba(0,0,0,0.4));
|
|
1607
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1608
|
+
}
|
|
1609
|
+
}
|
|
1473
1610
|
.before\:blur-xl {
|
|
1474
1611
|
&::before {
|
|
1475
1612
|
content: var(--tw-content);
|
|
@@ -1477,6 +1614,14 @@
|
|
|
1477
1614
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
|
1478
1615
|
}
|
|
1479
1616
|
}
|
|
1617
|
+
.before\:transition-all {
|
|
1618
|
+
&::before {
|
|
1619
|
+
content: var(--tw-content);
|
|
1620
|
+
transition-property: all;
|
|
1621
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1622
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1623
|
+
}
|
|
1624
|
+
}
|
|
1480
1625
|
.before\:transition-opacity {
|
|
1481
1626
|
&::before {
|
|
1482
1627
|
content: var(--tw-content);
|
|
@@ -1485,6 +1630,13 @@
|
|
|
1485
1630
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1486
1631
|
}
|
|
1487
1632
|
}
|
|
1633
|
+
.before\:duration-200 {
|
|
1634
|
+
&::before {
|
|
1635
|
+
content: var(--tw-content);
|
|
1636
|
+
--tw-duration: 200ms;
|
|
1637
|
+
transition-duration: 200ms;
|
|
1638
|
+
}
|
|
1639
|
+
}
|
|
1488
1640
|
.before\:duration-300 {
|
|
1489
1641
|
&::before {
|
|
1490
1642
|
content: var(--tw-content);
|
|
@@ -1492,6 +1644,29 @@
|
|
|
1492
1644
|
transition-duration: 300ms;
|
|
1493
1645
|
}
|
|
1494
1646
|
}
|
|
1647
|
+
.before\:content-\[\'\'\] {
|
|
1648
|
+
&::before {
|
|
1649
|
+
--tw-content: '';
|
|
1650
|
+
content: var(--tw-content);
|
|
1651
|
+
}
|
|
1652
|
+
}
|
|
1653
|
+
.peer-checked\:before\:translate-x-5 {
|
|
1654
|
+
&:is(:where(.peer):checked ~ *) {
|
|
1655
|
+
&::before {
|
|
1656
|
+
content: var(--tw-content);
|
|
1657
|
+
--tw-translate-x: calc(var(--spacing) * 5);
|
|
1658
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1659
|
+
}
|
|
1660
|
+
}
|
|
1661
|
+
}
|
|
1662
|
+
.peer-checked\:before\:bg-\[rgb\(var\(--nc-fg\)\)\] {
|
|
1663
|
+
&:is(:where(.peer):checked ~ *) {
|
|
1664
|
+
&::before {
|
|
1665
|
+
content: var(--tw-content);
|
|
1666
|
+
background-color: rgb(var(--nc-fg));
|
|
1667
|
+
}
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1495
1670
|
.after\:absolute {
|
|
1496
1671
|
&::after {
|
|
1497
1672
|
content: var(--tw-content);
|
|
@@ -1657,6 +1832,13 @@
|
|
|
1657
1832
|
}
|
|
1658
1833
|
}
|
|
1659
1834
|
}
|
|
1835
|
+
.hover\:text-\[rgb\(var\(--nc-accent-2\)\)\] {
|
|
1836
|
+
&:hover {
|
|
1837
|
+
@media (hover: hover) {
|
|
1838
|
+
color: rgb(var(--nc-accent-2));
|
|
1839
|
+
}
|
|
1840
|
+
}
|
|
1841
|
+
}
|
|
1660
1842
|
.hover\:text-\[rgb\(var\(--nc-fg\)\)\] {
|
|
1661
1843
|
&:hover {
|
|
1662
1844
|
@media (hover: hover) {
|
|
@@ -1711,6 +1893,11 @@
|
|
|
1711
1893
|
border-color: rgb(var(--nc-accent-1)/0.8);
|
|
1712
1894
|
}
|
|
1713
1895
|
}
|
|
1896
|
+
.focus\:border-\[rgb\(var\(--nc-accent-3\)\)\] {
|
|
1897
|
+
&:focus {
|
|
1898
|
+
border-color: rgb(var(--nc-accent-3));
|
|
1899
|
+
}
|
|
1900
|
+
}
|
|
1714
1901
|
.focus\:shadow-\[0_0_30px_-5px_var\(--glow-color\)\] {
|
|
1715
1902
|
&:focus {
|
|
1716
1903
|
--tw-shadow: 0 0 30px -5px var(--tw-shadow-color, var(--glow-color));
|
|
@@ -1739,6 +1926,11 @@
|
|
|
1739
1926
|
--tw-ring-color: rgb(var(--nc-accent-1)/0.5);
|
|
1740
1927
|
}
|
|
1741
1928
|
}
|
|
1929
|
+
.focus\:ring-\[rgb\(var\(--nc-accent-3\)\/0\.35\)\] {
|
|
1930
|
+
&:focus {
|
|
1931
|
+
--tw-ring-color: rgb(var(--nc-accent-3)/0.35);
|
|
1932
|
+
}
|
|
1933
|
+
}
|
|
1742
1934
|
.focus\:outline-none {
|
|
1743
1935
|
&:focus {
|
|
1744
1936
|
--tw-outline-style: none;
|
|
@@ -2292,6 +2484,27 @@ body {
|
|
|
2292
2484
|
transform: rotate(360deg);
|
|
2293
2485
|
}
|
|
2294
2486
|
}
|
|
2487
|
+
@keyframes ping {
|
|
2488
|
+
75%, 100% {
|
|
2489
|
+
transform: scale(2);
|
|
2490
|
+
opacity: 0;
|
|
2491
|
+
}
|
|
2492
|
+
}
|
|
2493
|
+
@keyframes pulse {
|
|
2494
|
+
50% {
|
|
2495
|
+
opacity: 0.5;
|
|
2496
|
+
}
|
|
2497
|
+
}
|
|
2498
|
+
@keyframes bounce {
|
|
2499
|
+
0%, 100% {
|
|
2500
|
+
transform: translateY(-25%);
|
|
2501
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
2502
|
+
}
|
|
2503
|
+
50% {
|
|
2504
|
+
transform: none;
|
|
2505
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2506
|
+
}
|
|
2507
|
+
}
|
|
2295
2508
|
@layer properties {
|
|
2296
2509
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
2297
2510
|
*, ::before, ::after, ::backdrop {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jameskabz/nextcraft-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Next.js + Tailwind UI components with a bold, crafted aesthetic.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,19 +45,20 @@
|
|
|
45
45
|
"test:coverage": "echo \"No coverage configured\""
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"
|
|
48
|
+
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
|
49
|
+
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
|
50
|
+
"@fortawesome/react-fontawesome": "^3.1.1",
|
|
49
51
|
"next": "^16.1.4",
|
|
50
52
|
"react": "^19.2.3",
|
|
51
53
|
"react-dom": "^19.2.3",
|
|
52
54
|
"react-hook-form": "^7.71.1",
|
|
53
55
|
"tailwindcss": "^4"
|
|
54
56
|
},
|
|
55
|
-
"peerDependenciesMeta": {
|
|
56
|
-
"lucide-react": {
|
|
57
|
-
"optional": true
|
|
58
|
-
}
|
|
59
|
-
},
|
|
57
|
+
"peerDependenciesMeta": {},
|
|
60
58
|
"devDependencies": {
|
|
59
|
+
"@fortawesome/fontawesome-svg-core": "^6.7.2",
|
|
60
|
+
"@fortawesome/free-solid-svg-icons": "^6.7.2",
|
|
61
|
+
"@fortawesome/react-fontawesome": "^3.1.1",
|
|
61
62
|
"@tailwindcss/cli": "^4",
|
|
62
63
|
"@tailwindcss/postcss": "^4",
|
|
63
64
|
"@types/node": "^20",
|
|
@@ -66,7 +67,6 @@
|
|
|
66
67
|
"babel-plugin-react-compiler": "1.0.0",
|
|
67
68
|
"eslint": "^9",
|
|
68
69
|
"eslint-config-next": "16.1.4",
|
|
69
|
-
"lucide-react": "^0.563.0",
|
|
70
70
|
"next": "16.1.4",
|
|
71
71
|
"react": "19.2.3",
|
|
72
72
|
"react-dom": "19.2.3",
|