@factoringplus/pl-components-pack-v3 1.9.5-pre-05-banner → 1.9.5-pre-06-banner
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.
@@ -16,10 +16,36 @@ import { TBannerProps, ICustomColors } from './types';
|
|
16
16
|
* @property customColors - Пользовательские цвета для баннера (используется, если тип 'custom')
|
17
17
|
*/
|
18
18
|
export declare const PlBanner: SFCWithInstall<typeof Banner>;
|
19
|
+
/**
|
20
|
+
* Свойства баннера.
|
21
|
+
*
|
22
|
+
* @property type - Тип баннера: определяет стиль отображения. Может быть:
|
23
|
+
* 'info' | 'interactive' | 'success' | 'warning' | 'critical' | 'custom'
|
24
|
+
* @property title - Заголовок баннера
|
25
|
+
* @property description - Описание или дополнительный текст баннера
|
26
|
+
* @property buttonText - Текст кнопки действия
|
27
|
+
* @property icon - Иконка, отображаемая в баннере
|
28
|
+
* @property width - Ширина баннера (CSS-значение, например '100%', '400px')
|
29
|
+
* @property closeButton - Показывать ли кнопку закрытия (крестик)
|
30
|
+
* @property customColors - Пользовательские цвета для баннера (используется, если тип 'custom')
|
31
|
+
*/
|
19
32
|
export default PlBanner;
|
20
33
|
export type { TBannerProps, ICustomColors };
|
21
34
|
declare module 'vue' {
|
22
35
|
interface GlobalComponents {
|
36
|
+
/**
|
37
|
+
* Свойства баннера.
|
38
|
+
*
|
39
|
+
* @property type - Тип баннера: определяет стиль отображения. Может быть:
|
40
|
+
* 'info' | 'interactive' | 'success' | 'warning' | 'critical' | 'custom'
|
41
|
+
* @property title - Заголовок баннера
|
42
|
+
* @property description - Описание или дополнительный текст баннера
|
43
|
+
* @property buttonText - Текст кнопки действия
|
44
|
+
* @property icon - Иконка, отображаемая в баннере
|
45
|
+
* @property width - Ширина баннера (CSS-значение, например '100%', '400px')
|
46
|
+
* @property closeButton - Показывать ли кнопку закрытия (крестик)
|
47
|
+
* @property customColors - Пользовательские цвета для баннера (используется, если тип 'custom')
|
48
|
+
*/
|
23
49
|
PlBanner: typeof PlBanner;
|
24
50
|
}
|
25
51
|
}
|