bt-core-app 1.4.501 → 1.4.503
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/bt-core-app.js +1 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -40741,6 +40741,7 @@ const W5 = { class: "d-flex align-center" }, UV = /* @__PURE__ */ Ke({
|
|
|
40741
40741
|
}
|
|
40742
40742
|
});
|
|
40743
40743
|
export {
|
|
40744
|
+
Oa as BTDateFormat,
|
|
40744
40745
|
jV as BTDialogDate,
|
|
40745
40746
|
YV as BTDialogNumber,
|
|
40746
40747
|
UV as BTDialogSelect,
|
package/dist/index.d.ts
CHANGED
|
@@ -201,6 +201,8 @@ export declare interface BTCreateMenu {
|
|
|
201
201
|
useRoutes?: boolean;
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
+
export declare const BTDateFormat: string;
|
|
205
|
+
|
|
204
206
|
export declare interface BTDates {
|
|
205
207
|
btDate: (val?: string) => DateTime;
|
|
206
208
|
btString: (val?: DateTime) => string;
|
|
@@ -1092,6 +1094,8 @@ export declare interface NavigationItem extends AuthItem {
|
|
|
1092
1094
|
path?: string;
|
|
1093
1095
|
/**permissions that are required for this navItem. All these permissions must be met. */
|
|
1094
1096
|
permissions?: string[];
|
|
1097
|
+
/**for PLU stores only - defining what prop to cal window */
|
|
1098
|
+
pluWindowProp?: string;
|
|
1095
1099
|
/**default to true. When false will allow universal access regardless of permission */
|
|
1096
1100
|
requiresAuth?: boolean;
|
|
1097
1101
|
/**the name of the route to access individual items */
|
package/package.json
CHANGED