bt-core-app 2.2.13 → 2.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/components/BT-Background-Task.vue.d.ts +1 -1
  2. package/dist/components/BT-Banner.vue.d.ts +35 -0
  3. package/dist/components/BT-Banner.vue.mjs +115 -0
  4. package/dist/components/BT-Banner.vue2.mjs +4 -0
  5. package/dist/components/BT-Blade-Item.vue.d.ts +2 -2
  6. package/dist/components/BT-Blade-Items.vue.d.ts +5 -5
  7. package/dist/components/BT-Blade-Steps.vue.d.ts +5 -5
  8. package/dist/components/BT-Blade.vue.d.ts +2 -2
  9. package/dist/components/BT-Btn.vue.d.ts +1 -1
  10. package/dist/components/BT-Col.vue.d.ts +2 -2
  11. package/dist/components/BT-Field-Checkbox.vue.d.ts +3 -3
  12. package/dist/components/BT-Field-Date.vue.d.ts +3 -3
  13. package/dist/components/BT-Field-Entity.vue.d.ts +2 -2
  14. package/dist/components/BT-Field-Select-Simple.vue.d.ts +3 -3
  15. package/dist/components/BT-Field-Select.vue.d.ts +3 -3
  16. package/dist/components/BT-Field-String.vue.d.ts +3 -3
  17. package/dist/components/BT-Field-Switch.vue.d.ts +3 -3
  18. package/dist/components/BT-Field-Tags.vue.d.ts +3 -3
  19. package/dist/components/BT-Field-Textarea.vue.d.ts +3 -3
  20. package/dist/components/BT-Field-Trigger.vue.d.ts +3 -3
  21. package/dist/components/BT-Field.vue.d.ts +2 -2
  22. package/dist/components/BT-Form-Field.vue.d.ts +2 -2
  23. package/dist/components/BT-Numpad.vue.d.ts +2 -2
  24. package/dist/components/BT-Select-Inline.vue.d.ts +1 -1
  25. package/dist/components/BT-Select-List-Box.vue.d.ts +5 -5
  26. package/dist/components/BT-Select-Simple.vue.d.ts +1 -1
  27. package/dist/components/BT-Select.vue.d.ts +1 -1
  28. package/dist/components/BT-Signature-Overlay.vue.d.ts +1 -1
  29. package/dist/components/BT-Square-Check.vue.d.ts +1 -1
  30. package/dist/components.mjs +34 -32
  31. package/dist/composables/banners.d.ts +40 -0
  32. package/dist/composables/banners.mjs +43 -0
  33. package/dist/composables/blade.mjs +7 -7
  34. package/dist/composables/forms.mjs +17 -18
  35. package/dist/composables/graph-pro.mjs +14 -15
  36. package/dist/composables/list.mjs +9 -10
  37. package/dist/composables.mjs +231 -229
  38. package/dist/index-components.d.ts +2 -1
  39. package/dist/index-composables.d.ts +2 -0
  40. package/dist/index.d.ts +4 -1
  41. package/dist/index.mjs +261 -257
  42. package/dist/node_modules/bt-core-app/dist/bt-core-app.mjs +1617 -1638
  43. package/dist/style.css +1 -1
  44. package/package.json +1 -1
@@ -25,8 +25,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
25
25
  minWidth: string;
26
26
  text: string;
27
27
  }>>> & Readonly<{}>, {
28
- minWidth: string;
29
28
  text: string;
29
+ minWidth: string;
30
30
  btnClass: string;
31
31
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
32
32
  default?(_: {
@@ -0,0 +1,35 @@
1
+ import { UseBannersOptions } from '../composables/banners.ts';
2
+
3
+ interface BannerOptions extends UseBannersOptions {
4
+ name: string;
5
+ title?: string;
6
+ }
7
+ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<BannerOptions>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<BannerOptions>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Partial<Record<string, (_: {
8
+ data: {
9
+ doShow: boolean;
10
+ isComplete: boolean;
11
+ bannerName: string;
12
+ canIgnore?: boolean | undefined;
13
+ noText?: string | undefined;
14
+ onRespond?: ((confirm?: boolean | undefined) => Promise<void>) | undefined;
15
+ subtitle?: string | undefined;
16
+ text?: string | undefined;
17
+ title?: string | undefined;
18
+ yesText?: string | undefined;
19
+ };
20
+ }) => any>>>;
21
+ export default _default;
22
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
23
+ type __VLS_TypePropsToRuntimeProps<T> = {
24
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
25
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
26
+ } : {
27
+ type: import('vue').PropType<T[K]>;
28
+ required: true;
29
+ };
30
+ };
31
+ type __VLS_WithTemplateSlots<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ };
@@ -0,0 +1,115 @@
1
+ import { defineComponent as V, resolveComponent as $, unref as e, openBlock as l, createBlock as a, withCtx as n, createVNode as r, isRef as w, createElementBlock as T, Fragment as I, renderList as N, renderSlot as S, createSlots as _, withModifiers as s, createCommentVNode as u } from "vue";
2
+ import { useBanners as A } from "../composables/banners.mjs";
3
+ import { VCard as v } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCard.mjs";
4
+ import { VWindow as F } from "../bt-core/core/node_modules/vuetify/lib/components/VWindow/VWindow.mjs";
5
+ import { VWindowItem as L } from "../bt-core/core/node_modules/vuetify/lib/components/VWindow/VWindowItem.mjs";
6
+ import { VBtn as p } from "../bt-core/core/node_modules/vuetify/lib/components/VBtn/VBtn.mjs";
7
+ import { VCardActions as W } from "../bt-core/core/node_modules/vuetify/lib/components/VCard/VCardActions.mjs";
8
+ const q = /* @__PURE__ */ V({
9
+ __name: "BT-Banner",
10
+ props: {
11
+ name: {},
12
+ title: {},
13
+ getBanners: { type: Function },
14
+ banners: {}
15
+ },
16
+ setup(x) {
17
+ const d = x, {
18
+ currentBannerInd: i,
19
+ displayBanners: y,
20
+ isLoading: k,
21
+ nextStage: m,
22
+ previousStage: g
23
+ } = A(d.name, d);
24
+ return (c, o) => {
25
+ const C = $("v-spacer");
26
+ return e(i) >= 0 ? (l(), a(e(v), {
27
+ key: 0,
28
+ color: "primary",
29
+ loading: e(k),
30
+ tile: "",
31
+ title: c.title
32
+ }, {
33
+ default: n(() => [
34
+ r(e(F), {
35
+ modelValue: e(i),
36
+ "onUpdate:modelValue": o[3] || (o[3] = (t) => w(i) ? i.value = t : null),
37
+ class: "transparent",
38
+ style: { width: "100%" },
39
+ touchless: ""
40
+ }, {
41
+ default: n(() => [
42
+ (l(!0), T(I, null, N(e(y), (t, B) => (l(), a(e(L), {
43
+ key: `${B}-${t.bannerName}`
44
+ }, {
45
+ default: n(() => [
46
+ S(c.$slots, t.bannerName, { data: t }, () => [
47
+ r(e(v), {
48
+ class: "ma-2",
49
+ text: t.text,
50
+ subtitle: t.subtitle,
51
+ title: t.title,
52
+ variant: "outlined"
53
+ }, _({
54
+ prepend: n(() => [
55
+ r(e(p), {
56
+ icon: "$chevron-left",
57
+ onClick: s(e(g), ["stop"]),
58
+ variant: "text"
59
+ }, null, 8, ["onClick"])
60
+ ]),
61
+ default: n(() => [
62
+ r(e(W), null, {
63
+ default: n(() => [
64
+ t.noText != null ? (l(), a(e(p), {
65
+ key: 0,
66
+ onClick: o[1] || (o[1] = s((f) => e(m)({ respond: !1 }), ["stop"])),
67
+ color: "primary",
68
+ text: t.noText,
69
+ variant: "elevated"
70
+ }, null, 8, ["text"])) : u("", !0),
71
+ r(C),
72
+ t.yesText != null ? (l(), a(e(p), {
73
+ key: 1,
74
+ onClick: o[2] || (o[2] = s((f) => e(m)({ respond: !0 }), ["stop"])),
75
+ color: "primary",
76
+ text: t.yesText,
77
+ variant: "elevated"
78
+ }, null, 8, ["text"])) : u("", !0)
79
+ ]),
80
+ _: 2
81
+ }, 1024)
82
+ ]),
83
+ _: 2
84
+ }, [
85
+ t.canIgnore ? {
86
+ name: "append",
87
+ fn: n(() => [
88
+ r(e(p), {
89
+ "append-icon": "$chevron-right",
90
+ onClick: o[0] || (o[0] = s((f) => e(m)({ neverAgain: !0 }), ["stop"])),
91
+ color: "primary",
92
+ size: "small",
93
+ text: "Ignore",
94
+ variant: "elevated"
95
+ })
96
+ ]),
97
+ key: "0"
98
+ } : void 0
99
+ ]), 1032, ["text", "subtitle", "title"])
100
+ ])
101
+ ]),
102
+ _: 2
103
+ }, 1024))), 128))
104
+ ]),
105
+ _: 3
106
+ }, 8, ["modelValue"])
107
+ ]),
108
+ _: 3
109
+ }, 8, ["loading", "title"])) : u("", !0);
110
+ };
111
+ }
112
+ });
113
+ export {
114
+ q as default
115
+ };
@@ -0,0 +1,4 @@
1
+ import f from "./BT-Banner.vue.mjs";
2
+ export {
3
+ f as default
4
+ };
@@ -67,10 +67,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
67
67
  }>, {
68
68
  flat: boolean;
69
69
  eager: boolean;
70
+ variant: import("../composables/blade.ts").BladeVariant;
71
+ density: BladeDensity;
70
72
  useBladeSrc: boolean;
71
73
  useRouteSrc: boolean;
72
- density: BladeDensity;
73
- variant: import("../composables/blade.ts").BladeVariant;
74
74
  alwaysClose: boolean;
75
75
  canDelete: boolean;
76
76
  canEdit: boolean;
@@ -116,22 +116,22 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
116
116
  onInput?: ((item: any) => any) | undefined;
117
117
  onSelect?: ((item: any) => any) | undefined;
118
118
  onChange?: ((item: any) => any) | undefined;
119
+ onConfirm?: ((item: any) => any) | undefined;
119
120
  onDeleted?: ((item: any) => any) | undefined;
120
121
  onFetched?: ((item: any) => any) | undefined;
121
- onConfirm?: ((item: any) => any) | undefined;
122
122
  "onMouse-over-item"?: ((item: any) => any) | undefined;
123
123
  "onUpdate:selected"?: ((value: any) => any) | undefined;
124
124
  }>, {
125
125
  size: string | number;
126
126
  eager: boolean;
127
- useBladeSrc: boolean;
128
- useRouteSrc: boolean;
129
- density: BladeDensity;
130
127
  variant: import("../composables/blade.ts").BladeVariant;
128
+ density: BladeDensity;
131
129
  ripple: boolean;
130
+ activeClass: string;
131
+ useBladeSrc: boolean;
132
+ useRouteSrc: boolean;
132
133
  canDelete: boolean;
133
134
  heightStrat: "fixed" | "upto";
134
- activeClass: string;
135
135
  hideSubtoolbar: boolean;
136
136
  actionButtonSize: string;
137
137
  canAdd: boolean;
@@ -132,25 +132,25 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
132
132
  onInput?: ((item: any) => any) | undefined;
133
133
  onSelect?: ((item: any) => any) | undefined;
134
134
  onChange?: ((item: any) => any) | undefined;
135
+ onConfirm?: ((item: any) => any) | undefined;
135
136
  onDeleted?: ((item: any) => any) | undefined;
136
137
  onFetched?: ((item: any) => any) | undefined;
137
- onConfirm?: ((item: any) => any) | undefined;
138
138
  "onMouse-over-item"?: ((item: any) => any) | undefined;
139
139
  onSaved?: ((item: any, isNew?: boolean | undefined) => any) | undefined;
140
140
  }>, {
141
141
  size: string | number;
142
142
  eager: boolean;
143
- useBladeSrc: boolean;
144
- useRouteSrc: boolean;
145
- density: BladeDensity;
146
143
  variant: import("../composables/blade.ts").BladeVariant;
144
+ density: BladeDensity;
147
145
  ripple: boolean;
146
+ activeClass: string;
147
+ useBladeSrc: boolean;
148
+ useRouteSrc: boolean;
148
149
  canDelete: boolean;
149
150
  heightStrat: "fixed" | "upto";
150
151
  canSave: boolean;
151
152
  startEditing: boolean;
152
153
  trackChanges: boolean;
153
- activeClass: string;
154
154
  actionButtonSize: string;
155
155
  canAdd: boolean;
156
156
  canSearch: boolean;
@@ -62,10 +62,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
62
62
  flat: boolean;
63
63
  size: string | number;
64
64
  width: string | number;
65
- bladeStartShowing: boolean;
66
- density: BladeDensity;
67
65
  variant: BladeVariant;
66
+ bladeStartShowing: boolean;
68
67
  minHeight: string;
68
+ density: BladeDensity;
69
69
  showOnlyTitleLeft: boolean;
70
70
  hideToolbarSettings: boolean;
71
71
  noMargins: boolean;
@@ -24,7 +24,7 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
24
24
  }>, {
25
25
  size: string;
26
26
  icon: string;
27
- variant: "flat" | "outlined" | "plain" | "text" | "elevated" | "tonal";
27
+ variant: "flat" | "text" | "outlined" | "plain" | "elevated" | "tonal";
28
28
  isEditing: boolean;
29
29
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
30
30
  export default _default;
@@ -18,9 +18,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
18
18
  sm: string;
19
19
  }>>> & Readonly<{}>, {
20
20
  sm: string | boolean;
21
- cols: string | boolean;
22
- lg: string | boolean;
23
21
  md: string | boolean;
22
+ lg: string | boolean;
23
+ cols: string | boolean;
24
24
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
25
25
  default?(_: {}): any;
26
26
  }>;
@@ -31,11 +31,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
31
31
  }>>> & Readonly<{
32
32
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
33
33
  }>, {
34
- isEditing: boolean;
35
34
  sm: string | boolean;
36
- cols: string | boolean;
37
- lg: string | boolean;
38
35
  md: string | boolean;
36
+ lg: string | boolean;
37
+ cols: string | boolean;
38
+ isEditing: boolean;
39
39
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
40
40
  export default _default;
41
41
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -41,11 +41,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
41
41
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
42
42
  }>, {
43
43
  format: string;
44
- isEditing: boolean;
45
44
  sm: string | boolean;
46
- cols: string | boolean;
47
- lg: string | boolean;
48
45
  md: string | boolean;
46
+ lg: string | boolean;
47
+ cols: string | boolean;
48
+ isEditing: boolean;
49
49
  fromNow: boolean;
50
50
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
51
51
  export default _default;
@@ -24,9 +24,9 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
24
24
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
25
25
  }>, {
26
26
  sm: string | boolean;
27
- cols: string | boolean;
28
- lg: string | boolean;
29
27
  md: string | boolean;
28
+ lg: string | boolean;
29
+ cols: string | boolean;
30
30
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
31
31
  export default _default;
32
32
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -29,11 +29,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
29
29
  onSelect?: ((...args: any[]) => any) | undefined;
30
30
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
31
31
  }>, {
32
- isEditing: boolean;
33
32
  sm: string | boolean;
34
- cols: string | boolean;
35
- lg: string | boolean;
36
33
  md: string | boolean;
34
+ lg: string | boolean;
35
+ cols: string | boolean;
36
+ isEditing: boolean;
37
37
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
38
38
  export default _default;
39
39
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -29,11 +29,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
29
29
  onSelect?: ((...args: any[]) => any) | undefined;
30
30
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
31
31
  }>, {
32
- isEditing: boolean;
33
32
  sm: string | boolean;
34
- cols: string | boolean;
35
- lg: string | boolean;
36
33
  md: string | boolean;
34
+ lg: string | boolean;
35
+ cols: string | boolean;
36
+ isEditing: boolean;
37
37
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
38
38
  item?(_: {
39
39
  item: import('vuetify/lib/composables/list-items.mjs').ListItem<any>;
@@ -31,11 +31,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
31
31
  }>>> & Readonly<{
32
32
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
33
33
  }>, {
34
- isEditing: boolean;
35
34
  sm: string | boolean;
36
- cols: string | boolean;
37
- lg: string | boolean;
38
35
  md: string | boolean;
36
+ lg: string | boolean;
37
+ cols: string | boolean;
38
+ isEditing: boolean;
39
39
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
40
40
  export default _default;
41
41
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -25,11 +25,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
25
25
  }>>> & Readonly<{
26
26
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
27
27
  }>, {
28
- isEditing: boolean;
29
28
  sm: string | boolean;
30
- cols: string | boolean;
31
- lg: string | boolean;
32
29
  md: string | boolean;
30
+ lg: string | boolean;
31
+ cols: string | boolean;
32
+ isEditing: boolean;
33
33
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
34
34
  export default _default;
35
35
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -27,11 +27,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
27
27
  }>>> & Readonly<{
28
28
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
29
29
  }>, {
30
- isEditing: boolean;
31
30
  sm: string | boolean;
32
- cols: string | boolean;
33
- lg: string | boolean;
34
31
  md: string | boolean;
32
+ lg: string | boolean;
33
+ cols: string | boolean;
34
+ isEditing: boolean;
35
35
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
36
36
  export default _default;
37
37
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -27,11 +27,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
27
27
  }>>> & Readonly<{
28
28
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
29
29
  }>, {
30
- isEditing: boolean;
31
30
  sm: string | boolean;
32
- cols: string | boolean;
33
- lg: string | boolean;
34
31
  md: string | boolean;
32
+ lg: string | boolean;
33
+ cols: string | boolean;
34
+ isEditing: boolean;
35
35
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
36
36
  export default _default;
37
37
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -76,11 +76,11 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
76
76
  "onUpdate:guide"?: ((...args: any[]) => any) | undefined;
77
77
  "onUpdate:trigger"?: ((...args: any[]) => any) | undefined;
78
78
  }>, {
79
- isEditing: boolean;
80
79
  sm: string | boolean;
81
- cols: string | boolean;
82
- lg: string | boolean;
83
80
  md: string | boolean;
81
+ lg: string | boolean;
82
+ cols: string | boolean;
83
+ isEditing: boolean;
84
84
  displayStrategy: "both" | "responsive" | "icons" | "words";
85
85
  useAutomation: boolean;
86
86
  useAutomationDaily: boolean;
@@ -25,9 +25,9 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
25
25
  sm: string;
26
26
  }>>> & Readonly<{}>, {
27
27
  sm: string | boolean;
28
- cols: string | boolean;
29
- lg: string | boolean;
30
28
  md: string | boolean;
29
+ lg: string | boolean;
30
+ cols: string | boolean;
31
31
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
32
32
  export default _default;
33
33
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -9,8 +9,8 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
9
9
  isSelected?: boolean | undefined;
10
10
  }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
11
  select: (...args: any[]) => void;
12
- onSubmit: (...args: any[]) => void;
13
12
  "update:modelValue": (...args: any[]) => void;
13
+ onSubmit: (...args: any[]) => void;
14
14
  moveup: (...args: any[]) => void;
15
15
  movedown: (...args: any[]) => void;
16
16
  duplicate: (...args: any[]) => void;
@@ -23,8 +23,8 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
23
23
  isSelected?: boolean | undefined;
24
24
  }>>> & Readonly<{
25
25
  onSelect?: ((...args: any[]) => any) | undefined;
26
- onOnSubmit?: ((...args: any[]) => any) | undefined;
27
26
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
27
+ onOnSubmit?: ((...args: any[]) => any) | undefined;
28
28
  onMoveup?: ((...args: any[]) => any) | undefined;
29
29
  onMovedown?: ((...args: any[]) => any) | undefined;
30
30
  onDuplicate?: ((...args: any[]) => any) | undefined;
@@ -34,10 +34,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
34
34
  "onUpdate:currentValue"?: ((...args: any[]) => any) | undefined;
35
35
  }>, {
36
36
  buttonHeight: string;
37
- showAddRemove: boolean;
38
37
  showDecimal: boolean;
39
- showOk: boolean;
40
38
  showNegative: boolean;
39
+ showAddRemove: boolean;
40
+ showOk: boolean;
41
41
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
42
42
  display?(_: {
43
43
  value: string;
@@ -97,8 +97,8 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
97
97
  }>, {
98
98
  items: any[];
99
99
  multiple: boolean;
100
- itemText: string | ((item: any) => string);
101
100
  itemValue: string | ((item: any) => any);
101
+ itemText: string | ((item: any) => string);
102
102
  disabled: boolean;
103
103
  clearable: boolean;
104
104
  cols: number;
@@ -73,21 +73,21 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
73
73
  onInput?: ((item: any) => any) | undefined;
74
74
  onSelect?: ((item: any) => any) | undefined;
75
75
  onChange?: ((item: any) => any) | undefined;
76
+ onConfirm?: ((item: any) => any) | undefined;
76
77
  onDeleted?: ((item: any) => any) | undefined;
77
78
  onFetched?: ((item: any) => any) | undefined;
78
- onConfirm?: ((item: any) => any) | undefined;
79
79
  "onMouse-over-item"?: ((item: any) => any) | undefined;
80
80
  "onUpdate:modelValue"?: ((item: any) => any) | undefined;
81
81
  }>, {
82
82
  height: string;
83
83
  eager: boolean;
84
- density: "default" | "comfortable" | "compact";
85
84
  maxHeight: string | number;
86
- isEditing: boolean;
85
+ density: "default" | "comfortable" | "compact";
87
86
  sm: string | boolean;
88
- cols: string | boolean;
89
- lg: string | boolean;
90
87
  md: string | boolean;
88
+ lg: string | boolean;
89
+ cols: string | boolean;
90
+ isEditing: boolean;
91
91
  canRefresh: boolean;
92
92
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
93
93
  actions?(_: {}): any;
@@ -31,9 +31,9 @@ declare const _default: import('vue').DefineComponent<import("vue").ExtractPropT
31
31
  onInput?: ((item: any) => any) | undefined;
32
32
  onSelect?: ((item: any) => any) | undefined;
33
33
  onChange?: ((item: any) => any) | undefined;
34
+ onConfirm?: ((item: any) => any) | undefined;
34
35
  onDeleted?: ((item: any) => any) | undefined;
35
36
  onFetched?: ((item: any) => any) | undefined;
36
- onConfirm?: ((item: any) => any) | undefined;
37
37
  "onMouse-over-item"?: ((item: any) => any) | undefined;
38
38
  }>, {
39
39
  eager: boolean;
@@ -31,9 +31,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
31
31
  onInput?: ((item: any) => any) | undefined;
32
32
  onSelect?: ((item: any) => any) | undefined;
33
33
  onChange?: ((item: any) => any) | undefined;
34
+ onConfirm?: ((item: any) => any) | undefined;
34
35
  onDeleted?: ((item: any) => any) | undefined;
35
36
  onFetched?: ((item: any) => any) | undefined;
36
- onConfirm?: ((item: any) => any) | undefined;
37
37
  "onMouse-over-item"?: ((item: any) => any) | undefined;
38
38
  }>, {
39
39
  eager: boolean;
@@ -33,8 +33,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
33
33
  onOpen?: ((...args: any[]) => any) | undefined;
34
34
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
35
35
  }>, {
36
- transparent: boolean;
37
36
  fullscreen: boolean;
37
+ transparent: boolean;
38
38
  hideButton: boolean;
39
39
  usedHeight: number;
40
40
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
@@ -63,8 +63,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
63
63
  }>, {
64
64
  width: string;
65
65
  height: string;
66
- iconSize: string;
67
66
  ripple: boolean;
67
+ iconSize: string;
68
68
  falseIcon: string;
69
69
  trueIcon: string;
70
70
  trueValue: string | boolean;
@@ -1,36 +1,38 @@
1
1
  import { default as r } from "./components/BT-Assistant-Menu.vue.mjs";
2
- import { default as t } from "./components/BT-Blade-Steps.vue.mjs";
3
- import { default as l } from "./components/BT-Cron-Span.vue.mjs";
4
- import { default as u } from "./components/BT-Date-Select.vue.mjs";
5
- import { default as p } from "./components/BT-Dialog-Confirm.vue.mjs";
6
- import { default as B } from "./components/BT-Dialog-Select.vue.mjs";
7
- import { default as x } from "./components/BT-Dialog-Number.vue.mjs";
8
- import { default as S } from "./components/BT-Dialog-Date.vue.mjs";
9
- import { default as D } from "./components/BT-Demo-Profile-Select.vue.mjs";
10
- import { default as F } from "./components/BT-Color-Picker-Menu.vue.mjs";
11
- import { default as C } from "./components/BT-Form.vue.mjs";
12
- import { default as M } from "./components/BT-Form-Builder.vue.mjs";
13
- import { default as b } from "./components/BT-Form-Field.vue.mjs";
14
- import { default as q } from "./components/BT-Square-Check.vue.mjs";
15
- import { default as N } from "./components/BT-Select-Simple.vue.mjs";
16
- import { default as v } from "./components/BT-Field-Select-Simple.vue.mjs";
17
- import { default as y } from "./components/BT-Tour.vue.mjs";
2
+ import { default as t } from "./components/BT-Banner.vue.mjs";
3
+ import { default as l } from "./components/BT-Blade-Steps.vue.mjs";
4
+ import { default as u } from "./components/BT-Cron-Span.vue.mjs";
5
+ import { default as p } from "./components/BT-Date-Select.vue.mjs";
6
+ import { default as B } from "./components/BT-Dialog-Confirm.vue.mjs";
7
+ import { default as x } from "./components/BT-Dialog-Select.vue.mjs";
8
+ import { default as S } from "./components/BT-Dialog-Number.vue.mjs";
9
+ import { default as c } from "./components/BT-Dialog-Date.vue.mjs";
10
+ import { default as F } from "./components/BT-Demo-Profile-Select.vue.mjs";
11
+ import { default as C } from "./components/BT-Color-Picker-Menu.vue.mjs";
12
+ import { default as M } from "./components/BT-Form.vue.mjs";
13
+ import { default as b } from "./components/BT-Form-Builder.vue.mjs";
14
+ import { default as q } from "./components/BT-Form-Field.vue.mjs";
15
+ import { default as N } from "./components/BT-Square-Check.vue.mjs";
16
+ import { default as v } from "./components/BT-Select-Simple.vue.mjs";
17
+ import { default as y } from "./components/BT-Field-Select-Simple.vue.mjs";
18
+ import { default as E } from "./components/BT-Tour.vue.mjs";
18
19
  export {
19
20
  r as BTAssistantMenu,
20
- t as BTBladeSteps,
21
- F as BTColorPickerMenu,
22
- l as BTCronSpan,
23
- u as BTDateSelect,
24
- D as BTDemoProfileSelect,
25
- p as BTDialogConfirm,
26
- S as BTDialogDate,
27
- x as BTDialogNumber,
28
- B as BTDialogSelect,
29
- v as BTFieldSelectSimple,
30
- C as BTForm,
31
- M as BTFormBuilder,
32
- b as BTFormField,
33
- N as BTSelectSimple,
34
- q as BTSquareCheck,
35
- y as BTTour
21
+ t as BTBanner,
22
+ l as BTBladeSteps,
23
+ C as BTColorPickerMenu,
24
+ u as BTCronSpan,
25
+ p as BTDateSelect,
26
+ F as BTDemoProfileSelect,
27
+ B as BTDialogConfirm,
28
+ c as BTDialogDate,
29
+ S as BTDialogNumber,
30
+ x as BTDialogSelect,
31
+ y as BTFieldSelectSimple,
32
+ M as BTForm,
33
+ b as BTFormBuilder,
34
+ q as BTFormField,
35
+ v as BTSelectSimple,
36
+ N as BTSquareCheck,
37
+ E as BTTour
36
38
  };