@simplybusiness/theme-simplybusiness 0.1.0
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/CHANGELOG.md +1 -0
- package/dist/33a3e6d23ada9a4659a2.woff2 +0 -0
- package/dist/80fa984d12321ab7bf3d.woff2 +0 -0
- package/dist/fonts.css +2 -0
- package/dist/index.css +5651 -0
- package/package.json +50 -0
- package/src/assets/.gitkeep +0 -0
- package/src/fonts/.gitkeep +0 -0
- package/src/fonts.css +13 -0
- package/src/index.css +44 -0
- package/src/variables.css +3 -0
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"main": "dist/index.css",
|
|
5
|
+
"simplyBusiness": {
|
|
6
|
+
"publishToPublicNpm": true
|
|
7
|
+
},
|
|
8
|
+
"license": "UNLICENSED",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"clean": "rm -rf dist",
|
|
11
|
+
"build": "yarn run -T turbo run turbo:build",
|
|
12
|
+
"prepack": "yarn run build",
|
|
13
|
+
"turbo:build": "yarn webpack --mode production"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/**/*",
|
|
17
|
+
"src/**/*"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": [
|
|
20
|
+
"dist/**/*.css"
|
|
21
|
+
],
|
|
22
|
+
"exports": {
|
|
23
|
+
".": "./dist/index.css",
|
|
24
|
+
"./dist/index.css": "./dist/index.css",
|
|
25
|
+
"./src/*": "./src/*",
|
|
26
|
+
"./fonts": "./dist/fonts.css"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@simplybusiness/mobius": "^5.0.1",
|
|
30
|
+
"@simplybusiness/mobius-datepicker": "^6.0.1",
|
|
31
|
+
"@simplybusiness/mobius-journey": "^6.1.1",
|
|
32
|
+
"@simplybusiness/theme-core": "^7.0.2"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"css-loader": "^7.1.2",
|
|
36
|
+
"mini-css-extract-plugin": "^2.9.0",
|
|
37
|
+
"postcss": "^8.4.40",
|
|
38
|
+
"postcss-discard-comments": "^7.0.2",
|
|
39
|
+
"postcss-import": "^16.1.0",
|
|
40
|
+
"postcss-loader": "^8.1.1",
|
|
41
|
+
"postcss-nested": "^6.2.0",
|
|
42
|
+
"postcss-preset-env": "^9.6.0",
|
|
43
|
+
"postcss-url": "^10.1.3",
|
|
44
|
+
"resolve-url-loader": "^5.0.0",
|
|
45
|
+
"ts-loader": "^9.5.1",
|
|
46
|
+
"typescript": "^5.5.4",
|
|
47
|
+
"webpack": "^5.94.0",
|
|
48
|
+
"webpack-cli": "^5.1.4"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
File without changes
|
|
File without changes
|
package/src/fonts.css
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* @font-face {
|
|
2
|
+
font-family: "NamePlaceholderRegular";
|
|
3
|
+
src: url("./fonts/name-placeholder/name-placeholder-regular.woff2") format("woff2");
|
|
4
|
+
font-weight: 400;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
@font-face {
|
|
9
|
+
font-family: "NamePlaceholderBold";
|
|
10
|
+
src: url("./fonts/name-placeholder/name-placeholder-bold.woff2") format("woff2");
|
|
11
|
+
font-weight: 700;
|
|
12
|
+
font-style: normal;
|
|
13
|
+
} */
|
package/src/index.css
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/* Base */
|
|
2
|
+
@import "@simplybusiness/theme-core";
|
|
3
|
+
|
|
4
|
+
/* @simplybusiness/mobius-journey */
|
|
5
|
+
@import "../../mobius-journey/src/archived/Actions/Actions.css";
|
|
6
|
+
@import "../../mobius-journey/src/archived/PaymentConfirmation/PaymentConfirmation.css";
|
|
7
|
+
@import "../../mobius-journey/src/archived/PercentageTotalsQuestion/PercentageTotalsQuestion.css";
|
|
8
|
+
@import "../../mobius-journey/src/archived/Question/Question.css";
|
|
9
|
+
@import "../../mobius-journey/src/archived/QuestionGroup/QuestionGroup.css";
|
|
10
|
+
@import "../../mobius-journey/src/archived/QuestionHelp/QuestionHelp.css";
|
|
11
|
+
@import "../../mobius-journey/src/archived/Section/Section.css";
|
|
12
|
+
@import "../../mobius-journey/src/archived/Testimonial/Testimonial.css";
|
|
13
|
+
@import "../../mobius-journey/src/components/AgentResources/AgentResources.css";
|
|
14
|
+
@import "../../mobius-journey/src/components/Footer/Footer.css";
|
|
15
|
+
@import "../../mobius-journey/src/components/Header/Header.css";
|
|
16
|
+
@import "../../mobius-journey/src/components/InfoCard/InfoCard.css";
|
|
17
|
+
@import "../../mobius-journey/src/components/NextCoverage/NextCoverage.css";
|
|
18
|
+
@import "../../mobius-journey/src/components/PreFooter/InsuranceBenefits.css";
|
|
19
|
+
@import "../../mobius-journey/src/components/PreFooter/PreFooter.css";
|
|
20
|
+
@import "../../mobius-journey/src/components/ProgressSteps/ProgressSteps.css";
|
|
21
|
+
@import "../../mobius-journey/src/components/QuoteComparison/CoverSummary/CoverSummary.css";
|
|
22
|
+
@import "../../mobius-journey/src/components/QuoteComparison/CoverTogglesContainer/CoverTogglesContainer.css";
|
|
23
|
+
@import "../../mobius-journey/src/components/QuoteComparison/Headline/ExperimentIteratedQCP/EditLimitsExperimentIteratedQCP.css";
|
|
24
|
+
@import "../../mobius-journey/src/components/QuoteComparison/Headline/ExperimentIteratedQCP/QuoteHeadlineExperimentIteratedQCP.css";
|
|
25
|
+
@import "../../mobius-journey/src/components/QuoteComparison/Headline/QuoteHeadline.css";
|
|
26
|
+
@import "../../mobius-journey/src/components/QuoteComparison/PaymentToggle/PaymentToggle.css";
|
|
27
|
+
@import "../../mobius-journey/src/components/QuoteComparison/QuoteCards/QuoteCards.css";
|
|
28
|
+
@import "../../mobius-journey/src/components/QuoteHelp/QuoteHelp.css";
|
|
29
|
+
@import "../../mobius-journey/src/components/Referral/Referral.css";
|
|
30
|
+
@import "../../mobius-journey/src/components/TradeSelector/TradeSelector.css";
|
|
31
|
+
@import "../../mobius-journey/src/components/TrustSection/TrustSection.css";
|
|
32
|
+
@import "../../mobius-journey/src/pages/AgentReferralPage/AgentReferralContainer.css";
|
|
33
|
+
@import "../../mobius-journey/src/pages/Main.css";
|
|
34
|
+
|
|
35
|
+
/* @simplybusiness/mobius-datepicker */
|
|
36
|
+
@import "../../mobius-datepicker/src/components/DatePicker/DatePicker.css";
|
|
37
|
+
|
|
38
|
+
/* Base customisation */
|
|
39
|
+
@import "./fonts.css";
|
|
40
|
+
@import "./variables.css";
|
|
41
|
+
|
|
42
|
+
body {
|
|
43
|
+
background-color: var(--color-background-body);
|
|
44
|
+
}
|