@flarehr/apollo-super-campaign 1.0.4 → 1.1.5
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/LICENCE +1 -1
- package/dist/apollo-super-campaign.js +266 -6
- package/dist/assets/logo-art-OnjDdwzt.svg +7 -0
- package/dist/assets/logo-aus-eth-BVvU7g2H.svg +31 -0
- package/dist/assets/logo-aware-27z0JfJC.svg +58 -0
- package/dist/assets/logo-first-rrA5hli9.svg +15 -0
- package/dist/assets/logo-hesta-DS-8ReNU.svg +5 -0
- package/dist/assets/logo-slate-qMDg7z1_.png +0 -0
- package/dist/assets/logo-spirit-gGkSB0e4.svg +141 -0
- package/dist/assets/logo-unisuper-1d8aWLNy.svg +15 -0
- package/dist/assets/logo-virgin-4NJx4nb0.svg +8 -0
- package/dist/index.html +40 -40
- package/package.json +50 -40
package/dist/index.html
CHANGED
@@ -1,40 +1,40 @@
|
|
1
|
-
<!-- This index is for test purpose -->
|
2
|
-
<!DOCTYPE html>
|
3
|
-
<html>
|
4
|
-
<head>
|
5
|
-
<title>Apollo Super Campaign</title>
|
6
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
8
|
-
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
9
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
10
|
-
<link
|
11
|
-
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
|
12
|
-
rel="stylesheet"
|
13
|
-
/>
|
14
|
-
</head>
|
15
|
-
<style>
|
16
|
-
:root {
|
17
|
-
--fl-color-primary: #1890ff;
|
18
|
-
--fl-color-primary-light: #74c0ff;
|
19
|
-
--fl-color-primary-dark: #006bce;
|
20
|
-
--fl-color-primary-disabled: #f5f5f5;
|
21
|
-
--fl-color-primary-hover: #40a9ff;
|
22
|
-
--fl-color-primary-focus: #40a9ff;
|
23
|
-
--fl-color-primary-text: white;
|
24
|
-
--fl-color-secondary: #d3d3d3;
|
25
|
-
--fl-color-secondary-light: #e1e1e1;
|
26
|
-
--fl-color-secondary-dark: #cecece;
|
27
|
-
--fl-color-secondary-disabled: #f5f5f5;
|
28
|
-
--fl-color-secondary-hover: #ebebeb;
|
29
|
-
--fl-color-secondary-focus: #ebebeb;
|
30
|
-
--fl-color-secondary-text: #262626;
|
31
|
-
}
|
32
|
-
</style>
|
33
|
-
<body>
|
34
|
-
<apollo-super-campaign
|
35
|
-
backend-url="apollo backend url"
|
36
|
-
access-token="your access token"
|
37
|
-
></apollo-super-campaign>
|
38
|
-
<script type="module" src="./apollo-super-campaign.js"></script>
|
39
|
-
</body>
|
40
|
-
</html>
|
1
|
+
<!-- This index is for test purpose -->
|
2
|
+
<!DOCTYPE html>
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<title>Apollo Super Campaign</title>
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
8
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
9
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
10
|
+
<link
|
11
|
+
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
|
12
|
+
rel="stylesheet"
|
13
|
+
/>
|
14
|
+
</head>
|
15
|
+
<style>
|
16
|
+
:root {
|
17
|
+
--fl-color-primary: #1890ff;
|
18
|
+
--fl-color-primary-light: #74c0ff;
|
19
|
+
--fl-color-primary-dark: #006bce;
|
20
|
+
--fl-color-primary-disabled: #f5f5f5;
|
21
|
+
--fl-color-primary-hover: #40a9ff;
|
22
|
+
--fl-color-primary-focus: #40a9ff;
|
23
|
+
--fl-color-primary-text: white;
|
24
|
+
--fl-color-secondary: #d3d3d3;
|
25
|
+
--fl-color-secondary-light: #e1e1e1;
|
26
|
+
--fl-color-secondary-dark: #cecece;
|
27
|
+
--fl-color-secondary-disabled: #f5f5f5;
|
28
|
+
--fl-color-secondary-hover: #ebebeb;
|
29
|
+
--fl-color-secondary-focus: #ebebeb;
|
30
|
+
--fl-color-secondary-text: #262626;
|
31
|
+
}
|
32
|
+
</style>
|
33
|
+
<body>
|
34
|
+
<apollo-super-campaign
|
35
|
+
backend-url="apollo backend url"
|
36
|
+
access-token="your access token"
|
37
|
+
></apollo-super-campaign>
|
38
|
+
<script type="module" src="./apollo-super-campaign.js"></script>
|
39
|
+
</body>
|
40
|
+
</html>
|
package/package.json
CHANGED
@@ -1,40 +1,50 @@
|
|
1
|
-
{
|
2
|
-
"name": "@flarehr/apollo-super-campaign",
|
3
|
-
"version": "1.
|
4
|
-
"description": "Flare Apollo Campaign",
|
5
|
-
"license": "SEE LICENSE IN LICENSE.md",
|
6
|
-
"type": "module",
|
7
|
-
"files": [
|
8
|
-
"dist/"
|
9
|
-
],
|
10
|
-
"
|
11
|
-
"
|
12
|
-
|
13
|
-
|
14
|
-
"
|
15
|
-
|
16
|
-
|
17
|
-
"
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
"@
|
23
|
-
"
|
24
|
-
"
|
25
|
-
"
|
26
|
-
|
27
|
-
|
28
|
-
"
|
29
|
-
"
|
30
|
-
"
|
31
|
-
"eslint-plugin
|
32
|
-
"eslint
|
33
|
-
"
|
34
|
-
"
|
35
|
-
"
|
36
|
-
"
|
37
|
-
"
|
38
|
-
"
|
39
|
-
|
40
|
-
|
1
|
+
{
|
2
|
+
"name": "@flarehr/apollo-super-campaign",
|
3
|
+
"version": "1.1.5",
|
4
|
+
"description": "Flare Apollo Campaign",
|
5
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
6
|
+
"type": "module",
|
7
|
+
"files": [
|
8
|
+
"dist/"
|
9
|
+
],
|
10
|
+
"engines": {
|
11
|
+
"node": ">=18.19 <19"
|
12
|
+
},
|
13
|
+
"scripts": {
|
14
|
+
"dev": "vite",
|
15
|
+
"build": "tsc && vite build",
|
16
|
+
"preview": "vite preview",
|
17
|
+
"lint": "eslint . --ext .ts,.tsx"
|
18
|
+
},
|
19
|
+
"dependencies": {
|
20
|
+
"@emotion/react": "11.11.3",
|
21
|
+
"@emotion/styled": "11.11.0",
|
22
|
+
"@reduxjs/toolkit": "2.0.1",
|
23
|
+
"preact": "10.19.3",
|
24
|
+
"preact-custom-element": "4.3.0",
|
25
|
+
"react-redux": "9.0.4"
|
26
|
+
},
|
27
|
+
"devDependencies": {
|
28
|
+
"@preact/preset-vite": "2.7.0",
|
29
|
+
"@types/node": "20.10.5",
|
30
|
+
"@types/preact-custom-element": "4.0.4",
|
31
|
+
"@typescript-eslint/eslint-plugin": "6.16.0",
|
32
|
+
"@typescript-eslint/parser": "6.16.0",
|
33
|
+
"autoprefixer": "10.4.16",
|
34
|
+
"babel-plugin-macros": "3.1.0",
|
35
|
+
"babel-plugin-twin": "1.1.0",
|
36
|
+
"eslint": "8.56.0",
|
37
|
+
"eslint-config-preact": "1.3.0",
|
38
|
+
"eslint-config-prettier": "9.1.0",
|
39
|
+
"eslint-plugin-prettier": "5.1.2",
|
40
|
+
"eslint-plugin-simple-import-sort": "10.0.0",
|
41
|
+
"eslint-plugin-unused-imports": "3.0.0",
|
42
|
+
"postcss": "8.4.32",
|
43
|
+
"prettier": "3.1.1",
|
44
|
+
"tailwindcss": "3.4.1",
|
45
|
+
"twin.macro": "3.4.0",
|
46
|
+
"typescript": "5.3.3",
|
47
|
+
"vite": "5.0.8",
|
48
|
+
"vite-tsconfig-paths": "4.2.3"
|
49
|
+
}
|
50
|
+
}
|