@xtyle/svelte 0.5.0 → 0.6.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/dist/Card.svelte CHANGED
@@ -9,6 +9,8 @@
9
9
  action?: boolean;
10
10
  compact?: boolean;
11
11
  tone?: Tone;
12
+ /** How far the surface lifts: `sm` a whisper, `md` the eased default, `lg` a pronounced shadow. */
13
+ depthStrength?: "sm" | "md" | "lg";
12
14
  header?: Snippet;
13
15
  footer?: Snippet;
14
16
  children?: Snippet;
@@ -16,10 +18,10 @@
16
18
  [key: string]: unknown;
17
19
  }
18
20
 
19
- let { overlay = false, interactive = false, action = false, compact = false, tone, header, footer, children, ...rest }: Props = $props();
21
+ let { overlay = false, interactive = false, action = false, compact = false, tone, depthStrength, header, footer, children, ...rest }: Props = $props();
20
22
  </script>
21
23
 
22
- <xtyle-card {...rest} overlay={overlay || undefined} interactive={interactive || undefined} action={action || undefined} compact={compact || undefined} {tone}>
24
+ <xtyle-card {...rest} overlay={overlay || undefined} interactive={interactive || undefined} action={action || undefined} compact={compact || undefined} {tone} depth-strength={depthStrength}>
23
25
  {#if header}<span slot="header">{@render header()}</span>{/if}
24
26
  {@render children?.()}
25
27
  {#if footer}<span slot="footer">{@render footer()}</span>{/if}
@@ -7,6 +7,8 @@ interface Props {
7
7
  action?: boolean;
8
8
  compact?: boolean;
9
9
  tone?: Tone;
10
+ /** How far the surface lifts: `sm` a whisper, `md` the eased default, `lg` a pronounced shadow. */
11
+ depthStrength?: "sm" | "md" | "lg";
10
12
  header?: Snippet;
11
13
  footer?: Snippet;
12
14
  children?: Snippet;
@@ -0,0 +1,16 @@
1
+ <script lang="ts">
2
+ import "./register.js";
3
+ import type { Snippet } from "svelte";
4
+
5
+ interface Props {
6
+ children?: Snippet;
7
+ /** Any other attribute (`title`, `id`, `data-*`, `aria-*`, …) passes through to the element. */
8
+ [key: string]: unknown;
9
+ }
10
+
11
+ let { children, ...rest }: Props = $props();
12
+ </script>
13
+
14
+ <xtyle-empty {...rest}>
15
+ {@render children?.()}
16
+ </xtyle-empty>
@@ -0,0 +1,10 @@
1
+ import "./register.js";
2
+ import type { Snippet } from "svelte";
3
+ interface Props {
4
+ children?: Snippet;
5
+ /** Any other attribute (`title`, `id`, `data-*`, `aria-*`, …) passes through to the element. */
6
+ [key: string]: unknown;
7
+ }
8
+ declare const Empty: import("svelte").Component<Props, {}, "">;
9
+ type Empty = ReturnType<typeof Empty>;
10
+ export default Empty;
package/dist/Image.svelte CHANGED
@@ -4,6 +4,7 @@
4
4
  type ImageFit = "cover" | "contain";
5
5
  type ImageRadius = "none" | "sm" | "md" | "lg";
6
6
  type ImageLoading = "lazy" | "eager";
7
+ type ImageTrigger = "frame" | "button";
7
8
 
8
9
  interface Props {
9
10
  src?: string;
@@ -13,6 +14,7 @@
13
14
  radius?: ImageRadius;
14
15
  loading?: ImageLoading;
15
16
  lightbox?: boolean;
17
+ trigger?: ImageTrigger;
16
18
  caption?: string;
17
19
  /** Any other attribute (`title`, `id`, `data-*`, `aria-*`, …) passes through to the element. */
18
20
  [key: string]: unknown;
@@ -26,6 +28,7 @@
26
28
  radius = "md",
27
29
  loading = "lazy",
28
30
  lightbox = false,
31
+ trigger = "frame",
29
32
  caption,
30
33
  ...rest
31
34
  }: Props = $props();
@@ -41,4 +44,5 @@
41
44
  {loading}
42
45
  {caption}
43
46
  lightbox={lightbox ? "" : undefined}
47
+ trigger={trigger === "button" ? "button" : undefined}
44
48
  ></xtyle-image>
@@ -2,6 +2,7 @@ import "./register.js";
2
2
  type ImageFit = "cover" | "contain";
3
3
  type ImageRadius = "none" | "sm" | "md" | "lg";
4
4
  type ImageLoading = "lazy" | "eager";
5
+ type ImageTrigger = "frame" | "button";
5
6
  interface Props {
6
7
  src?: string;
7
8
  alt?: string;
@@ -10,6 +11,7 @@ interface Props {
10
11
  radius?: ImageRadius;
11
12
  loading?: ImageLoading;
12
13
  lightbox?: boolean;
14
+ trigger?: ImageTrigger;
13
15
  caption?: string;
14
16
  /** Any other attribute (`title`, `id`, `data-*`, `aria-*`, …) passes through to the element. */
15
17
  [key: string]: unknown;
@@ -1,10 +1,11 @@
1
1
  <script lang="ts">
2
2
  import "./register.js";
3
3
  import type { Snippet } from "svelte";
4
- import type { FullTone as Tone } from "@xtyle/core";
4
+ import type { FullTone as Tone, RampScheme } from "@xtyle/core";
5
5
 
6
6
  type ProgressVariant = "linear" | "circular";
7
7
  type ProgressSize = "sm" | "md" | "lg";
8
+ type ProgressRampMode = "solid" | "gradient";
8
9
 
9
10
  interface Props {
10
11
  variant?: ProgressVariant;
@@ -17,12 +18,21 @@
17
18
  showValue?: boolean;
18
19
  /** How `showValue` reads: `percent` (`80%`), `value` (the raw number), or `value-max` (`80/100`). */
19
20
  valueFormat?: "percent" | "value" | "value-max";
21
+ /** A unit appended to the `value` / `value-max` readout (e.g. `GB`); the `percent` format ignores it. */
22
+ unit?: string;
20
23
  /** Where the `showValue` readout sits: after the bar (`end`) or laid over the fill (`inset`). */
21
24
  valuePosition?: "end" | "inset";
22
25
  /** Tint the `showValue` readout with the active tone. */
23
26
  colorizeValue?: boolean;
24
27
  /** Report `role="meter"` (a capacity measurement) instead of `role="progressbar"` (a task). */
25
28
  meter?: boolean;
29
+ /** Color the fill by its own value along a ramp instead of a flat `tone`: a built-in scheme
30
+ * (`accent` / `thermal` / `status`) or an explicit list of stop colors. */
31
+ ramp?: RampScheme | string[];
32
+ /** How a `ramp` paints: `solid` (one sampled color) or `gradient` (a pure-CSS sweep, linear only). */
33
+ rampMode?: ProgressRampMode;
34
+ /** Flip the ramp end for end (hot-to-cold). */
35
+ reverse?: boolean;
26
36
  ariaLabel?: string;
27
37
  children?: Snippet;
28
38
  /** Any other attribute (`title`, `id`, `data-*`, `aria-*`, …) passes through to the element. */
@@ -39,9 +49,13 @@
39
49
  indeterminate = false,
40
50
  showValue = false,
41
51
  valueFormat = "percent",
52
+ unit,
42
53
  valuePosition = "end",
43
54
  colorizeValue = false,
44
55
  meter = false,
56
+ ramp,
57
+ rampMode = "solid",
58
+ reverse = false,
45
59
  ariaLabel,
46
60
  children,
47
61
  ...rest
@@ -59,6 +73,7 @@
59
73
  indeterminate={indeterminate || undefined}
60
74
  show-value={showValue || undefined}
61
75
  value-format={valueFormat !== "percent" ? valueFormat : undefined}
76
+ unit={unit || undefined}
62
77
  value-position={valuePosition !== "end" ? valuePosition : undefined}
63
78
  colorize-value={colorizeValue || undefined}
64
79
  meter={meter || undefined}
@@ -1,8 +1,9 @@
1
1
  import "./register.js";
2
2
  import type { Snippet } from "svelte";
3
- import type { FullTone as Tone } from "@xtyle/core";
3
+ import type { FullTone as Tone, RampScheme } from "@xtyle/core";
4
4
  type ProgressVariant = "linear" | "circular";
5
5
  type ProgressSize = "sm" | "md" | "lg";
6
+ type ProgressRampMode = "solid" | "gradient";
6
7
  interface Props {
7
8
  variant?: ProgressVariant;
8
9
  tone?: Tone;
@@ -14,12 +15,21 @@ interface Props {
14
15
  showValue?: boolean;
15
16
  /** How `showValue` reads: `percent` (`80%`), `value` (the raw number), or `value-max` (`80/100`). */
16
17
  valueFormat?: "percent" | "value" | "value-max";
18
+ /** A unit appended to the `value` / `value-max` readout (e.g. `GB`); the `percent` format ignores it. */
19
+ unit?: string;
17
20
  /** Where the `showValue` readout sits: after the bar (`end`) or laid over the fill (`inset`). */
18
21
  valuePosition?: "end" | "inset";
19
22
  /** Tint the `showValue` readout with the active tone. */
20
23
  colorizeValue?: boolean;
21
24
  /** Report `role="meter"` (a capacity measurement) instead of `role="progressbar"` (a task). */
22
25
  meter?: boolean;
26
+ /** Color the fill by its own value along a ramp instead of a flat `tone`: a built-in scheme
27
+ * (`accent` / `thermal` / `status`) or an explicit list of stop colors. */
28
+ ramp?: RampScheme | string[];
29
+ /** How a `ramp` paints: `solid` (one sampled color) or `gradient` (a pure-CSS sweep, linear only). */
30
+ rampMode?: ProgressRampMode;
31
+ /** Flip the ramp end for end (hot-to-cold). */
32
+ reverse?: boolean;
23
33
  ariaLabel?: string;
24
34
  children?: Snippet;
25
35
  /** Any other attribute (`title`, `id`, `data-*`, `aria-*`, …) passes through to the element. */
@@ -0,0 +1,41 @@
1
+ <script lang="ts">
2
+ import "./register.js";
3
+ import type { Size } from "@xtyle/core";
4
+
5
+ interface Props {
6
+ value?: number;
7
+ max?: number;
8
+ size?: Size;
9
+ /** The icon to rate with: `star` (default), any functional glyph, or a mark spec (`taco--…`). */
10
+ icon?: string;
11
+ /** Read-only display (fixed, fractional). Omit for an interactive slider (focusable, click / keys). */
12
+ readonly?: boolean;
13
+ /** Snap interactive input to half steps. */
14
+ allowHalf?: boolean;
15
+ /** The series scheme a colorful mark draws its palette from. */
16
+ colors?: string;
17
+ /** Fill tone for a monochrome icon: a register hue (`accent`, `success`, `red`, …). */
18
+ tone?: string;
19
+ /** Form field name; when set, the value posts through a hidden input. */
20
+ name?: string;
21
+ /** Accessible label (also the no-JS fallback text). */
22
+ label?: string;
23
+ /** Any other attribute (`title`, `id`, `data-*`, …) passes through to the element. */
24
+ [key: string]: unknown;
25
+ }
26
+
27
+ let { value = 0, max = 5, size, icon, readonly, allowHalf, colors, tone, name, label, ...rest }: Props = $props();
28
+ </script>
29
+
30
+ <xtyle-rating
31
+ {...rest}
32
+ value={value}
33
+ max={max}
34
+ {size}
35
+ {icon}
36
+ {colors}
37
+ {tone}
38
+ {name}
39
+ {label}
40
+ readonly={readonly || undefined}
41
+ allowhalf={allowHalf || undefined}>{label ?? `${value} out of ${max} stars`}</xtyle-rating>
@@ -0,0 +1,26 @@
1
+ import "./register.js";
2
+ import type { Size } from "@xtyle/core";
3
+ interface Props {
4
+ value?: number;
5
+ max?: number;
6
+ size?: Size;
7
+ /** The icon to rate with: `star` (default), any functional glyph, or a mark spec (`taco--…`). */
8
+ icon?: string;
9
+ /** Read-only display (fixed, fractional). Omit for an interactive slider (focusable, click / keys). */
10
+ readonly?: boolean;
11
+ /** Snap interactive input to half steps. */
12
+ allowHalf?: boolean;
13
+ /** The series scheme a colorful mark draws its palette from. */
14
+ colors?: string;
15
+ /** Fill tone for a monochrome icon: a register hue (`accent`, `success`, `red`, …). */
16
+ tone?: string;
17
+ /** Form field name; when set, the value posts through a hidden input. */
18
+ name?: string;
19
+ /** Accessible label (also the no-JS fallback text). */
20
+ label?: string;
21
+ /** Any other attribute (`title`, `id`, `data-*`, …) passes through to the element. */
22
+ [key: string]: unknown;
23
+ }
24
+ declare const Rating: import("svelte").Component<Props, {}, "">;
25
+ type Rating = ReturnType<typeof Rating>;
26
+ export default Rating;
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import "./register.js";
3
- import type { SparklineVariant, SparklineTone, TimeSample } from "@xtyle/core";
3
+ import type { SparklineVariant, SparklineTone, SparklineBounds, TimeSample } from "@xtyle/core";
4
4
 
5
5
  interface Props {
6
6
  values?: number[];
@@ -0,0 +1,18 @@
1
+ <script lang="ts">
2
+ import "./register.js";
3
+ import type { Snippet } from "svelte";
4
+
5
+ interface Props {
6
+ /** Zero-based index of the current step. */
7
+ current?: number;
8
+ children?: Snippet;
9
+ /** Any other attribute (`title`, `id`, `data-*`, `aria-*`, …) passes through to the element. */
10
+ [key: string]: unknown;
11
+ }
12
+
13
+ let { current = 0, children, ...rest }: Props = $props();
14
+ </script>
15
+
16
+ <xtyle-steps {...rest} current={current}>
17
+ {@render children?.()}
18
+ </xtyle-steps>
@@ -0,0 +1,12 @@
1
+ import "./register.js";
2
+ import type { Snippet } from "svelte";
3
+ interface Props {
4
+ /** Zero-based index of the current step. */
5
+ current?: number;
6
+ children?: Snippet;
7
+ /** Any other attribute (`title`, `id`, `data-*`, `aria-*`, …) passes through to the element. */
8
+ [key: string]: unknown;
9
+ }
10
+ declare const Steps: import("svelte").Component<Props, {}, "">;
11
+ type Steps = ReturnType<typeof Steps>;
12
+ export default Steps;
@@ -0,0 +1,16 @@
1
+ <script lang="ts">
2
+ import "./register.js";
3
+ import type { Snippet } from "svelte";
4
+
5
+ interface Props {
6
+ children?: Snippet;
7
+ /** Any other attribute (`title`, `id`, `data-*`, `aria-*`, …) passes through to the element. */
8
+ [key: string]: unknown;
9
+ }
10
+
11
+ let { children, ...rest }: Props = $props();
12
+ </script>
13
+
14
+ <xtyle-timeline {...rest}>
15
+ {@render children?.()}
16
+ </xtyle-timeline>
@@ -0,0 +1,10 @@
1
+ import "./register.js";
2
+ import type { Snippet } from "svelte";
3
+ interface Props {
4
+ children?: Snippet;
5
+ /** Any other attribute (`title`, `id`, `data-*`, `aria-*`, …) passes through to the element. */
6
+ [key: string]: unknown;
7
+ }
8
+ declare const Timeline: import("svelte").Component<Props, {}, "">;
9
+ type Timeline = ReturnType<typeof Timeline>;
10
+ export default Timeline;
package/dist/index.d.ts CHANGED
@@ -33,6 +33,10 @@ export { default as Skeleton } from "./Skeleton.svelte";
33
33
  export { default as Dialog } from "./Dialog.svelte";
34
34
  export { default as Toast } from "./Toast.svelte";
35
35
  export { default as Table } from "./Table.svelte";
36
+ export { default as Timeline } from "./Timeline.svelte";
37
+ export { default as Steps } from "./Steps.svelte";
38
+ export { default as Rating } from "./Rating.svelte";
39
+ export { default as Empty } from "./Empty.svelte";
36
40
  export { default as Progress } from "./Progress.svelte";
37
41
  export { default as Slider } from "./Slider.svelte";
38
42
  export { default as ColorPicker } from "./ColorPicker.svelte";
@@ -62,4 +66,4 @@ export { default as Splitter } from "./Splitter.svelte";
62
66
  export { default as Code } from "./Code.svelte";
63
67
  export { default as Pagination } from "./Pagination.svelte";
64
68
  export { default as DockZone } from "./DockZone.svelte";
65
- export { XtyleButton, XtyleField, XtyleCard, XtyleBadge, XtyleSwitch, XtyleAlert, XtyleLink, XtyleAppShell, XtyleToolbar, XtyleDock, XtylePanel, XtyleStatusbar, XtyleCheckbox, XtyleCheckboxGroup, XtyleRadio, XtyleRadioGroup, XtyleSelect, XtyleTextarea, XtyleFormGroup, XtyleHeading, XtyleText, XtyleSeparator, XtyleStack, XtyleCluster, XtyleGrid, XtyleSpinner, XtyleAvatar, XtyleAvatarGroup, XtyleTooltip, XtyleTabs, XtyleBreadcrumb, XtyleSkeleton, XtyleDialog, XtyleToast, XtyleTable, XtyleProgress, XtyleSlider, XtyleColorPicker, XtyleNumberInput, XtyleSegmented, XtyleAccordion, XtyleTree, XtyleStat, XtyleBar, XtylePie, XtyleSparkline, XtyleHeatmap, XtyleSection, XtyleEyebrow, XtyleCardLink, XtyleToc, XtyleKbd, XtyleIcon, XtyleImage, XtyleCarousel, XtyleParallax, XtyleHero, XtyleSwatch, XtyleMenu, XtyleSplitter, XtyleCode, XtylePagination, XtyleDockZone, } from "./register.js";
69
+ export { XtyleButton, XtyleField, XtyleCard, XtyleBadge, XtyleSwitch, XtyleAlert, XtyleLink, XtyleAppShell, XtyleToolbar, XtyleDock, XtylePanel, XtyleStatusbar, XtyleCheckbox, XtyleCheckboxGroup, XtyleRadio, XtyleRadioGroup, XtyleSelect, XtyleTextarea, XtyleFormGroup, XtyleHeading, XtyleText, XtyleSeparator, XtyleStack, XtyleCluster, XtyleGrid, XtyleSpinner, XtyleAvatar, XtyleAvatarGroup, XtyleTooltip, XtyleTabs, XtyleBreadcrumb, XtyleSkeleton, XtyleDialog, XtyleToast, XtyleTable, XtyleTimeline, XtyleSteps, XtyleRating, XtyleEmpty, XtyleProgress, XtyleSlider, XtyleColorPicker, XtyleNumberInput, XtyleSegmented, XtyleAccordion, XtyleTree, XtyleStat, XtyleBar, XtylePie, XtyleSparkline, XtyleHeatmap, XtyleSection, XtyleEyebrow, XtyleCardLink, XtyleToc, XtyleKbd, XtyleIcon, XtyleImage, XtyleCarousel, XtyleParallax, XtyleHero, XtyleSwatch, XtyleMenu, XtyleSplitter, XtyleCode, XtylePagination, XtyleDockZone, } from "./register.js";
package/dist/index.js CHANGED
@@ -33,6 +33,10 @@ export { default as Skeleton } from "./Skeleton.svelte";
33
33
  export { default as Dialog } from "./Dialog.svelte";
34
34
  export { default as Toast } from "./Toast.svelte";
35
35
  export { default as Table } from "./Table.svelte";
36
+ export { default as Timeline } from "./Timeline.svelte";
37
+ export { default as Steps } from "./Steps.svelte";
38
+ export { default as Rating } from "./Rating.svelte";
39
+ export { default as Empty } from "./Empty.svelte";
36
40
  export { default as Progress } from "./Progress.svelte";
37
41
  export { default as Slider } from "./Slider.svelte";
38
42
  export { default as ColorPicker } from "./ColorPicker.svelte";
@@ -62,4 +66,4 @@ export { default as Splitter } from "./Splitter.svelte";
62
66
  export { default as Code } from "./Code.svelte";
63
67
  export { default as Pagination } from "./Pagination.svelte";
64
68
  export { default as DockZone } from "./DockZone.svelte";
65
- export { XtyleButton, XtyleField, XtyleCard, XtyleBadge, XtyleSwitch, XtyleAlert, XtyleLink, XtyleAppShell, XtyleToolbar, XtyleDock, XtylePanel, XtyleStatusbar, XtyleCheckbox, XtyleCheckboxGroup, XtyleRadio, XtyleRadioGroup, XtyleSelect, XtyleTextarea, XtyleFormGroup, XtyleHeading, XtyleText, XtyleSeparator, XtyleStack, XtyleCluster, XtyleGrid, XtyleSpinner, XtyleAvatar, XtyleAvatarGroup, XtyleTooltip, XtyleTabs, XtyleBreadcrumb, XtyleSkeleton, XtyleDialog, XtyleToast, XtyleTable, XtyleProgress, XtyleSlider, XtyleColorPicker, XtyleNumberInput, XtyleSegmented, XtyleAccordion, XtyleTree, XtyleStat, XtyleBar, XtylePie, XtyleSparkline, XtyleHeatmap, XtyleSection, XtyleEyebrow, XtyleCardLink, XtyleToc, XtyleKbd, XtyleIcon, XtyleImage, XtyleCarousel, XtyleParallax, XtyleHero, XtyleSwatch, XtyleMenu, XtyleSplitter, XtyleCode, XtylePagination, XtyleDockZone, } from "./register.js";
69
+ export { XtyleButton, XtyleField, XtyleCard, XtyleBadge, XtyleSwitch, XtyleAlert, XtyleLink, XtyleAppShell, XtyleToolbar, XtyleDock, XtylePanel, XtyleStatusbar, XtyleCheckbox, XtyleCheckboxGroup, XtyleRadio, XtyleRadioGroup, XtyleSelect, XtyleTextarea, XtyleFormGroup, XtyleHeading, XtyleText, XtyleSeparator, XtyleStack, XtyleCluster, XtyleGrid, XtyleSpinner, XtyleAvatar, XtyleAvatarGroup, XtyleTooltip, XtyleTabs, XtyleBreadcrumb, XtyleSkeleton, XtyleDialog, XtyleToast, XtyleTable, XtyleTimeline, XtyleSteps, XtyleRating, XtyleEmpty, XtyleProgress, XtyleSlider, XtyleColorPicker, XtyleNumberInput, XtyleSegmented, XtyleAccordion, XtyleTree, XtyleStat, XtyleBar, XtylePie, XtyleSparkline, XtyleHeatmap, XtyleSection, XtyleEyebrow, XtyleCardLink, XtyleToc, XtyleKbd, XtyleIcon, XtyleImage, XtyleCarousel, XtyleParallax, XtyleHero, XtyleSwatch, XtyleMenu, XtyleSplitter, XtyleCode, XtylePagination, XtyleDockZone, } from "./register.js";
@@ -1,2 +1,2 @@
1
- export { XtyleButton, XtyleField, XtyleCard, XtyleBadge, XtyleSwitch, XtyleAlert, XtyleLink, XtyleAppShell, XtyleToolbar, XtyleDock, XtylePanel, XtyleStatusbar, XtyleCheckbox, XtyleCheckboxGroup, XtyleRadio, XtyleRadioGroup, XtyleSelect, XtyleTextarea, XtyleFormGroup, XtyleHeading, XtyleText, XtyleSeparator, XtyleStack, XtyleCluster, XtyleGrid, XtyleSpinner, XtyleAvatar, XtyleAvatarGroup, XtyleTooltip, XtyleTabs, XtyleBreadcrumb, XtyleSkeleton, XtyleDialog, XtyleToast, XtyleTable, XtyleProgress, XtyleSlider, XtyleColorPicker, XtyleNumberInput, XtyleSegmented, XtyleAccordion, XtyleTree, XtyleStat, XtyleBar, XtylePie, XtyleSparkline, XtyleHeatmap, XtyleSection, XtyleEyebrow, XtyleCardLink, XtyleToc, XtyleKbd, XtyleIcon, XtyleImage, XtyleCarousel, XtyleParallax, XtyleHero, XtyleSwatch, XtyleMenu, XtyleSplitter, XtyleCode, XtylePagination, XtyleDockZone, } from "@xtyle/core/elements";
1
+ export { XtyleButton, XtyleField, XtyleCard, XtyleBadge, XtyleSwitch, XtyleAlert, XtyleLink, XtyleAppShell, XtyleToolbar, XtyleDock, XtylePanel, XtyleStatusbar, XtyleCheckbox, XtyleCheckboxGroup, XtyleRadio, XtyleRadioGroup, XtyleSelect, XtyleTextarea, XtyleFormGroup, XtyleHeading, XtyleText, XtyleSeparator, XtyleStack, XtyleCluster, XtyleGrid, XtyleSpinner, XtyleAvatar, XtyleAvatarGroup, XtyleTooltip, XtyleTabs, XtyleBreadcrumb, XtyleSkeleton, XtyleDialog, XtyleToast, XtyleTable, XtyleTimeline, XtyleSteps, XtyleRating, XtyleEmpty, XtyleProgress, XtyleSlider, XtyleColorPicker, XtyleNumberInput, XtyleSegmented, XtyleAccordion, XtyleTree, XtyleStat, XtyleBar, XtylePie, XtyleSparkline, XtyleHeatmap, XtyleSection, XtyleEyebrow, XtyleCardLink, XtyleToc, XtyleKbd, XtyleIcon, XtyleImage, XtyleCarousel, XtyleParallax, XtyleHero, XtyleSwatch, XtyleMenu, XtyleSplitter, XtyleCode, XtylePagination, XtyleDockZone, } from "@xtyle/core/elements";
2
2
  import "@xtyle/core/elements";
package/dist/register.js CHANGED
@@ -1,2 +1,2 @@
1
- export { XtyleButton, XtyleField, XtyleCard, XtyleBadge, XtyleSwitch, XtyleAlert, XtyleLink, XtyleAppShell, XtyleToolbar, XtyleDock, XtylePanel, XtyleStatusbar, XtyleCheckbox, XtyleCheckboxGroup, XtyleRadio, XtyleRadioGroup, XtyleSelect, XtyleTextarea, XtyleFormGroup, XtyleHeading, XtyleText, XtyleSeparator, XtyleStack, XtyleCluster, XtyleGrid, XtyleSpinner, XtyleAvatar, XtyleAvatarGroup, XtyleTooltip, XtyleTabs, XtyleBreadcrumb, XtyleSkeleton, XtyleDialog, XtyleToast, XtyleTable, XtyleProgress, XtyleSlider, XtyleColorPicker, XtyleNumberInput, XtyleSegmented, XtyleAccordion, XtyleTree, XtyleStat, XtyleBar, XtylePie, XtyleSparkline, XtyleHeatmap, XtyleSection, XtyleEyebrow, XtyleCardLink, XtyleToc, XtyleKbd, XtyleIcon, XtyleImage, XtyleCarousel, XtyleParallax, XtyleHero, XtyleSwatch, XtyleMenu, XtyleSplitter, XtyleCode, XtylePagination, XtyleDockZone, } from "@xtyle/core/elements";
1
+ export { XtyleButton, XtyleField, XtyleCard, XtyleBadge, XtyleSwitch, XtyleAlert, XtyleLink, XtyleAppShell, XtyleToolbar, XtyleDock, XtylePanel, XtyleStatusbar, XtyleCheckbox, XtyleCheckboxGroup, XtyleRadio, XtyleRadioGroup, XtyleSelect, XtyleTextarea, XtyleFormGroup, XtyleHeading, XtyleText, XtyleSeparator, XtyleStack, XtyleCluster, XtyleGrid, XtyleSpinner, XtyleAvatar, XtyleAvatarGroup, XtyleTooltip, XtyleTabs, XtyleBreadcrumb, XtyleSkeleton, XtyleDialog, XtyleToast, XtyleTable, XtyleTimeline, XtyleSteps, XtyleRating, XtyleEmpty, XtyleProgress, XtyleSlider, XtyleColorPicker, XtyleNumberInput, XtyleSegmented, XtyleAccordion, XtyleTree, XtyleStat, XtyleBar, XtylePie, XtyleSparkline, XtyleHeatmap, XtyleSection, XtyleEyebrow, XtyleCardLink, XtyleToc, XtyleKbd, XtyleIcon, XtyleImage, XtyleCarousel, XtyleParallax, XtyleHero, XtyleSwatch, XtyleMenu, XtyleSplitter, XtyleCode, XtylePagination, XtyleDockZone, } from "@xtyle/core/elements";
2
2
  import "@xtyle/core/elements";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xtyle/svelte",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "Thin Svelte wrappers over the @xtyle/core/elements custom elements.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -21,7 +21,7 @@
21
21
  "build": "svelte-package -i src -o dist"
22
22
  },
23
23
  "dependencies": {
24
- "@xtyle/core": "^0.5.0"
24
+ "@xtyle/core": "^0.6.0"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "svelte": "^5.0.0"