@returnless/focus-ui 0.0.10 → 0.0.11
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/Avatar/Avatar.vue.d.ts +3 -3
- package/dist/components/Badge/Badge.vue.d.ts +3 -3
- package/dist/components/Button/Button.vue.d.ts +1 -1
- package/dist/components/Button/ButtonBadge.vue.d.ts +44 -0
- package/dist/components/Button/ButtonIcon.vue.d.ts +8 -7
- package/dist/components/Button/index.d.ts +1 -0
- package/dist/components/FeatureList/FeatureList.vue.d.ts +9 -0
- package/dist/components/FeatureList/FeatureListItem.vue.d.ts +9 -0
- package/dist/components/FeatureList/index.d.ts +2 -0
- package/dist/components/Image/Image.vue.d.ts +7 -0
- package/dist/components/IntegrationConnection/IntegrationConnection.vue.d.ts +2 -0
- package/dist/components/IntegrationConnection/IntegrationConnectionItem.vue.d.ts +17 -0
- package/dist/components/IntegrationConnection/index.d.ts +2 -0
- package/dist/components/Navigation/NavigationItem.vue.d.ts +4 -3
- package/dist/components/TextField/TextField.vue.d.ts +4 -3
- package/dist/components/TextField/TextFieldIcon.vue.d.ts +3 -2
- package/dist/components/TextStyle/TextStyle.vue.d.ts +28 -7
- package/dist/components/index.d.ts +3 -1
- package/dist/focus-ui.js +2980 -2862
- package/dist/focus-ui.umd.cjs +21 -21
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
2
|
/** The size of the avatar */
|
|
3
|
-
size?: "
|
|
3
|
+
size?: "sm" | "xl" | "xs" | "md" | "lg" | undefined;
|
|
4
4
|
/** The name of the person, company or entity */
|
|
5
5
|
name?: string | undefined;
|
|
6
6
|
/** Initials of person to display. */
|
|
@@ -17,7 +17,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
17
17
|
accessibilityLabel: null;
|
|
18
18
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
19
19
|
/** The size of the avatar */
|
|
20
|
-
size?: "
|
|
20
|
+
size?: "sm" | "xl" | "xs" | "md" | "lg" | undefined;
|
|
21
21
|
/** The name of the person, company or entity */
|
|
22
22
|
name?: string | undefined;
|
|
23
23
|
/** Initials of person to display. */
|
|
@@ -35,7 +35,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
35
35
|
}>>>, {
|
|
36
36
|
source: string;
|
|
37
37
|
name: string;
|
|
38
|
-
size: "
|
|
38
|
+
size: "sm" | "xl" | "xs" | "md" | "lg";
|
|
39
39
|
accessibilityLabel: string | null;
|
|
40
40
|
initials: string | null;
|
|
41
41
|
}, {}>;
|
|
@@ -4,7 +4,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
4
4
|
/** The color of the badge. */
|
|
5
5
|
color: "slate" | "gray" | "zinc" | "neutral" | "stone" | "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "emerald" | "teal" | "cyan" | "sky" | "blue" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "lightBlue" | "warmGray" | "trueGray" | "coolGray" | "blueGray";
|
|
6
6
|
/** The size of the badge */
|
|
7
|
-
size?: "
|
|
7
|
+
size?: "sm" | "xl" | "md" | "lg" | undefined;
|
|
8
8
|
}>, {
|
|
9
9
|
accessibilityLabel: null;
|
|
10
10
|
size: string;
|
|
@@ -14,12 +14,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
14
14
|
/** The color of the badge. */
|
|
15
15
|
color: "slate" | "gray" | "zinc" | "neutral" | "stone" | "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "emerald" | "teal" | "cyan" | "sky" | "blue" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "lightBlue" | "warmGray" | "trueGray" | "coolGray" | "blueGray";
|
|
16
16
|
/** The size of the badge */
|
|
17
|
-
size?: "
|
|
17
|
+
size?: "sm" | "xl" | "md" | "lg" | undefined;
|
|
18
18
|
}>, {
|
|
19
19
|
accessibilityLabel: null;
|
|
20
20
|
size: string;
|
|
21
21
|
}>>>, {
|
|
22
|
-
size: "
|
|
22
|
+
size: "sm" | "xl" | "md" | "lg";
|
|
23
23
|
accessibilityLabel: string | null;
|
|
24
24
|
}, {}>, {
|
|
25
25
|
default?(_: {}): any;
|
|
@@ -25,7 +25,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
25
25
|
native: boolean;
|
|
26
26
|
}>>>, {
|
|
27
27
|
type: "button" | "reset" | "submit";
|
|
28
|
-
variant: import("./types").ButtonVariant;
|
|
29
28
|
href: string | null;
|
|
30
29
|
disabled: boolean;
|
|
31
30
|
disclosure: boolean;
|
|
@@ -35,6 +34,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
35
34
|
loading: boolean;
|
|
36
35
|
native: boolean;
|
|
37
36
|
size: "small" | "normal";
|
|
37
|
+
variant: import("./types").ButtonVariant;
|
|
38
38
|
}, {}>, {
|
|
39
39
|
default?(_: {}): any;
|
|
40
40
|
}>;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
/** Accessible label for the avatar image. */
|
|
3
|
+
accessibilityLabel?: string | null | undefined;
|
|
4
|
+
/** The color of the badge. */
|
|
5
|
+
color: "slate" | "gray" | "zinc" | "neutral" | "stone" | "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "emerald" | "teal" | "cyan" | "sky" | "blue" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "lightBlue" | "warmGray" | "trueGray" | "coolGray" | "blueGray";
|
|
6
|
+
}>, {
|
|
7
|
+
accessibilityLabel: null;
|
|
8
|
+
size: string;
|
|
9
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
10
|
+
/** Accessible label for the avatar image. */
|
|
11
|
+
accessibilityLabel?: string | null | undefined;
|
|
12
|
+
/** The color of the badge. */
|
|
13
|
+
color: "slate" | "gray" | "zinc" | "neutral" | "stone" | "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "emerald" | "teal" | "cyan" | "sky" | "blue" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose" | "lightBlue" | "warmGray" | "trueGray" | "coolGray" | "blueGray";
|
|
14
|
+
}>, {
|
|
15
|
+
accessibilityLabel: null;
|
|
16
|
+
size: string;
|
|
17
|
+
}>>>, {
|
|
18
|
+
accessibilityLabel: string | null;
|
|
19
|
+
}, {}>, {
|
|
20
|
+
default?(_: {}): any;
|
|
21
|
+
}>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_WithDefaults<P, D> = {
|
|
24
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
25
|
+
default: D[K];
|
|
26
|
+
}> : P[K];
|
|
27
|
+
};
|
|
28
|
+
type __VLS_Prettify<T> = {
|
|
29
|
+
[K in keyof T]: T[K];
|
|
30
|
+
} & {};
|
|
31
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
37
|
+
type __VLS_TypePropsToOption<T> = {
|
|
38
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
39
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
40
|
+
} : {
|
|
41
|
+
type: import('vue').PropType<T[K]>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
@@ -1,29 +1,30 @@
|
|
|
1
|
+
import { type FunctionalComponent, type HTMLAttributes, type VNodeProps } from 'vue';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
3
|
/** The alt text for the icon */
|
|
3
4
|
alt?: string | undefined;
|
|
4
|
-
/** The
|
|
5
|
-
|
|
5
|
+
/** The icon to display to the left, or right, of the navigation item. */
|
|
6
|
+
icon?: FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}> | null | undefined;
|
|
6
7
|
/** The source of the icon to display */
|
|
7
8
|
source?: string | null | undefined;
|
|
8
9
|
}>, {
|
|
9
10
|
alt: undefined;
|
|
10
|
-
|
|
11
|
+
icon: null;
|
|
11
12
|
source: null;
|
|
12
13
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
13
14
|
/** The alt text for the icon */
|
|
14
15
|
alt?: string | undefined;
|
|
15
|
-
/** The
|
|
16
|
-
|
|
16
|
+
/** The icon to display to the left, or right, of the navigation item. */
|
|
17
|
+
icon?: FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}> | null | undefined;
|
|
17
18
|
/** The source of the icon to display */
|
|
18
19
|
source?: string | null | undefined;
|
|
19
20
|
}>, {
|
|
20
21
|
alt: undefined;
|
|
21
|
-
|
|
22
|
+
icon: null;
|
|
22
23
|
source: null;
|
|
23
24
|
}>>>, {
|
|
24
25
|
source: string | null;
|
|
25
|
-
name: (() => void) | null;
|
|
26
26
|
alt: string;
|
|
27
|
+
icon: FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}> | null;
|
|
27
28
|
}, {}>;
|
|
28
29
|
export default _default;
|
|
29
30
|
type __VLS_WithDefaults<P, D> = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { type ButtonVariant, type ButtonProps } from './types';
|
|
2
2
|
export { default as Button } from './Button.vue';
|
|
3
|
+
export { default as ButtonBadge } from './ButtonBadge.vue';
|
|
3
4
|
export { default as ButtonContent } from './ButtonContent.vue';
|
|
4
5
|
export { default as ButtonIcon } from './ButtonIcon.vue';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
}>;
|
|
4
|
+
export default _default;
|
|
5
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
+
new (): {
|
|
7
|
+
$slots: S;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
|
+
default?(_: {}): any;
|
|
3
|
+
}>;
|
|
4
|
+
export default _default;
|
|
5
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
6
|
+
new (): {
|
|
7
|
+
$slots: S;
|
|
8
|
+
};
|
|
9
|
+
};
|
|
@@ -5,8 +5,11 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
5
5
|
source: string;
|
|
6
6
|
/** The cross-origin attribute of the image. */
|
|
7
7
|
crossOrigin?: "anonymous" | "use-credentials" | undefined;
|
|
8
|
+
/** Whether the image should be rounded. */
|
|
9
|
+
rounded?: boolean | undefined;
|
|
8
10
|
}>, {
|
|
9
11
|
crossOrigin: undefined;
|
|
12
|
+
rounded: boolean;
|
|
10
13
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
14
|
error: () => void;
|
|
12
15
|
load: () => void;
|
|
@@ -17,12 +20,16 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
17
20
|
source: string;
|
|
18
21
|
/** The cross-origin attribute of the image. */
|
|
19
22
|
crossOrigin?: "anonymous" | "use-credentials" | undefined;
|
|
23
|
+
/** Whether the image should be rounded. */
|
|
24
|
+
rounded?: boolean | undefined;
|
|
20
25
|
}>, {
|
|
21
26
|
crossOrigin: undefined;
|
|
27
|
+
rounded: boolean;
|
|
22
28
|
}>>> & {
|
|
23
29
|
onLoad?: (() => any) | undefined;
|
|
24
30
|
onError?: (() => any) | undefined;
|
|
25
31
|
}, {
|
|
32
|
+
rounded: boolean;
|
|
26
33
|
crossOrigin: "anonymous" | "use-credentials";
|
|
27
34
|
}, {}>;
|
|
28
35
|
export default _default;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
2
|
+
source: string;
|
|
3
|
+
alt: string;
|
|
4
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
5
|
+
source: string;
|
|
6
|
+
alt: string;
|
|
7
|
+
}>>>, {}, {}>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
10
|
+
type __VLS_TypePropsToOption<T> = {
|
|
11
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
12
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
13
|
+
} : {
|
|
14
|
+
type: import('vue').PropType<T[K]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { type FunctionalComponent, type HTMLAttributes, type VNodeProps } from 'vue';
|
|
1
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
3
|
/** Whether the navigation item is active. */
|
|
3
4
|
active?: boolean | undefined;
|
|
4
5
|
/** The URL to navigate to. */
|
|
5
6
|
href: string;
|
|
6
7
|
/** The icon to display to the left of the navigation item. */
|
|
7
|
-
icon?:
|
|
8
|
+
icon?: FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}> | null | undefined;
|
|
8
9
|
}>, {
|
|
9
10
|
active: boolean;
|
|
10
11
|
icon: null;
|
|
@@ -14,13 +15,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
14
15
|
/** The URL to navigate to. */
|
|
15
16
|
href: string;
|
|
16
17
|
/** The icon to display to the left of the navigation item. */
|
|
17
|
-
icon?:
|
|
18
|
+
icon?: FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}> | null | undefined;
|
|
18
19
|
}>, {
|
|
19
20
|
active: boolean;
|
|
20
21
|
icon: null;
|
|
21
22
|
}>>>, {
|
|
23
|
+
icon: FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}> | null;
|
|
22
24
|
active: boolean;
|
|
23
|
-
icon: (() => void) | null;
|
|
24
25
|
}, {}>, {
|
|
25
26
|
default?(_: {}): any;
|
|
26
27
|
}>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type FunctionalComponent, type HTMLAttributes, type VNodeProps } from 'vue';
|
|
1
2
|
declare let __VLS_typeProps: {
|
|
2
3
|
/** Enable automatic completion by the browser. Set to "off" when you do not want the browser to fill in info */
|
|
3
4
|
autoComplete?: string | null;
|
|
@@ -8,7 +9,7 @@ declare let __VLS_typeProps: {
|
|
|
8
9
|
/** The help text to display below the input. */
|
|
9
10
|
helpText?: string | null;
|
|
10
11
|
/** The icon to display inside the input. */
|
|
11
|
-
icon?:
|
|
12
|
+
icon?: FunctionalComponent<HTMLAttributes & VNodeProps> | string | undefined;
|
|
12
13
|
/** The ID of the input the label is associated with. */
|
|
13
14
|
id?: string | null;
|
|
14
15
|
/** The label text. */
|
|
@@ -65,10 +66,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
65
66
|
type: "number" | "search" | "time" | "text" | "date" | "datetime-local" | "email" | "month" | "password" | "tel" | "url" | "week" | "currency";
|
|
66
67
|
readonly: boolean;
|
|
67
68
|
id: string | null;
|
|
68
|
-
required: boolean;
|
|
69
69
|
error: string | null;
|
|
70
|
+
required: boolean;
|
|
70
71
|
disabled: boolean;
|
|
71
|
-
icon: string |
|
|
72
|
+
icon: string | FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}>;
|
|
72
73
|
labelHidden: boolean;
|
|
73
74
|
helpText: string | null;
|
|
74
75
|
placeholder: string | null;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import type { FunctionalComponent, HTMLAttributes, VNodeProps } from 'vue';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
2
|
-
icon: string |
|
|
3
|
+
icon: string | FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}>;
|
|
3
4
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<{
|
|
4
|
-
icon: string |
|
|
5
|
+
icon: string | FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}>;
|
|
5
6
|
}>>>, {}, {}>;
|
|
6
7
|
export default _default;
|
|
7
8
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,13 +1,34 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<{
|
|
2
|
-
/**
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
2
|
+
/** Whether the text is subdued. */
|
|
3
|
+
subdued?: boolean | undefined;
|
|
4
|
+
/** Whether the text is strong. */
|
|
5
|
+
strong?: boolean | undefined;
|
|
6
|
+
}>, {
|
|
7
|
+
subdued: boolean;
|
|
8
|
+
strong: boolean;
|
|
9
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
|
|
10
|
+
/** Whether the text is subdued. */
|
|
11
|
+
subdued?: boolean | undefined;
|
|
12
|
+
/** Whether the text is strong. */
|
|
13
|
+
strong?: boolean | undefined;
|
|
14
|
+
}>, {
|
|
15
|
+
subdued: boolean;
|
|
16
|
+
strong: boolean;
|
|
17
|
+
}>>>, {
|
|
18
|
+
strong: boolean;
|
|
19
|
+
subdued: boolean;
|
|
20
|
+
}, {}>, {
|
|
8
21
|
default?(_: {}): any;
|
|
9
22
|
}>;
|
|
10
23
|
export default _default;
|
|
24
|
+
type __VLS_WithDefaults<P, D> = {
|
|
25
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
26
|
+
default: D[K];
|
|
27
|
+
}> : P[K];
|
|
28
|
+
};
|
|
29
|
+
type __VLS_Prettify<T> = {
|
|
30
|
+
[K in keyof T]: T[K];
|
|
31
|
+
} & {};
|
|
11
32
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
12
33
|
new (): {
|
|
13
34
|
$slots: S;
|
|
@@ -7,7 +7,7 @@ export { Avatar } from './Avatar';
|
|
|
7
7
|
export { Badge, BadgeContent, BadgeIcon } from './Badge';
|
|
8
8
|
export { BarChart, BarChartContainer, BarChartStacked } from './BarChart';
|
|
9
9
|
export { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, } from './Breadcrumbs';
|
|
10
|
-
export { type ButtonVariant, Button, ButtonContent, ButtonIcon, } from './Button';
|
|
10
|
+
export { type ButtonVariant, Button, ButtonBadge, ButtonContent, ButtonIcon, } from './Button';
|
|
11
11
|
export { ButtonGroup } from './ButtonGroup';
|
|
12
12
|
export { Card, CardDescription, CardFooter, CardHeader, CardHelp, CardSection, CardTitle, } from './Card';
|
|
13
13
|
export { Checkbox } from './Checkbox';
|
|
@@ -16,6 +16,7 @@ export { DatePicker, DatePickerCard, } from './DatePicker';
|
|
|
16
16
|
export { DescriptionList, DescriptionListDescription, DescriptionListItem, DescriptionListTerm, } from './DescriptionList';
|
|
17
17
|
export { DropZone } from './DropZone';
|
|
18
18
|
export { EmptyState, EmptyStateActions, EmptyStateContent, EmptyStateDescription, EmptyStateTitle, } from './EmptyState';
|
|
19
|
+
export { FeatureList, FeatureListItem } from './FeatureList';
|
|
19
20
|
export { Feed, FeedItem, FeedItemBlock, FeedItemDateIndicator, FeedItemIcon, FeedItemSimple, } from './Feed';
|
|
20
21
|
export { FileUploadButton } from './FileUploadButton';
|
|
21
22
|
export { Form } from './Form';
|
|
@@ -24,6 +25,7 @@ export { type HeadingLevel, type HeadingSize, Heading, } from './Heading';
|
|
|
24
25
|
export { Image } from './Image';
|
|
25
26
|
export { InlineError } from './InlineError';
|
|
26
27
|
export { InputLabel } from './InputLabel';
|
|
28
|
+
export { IntegrationConnection, IntegrationConnectionItem } from './IntegrationConnection';
|
|
27
29
|
export { KPICard, KPICardSection } from './KPICard';
|
|
28
30
|
export { Legend, LegendItem } from './Legend';
|
|
29
31
|
export { Link } from './Link';
|