@leaflink/stash 50.9.0 → 50.10.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/EmptyState.js +29 -22
- package/dist/EmptyState.js.map +1 -1
- package/dist/EmptyState.vue.d.ts +8 -0
- package/dist/ListView.vue.d.ts +31 -0
- package/package.json +1 -1
package/dist/EmptyState.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as p, useCssModule as
|
|
1
|
+
import { defineComponent as p, useCssModule as f, useSlots as _, openBlock as s, createElementBlock as o, createBlock as g, createCommentVNode as n, createElementVNode as u, renderSlot as a, toDisplayString as i, normalizeClass as m, unref as r, createTextVNode as y } from "vue";
|
|
2
2
|
import { t as w } from "./locale.js";
|
|
3
3
|
import { _ as b } from "./Illustration.vue_vue_type_script_setup_true_lang-CYddAFtS.js";
|
|
4
4
|
import { _ as h } from "./_plugin-vue_export-helper-CHgC5LLL.js";
|
|
@@ -9,7 +9,7 @@ const x = {
|
|
|
9
9
|
}, k = {
|
|
10
10
|
key: 0,
|
|
11
11
|
class: "tw-flex tw-flex-col tw-items-center tw-text-center md:tw-flex-row md:tw-text-left"
|
|
12
|
-
}, v = { class: "tw-mb-1.5" },
|
|
12
|
+
}, v = { class: "tw-mb-1.5" }, $ = ["alt", "src"], S = /* @__PURE__ */ p({
|
|
13
13
|
name: "ll-empty-state",
|
|
14
14
|
__name: "EmptyState",
|
|
15
15
|
props: {
|
|
@@ -20,46 +20,53 @@ const x = {
|
|
|
20
20
|
text: { default: "" },
|
|
21
21
|
title: { default: "" },
|
|
22
22
|
subtitle: { default: "" },
|
|
23
|
+
footnote: { default: "" },
|
|
23
24
|
vignette: { default: void 0 }
|
|
24
25
|
},
|
|
25
26
|
setup(d) {
|
|
26
|
-
const t = d, c =
|
|
27
|
-
return (l, N) => (s(),
|
|
28
|
-
t.title || e.title || t.subtitle || e.subtitle || t.vignette ? (s(),
|
|
29
|
-
t.vignette ? (s(),
|
|
27
|
+
const t = d, c = f(), e = _();
|
|
28
|
+
return (l, N) => (s(), o("div", x, [
|
|
29
|
+
t.title || e.title || t.subtitle || e.subtitle || t.vignette ? (s(), o("div", k, [
|
|
30
|
+
t.vignette ? (s(), g(b, {
|
|
30
31
|
key: 0,
|
|
31
32
|
"data-test": "stash-empty-state|illustration",
|
|
32
33
|
type: "vignette",
|
|
33
34
|
class: "tw-mx-3",
|
|
34
35
|
name: t.vignette,
|
|
35
36
|
size: 300
|
|
36
|
-
}, null, 8, ["name"])) :
|
|
37
|
+
}, null, 8, ["name"])) : n("", !0),
|
|
37
38
|
u("section", null, [
|
|
38
|
-
|
|
39
|
-
u("h3", v,
|
|
39
|
+
a(l.$slots, "title", {}, () => [
|
|
40
|
+
u("h3", v, i(t.title), 1)
|
|
40
41
|
]),
|
|
41
|
-
|
|
42
|
-
t.subtitle || e.subtitle ? (s(),
|
|
42
|
+
a(l.$slots, "subtitle", {}, () => [
|
|
43
|
+
t.subtitle || e.subtitle ? (s(), o("p", {
|
|
43
44
|
key: 0,
|
|
44
|
-
class:
|
|
45
|
-
},
|
|
45
|
+
class: m({ "tw-mb-8": e.button, "tw-mb-0": !e.button })
|
|
46
|
+
}, i(t.subtitle), 3)) : n("", !0)
|
|
46
47
|
]),
|
|
47
|
-
|
|
48
|
+
a(l.$slots, "button"),
|
|
49
|
+
a(l.$slots, "footnote", {}, () => [
|
|
50
|
+
t.footnote ? (s(), o("p", {
|
|
51
|
+
key: 0,
|
|
52
|
+
class: m(["tw-mb-0 tw-text-xs", { "tw-mt-3": e.button }])
|
|
53
|
+
}, i(t.footnote), 3)) : n("", !0)
|
|
54
|
+
])
|
|
48
55
|
])
|
|
49
|
-
])) : (s(),
|
|
56
|
+
])) : (s(), o("div", {
|
|
50
57
|
key: 1,
|
|
51
|
-
class:
|
|
58
|
+
class: m(["tw-mx-auto tw-my-0 tw-flex tw-items-center tw-justify-center tw-py-12", [r(c).root, { "tw-text-center": !t.image.src && !e.image }]])
|
|
52
59
|
}, [
|
|
53
|
-
|
|
54
|
-
t.image.src ? (s(),
|
|
60
|
+
a(l.$slots, "image", {}, () => [
|
|
61
|
+
t.image.src ? (s(), o("img", {
|
|
55
62
|
key: 0,
|
|
56
|
-
class:
|
|
63
|
+
class: m(["tw-mr-6", r(c).image]),
|
|
57
64
|
alt: t.image.alt,
|
|
58
65
|
src: t.image.src,
|
|
59
66
|
"data-test": "stash-empty-state__img"
|
|
60
|
-
}, null, 10,
|
|
67
|
+
}, null, 10, $)) : n("", !0)
|
|
61
68
|
]),
|
|
62
|
-
|
|
69
|
+
y(" " + i(t.text || r(w)("ll.emptyState.noResults")), 1)
|
|
63
70
|
], 2))
|
|
64
71
|
]));
|
|
65
72
|
}
|
|
@@ -68,7 +75,7 @@ const x = {
|
|
|
68
75
|
image: E
|
|
69
76
|
}, M = {
|
|
70
77
|
$style: B
|
|
71
|
-
}, R = /* @__PURE__ */ h(
|
|
78
|
+
}, R = /* @__PURE__ */ h(S, [["__cssModules", M]]);
|
|
72
79
|
export {
|
|
73
80
|
R as default
|
|
74
81
|
};
|
package/dist/EmptyState.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EmptyState.js","sources":["../src/components/EmptyState/EmptyState.vue"],"sourcesContent":["<script lang=\"ts\" setup>\n import { useCssModule } from 'vue';\n\n import { t } from '../../locale';\n import { VignetteNames } from '../Illustration/Illustration.models';\n import Illustration from '../Illustration/Illustration.vue';\n\n export interface EmptyStateProps {\n /**\n * @deprecated Use illustration instead.\n */\n image?: {\n alt?: string;\n src: string;\n };\n\n /**\n * @deprecated Use title instead.\n */\n text?: string;\n\n /**\n * the title text of the empty state\n */\n title?: string;\n\n /**\n * the subtitle text of the empty state\n */\n subtitle?: string;\n\n /**\n * The name of the vignette illustration to render\n */\n vignette?: VignetteNames;\n }\n\n export interface EmptyStateSlots {\n title?: () => unknown;\n subtitle?: () => unknown;\n button?: () => unknown;\n image?: () => unknown;\n }\n\n defineOptions({\n name: 'll-empty-state',\n });\n\n const props = withDefaults(defineProps<EmptyStateProps>(), {\n /**\n * An optional image to render\n */\n image: () => ({\n alt: '',\n src: '',\n }),\n\n /**\n * The custom message to render\n */\n text: '',\n\n title: '',\n subtitle: '',\n vignette: undefined,\n });\n\n const classes = useCssModule();\n const slots = defineSlots<EmptyStateSlots>();\n</script>\n\n<template>\n <div key=\"empty\" class=\"stash-empty-state\" data-test=\"stash-empty-state\">\n <template v-if=\"props.title || slots.title || props.subtitle || slots.subtitle || props.vignette\">\n <div class=\"tw-flex tw-flex-col tw-items-center tw-text-center md:tw-flex-row md:tw-text-left\">\n <Illustration\n v-if=\"props.vignette\"\n data-test=\"stash-empty-state|illustration\"\n type=\"vignette\"\n class=\"tw-mx-3\"\n :name=\"props.vignette\"\n :size=\"300\"\n />\n <section>\n <slot name=\"title\">\n <h3 class=\"tw-mb-1.5\">\n {{ props.title }}\n </h3>\n </slot>\n\n <slot name=\"subtitle\">\n <p v-if=\"props.subtitle || slots.subtitle\" :class=\"{ '
|
|
1
|
+
{"version":3,"file":"EmptyState.js","sources":["../src/components/EmptyState/EmptyState.vue"],"sourcesContent":["<script lang=\"ts\" setup>\n import { useCssModule } from 'vue';\n\n import { t } from '../../locale';\n import { VignetteNames } from '../Illustration/Illustration.models';\n import Illustration from '../Illustration/Illustration.vue';\n\n export interface EmptyStateProps {\n /**\n * @deprecated Use illustration instead.\n */\n image?: {\n alt?: string;\n src: string;\n };\n\n /**\n * @deprecated Use title instead.\n */\n text?: string;\n\n /**\n * the title text of the empty state\n */\n title?: string;\n\n /**\n * the subtitle text of the empty state\n */\n subtitle?: string;\n\n /**\n * additional text to place at the bottom of the empty state\n */\n footnote?: string;\n\n /**\n * The name of the vignette illustration to render\n */\n vignette?: VignetteNames;\n }\n\n export interface EmptyStateSlots {\n title?: () => unknown;\n subtitle?: () => unknown;\n footnote?: () => unknown;\n button?: () => unknown;\n image?: () => unknown;\n }\n\n defineOptions({\n name: 'll-empty-state',\n });\n\n const props = withDefaults(defineProps<EmptyStateProps>(), {\n /**\n * An optional image to render\n */\n image: () => ({\n alt: '',\n src: '',\n }),\n\n /**\n * The custom message to render\n */\n text: '',\n\n title: '',\n subtitle: '',\n footnote: '',\n vignette: undefined,\n });\n\n const classes = useCssModule();\n const slots = defineSlots<EmptyStateSlots>();\n</script>\n\n<template>\n <div key=\"empty\" class=\"stash-empty-state\" data-test=\"stash-empty-state\">\n <template v-if=\"props.title || slots.title || props.subtitle || slots.subtitle || props.vignette\">\n <div class=\"tw-flex tw-flex-col tw-items-center tw-text-center md:tw-flex-row md:tw-text-left\">\n <Illustration\n v-if=\"props.vignette\"\n data-test=\"stash-empty-state|illustration\"\n type=\"vignette\"\n class=\"tw-mx-3\"\n :name=\"props.vignette\"\n :size=\"300\"\n />\n <section>\n <slot name=\"title\">\n <h3 class=\"tw-mb-1.5\">\n {{ props.title }}\n </h3>\n </slot>\n\n <slot name=\"subtitle\">\n <p v-if=\"props.subtitle || slots.subtitle\" :class=\"{ 'tw-mb-8': slots.button, 'tw-mb-0': !slots.button }\">\n {{ props.subtitle }}\n </p>\n </slot>\n\n <slot name=\"button\"></slot>\n <slot name=\"footnote\">\n <p v-if=\"props.footnote\" class=\"tw-mb-0 tw-text-xs\" :class=\"{ 'tw-mt-3': slots.button }\">\n {{ props.footnote }}\n </p>\n </slot>\n </section>\n </div>\n </template>\n\n <template v-else>\n <div\n class=\"tw-mx-auto tw-my-0 tw-flex tw-items-center tw-justify-center tw-py-12\"\n :class=\"[classes.root, { 'tw-text-center': !props.image.src && !slots.image }]\"\n >\n <slot name=\"image\">\n <img\n v-if=\"props.image.src\"\n class=\"tw-mr-6\"\n :alt=\"props.image.alt\"\n :class=\"classes.image\"\n :src=\"props.image.src\"\n data-test=\"stash-empty-state__img\"\n />\n </slot>\n\n {{ props.text || t('ll.emptyState.noResults') }}\n </div>\n </template>\n </div>\n</template>\n\n<style module>\n .root {\n max-width: 600px;\n }\n\n .image {\n max-width: 60px;\n }\n</style>\n"],"names":["props","__props","classes","useCssModule","slots","_useSlots"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAsDE,UAAMA,IAAQC,GAoBRC,IAAUC,EAAa,GACvBC,IAAQC,EAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/EmptyState.vue.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ src: string;
|
|
|
46
46
|
text: string;
|
|
47
47
|
title: string;
|
|
48
48
|
subtitle: string;
|
|
49
|
+
footnote: string;
|
|
49
50
|
vignette: undefined;
|
|
50
51
|
}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<EmptyStateProps>, {
|
|
51
52
|
/**
|
|
@@ -61,6 +62,7 @@ src: string;
|
|
|
61
62
|
text: string;
|
|
62
63
|
title: string;
|
|
63
64
|
subtitle: string;
|
|
65
|
+
footnote: string;
|
|
64
66
|
vignette: undefined;
|
|
65
67
|
}>>> & Readonly<{}>, {
|
|
66
68
|
title: string;
|
|
@@ -71,6 +73,7 @@ src: string;
|
|
|
71
73
|
text: string;
|
|
72
74
|
subtitle: string;
|
|
73
75
|
vignette: "map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery";
|
|
76
|
+
footnote: string;
|
|
74
77
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, Readonly<EmptyStateSlots> & EmptyStateSlots>;
|
|
75
78
|
export default _default;
|
|
76
79
|
|
|
@@ -94,6 +97,10 @@ export declare interface EmptyStateProps {
|
|
|
94
97
|
* the subtitle text of the empty state
|
|
95
98
|
*/
|
|
96
99
|
subtitle?: string;
|
|
100
|
+
/**
|
|
101
|
+
* additional text to place at the bottom of the empty state
|
|
102
|
+
*/
|
|
103
|
+
footnote?: string;
|
|
97
104
|
/**
|
|
98
105
|
* The name of the vignette illustration to render
|
|
99
106
|
*/
|
|
@@ -103,6 +110,7 @@ export declare interface EmptyStateProps {
|
|
|
103
110
|
export declare interface EmptyStateSlots {
|
|
104
111
|
title?: () => unknown;
|
|
105
112
|
subtitle?: () => unknown;
|
|
113
|
+
footnote?: () => unknown;
|
|
106
114
|
button?: () => unknown;
|
|
107
115
|
image?: () => unknown;
|
|
108
116
|
}
|
package/dist/ListView.vue.d.ts
CHANGED
|
@@ -3489,6 +3489,10 @@ vignette: {
|
|
|
3489
3489
|
type: PropType<"map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery">;
|
|
3490
3490
|
default: undefined;
|
|
3491
3491
|
};
|
|
3492
|
+
footnote: {
|
|
3493
|
+
type: PropType<string>;
|
|
3494
|
+
default: string;
|
|
3495
|
+
};
|
|
3492
3496
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
3493
3497
|
title: string;
|
|
3494
3498
|
image: {
|
|
@@ -3498,6 +3502,7 @@ src: string;
|
|
|
3498
3502
|
text: string;
|
|
3499
3503
|
subtitle: string;
|
|
3500
3504
|
vignette: "map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery";
|
|
3505
|
+
footnote: string;
|
|
3501
3506
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
3502
3507
|
P: {};
|
|
3503
3508
|
B: {};
|
|
@@ -3532,6 +3537,10 @@ vignette: {
|
|
|
3532
3537
|
type: PropType<"map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery">;
|
|
3533
3538
|
default: undefined;
|
|
3534
3539
|
};
|
|
3540
|
+
footnote: {
|
|
3541
|
+
type: PropType<string>;
|
|
3542
|
+
default: string;
|
|
3543
|
+
};
|
|
3535
3544
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
3536
3545
|
title: string;
|
|
3537
3546
|
image: {
|
|
@@ -3541,6 +3550,7 @@ src: string;
|
|
|
3541
3550
|
text: string;
|
|
3542
3551
|
subtitle: string;
|
|
3543
3552
|
vignette: "map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery";
|
|
3553
|
+
footnote: string;
|
|
3544
3554
|
}>;
|
|
3545
3555
|
__isFragment?: undefined;
|
|
3546
3556
|
__isTeleport?: undefined;
|
|
@@ -3572,6 +3582,10 @@ vignette: {
|
|
|
3572
3582
|
type: PropType<"map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery">;
|
|
3573
3583
|
default: undefined;
|
|
3574
3584
|
};
|
|
3585
|
+
footnote: {
|
|
3586
|
+
type: PropType<string>;
|
|
3587
|
+
default: string;
|
|
3588
|
+
};
|
|
3575
3589
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
3576
3590
|
title: string;
|
|
3577
3591
|
image: {
|
|
@@ -3581,6 +3595,7 @@ src: string;
|
|
|
3581
3595
|
text: string;
|
|
3582
3596
|
subtitle: string;
|
|
3583
3597
|
vignette: "map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery";
|
|
3598
|
+
footnote: string;
|
|
3584
3599
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
3585
3600
|
$slots: Readonly<EmptyStateSlots> & EmptyStateSlots;
|
|
3586
3601
|
});
|
|
@@ -4687,6 +4702,7 @@ declare type DropdownOffset = {
|
|
|
4687
4702
|
declare interface EmptyStateSlots {
|
|
4688
4703
|
title?: () => unknown;
|
|
4689
4704
|
subtitle?: () => unknown;
|
|
4705
|
+
footnote?: () => unknown;
|
|
4690
4706
|
button?: () => unknown;
|
|
4691
4707
|
image?: () => unknown;
|
|
4692
4708
|
}
|
|
@@ -5253,6 +5269,10 @@ vignette: {
|
|
|
5253
5269
|
type: PropType<"map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery">;
|
|
5254
5270
|
default: undefined;
|
|
5255
5271
|
};
|
|
5272
|
+
footnote: {
|
|
5273
|
+
type: PropType<string>;
|
|
5274
|
+
default: string;
|
|
5275
|
+
};
|
|
5256
5276
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
5257
5277
|
title: string;
|
|
5258
5278
|
image: {
|
|
@@ -5262,6 +5282,7 @@ src: string;
|
|
|
5262
5282
|
text: string;
|
|
5263
5283
|
subtitle: string;
|
|
5264
5284
|
vignette: "map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery";
|
|
5285
|
+
footnote: string;
|
|
5265
5286
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
5266
5287
|
P: {};
|
|
5267
5288
|
B: {};
|
|
@@ -5296,6 +5317,10 @@ vignette: {
|
|
|
5296
5317
|
type: PropType<"map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery">;
|
|
5297
5318
|
default: undefined;
|
|
5298
5319
|
};
|
|
5320
|
+
footnote: {
|
|
5321
|
+
type: PropType<string>;
|
|
5322
|
+
default: string;
|
|
5323
|
+
};
|
|
5299
5324
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
5300
5325
|
title: string;
|
|
5301
5326
|
image: {
|
|
@@ -5305,6 +5330,7 @@ src: string;
|
|
|
5305
5330
|
text: string;
|
|
5306
5331
|
subtitle: string;
|
|
5307
5332
|
vignette: "map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery";
|
|
5333
|
+
footnote: string;
|
|
5308
5334
|
}>;
|
|
5309
5335
|
__isFragment?: undefined;
|
|
5310
5336
|
__isTeleport?: undefined;
|
|
@@ -5336,6 +5362,10 @@ vignette: {
|
|
|
5336
5362
|
type: PropType<"map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery">;
|
|
5337
5363
|
default: undefined;
|
|
5338
5364
|
};
|
|
5365
|
+
footnote: {
|
|
5366
|
+
type: PropType<string>;
|
|
5367
|
+
default: string;
|
|
5368
|
+
};
|
|
5339
5369
|
}>> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
5340
5370
|
title: string;
|
|
5341
5371
|
image: {
|
|
@@ -5345,6 +5375,7 @@ src: string;
|
|
|
5345
5375
|
text: string;
|
|
5346
5376
|
subtitle: string;
|
|
5347
5377
|
vignette: "map" | "search" | "calendar" | "dashboard" | "edit" | "megaphone" | "truck" | "warehouse" | "payments" | "light-bulb" | "messages" | "pie-chart" | "api" | "bank" | "basket" | "brand-menu" | "deals" | "document-search" | "empty-tray" | "graph" | "integrations" | "money-bank" | "notifications" | "orders-empty" | "product-cards" | "product-display" | "search-storefront" | "store" | "todo" | "users" | "warehouse-delivery";
|
|
5378
|
+
footnote: string;
|
|
5348
5379
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
5349
5380
|
$slots: Readonly<EmptyStateSlots> & EmptyStateSlots;
|
|
5350
5381
|
});
|