@mobileaction/action-kit 1.58.21 → 1.59.0-beta.20260807070405
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/action-kit.mjs +188 -145
- package/dist/{annotations-DrR9tyoD.js → annotations-CjZbFTEj.js} +1 -1
- package/dist/components/input-2/currency-input/useCurrencyFormatter.d.ts +1 -0
- package/dist/components/input-2/stories/MaCurrencyInput.stories.d.ts +1 -0
- package/dist/components/input-2/types.d.ts +10 -1
- package/dist/config/plugin.d.ts +2 -1
- package/dist/config/types.d.ts +7 -1
- package/dist/config/use-resolved-locale.d.ts +13 -0
- package/dist/{export-data-Dr6HTLA-.js → export-data-DjL_mGOH.js} +1 -1
- package/dist/{exporting-CtlK_0UQ.js → exporting-DtjsAF32.js} +1 -1
- package/dist/{funnel-D7mV20Sb.js → funnel-BSLFRhDm.js} +1 -1
- package/dist/{index-Yo2GX1cW.js → index-CNRMAmUP.js} +6907 -6936
- package/dist/index.d.ts +1 -0
- package/dist/lib/formwerk/index.d.ts +2 -0
- package/dist/{map-DOndpYhf.js → map-Bi5xyBfe.js} +1 -1
- package/dist/{offline-exporting-1m9trTF0.js → offline-exporting-BSokfe6_.js} +1 -1
- package/dist/{stock-BZftReJn.js → stock-BJW_6ihE.js} +1 -1
- package/dist/{venn-CVj9IJcF.js → venn-CVeLzdX3.js} +1 -1
- package/dist/{wordcloud-COc8NRz2.js → wordcloud-C98Fek07.js} +1 -1
- package/package.json +5 -1
package/dist/index.d.ts
CHANGED
|
@@ -153,6 +153,7 @@ export { default as ActionKit } from './config/plugin';
|
|
|
153
153
|
export { ActionKitSymbol } from './config/constants';
|
|
154
154
|
export { useActionKit } from './config/use-action-kit';
|
|
155
155
|
export { maCountry } from './lib/country/country';
|
|
156
|
+
export * from './lib/formwerk';
|
|
156
157
|
export * from './locales/types';
|
|
157
158
|
export { default as ACTION_KIT_LOCALE_EN } from './locales/en.json';
|
|
158
159
|
export { default as ACTION_KIT_LOCALE_JA } from './locales/ja.json';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { configure, exposeField, getConfig, normalizePath, useCalendar, useCalendarCell, useCalendarView, useCheckbox, useCheckboxGroup, useComboBox, useConstraintsValidator, useCustomField, useDateField, useDateTimeSegment, useDefaultFilter, useFileEntry, useFileField, useForm, useFormContext, useFormField, useFormGroup, useFormRepeater, useFormStep, useHiddenField, useListBox, useLocale, useNumberField, useOption, useOptionGroup, useOtpField, useOtpSlot, useRadio, useRadioGroup, useSearchField, useSelect, useSlider, useSliderThumb, useStepFormFlow, useSwitch, useTextField, useTimeField, version, } from '@formwerk/core';
|
|
2
|
+
export type { AnyValidationResult, Arrayable, BlurredSchema, CalendarCell, CalendarProps, CalendarView, CalendarViewType, CheckboxGroupProps, CheckboxProps, ComboBoxProps, ConstraintOptions, Constraints, CustomFieldProps, DateFieldProps, DirtySchema, DisabledSchema, ErrorsSchema, ExposedField, FieldState, FileFieldProps, FilterContext, FilterFn, FilterOptions, FormContext, FormField, FormFieldInit, FormFieldProps, FormGroupProps, FormObject, FormRepeaterProps, FormReturns, FormSchema, FormStepProps, FormValidationResult, GenericFormSchema, GroupValidationResult, HiddenFieldProps, IssueCollection, ListBoxProps, ListOption, MaybeGetter, NoSchemaFormProps, NumberFieldProps, OptionGroupProps, OptionProps, OtpFieldProps, Path, PathValue, RadioGroupProps, RadioProps, Reactivify, ResetState, SchemaFormProps, SearchFieldProps, SelectProps, SetValueOptions, SliderProps, SliderThumbProps, StandardIssue, StandardSchema, StepFormFlowProps, SwitchProps, TextFieldProps, TimeFieldProps, TouchedSchema, ValidationResult, } from '@formwerk/core';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mobileaction/action-kit",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.59.0-beta.20260807070405",
|
|
5
5
|
"description": "UI Component library for Mobile Action.",
|
|
6
6
|
"author": "MobileAction",
|
|
7
7
|
"license": "MIT",
|
|
@@ -55,7 +55,11 @@
|
|
|
55
55
|
"version": "changeset version",
|
|
56
56
|
"release": "yarn build:local && changeset publish"
|
|
57
57
|
},
|
|
58
|
+
"peerDependencies": {
|
|
59
|
+
"@formwerk/core": "^0.14.4"
|
|
60
|
+
},
|
|
58
61
|
"dependencies": {
|
|
62
|
+
"@formwerk/core": "^0.14.4",
|
|
59
63
|
"@headlessui/vue": "^1.7.22",
|
|
60
64
|
"@microsoft/fetch-event-source": "^2.0.1",
|
|
61
65
|
"@vuepic/vue-datepicker": "^11.0.2",
|