@stonecrop/aform 0.31.0 → 0.32.0

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 (92) hide show
  1. package/dist/aform.js +3024 -2256
  2. package/dist/aform.js.map +1 -1
  3. package/dist/assets/index.css +1170 -1
  4. package/dist/src/components/AForm.vue.d.ts +20 -0
  5. package/dist/src/components/AForm.vue.d.ts.map +1 -0
  6. package/dist/src/components/AFormLoading.vue.d.ts +14 -0
  7. package/dist/src/components/AFormLoading.vue.d.ts.map +1 -0
  8. package/dist/src/components/base/CollapseButton.vue.d.ts +7 -0
  9. package/dist/src/components/base/CollapseButton.vue.d.ts.map +1 -0
  10. package/dist/src/components/base/ExpandButton.vue.d.ts +7 -0
  11. package/dist/src/components/base/ExpandButton.vue.d.ts.map +1 -0
  12. package/dist/src/components/form/ABadge.vue.d.ts +14 -0
  13. package/dist/src/components/form/ABadge.vue.d.ts.map +1 -0
  14. package/dist/src/components/form/ACheckbox.vue.d.ts +15 -0
  15. package/dist/src/components/form/ACheckbox.vue.d.ts.map +1 -0
  16. package/dist/src/components/form/ACurrencyInput.vue.d.ts +20 -0
  17. package/dist/src/components/form/ACurrencyInput.vue.d.ts.map +1 -0
  18. package/dist/src/components/form/ADate.vue.d.ts +14 -0
  19. package/dist/src/components/form/ADate.vue.d.ts.map +1 -0
  20. package/dist/src/components/form/ADatePicker.vue.d.ts +28 -0
  21. package/dist/src/components/form/ADatePicker.vue.d.ts.map +1 -0
  22. package/dist/src/components/form/ADateRange.vue.d.ts +18 -0
  23. package/dist/src/components/form/ADateRange.vue.d.ts.map +1 -0
  24. package/dist/src/components/form/ADateSelection.vue.d.ts +52 -0
  25. package/dist/src/components/form/ADateSelection.vue.d.ts.map +1 -0
  26. package/dist/src/components/form/ADateTime.vue.d.ts +17 -0
  27. package/dist/src/components/form/ADateTime.vue.d.ts.map +1 -0
  28. package/dist/src/components/form/ADateTimeInput.vue.d.ts +30 -0
  29. package/dist/src/components/form/ADateTimeInput.vue.d.ts.map +1 -0
  30. package/dist/src/components/form/ADropdown.vue.d.ts +20 -0
  31. package/dist/src/components/form/ADropdown.vue.d.ts.map +1 -0
  32. package/dist/src/components/form/ADuration.vue.d.ts +18 -0
  33. package/dist/src/components/form/ADuration.vue.d.ts.map +1 -0
  34. package/dist/src/components/form/AFieldset.vue.d.ts +28 -0
  35. package/dist/src/components/form/AFieldset.vue.d.ts.map +1 -0
  36. package/dist/src/components/form/AFileAttach.vue.d.ts +5 -0
  37. package/dist/src/components/form/AFileAttach.vue.d.ts.map +1 -0
  38. package/dist/src/components/form/AFormLink.vue.d.ts +40 -0
  39. package/dist/src/components/form/AFormLink.vue.d.ts.map +1 -0
  40. package/dist/src/components/form/ANumericInput.vue.d.ts +14 -0
  41. package/dist/src/components/form/ANumericInput.vue.d.ts.map +1 -0
  42. package/dist/src/components/form/AQuantityInput.vue.d.ts +20 -0
  43. package/dist/src/components/form/AQuantityInput.vue.d.ts.map +1 -0
  44. package/dist/src/components/form/ASegmentedControl.vue.d.ts +23 -0
  45. package/dist/src/components/form/ASegmentedControl.vue.d.ts.map +1 -0
  46. package/dist/src/components/form/ATextInput.vue.d.ts +14 -0
  47. package/dist/src/components/form/ATextInput.vue.d.ts.map +1 -0
  48. package/dist/src/components/form/ATextboxInput.vue.d.ts +21 -0
  49. package/dist/src/components/form/ATextboxInput.vue.d.ts.map +1 -0
  50. package/dist/src/components/utilities/Login.vue.d.ts +14 -0
  51. package/dist/src/components/utilities/Login.vue.d.ts.map +1 -0
  52. package/dist/{tsdoc-metadata.json → src/tsdoc-metadata.json} +1 -1
  53. package/package.json +35 -30
  54. package/dist/aform.d.ts +0 -441
  55. package/dist/aform.tsbuildinfo +0 -1
  56. package/dist/src/directives/mask.js +0 -107
  57. package/dist/src/index.js +0 -58
  58. package/dist/src/types/index.js +0 -0
  59. package/dist/src/utils/badge.js +0 -71
  60. package/dist/src/utils/columns.js +0 -33
  61. package/dist/src/utils/deserialize.js +0 -20
  62. package/src/components/AForm.vue +0 -314
  63. package/src/components/AFormLoading.vue +0 -76
  64. package/src/components/base/CollapseButton.vue +0 -36
  65. package/src/components/base/ExpandButton.vue +0 -34
  66. package/src/components/form/ABadge.vue +0 -135
  67. package/src/components/form/ACheckbox.vue +0 -62
  68. package/src/components/form/ACurrencyInput.vue +0 -357
  69. package/src/components/form/ADate.vue +0 -93
  70. package/src/components/form/ADatePicker.vue +0 -470
  71. package/src/components/form/ADateRange.vue +0 -133
  72. package/src/components/form/ADateSelection.vue +0 -174
  73. package/src/components/form/ADateTime.vue +0 -149
  74. package/src/components/form/ADateTimeInput.vue +0 -299
  75. package/src/components/form/ADropdown.vue +0 -222
  76. package/src/components/form/ADuration.vue +0 -124
  77. package/src/components/form/AFieldset.vue +0 -72
  78. package/src/components/form/AFileAttach.vue +0 -97
  79. package/src/components/form/AFormLink.vue +0 -368
  80. package/src/components/form/ANumericInput.vue +0 -32
  81. package/src/components/form/AQuantityInput.vue +0 -349
  82. package/src/components/form/ASegmentedControl.vue +0 -342
  83. package/src/components/form/ATextInput.vue +0 -40
  84. package/src/components/form/ATextboxInput.vue +0 -66
  85. package/src/components/utilities/Login.vue +0 -189
  86. package/src/directives/mask.ts +0 -122
  87. package/src/index.ts +0 -92
  88. package/src/shims-vue.d.ts +0 -5
  89. package/src/types/index.ts +0 -333
  90. package/src/utils/badge.ts +0 -94
  91. package/src/utils/columns.ts +0 -38
  92. package/src/utils/deserialize.ts +0 -20
@@ -0,0 +1,20 @@
1
+ import type { ResolvedField } from '../types';
2
+ import type { InteractionMode } from '@stonecrop/schema';
3
+ type __VLS_Props = {
4
+ schema: ResolvedField[];
5
+ mode?: InteractionMode;
6
+ /** Inline validation errors keyed by fieldname. Fed by the host; the form stays store-agnostic. */
7
+ errors?: Record<string, string[]>;
8
+ };
9
+ type __VLS_ModelProps = {
10
+ 'data': Record<string, any>;
11
+ };
12
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
13
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ "update:data": (value: Record<string, any>) => any;
15
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
16
+ "onUpdate:data"?: ((value: Record<string, any>) => any) | undefined;
17
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: typeof __VLS_export;
19
+ export default _default;
20
+ //# sourceMappingURL=AForm.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AForm.vue.d.ts","sourceRoot":"","sources":["../../../src/components/AForm.vue"],"names":[],"mappings":"AA+TA,OAAO,KAAK,EAAE,aAAa,EAAkC,MAAM,UAAU,CAAA;AAC7E,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAIxD,KAAK,WAAW,GAAG;IAClB,MAAM,EAAE,aAAa,EAAE,CAAA;IACvB,IAAI,CAAC,EAAE,eAAe,CAAA;IACtB,mGAAmG;IACnG,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAA;CACjC,CAAC;AAwHF,KAAK,gBAAgB,GAAG;IACxB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC3B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA6GxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,14 @@
1
+ declare var __VLS_1: {};
2
+ type __VLS_Slots = {} & {
3
+ default?: (props: typeof __VLS_1) => any;
4
+ };
5
+ declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
7
+ declare const _default: typeof __VLS_export;
8
+ export default _default;
9
+ type __VLS_WithSlots<T, S> = T & {
10
+ new (): {
11
+ $slots: S;
12
+ };
13
+ };
14
+ //# sourceMappingURL=AFormLoading.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AFormLoading.vue.d.ts","sourceRoot":"","sources":["../../../src/components/AFormLoading.vue"],"names":[],"mappings":"AA2GA,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAG/C,QAAA,MAAM,UAAU,+QACd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AACzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
@@ -0,0 +1,7 @@
1
+ type __VLS_Props = {
2
+ collapsed: boolean;
3
+ };
4
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ declare const _default: typeof __VLS_export;
6
+ export default _default;
7
+ //# sourceMappingURL=CollapseButton.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CollapseButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/base/CollapseButton.vue"],"names":[],"mappings":"AAAA,KAuCK,WAAW,GAAG;IAAE,SAAS,EAAE,OAAO,CAAA;CAAE,CAAC;AA6B1C,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,7 @@
1
+ type __VLS_Props = {
2
+ expanded: boolean;
3
+ };
4
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
5
+ declare const _default: typeof __VLS_export;
6
+ export default _default;
7
+ //# sourceMappingURL=ExpandButton.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExpandButton.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/base/ExpandButton.vue"],"names":[],"mappings":"AAAA,KAqCK,WAAW,GAAG;IAClB,QAAQ,EAAE,OAAO,CAAA;CACjB,CAAC;AA8BF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,14 @@
1
+ import type { BadgeDescriptor, BadgePresentation, BadgeVariant, FieldOptions } from '@stonecrop/schema';
2
+ type __VLS_Props = Partial<BadgeDescriptor> & {
3
+ /** Defaults to `cell-fill`: every call site fully determines this, so omitting it should
4
+ * degrade to the common case rather than rendering an unstyled badge. */
5
+ presentation?: BadgePresentation;
6
+ /** Stored field value — used with `options` when `label` is omitted. */
7
+ value?: unknown;
8
+ options?: FieldOptions;
9
+ };
10
+ export type { BadgePresentation, BadgeVariant };
11
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ //# sourceMappingURL=ABadge.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ABadge.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ABadge.vue"],"names":[],"mappings":"AAAA,OA0IO,KAAK,EAAE,eAAe,EAAE,iBAAiB,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAA;AAIvG,KAAK,WAAW,GAAG,OAAO,CAAC,eAAe,CAAC,GAAG;IAC5C;6EACyE;IACzE,YAAY,CAAC,EAAE,iBAAiB,CAAA;IAChC,wEAAwE;IACxE,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,OAAO,CAAC,EAAE,YAAY,CAAA;CACtB,CAAC;AAwCH,YAAY,EAAE,iBAAiB,EAAE,YAAY,EAAE,CAAA;AAwD/C,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,15 @@
1
+ import { InputHTMLAttributes } from 'vue';
2
+ import { ComponentProps } from '../../types';
3
+ type __VLS_Props = ComponentProps;
4
+ type __VLS_ModelProps = {
5
+ modelValue?: InputHTMLAttributes['checked'];
6
+ };
7
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
8
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ "update:modelValue": (value: any[] | (boolean | "true" | "false") | Set<any> | undefined) => any;
10
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
11
+ "onUpdate:modelValue"?: ((value: any[] | (boolean | "true" | "false") | Set<any> | undefined) => any) | undefined;
12
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const _default: typeof __VLS_export;
14
+ export default _default;
15
+ //# sourceMappingURL=ACheckbox.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ACheckbox.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ACheckbox.vue"],"names":[],"mappings":"AAAA,OAiEO,EAAY,mBAAmB,EAAE,MAAM,KAAK,CAAA;AAEnD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAE5C,KAAK,WAAW,GAAG,cAAc,CAAC;AAUlC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,mBAAmB,CAAC,SAAS,CAAC,CAAC;CAC3C,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA0ExD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,20 @@
1
+ import type { ComponentProps, CurrencyOptions, CurrencyValue } from '../../types';
2
+ type __VLS_Props = ComponentProps & {
3
+ options?: CurrencyOptions;
4
+ currencyLabel?: string;
5
+ baseCurrencyLabel?: string;
6
+ baseAmountLabel?: string;
7
+ exchangeRateLabel?: string;
8
+ };
9
+ type __VLS_ModelProps = {
10
+ modelValue?: CurrencyValue;
11
+ };
12
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
13
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ "update:modelValue": (value: CurrencyValue) => any;
15
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
16
+ "onUpdate:modelValue"?: ((value: CurrencyValue) => any) | undefined;
17
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: typeof __VLS_export;
19
+ export default _default;
20
+ //# sourceMappingURL=ACurrencyInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ACurrencyInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ACurrencyInput.vue"],"names":[],"mappings":"AA0WA,OAAO,KAAK,EAAkB,cAAc,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAGjG,KAAK,WAAW,GAAG,cAAc,GAAG;IAClC,OAAO,CAAC,EAAE,eAAe,CAAA;IACzB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,iBAAiB,CAAC,EAAE,MAAM,CAAA;CAC1B,CAAC;AA0LH,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,aAAa,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA8MxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,14 @@
1
+ import type { ComponentProps } from '../../types';
2
+ type __VLS_Props = ComponentProps;
3
+ type __VLS_ModelProps = {
4
+ modelValue?: string | Date;
5
+ };
6
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ "update:modelValue": (value: string | Date | undefined) => any;
9
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
+ "onUpdate:modelValue"?: ((value: string | Date | undefined) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ //# sourceMappingURL=ADate.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ADate.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADate.vue"],"names":[],"mappings":"AAoGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAEjD,KAAK,WAAW,GAAG,cAAc,CAAC;AAkDlC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAsGxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,28 @@
1
+ import type { ComponentProps } from '../../types';
2
+ type __VLS_Props = ComponentProps;
3
+ type __VLS_ModelProps = {
4
+ modelValue?: number | Date;
5
+ };
6
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
8
+ currentMonth: import("vue").Ref<number, number>;
9
+ currentYear: import("vue").Ref<number, number>;
10
+ selectedDate: import("vue").Ref<Date, Date>;
11
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
+ "update:modelValue": (value: number | Date) => any;
13
+ "get-date": (args_0: {
14
+ start: Date | null;
15
+ end: Date | null;
16
+ selected: Date;
17
+ }) => any;
18
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
19
+ "onUpdate:modelValue"?: ((value: number | Date) => any) | undefined;
20
+ "onGet-date"?: ((args_0: {
21
+ start: Date | null;
22
+ end: Date | null;
23
+ selected: Date;
24
+ }) => any) | undefined;
25
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
26
+ declare const _default: typeof __VLS_export;
27
+ export default _default;
28
+ //# sourceMappingURL=ADatePicker.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ADatePicker.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADatePicker.vue"],"names":[],"mappings":"AA6dA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAKjD,KAAK,WAAW,GAAG,cAAc,CAAC;AA+RlC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAyPxD,QAAA,MAAM,YAAY;;;;;;;eApgBK,IAAI,GAAG,IAAI;aAAO,IAAI,GAAG,IAAI;kBAAY,IAAI;;;;;eAA7C,IAAI,GAAG,IAAI;aAAO,IAAI,GAAG,IAAI;kBAAY,IAAI;;kFAwgBlE,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,18 @@
1
+ import type { ComponentProps } from '../../types';
2
+ type __VLS_Props = ComponentProps;
3
+ export interface DateRangeValue {
4
+ start_date: string | null;
5
+ end_date: string | null;
6
+ }
7
+ type __VLS_ModelProps = {
8
+ modelValue?: DateRangeValue;
9
+ };
10
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
11
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
+ "update:modelValue": (value: DateRangeValue) => any;
13
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
+ "onUpdate:modelValue"?: ((value: DateRangeValue) => any) | undefined;
15
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
18
+ //# sourceMappingURL=ADateRange.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ADateRange.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADateRange.vue"],"names":[],"mappings":"AA2IA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAIjD,KAAK,WAAW,GAAG,cAAc,CAAC;AAOlC,MAAM,WAAW,cAAc;IAC9B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAA;IACzB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAA;CACvB;AA+ED,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,cAAc,CAAC;CAC3B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAqGxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,52 @@
1
+ type __VLS_Props = {
2
+ showDate?: boolean;
3
+ showTime?: boolean;
4
+ selectRange?: boolean;
5
+ showEndTime?: boolean;
6
+ allowMilitaryTime?: boolean;
7
+ defaultHours?: number;
8
+ defaultMinutes?: number;
9
+ defaultSeconds?: number;
10
+ defaultMeridiem?: string;
11
+ useSeconds?: boolean;
12
+ };
13
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ "get-date": (args_0: {
15
+ selected: Date;
16
+ start?: Date | null;
17
+ end?: Date | null;
18
+ }) => any;
19
+ "get-time": (args_0: {
20
+ hours: number;
21
+ minutes: number;
22
+ seconds: number;
23
+ meridiem: string;
24
+ source?: "init" | "user";
25
+ }) => any;
26
+ "get-range": (args_0: {
27
+ start: Date;
28
+ end: Date;
29
+ source?: "init" | "user";
30
+ }) => any;
31
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
32
+ "onGet-date"?: ((args_0: {
33
+ selected: Date;
34
+ start?: Date | null;
35
+ end?: Date | null;
36
+ }) => any) | undefined;
37
+ "onGet-time"?: ((args_0: {
38
+ hours: number;
39
+ minutes: number;
40
+ seconds: number;
41
+ meridiem: string;
42
+ source?: "init" | "user";
43
+ }) => any) | undefined;
44
+ "onGet-range"?: ((args_0: {
45
+ start: Date;
46
+ end: Date;
47
+ source?: "init" | "user";
48
+ }) => any) | undefined;
49
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
50
+ declare const _default: typeof __VLS_export;
51
+ export default _default;
52
+ //# sourceMappingURL=ADateSelection.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ADateSelection.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADateSelection.vue"],"names":[],"mappings":"AAqLA,KAAK,WAAW,GAAG;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAC;AAgOF,QAAA,MAAM,YAAY;;kBA5MQ,IAAI;gBAAU,IAAI,GAAG,IAAI;cAAQ,IAAI,GAAG,IAAI;;;eAC/C,MAAM;iBAAW,MAAM;iBAAW,MAAM;kBAAY,MAAM;iBAAW,MAAM,GAAG,MAAM;;;eACnF,IAAI;aAAO,IAAI;iBAAW,MAAM,GAAG,MAAM;;;;kBAFvC,IAAI;gBAAU,IAAI,GAAG,IAAI;cAAQ,IAAI,GAAG,IAAI;;;eAC/C,MAAM;iBAAW,MAAM;iBAAW,MAAM;kBAAY,MAAM;iBAAW,MAAM,GAAG,MAAM;;;eACnF,IAAI;aAAO,IAAI;iBAAW,MAAM,GAAG,MAAM;;kFA6M/D,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,17 @@
1
+ import type { ComponentProps } from '../../types';
2
+ type __VLS_Props = ComponentProps & {
3
+ allowMilitaryTime?: boolean;
4
+ useSeconds?: boolean;
5
+ };
6
+ type __VLS_ModelProps = {
7
+ modelValue?: string | Date;
8
+ };
9
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
10
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
+ "update:modelValue": (value: string | Date | undefined) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
+ "onUpdate:modelValue"?: ((value: string | Date | undefined) => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
15
+ declare const _default: typeof __VLS_export;
16
+ export default _default;
17
+ //# sourceMappingURL=ADateTime.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ADateTime.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADateTime.vue"],"names":[],"mappings":"AA2JA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAEjD,KAAK,WAAW,GAAG,cAAc,GAAG;IAClC,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAC;AA6FH,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA2HxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,30 @@
1
+ type __VLS_Props = {
2
+ allowMilitaryTime?: boolean;
3
+ defaultHours?: number;
4
+ defaultMinutes?: number;
5
+ defaultSeconds?: number;
6
+ defaultMeridiem?: string;
7
+ useSeconds?: boolean;
8
+ };
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ "get-time": (args_0: {
11
+ hours: number;
12
+ minutes: number;
13
+ seconds: number;
14
+ meridiem: string;
15
+ militaryTime: number;
16
+ source: "init" | "user";
17
+ }) => any;
18
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
19
+ "onGet-time"?: ((args_0: {
20
+ hours: number;
21
+ minutes: number;
22
+ seconds: number;
23
+ meridiem: string;
24
+ militaryTime: number;
25
+ source: "init" | "user";
26
+ }) => any) | undefined;
27
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
28
+ declare const _default: typeof __VLS_export;
29
+ export default _default;
30
+ //# sourceMappingURL=ADateTimeInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ADateTimeInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADateTimeInput.vue"],"names":[],"mappings":"AAgTA,KAAK,WAAW,GAAG;IAClB,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAC;AAkUF,QAAA,MAAM,YAAY;;eAhTR,MAAM;iBACJ,MAAM;iBACN,MAAM;kBACL,MAAM;sBACF,MAAM;gBACZ,MAAM,GAAG,MAAM;;;;eALhB,MAAM;iBACJ,MAAM;iBACN,MAAM;kBACL,MAAM;sBACF,MAAM;gBACZ,MAAM,GAAG,MAAM;;kFA8SxB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,20 @@
1
+ import type { FieldOptions } from '@stonecrop/schema';
2
+ import type { ComponentProps } from '../../types';
3
+ type __VLS_Props = ComponentProps & {
4
+ options?: FieldOptions;
5
+ format?: string;
6
+ isAsync?: boolean;
7
+ filterFunction?: (search: string) => string[] | Promise<string[]>;
8
+ };
9
+ type __VLS_ModelProps = {
10
+ modelValue?: string;
11
+ };
12
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
13
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ "update:modelValue": (value: string | undefined) => any;
15
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
16
+ "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
17
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: typeof __VLS_export;
19
+ export default _default;
20
+ //# sourceMappingURL=ADropdown.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ADropdown.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADropdown.vue"],"names":[],"mappings":"AAAA,OAiOO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAA;AAKrD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAKjD,KAAK,WAAW,GAAG,cAAc,GAAG;IAClC,OAAO,CAAC,EAAE,YAAY,CAAA;IACtB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,cAAc,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,MAAM,EAAE,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAAA;CACjE,CAAC;AAmIH,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA2IxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,18 @@
1
+ type __VLS_Props = {
2
+ label?: string;
3
+ mode?: string;
4
+ allowMilitaryTime?: boolean;
5
+ useSeconds?: boolean;
6
+ };
7
+ type __VLS_ModelProps = {
8
+ modelValue?: number;
9
+ };
10
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
11
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
+ "update:modelValue": (value: number | undefined) => any;
13
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
+ "onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined;
15
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
18
+ //# sourceMappingURL=ADuration.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ADuration.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ADuration.vue"],"names":[],"mappings":"AAkIA,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,UAAU,CAAC,EAAE,OAAO,CAAA;CACpB,CAAC;AAwDF,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA6GxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,28 @@
1
+ import type { InteractionMode } from '@stonecrop/schema';
2
+ import type { ResolvedField } from '../../types';
3
+ type __VLS_Props = {
4
+ schema: ResolvedField[];
5
+ label?: string;
6
+ collapsible?: boolean;
7
+ data?: Record<string, any>;
8
+ /** Rendering mode forwarded to the inner AForm */
9
+ mode?: InteractionMode;
10
+ };
11
+ declare var __VLS_6: {
12
+ collapsed: boolean;
13
+ };
14
+ type __VLS_Slots = {} & {
15
+ default?: (props: typeof __VLS_6) => any;
16
+ };
17
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
18
+ collapsed: import("vue").Ref<boolean, boolean>;
19
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
21
+ declare const _default: typeof __VLS_export;
22
+ export default _default;
23
+ type __VLS_WithSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
28
+ //# sourceMappingURL=AFieldset.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AFieldset.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/AFieldset.vue"],"names":[],"mappings":"AAAA,OA2EO,KAAK,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAKxD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAEhD,KAAK,WAAW,GAAG;IAClB,MAAM,EAAE,aAAa,EAAE,CAAA;IACvB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAC1B,kDAAkD;IAClD,IAAI,CAAC,EAAE,eAAe,CAAA;CACtB,CAAC;AAkFF,QAAA,IAAI,OAAO;;CAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK/C,QAAA,MAAM,UAAU;;oPAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AACzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
@@ -0,0 +1,5 @@
1
+ import type { ComponentProps } from '../../types';
2
+ declare const __VLS_export: import("vue").DefineComponent<ComponentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
3
+ declare const _default: typeof __VLS_export;
4
+ export default _default;
5
+ //# sourceMappingURL=AFileAttach.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AFileAttach.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/AFileAttach.vue"],"names":[],"mappings":"AAuGA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AA4HjD,QAAA,MAAM,YAAY,wSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,40 @@
1
+ import type { AFormLinkModelValue, AFormLinkValue, ComponentProps } from '../../types';
2
+ type __VLS_Props = ComponentProps & {
3
+ doctype?: string;
4
+ formatter?: (value: AFormLinkValue) => string;
5
+ icon?: 'arrow-right' | 'chevron-right';
6
+ disabled?: boolean;
7
+ filterFunction?: string | ((search: string) => AFormLinkValue[] | Promise<AFormLinkValue[]>);
8
+ isAsync?: boolean;
9
+ embedded?: boolean;
10
+ placeholder?: string;
11
+ ariaLabel?: string;
12
+ };
13
+ type __VLS_ModelProps = {
14
+ modelValue?: AFormLinkModelValue;
15
+ };
16
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
17
+ declare var __VLS_1: {
18
+ option: {
19
+ [x: string]: any;
20
+ id: string | number;
21
+ displayText?: string | undefined;
22
+ };
23
+ };
24
+ type __VLS_Slots = {} & {
25
+ option?: (props: typeof __VLS_1) => any;
26
+ };
27
+ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
28
+ "update:modelValue": (value: AFormLinkModelValue) => any;
29
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
30
+ "onUpdate:modelValue"?: ((value: AFormLinkModelValue) => any) | undefined;
31
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
32
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
33
+ declare const _default: typeof __VLS_export;
34
+ export default _default;
35
+ type __VLS_WithSlots<T, S> = T & {
36
+ new (): {
37
+ $slots: S;
38
+ };
39
+ };
40
+ //# sourceMappingURL=AFormLink.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AFormLink.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/AFormLink.vue"],"names":[],"mappings":"AAsXA,OAAO,KAAK,EAAE,mBAAmB,EAAsB,cAAc,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAG1G,KAAK,WAAW,GAAG,cAAc,GAAG;IAClC,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,cAAc,KAAK,MAAM,CAAA;IAC7C,IAAI,CAAC,EAAE,aAAa,GAAG,eAAe,CAAA;IACtC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,cAAc,CAAC,EAAE,MAAM,GAAG,CAAC,CAAC,MAAM,EAAE,MAAM,KAAK,cAAc,EAAE,GAAG,OAAO,CAAC,cAAc,EAAE,CAAC,CAAC,CAAA;IAC5F,OAAO,CAAC,EAAE,OAAO,CAAA;IAIjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;IAIpB,SAAS,CAAC,EAAE,MAAM,CAAA;CAClB,CAAC;AAqNH,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,mBAAmB,CAAC;CAChC,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAmKxD,QAAA,IAAI,OAAO;;;;;;CAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAK9C,QAAA,MAAM,UAAU;;;;kFAGd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AACzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
@@ -0,0 +1,14 @@
1
+ import { ComponentProps } from '../../types';
2
+ type __VLS_Props = ComponentProps;
3
+ type __VLS_ModelProps = {
4
+ modelValue?: number;
5
+ };
6
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ "update:modelValue": (value: number | undefined) => any;
9
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
+ "onUpdate:modelValue"?: ((value: number | undefined) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ //# sourceMappingURL=ANumericInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ANumericInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ANumericInput.vue"],"names":[],"mappings":"AAqCA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAE5C,KAAK,WAAW,GAAG,cAAc,CAAC;AAUlC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AA8DxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,20 @@
1
+ import type { ComponentProps, QuantityOptions, QuantityValue } from '../../types';
2
+ type __VLS_Props = ComponentProps & {
3
+ options?: QuantityOptions;
4
+ uomLabel?: string;
5
+ stockUomLabel?: string;
6
+ stockQtyLabel?: string;
7
+ conversionFactorLabel?: string;
8
+ };
9
+ type __VLS_ModelProps = {
10
+ modelValue?: QuantityValue;
11
+ };
12
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
13
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
+ "update:modelValue": (value: QuantityValue) => any;
15
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
16
+ "onUpdate:modelValue"?: ((value: QuantityValue) => any) | undefined;
17
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: typeof __VLS_export;
19
+ export default _default;
20
+ //# sourceMappingURL=AQuantityInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AQuantityInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/AQuantityInput.vue"],"names":[],"mappings":"AAmWA,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAEjF,KAAK,WAAW,GAAG,cAAc,GAAG;IAClC,OAAO,CAAC,EAAE,eAAe,CAAA;IACzB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,qBAAqB,CAAC,EAAE,MAAM,CAAA;CAC9B,CAAC;AAgJH,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,aAAa,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAqPxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,23 @@
1
+ import type { FieldOptions } from '@stonecrop/schema';
2
+ import type { ComponentProps } from '../../types';
3
+ type __VLS_Props = ComponentProps & {
4
+ options?: FieldOptions;
5
+ size?: 'xs' | 'sm';
6
+ equal?: boolean;
7
+ hideLabel?: boolean;
8
+ ariaLabel?: string;
9
+ busy?: boolean;
10
+ multiple?: boolean;
11
+ };
12
+ type __VLS_ModelProps = {
13
+ modelValue?: string | string[];
14
+ };
15
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
16
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
17
+ "update:modelValue": (value: string | string[]) => any;
18
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
19
+ "onUpdate:modelValue"?: ((value: string | string[]) => any) | undefined;
20
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const _default: typeof __VLS_export;
22
+ export default _default;
23
+ //# sourceMappingURL=ASegmentedControl.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ASegmentedControl.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ASegmentedControl.vue"],"names":[],"mappings":"AAAA,OAyVO,KAAK,EAAgB,YAAY,EAAE,MAAM,mBAAmB,CAAA;AAInE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAGjD,KAAK,WAAW,GAAG,cAAc,GAAG;IAClC,OAAO,CAAC,EAAE,YAAY,CAAA;IACtB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAA;IAClB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;CAClB,CAAC;AAiGH,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC9B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAmMxD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,14 @@
1
+ import { ComponentProps } from '../../types';
2
+ type __VLS_Props = ComponentProps;
3
+ type __VLS_ModelProps = {
4
+ modelValue?: number | string;
5
+ };
6
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
7
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ "update:modelValue": (value: string | number | undefined) => any;
9
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
+ "onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ //# sourceMappingURL=ATextInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ATextInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ATextInput.vue"],"names":[],"mappings":"AA8CA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAE5C,KAAK,WAAW,GAAG,cAAc,CAAC;AAgBlC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC5B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAiExD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,21 @@
1
+ import { ComponentProps } from '../../types';
2
+ type __VLS_Props = ComponentProps & {
3
+ /** Placeholder shown when the field is empty */
4
+ placeholder?: string;
5
+ /** Visible number of text lines (maps to the textarea `rows` attribute) */
6
+ rows?: number;
7
+ /** Maximum number of characters the field will accept */
8
+ maxlength?: number;
9
+ };
10
+ type __VLS_ModelProps = {
11
+ modelValue?: string | null;
12
+ };
13
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
14
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ "update:modelValue": (value: string | null | undefined) => any;
16
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
+ "onUpdate:modelValue"?: ((value: string | null | undefined) => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const _default: typeof __VLS_export;
20
+ export default _default;
21
+ //# sourceMappingURL=ATextboxInput.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ATextboxInput.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/ATextboxInput.vue"],"names":[],"mappings":"AAuEA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAE5C,KAAK,WAAW,GAAG,cAAc,GAAG;IAClC,gDAAgD;IAChD,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,2EAA2E;IAC3E,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,yDAAyD;IACzD,SAAS,CAAC,EAAE,MAAM,CAAA;CAClB,CAAC;AAsBH,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B,CAAC;AAKF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAqExD,QAAA,MAAM,YAAY;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
@@ -0,0 +1,14 @@
1
+ type __VLS_Props = {
2
+ headerTitle?: string;
3
+ headerSubtitle?: string;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ loginFailed: (...args: any[]) => void;
7
+ loginSuccess: (...args: any[]) => void;
8
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ onLoginFailed?: ((...args: any[]) => any) | undefined;
10
+ onLoginSuccess?: ((...args: any[]) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
14
+ //# sourceMappingURL=Login.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Login.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/utilities/Login.vue"],"names":[],"mappings":"AAkMA,KAAK,WAAW,GAAG;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,cAAc,CAAC,EAAE,MAAM,CAAA;CACvB,CAAC;AAgKF,QAAA,MAAM,YAAY;;;;;;kFAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}