jplan-pack 0.6.661 → 0.6.663
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/{AuthFailRoute-DvBQmidT.mjs → AuthFailRoute-CWK6Gwwu.mjs} +4 -4
- package/dist/AuthFailRoute-SSauxOz3.js +1 -0
- package/dist/AuthRoute-Cznm_Gy3.js +1 -0
- package/dist/{AuthRoute-3OwiZPpc.mjs → AuthRoute-_9UDyyDg.mjs} +21 -21
- package/dist/index-EbnwL6yx.js +113 -0
- package/dist/index-qZysRG5O.mjs +28565 -0
- package/dist/index.css +2 -2
- package/dist/jplan-pack.cjs.js +1 -1
- package/dist/jplan-pack.es.js +1 -1
- package/dist/types/_auth/_dev/AuthFailRoute.d.ts +1 -1
- package/dist/types/_auth/_dev/AuthRoute.d.ts +1 -1
- package/dist/types/components/ConfirmDialog.d.ts +1 -2
- package/dist/types/components/ContextMenu.d.ts +2 -3
- package/dist/types/components/DotsMenu.d.ts +1 -2
- package/dist/types/components/JBtn.d.ts +1 -2
- package/dist/types/components/JDialog.d.ts +2 -3
- package/dist/types/components/JIconBtn.d.ts +1 -1
- package/dist/types/components/ParentCard.d.ts +1 -2
- package/dist/types/components/ReadOnlyField.d.ts +1 -1
- package/dist/types/components/SearchFilter.d.ts +5 -11
- package/dist/types/components/form/JForm.d.ts +19 -13
- package/dist/types/components/form/JSelect.d.ts +16 -5
- package/dist/types/components/form/JTextArea.d.ts +10 -4
- package/dist/types/components/form/JTextField.d.ts +15 -8
- package/dist/types/components/form/footer/CancelButton.d.ts +5 -4
- package/dist/types/components/form/footer/FormMetadata.d.ts +14 -10
- package/dist/types/components/form/footer/SaveButton.d.ts +5 -4
- package/dist/types/components/form/headless/FormHeadless.d.ts +17 -12
- package/dist/types/components/form/headless/TabFormHeader.d.ts +7 -5
- package/dist/types/components/icon/IconSet.d.ts +9 -3
- package/dist/types/components/menu/SubMenu.d.ts +24 -0
- package/dist/types/components/spinner/SpinnerLoader.d.ts +1 -1
- package/dist/types/components/table/UiTable.d.ts +5 -6
- package/dist/types/components/table/advanced/ColumnSettingsDialog.d.ts +2 -2
- package/dist/types/components/table/advanced/TableAdvanced.d.ts +5 -6
- package/dist/types/components/table/advanced/TableHeader.d.ts +13 -11
- package/dist/types/components/table/card/TableCard.d.ts +1 -1
- package/dist/types/components/table/card/TableCardsView.d.ts +12 -9
- package/dist/types/plugins/i18n/i18n.d.ts +19 -0
- package/dist/types/shims-vue.d.ts +1 -1
- package/dist/types/theme/vuetify.d.ts +1 -2
- package/package.json +3 -3
- package/dist/AuthFailRoute-71aFxEWh.js +0 -1
- package/dist/AuthRoute-BNwNCD08.js +0 -1
- package/dist/index-BcKiz2uc.js +0 -92
- package/dist/index-DlMTKPMF.mjs +0 -25017
@@ -1,38 +1,40 @@
|
|
1
1
|
import { UiTableHeader } from '../../../types/table/UiTableHeader';
|
2
2
|
export type TableHeaderProps = {
|
3
3
|
columns: UiTableHeader[];
|
4
|
+
filter_visualize: boolean;
|
4
5
|
};
|
5
6
|
export type TableHeaderEmits = {
|
6
7
|
(event: 'refresh'): void;
|
7
8
|
(event: 'remove'): void;
|
8
9
|
};
|
9
|
-
|
10
|
+
declare let __VLS_typeProps: TableHeaderProps;
|
10
11
|
type __VLS_PublicProps = {
|
11
12
|
'search'?: string;
|
12
|
-
} &
|
13
|
+
} & typeof __VLS_typeProps;
|
13
14
|
declare function __VLS_template(): {
|
14
|
-
attrs: Partial<{}>;
|
15
15
|
slots: {
|
16
16
|
filter?(_: {}): any;
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
17
|
+
"top-right"?(_: {}): any;
|
18
|
+
"left-prepend"?(_: {}): any;
|
19
|
+
"left-append"?(_: {}): any;
|
20
|
+
"right-prepend"?(_: {}): any;
|
21
21
|
};
|
22
22
|
refs: {};
|
23
|
-
|
23
|
+
attrs: Partial<{}>;
|
24
24
|
};
|
25
25
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
26
26
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
27
|
-
"update:search": (
|
27
|
+
"update:search": (search: string) => any;
|
28
28
|
} & {
|
29
29
|
remove: () => any;
|
30
30
|
refresh: () => any;
|
31
31
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
32
|
-
"onUpdate:search"?: ((
|
32
|
+
"onUpdate:search"?: ((search: string) => any) | undefined;
|
33
33
|
onRemove?: (() => any) | undefined;
|
34
34
|
onRefresh?: (() => any) | undefined;
|
35
|
-
}>, {
|
35
|
+
}>, {
|
36
|
+
filter_visualize: boolean;
|
37
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
36
38
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
37
39
|
export default _default;
|
38
40
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { TableCardType } from './type';
|
2
2
|
declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
3
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, never> & TableCardType &
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, never> & TableCardType> & import('vue').PublicProps;
|
4
4
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
5
5
|
attrs: any;
|
6
6
|
slots: {
|
@@ -1,22 +1,25 @@
|
|
1
1
|
import { CardKeys } from './type';
|
2
|
-
type __VLS_Props = {
|
3
|
-
data: Record<any, any>[];
|
4
|
-
columns: CardKeys[];
|
5
|
-
size?: number;
|
6
|
-
itemKey: string;
|
7
|
-
};
|
8
2
|
declare function __VLS_template(): {
|
9
|
-
attrs: Partial<{}>;
|
10
3
|
slots: {
|
11
4
|
actions?(_: {
|
12
5
|
item: Record<any, any>;
|
13
6
|
}): any;
|
14
7
|
};
|
15
8
|
refs: {};
|
16
|
-
|
9
|
+
attrs: Partial<{}>;
|
17
10
|
};
|
18
11
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
19
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
12
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
13
|
+
data: Record<any, any>[];
|
14
|
+
columns: CardKeys[];
|
15
|
+
size?: number;
|
16
|
+
itemKey: string;
|
17
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
18
|
+
data: Record<any, any>[];
|
19
|
+
columns: CardKeys[];
|
20
|
+
size?: number;
|
21
|
+
itemKey: string;
|
22
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
20
23
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
21
24
|
export default _default;
|
22
25
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
@@ -0,0 +1,19 @@
|
|
1
|
+
declare const i18n: import('vue-i18n').I18n<{
|
2
|
+
'pt-BR': {
|
3
|
+
placeholders: {
|
4
|
+
selectFilter: string;
|
5
|
+
visualize: string;
|
6
|
+
actions: string;
|
7
|
+
search: string;
|
8
|
+
};
|
9
|
+
};
|
10
|
+
'en-US': {
|
11
|
+
placeholders: {
|
12
|
+
selectFilter: string;
|
13
|
+
visualize: string;
|
14
|
+
actions: string;
|
15
|
+
search: string;
|
16
|
+
};
|
17
|
+
};
|
18
|
+
}, {}, {}, string, true>;
|
19
|
+
export default i18n;
|
@@ -1,7 +1,6 @@
|
|
1
1
|
declare const _default: {
|
2
2
|
install: (app: import('vue').App) => void;
|
3
|
-
|
4
|
-
defaults: import('vue').Ref<import('vuetify').DefaultsInstance, import('vuetify').DefaultsInstance>;
|
3
|
+
defaults: import('vue').Ref<import('vuetify').DefaultsInstance>;
|
5
4
|
display: import('vuetify').DisplayInstance;
|
6
5
|
theme: import('vuetify').ThemeInstance & {
|
7
6
|
install: (app: import('vue').App) => void;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "jplan-pack",
|
3
|
-
"version": "0.6.
|
3
|
+
"version": "0.6.663",
|
4
4
|
"main": "./dist/jplan-pack.cjs.js",
|
5
5
|
"module": "./dist/jplan-pack.es.js",
|
6
6
|
"types": "dist/types/index.d.ts",
|
@@ -48,10 +48,10 @@
|
|
48
48
|
"@types/node": "^22.13.0",
|
49
49
|
"@vueuse/core": "^11.2.0",
|
50
50
|
"vue": "^3.5.13",
|
51
|
+
"vue-i18n": "^11.1.3",
|
51
52
|
"vue-router": "^4.5.0",
|
52
53
|
"vue-tabler-icons": "^2.21.0",
|
53
|
-
"vuetify": "^3.7.4"
|
54
|
-
"vue-i18n": "^11.1.2"
|
54
|
+
"vuetify": "^3.7.4"
|
55
55
|
},
|
56
56
|
"devDependencies": {
|
57
57
|
"@chromatic-com/storybook": "^3.2.5",
|
@@ -1 +0,0 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),a=require("vuetify/components/VBtn"),l=require("./index-BcKiz2uc.js"),c={class:"overlay d-flex flex-column align-center justify-center"},r=e.defineComponent({__name:"AuthFailRoute",setup(s){const o=()=>{const n=window.location.pathname.replace("/jplan-auth-fail","");window.location.replace(n)};return(n,t)=>(e.openBlock(),e.createElementBlock("div",c,[t[1]||(t[1]=e.createElementVNode("div",{class:"w-100 text-h5 text-center mb-4"},"Unable to Access. Please allow pop-ups and try again.",-1)),e.createElementVNode("div",null,[e.createVNode(a.VBtn,{variant:"flat",color:"secondary",onClick:o},{default:e.withCtx(()=>t[0]||(t[0]=[e.createTextVNode("Login")])),_:1})])]))}}),i=l._export_sfc(r,[["__scopeId","data-v-1cc57299"]]);exports.default=i;
|
@@ -1 +0,0 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue");require("@vueuse/core");require("vuetify/components/VBtn");require("vuetify/components");require("vuetify/components/VIcon");const t=require("./index-BcKiz2uc.js");require("vuetify/components/VCard");require("vuetify/components/VDialog");require("vuetify/components/VDivider");require("vuetify/components/VGrid");require("vuetify/components/VAvatar");require("vuetify/components/VImg");require("vuetify/components/VList");require("vuetify/components/VMenu");require("vuetify/components/VDataTable");require("vuetify/components/VTextField");require("vuetify/components/VSelect");require("vuetify/components/VCheckbox");require("vuetify/components/VChip");require("vuetify/components/VLabel");require("vuetify/components/VTextarea");require("vuetify/components/VBtnToggle");const c={class:"overlay"},l={class:"text-white"},d={class:"text-white"},q=e.defineComponent({__name:"AuthRoute",setup(p){const s=r=>({scopes:["https://graph.microsoft.com/.default","openid","profile"],redirectStartPage:window.location.href,extraQueryParameters:r}),i=e.ref(!1);async function u(){t.msal.getAllAccounts().length===0&&(i.value=!0);const r=await t.msal.handleRedirectPromise();if(!r){await t.msal.initialize();const n=s();await t.msal.loginRedirect(n);return}t.msal.setActiveAccount(r.account)}e.onMounted(async()=>{await t.msal.initialize(),await u()});const o=[{title:"Authenticating...",subtitle:"Please wait."},{title:"Authorized",subtitle:"If this window don't closed automatically, you can close it now."}],a=e.computed(()=>i.value?o[0]:o[1]);return(r,n)=>(e.openBlock(),e.createElementBlock("div",c,[e.createElementVNode("h3",l,e.toDisplayString(a.value.title),1),e.createVNode(e.unref(t.SpinnerLoader)),e.createElementVNode("p",d,e.toDisplayString(a.value.subtitle),1)]))}}),m=t._export_sfc(q,[["__scopeId","data-v-b7679fd7"]]);exports.default=m;
|