@bluepic/embed 0.4.0-next.160 → 0.4.0-next.161
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/bluepic-embed.iife.js +133 -133
- package/dist/bluepic-embed.umd.js +133 -133
- package/dist/components/CollectionFieldPopup.vue.d.ts +4 -0
- package/dist/components/fields/Collection.vue.d.ts +3 -0
- package/dist/main.cjs +20 -20
- package/dist/main.mjs +1771 -1744
- package/dist/{markdown-it-BJC5HRVJ.js → markdown-it-DnV0iSVd.js} +583 -597
- package/dist/{markdown-it-D-2rX95W.cjs → markdown-it-zGmILegC.cjs} +8 -8
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -10,8 +10,12 @@ declare const _default: <T extends {
|
|
|
10
10
|
description?: string;
|
|
11
11
|
detailedDescription?: string;
|
|
12
12
|
bridge: FieldsBridge;
|
|
13
|
+
defaultObject?: T;
|
|
14
|
+
/** @deprecated old prop name for `defaultObject`. */
|
|
13
15
|
defaultValue?: T;
|
|
14
16
|
mobile?: boolean;
|
|
17
|
+
min?: number;
|
|
18
|
+
max?: number;
|
|
15
19
|
} & {
|
|
16
20
|
modelValue: T[];
|
|
17
21
|
}) & Partial<{}>> & import("vue").PublicProps;
|
|
@@ -10,6 +10,9 @@ declare const _default: <T extends {
|
|
|
10
10
|
description?: string;
|
|
11
11
|
detailedDescription?: string;
|
|
12
12
|
bridge: FieldsBridge;
|
|
13
|
+
/** Authored per-entry defaults — this is the `defaultObject` key of the Collection field type. */
|
|
14
|
+
defaultObject?: T;
|
|
15
|
+
/** @deprecated old prop name for `defaultObject`; kept so existing direct consumers stay valid. */
|
|
13
16
|
defaultValue?: T;
|
|
14
17
|
mobile?: boolean;
|
|
15
18
|
min?: number;
|