@grapadigital/shared-app-modules 0.0.142 → 0.0.144
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.d.ts +4 -0
- package/dist/components.d.ts +4 -0
- package/dist/content.d.ts +4 -0
- package/dist/invoice.d.ts +4 -0
- package/dist/pages.d.ts +3 -1
- package/dist/pages.js +18 -8
- package/dist/payment.d.ts +4 -0
- package/dist/recruitment.d.ts +4 -0
- package/dist/sale.d.ts +4 -0
- package/package.json +9 -9
package/dist/action.d.ts
CHANGED
|
@@ -444,6 +444,10 @@ declare interface RecruitmentInterface {
|
|
|
444
444
|
status: string;
|
|
445
445
|
actionId: string;
|
|
446
446
|
profileId: string;
|
|
447
|
+
impressions: number;
|
|
448
|
+
reach: number;
|
|
449
|
+
engagementRate: number;
|
|
450
|
+
totalContents: number;
|
|
447
451
|
profile: ProfileInterface;
|
|
448
452
|
reel: ContentInterface[];
|
|
449
453
|
story: ContentInterface[];
|
package/dist/components.d.ts
CHANGED
|
@@ -706,6 +706,10 @@ declare interface RecruitmentInterface {
|
|
|
706
706
|
status: string;
|
|
707
707
|
actionId: string;
|
|
708
708
|
profileId: string;
|
|
709
|
+
impressions: number;
|
|
710
|
+
reach: number;
|
|
711
|
+
engagementRate: number;
|
|
712
|
+
totalContents: number;
|
|
709
713
|
profile: ProfileInterface;
|
|
710
714
|
reel: ContentInterface[];
|
|
711
715
|
story: ContentInterface[];
|
package/dist/content.d.ts
CHANGED
|
@@ -444,6 +444,10 @@ declare interface RecruitmentInterface {
|
|
|
444
444
|
status: string;
|
|
445
445
|
actionId: string;
|
|
446
446
|
profileId: string;
|
|
447
|
+
impressions: number;
|
|
448
|
+
reach: number;
|
|
449
|
+
engagementRate: number;
|
|
450
|
+
totalContents: number;
|
|
447
451
|
profile: ProfileInterface;
|
|
448
452
|
reel: ContentInterface[];
|
|
449
453
|
story: ContentInterface[];
|
package/dist/invoice.d.ts
CHANGED
|
@@ -444,6 +444,10 @@ declare interface RecruitmentInterface {
|
|
|
444
444
|
status: string;
|
|
445
445
|
actionId: string;
|
|
446
446
|
profileId: string;
|
|
447
|
+
impressions: number;
|
|
448
|
+
reach: number;
|
|
449
|
+
engagementRate: number;
|
|
450
|
+
totalContents: number;
|
|
447
451
|
profile: ProfileInterface;
|
|
448
452
|
reel: ContentInterface[];
|
|
449
453
|
story: ContentInterface[];
|
package/dist/pages.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { default as default_2 } from 'react';
|
|
2
2
|
import { JSX } from 'react/jsx-runtime';
|
|
3
3
|
|
|
4
|
-
export declare function LoaderPage(): JSX.Element;
|
|
4
|
+
export declare function LoaderPage({ className, ...props }: LoaderPageProps): JSX.Element;
|
|
5
|
+
|
|
6
|
+
declare type LoaderPageProps = React.ComponentProps<"div">;
|
|
5
7
|
|
|
6
8
|
export declare function NotFoundPage({ btnRedirect, btnLabel, hideBtn, className, ...props }: NotFoundPageProps): JSX.Element;
|
|
7
9
|
|
package/dist/pages.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as i, c as
|
|
1
|
+
import { a as i, c as t, B as m } from "./chuncks/switch.q7qsNhmq.js";
|
|
2
2
|
import { jsx as e, jsxs as l } from "react/jsx-runtime";
|
|
3
3
|
import "react";
|
|
4
4
|
import { useNavigate as d } from "react-router-dom";
|
|
@@ -11,12 +11,22 @@ const x = [
|
|
|
11
11
|
}
|
|
12
12
|
]
|
|
13
13
|
], u = i("flag", x);
|
|
14
|
-
function N() {
|
|
15
|
-
return /* @__PURE__ */ e(
|
|
14
|
+
function N({ className: a, ...r }) {
|
|
15
|
+
return /* @__PURE__ */ e(
|
|
16
|
+
"div",
|
|
17
|
+
{
|
|
18
|
+
className: t(
|
|
19
|
+
"flex items-center justify-center h-screen w-screen",
|
|
20
|
+
a
|
|
21
|
+
),
|
|
22
|
+
...r,
|
|
23
|
+
children: /* @__PURE__ */ e("div", { className: "size-16 border-gray-500 border-t-gray-700 rounded-full animate-spin border-[0.375rem]" })
|
|
24
|
+
}
|
|
25
|
+
);
|
|
16
26
|
}
|
|
17
27
|
function b({
|
|
18
|
-
btnRedirect:
|
|
19
|
-
btnLabel:
|
|
28
|
+
btnRedirect: a = "/",
|
|
29
|
+
btnLabel: r = "Home",
|
|
20
30
|
hideBtn: s = !1,
|
|
21
31
|
className: n,
|
|
22
32
|
...o
|
|
@@ -25,7 +35,7 @@ function b({
|
|
|
25
35
|
return /* @__PURE__ */ e(
|
|
26
36
|
"div",
|
|
27
37
|
{
|
|
28
|
-
className:
|
|
38
|
+
className: t(
|
|
29
39
|
"h-screen mx-auto grid place-items-center text-center px-8",
|
|
30
40
|
n
|
|
31
41
|
),
|
|
@@ -39,8 +49,8 @@ function b({
|
|
|
39
49
|
{
|
|
40
50
|
size: "lg",
|
|
41
51
|
className: "px-4 md:w-[8rem]",
|
|
42
|
-
onClick: () => c(
|
|
43
|
-
children:
|
|
52
|
+
onClick: () => c(a),
|
|
53
|
+
children: r
|
|
44
54
|
}
|
|
45
55
|
)
|
|
46
56
|
] })
|
package/dist/payment.d.ts
CHANGED
|
@@ -444,6 +444,10 @@ declare interface RecruitmentInterface {
|
|
|
444
444
|
status: string;
|
|
445
445
|
actionId: string;
|
|
446
446
|
profileId: string;
|
|
447
|
+
impressions: number;
|
|
448
|
+
reach: number;
|
|
449
|
+
engagementRate: number;
|
|
450
|
+
totalContents: number;
|
|
447
451
|
profile: ProfileInterface;
|
|
448
452
|
reel: ContentInterface[];
|
|
449
453
|
story: ContentInterface[];
|
package/dist/recruitment.d.ts
CHANGED
|
@@ -444,6 +444,10 @@ export declare interface RecruitmentInterface {
|
|
|
444
444
|
status: string;
|
|
445
445
|
actionId: string;
|
|
446
446
|
profileId: string;
|
|
447
|
+
impressions: number;
|
|
448
|
+
reach: number;
|
|
449
|
+
engagementRate: number;
|
|
450
|
+
totalContents: number;
|
|
447
451
|
profile: ProfileInterface;
|
|
448
452
|
reel: ContentInterface[];
|
|
449
453
|
story: ContentInterface[];
|
package/dist/sale.d.ts
CHANGED
|
@@ -444,6 +444,10 @@ declare interface RecruitmentInterface {
|
|
|
444
444
|
status: string;
|
|
445
445
|
actionId: string;
|
|
446
446
|
profileId: string;
|
|
447
|
+
impressions: number;
|
|
448
|
+
reach: number;
|
|
449
|
+
engagementRate: number;
|
|
450
|
+
totalContents: number;
|
|
447
451
|
profile: ProfileInterface;
|
|
448
452
|
reel: ContentInterface[];
|
|
449
453
|
story: ContentInterface[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grapadigital/shared-app-modules",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.144",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
7
7
|
],
|
|
@@ -116,13 +116,6 @@
|
|
|
116
116
|
}
|
|
117
117
|
},
|
|
118
118
|
"type": "module",
|
|
119
|
-
"scripts": {
|
|
120
|
-
"dev": "vite",
|
|
121
|
-
"build": "rm -rf dist && tsc -b && vite build",
|
|
122
|
-
"lint": "eslint .",
|
|
123
|
-
"preview": "vite preview",
|
|
124
|
-
"lib:publish": "pnpm build && pnpm publish --no-git-checks"
|
|
125
|
-
},
|
|
126
119
|
"peerDependencies": {
|
|
127
120
|
"react": "^18.3.1",
|
|
128
121
|
"react-dom": "^18.3.1"
|
|
@@ -178,5 +171,12 @@
|
|
|
178
171
|
"vite": "^7.2.4",
|
|
179
172
|
"vite-plugin-dts": "^4.5.4",
|
|
180
173
|
"vite-plugin-lib-inject-css": "^2.2.2"
|
|
174
|
+
},
|
|
175
|
+
"scripts": {
|
|
176
|
+
"dev": "vite",
|
|
177
|
+
"build": "rm -rf dist && tsc -b && vite build",
|
|
178
|
+
"lint": "eslint .",
|
|
179
|
+
"preview": "vite preview",
|
|
180
|
+
"lib:publish": "pnpm build && pnpm publish --no-git-checks"
|
|
181
181
|
}
|
|
182
|
-
}
|
|
182
|
+
}
|