enjanga-components-library 1.0.43 → 1.0.45
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/README.md +1 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +26830 -14966
- package/dist/index.mjs +26830 -14966
- package/dist/styles.css +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -102,7 +102,7 @@ This library’s styles follow a **three-tier structure** for clarity and mainta
|
|
|
102
102
|
```scss
|
|
103
103
|
@use 'enjanga-core-setup/styles' as core;
|
|
104
104
|
```
|
|
105
|
-
- Example usage: `core.$spacing-03
|
|
105
|
+
- Example usage: `core.$spacing-03`.
|
|
106
106
|
|
|
107
107
|
2. **Global (library-wide styles in `src/styles/global/`)**
|
|
108
108
|
- Apply across components (e.g., typography, skeleton loading animation, utilities).
|
package/dist/index.d.mts
CHANGED
|
@@ -57,13 +57,15 @@ declare const BNN_roleOpt: readonly ["banner", "presentation", "none"];
|
|
|
57
57
|
type BNN_roleOptPropsType = (typeof BNN_roleOpt)[number];
|
|
58
58
|
interface BNN_propsType {
|
|
59
59
|
id?: string;
|
|
60
|
+
style?: React.CSSProperties;
|
|
60
61
|
className?: string;
|
|
61
62
|
featuredText: FTX_propsType;
|
|
63
|
+
imgBgUrl?: string | null;
|
|
62
64
|
isHuge?: boolean;
|
|
63
65
|
role?: BNN_roleOptPropsType;
|
|
64
66
|
}
|
|
65
67
|
|
|
66
|
-
declare const Banner: ({ id, className, featuredText, isHuge, role, }: BNN_propsType) => react_jsx_runtime.JSX.Element;
|
|
68
|
+
declare const Banner: ({ id, style, className, featuredText, imgBgUrl, isHuge, role, }: BNN_propsType) => react_jsx_runtime.JSX.Element;
|
|
67
69
|
|
|
68
70
|
interface CBNN_propsType {
|
|
69
71
|
btnText: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -57,13 +57,15 @@ declare const BNN_roleOpt: readonly ["banner", "presentation", "none"];
|
|
|
57
57
|
type BNN_roleOptPropsType = (typeof BNN_roleOpt)[number];
|
|
58
58
|
interface BNN_propsType {
|
|
59
59
|
id?: string;
|
|
60
|
+
style?: React.CSSProperties;
|
|
60
61
|
className?: string;
|
|
61
62
|
featuredText: FTX_propsType;
|
|
63
|
+
imgBgUrl?: string | null;
|
|
62
64
|
isHuge?: boolean;
|
|
63
65
|
role?: BNN_roleOptPropsType;
|
|
64
66
|
}
|
|
65
67
|
|
|
66
|
-
declare const Banner: ({ id, className, featuredText, isHuge, role, }: BNN_propsType) => react_jsx_runtime.JSX.Element;
|
|
68
|
+
declare const Banner: ({ id, style, className, featuredText, imgBgUrl, isHuge, role, }: BNN_propsType) => react_jsx_runtime.JSX.Element;
|
|
67
69
|
|
|
68
70
|
interface CBNN_propsType {
|
|
69
71
|
btnText: string;
|