Skip to content

Commit b947348

Browse files
committed
added new footer component
1 parent 6994072 commit b947348

34 files changed

Lines changed: 948 additions & 1 deletion

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,4 +395,18 @@ I want this all to be presented flexible in the component.
395395

396396
* Claude Sonnet 4.6: create a LitElement also for the signupButton in the SignupButton.ts based on the signup.js code and wire it into the header like you did the loginButton.
397397

398-
* Raptor mini: when we are on layout mobile we do not want to display the help menu at all.
398+
* Raptor mini: when we are on layout mobile we do not want to display the help menu at all.
399+
400+
* Raptor mini: Create for me a footer Lit Component in tsy style of the components I have and under v2. Take the code from this index.ts to start with.
401+
402+
* Raptor mini: Good. Now, I want the footer to be a rectangular with round corners, grey background and it should have an adjustable position.
403+
404+
* Raptor mini: The content of the footer should be different upon loggedin or not.
405+
If not logged in, it should say:
406+
Title Public View
407+
You are viewving this profile as a guest,
408+
And if logged in:
409+
Title: Logged in View
410+
You are logged in as nameOfLoggedIn user.
411+
412+
* Raptor mini: add a readme to the Footer component with example.

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@
2424
"types": "./dist/components/signupButton/index.d.ts",
2525
"import": "./dist/components/signupButton/index.esm.js",
2626
"require": "./dist/components/signupButton/index.js"
27+
},
28+
"./components/footer": {
29+
"types": "./dist/components/footer/index.d.ts",
30+
"import": "./dist/components/footer/index.esm.js",
31+
"require": "./dist/components/footer/index.js"
2732
}
2833
},
2934
"files": [
@@ -35,6 +40,7 @@
3540
"clean": "rm -rf ./dist ./src/versionInfo.ts ./docs/api .tsbuildinfo",
3641
"build": "npm run clean && npm run typecheck && npm run build-version && npm run build-dist && npm run build-js && npm run postbuild-js && npm run build-storybook",
3742
"build-version": "sh ./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
43+
"prebuild-js": "rm -f .tsbuildinfo",
3844
"build-js": "tsc",
3945
"postbuild-js": "rm -f dist/versionInfo.d.ts dist/versionInfo.d.ts.map && node scripts/build-component-dts.mjs",
4046
"build-dist": "webpack --progress",

src/icons/v2/clock.png

636 Bytes
Loading

src/icons/v2/close.png

342 Bytes
Loading

src/icons/v2/discord.png

902 Bytes
Loading

src/icons/v2/dribbble.png

1.49 KB
Loading

src/icons/v2/facebook.png

77.8 KB
Loading

src/icons/v2/folder.png

1.2 KB
Loading

src/icons/v2/graycamera.png

1.17 KB
Loading

src/icons/v2/graypaste.png

964 Bytes
Loading

0 commit comments

Comments
 (0)