@bagelink/vue 0.0.650 → 0.0.654

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.
Files changed (31) hide show
  1. package/dist/components/Drop.vue.d.ts +34 -0
  2. package/dist/components/Drop.vue.d.ts.map +1 -0
  3. package/dist/components/FileUploader.vue.d.ts +60 -0
  4. package/dist/components/FileUploader.vue.d.ts.map +1 -0
  5. package/dist/components/form/ItemRef.vue.d.ts +1 -0
  6. package/dist/components/form/ItemRef.vue.d.ts.map +1 -1
  7. package/dist/components/form/inputs/FileUpload.vue.d.ts.map +1 -1
  8. package/dist/components/form/inputs/RadioGroup.vue.d.ts +35 -40
  9. package/dist/components/form/inputs/RadioGroup.vue.d.ts.map +1 -1
  10. package/dist/components/form/inputs/SelectField.vue.d.ts +1 -4
  11. package/dist/components/form/inputs/SelectField.vue.d.ts.map +1 -1
  12. package/dist/components/form/inputs/SignaturePad.vue.d.ts.map +1 -1
  13. package/dist/index.cjs +41 -36
  14. package/dist/index.mjs +41 -36
  15. package/dist/plugins/modal.d.ts +1 -1
  16. package/dist/plugins/modal.d.ts.map +1 -1
  17. package/dist/style.css +19 -19
  18. package/dist/types/index.d.ts +1 -1
  19. package/dist/types/index.d.ts.map +1 -1
  20. package/package.json +3 -3
  21. package/src/components/form/inputs/FileUpload.vue +2 -2
  22. package/src/components/form/inputs/FileUploadURL.vue +2 -2
  23. package/src/components/form/inputs/RadioGroup.vue +15 -5
  24. package/src/components/form/inputs/SignaturePad.vue +1 -0
  25. package/src/components/formkit/FileUploader.vue +2 -2
  26. package/src/plugins/modal.ts +1 -1
  27. package/src/types/index.ts +1 -1
  28. package/dist/components/Popover.vue.d.ts +0 -10
  29. package/dist/components/Popover.vue.d.ts.map +0 -1
  30. package/dist/types/materialIcon.d.ts +0 -2
  31. package/dist/types/materialIcon.d.ts.map +0 -1
@@ -0,0 +1,34 @@
1
+ type Option = {
2
+ label: string;
3
+ value: string;
4
+ } | string | number;
5
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
6
+ modelValue: string | number;
7
+ options: Option[];
8
+ placeholder?: string | undefined;
9
+ label?: string | undefined;
10
+ id: string;
11
+ required: boolean;
12
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ "update:modelValue": (...args: any[]) => void;
14
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
15
+ modelValue: string | number;
16
+ options: Option[];
17
+ placeholder?: string | undefined;
18
+ label?: string | undefined;
19
+ id: string;
20
+ required: boolean;
21
+ }>>> & {
22
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
23
+ }, {}, {}>;
24
+ export default _default;
25
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
26
+ type __VLS_TypePropsToRuntimeProps<T> = {
27
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
28
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
29
+ } : {
30
+ type: import('vue').PropType<T[K]>;
31
+ required: true;
32
+ };
33
+ };
34
+ //# sourceMappingURL=Drop.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Drop.vue.d.ts","sourceRoot":"","sources":["../../src/components/Drop.vue"],"names":[],"mappings":"AAcA;AAMA,KAAK,MAAM,GAAG;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf,GAAG,MAAM,GAAG,MAAM,CAAC;;gBA8KN,MAAM,GAAG,MAAM;aAClB,MAAM,EAAE;;;QAGb,MAAM;cACA,OAAO;;;;gBALL,MAAM,GAAG,MAAM;aAClB,MAAM,EAAE;;;QAGb,MAAM;cACA,OAAO;;;;AAXnB,wBAcG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
@@ -0,0 +1,60 @@
1
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ id?: string | undefined;
3
+ private?: 0 | 1 | undefined;
4
+ singleFile?: boolean | undefined;
5
+ beforeUpload?: (() => Promise<any>) | undefined;
6
+ dragDropLabel?: string | undefined;
7
+ browseLabel?: string | undefined;
8
+ }>, {
9
+ private: number;
10
+ entity: string;
11
+ id: string;
12
+ beforeUpload: () => Promise<void>;
13
+ dragDropLabel: string;
14
+ browseLabel: string;
15
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
16
+ done: (...args: any[]) => void;
17
+ complete: (...args: any[]) => void;
18
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
19
+ id?: string | undefined;
20
+ private?: 0 | 1 | undefined;
21
+ singleFile?: boolean | undefined;
22
+ beforeUpload?: (() => Promise<any>) | undefined;
23
+ dragDropLabel?: string | undefined;
24
+ browseLabel?: string | undefined;
25
+ }>, {
26
+ private: number;
27
+ entity: string;
28
+ id: string;
29
+ beforeUpload: () => Promise<void>;
30
+ dragDropLabel: string;
31
+ browseLabel: string;
32
+ }>>> & {
33
+ onDone?: ((...args: any[]) => any) | undefined;
34
+ onComplete?: ((...args: any[]) => any) | undefined;
35
+ }, {
36
+ id: string;
37
+ private: 1 | 0;
38
+ beforeUpload: () => Promise<any>;
39
+ dragDropLabel: string;
40
+ browseLabel: string;
41
+ }, {}>;
42
+ export default _default;
43
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
44
+ type __VLS_TypePropsToRuntimeProps<T> = {
45
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
46
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
47
+ } : {
48
+ type: import('vue').PropType<T[K]>;
49
+ required: true;
50
+ };
51
+ };
52
+ type __VLS_WithDefaults<P, D> = {
53
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
54
+ default: D[K];
55
+ }> : P[K];
56
+ };
57
+ type __VLS_Prettify<T> = {
58
+ [K in keyof T]: T[K];
59
+ } & {};
60
+ //# sourceMappingURL=FileUploader.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FileUploader.vue.d.ts","sourceRoot":"","sources":["../../src/components/FileUploader.vue"],"names":[],"mappings":"AAiDA;;;;;0BA6YuB,QAAQ,GAAG,CAAC;;;;;;;;;;;;;;;;;0BAAZ,QAAQ,GAAG,CAAC;;;;;;;;;;;;;;QAJ5B,MAAM;aAED,CAAC,GAAG,CAAC;kBAEA,MAAM,QAAQ,GAAG,CAAC;mBACjB,MAAM;iBACR,MAAM;;AARtB,wBAeG;AAGH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -1,4 +1,5 @@
1
1
  import type { Router } from 'vue-router';
2
+ import { BagelField } from '../..';
2
3
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
3
4
  modelValue: Record<string, any>;
4
5
  field: BagelField;
@@ -1 +1 @@
1
- {"version":3,"file":"ItemRef.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form/ItemRef.vue"],"names":[],"mappings":"AAoBA;AAIA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC;;gBAqI5B,OAAO,MAAM,EAAE,GAAG,CAAC;;YAEvB,MAAM;;gBAFF,OAAO,MAAM,EAAE,GAAG,CAAC;;YAEvB,MAAM;;AARf,wBAUG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
1
+ {"version":3,"file":"ItemRef.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form/ItemRef.vue"],"names":[],"mappings":"AAoBA;AAIA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,YAAY,CAAC;AACzC,OAAO,EAAqB,UAAU,EAAE,MAAM,eAAe,CAAC;;gBAoIjD,OAAO,MAAM,EAAE,GAAG,CAAC;WACxB,UAAU;YACT,MAAM;;gBAFF,OAAO,MAAM,EAAE,GAAG,CAAC;WACxB,UAAU;YACT,MAAM;;AARf,wBAUG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"FileUpload.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/FileUpload.vue"],"names":[],"mappings":"AAGA,OAAO,EAAqB,KAAK,WAAW,EAAY,MAAM,eAAe,CAAA;AA0B7E,KAAK,MAAM,GAAG,MAAM,WAAW,CAAA;AAE/B,KAAK,OAAO,GAAG,MAAM,EAAE,GAAG,MAAM,GAAG,MAAM,CAAA;AAkGzC,iBAAS,MAAM,SAgBd;AA2BD,iBAAS,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;sBArJZ,MAAM;wBACJ,OAAO;mBACZ,MAAM;uBACF,OAAO;;QA0cS,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;sBA7cpB,MAAM;wBACJ,OAAO;mBACZ,MAAM;uBACF,OAAO;;;QA2ce,GAAG;EAGpC;AA4BD,QAAA,MAAM,eAAe;YAMZ,MAAM;eACH,OAAO;YACV,WAAW,GAAG,WAAW,EAAE;cACzB,MAAM;iBACH,OAAO;YACZ,MAAM;YACN,MAAM;;;;YANN,MAAM;eACH,OAAO;YACV,WAAW,GAAG,WAAW,EAAE;cACzB,MAAM;iBACH,OAAO;YACZ,MAAM;YACN,MAAM;;;UAGb,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAAvG,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
1
+ {"version":3,"file":"FileUpload.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/FileUpload.vue"],"names":[],"mappings":"AAGA,OAAO,EAAa,KAAK,WAAW,EAAY,MAAM,eAAe,CAAA;AA0BrE,KAAK,MAAM,GAAG,MAAM,WAAW,CAAA;AAE/B,KAAK,OAAO,GAAG,MAAM,EAAE,GAAG,MAAM,GAAG,MAAM,CAAA;AAkGzC,iBAAS,MAAM,SAgBd;AA2BD,iBAAS,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;sBArJZ,MAAM;wBACJ,OAAO;mBACZ,MAAM;uBACF,OAAO;;QA0cS,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;sBA7cpB,MAAM;wBACJ,OAAO;mBACZ,MAAM;uBACF,OAAO;;;QA2ce,GAAG;EAGpC;AA4BD,QAAA,MAAM,eAAe;YAMZ,MAAM;eACH,OAAO;YACV,WAAW,GAAG,WAAW,EAAE;cACzB,MAAM;iBACH,OAAO;YACZ,MAAM;YACN,MAAM;;;;YANN,MAAM;eACH,OAAO;YACV,WAAW,GAAG,WAAW,EAAE;cACzB,MAAM;iBACH,OAAO;YACZ,MAAM;YACN,MAAM;;;UAGb,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAAvG,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
@@ -1,47 +1,42 @@
1
- declare const _default: import('vue').DefineComponent<{
2
- modelValue: import('vue').PropType<any>;
3
- groupName: {
4
- type: import('vue').PropType<string>;
5
- required: true;
6
- };
7
- options: {
8
- type: import('vue').PropType<{
1
+ export interface RadioOption<T> {
2
+ imgAlt?: string;
3
+ imgSrc?: string;
4
+ subLabel?: string;
5
+ label?: string;
6
+ value: object;
7
+ id: string;
8
+ contextObj: T;
9
+ }
10
+ declare const _default: <T>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: __VLS_Prettify<Pick<Awaited<typeof __VLS_setup>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
11
+ props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<(Partial<{}> & Omit<{
12
+ onDelete?: ((...args: any[]) => any) | undefined;
13
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{}>> & {
14
+ onDelete?: ((...args: any[]) => any) | undefined;
15
+ }, never>) & ({
16
+ groupName: string;
17
+ options: RadioOption<T>[];
18
+ deletable?: boolean;
19
+ } & {
20
+ modelValue?: any;
21
+ }), keyof import('vue').VNodeProps | keyof import('vue').AllowedComponentProps>> & {} & (import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps);
22
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
23
+ attrs: any;
24
+ slots: ReturnType<() => {
25
+ radioItem?(_: {
9
26
  imgAlt?: string;
10
27
  imgSrc?: string;
11
28
  subLabel?: string;
12
29
  label?: string;
13
- value: any;
30
+ value: object;
14
31
  id: string;
15
- }[]>;
16
- required: true;
17
- };
18
- deletable: {
19
- type: import('vue').PropType<boolean>;
20
- };
21
- }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
- delete: (...args: any[]) => void;
23
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
24
- modelValue: import('vue').PropType<any>;
25
- groupName: {
26
- type: import('vue').PropType<string>;
27
- required: true;
28
- };
29
- options: {
30
- type: import('vue').PropType<{
31
- imgAlt?: string;
32
- imgSrc?: string;
33
- subLabel?: string;
34
- label?: string;
35
- value: any;
36
- id: string;
37
- }[]>;
38
- required: true;
39
- };
40
- deletable: {
41
- type: import('vue').PropType<boolean>;
42
- };
43
- }>> & {
44
- onDelete?: ((...args: any[]) => any) | undefined;
45
- }, {}, {}>;
32
+ contextObj: T;
33
+ }): any;
34
+ }>;
35
+ emit: (event: "delete", ...args: any[]) => void;
36
+ }>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
37
+ [key: string]: any;
38
+ }> & {
39
+ __ctx?: Awaited<typeof __VLS_setup>;
40
+ };
46
41
  export default _default;
47
42
  //# sourceMappingURL=RadioGroup.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"RadioGroup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/RadioGroup.vue"],"names":[],"mappings":";gBAiBc,OAAO,KAAK,EAAE,QAAQ,CAAC,GAAG,CAAC;;;kBAyL4J,IAAI;;;;qBATpL,MAAM;qBAAW,MAAM;uBAAa,MAAM;oBAAU,MAAM;mBAAS,GAAG;gBAAM,MAAM;;kBAS8F,IAAI;;;;;;;;gBAzL3L,OAAO,KAAK,EAAE,QAAQ,CAAC,GAAG,CAAC;;;kBAyL4J,IAAI;;;;qBATpL,MAAM;qBAAW,MAAM;uBAAa,MAAM;oBAAU,MAAM;mBAAS,GAAG;gBAAM,MAAM;;kBAS8F,IAAI;;;;;;;;AAjBzM,wBAeG"}
1
+ {"version":3,"file":"RadioGroup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/RadioGroup.vue"],"names":[],"mappings":"AAIA,MAAM,WAAW,WAAW,CAAC,CAAC;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE,CAAC,CAAA;CACb;yBAGgB,CAAC,eACL,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,OAAO,CAAC,cACrC,cAAc,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,iBAC1E,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC;WAoM1D,cAAc,CAAC,gCAAgC,CAAC;;;;;mBAV3C,MAAM;iBACR,WAAW,CAAC,CAAC,CAAC,EAAE;oBACb,OAAO;;qBAEL,GAAG;MAMuG,6EAAkC,CAAC,6GAAwD;oBACpM,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;WACH,UAAU;;qBApNP,MAAM;qBACN,MAAM;uBACJ,MAAM;oBACT,MAAM;mBACP,MAAM;gBACT,MAAM;;YA8KqB,GAAG;MAiCK;;;;;YAII,OAAO,CAAC,OAAO,WAAW,CAAC;;AA9MvE,wBA8M2E"}
@@ -4,8 +4,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
4
4
  field: SelectBagelField;
5
5
  modelValue: any;
6
6
  small?: boolean | undefined;
7
- label?: string | undefined;
8
- description?: string | undefined;
9
7
  }>, {
10
8
  description: string;
11
9
  editMode: boolean;
@@ -19,8 +17,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
19
17
  field: SelectBagelField;
20
18
  modelValue: any;
21
19
  small?: boolean | undefined;
22
- label?: string | undefined;
23
- description?: string | undefined;
24
20
  }>, {
25
21
  description: string;
26
22
  editMode: boolean;
@@ -32,6 +28,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
32
28
  }, {
33
29
  description: string;
34
30
  label: string;
31
+ placeholder: string;
35
32
  editMode: boolean;
36
33
  }, {}>;
37
34
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"SelectField.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectField.vue"],"names":[],"mappings":"AA6CA;AAOA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,eAAe,CAAC;;;WAiV5C,gBAAgB;gBACX,GAAG;;;;;;;;;;;;;;WADR,gBAAgB;gBACX,GAAG;;;;;;;;;;;;;iBAGD,MAAM;WADZ,MAAM;cAJH,OAAO;;AANrB,wBAcG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"SelectField.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SelectField.vue"],"names":[],"mappings":"AA6CA;AAOA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,eAAe,CAAC;;;WA6U5C,gBAAgB;gBACX,GAAG;;;;;;;;;;;;WADR,gBAAgB;gBACX,GAAG;;;;;;;;;;;;;;cAFJ,OAAO;;AANrB,wBAYG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"SignaturePad.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SignaturePad.vue"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAMnE,UAAU,SAAS;IAClB,IAAI,EAAE,MAAM,CAAA;IACZ,CAAC,EAAE,MAAM,CAAA;IACT,CAAC,EAAE,MAAM,CAAA;IACT,EAAE,EAAE,MAAM,CAAA;IACV,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,SAAS,EAAE,MAAM,CAAA;IACjB,WAAW,EAAE,MAAM,CAAA;IACnB,KAAK,EAAE,MAAM,CAAA;CACb;AAED,KAAK,UAAU,GAAG,WAAW,GAAG,YAAY,GAAG,eAAe,CAAA;AAuB9D,iBAAS,IAAI,CAAC,MAAM,CAAC,EAAE,UAAU,sBAGhC;AAKD,iBAAS,IAAI,SAMZ;AAgBD,iBAAS,YAAY,CAAC,IAAI,EAAE,SAAS,QA0BpC;;gBA6IY,mBAAmB;YACvB,MAAM;aACL,MAAM;YACP,MAAM;oBACE,OAAO;gBACX,SAAS;eACV,OAAO;iBACL,MAAM;aACV,UAAU;gBACP,OAAO;;;;;;;;;uBAzMM,MAAM;;gBAgMnB,mBAAmB;YACvB,MAAM;aACL,MAAM;YACP,MAAM;oBACE,OAAO;gBACX,SAAS;eACV,OAAO;iBACL,MAAM;aACV,UAAU;gBACP,OAAO;;;;eAAP,OAAO;;AAhBpB,wBAkBG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"SignaturePad.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/inputs/SignaturePad.vue"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAMnE,UAAU,SAAS;IAClB,IAAI,EAAE,MAAM,CAAA;IACZ,CAAC,EAAE,MAAM,CAAA;IACT,CAAC,EAAE,MAAM,CAAA;IACT,EAAE,EAAE,MAAM,CAAA;IACV,EAAE,EAAE,MAAM,CAAA;IACV,IAAI,EAAE,MAAM,CAAA;IACZ,SAAS,EAAE,MAAM,CAAA;IACjB,WAAW,EAAE,MAAM,CAAA;IACnB,KAAK,EAAE,MAAM,CAAA;CACb;AAED,KAAK,UAAU,GAAG,WAAW,GAAG,YAAY,GAAG,eAAe,CAAA;AAuB9D,iBAAS,IAAI,CAAC,MAAM,CAAC,EAAE,UAAU,sBAGhC;AAKD,iBAAS,IAAI,SAMZ;AAiBD,iBAAS,YAAY,CAAC,IAAI,EAAE,SAAS,QA0BpC;;gBA6IY,mBAAmB;YACvB,MAAM;aACL,MAAM;YACP,MAAM;oBACE,OAAO;gBACX,SAAS;eACV,OAAO;iBACL,MAAM;aACV,UAAU;gBACP,OAAO;;;;;;;;;uBA1MM,MAAM;;gBAiMnB,mBAAmB;YACvB,MAAM;aACL,MAAM;YACP,MAAM;oBACE,OAAO;gBACX,SAAS;eACV,OAAO;iBACL,MAAM;aACV,UAAU;gBACP,OAAO;;;;eAAP,OAAO;;AAhBpB,wBAkBG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
package/dist/index.cjs CHANGED
@@ -5455,7 +5455,7 @@ const _hoisted_1$K = { class: "full-nav" };
5455
5455
  const _hoisted_2$A = { class: "nav-scroll" };
5456
5456
  const _hoisted_3$o = { class: "nav-links-wrapper" };
5457
5457
  const _hoisted_4$g = { class: "tooltip" };
5458
- const _hoisted_5$e = { class: "bot-buttons-wrapper" };
5458
+ const _hoisted_5$f = { class: "bot-buttons-wrapper" };
5459
5459
  const _hoisted_6$9 = { class: "tooltip" };
5460
5460
  const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
5461
5461
  __name: "NavBar",
@@ -5511,7 +5511,7 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
5511
5511
  }), 128))
5512
5512
  ])
5513
5513
  ]),
5514
- vue.createElementVNode("div", _hoisted_5$e, [
5514
+ vue.createElementVNode("div", _hoisted_5$f, [
5515
5515
  (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.footerLinks, (link) => {
5516
5516
  return vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(link.to ? "router-link" : "div"), {
5517
5517
  key: link.label,
@@ -6374,7 +6374,7 @@ const _hoisted_3$k = [
6374
6374
  _hoisted_2$t
6375
6375
  ];
6376
6376
  const _hoisted_4$e = { class: "infinite-wrapper" };
6377
- const _hoisted_5$d = { class: "row first-row" };
6377
+ const _hoisted_5$e = { class: "row first-row" };
6378
6378
  const _hoisted_6$8 = { key: 0 };
6379
6379
  const _hoisted_7$4 = ["onClick"];
6380
6380
  const _hoisted_8$2 = { class: "flex" };
@@ -6523,7 +6523,7 @@ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
6523
6523
  }), [
6524
6524
  loading.value ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$D, _hoisted_3$k)) : (vue.openBlock(), vue.createElementBlock("div", vue.normalizeProps(vue.mergeProps({ key: 1 }, vue.unref(wrapperProps))), [
6525
6525
  vue.createElementVNode("table", _hoisted_4$e, [
6526
- vue.createElementVNode("thead", _hoisted_5$d, [
6526
+ vue.createElementVNode("thead", _hoisted_5$e, [
6527
6527
  vue.unref(isSelectable) ? (vue.openBlock(), vue.createElementBlock("th", _hoisted_6$8, [
6528
6528
  vue.createElementVNode("input", {
6529
6529
  ref_key: "allSelector",
@@ -6645,7 +6645,7 @@ const _hoisted_2$s = {
6645
6645
  };
6646
6646
  const _hoisted_3$j = { class: "key" };
6647
6647
  const _hoisted_4$d = { class: "m-0" };
6648
- const _hoisted_5$c = { key: 1 };
6648
+ const _hoisted_5$d = { key: 1 };
6649
6649
  const _hoisted_6$7 = {
6650
6650
  key: 0,
6651
6651
  class: "data-row"
@@ -6715,7 +6715,7 @@ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
6715
6715
  ])) : vue.createCommentVNode("", true)
6716
6716
  ], 64);
6717
6717
  }), 128)),
6718
- !((_a2 = _ctx.schema) == null ? void 0 : _a2.length) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5$c, [
6718
+ !((_a2 = _ctx.schema) == null ? void 0 : _a2.length) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5$d, [
6719
6719
  (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, ({ id, label }) => {
6720
6720
  return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: id }, [
6721
6721
  !isUnset(itemData.value[id]) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$7, [
@@ -16067,7 +16067,7 @@ const _hoisted_4$c = {
16067
16067
  key: 2,
16068
16068
  class: "ms-auto ps-05 me-05"
16069
16069
  };
16070
- const _hoisted_5$b = ["value"];
16070
+ const _hoisted_5$c = ["value"];
16071
16071
  const _hoisted_6$6 = { class: "selectinput-options" };
16072
16072
  const _hoisted_7$2 = ["onClick"];
16073
16073
  const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
@@ -16298,7 +16298,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
16298
16298
  value: vue.unref(selectedItems),
16299
16299
  required: "",
16300
16300
  onInput: _cache[2] || (_cache[2] = ($event) => updateOpen(true))
16301
- }, null, 40, _hoisted_5$b)) : vue.createCommentVNode("", true)
16301
+ }, null, 40, _hoisted_5$c)) : vue.createCommentVNode("", true)
16302
16302
  ])
16303
16303
  ])
16304
16304
  ]),
@@ -18791,7 +18791,7 @@ const _hoisted_1$q = ["title"];
18791
18791
  const _hoisted_2$k = { class: "bagel-input" };
18792
18792
  const _hoisted_3$f = { class: "table-side-scroll" };
18793
18793
  const _hoisted_4$b = { class: "table-header" };
18794
- const _hoisted_5$a = { class: "table-reorder" };
18794
+ const _hoisted_5$b = { class: "table-reorder" };
18795
18795
  const _hoisted_6$5 = { class: "table-action" };
18796
18796
  const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
18797
18797
  __name: "TableField",
@@ -18889,7 +18889,7 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
18889
18889
  key: row.id,
18890
18890
  class: "flex table-row"
18891
18891
  }, [
18892
- vue.createElementVNode("div", _hoisted_5$a, [
18892
+ vue.createElementVNode("div", _hoisted_5$b, [
18893
18893
  vue.createVNode(vue.unref(_sfc_main$P), { icon: "more_vert" })
18894
18894
  ]),
18895
18895
  (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList((_a3 = vue.unref(entityMeta)) == null ? void 0 : _a3.fields, (field) => {
@@ -18942,7 +18942,7 @@ const _hoisted_1$p = ["title"];
18942
18942
  const _hoisted_2$j = ["for"];
18943
18943
  const _hoisted_3$e = ["id", "title", "autocomplete", "type", "placeholder", "disabled", "required", "pattern"];
18944
18944
  const _hoisted_4$a = ["id", "title", "type", "rows", "placeholder", "disabled", "required", "pattern"];
18945
- const _hoisted_5$9 = { key: 2 };
18945
+ const _hoisted_5$a = { key: 2 };
18946
18946
  const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
18947
18947
  __name: "TextInput",
18948
18948
  props: {
@@ -19058,7 +19058,7 @@ const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
19058
19058
  }, _ctx.nativeInputAttrs, { onInput: updateInputVal }), null, 16, _hoisted_4$a)), [
19059
19059
  [vue.vModelText, vue.unref(inputVal)]
19060
19060
  ]),
19061
- _ctx.helptext ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_5$9, vue.toDisplayString(_ctx.helptext), 1)) : vue.createCommentVNode("", true)
19061
+ _ctx.helptext ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_5$a, vue.toDisplayString(_ctx.helptext), 1)) : vue.createCommentVNode("", true)
19062
19062
  ], 8, _hoisted_2$j),
19063
19063
  _ctx.iconStart ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$P), {
19064
19064
  key: 0,
@@ -19153,7 +19153,7 @@ const _hoisted_3$d = {
19153
19153
  class: "time-wrap"
19154
19154
  };
19155
19155
  const _hoisted_4$9 = ["id", "name", "value"];
19156
- const _hoisted_5$8 = ["for"];
19156
+ const _hoisted_5$9 = ["for"];
19157
19157
  const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
19158
19158
  __name: "DatePicker",
19159
19159
  props: {
@@ -19216,7 +19216,7 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
19216
19216
  ]),
19217
19217
  vue.createElementVNode("label", {
19218
19218
  for: `${hr2}_${_ctx.id}`
19219
- }, vue.toDisplayString(hr2), 9, _hoisted_5$8)
19219
+ }, vue.toDisplayString(hr2), 9, _hoisted_5$9)
19220
19220
  ], 64);
19221
19221
  }), 128))
19222
19222
  ])) : vue.createCommentVNode("", true)
@@ -19228,7 +19228,7 @@ const _hoisted_1$l = { class: "bagel-input" };
19228
19228
  const _hoisted_2$g = { class: "pb-025" };
19229
19229
  const _hoisted_3$c = { class: "flex gap-05 flex-wrap" };
19230
19230
  const _hoisted_4$8 = ["id", "name", "value", "checked"];
19231
- const _hoisted_5$7 = ["for"];
19231
+ const _hoisted_5$8 = ["for"];
19232
19232
  const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
19233
19233
  __name: "RadioPillsInput",
19234
19234
  props: {
@@ -19288,7 +19288,7 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
19288
19288
  }, null, 40, _hoisted_4$8),
19289
19289
  vue.createElementVNode("label", {
19290
19290
  for: `${_ctx.id}-${getValue(option2)}`
19291
- }, vue.toDisplayString(getLabel(option2)), 9, _hoisted_5$7)
19291
+ }, vue.toDisplayString(getLabel(option2)), 9, _hoisted_5$8)
19292
19292
  ]);
19293
19293
  }), 128))
19294
19294
  ])
@@ -19297,7 +19297,7 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
19297
19297
  }
19298
19298
  });
19299
19299
  const RadioPillsInput = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-d86ce838"]]);
19300
- const _withScopeId$2 = (n2) => (vue.pushScopeId("data-v-e74abda1"), n2 = n2(), vue.popScopeId(), n2);
19300
+ const _withScopeId$2 = (n2) => (vue.pushScopeId("data-v-21c953c3"), n2 = n2(), vue.popScopeId(), n2);
19301
19301
  const _hoisted_1$k = { class: "bagel-input" };
19302
19302
  const _hoisted_2$f = {
19303
19303
  key: 0,
@@ -19308,7 +19308,7 @@ const _hoisted_4$7 = {
19308
19308
  key: 1,
19309
19309
  class: "multi-image-item previewName"
19310
19310
  };
19311
- const _hoisted_5$6 = ["src"];
19311
+ const _hoisted_5$7 = ["src"];
19312
19312
  const _hoisted_6$4 = { class: "no-margin" };
19313
19313
  const _hoisted_7$1 = {
19314
19314
  key: 0,
@@ -19485,7 +19485,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
19485
19485
  class: "preview",
19486
19486
  src: file.url,
19487
19487
  alt: ""
19488
- }, null, 8, _hoisted_5$6),
19488
+ }, null, 8, _hoisted_5$7),
19489
19489
  vue.createElementVNode("p", _hoisted_6$4, vue.toDisplayString(file.name), 1),
19490
19490
  vue.createVNode(vue.unref(Btn), {
19491
19491
  thin: "",
@@ -19544,7 +19544,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
19544
19544
  };
19545
19545
  }
19546
19546
  });
19547
- const $el = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-e74abda1"]]);
19547
+ const $el = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-21c953c3"]]);
19548
19548
  const _withScopeId$1 = (n2) => (vue.pushScopeId("data-v-06b95183"), n2 = n2(), vue.popScopeId(), n2);
19549
19549
  const _hoisted_1$j = ["title"];
19550
19550
  const _hoisted_2$e = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ vue.createElementVNode("span", { class: "slider round" }, null, -1));
@@ -19552,7 +19552,7 @@ const _hoisted_3$a = [
19552
19552
  _hoisted_2$e
19553
19553
  ];
19554
19554
  const _hoisted_4$6 = ["id", "required"];
19555
- const _hoisted_5$5 = ["for"];
19555
+ const _hoisted_5$6 = ["for"];
19556
19556
  const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
19557
19557
  __name: "ToggleInput",
19558
19558
  props: /* @__PURE__ */ vue.mergeModels({
@@ -19594,7 +19594,7 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
19594
19594
  vue.renderSlot(_ctx.$slots, "label", {}, () => [
19595
19595
  vue.createTextVNode(vue.toDisplayString(_ctx.label), 1)
19596
19596
  ], true)
19597
- ], 8, _hoisted_5$5)
19597
+ ], 8, _hoisted_5$6)
19598
19598
  ], 10, _hoisted_1$j);
19599
19599
  };
19600
19600
  }
@@ -45727,7 +45727,7 @@ const _hoisted_1$h = ["aria-expanded"];
45727
45727
  const _hoisted_2$c = { class: "p-075 tel-countryp-dropdown" };
45728
45728
  const _hoisted_3$9 = ["aria-selected", "onClick", "onMousemove"];
45729
45729
  const _hoisted_4$5 = { class: "tel-country" };
45730
- const _hoisted_5$4 = { key: 1 };
45730
+ const _hoisted_5$5 = { key: 1 };
45731
45731
  const _hoisted_6$3 = ["id", "required", "placeholder", "disabled", "autocomplete", "pattern", "minlength", "maxlength", "name", "readonly", "tabindex", "aria-describedby"];
45732
45732
  const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
45733
45733
  __name: "TelInput",
@@ -46019,7 +46019,7 @@ const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
46019
46019
  country: pb.iso2
46020
46020
  }, null, 8, ["country"])) : vue.createCommentVNode("", true),
46021
46021
  vue.createElementVNode("p", _hoisted_4$5, vue.toDisplayString(pb.name), 1),
46022
- computedDropDownOptions.value.showDialCodeInList ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_5$4, " +" + vue.toDisplayString(pb.dialCode), 1)) : vue.createCommentVNode("", true)
46022
+ computedDropDownOptions.value.showDialCodeInList ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_5$5, " +" + vue.toDisplayString(pb.dialCode), 1)) : vue.createCommentVNode("", true)
46023
46023
  ], 40, _hoisted_3$9);
46024
46024
  }), 128))
46025
46025
  ], 2)
@@ -46713,7 +46713,8 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
46713
46713
  }
46714
46714
  }
46715
46715
  const defaultOptions2 = vue.ref({
46716
- penColor: "rgb(0, 0, 0)"
46716
+ penColor: "rgb(0, 0, 0)",
46717
+ backgroundColor: "rgb(255, 255, 255)"
46717
46718
  });
46718
46719
  const signatureOptions = vue.computed(() => ({ ...defaultOptions2.value, ...props2.sigOption }));
46719
46720
  vue.watch(
@@ -47222,13 +47223,14 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
47222
47223
  }
47223
47224
  });
47224
47225
  const index = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-e3cd444d"]]);
47225
- const _hoisted_1$d = ["name", "value"];
47226
- const _hoisted_2$a = ["src", "alt"];
47227
- const _hoisted_3$8 = {
47226
+ const _hoisted_1$d = ["for"];
47227
+ const _hoisted_2$a = ["id", "name", "value"];
47228
+ const _hoisted_3$8 = ["src", "alt"];
47229
+ const _hoisted_4$4 = {
47228
47230
  key: 0,
47229
47231
  class: "m-0"
47230
47232
  };
47231
- const _hoisted_4$4 = {
47233
+ const _hoisted_5$4 = {
47232
47234
  key: 1,
47233
47235
  class: "txt-gray txt-12 m-0"
47234
47236
  };
@@ -47250,15 +47252,17 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
47250
47252
  (vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.options, (opt, index2) => {
47251
47253
  return vue.openBlock(), vue.createElementBlock("label", {
47252
47254
  key: index2,
47253
- class: "border round p-1 flex bg-gray-light mb-05 gap-075 active-list-item hover"
47255
+ class: "border round p-1 flex bg-gray-light mb-05 gap-075 active-list-item hover",
47256
+ for: opt.id
47254
47257
  }, [
47255
47258
  vue.withDirectives(vue.createElementVNode("input", {
47259
+ id: opt.id,
47256
47260
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => selectedOption.value = $event),
47257
47261
  class: "radio-input-list",
47258
47262
  type: "radio",
47259
47263
  name: _ctx.groupName,
47260
47264
  value: opt.value
47261
- }, null, 8, _hoisted_1$d), [
47265
+ }, null, 8, _hoisted_2$a), [
47262
47266
  [vue.vModelRadio, selectedOption.value]
47263
47267
  ]),
47264
47268
  opt.imgSrc ? (vue.openBlock(), vue.createElementBlock("img", {
@@ -47267,11 +47271,12 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
47267
47271
  width: "60",
47268
47272
  src: opt.imgSrc,
47269
47273
  alt: opt.imgAlt
47270
- }, null, 8, _hoisted_2$a)) : vue.createCommentVNode("", true),
47274
+ }, null, 8, _hoisted_3$8)) : vue.createCommentVNode("", true),
47271
47275
  vue.createElementVNode("div", null, [
47272
- opt.label ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_3$8, vue.toDisplayString(opt.label), 1)) : vue.createCommentVNode("", true),
47273
- opt.subLabel ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_4$4, vue.toDisplayString(opt.subLabel), 1)) : vue.createCommentVNode("", true)
47276
+ opt.label ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_4$4, vue.toDisplayString(opt.label), 1)) : vue.createCommentVNode("", true),
47277
+ opt.subLabel ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_5$4, vue.toDisplayString(opt.subLabel), 1)) : vue.createCommentVNode("", true)
47274
47278
  ]),
47279
+ vue.renderSlot(_ctx.$slots, "radioItem", vue.mergeProps({ ref_for: true }, opt), void 0, true),
47275
47280
  _ctx.deletable ? (vue.openBlock(), vue.createBlock(vue.unref(Btn), {
47276
47281
  key: 1,
47277
47282
  class: "ms-auto",
@@ -47280,13 +47285,13 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
47280
47285
  icon: "delete",
47281
47286
  onClick: ($event) => _ctx.$emit("delete", opt)
47282
47287
  }, null, 8, ["onClick"])) : vue.createCommentVNode("", true)
47283
- ]);
47288
+ ], 8, _hoisted_1$d);
47284
47289
  }), 128))
47285
47290
  ]);
47286
47291
  };
47287
47292
  }
47288
47293
  });
47289
- const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-a921574e"]]);
47294
+ const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-1cf4a0b0"]]);
47290
47295
  function _isPlaceholder(a2) {
47291
47296
  return a2 != null && typeof a2 === "object" && a2["@@functional/placeholder"] === true;
47292
47297
  }