mayak-common-library 0.0.136 → 0.0.138
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/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -9
- package/dist/index.mjs.map +1 -1
- package/next.config.mjs +11 -3
- package/package.json +2 -1
- package/tailwind.config.js +4 -0
package/dist/index.d.mts
CHANGED
|
@@ -154,6 +154,7 @@ type LanguageSlugsType = {
|
|
|
154
154
|
};
|
|
155
155
|
type outLinkType = 'viber' | 'telegram' | 'tel' | 'googleMaps' | 'mail' | 'link' | 'whatsapp';
|
|
156
156
|
type Site = 'kyiv' | 'dubai';
|
|
157
|
+
type TitlePosition$1 = 'center' | 'left';
|
|
157
158
|
|
|
158
159
|
interface IArticleContent {
|
|
159
160
|
title?: string;
|
|
@@ -171,7 +172,6 @@ interface IArticle {
|
|
|
171
172
|
slug?: string;
|
|
172
173
|
}
|
|
173
174
|
|
|
174
|
-
type TitlePosition$1 = 'center' | 'left';
|
|
175
175
|
interface IArticlesBlock {
|
|
176
176
|
title?: string;
|
|
177
177
|
classes?: string;
|
|
@@ -807,6 +807,7 @@ interface CustomButtonProps extends ButtonProps, PropsWithChildren {
|
|
|
807
807
|
declare const Button: FC<CustomButtonProps>;
|
|
808
808
|
|
|
809
809
|
interface CustomIconButtonProps extends IconButtonProps, PropsWithChildren {
|
|
810
|
+
isBlack?: boolean;
|
|
810
811
|
}
|
|
811
812
|
declare const IconButton: FC<CustomIconButtonProps>;
|
|
812
813
|
|
package/dist/index.d.ts
CHANGED
|
@@ -154,6 +154,7 @@ type LanguageSlugsType = {
|
|
|
154
154
|
};
|
|
155
155
|
type outLinkType = 'viber' | 'telegram' | 'tel' | 'googleMaps' | 'mail' | 'link' | 'whatsapp';
|
|
156
156
|
type Site = 'kyiv' | 'dubai';
|
|
157
|
+
type TitlePosition$1 = 'center' | 'left';
|
|
157
158
|
|
|
158
159
|
interface IArticleContent {
|
|
159
160
|
title?: string;
|
|
@@ -171,7 +172,6 @@ interface IArticle {
|
|
|
171
172
|
slug?: string;
|
|
172
173
|
}
|
|
173
174
|
|
|
174
|
-
type TitlePosition$1 = 'center' | 'left';
|
|
175
175
|
interface IArticlesBlock {
|
|
176
176
|
title?: string;
|
|
177
177
|
classes?: string;
|
|
@@ -807,6 +807,7 @@ interface CustomButtonProps extends ButtonProps, PropsWithChildren {
|
|
|
807
807
|
declare const Button: FC<CustomButtonProps>;
|
|
808
808
|
|
|
809
809
|
interface CustomIconButtonProps extends IconButtonProps, PropsWithChildren {
|
|
810
|
+
isBlack?: boolean;
|
|
810
811
|
}
|
|
811
812
|
declare const IconButton: FC<CustomIconButtonProps>;
|
|
812
813
|
|