@bagelink/vue 0.0.823 → 0.0.827
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/SelectInput.vue.d.ts +2 -0
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/layout/Skeleton.vue.d.ts +6 -2
- package/dist/components/layout/Skeleton.vue.d.ts.map +1 -1
- package/dist/index.cjs +117 -87
- package/dist/index.mjs +117 -87
- package/dist/style.css +27 -23
- package/dist/utils/BagelFormUtils.d.ts +1 -0
- package/dist/utils/BagelFormUtils.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/form/inputs/SelectInput.vue +36 -12
- package/src/components/layout/Skeleton.vue +24 -18
- package/src/styles/theme.css +5 -1
- package/src/utils/BagelFormUtils.ts +3 -0
|
@@ -244,6 +244,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
244
244
|
defaultValue?: Option;
|
|
245
245
|
clearable?: boolean;
|
|
246
246
|
searchPlaceholder?: string;
|
|
247
|
+
onSearch?: (search: string) => Promise<Option[]>;
|
|
247
248
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
248
249
|
"update:modelValue": (...args: any[]) => void;
|
|
249
250
|
}, string, import('vue').PublicProps, Readonly<{
|
|
@@ -261,6 +262,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
261
262
|
defaultValue?: Option;
|
|
262
263
|
clearable?: boolean;
|
|
263
264
|
searchPlaceholder?: string;
|
|
265
|
+
onSearch?: (search: string) => Promise<Option[]>;
|
|
264
266
|
}> & Readonly<{
|
|
265
267
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
266
268
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectInput.vue"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"SelectInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectInput.vue"],"names":[],"mappings":"AAAA,OAoZO,EAMN,KAAK,aAAa,EAClB,KAAK,MAAM,EAEX,MAAM,eAAe,CAAA;AAEtB,OAAO,wBAAwB,CAAA;AA8M/B,iBAAS,cAAc;;sBA2OI,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCApCgD,GAAG,8CAA8C,GAAG,yBAAyB,GAC3J,6DAE+B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA4CpB,OAAO,IAA6B;EAEjD;AAiCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;aAneX,MAAM,EAAE;kBACH,MAAM;eACT,OAAO;iBACL,MAAM;iBACN,OAAO;eACT,OAAO;YACV,MAAM;gBACF,OAAO;kBACL,OAAO;WACd,aAAa;gBACR,OAAO;mBACJ,MAAM;gBACT,OAAO;wBACC,MAAM;eACf,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,EAAE,CAAC;;;;aAdvC,MAAM,EAAE;kBACH,MAAM;eACT,OAAO;iBACL,MAAM;iBACN,OAAO;eACT,OAAO;YACV,MAAM;gBACF,OAAO;kBACL,OAAO;WACd,aAAa;gBACR,OAAO;mBACJ,MAAM;gBACT,OAAO;wBACC,MAAM;eACf,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,EAAE,CAAC;;;kFA4d/C,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -7,15 +7,19 @@ declare function __VLS_template(): {
|
|
|
7
7
|
};
|
|
8
8
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
9
|
declare const __VLS_component: import('vue').DefineComponent<{
|
|
10
|
-
count?: number;
|
|
10
|
+
count?: number | string;
|
|
11
11
|
height?: string;
|
|
12
12
|
width?: string;
|
|
13
|
+
round?: boolean;
|
|
13
14
|
borderRadius?: string;
|
|
15
|
+
class?: string;
|
|
14
16
|
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
15
|
-
count?: number;
|
|
17
|
+
count?: number | string;
|
|
16
18
|
height?: string;
|
|
17
19
|
width?: string;
|
|
20
|
+
round?: boolean;
|
|
18
21
|
borderRadius?: string;
|
|
22
|
+
class?: string;
|
|
19
23
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
24
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
21
25
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Skeleton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/Skeleton.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Skeleton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/layout/Skeleton.vue"],"names":[],"mappings":"AAuFA,iBAAS,cAAc;;yBA0CM,GAAG;;;WASlB,OAAO,IAA6B;EAEjD;AAeD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;YA7FZ,MAAM,GAAG,MAAM;aACd,MAAM;YACP,MAAM;YACN,OAAO;mBACA,MAAM;YACb,MAAM;;YALN,MAAM,GAAG,MAAM;aACd,MAAM;YACP,MAAM;YACN,OAAO;mBACA,MAAM;YACb,MAAM;iGA8Fb,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|