@urbicon-ui/blocks 6.37.2 → 6.39.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/components/AvatarGroup/AvatarGroup.svelte +60 -0
- package/dist/components/AvatarGroup/AvatarGroup.svelte.d.ts +4 -0
- package/dist/components/AvatarGroup/avatar-group.variants.d.ts +20 -0
- package/dist/components/AvatarGroup/avatar-group.variants.js +21 -0
- package/dist/components/AvatarGroup/index.d.ts +57 -0
- package/dist/components/AvatarGroup/index.js +2 -0
- package/dist/components/Calendar/calendar.variants.d.ts +126 -126
- package/dist/components/Chat/A2UIView/A2UINode.svelte +582 -0
- package/dist/components/Chat/A2UIView/A2UINode.svelte.d.ts +10 -0
- package/dist/components/Chat/A2UIView/A2UIView.svelte +272 -0
- package/dist/components/Chat/A2UIView/A2UIView.svelte.d.ts +4 -0
- package/dist/components/Chat/A2UIView/a2ui-data.d.ts +65 -0
- package/dist/components/Chat/A2UIView/a2ui-data.js +283 -0
- package/dist/components/Chat/A2UIView/a2ui-prompt.d.ts +18 -0
- package/dist/components/Chat/A2UIView/a2ui-prompt.js +141 -0
- package/dist/components/Chat/A2UIView/a2ui-registry.d.ts +64 -0
- package/dist/components/Chat/A2UIView/a2ui-registry.js +348 -0
- package/dist/components/Chat/A2UIView/a2ui-render.d.ts +96 -0
- package/dist/components/Chat/A2UIView/a2ui-render.js +140 -0
- package/dist/components/Chat/A2UIView/a2ui-validate.d.ts +75 -0
- package/dist/components/Chat/A2UIView/a2ui-validate.js +762 -0
- package/dist/components/Chat/A2UIView/a2ui-view.variants.d.ts +74 -0
- package/dist/components/Chat/A2UIView/a2ui-view.variants.js +58 -0
- package/dist/components/Chat/A2UIView/a2ui.types.d.ts +117 -0
- package/dist/components/Chat/A2UIView/a2ui.types.js +83 -0
- package/dist/components/Chat/A2UIView/index.d.ts +102 -0
- package/dist/components/Chat/A2UIView/index.js +7 -0
- package/dist/components/Chat/ChatMessage/ChatMessage.svelte +4 -1
- package/dist/components/Chat/index.d.ts +2 -0
- package/dist/components/Chat/index.js +1 -0
- package/dist/components/CopyButton/CopyButton.svelte +139 -0
- package/dist/components/CopyButton/CopyButton.svelte.d.ts +4 -0
- package/dist/components/CopyButton/copy-button.variants.d.ts +29 -0
- package/dist/components/CopyButton/copy-button.variants.js +32 -0
- package/dist/components/CopyButton/index.d.ts +55 -0
- package/dist/components/CopyButton/index.js +2 -0
- package/dist/components/FileUpload/FileUpload.svelte.d.ts +1 -1
- package/dist/components/PinInput/pin-input.variants.d.ts +7 -7
- package/dist/components/Planner/planner.variants.d.ts +34 -34
- package/dist/components/TimeInput/time-input.variants.d.ts +9 -9
- package/dist/components/index.d.ts +4 -0
- package/dist/components/index.js +2 -0
- package/dist/i18n/index.d.ts +6 -390
- package/dist/primitives/Accordion/accordion.variants.d.ts +7 -7
- package/dist/primitives/Alert/alert.variants.d.ts +8 -8
- package/dist/primitives/Avatar/avatar.variants.d.ts +12 -12
- package/dist/primitives/Badge/badge.variants.d.ts +10 -10
- package/dist/primitives/Button/button.variants.d.ts +4 -4
- package/dist/primitives/Card/card.variants.d.ts +5 -5
- package/dist/primitives/Checkbox/checkbox.variants.d.ts +7 -7
- package/dist/primitives/Collapsible/collapsible.variants.d.ts +6 -6
- package/dist/primitives/Combobox/combobox.variants.d.ts +50 -50
- package/dist/primitives/Input/input.variants.d.ts +27 -27
- package/dist/primitives/JourneyTimeline/journey-timeline.variants.d.ts +22 -22
- package/dist/primitives/Kbd/Kbd.svelte +44 -0
- package/dist/primitives/Kbd/Kbd.svelte.d.ts +4 -0
- package/dist/primitives/Kbd/index.d.ts +51 -0
- package/dist/primitives/Kbd/index.js +2 -0
- package/dist/primitives/Kbd/kbd.variants.d.ts +20 -0
- package/dist/primitives/Kbd/kbd.variants.js +27 -0
- package/dist/primitives/Progress/progress.variants.d.ts +11 -11
- package/dist/primitives/RadioGroup/radioGroup.variants.d.ts +6 -6
- package/dist/primitives/Select/select.variants.d.ts +34 -34
- package/dist/primitives/Skeleton/skeleton.variants.d.ts +3 -3
- package/dist/primitives/Spinner/spinner.variants.d.ts +48 -48
- package/dist/primitives/Stepper/stepper.variants.d.ts +11 -11
- package/dist/primitives/Textarea/textarea.variants.d.ts +21 -21
- package/dist/primitives/Toast/toast.variants.d.ts +12 -12
- package/dist/primitives/Toggle/toggle.variants.d.ts +7 -7
- package/dist/primitives/Toolbar/toolbar.variants.d.ts +6 -6
- package/dist/primitives/Tooltip/tooltip.variants.d.ts +3 -3
- package/dist/primitives/index.d.ts +2 -0
- package/dist/primitives/index.js +1 -0
- package/dist/translations/de.d.ts +4 -0
- package/dist/translations/de.js +4 -0
- package/dist/translations/en.d.ts +4 -0
- package/dist/translations/en.js +4 -0
- package/package.json +3 -3
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type SlotNames, type VariantProps } from '../../utils/variants.js';
|
|
2
2
|
export declare const textareaVariants: ((props?: {
|
|
3
3
|
tier?: "commit" | "modify" | undefined;
|
|
4
|
-
variant?: "ghost" | "
|
|
5
|
-
size?: "
|
|
6
|
-
intent?: "
|
|
4
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
5
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
6
|
+
intent?: "success" | "warning" | "danger" | "default" | undefined;
|
|
7
7
|
autoResize?: boolean | undefined;
|
|
8
8
|
disabled?: boolean | undefined;
|
|
9
9
|
readonly?: boolean | undefined;
|
|
@@ -14,9 +14,9 @@ export declare const textareaVariants: ((props?: {
|
|
|
14
14
|
} | undefined) => {
|
|
15
15
|
wrapper: (props?: ({
|
|
16
16
|
tier?: "commit" | "modify" | undefined;
|
|
17
|
-
variant?: "ghost" | "
|
|
18
|
-
size?: "
|
|
19
|
-
intent?: "
|
|
17
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
18
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
19
|
+
intent?: "success" | "warning" | "danger" | "default" | undefined;
|
|
20
20
|
autoResize?: boolean | undefined;
|
|
21
21
|
disabled?: boolean | undefined;
|
|
22
22
|
readonly?: boolean | undefined;
|
|
@@ -29,9 +29,9 @@ export declare const textareaVariants: ((props?: {
|
|
|
29
29
|
}) | undefined) => string;
|
|
30
30
|
base: (props?: ({
|
|
31
31
|
tier?: "commit" | "modify" | undefined;
|
|
32
|
-
variant?: "ghost" | "
|
|
33
|
-
size?: "
|
|
34
|
-
intent?: "
|
|
32
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
33
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
34
|
+
intent?: "success" | "warning" | "danger" | "default" | undefined;
|
|
35
35
|
autoResize?: boolean | undefined;
|
|
36
36
|
disabled?: boolean | undefined;
|
|
37
37
|
readonly?: boolean | undefined;
|
|
@@ -44,9 +44,9 @@ export declare const textareaVariants: ((props?: {
|
|
|
44
44
|
}) | undefined) => string;
|
|
45
45
|
label: (props?: ({
|
|
46
46
|
tier?: "commit" | "modify" | undefined;
|
|
47
|
-
variant?: "ghost" | "
|
|
48
|
-
size?: "
|
|
49
|
-
intent?: "
|
|
47
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
48
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
49
|
+
intent?: "success" | "warning" | "danger" | "default" | undefined;
|
|
50
50
|
autoResize?: boolean | undefined;
|
|
51
51
|
disabled?: boolean | undefined;
|
|
52
52
|
readonly?: boolean | undefined;
|
|
@@ -59,9 +59,9 @@ export declare const textareaVariants: ((props?: {
|
|
|
59
59
|
}) | undefined) => string;
|
|
60
60
|
footer: (props?: ({
|
|
61
61
|
tier?: "commit" | "modify" | undefined;
|
|
62
|
-
variant?: "ghost" | "
|
|
63
|
-
size?: "
|
|
64
|
-
intent?: "
|
|
62
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
63
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
64
|
+
intent?: "success" | "warning" | "danger" | "default" | undefined;
|
|
65
65
|
autoResize?: boolean | undefined;
|
|
66
66
|
disabled?: boolean | undefined;
|
|
67
67
|
readonly?: boolean | undefined;
|
|
@@ -74,9 +74,9 @@ export declare const textareaVariants: ((props?: {
|
|
|
74
74
|
}) | undefined) => string;
|
|
75
75
|
message: (props?: ({
|
|
76
76
|
tier?: "commit" | "modify" | undefined;
|
|
77
|
-
variant?: "ghost" | "
|
|
78
|
-
size?: "
|
|
79
|
-
intent?: "
|
|
77
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
78
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
79
|
+
intent?: "success" | "warning" | "danger" | "default" | undefined;
|
|
80
80
|
autoResize?: boolean | undefined;
|
|
81
81
|
disabled?: boolean | undefined;
|
|
82
82
|
readonly?: boolean | undefined;
|
|
@@ -89,9 +89,9 @@ export declare const textareaVariants: ((props?: {
|
|
|
89
89
|
}) | undefined) => string;
|
|
90
90
|
counter: (props?: ({
|
|
91
91
|
tier?: "commit" | "modify" | undefined;
|
|
92
|
-
variant?: "ghost" | "
|
|
93
|
-
size?: "
|
|
94
|
-
intent?: "
|
|
92
|
+
variant?: "ghost" | "underline" | "filled" | "outlined" | undefined;
|
|
93
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
94
|
+
intent?: "success" | "warning" | "danger" | "default" | undefined;
|
|
95
95
|
autoResize?: boolean | undefined;
|
|
96
96
|
disabled?: boolean | undefined;
|
|
97
97
|
readonly?: boolean | undefined;
|
|
@@ -1,70 +1,70 @@
|
|
|
1
1
|
import { type SlotNames, type VariantProps } from '../../utils/variants.js';
|
|
2
2
|
export declare const toastVariants: ((props?: {
|
|
3
|
-
intent?: "
|
|
3
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
4
4
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
5
5
|
} | undefined) => {
|
|
6
6
|
container: (props?: ({
|
|
7
|
-
intent?: "
|
|
7
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
8
8
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
9
9
|
} & {
|
|
10
10
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
11
11
|
}) | undefined) => string;
|
|
12
12
|
toast: (props?: ({
|
|
13
|
-
intent?: "
|
|
13
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
14
14
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
15
15
|
} & {
|
|
16
16
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
17
17
|
}) | undefined) => string;
|
|
18
18
|
icon: (props?: ({
|
|
19
|
-
intent?: "
|
|
19
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
20
20
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
21
21
|
} & {
|
|
22
22
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
23
23
|
}) | undefined) => string;
|
|
24
24
|
content: (props?: ({
|
|
25
|
-
intent?: "
|
|
25
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
26
26
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
27
27
|
} & {
|
|
28
28
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
29
29
|
}) | undefined) => string;
|
|
30
30
|
title: (props?: ({
|
|
31
|
-
intent?: "
|
|
31
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
32
32
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
33
33
|
} & {
|
|
34
34
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
35
35
|
}) | undefined) => string;
|
|
36
36
|
description: (props?: ({
|
|
37
|
-
intent?: "
|
|
37
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
38
38
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
39
39
|
} & {
|
|
40
40
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
41
41
|
}) | undefined) => string;
|
|
42
42
|
actions: (props?: ({
|
|
43
|
-
intent?: "
|
|
43
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
44
44
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
45
45
|
} & {
|
|
46
46
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
47
47
|
}) | undefined) => string;
|
|
48
48
|
actionButton: (props?: ({
|
|
49
|
-
intent?: "
|
|
49
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
50
50
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
51
51
|
} & {
|
|
52
52
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
53
53
|
}) | undefined) => string;
|
|
54
54
|
cancelButton: (props?: ({
|
|
55
|
-
intent?: "
|
|
55
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
56
56
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
57
57
|
} & {
|
|
58
58
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
59
59
|
}) | undefined) => string;
|
|
60
60
|
dismissButton: (props?: ({
|
|
61
|
-
intent?: "
|
|
61
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
62
62
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
63
63
|
} & {
|
|
64
64
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
65
65
|
}) | undefined) => string;
|
|
66
66
|
progress: (props?: ({
|
|
67
|
-
intent?: "
|
|
67
|
+
intent?: "primary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
68
68
|
placement?: "bottom-right" | "top-right" | "bottom-left" | "top-left" | "top-center" | "bottom-center" | undefined;
|
|
69
69
|
} & {
|
|
70
70
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type SlotNames, type VariantProps } from '../../utils/variants.js';
|
|
2
2
|
export declare const toggleVariants: ((props?: {
|
|
3
3
|
tier?: "commit" | "modify" | undefined;
|
|
4
|
-
size?: "
|
|
4
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
5
5
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
6
6
|
variant?: "default" | "dot" | undefined;
|
|
7
7
|
checked?: boolean | undefined;
|
|
@@ -11,7 +11,7 @@ export declare const toggleVariants: ((props?: {
|
|
|
11
11
|
} | undefined) => {
|
|
12
12
|
wrapper: (props?: ({
|
|
13
13
|
tier?: "commit" | "modify" | undefined;
|
|
14
|
-
size?: "
|
|
14
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
15
15
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
16
16
|
variant?: "default" | "dot" | undefined;
|
|
17
17
|
checked?: boolean | undefined;
|
|
@@ -23,7 +23,7 @@ export declare const toggleVariants: ((props?: {
|
|
|
23
23
|
}) | undefined) => string;
|
|
24
24
|
control: (props?: ({
|
|
25
25
|
tier?: "commit" | "modify" | undefined;
|
|
26
|
-
size?: "
|
|
26
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
27
27
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
28
28
|
variant?: "default" | "dot" | undefined;
|
|
29
29
|
checked?: boolean | undefined;
|
|
@@ -35,7 +35,7 @@ export declare const toggleVariants: ((props?: {
|
|
|
35
35
|
}) | undefined) => string;
|
|
36
36
|
track: (props?: ({
|
|
37
37
|
tier?: "commit" | "modify" | undefined;
|
|
38
|
-
size?: "
|
|
38
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
39
39
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
40
40
|
variant?: "default" | "dot" | undefined;
|
|
41
41
|
checked?: boolean | undefined;
|
|
@@ -47,7 +47,7 @@ export declare const toggleVariants: ((props?: {
|
|
|
47
47
|
}) | undefined) => string;
|
|
48
48
|
thumb: (props?: ({
|
|
49
49
|
tier?: "commit" | "modify" | undefined;
|
|
50
|
-
size?: "
|
|
50
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
51
51
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
52
52
|
variant?: "default" | "dot" | undefined;
|
|
53
53
|
checked?: boolean | undefined;
|
|
@@ -59,7 +59,7 @@ export declare const toggleVariants: ((props?: {
|
|
|
59
59
|
}) | undefined) => string;
|
|
60
60
|
label: (props?: ({
|
|
61
61
|
tier?: "commit" | "modify" | undefined;
|
|
62
|
-
size?: "
|
|
62
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
63
63
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
64
64
|
variant?: "default" | "dot" | undefined;
|
|
65
65
|
checked?: boolean | undefined;
|
|
@@ -71,7 +71,7 @@ export declare const toggleVariants: ((props?: {
|
|
|
71
71
|
}) | undefined) => string;
|
|
72
72
|
message: (props?: ({
|
|
73
73
|
tier?: "commit" | "modify" | undefined;
|
|
74
|
-
size?: "
|
|
74
|
+
size?: "xs" | "sm" | "md" | "lg" | undefined;
|
|
75
75
|
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | undefined;
|
|
76
76
|
variant?: "default" | "dot" | undefined;
|
|
77
77
|
checked?: boolean | undefined;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { type SlotNames, type VariantProps } from '../../utils/variants.js';
|
|
2
2
|
export declare const toolbarVariants: ((props?: {
|
|
3
|
-
variant?: "ghost" | "
|
|
3
|
+
variant?: "ghost" | "outlined" | "quiet" | "elevated" | undefined;
|
|
4
4
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
5
|
-
gap?: "
|
|
6
|
-
padding?: "
|
|
5
|
+
gap?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
6
|
+
padding?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
7
7
|
} | undefined) => {
|
|
8
8
|
base: (props?: ({
|
|
9
|
-
variant?: "ghost" | "
|
|
9
|
+
variant?: "ghost" | "outlined" | "quiet" | "elevated" | undefined;
|
|
10
10
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
11
|
-
gap?: "
|
|
12
|
-
padding?: "
|
|
11
|
+
gap?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
12
|
+
padding?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
13
13
|
} & {
|
|
14
14
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
15
15
|
}) | undefined) => string;
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { type SlotNames, type VariantProps } from '../../utils/variants.js';
|
|
2
2
|
export declare const tooltipVariants: ((props?: {
|
|
3
3
|
open?: boolean | undefined;
|
|
4
|
-
intent?: "
|
|
4
|
+
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
5
5
|
size?: "sm" | "md" | "lg" | undefined;
|
|
6
6
|
} | undefined) => {
|
|
7
7
|
base: (props?: ({
|
|
8
8
|
open?: boolean | undefined;
|
|
9
|
-
intent?: "
|
|
9
|
+
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
10
10
|
size?: "sm" | "md" | "lg" | undefined;
|
|
11
11
|
} & {
|
|
12
12
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
13
13
|
}) | undefined) => string;
|
|
14
14
|
arrow: (props?: ({
|
|
15
15
|
open?: boolean | undefined;
|
|
16
|
-
intent?: "
|
|
16
|
+
intent?: "primary" | "secondary" | "success" | "warning" | "danger" | "neutral" | "info" | undefined;
|
|
17
17
|
size?: "sm" | "md" | "lg" | undefined;
|
|
18
18
|
} & {
|
|
19
19
|
class?: string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | (string | number | false | /*elided*/ any | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined)[] | Record<string, boolean | null | undefined> | null | undefined;
|
|
@@ -32,6 +32,8 @@ export type { InputProps } from './Input/index.js';
|
|
|
32
32
|
export * from './Input/index.js';
|
|
33
33
|
export type { JourneyNode, JourneyStatus, JourneyTimelineProps } from './JourneyTimeline/index.js';
|
|
34
34
|
export * from './JourneyTimeline/index.js';
|
|
35
|
+
export type { KbdProps } from './Kbd/index.js';
|
|
36
|
+
export * from './Kbd/index.js';
|
|
35
37
|
export type { MenuContext, MenuCustomSlots, MenuItemType, MenuObjectOption, MenuOption, MenuProps, MenuSectionHeader } from './Menu/index.js';
|
|
36
38
|
export * from './Menu/index.js';
|
|
37
39
|
export type { PaginationItemContext, PaginationItemProps, PaginationProps } from './Pagination/index.js';
|
package/dist/primitives/index.js
CHANGED
|
@@ -17,6 +17,7 @@ export * from './Drawer/index.js';
|
|
|
17
17
|
export * from './FormField/index.js';
|
|
18
18
|
export * from './Input/index.js';
|
|
19
19
|
export * from './JourneyTimeline/index.js';
|
|
20
|
+
export * from './Kbd/index.js';
|
|
20
21
|
export * from './Menu/index.js';
|
|
21
22
|
export * from './Pagination/index.js';
|
|
22
23
|
export * from './Popover/index.js';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
readonly accessibility: {
|
|
3
3
|
readonly avatar: "Avatar";
|
|
4
|
+
readonly avatarGroup: "Benutzer-Avatare";
|
|
4
5
|
readonly breadcrumb: "Pfadnavigation";
|
|
5
6
|
readonly breadcrumbExpand: "Alle Pfadebenen anzeigen";
|
|
6
7
|
readonly clearInput: "Eingabe löschen";
|
|
@@ -8,6 +9,9 @@ declare const _default: {
|
|
|
8
9
|
readonly clearSelection: "Auswahl löschen";
|
|
9
10
|
readonly closeDialog: "Dialog schließen";
|
|
10
11
|
readonly closeDrawer: "Seitenleiste schließen";
|
|
12
|
+
readonly copied: "Kopiert";
|
|
13
|
+
readonly copy: "Kopieren";
|
|
14
|
+
readonly copyFailed: "Kopieren fehlgeschlagen";
|
|
11
15
|
readonly dismiss: "Schließen";
|
|
12
16
|
readonly fileUpload: "Datei-Upload";
|
|
13
17
|
readonly loading: "Wird geladen";
|
package/dist/translations/de.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
accessibility: {
|
|
3
3
|
avatar: 'Avatar',
|
|
4
|
+
avatarGroup: 'Benutzer-Avatare',
|
|
4
5
|
breadcrumb: 'Pfadnavigation',
|
|
5
6
|
breadcrumbExpand: 'Alle Pfadebenen anzeigen',
|
|
6
7
|
clearInput: 'Eingabe löschen',
|
|
@@ -8,6 +9,9 @@ export default {
|
|
|
8
9
|
clearSelection: 'Auswahl löschen',
|
|
9
10
|
closeDialog: 'Dialog schließen',
|
|
10
11
|
closeDrawer: 'Seitenleiste schließen',
|
|
12
|
+
copied: 'Kopiert',
|
|
13
|
+
copy: 'Kopieren',
|
|
14
|
+
copyFailed: 'Kopieren fehlgeschlagen',
|
|
11
15
|
dismiss: 'Schließen',
|
|
12
16
|
fileUpload: 'Datei-Upload',
|
|
13
17
|
loading: 'Wird geladen',
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
readonly accessibility: {
|
|
3
3
|
readonly avatar: "Avatar";
|
|
4
|
+
readonly avatarGroup: "User avatars";
|
|
4
5
|
readonly breadcrumb: "Breadcrumb";
|
|
5
6
|
readonly breadcrumbExpand: "Show all breadcrumb items";
|
|
6
7
|
readonly clearInput: "Clear input";
|
|
@@ -8,6 +9,9 @@ declare const _default: {
|
|
|
8
9
|
readonly clearSelection: "Clear selection";
|
|
9
10
|
readonly closeDialog: "Close dialog";
|
|
10
11
|
readonly closeDrawer: "Close drawer";
|
|
12
|
+
readonly copied: "Copied";
|
|
13
|
+
readonly copy: "Copy";
|
|
14
|
+
readonly copyFailed: "Copy failed";
|
|
11
15
|
readonly dismiss: "Dismiss";
|
|
12
16
|
readonly fileUpload: "File upload";
|
|
13
17
|
readonly loading: "Loading";
|
package/dist/translations/en.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
accessibility: {
|
|
3
3
|
avatar: 'Avatar',
|
|
4
|
+
avatarGroup: 'User avatars',
|
|
4
5
|
breadcrumb: 'Breadcrumb',
|
|
5
6
|
breadcrumbExpand: 'Show all breadcrumb items',
|
|
6
7
|
clearInput: 'Clear input',
|
|
@@ -8,6 +9,9 @@ export default {
|
|
|
8
9
|
clearSelection: 'Clear selection',
|
|
9
10
|
closeDialog: 'Close dialog',
|
|
10
11
|
closeDrawer: 'Close drawer',
|
|
12
|
+
copied: 'Copied',
|
|
13
|
+
copy: 'Copy',
|
|
14
|
+
copyFailed: 'Copy failed',
|
|
11
15
|
dismiss: 'Dismiss',
|
|
12
16
|
fileUpload: 'File upload',
|
|
13
17
|
loading: 'Loading',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@urbicon-ui/blocks",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.39.0",
|
|
4
4
|
"description": "Svelte 5 UI component library with Tailwind CSS 4, OKLCH design tokens and zero runtime dependencies",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -93,8 +93,8 @@
|
|
|
93
93
|
"@sveltejs/package": "^2.5.8",
|
|
94
94
|
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
|
95
95
|
"@tailwindcss/vite": "^4.3.1",
|
|
96
|
-
"@urbicon-ui/i18n": "6.
|
|
97
|
-
"@urbicon-ui/shared-types": "6.
|
|
96
|
+
"@urbicon-ui/i18n": "6.39.0",
|
|
97
|
+
"@urbicon-ui/shared-types": "6.39.0",
|
|
98
98
|
"prettier": "^3.8.4",
|
|
99
99
|
"prettier-plugin-svelte": "^4.1.1",
|
|
100
100
|
"prettier-plugin-tailwindcss": "^0.8.0",
|