@dalexto/lexsys-registry 0.1.1 → 0.1.2
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/dist/index.js +12 -3
- package/package.json +2 -2
- package/templates/blocks/AuthForm/AuthForm.tsx +2 -2
- package/templates/blocks/AuthForm/AuthForm.types.ts +3 -3
- package/templates/blocks/CommandPalette/CommandPalette.tsx +4 -4
- package/templates/blocks/CommandPalette/CommandPalette.types.ts +2 -2
- package/templates/blocks/DataTable/DataTable.tsx +2 -2
- package/templates/blocks/DataTable/DataTable.types.ts +2 -2
- package/templates/blocks/FilterToolbar/FilterToolbar.tsx +4 -4
- package/templates/blocks/FilterToolbar/FilterToolbar.types.ts +4 -4
- package/templates/blocks/FormField/FormField.tsx +1 -1
- package/templates/blocks/FormField/FormField.types.ts +1 -1
- package/templates/blocks/PageHeader/PageHeader.tsx +2 -2
- package/templates/blocks/PageHeader/PageHeader.types.ts +2 -2
- package/templates/blocks/SettingsPanel/SettingsPanel.tsx +1 -1
- package/templates/blocks/SettingsPanel/SettingsPanel.types.ts +1 -1
- package/templates/blocks/Sidebar/Sidebar.tsx +935 -22
- package/templates/blocks/Sidebar/Sidebar.types.ts +155 -1
- package/templates/blocks/Sidebar/Sidebar.utils.ts +34 -0
- package/templates/blocks/Sidebar/Sidebar.variants.ts +310 -17
- package/templates/blocks/StatsCard/StatsCard.tsx +1 -1
- package/templates/blocks/StatsCard/StatsCard.types.ts +1 -1
- package/templates/styles/theme.css +9 -1
- package/templates/styles/tokens.css +34 -1
- package/templates/templates/SettingsPageLayout/SettingsPageLayout.tsx +2 -2
- package/templates/templates/SettingsPageLayout/SettingsPageLayout.types.ts +2 -2
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Generated by @dalexto/lexsys-tokens.
|
|
5
5
|
* Manual changes will be overwritten.
|
|
6
|
-
* Last generated: 2026-06-
|
|
6
|
+
* Last generated: 2026-06-06T23:24:29.234Z
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
:root {
|
|
@@ -214,6 +214,7 @@
|
|
|
214
214
|
--lex-size-overlay-list-max-height: var(--lex-size-panel-height-sm);
|
|
215
215
|
--lex-size-overlay-viewport-max-height: var(--lex-layout-viewport-full);
|
|
216
216
|
--lex-size-sidebar-width: var(--lex-size-64);
|
|
217
|
+
--lex-size-sidebar-width-collapsed: var(--lex-size-16);
|
|
217
218
|
--lex-size-command-palette-list-max-height: var(--lex-size-64);
|
|
218
219
|
--lex-font-family-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
219
220
|
--lex-font-family-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
@@ -260,6 +261,9 @@
|
|
|
260
261
|
--lex-duration-slower: 500ms;
|
|
261
262
|
--lex-duration-control: var(--lex-duration-fast);
|
|
262
263
|
--lex-duration-surface: var(--lex-duration-fast);
|
|
264
|
+
--lex-duration-overlay-enter: var(--lex-duration-normal);
|
|
265
|
+
--lex-duration-overlay-exit: var(--lex-duration-fast);
|
|
266
|
+
--lex-duration-layout: var(--lex-duration-normal);
|
|
263
267
|
--lex-easing-linear: cubic-bezier(0, 0, 1, 1);
|
|
264
268
|
--lex-easing-standard: cubic-bezier(0.2, 0, 0, 1);
|
|
265
269
|
--lex-easing-enter: cubic-bezier(0, 0, 0.2, 1);
|
|
@@ -267,7 +271,11 @@
|
|
|
267
271
|
--lex-easing-emphasized: cubic-bezier(0.2, 0, 0, 1);
|
|
268
272
|
--lex-easing-control: var(--lex-easing-standard);
|
|
269
273
|
--lex-easing-surface: var(--lex-easing-standard);
|
|
274
|
+
--lex-easing-ease-in: var(--lex-easing-enter);
|
|
275
|
+
--lex-easing-ease-out: var(--lex-easing-exit);
|
|
276
|
+
--lex-easing-layout: var(--lex-easing-standard);
|
|
270
277
|
--lex-motion-offset-entry-y: var(--lex-space-2);
|
|
278
|
+
--lex-motion-offset-slide-panel: var(--lex-size-64);
|
|
271
279
|
--lex-aspect-ratio-1-1: 1;
|
|
272
280
|
--lex-aspect-ratio-4-3: 1.333333;
|
|
273
281
|
--lex-aspect-ratio-3-2: 1.5;
|
|
@@ -1574,6 +1582,31 @@
|
|
|
1574
1582
|
--lex-select-transition-easing: var(--lex-easing-control);
|
|
1575
1583
|
--lex-separator-color: var(--lex-border-default);
|
|
1576
1584
|
--lex-separator-thickness: 1px;
|
|
1585
|
+
--lex-sidebar-width-default: var(--lex-size-sidebar-width);
|
|
1586
|
+
--lex-sidebar-width-collapsed: var(--lex-size-sidebar-width-collapsed);
|
|
1587
|
+
--lex-sidebar-transition-duration: var(--lex-duration-layout);
|
|
1588
|
+
--lex-sidebar-transition-easing: var(--lex-easing-layout);
|
|
1589
|
+
--lex-sidebar-item-foreground: var(--lex-color-text-secondary);
|
|
1590
|
+
--lex-sidebar-item-foreground-active: var(--lex-color-text-primary);
|
|
1591
|
+
--lex-sidebar-item-gap: var(--lex-space-control-gap-sm);
|
|
1592
|
+
--lex-sidebar-item-radius: var(--lex-radius-control);
|
|
1593
|
+
--lex-sidebar-item-padding-x: var(--lex-space-control-x-sm);
|
|
1594
|
+
--lex-sidebar-item-padding-y: var(--lex-space-control-y-xs);
|
|
1595
|
+
--lex-sidebar-item-font-size: var(--lex-typography-control-sm-font-size);
|
|
1596
|
+
--lex-sidebar-item-font-weight: var(--lex-typography-control-md-font-weight);
|
|
1597
|
+
--lex-sidebar-item-font-weight-active: var(--lex-typography-label-sm-font-weight);
|
|
1598
|
+
--lex-sidebar-item-font-line-height: var(--lex-typography-control-sm-line-height);
|
|
1599
|
+
--lex-sidebar-item-background-hover: var(--lex-action-secondary-hover);
|
|
1600
|
+
--lex-sidebar-item-background-active: var(--lex-color-background-base);
|
|
1601
|
+
--lex-sidebar-item-accent-width: var(--lex-outline-width-focus);
|
|
1602
|
+
--lex-sidebar-item-accent-color: var(--lex-action-primary-base);
|
|
1603
|
+
--lex-sidebar-item-icon-size: var(--lex-size-selection-control-md);
|
|
1604
|
+
--lex-sidebar-item-badge-max-width: var(--lex-size-panel-width-sm);
|
|
1605
|
+
--lex-sidebar-item-sub-indent: var(--lex-space-control-x-sm);
|
|
1606
|
+
--lex-sidebar-item-focus-ring-width: var(--lex-outline-width-focus);
|
|
1607
|
+
--lex-sidebar-item-focus-ring-color: var(--lex-border-focus);
|
|
1608
|
+
--lex-sidebar-item-focus-ring-offset: var(--lex-outline-offset-focus);
|
|
1609
|
+
--lex-sidebar-item-focus-ring-offset-color: var(--lex-color-background-base);
|
|
1577
1610
|
--lex-slider-gap: var(--lex-space-control-gap-md);
|
|
1578
1611
|
--lex-slider-control-padding-y: var(--lex-space-control-y-sm);
|
|
1579
1612
|
--lex-slider-track-background: var(--lex-color-background-subtle);
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Reference SettingsPageLayout template — settings page shell with header and panels.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { PageHeader } from "@/components/blocks/PageHeader"
|
|
7
|
+
import { PageHeader } from "@/components/blocks/PageHeader/PageHeader"
|
|
8
8
|
import {
|
|
9
9
|
SettingsPanel,
|
|
10
10
|
SettingsPanelContent,
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
SettingsPanelFooter,
|
|
13
13
|
SettingsPanelHeader,
|
|
14
14
|
SettingsPanelTitle,
|
|
15
|
-
} from "@/components/blocks/SettingsPanel"
|
|
15
|
+
} from "@/components/blocks/SettingsPanel/SettingsPanel"
|
|
16
16
|
import type {
|
|
17
17
|
SettingsPageLayoutBodyProps,
|
|
18
18
|
SettingsPageLayoutHeaderProps,
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import type { HTMLAttributes, ReactNode, Ref } from "react"
|
|
8
|
-
import type { PageHeaderProps } from "@/components/blocks/PageHeader"
|
|
8
|
+
import type { PageHeaderProps } from "@/components/blocks/PageHeader/PageHeader.types"
|
|
9
9
|
import type {
|
|
10
10
|
SettingsPanelContentProps,
|
|
11
11
|
SettingsPanelDescriptionProps,
|
|
@@ -13,7 +13,7 @@ import type {
|
|
|
13
13
|
SettingsPanelHeaderProps,
|
|
14
14
|
SettingsPanelProps,
|
|
15
15
|
SettingsPanelTitleProps,
|
|
16
|
-
} from "@/components/blocks/SettingsPanel"
|
|
16
|
+
} from "@/components/blocks/SettingsPanel/SettingsPanel.types"
|
|
17
17
|
|
|
18
18
|
export interface SettingsPageLayoutProps extends HTMLAttributes<HTMLDivElement> {
|
|
19
19
|
ref?: Ref<HTMLDivElement>
|