seblify 0.2.1 → 0.4.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.
Files changed (141) hide show
  1. package/README.md +145 -49
  2. package/dist/components/AppShell.svelte +1 -1
  3. package/dist/components/Banner.svelte +3 -3
  4. package/dist/components/Button.svelte +4 -4
  5. package/dist/components/action/button/button/Button.svelte +1041 -0
  6. package/dist/components/action/button/button/Button.svelte.d.ts +28 -0
  7. package/dist/components/action/button/button-group/ButtonGroup.svelte +146 -0
  8. package/dist/components/action/button/button-group/ButtonGroup.svelte.d.ts +14 -0
  9. package/dist/components/action/button/floating-action-button/FloatingActionButton.svelte +1102 -0
  10. package/dist/components/action/button/floating-action-button/FloatingActionButton.svelte.d.ts +26 -0
  11. package/dist/components/action/button/icon-button/IconButton.svelte +954 -0
  12. package/dist/components/action/button/icon-button/IconButton.svelte.d.ts +22 -0
  13. package/dist/components/action/button/timed-button/TimedButton.svelte +1143 -0
  14. package/dist/components/action/button/timed-button/TimedButton.svelte.d.ts +32 -0
  15. package/dist/components/action/button/toggle-button/ToggleButton.svelte +1109 -0
  16. package/dist/components/action/button/toggle-button/ToggleButton.svelte.d.ts +28 -0
  17. package/dist/components/action/button/toggle-button-group/ToggleButtonGroup.svelte +242 -0
  18. package/dist/components/action/button/toggle-button-group/ToggleButtonGroup.svelte.d.ts +19 -0
  19. package/dist/components/action/button/toggle-button-group/ToggleButtonGroup.test.svelte +36 -0
  20. package/dist/components/action/button/toggle-button-group/ToggleButtonGroup.test.svelte.d.ts +11 -0
  21. package/dist/components/action/button/toggle-button-group/context.d.ts +8 -0
  22. package/dist/components/action/button/toggle-button-group/context.js +8 -0
  23. package/dist/components/action/input/field/pin-input/PinInput.svelte +4 -4
  24. package/dist/components/action/input/select/checkbox/Checkbox.svelte +4704 -25
  25. package/dist/components/action/input/select/checkbox/Checkbox.svelte.d.ts +28 -0
  26. package/dist/components/action/input/select/checkbox/checkbox-relations.svelte.d.ts +46 -0
  27. package/dist/components/action/input/select/checkbox/checkbox-relations.svelte.js +202 -0
  28. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/bounce.d.ts +1 -0
  29. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/bounce.html +27 -0
  30. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/bounce.js +13 -0
  31. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/bump.d.ts +1 -0
  32. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/bump.html +12 -0
  33. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/bump.js +13 -0
  34. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/draw.d.ts +1 -0
  35. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/draw.html +12 -0
  36. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/draw.js +12 -0
  37. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/fade.d.ts +1 -0
  38. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/fade.html +12 -0
  39. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/fade.js +12 -0
  40. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/pop.d.ts +1 -0
  41. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/pop.html +12 -0
  42. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/pop.js +13 -0
  43. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/rise.d.ts +1 -0
  44. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/rise.html +27 -0
  45. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/rise.js +13 -0
  46. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/scale.d.ts +1 -0
  47. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/scale.html +27 -0
  48. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/scale.js +13 -0
  49. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/visual-state.d.ts +1 -0
  50. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/visual-state.html +12 -0
  51. package/dist/components/action/input/select/checkbox/tests/visual-fixtures/visual-state.js +278 -0
  52. package/dist/components/action/input/select/{theme-switch/ThemeSwitch.svelte → color-mode-switch/ColorModeSwitch.svelte} +8 -8
  53. package/dist/components/action/input/select/color-mode-switch/ColorModeSwitch.svelte.d.ts +10 -0
  54. package/dist/components/action/input/select/segment-control/SegmentControl.svelte +2 -2
  55. package/dist/components/action/input/select/slider/Slider.svelte +1 -1
  56. package/dist/components/action/input/select/switch/Switch.svelte +1004 -99
  57. package/dist/components/action/input/select/switch/Switch.svelte.d.ts +8 -3
  58. package/dist/components/display/annotation/badge/Badge.svelte +732 -63
  59. package/dist/components/display/annotation/badge/Badge.svelte.d.ts +1 -1
  60. package/dist/components/display/annotation/tag/Tag.svelte +670 -58
  61. package/dist/components/display/annotation/tag/Tag.svelte.d.ts +3 -1
  62. package/dist/components/display/data-display/metric/date-time/DateTimeValue.svelte +59 -0
  63. package/dist/components/display/data-display/metric/date-time/DateTimeValue.svelte.d.ts +13 -0
  64. package/dist/components/display/data-display/metric/date-time/DateValue.svelte +52 -0
  65. package/dist/components/display/data-display/metric/date-time/DateValue.svelte.d.ts +11 -0
  66. package/dist/components/display/data-display/metric/date-time/TimeValue.svelte +55 -0
  67. package/dist/components/display/data-display/metric/date-time/TimeValue.svelte.d.ts +12 -0
  68. package/dist/components/display/data-display/metric/duration/Duration.svelte +64 -0
  69. package/dist/components/display/data-display/metric/duration/Duration.svelte.d.ts +16 -0
  70. package/dist/components/display/data-display/metric/relative-time/RelativeTime.svelte +121 -0
  71. package/dist/components/display/data-display/metric/relative-time/RelativeTime.svelte.d.ts +21 -0
  72. package/dist/components/display/data-display/metric/timestamp-card/TimestampCard.svelte +121 -0
  73. package/dist/components/display/data-display/metric/timestamp-card/TimestampCard.svelte.d.ts +25 -0
  74. package/dist/components/display/data-display/visual/timeline/TimelineItem.svelte +660 -51
  75. package/dist/components/display/data-display/visual/timeline/context.d.ts +1 -1
  76. package/dist/components/display/feedback/loading/loading-dots/LoadingDots.svelte +657 -48
  77. package/dist/components/display/feedback/loading/loading-dots/LoadingDots.svelte.d.ts +1 -1
  78. package/dist/components/display/feedback/loading/spinner/Spinner.svelte +657 -48
  79. package/dist/components/display/feedback/loading/spinner/Spinner.svelte.d.ts +1 -1
  80. package/dist/components/display/motion/collapse/Collapse.svelte +115 -0
  81. package/dist/components/display/motion/collapse/Collapse.svelte.d.ts +17 -0
  82. package/dist/components/display/typography/accordion/Accordion.svelte +347 -0
  83. package/dist/components/display/typography/accordion/Accordion.svelte.d.ts +13 -0
  84. package/dist/components/display/typography/accordion/AccordionGroup.svelte +132 -0
  85. package/dist/components/display/typography/accordion/AccordionGroup.svelte.d.ts +11 -0
  86. package/dist/components/display/typography/accordion/context.d.ts +8 -0
  87. package/dist/components/display/typography/accordion/context.js +8 -0
  88. package/dist/components/display/typography/code-snippet/CodeSnippet.svelte +3 -3
  89. package/dist/components/display/typography/eyebrow/Eyebrow.svelte +2 -2
  90. package/dist/components/display/typography/highlight/Highlight.svelte +719 -59
  91. package/dist/components/display/typography/highlight/Highlight.svelte.d.ts +1 -1
  92. package/dist/components/framework/layout/container/app-shell/AppShell.svelte +16 -2
  93. package/dist/components/framework/navigation/context/breadcrumb/Breadcrumb.svelte +1 -1
  94. package/dist/components/framework/navigation/sidebar/sidebar/Sidebar.svelte +35 -10
  95. package/dist/components/framework/navigation/sidebar/sidenav/Sidenav.svelte +5 -5
  96. package/dist/components/framework/overlay/tooltip/Tooltip.svelte +1011 -0
  97. package/dist/components/framework/overlay/tooltip/Tooltip.svelte.d.ts +31 -0
  98. package/dist/components/framework/surface/paper/Paper.svelte +730 -87
  99. package/dist/components/framework/surface/paper/Paper.svelte.d.ts +1 -1
  100. package/dist/components/utility/format/date-time/formatDateTime.d.ts +23 -0
  101. package/dist/components/utility/format/date-time/formatDateTime.js +33 -0
  102. package/dist/components/utility/format/duration/formatDuration.d.ts +15 -0
  103. package/dist/components/utility/format/duration/formatDuration.js +218 -0
  104. package/dist/components/utility/format/relative-time/formatRelativeTime.d.ts +42 -0
  105. package/dist/components/utility/format/relative-time/formatRelativeTime.js +530 -0
  106. package/dist/design-system/inheritance/tokens.js +6 -0
  107. package/dist/design-system/reserved-props/allowed-options.d.ts +9 -4
  108. package/dist/design-system/theme/tokens.d.ts +72 -2
  109. package/dist/design-system/theme/tokens.js +173 -134
  110. package/dist/icons/generated/check-thick.svelte +16 -0
  111. package/dist/icons/generated/check-thick.svelte.d.ts +7 -0
  112. package/dist/icons/generated/check.svelte +16 -0
  113. package/dist/icons/generated/check.svelte.d.ts +7 -0
  114. package/dist/icons/generated/close-thick.svelte +16 -0
  115. package/dist/icons/generated/close-thick.svelte.d.ts +7 -0
  116. package/dist/icons/generated/close.svelte +16 -0
  117. package/dist/icons/generated/close.svelte.d.ts +7 -0
  118. package/dist/icons/generated/index.d.ts +4 -0
  119. package/dist/icons/generated/index.js +4 -0
  120. package/dist/icons/generated/manifest.js +28 -0
  121. package/dist/index.d.ts +22 -2
  122. package/dist/index.js +22 -2
  123. package/dist/styles/tone-context.css +656 -46
  124. package/dist/theme.css +1 -161
  125. package/dist/themes/canopy.css +373 -0
  126. package/dist/themes/cobalt.css +373 -0
  127. package/dist/themes/iris.css +373 -0
  128. package/dist/themes/lumen.css +373 -0
  129. package/dist/themes/mono.css +373 -0
  130. package/dist/themes/moss.css +373 -0
  131. package/dist/themes/noir.css +373 -0
  132. package/dist/themes/plain.css +373 -0
  133. package/dist/themes/pulse.css +373 -0
  134. package/dist/themes/signal.css +373 -0
  135. package/dist/themes/slate.css +373 -0
  136. package/dist/themes/solar.css +373 -0
  137. package/dist/themes/sorbet.css +373 -0
  138. package/dist/themes/studio.css +369 -0
  139. package/dist/themes/vesper.css +373 -0
  140. package/package.json +32 -4
  141. package/dist/components/action/input/select/theme-switch/ThemeSwitch.svelte.d.ts +0 -10
package/README.md CHANGED
@@ -36,24 +36,43 @@ import 'seblify/theme.css';
36
36
  Explore the supported components in this library. Components are grouped by purpose and linked to their full documentation, including usage examples, props, accessibility notes, and design-system guidance.
37
37
 
38
38
  [![components-stable](https://img.shields.io/badge/stable-0%20components-brightgreen.svg)](https://seblify.com/components)
39
- [![components-beta](https://img.shields.io/badge/beta-2%20components-yellow.svg)](https://seblify.com/components)
40
- [![components-draft](https://img.shields.io/badge/draft-24%20components-lightgrey.svg)](https://seblify.com/components)
39
+ [![components-beta](https://img.shields.io/badge/beta-9%20components-yellow.svg)](https://seblify.com/components)
40
+ [![components-draft](https://img.shields.io/badge/draft-34%20components-lightgrey.svg)](https://seblify.com/components)
41
41
 
42
42
  ### Quick links
43
43
 
44
44
  - [Input Components](https://seblify.com/sections/action)
45
45
  - [Display Components](https://seblify.com/sections/display)
46
46
  - [Framework Components](https://seblify.com/sections/framework)
47
+ - [Utility](https://seblify.com/sections/utility)
47
48
  - [Design System](https://seblify.com/design-system)
48
49
 
49
50
  <br />
50
51
 
51
52
  ### Input Components
52
53
 
53
- _6 items_
54
+ _13 items_
54
55
 
55
56
  Components that let users make choices, submit data, and trigger behavior.
56
57
 
58
+ <details>
59
+ <summary><strong>Buttons &middot; 7</strong></summary>
60
+
61
+ Command controls for triggering actions and grouping related actions.
62
+
63
+ | Component | Summary | Status |
64
+ | --- | --- | --- |
65
+ | [Button](https://seblify.com/components/button) | A clickable command control with text and optional icons. | Draft |
66
+ | [ButtonGroup](https://seblify.com/components/button-group) | A visual group for related Button and IconButton controls. | Draft |
67
+ | [FloatingActionButton](https://seblify.com/components/floating-action-button) | A prominent floating button for a primary page action. | Draft |
68
+ | [IconButton](https://seblify.com/components/icon-button) | An icon-only button for compact commands with an accessible label. | Draft |
69
+ | [TimedButton](https://seblify.com/components/timed-button) | A button with a visible timer layer for delayed or temporary actions. | Draft |
70
+ | [ToggleButton](https://seblify.com/components/toggle-button) | A button that switches a single option on or off. | Draft |
71
+ | [ToggleButtonGroup](https://seblify.com/components/toggle-button-group) | A connected group of ToggleButton controls. | Draft |
72
+
73
+ </details>
74
+ <br />
75
+
57
76
  <details>
58
77
  <summary><strong>Input Fields &middot; 1</strong></summary>
59
78
 
@@ -74,24 +93,20 @@ Controls for selecting boolean, range, or option-based values.
74
93
  | Component | Summary | Status |
75
94
  | --- | --- | --- |
76
95
  | [Checkbox](https://seblify.com/components/checkbox) | A boolean selection control for one option in a form or settings flow. | Draft |
96
+ | [ColorModeSwitch](https://seblify.com/components/color-mode-switch) | A segmented control for selecting system, light, or dark color mode. | Draft |
77
97
  | [SegmentControl](https://seblify.com/components/segment-control) | A compact single-selection control for switching between a small set of options. | Draft |
78
98
  | [Slider](https://seblify.com/components/slider) | A range input for choosing an approximate numeric value. | Draft |
79
99
  | [Switch](https://seblify.com/components/switch) | A two-state control for immediately turning a setting on or off. | Draft |
80
- | [ThemeSwitch](https://seblify.com/components/theme-switch) | A segmented control for selecting system, light, or dark color mode. | Draft |
81
100
 
82
101
  </details>
83
102
  <br />
84
103
 
85
104
  ### Display Components
86
105
 
87
- _10 items_
106
+ _16 items_
88
107
 
89
108
  Components for showing content, feedback, media, and motion.
90
109
 
91
- | Component | Summary | Status |
92
- | --- | --- | --- |
93
- | [Timeline](https://seblify.com/components/timeline) | Arranges connected timeline items vertically or horizontally with flexible content, labels, and markers. | Beta |
94
-
95
110
  <details>
96
111
  <summary><strong>Annotation &middot; 3</strong></summary>
97
112
 
@@ -120,12 +135,13 @@ Progress indicators and waiting states.
120
135
  <br />
121
136
 
122
137
  <details>
123
- <summary><strong>Typography &middot; 3</strong></summary>
138
+ <summary><strong>Typography &middot; 4</strong></summary>
124
139
 
125
140
  Text primitives and typographic treatments for readable interfaces.
126
141
 
127
142
  | Component | Summary | Status |
128
143
  | --- | --- | --- |
144
+ | [Accordion](https://seblify.com/components/accordion) | A collapsible text section for optional details, explanations, and supporting content. | Draft |
129
145
  | [CodeSnippet](https://seblify.com/components/code-snippet) | Displays formatted code snippets with Svelte-focused highlighting and optional line numbers. | Draft |
130
146
  | [Eyebrow](https://seblify.com/components/eyebrow) | A short contextual label that sits above a heading or dense content block. | Draft |
131
147
  | [Highlight](https://seblify.com/components/highlight) | Highlights case-insensitive text matches inside a plain text string. | Beta |
@@ -133,6 +149,22 @@ Text primitives and typographic treatments for readable interfaces.
133
149
  </details>
134
150
  <br />
135
151
 
152
+ <details>
153
+ <summary><strong>Data Display &middot; 5</strong></summary>
154
+
155
+ Components for presenting structured values, metrics, and records.
156
+
157
+ | Component | Summary | Status |
158
+ | --- | --- | --- |
159
+ | [Date&nbsp;and&nbsp;Time](https://seblify.com/components/date-time) | Displays timestamps as localized date, time, or date-time text. | Beta |
160
+ | [Duration](https://seblify.com/components/duration) | Displays millisecond durations as localized unit text or clock-style text. | Beta |
161
+ | [RelativeTime](https://seblify.com/components/relative-time) | Formats dates as relative time, with reusable unit steps and automatic updates. | Beta |
162
+ | [Timeline](https://seblify.com/components/timeline) | Arranges connected timeline items vertically or horizontally with flexible content, labels, and markers. | Beta |
163
+ | [TimestampCard](https://seblify.com/components/timestamp-card) | Shows one timestamp as relative time with date and time details below. | Beta |
164
+
165
+ </details>
166
+ <br />
167
+
136
168
  <details>
137
169
  <summary><strong>Media &middot; 1</strong></summary>
138
170
 
@@ -145,9 +177,21 @@ Icons, images, video, and other visual media components.
145
177
  </details>
146
178
  <br />
147
179
 
180
+ <details>
181
+ <summary><strong>Motion &middot; 1</strong></summary>
182
+
183
+ Controlled animation helpers for revealing, hiding, and moving UI.
184
+
185
+ | Component | Summary | Status |
186
+ | --- | --- | --- |
187
+ | [Collapse](https://seblify.com/components/collapse) | A controlled wrapper that animates content between its full height and a collapsed height. | Draft |
188
+
189
+ </details>
190
+ <br />
191
+
148
192
  ### Framework Components
149
193
 
150
- _10 items_
194
+ _11 items_
151
195
 
152
196
  Layout, navigation, overlays, and surface primitives.
153
197
 
@@ -205,73 +249,125 @@ Framing primitives for cards, papers, tiles, and other contained regions.
205
249
  </details>
206
250
  <br />
207
251
 
252
+ <details>
253
+ <summary><strong>Overlay &middot; 1</strong></summary>
254
+
255
+ Floating UI that appears above nearby interface content.
256
+
257
+ | Component | Summary | Status |
258
+ | --- | --- | --- |
259
+ | [Tooltip](https://seblify.com/components/tooltip) | A small hover and focus hint that appears beside wrapped content with an arrow pointing back to it. | Draft |
260
+
261
+ </details>
262
+ <br />
263
+
264
+ ### Utility
265
+
266
+ _3 items_
267
+
268
+ Reusable helpers for formatting, behavior, providers, and rendering.
269
+
270
+ <details>
271
+ <summary><strong>Format &middot; 3</strong></summary>
272
+
273
+ Helpers for turning values into localized display text.
274
+
275
+ | Component | Summary | Status |
276
+ | --- | --- | --- |
277
+ | [formatDateTime](https://seblify.com/components/format-date-time) | Formats timestamps as localized date, time, or date-time text. | Beta |
278
+ | [formatDuration](https://seblify.com/components/format-duration) | Formats millisecond durations as localized unit text or clock-style text. | Beta |
279
+ | [formatRelativeTime](https://seblify.com/components/format-relative-time) | Formats dates as localized relative time text from a reusable utility function. | Beta |
280
+
281
+ </details>
282
+ <br />
283
+
208
284
  ## Design System
209
285
 
210
286
  Theme, tokens, and styling guidance for Seblify.
211
287
 
212
288
  | Guide | Summary |
213
289
  | --- | --- |
214
- | [Component&nbsp;API](https://seblify.com/design-system/component-api) | Shared prop naming rules for variants, tones, size, slots, radius, placement, and contextual inheritance. |
290
+ | [Component&nbsp;API](https://seblify.com/design-system/component-api) | Shared prop naming rules for variants, tones, size, slots, radius, animation, placement, and contextual inheritance. |
215
291
  | [Icons](https://seblify.com/design-system/icons) | Browse all generated Seblify icons, grouped automatically from the SVG source folders. |
216
292
  | [Inheritance](https://seblify.com/design-system/inheritance) | Ambient CSS variables let components inherit tone and size from their context without hard-coded parent-child edge cases. |
217
- | [Theme](https://seblify.com/design-system/theme) | Seblify themes use CSS variables for light, dark, system, and custom color modes. |
293
+ | [Theme](https://seblify.com/design-system/theme) | Seblify themes are importable CSS files with light, dark, system, and custom color modes. |
218
294
 
219
295
  <br />
220
296
 
221
- ## Release Notes <small>&middot; 0.2.1</small>
297
+ ## Release Notes <small>&middot; 0.4.0</small>
222
298
 
223
- _June 3 2026_ &middot; _9 items updated_
299
+ _July 26 2026_ &middot; _16 items updated_
224
300
 
225
301
  Recent changes are summarized below. For the full release history, see the [changelog](https://seblify.com/release-notes).
226
302
 
227
- ### [CodeSnippet](https://seblify.com/components/code-snippet)
303
+ ### [Button](https://seblify.com/components/button)
304
+
305
+ - Added Button
306
+ - Added icon slots
307
+
308
+ ### [ButtonGroup](https://seblify.com/components/button-group)
309
+
310
+ - Added ButtonGroup
311
+
312
+ ### [Checkbox](https://seblify.com/components/checkbox)
313
+
314
+ - Added checkbox variants
315
+ - Added customizable size and radius
316
+ - Added optional animations
317
+ - Supports multiple intermediate symbols
318
+ - Added example code snippets
319
+
320
+ ### [ColorModeSwitch](https://seblify.com/components/color-mode-switch)
321
+
322
+ - Renamed from ThemeSwitch to ColorModeSwitch
323
+
324
+ ### [Date&nbsp;and&nbsp;Time](https://seblify.com/components/date-time)
325
+
326
+ - Added date and time formatting
327
+
328
+ ### [FloatingActionButton](https://seblify.com/components/floating-action-button)
329
+
330
+ - Added Floating Action Button
331
+
332
+ ### [formatDateTime](https://seblify.com/components/format-date-time)
333
+
334
+ - Added date time formatter
335
+
336
+ ### [formatRelativeTime](https://seblify.com/components/format-relative-time)
228
337
 
229
- - Added code snippet component for readonly code formatting
230
- - Long lines can now optionally wrap
231
- - Changed tokenizer to track word context for smarter token detection
232
- - CodeSnippet no longer enters infinite loop on trailing plain text
338
+ - Added options for largest/smallest/min/max units
233
339
 
234
- ### [general](https://seblify.com/components/general)
340
+ ### [IconButton](https://seblify.com/components/icon-button)
235
341
 
236
- - Documentation can now display code examples
342
+ - Added icon button
237
343
 
238
- ### [Highlight](https://seblify.com/components/highlight)
344
+ ### [Paper](https://seblify.com/components/paper)
239
345
 
240
- - Added code examples to docs
346
+ - Customize tones and variants
241
347
 
242
- ### [inheritance](https://seblify.com/components/inheritance)
348
+ ### [RelativeTime](https://seblify.com/components/relative-time)
243
349
 
244
- - Added tone inheritance with consuming and publishing css variables
350
+ - Customize displayed unit count with largest/smallest/min/max units
245
351
 
246
- ### [SegmentControl](https://seblify.com/components/segment-control)
352
+ ### [theme](https://seblify.com/components/theme)
247
353
 
248
- - Selected background moves smoothly between active option
354
+ - Added different themes to docs
355
+ - Added inverse surface behavior
356
+ - Added on-inverse tokens for better control
357
+ - Removed inverse from tone options
249
358
 
250
- ### [Sidenav](https://seblify.com/components/sidenav)
359
+ ### [TimedButton](https://seblify.com/components/timed-button)
251
360
 
252
- - Item can execute a method with a payload
253
- - Item can take custom trailing content
254
- - Item groups can be forced expanded
255
- - Selecting an already selected link item with expanded children will collapse its children
256
- - Sidenav no longer auto-collapses sections
361
+ - Added Timed Button
257
362
 
258
- ### [Spinner](https://seblify.com/components/spinner)
363
+ ### [TimestampCard](https://seblify.com/components/timestamp-card)
259
364
 
260
- - Added code examples to documentation
365
+ - Added relative timestamp card
261
366
 
262
- ### [Switch](https://seblify.com/components/switch)
367
+ ### [ToggleButton](https://seblify.com/components/toggle-button)
263
368
 
264
- - Added tone and variant options
265
- - Radius prop
266
- - Added size prop
267
- - Added shapes Pill, Flat, Long, Floating, Line
268
- - Added optional grip icon to shapes Pill, Floating and Line
269
- - Added optional track I/O icons
270
- - Added animation options
271
- - Focus ring color matches selected tone
369
+ - Added ToggleButton
272
370
 
273
- ### [Timeline](https://seblify.com/components/timeline)
371
+ ### [ToggleButtonGroup](https://seblify.com/components/toggle-button-group)
274
372
 
275
- - Added timeline component
276
- - Added node align options
277
- - Timeline can use custom markers
373
+ - Added ToggleButtonGroup
@@ -65,7 +65,7 @@
65
65
  display: flex;
66
66
  flex-direction: column;
67
67
  min-height: 100vh;
68
- background: var(--app-shell-background, var(--seblify-color-page, #f4f6f8));
68
+ background: var(--app-shell-background, var(--seblify-color-background, #f4f6f8));
69
69
  color: var(--app-shell-color, var(--seblify-color-text, #172033));
70
70
  }
71
71
 
@@ -49,8 +49,8 @@
49
49
  }
50
50
 
51
51
  .error {
52
- border-bottom-color: var(--seblify-color-error-border, #efb6b6);
53
- background: var(--seblify-color-error-surface, #fff0f0);
54
- color: var(--seblify-color-error-text, #5a1717);
52
+ border-bottom-color: var(--seblify-color-danger-border, #efb6b6);
53
+ background: var(--seblify-color-danger-surface, #fff0f0);
54
+ color: var(--seblify-color-danger-text, #5a1717);
55
55
  }
56
56
  </style>
@@ -28,18 +28,18 @@
28
28
  <style>
29
29
  button {
30
30
  min-height: 36px;
31
- border: 1px solid var(--seblify-color-fill-accent, #146a6f);
31
+ border: 1px solid var(--seblify-color-primary-fill, #146a6f);
32
32
  border-radius: 6px;
33
33
  padding: 0 14px;
34
- background: var(--seblify-color-fill-accent, #146a6f);
35
- color: var(--seblify-color-fill-accent-text, #ffffff);
34
+ background: var(--seblify-color-primary-fill, #146a6f);
35
+ color: var(--seblify-color-primary-fill-text, #ffffff);
36
36
  font: inherit;
37
37
  font-weight: 600;
38
38
  cursor: pointer;
39
39
  }
40
40
 
41
41
  button:hover:not(:disabled) {
42
- background: var(--seblify-color-fill-accent-hover, #0d4d52);
42
+ background: var(--seblify-color-primary-fill-hover, #0d4d52);
43
43
  }
44
44
 
45
45
  button:focus-visible {