@bagelink/vue 1.0.50 → 1.0.52
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/index.cjs
CHANGED
|
@@ -14987,7 +14987,9 @@ function richText(id, label, options) {
|
|
|
14987
14987
|
label,
|
|
14988
14988
|
vIf: options == null ? void 0 : options.vIf,
|
|
14989
14989
|
placeholder: options == null ? void 0 : options.placeholder,
|
|
14990
|
-
attrs: {
|
|
14990
|
+
attrs: {
|
|
14991
|
+
autocomplete: options == null ? void 0 : options.autocomplete
|
|
14992
|
+
}
|
|
14991
14993
|
};
|
|
14992
14994
|
}
|
|
14993
14995
|
function txtField(id, label, options) {
|
|
@@ -15004,7 +15006,8 @@ function txtField(id, label, options) {
|
|
|
15004
15006
|
attrs: {
|
|
15005
15007
|
type: options == null ? void 0 : options.type,
|
|
15006
15008
|
pattern: options == null ? void 0 : options.pattern,
|
|
15007
|
-
multiline: options == null ? void 0 : options.multiline
|
|
15009
|
+
multiline: options == null ? void 0 : options.multiline,
|
|
15010
|
+
autocomplete: options == null ? void 0 : options.autocomplete
|
|
15008
15011
|
}
|
|
15009
15012
|
};
|
|
15010
15013
|
}
|
|
@@ -15024,7 +15027,8 @@ function selectField(id, label, options, config) {
|
|
|
15024
15027
|
searchable: config == null ? void 0 : config.searchable,
|
|
15025
15028
|
multiselect: config == null ? void 0 : config.multiselect,
|
|
15026
15029
|
onSearch: config == null ? void 0 : config.onSearch,
|
|
15027
|
-
clearable: config == null ? void 0 : config.clearable
|
|
15030
|
+
clearable: config == null ? void 0 : config.clearable,
|
|
15031
|
+
autocomplete: config == null ? void 0 : config.autocomplete
|
|
15028
15032
|
}
|
|
15029
15033
|
};
|
|
15030
15034
|
}
|
|
@@ -15049,7 +15053,8 @@ function dateField(id, label, options) {
|
|
|
15049
15053
|
defaultValue: options == null ? void 0 : options.defaultValue,
|
|
15050
15054
|
vIf: options == null ? void 0 : options.vIf,
|
|
15051
15055
|
attrs: {
|
|
15052
|
-
disabled: options == null ? void 0 : options.disabled
|
|
15056
|
+
disabled: options == null ? void 0 : options.disabled,
|
|
15057
|
+
autocomplete: options == null ? void 0 : options.autocomplete
|
|
15053
15058
|
}
|
|
15054
15059
|
};
|
|
15055
15060
|
}
|
|
@@ -15066,6 +15071,7 @@ function numField$1(id, label, options) {
|
|
|
15066
15071
|
helptext: options == null ? void 0 : options.helptext,
|
|
15067
15072
|
vIf: options == null ? void 0 : options.vIf,
|
|
15068
15073
|
attrs: {
|
|
15074
|
+
autocomplete: options == null ? void 0 : options.autocomplete,
|
|
15069
15075
|
step: options == null ? void 0 : options.step,
|
|
15070
15076
|
min: options == null ? void 0 : options.min,
|
|
15071
15077
|
max: options == null ? void 0 : options.max,
|
|
@@ -15101,6 +15107,7 @@ function rangeField(id, label, options) {
|
|
|
15101
15107
|
label,
|
|
15102
15108
|
vIf: options == null ? void 0 : options.vIf,
|
|
15103
15109
|
attrs: {
|
|
15110
|
+
autocomplete: options == null ? void 0 : options.autocomplete,
|
|
15104
15111
|
min: options == null ? void 0 : options.min,
|
|
15105
15112
|
max: options == null ? void 0 : options.max,
|
|
15106
15113
|
step: options == null ? void 0 : options.step,
|
package/dist/index.mjs
CHANGED
|
@@ -14985,7 +14985,9 @@ function richText(id, label, options) {
|
|
|
14985
14985
|
label,
|
|
14986
14986
|
vIf: options == null ? void 0 : options.vIf,
|
|
14987
14987
|
placeholder: options == null ? void 0 : options.placeholder,
|
|
14988
|
-
attrs: {
|
|
14988
|
+
attrs: {
|
|
14989
|
+
autocomplete: options == null ? void 0 : options.autocomplete
|
|
14990
|
+
}
|
|
14989
14991
|
};
|
|
14990
14992
|
}
|
|
14991
14993
|
function txtField(id, label, options) {
|
|
@@ -15002,7 +15004,8 @@ function txtField(id, label, options) {
|
|
|
15002
15004
|
attrs: {
|
|
15003
15005
|
type: options == null ? void 0 : options.type,
|
|
15004
15006
|
pattern: options == null ? void 0 : options.pattern,
|
|
15005
|
-
multiline: options == null ? void 0 : options.multiline
|
|
15007
|
+
multiline: options == null ? void 0 : options.multiline,
|
|
15008
|
+
autocomplete: options == null ? void 0 : options.autocomplete
|
|
15006
15009
|
}
|
|
15007
15010
|
};
|
|
15008
15011
|
}
|
|
@@ -15022,7 +15025,8 @@ function selectField(id, label, options, config) {
|
|
|
15022
15025
|
searchable: config == null ? void 0 : config.searchable,
|
|
15023
15026
|
multiselect: config == null ? void 0 : config.multiselect,
|
|
15024
15027
|
onSearch: config == null ? void 0 : config.onSearch,
|
|
15025
|
-
clearable: config == null ? void 0 : config.clearable
|
|
15028
|
+
clearable: config == null ? void 0 : config.clearable,
|
|
15029
|
+
autocomplete: config == null ? void 0 : config.autocomplete
|
|
15026
15030
|
}
|
|
15027
15031
|
};
|
|
15028
15032
|
}
|
|
@@ -15047,7 +15051,8 @@ function dateField(id, label, options) {
|
|
|
15047
15051
|
defaultValue: options == null ? void 0 : options.defaultValue,
|
|
15048
15052
|
vIf: options == null ? void 0 : options.vIf,
|
|
15049
15053
|
attrs: {
|
|
15050
|
-
disabled: options == null ? void 0 : options.disabled
|
|
15054
|
+
disabled: options == null ? void 0 : options.disabled,
|
|
15055
|
+
autocomplete: options == null ? void 0 : options.autocomplete
|
|
15051
15056
|
}
|
|
15052
15057
|
};
|
|
15053
15058
|
}
|
|
@@ -15064,6 +15069,7 @@ function numField$1(id, label, options) {
|
|
|
15064
15069
|
helptext: options == null ? void 0 : options.helptext,
|
|
15065
15070
|
vIf: options == null ? void 0 : options.vIf,
|
|
15066
15071
|
attrs: {
|
|
15072
|
+
autocomplete: options == null ? void 0 : options.autocomplete,
|
|
15067
15073
|
step: options == null ? void 0 : options.step,
|
|
15068
15074
|
min: options == null ? void 0 : options.min,
|
|
15069
15075
|
max: options == null ? void 0 : options.max,
|
|
@@ -15099,6 +15105,7 @@ function rangeField(id, label, options) {
|
|
|
15099
15105
|
label,
|
|
15100
15106
|
vIf: options == null ? void 0 : options.vIf,
|
|
15101
15107
|
attrs: {
|
|
15108
|
+
autocomplete: options == null ? void 0 : options.autocomplete,
|
|
15102
15109
|
min: options == null ? void 0 : options.min,
|
|
15103
15110
|
max: options == null ? void 0 : options.max,
|
|
15104
15111
|
step: options == null ? void 0 : options.step,
|
|
@@ -7,6 +7,7 @@ interface InputOptions {
|
|
|
7
7
|
defaultValue?: string | number;
|
|
8
8
|
disabled?: boolean;
|
|
9
9
|
helptext?: string;
|
|
10
|
+
autocomplete?: string;
|
|
10
11
|
vIf?: boolean | ((item: any, row: any) => boolean);
|
|
11
12
|
}
|
|
12
13
|
type DateOptions = InputOptions;
|
|
@@ -71,6 +72,7 @@ export declare function uploadField(id: string, label?: string, options?: Upload
|
|
|
71
72
|
defaultValue?: string | number;
|
|
72
73
|
disabled?: boolean;
|
|
73
74
|
helptext?: string;
|
|
75
|
+
autocomplete?: string;
|
|
74
76
|
vIf?: boolean | ((item: any, row: any) => boolean);
|
|
75
77
|
label?: string;
|
|
76
78
|
multiple?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BagelFormUtils.d.ts","sourceRoot":"","sources":["../../src/utils/BagelFormUtils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAC/E,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,+CAA+C,CAAA;AAErF,UAAU,YAAY;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC9B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,GAAG,CAAC,EAAE,OAAO,GAAG,CAAC,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,KAAK,OAAO,CAAC,CAAA;CAClD;AAED,KAAK,WAAW,GAAG,YAAY,CAAA;AAE/B,UAAU,gBAAiB,SAAQ,YAAY;IAC9C,IAAI,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,OAAO,CAAA;IAC/B,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,SAAS,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,UAAU,gBAAiB,SAAQ,YAAY;IAC9C,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,GAAG,CAAA;CAClC;AAED,UAAU,eAAgB,SAAQ,YAAY;IAC7C,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,YAAY,CAAA;IAC9C,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,WAAW,CAAC,EAAE,OAAO,CAAA;CACrB;AAED,KAAK,eAAe,GAAG,YAAY,CAAA;AAEnC,wBAAgB,YAAY,CAAC,CAAC,SAAS;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAAE,EAC5D,EAAE,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,MAAM,EAC5B,WAAW,GAAE,MAAM,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAM,EAC5C,IAAI,GAAE,OAAO,CAAC,KAAK,CAAC,CAAC,CAAC,CAAM,GAC1B,KAAK,CAAC,CAAC,CAAC,CAGV;AAED,wBAAgB,QAAQ,CAAC,CAAC,SAAS;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAAE,EACxD,EAAE,EAAE,WAAW,CAAC,CAAC,CAAC,GAAG,MAAM,EAC3B,KAAK,CAAC,EAAE,MAAM,EACd,OAAO,CAAC,EAAE,eAAe,GACvB,KAAK,CAAC,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"BagelFormUtils.d.ts","sourceRoot":"","sources":["../../src/utils/BagelFormUtils.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -8,6 +8,7 @@ interface InputOptions {
|
|
|
8
8
|
defaultValue?: string | number
|
|
9
9
|
disabled?: boolean
|
|
10
10
|
helptext?: string
|
|
11
|
+
autocomplete?: string
|
|
11
12
|
vIf?: boolean | ((item: any, row: any) => boolean)
|
|
12
13
|
}
|
|
13
14
|
|
|
@@ -60,7 +61,9 @@ export function richText<T extends { [key: string]: any }>(
|
|
|
60
61
|
label,
|
|
61
62
|
vIf: options?.vIf,
|
|
62
63
|
placeholder: options?.placeholder,
|
|
63
|
-
attrs: {
|
|
64
|
+
attrs: {
|
|
65
|
+
autocomplete: options?.autocomplete,
|
|
66
|
+
},
|
|
64
67
|
}
|
|
65
68
|
}
|
|
66
69
|
|
|
@@ -83,6 +86,7 @@ export function txtField<T extends { [key: string]: any }>(
|
|
|
83
86
|
type: options?.type,
|
|
84
87
|
pattern: options?.pattern,
|
|
85
88
|
multiline: options?.multiline,
|
|
89
|
+
autocomplete: options?.autocomplete,
|
|
86
90
|
},
|
|
87
91
|
}
|
|
88
92
|
}
|
|
@@ -109,6 +113,7 @@ export function selectField<T extends { [key: string]: any }>(
|
|
|
109
113
|
multiselect: config?.multiselect,
|
|
110
114
|
onSearch: config?.onSearch,
|
|
111
115
|
clearable: config?.clearable,
|
|
116
|
+
autocomplete: config?.autocomplete,
|
|
112
117
|
},
|
|
113
118
|
}
|
|
114
119
|
}
|
|
@@ -145,6 +150,7 @@ export function dateField<T extends { [key: string]: any }>(
|
|
|
145
150
|
vIf: options?.vIf,
|
|
146
151
|
attrs: {
|
|
147
152
|
disabled: options?.disabled,
|
|
153
|
+
autocomplete: options?.autocomplete,
|
|
148
154
|
},
|
|
149
155
|
}
|
|
150
156
|
}
|
|
@@ -166,6 +172,7 @@ export function numField<T extends { [key: string]: any }>(
|
|
|
166
172
|
helptext: options?.helptext,
|
|
167
173
|
vIf: options?.vIf,
|
|
168
174
|
attrs: {
|
|
175
|
+
autocomplete: options?.autocomplete,
|
|
169
176
|
step: options?.step,
|
|
170
177
|
min: options?.min,
|
|
171
178
|
max: options?.max,
|
|
@@ -219,6 +226,7 @@ export function rangeField<T extends { [key: string]: any }>(
|
|
|
219
226
|
label,
|
|
220
227
|
vIf: options?.vIf,
|
|
221
228
|
attrs: {
|
|
229
|
+
autocomplete: options?.autocomplete,
|
|
222
230
|
min: options?.min,
|
|
223
231
|
max: options?.max,
|
|
224
232
|
step: options?.step,
|