@bagelink/vue 1.4.136 → 1.4.139
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/form/inputs/RichText/components/EditorToolbar.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/config.d.ts.map +1 -1
- package/dist/composables/useSchemaField.d.ts.map +1 -1
- package/dist/index.cjs +19 -19
- package/dist/index.mjs +19 -19
- package/dist/style.css +1 -1
- package/dist/types/BagelForm.d.ts +13 -5
- package/dist/types/BagelForm.d.ts.map +1 -1
- package/dist/utils/BagelFormUtils.d.ts +28 -6
- package/dist/utils/BagelFormUtils.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/form/inputs/RadioGroup.vue +4 -4
- package/src/components/form/inputs/RichText/components/EditorToolbar.vue +3 -0
- package/src/components/form/inputs/RichText/config.ts +3 -0
- package/src/composables/useSchemaField.ts +31 -17
- package/src/types/BagelForm.ts +26 -12
- package/src/utils/BagelFormUtils.ts +97 -7
- package/src/utils/index.ts +1 -1
package/src/utils/index.ts
CHANGED
|
@@ -62,7 +62,7 @@ export function bindAttrs<T, P extends Path<T>>(
|
|
|
62
62
|
// TODO: Fix this so that you don't have to return a fn for other on* event handlers
|
|
63
63
|
if (!attrs) return {}
|
|
64
64
|
|
|
65
|
-
const exclude = ['class', 'onClick'] as const
|
|
65
|
+
const exclude = ['class', 'onClick', '$el'] as const
|
|
66
66
|
const arr = Object.entries(attrs)
|
|
67
67
|
.filter(([key]) => !exclude.includes(key as typeof exclude[number]))
|
|
68
68
|
.map(([key, value]) => [
|