@bagelink/vue 1.0.60 → 1.0.62
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/AddressSearch.vue.d.ts +9 -9
- package/dist/components/Alert.vue.d.ts +1 -1
- package/dist/components/Badge.vue.d.ts +1 -1
- package/dist/components/Btn.vue.d.ts +1 -1
- package/dist/components/Dropdown.vue.d.ts +1 -1
- package/dist/components/Icon/Icon.vue.d.ts +1 -1
- package/dist/components/ListItem.vue.d.ts +1 -1
- package/dist/components/Modal.vue.d.ts +1 -1
- package/dist/components/ModalConfirm.vue.d.ts +1 -1
- package/dist/components/NavBar.vue.d.ts +1 -1
- package/dist/components/Pill.vue.d.ts +1 -1
- package/dist/components/Spreadsheet/Index.vue.d.ts +4 -4
- package/dist/components/dataTable/tableTypes.d.ts +1 -1
- package/dist/components/form/BagelForm.vue.d.ts +1 -1
- package/dist/components/form/FieldArray.vue.d.ts +1 -1
- package/dist/components/form/inputs/FileUpload.vue.d.ts +1 -1
- package/dist/components/form/inputs/NumberInput.vue.d.ts +1 -1
- package/dist/components/form/inputs/PasswordInput.vue.d.ts +1 -1
- package/dist/components/form/inputs/PhoneInput.vue.d.ts +4 -4
- package/dist/components/form/inputs/RadioPillsInput.vue.d.ts +1 -1
- package/dist/components/form/inputs/RichText/utils/media.d.ts +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts +7 -7
- package/dist/components/form/inputs/TextInput.vue.d.ts +1 -1
- package/dist/components/layout/BottomMenu.vue.d.ts +1 -1
- package/dist/components/layout/SidebarMenu.vue.d.ts +1 -1
- package/dist/components/layout/Tabs.vue.d.ts +1 -1
- package/dist/components/layout/TabsNav.vue.d.ts +1 -1
- package/dist/composables/index.d.ts +1 -1
- package/dist/composables/useFormField.d.ts +1 -1
- package/dist/plugins/modalTypes.d.ts +1 -1
- package/dist/types/BagelForm.d.ts +1 -1
- package/dist/types/NavLink.d.ts +1 -1
- package/dist/types/TableSchema.d.ts +1 -1
- package/dist/utils/BagelFormUtils.d.ts +3 -3
- package/dist/utils/index.d.ts +1 -1
- package/package.json +1 -1
- package/vite.config.ts +1 -2
|
@@ -12,10 +12,10 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
12
12
|
readonly thin?: boolean | undefined;
|
|
13
13
|
readonly flat?: boolean | undefined;
|
|
14
14
|
readonly disabled?: boolean | undefined;
|
|
15
|
-
readonly icon?: import('
|
|
16
|
-
readonly color?: import('
|
|
15
|
+
readonly icon?: import('..').IconType | undefined;
|
|
16
|
+
readonly color?: import('..').ThemeType | undefined;
|
|
17
17
|
readonly triggerClass?: string | undefined;
|
|
18
|
-
readonly iconEnd?: import('
|
|
18
|
+
readonly iconEnd?: import('..').IconType | undefined;
|
|
19
19
|
readonly border?: boolean | undefined;
|
|
20
20
|
readonly outline?: boolean | undefined;
|
|
21
21
|
readonly round?: boolean | undefined;
|
|
@@ -539,10 +539,10 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
539
539
|
thin?: boolean;
|
|
540
540
|
flat?: boolean;
|
|
541
541
|
disabled?: boolean;
|
|
542
|
-
icon?: import('
|
|
543
|
-
color?: import('
|
|
542
|
+
icon?: import('..').IconType;
|
|
543
|
+
color?: import('..').ThemeType;
|
|
544
544
|
triggerClass?: string;
|
|
545
|
-
iconEnd?: import('
|
|
545
|
+
iconEnd?: import('..').IconType;
|
|
546
546
|
border?: boolean;
|
|
547
547
|
outline?: boolean;
|
|
548
548
|
round?: boolean;
|
|
@@ -589,10 +589,10 @@ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
589
589
|
thin?: boolean;
|
|
590
590
|
flat?: boolean;
|
|
591
591
|
disabled?: boolean;
|
|
592
|
-
icon?: import('
|
|
593
|
-
color?: import('
|
|
592
|
+
icon?: import('..').IconType;
|
|
593
|
+
color?: import('..').ThemeType;
|
|
594
594
|
triggerClass?: string;
|
|
595
|
-
iconEnd?: import('
|
|
595
|
+
iconEnd?: import('..').IconType;
|
|
596
596
|
border?: boolean;
|
|
597
597
|
outline?: boolean;
|
|
598
598
|
round?: boolean;
|
|
@@ -40,8 +40,8 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
40
40
|
nativeInputAttrs?: {
|
|
41
41
|
[key: string]: any;
|
|
42
42
|
};
|
|
43
|
-
icon?: import('
|
|
44
|
-
iconStart?: import('
|
|
43
|
+
icon?: import('../..').IconType;
|
|
44
|
+
iconStart?: import('../..').IconType;
|
|
45
45
|
multiline?: boolean;
|
|
46
46
|
autoheight?: boolean;
|
|
47
47
|
code?: boolean;
|
|
@@ -90,8 +90,8 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
90
90
|
nativeInputAttrs?: {
|
|
91
91
|
[key: string]: any;
|
|
92
92
|
};
|
|
93
|
-
icon?: import('
|
|
94
|
-
iconStart?: import('
|
|
93
|
+
icon?: import('../..').IconType;
|
|
94
|
+
iconStart?: import('../..').IconType;
|
|
95
95
|
multiline?: boolean;
|
|
96
96
|
autoheight?: boolean;
|
|
97
97
|
code?: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BglFormSchemaT } from '
|
|
1
|
+
import { BglFormSchemaT } from '../..';
|
|
2
2
|
export type SortDirectionsT = 'ASC' | 'DESC';
|
|
3
3
|
export type EmitOrderT = `${string} ${SortDirectionsT}`;
|
|
4
4
|
export interface TableSchemaProps<T extends Record<string, any> = Record<string, any>> {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BglFormSchemaFnT, BglFormSchemaT } from '
|
|
1
|
+
import { BglFormSchemaFnT, BglFormSchemaT } from '../..';
|
|
2
2
|
declare const _default: <T extends {
|
|
3
3
|
[key: string]: any;
|
|
4
4
|
}>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AttributeFn, AttributeValue, Attributes, BagelFieldOptions, BglFormSchemaFnT, Field } from '
|
|
1
|
+
import { AttributeFn, AttributeValue, Attributes, BagelFieldOptions, BglFormSchemaFnT, Field } from '../..';
|
|
2
2
|
declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
3
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
4
4
|
readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -42,8 +42,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
42
42
|
nativeInputAttrs?: {
|
|
43
43
|
[key: string]: any;
|
|
44
44
|
};
|
|
45
|
-
icon?: import('
|
|
46
|
-
iconStart?: import('
|
|
45
|
+
icon?: import('../../..').IconType;
|
|
46
|
+
iconStart?: import('../../..').IconType;
|
|
47
47
|
multiline?: boolean;
|
|
48
48
|
autoheight?: boolean;
|
|
49
49
|
code?: boolean;
|
|
@@ -92,8 +92,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
92
92
|
nativeInputAttrs?: {
|
|
93
93
|
[key: string]: any;
|
|
94
94
|
};
|
|
95
|
-
icon?: import('
|
|
96
|
-
iconStart?: import('
|
|
95
|
+
icon?: import('../../..').IconType;
|
|
96
|
+
iconStart?: import('../../..').IconType;
|
|
97
97
|
multiline?: boolean;
|
|
98
98
|
autoheight?: boolean;
|
|
99
99
|
code?: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Modal } from '
|
|
1
|
+
import { Modal } from '../../../../..';
|
|
2
2
|
import { EditorState } from '../richTextTypes';
|
|
3
3
|
export declare function insertImage(modal: typeof Modal, state: EditorState): void;
|
|
4
4
|
export declare function insertLink(modal: typeof Modal, state: EditorState): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IconType, Option } from '
|
|
1
|
+
import { IconType, Option } from '../../..';
|
|
2
2
|
import { AlignedPlacement } from '../../Dropdown.vue';
|
|
3
3
|
interface PropTypes {
|
|
4
4
|
options: Option[];
|
|
@@ -34,7 +34,7 @@ declare function __VLS_template(): {
|
|
|
34
34
|
readonly flat?: boolean | undefined;
|
|
35
35
|
readonly disabled?: boolean | undefined;
|
|
36
36
|
readonly icon?: IconType | undefined;
|
|
37
|
-
readonly color?: import('
|
|
37
|
+
readonly color?: import('../../..').ThemeType | undefined;
|
|
38
38
|
readonly triggerClass?: string | undefined;
|
|
39
39
|
readonly iconEnd?: IconType | undefined;
|
|
40
40
|
readonly border?: boolean | undefined;
|
|
@@ -561,7 +561,7 @@ declare function __VLS_template(): {
|
|
|
561
561
|
flat?: boolean;
|
|
562
562
|
disabled?: boolean;
|
|
563
563
|
icon?: IconType;
|
|
564
|
-
color?: import('
|
|
564
|
+
color?: import('../../..').ThemeType;
|
|
565
565
|
triggerClass?: string;
|
|
566
566
|
iconEnd?: IconType;
|
|
567
567
|
border?: boolean;
|
|
@@ -611,7 +611,7 @@ declare function __VLS_template(): {
|
|
|
611
611
|
flat?: boolean;
|
|
612
612
|
disabled?: boolean;
|
|
613
613
|
icon?: IconType;
|
|
614
|
-
color?: import('
|
|
614
|
+
color?: import('../../..').ThemeType;
|
|
615
615
|
triggerClass?: string;
|
|
616
616
|
iconEnd?: IconType;
|
|
617
617
|
border?: boolean;
|
|
@@ -750,7 +750,7 @@ declare const __VLS_component: import('vue').DefineComponent<PropTypes, {}, {},
|
|
|
750
750
|
readonly flat?: boolean | undefined;
|
|
751
751
|
readonly disabled?: boolean | undefined;
|
|
752
752
|
readonly icon?: IconType | undefined;
|
|
753
|
-
readonly color?: import('
|
|
753
|
+
readonly color?: import('../../..').ThemeType | undefined;
|
|
754
754
|
readonly triggerClass?: string | undefined;
|
|
755
755
|
readonly iconEnd?: IconType | undefined;
|
|
756
756
|
readonly border?: boolean | undefined;
|
|
@@ -1277,7 +1277,7 @@ declare const __VLS_component: import('vue').DefineComponent<PropTypes, {}, {},
|
|
|
1277
1277
|
flat?: boolean;
|
|
1278
1278
|
disabled?: boolean;
|
|
1279
1279
|
icon?: IconType;
|
|
1280
|
-
color?: import('
|
|
1280
|
+
color?: import('../../..').ThemeType;
|
|
1281
1281
|
triggerClass?: string;
|
|
1282
1282
|
iconEnd?: IconType;
|
|
1283
1283
|
border?: boolean;
|
|
@@ -1327,7 +1327,7 @@ declare const __VLS_component: import('vue').DefineComponent<PropTypes, {}, {},
|
|
|
1327
1327
|
flat?: boolean;
|
|
1328
1328
|
disabled?: boolean;
|
|
1329
1329
|
icon?: IconType;
|
|
1330
|
-
color?: import('
|
|
1330
|
+
color?: import('../../..').ThemeType;
|
|
1331
1331
|
triggerClass?: string;
|
|
1332
1332
|
iconEnd?: IconType;
|
|
1333
1333
|
border?: boolean;
|
package/dist/types/NavLink.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BglFormSchemaT, Field, Option, DotNotation } from '
|
|
1
|
+
import { BglFormSchemaT, Field, Option, DotNotation } from '..';
|
|
2
2
|
import { UploadInputProps } from '../components/form/inputs/Upload/upload.types';
|
|
3
3
|
interface InputOptions {
|
|
4
4
|
required?: boolean;
|
|
@@ -110,14 +110,14 @@ export declare function bglForm(idOrField?: string | Field, ...schema: Field[]):
|
|
|
110
110
|
$el: string;
|
|
111
111
|
id: string;
|
|
112
112
|
attrs: {
|
|
113
|
-
schema: (string | import('
|
|
113
|
+
schema: (string | import('..').BaseBagelField<{
|
|
114
114
|
[key: string]: any;
|
|
115
115
|
}>)[];
|
|
116
116
|
};
|
|
117
117
|
} | {
|
|
118
118
|
$el: string;
|
|
119
119
|
attrs: {
|
|
120
|
-
schema: (import('
|
|
120
|
+
schema: (import('..').BaseBagelField<{
|
|
121
121
|
[key: string]: any;
|
|
122
122
|
}> | undefined)[];
|
|
123
123
|
};
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Attributes, BglFormSchemaT } from '
|
|
1
|
+
import { Attributes, BglFormSchemaT } from '..';
|
|
2
2
|
export declare function debounce(fn: () => void, wait?: number): void;
|
|
3
3
|
export declare function slugify(str: string): string;
|
|
4
4
|
export declare function keyToLabel(key?: string): string | undefined;
|
package/package.json
CHANGED