@bluepic/embed 0.1.14 → 0.1.16
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/lib/bluepic-fields.es.js +2680 -2543
- package/lib/bluepic-fields.umd.js +26 -26
- package/lib/components/BluepicEmbeddedEditor.vue.d.ts +93 -1
- package/lib/components/BluepicEmbeddedEditor.vue.d.ts.map +1 -1
- package/lib/components/BxDropdown.vue.d.ts +11 -0
- package/lib/components/BxDropdown.vue.d.ts.map +1 -1
- package/lib/components/BxInput.vue.d.ts +71 -1
- package/lib/components/BxInput.vue.d.ts.map +1 -1
- package/lib/components/BxPopover.vue.d.ts +11 -0
- package/lib/components/BxPopover.vue.d.ts.map +1 -1
- package/lib/components/BxSelect.vue.d.ts +36 -1
- package/lib/components/BxSelect.vue.d.ts.map +1 -1
- package/lib/components/BxTooltip.vue.d.ts +35 -0
- package/lib/components/BxTooltip.vue.d.ts.map +1 -1
- package/lib/components/CollectionEntryFields.vue.d.ts +70 -0
- package/lib/components/CollectionEntryFields.vue.d.ts.map +1 -1
- package/lib/components/CollectionFieldPopup.vue.d.ts +70 -0
- package/lib/components/CollectionFieldPopup.vue.d.ts.map +1 -1
- package/lib/components/Fields.vue.d.ts +35 -0
- package/lib/components/Fields.vue.d.ts.map +1 -1
- package/lib/components/FieldsList.vue.d.ts +35 -0
- package/lib/components/FieldsList.vue.d.ts.map +1 -1
- package/lib/components/ImageLibraries/Pexels.vue.d.ts +71 -1
- package/lib/components/ImageLibraries/Pexels.vue.d.ts.map +1 -1
- package/lib/components/ImageLibraryWrapper.vue.d.ts +71 -1
- package/lib/components/ImageLibraryWrapper.vue.d.ts.map +1 -1
- package/lib/components/ImportData.vue.d.ts +107 -2
- package/lib/components/ImportData.vue.d.ts.map +1 -1
- package/lib/components/MessageElement.vue.d.ts +92 -0
- package/lib/components/MessageElement.vue.d.ts.map +1 -0
- package/lib/components/MobileFieldsSlide.vue.d.ts +11 -0
- package/lib/components/MobileFieldsSlide.vue.d.ts.map +1 -1
- package/lib/components/PopoverElement.vue.d.ts +8 -0
- package/lib/components/PopoverElement.vue.d.ts.map +1 -1
- package/lib/components/SelectItem.vue.d.ts +36 -1
- package/lib/components/SelectItem.vue.d.ts.map +1 -1
- package/lib/components/SlidesNavigation.vue.d.ts +36 -1
- package/lib/components/SlidesNavigation.vue.d.ts.map +1 -1
- package/lib/components/TableDataMatcher.vue.d.ts +36 -1
- package/lib/components/TableDataMatcher.vue.d.ts.map +1 -1
- package/lib/components/directives/usePopup.d.ts +21 -0
- package/lib/components/directives/usePopup.d.ts.map +1 -1
- package/lib/components/fields/Collection.vue.d.ts +70 -0
- package/lib/components/fields/Collection.vue.d.ts.map +1 -1
- package/lib/components/fields/Group.vue.d.ts +70 -0
- package/lib/components/fields/Group.vue.d.ts.map +1 -1
- package/lib/components/fields/Image.vue.d.ts +82 -1
- package/lib/components/fields/Image.vue.d.ts.map +1 -1
- package/lib/components/fields/ImageEdit.vue.d.ts +118 -2
- package/lib/components/fields/ImageEdit.vue.d.ts.map +1 -1
- package/lib/components/fields/Select.vue.d.ts +36 -1
- package/lib/components/fields/Select.vue.d.ts.map +1 -1
- package/lib/components/fields/SelectColor.vue.d.ts +36 -1
- package/lib/components/fields/SelectColor.vue.d.ts.map +1 -1
- package/lib/components/fields/SelectImage.vue.d.ts +36 -1
- package/lib/components/fields/SelectImage.vue.d.ts.map +1 -1
- package/lib/components/fields/SelectText.vue.d.ts +36 -1
- package/lib/components/fields/SelectText.vue.d.ts.map +1 -1
- package/lib/components/fields/Text.vue.d.ts +71 -1
- package/lib/components/fields/Text.vue.d.ts.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/style.css +1 -1
- package/lib/util/useElementBounding.d.ts +9 -0
- package/lib/util/useElementBounding.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -891,6 +891,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
891
891
|
type: BooleanConstructor;
|
|
892
892
|
required: false;
|
|
893
893
|
};
|
|
894
|
+
overflowVisible: {
|
|
895
|
+
type: BooleanConstructor;
|
|
896
|
+
required: false;
|
|
897
|
+
default: boolean;
|
|
898
|
+
};
|
|
894
899
|
}>> & Readonly<{
|
|
895
900
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
896
901
|
}>, {
|
|
@@ -924,6 +929,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
924
929
|
allowedPlacements: unknown[];
|
|
925
930
|
arrow: boolean;
|
|
926
931
|
leaveLazyness: number;
|
|
932
|
+
overflowVisible: boolean;
|
|
927
933
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
928
934
|
P: {};
|
|
929
935
|
B: {};
|
|
@@ -972,6 +978,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
972
978
|
type: BooleanConstructor;
|
|
973
979
|
required: false;
|
|
974
980
|
};
|
|
981
|
+
overflowVisible: {
|
|
982
|
+
type: BooleanConstructor;
|
|
983
|
+
required: false;
|
|
984
|
+
default: boolean;
|
|
985
|
+
};
|
|
975
986
|
}>> & Readonly<{
|
|
976
987
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
977
988
|
}>, {
|
|
@@ -1005,6 +1016,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1005
1016
|
allowedPlacements: unknown[];
|
|
1006
1017
|
arrow: boolean;
|
|
1007
1018
|
leaveLazyness: number;
|
|
1019
|
+
overflowVisible: boolean;
|
|
1008
1020
|
}> | undefined, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
1009
1021
|
show: {
|
|
1010
1022
|
type: BooleanConstructor;
|
|
@@ -1046,6 +1058,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1046
1058
|
type: BooleanConstructor;
|
|
1047
1059
|
required: false;
|
|
1048
1060
|
};
|
|
1061
|
+
overflowVisible: {
|
|
1062
|
+
type: BooleanConstructor;
|
|
1063
|
+
required: false;
|
|
1064
|
+
default: boolean;
|
|
1065
|
+
};
|
|
1049
1066
|
}>> & Readonly<{
|
|
1050
1067
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1051
1068
|
}>, {
|
|
@@ -1079,6 +1096,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1079
1096
|
allowedPlacements: unknown[];
|
|
1080
1097
|
arrow: boolean;
|
|
1081
1098
|
leaveLazyness: number;
|
|
1099
|
+
overflowVisible: boolean;
|
|
1082
1100
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1083
1101
|
P: {};
|
|
1084
1102
|
B: {};
|
|
@@ -1127,6 +1145,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1127
1145
|
type: BooleanConstructor;
|
|
1128
1146
|
required: false;
|
|
1129
1147
|
};
|
|
1148
|
+
overflowVisible: {
|
|
1149
|
+
type: BooleanConstructor;
|
|
1150
|
+
required: false;
|
|
1151
|
+
default: boolean;
|
|
1152
|
+
};
|
|
1130
1153
|
}>> & Readonly<{
|
|
1131
1154
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1132
1155
|
}>, {
|
|
@@ -1160,6 +1183,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1160
1183
|
allowedPlacements: unknown[];
|
|
1161
1184
|
arrow: boolean;
|
|
1162
1185
|
leaveLazyness: number;
|
|
1186
|
+
overflowVisible: boolean;
|
|
1163
1187
|
}> | undefined>;
|
|
1164
1188
|
darkmode: import("vue").ComputedRef<boolean>;
|
|
1165
1189
|
setSlotRef: (index: number) => (vnode: any) => void;
|
|
@@ -1209,6 +1233,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1209
1233
|
type: BooleanConstructor;
|
|
1210
1234
|
required: false;
|
|
1211
1235
|
};
|
|
1236
|
+
overflowVisible: {
|
|
1237
|
+
type: BooleanConstructor;
|
|
1238
|
+
required: false;
|
|
1239
|
+
default: boolean;
|
|
1240
|
+
};
|
|
1212
1241
|
}>, {
|
|
1213
1242
|
props: any;
|
|
1214
1243
|
emit: (event: "update:show", ...args: any[]) => void;
|
|
@@ -1274,6 +1303,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1274
1303
|
type: BooleanConstructor;
|
|
1275
1304
|
required: false;
|
|
1276
1305
|
};
|
|
1306
|
+
overflowVisible: {
|
|
1307
|
+
type: BooleanConstructor;
|
|
1308
|
+
required: false;
|
|
1309
|
+
default: boolean;
|
|
1310
|
+
};
|
|
1277
1311
|
}>> & Readonly<{
|
|
1278
1312
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1279
1313
|
}>, {
|
|
@@ -1283,6 +1317,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1283
1317
|
allowedPlacements: unknown[];
|
|
1284
1318
|
arrow: boolean;
|
|
1285
1319
|
leaveLazyness: number;
|
|
1320
|
+
overflowVisible: boolean;
|
|
1286
1321
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1287
1322
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:show"[], "update:show", import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
1288
1323
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1450,6 +1485,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1450
1485
|
type: BooleanConstructor;
|
|
1451
1486
|
required: false;
|
|
1452
1487
|
};
|
|
1488
|
+
overflowVisible: {
|
|
1489
|
+
type: BooleanConstructor;
|
|
1490
|
+
required: false;
|
|
1491
|
+
default: boolean;
|
|
1492
|
+
};
|
|
1453
1493
|
}>> & Readonly<{
|
|
1454
1494
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1455
1495
|
}>, {
|
|
@@ -1483,6 +1523,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1483
1523
|
allowedPlacements: unknown[];
|
|
1484
1524
|
arrow: boolean;
|
|
1485
1525
|
leaveLazyness: number;
|
|
1526
|
+
overflowVisible: boolean;
|
|
1486
1527
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1487
1528
|
P: {};
|
|
1488
1529
|
B: {};
|
|
@@ -1531,6 +1572,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1531
1572
|
type: BooleanConstructor;
|
|
1532
1573
|
required: false;
|
|
1533
1574
|
};
|
|
1575
|
+
overflowVisible: {
|
|
1576
|
+
type: BooleanConstructor;
|
|
1577
|
+
required: false;
|
|
1578
|
+
default: boolean;
|
|
1579
|
+
};
|
|
1534
1580
|
}>> & Readonly<{
|
|
1535
1581
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1536
1582
|
}>, {
|
|
@@ -1564,6 +1610,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1564
1610
|
allowedPlacements: unknown[];
|
|
1565
1611
|
arrow: boolean;
|
|
1566
1612
|
leaveLazyness: number;
|
|
1613
|
+
overflowVisible: boolean;
|
|
1567
1614
|
}> | undefined, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
1568
1615
|
show: {
|
|
1569
1616
|
type: BooleanConstructor;
|
|
@@ -1605,6 +1652,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1605
1652
|
type: BooleanConstructor;
|
|
1606
1653
|
required: false;
|
|
1607
1654
|
};
|
|
1655
|
+
overflowVisible: {
|
|
1656
|
+
type: BooleanConstructor;
|
|
1657
|
+
required: false;
|
|
1658
|
+
default: boolean;
|
|
1659
|
+
};
|
|
1608
1660
|
}>> & Readonly<{
|
|
1609
1661
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1610
1662
|
}>, {
|
|
@@ -1638,6 +1690,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1638
1690
|
allowedPlacements: unknown[];
|
|
1639
1691
|
arrow: boolean;
|
|
1640
1692
|
leaveLazyness: number;
|
|
1693
|
+
overflowVisible: boolean;
|
|
1641
1694
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1642
1695
|
P: {};
|
|
1643
1696
|
B: {};
|
|
@@ -1686,6 +1739,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1686
1739
|
type: BooleanConstructor;
|
|
1687
1740
|
required: false;
|
|
1688
1741
|
};
|
|
1742
|
+
overflowVisible: {
|
|
1743
|
+
type: BooleanConstructor;
|
|
1744
|
+
required: false;
|
|
1745
|
+
default: boolean;
|
|
1746
|
+
};
|
|
1689
1747
|
}>> & Readonly<{
|
|
1690
1748
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1691
1749
|
}>, {
|
|
@@ -1719,6 +1777,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1719
1777
|
allowedPlacements: unknown[];
|
|
1720
1778
|
arrow: boolean;
|
|
1721
1779
|
leaveLazyness: number;
|
|
1780
|
+
overflowVisible: boolean;
|
|
1722
1781
|
}> | undefined>;
|
|
1723
1782
|
darkmode: import("vue").ComputedRef<boolean>;
|
|
1724
1783
|
setSlotRef: (index: number) => (vnode: any) => void;
|
|
@@ -1768,6 +1827,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1768
1827
|
type: BooleanConstructor;
|
|
1769
1828
|
required: false;
|
|
1770
1829
|
};
|
|
1830
|
+
overflowVisible: {
|
|
1831
|
+
type: BooleanConstructor;
|
|
1832
|
+
required: false;
|
|
1833
|
+
default: boolean;
|
|
1834
|
+
};
|
|
1771
1835
|
}>, {
|
|
1772
1836
|
props: any;
|
|
1773
1837
|
emit: (event: "update:show", ...args: any[]) => void;
|
|
@@ -1833,6 +1897,11 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1833
1897
|
type: BooleanConstructor;
|
|
1834
1898
|
required: false;
|
|
1835
1899
|
};
|
|
1900
|
+
overflowVisible: {
|
|
1901
|
+
type: BooleanConstructor;
|
|
1902
|
+
required: false;
|
|
1903
|
+
default: boolean;
|
|
1904
|
+
};
|
|
1836
1905
|
}>> & Readonly<{
|
|
1837
1906
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
1838
1907
|
}>, {
|
|
@@ -1842,6 +1911,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
1842
1911
|
allowedPlacements: unknown[];
|
|
1843
1912
|
arrow: boolean;
|
|
1844
1913
|
leaveLazyness: number;
|
|
1914
|
+
overflowVisible: boolean;
|
|
1845
1915
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1846
1916
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:show"[], "update:show", import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
1847
1917
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CollectionFieldPopup.vue.d.ts","sourceRoot":"","sources":["CollectionFieldPopup.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAO5D,QAAA,MAAM,SAAS;;;gCAuBuD,QAAQ,KAAK,GAAG
|
|
1
|
+
{"version":3,"file":"CollectionFieldPopup.vue.d.ts","sourceRoot":"","sources":["CollectionFieldPopup.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAO5D,QAAA,MAAM,SAAS;;;gCAuBuD,QAAQ,KAAK,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAQpF,CAAA;AACF,eAAe,SAAS,CAAA"}
|
|
@@ -230,6 +230,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
230
230
|
type: BooleanConstructor;
|
|
231
231
|
required: false;
|
|
232
232
|
};
|
|
233
|
+
overflowVisible: {
|
|
234
|
+
type: BooleanConstructor;
|
|
235
|
+
required: false;
|
|
236
|
+
default: boolean;
|
|
237
|
+
};
|
|
233
238
|
}>> & Readonly<{
|
|
234
239
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
235
240
|
}>, {
|
|
@@ -263,6 +268,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
263
268
|
allowedPlacements: unknown[];
|
|
264
269
|
arrow: boolean;
|
|
265
270
|
leaveLazyness: number;
|
|
271
|
+
overflowVisible: boolean;
|
|
266
272
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
267
273
|
P: {};
|
|
268
274
|
B: {};
|
|
@@ -311,6 +317,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
311
317
|
type: BooleanConstructor;
|
|
312
318
|
required: false;
|
|
313
319
|
};
|
|
320
|
+
overflowVisible: {
|
|
321
|
+
type: BooleanConstructor;
|
|
322
|
+
required: false;
|
|
323
|
+
default: boolean;
|
|
324
|
+
};
|
|
314
325
|
}>> & Readonly<{
|
|
315
326
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
316
327
|
}>, {
|
|
@@ -344,6 +355,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
344
355
|
allowedPlacements: unknown[];
|
|
345
356
|
arrow: boolean;
|
|
346
357
|
leaveLazyness: number;
|
|
358
|
+
overflowVisible: boolean;
|
|
347
359
|
}> | undefined, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
348
360
|
show: {
|
|
349
361
|
type: BooleanConstructor;
|
|
@@ -385,6 +397,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
385
397
|
type: BooleanConstructor;
|
|
386
398
|
required: false;
|
|
387
399
|
};
|
|
400
|
+
overflowVisible: {
|
|
401
|
+
type: BooleanConstructor;
|
|
402
|
+
required: false;
|
|
403
|
+
default: boolean;
|
|
404
|
+
};
|
|
388
405
|
}>> & Readonly<{
|
|
389
406
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
390
407
|
}>, {
|
|
@@ -418,6 +435,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
418
435
|
allowedPlacements: unknown[];
|
|
419
436
|
arrow: boolean;
|
|
420
437
|
leaveLazyness: number;
|
|
438
|
+
overflowVisible: boolean;
|
|
421
439
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
422
440
|
P: {};
|
|
423
441
|
B: {};
|
|
@@ -466,6 +484,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
466
484
|
type: BooleanConstructor;
|
|
467
485
|
required: false;
|
|
468
486
|
};
|
|
487
|
+
overflowVisible: {
|
|
488
|
+
type: BooleanConstructor;
|
|
489
|
+
required: false;
|
|
490
|
+
default: boolean;
|
|
491
|
+
};
|
|
469
492
|
}>> & Readonly<{
|
|
470
493
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
471
494
|
}>, {
|
|
@@ -499,6 +522,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
499
522
|
allowedPlacements: unknown[];
|
|
500
523
|
arrow: boolean;
|
|
501
524
|
leaveLazyness: number;
|
|
525
|
+
overflowVisible: boolean;
|
|
502
526
|
}> | undefined>;
|
|
503
527
|
darkmode: import("vue").ComputedRef<boolean>;
|
|
504
528
|
setSlotRef: (index: number) => (vnode: any) => void;
|
|
@@ -548,6 +572,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
548
572
|
type: BooleanConstructor;
|
|
549
573
|
required: false;
|
|
550
574
|
};
|
|
575
|
+
overflowVisible: {
|
|
576
|
+
type: BooleanConstructor;
|
|
577
|
+
required: false;
|
|
578
|
+
default: boolean;
|
|
579
|
+
};
|
|
551
580
|
}>, {
|
|
552
581
|
props: any;
|
|
553
582
|
emit: (event: "update:show", ...args: any[]) => void;
|
|
@@ -613,6 +642,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
613
642
|
type: BooleanConstructor;
|
|
614
643
|
required: false;
|
|
615
644
|
};
|
|
645
|
+
overflowVisible: {
|
|
646
|
+
type: BooleanConstructor;
|
|
647
|
+
required: false;
|
|
648
|
+
default: boolean;
|
|
649
|
+
};
|
|
616
650
|
}>> & Readonly<{
|
|
617
651
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
618
652
|
}>, {
|
|
@@ -622,6 +656,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
622
656
|
allowedPlacements: unknown[];
|
|
623
657
|
arrow: boolean;
|
|
624
658
|
leaveLazyness: number;
|
|
659
|
+
overflowVisible: boolean;
|
|
625
660
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
626
661
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:show"[], "update:show", import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
627
662
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Fields.vue.d.ts","sourceRoot":"","sources":["Fields.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAI9C,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"Fields.vue.d.ts","sourceRoot":"","sources":["Fields.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAI9C,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iGAcb,CAAA;AACF,eAAe,SAAS,CAAA"}
|
|
@@ -96,6 +96,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
96
96
|
type: BooleanConstructor;
|
|
97
97
|
required: false;
|
|
98
98
|
};
|
|
99
|
+
overflowVisible: {
|
|
100
|
+
type: BooleanConstructor;
|
|
101
|
+
required: false;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
99
104
|
}>> & Readonly<{
|
|
100
105
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
101
106
|
}>, {
|
|
@@ -129,6 +134,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
129
134
|
allowedPlacements: unknown[];
|
|
130
135
|
arrow: boolean;
|
|
131
136
|
leaveLazyness: number;
|
|
137
|
+
overflowVisible: boolean;
|
|
132
138
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
133
139
|
P: {};
|
|
134
140
|
B: {};
|
|
@@ -177,6 +183,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
177
183
|
type: BooleanConstructor;
|
|
178
184
|
required: false;
|
|
179
185
|
};
|
|
186
|
+
overflowVisible: {
|
|
187
|
+
type: BooleanConstructor;
|
|
188
|
+
required: false;
|
|
189
|
+
default: boolean;
|
|
190
|
+
};
|
|
180
191
|
}>> & Readonly<{
|
|
181
192
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
182
193
|
}>, {
|
|
@@ -210,6 +221,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
210
221
|
allowedPlacements: unknown[];
|
|
211
222
|
arrow: boolean;
|
|
212
223
|
leaveLazyness: number;
|
|
224
|
+
overflowVisible: boolean;
|
|
213
225
|
}> | undefined, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
214
226
|
show: {
|
|
215
227
|
type: BooleanConstructor;
|
|
@@ -251,6 +263,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
251
263
|
type: BooleanConstructor;
|
|
252
264
|
required: false;
|
|
253
265
|
};
|
|
266
|
+
overflowVisible: {
|
|
267
|
+
type: BooleanConstructor;
|
|
268
|
+
required: false;
|
|
269
|
+
default: boolean;
|
|
270
|
+
};
|
|
254
271
|
}>> & Readonly<{
|
|
255
272
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
256
273
|
}>, {
|
|
@@ -284,6 +301,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
284
301
|
allowedPlacements: unknown[];
|
|
285
302
|
arrow: boolean;
|
|
286
303
|
leaveLazyness: number;
|
|
304
|
+
overflowVisible: boolean;
|
|
287
305
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
288
306
|
P: {};
|
|
289
307
|
B: {};
|
|
@@ -332,6 +350,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
332
350
|
type: BooleanConstructor;
|
|
333
351
|
required: false;
|
|
334
352
|
};
|
|
353
|
+
overflowVisible: {
|
|
354
|
+
type: BooleanConstructor;
|
|
355
|
+
required: false;
|
|
356
|
+
default: boolean;
|
|
357
|
+
};
|
|
335
358
|
}>> & Readonly<{
|
|
336
359
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
337
360
|
}>, {
|
|
@@ -365,6 +388,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
365
388
|
allowedPlacements: unknown[];
|
|
366
389
|
arrow: boolean;
|
|
367
390
|
leaveLazyness: number;
|
|
391
|
+
overflowVisible: boolean;
|
|
368
392
|
}> | undefined>;
|
|
369
393
|
darkmode: import("vue").ComputedRef<boolean>;
|
|
370
394
|
setSlotRef: (index: number) => (vnode: any) => void;
|
|
@@ -414,6 +438,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
414
438
|
type: BooleanConstructor;
|
|
415
439
|
required: false;
|
|
416
440
|
};
|
|
441
|
+
overflowVisible: {
|
|
442
|
+
type: BooleanConstructor;
|
|
443
|
+
required: false;
|
|
444
|
+
default: boolean;
|
|
445
|
+
};
|
|
417
446
|
}>, {
|
|
418
447
|
props: any;
|
|
419
448
|
emit: (event: "update:show", ...args: any[]) => void;
|
|
@@ -479,6 +508,11 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
479
508
|
type: BooleanConstructor;
|
|
480
509
|
required: false;
|
|
481
510
|
};
|
|
511
|
+
overflowVisible: {
|
|
512
|
+
type: BooleanConstructor;
|
|
513
|
+
required: false;
|
|
514
|
+
default: boolean;
|
|
515
|
+
};
|
|
482
516
|
}>> & Readonly<{
|
|
483
517
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
484
518
|
}>, {
|
|
@@ -488,6 +522,7 @@ declare const _sfc_main: import("vue").DefineComponent<import("vue").ExtractProp
|
|
|
488
522
|
allowedPlacements: unknown[];
|
|
489
523
|
arrow: boolean;
|
|
490
524
|
leaveLazyness: number;
|
|
525
|
+
overflowVisible: boolean;
|
|
491
526
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
492
527
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:show"[], "update:show", import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
493
528
|
"onUpdate:show"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FieldsList.vue.d.ts","sourceRoot":"","sources":["FieldsList.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,QAAQ,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAC5C,OAAO,KAAK,sBAAsB,MAAM,UAAU,CAAC;AACnD,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAM9E,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;gCAgBuD,QAAQ,KAAK,GAAG;wBAK3D,YAAY,CAAC,OAAO,CAAC;;;iCAuCZ,YAAY,CAAC,OAAO,CAAC;;;4BAW1B,gBAAgB
|
|
1
|
+
{"version":3,"file":"FieldsList.vue.d.ts","sourceRoot":"","sources":["FieldsList.vue.ts"],"names":[],"mappings":"AACA,OAAO,EAAU,QAAQ,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAC5C,OAAO,KAAK,sBAAsB,MAAM,UAAU,CAAC;AACnD,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAM9E,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;gCAgBuD,QAAQ,KAAK,GAAG;wBAK3D,YAAY,CAAC,OAAO,CAAC;;;iCAuCZ,YAAY,CAAC,OAAO,CAAC;;;4BAW1B,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAY7C,CAAA;AACF,eAAe,SAAS,CAAA"}
|