@rxdrag/website-lib 0.0.95 → 0.0.97

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdrag/website-lib",
3
- "version": "0.0.95",
3
+ "version": "0.0.97",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./index.ts"
@@ -25,17 +25,17 @@
25
25
  "gsap": "^3.12.7",
26
26
  "typescript": "^5",
27
27
  "@rxdrag/rxcms-models": "0.3.94",
28
- "@rxdrag/entify-hooks": "0.2.76",
29
28
  "@rxdrag/slate-preview": "1.2.61",
30
29
  "@rxdrag/tsconfig": "0.2.0",
31
- "@rxdrag/eslint-config-custom": "0.2.12"
30
+ "@rxdrag/eslint-config-custom": "0.2.12",
31
+ "@rxdrag/entify-hooks": "0.2.76"
32
32
  },
33
33
  "dependencies": {
34
34
  "clsx": "^2.1.0",
35
35
  "react": "^19.1.0",
36
36
  "react-dom": "^19.1.0",
37
37
  "@rxdrag/rxcms-models": "0.3.94",
38
- "@rxdrag/website-lib-core": "0.0.93"
38
+ "@rxdrag/website-lib-core": "0.0.96"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "astro": "^4.0.0 || ^5.0.0"
@@ -13,10 +13,13 @@ interface Props {
13
13
  animation?: AnimationConfig;
14
14
  }
15
15
 
16
- const { className, class: originalClass, backgrounds } = Astro.props;
16
+ const { className, class: originalClass, backgrounds, ...rest } = Astro.props;
17
17
  ---
18
18
 
19
- <div class:list={["w-full, h-full flex flex-col", className, originalClass]}>
19
+ <div
20
+ class:list={["w-full, h-full flex flex-col", className, originalClass]}
21
+ {...rest}
22
+ >
20
23
  <BackgroundGroup backgrounds={backgrounds} />
21
24
  <slot />
22
25
  </div>
@@ -29,7 +29,7 @@ const {
29
29
  } = Astro.props;
30
30
  ---
31
31
 
32
- <footer class:list={["footer-block", className, originalClass]}>
32
+ <footer class:list={["footer-block relative", className, originalClass]}>
33
33
  <BackgroundGroup backgrounds={backgrounds} />
34
34
  {
35
35
  disableContainer ? (