@feedmepos/mf-common 1.24.0 → 1.26.3
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/README.md +12 -0
- package/dist/App.vue.d.ts +11 -1
- package/dist/App.vue.d.ts.map +1 -1
- package/dist/{CustomAttributesForm-5ca5c6cb.js → CustomAttributesForm-07ac4d3c.js} +1 -1
- package/dist/{ItemSelector-13384b27.js → ItemSelector-2e69dd7d.js} +1 -1
- package/dist/{RestaurantSelector-dde169d6.js → RestaurantSelector-3cbb571f.js} +1 -1
- package/dist/{app-bd81f07c.js → app-c4d651ab.js} +3696 -3691
- package/dist/app.d.ts +98 -4
- package/dist/app.d.ts.map +1 -1
- package/dist/app.js +17 -17
- package/dist/components/Portal/PortalDesktop.vue.d.ts.map +1 -1
- package/dist/components/Portal/PortalMobile.vue.d.ts.map +1 -1
- package/dist/components/Portal/PortalTablet.vue.d.ts.map +1 -1
- package/dist/components/Portal/index.d.ts +1 -0
- package/dist/components/Portal/index.d.ts.map +1 -1
- package/dist/locales/{types.d.ts → common/types.d.ts} +2 -2
- package/dist/locales/common/types.d.ts.map +1 -0
- package/dist/locales/types.ts +11 -0
- package/dist/store.d.ts +15 -15
- package/dist/style.css +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
@@ -10,6 +10,18 @@ This package provide:
|
|
10
10
|
|
11
11
|
Change log:
|
12
12
|
|
13
|
+
### 1.26.1
|
14
|
+
|
15
|
+
- now i18n messages under `common` namespace is moved to `mf-common`, previously it is maintained in `@feedmepos/i18n`
|
16
|
+
|
17
|
+
### 1.26.0
|
18
|
+
|
19
|
+
- upgrade `@feedmepos/i18n` to `0.2.0`, support custom `preProcess` function
|
20
|
+
|
21
|
+
### 1.25.1
|
22
|
+
|
23
|
+
- add `hide-app-drawer` prop on `FmNavBar`
|
24
|
+
|
13
25
|
### 1.24.0
|
14
26
|
|
15
27
|
- add `showAddon` prop in `ItemSelector` component
|
package/dist/App.vue.d.ts
CHANGED
@@ -1,7 +1,17 @@
|
|
1
|
-
|
1
|
+
import type { PortalProps } from "@/components/Portal/index";
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Partial<Pick<PortalProps, "hideAppDrawer">>>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Partial<Pick<PortalProps, "hideAppDrawer">>>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
|
2
3
|
default?(_: {}): any;
|
3
4
|
}>;
|
4
5
|
export default _default;
|
6
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
7
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
8
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
9
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
10
|
+
} : {
|
11
|
+
type: import('vue').PropType<T[K]>;
|
12
|
+
required: true;
|
13
|
+
};
|
14
|
+
};
|
5
15
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
6
16
|
new (): {
|
7
17
|
$slots: S;
|
package/dist/App.vue.d.ts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"App.vue.d.ts","sourceRoot":"","sources":["../../src/App.vue.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"App.vue.d.ts","sourceRoot":"","sources":["../../src/App.vue.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAW,WAAW,EAAE,MAAM,2BAA2B,CAAA;;;;AA6JrE,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,5 +1,5 @@
|
|
1
1
|
import { defineComponent as _, computed as m, resolveComponent as v, openBlock as c, createElementBlock as p, createVNode as k, toDisplayString as A, unref as N, h as V } from "vue";
|
2
|
-
import {
|
2
|
+
import { t as S, u as C } from "./app-c4d651ab.js";
|
3
3
|
import { components as O } from "@feedmepos/ui-library";
|
4
4
|
import { c as w } from "./object-27ce045b.js";
|
5
5
|
import "pinia";
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { ref as ct, computed as Le, defineComponent as si, onMounted as li, watch as Dn, resolveComponent as er, openBlock as Ve, createElementBlock as Xe, createElementVNode as Ge, toDisplayString as Pn, unref as Re, createVNode as Ye, isRef as $i, createCommentVNode as Ot, Fragment as nn, renderList as an, createBlock as tr, withCtx as on, normalizeClass as En, Transition as Mn } from "vue";
|
2
2
|
import { _ as Un, h as ci } from "./app-9575c6c7.js";
|
3
|
-
import { c as un, l as fe, e as Bt, a as ve, d as tt, b as He, f as di, u as Fn, g as pi,
|
3
|
+
import { c as un, l as fe, e as Bt, a as ve, d as tt, b as He, f as di, u as Fn, g as pi, t as hi } from "./app-c4d651ab.js";
|
4
4
|
import { FmButtonVariant as zt } from "@feedmepos/ui-library";
|
5
5
|
import { defineStore as fi } from "pinia";
|
6
6
|
import { c as At } from "./object-27ce045b.js";
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { ref as C, computed as i, defineComponent as J, mergeModels as X, useModel as Y, watch as Z, resolveComponent as S, openBlock as v, createElementBlock as b, createElementVNode as k, createVNode as m, withCtx as O, normalizeClass as ee, toDisplayString as le, createCommentVNode as B, withModifiers as E, unref as y, Fragment as z, renderList as $, createBlock as D, renderSlot as te, nextTick as ae } from "vue";
|
2
2
|
import { storeToRefs as ne } from "pinia";
|
3
3
|
import { _ as L, h as re } from "./app-9575c6c7.js";
|
4
|
-
import {
|
4
|
+
import { t as ue, u as oe } from "./app-c4d651ab.js";
|
5
5
|
import "@feedmepos/ui-library";
|
6
6
|
import "vue-router";
|
7
7
|
function se(p, t) {
|