globuswebcomponents 2.0.8 → 2.0.9
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/cjs/{gb-action-panel_30.cjs.entry.js → gb-action-panel_32.cjs.entry.js} +61 -2
- package/dist/cjs/gb-action-panel_32.cjs.entry.js.map +1 -0
- package/dist/cjs/globuscomponents.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/gb-toast/gb-toast.css +12 -12
- package/dist/collection/components/gb-toast/gb-toast.js +50 -47
- package/dist/collection/components/gb-toast/gb-toast.js.map +1 -1
- package/dist/components/gb-toast.js +13 -47
- package/dist/components/gb-toast.js.map +1 -1
- package/dist/docs.json +50 -3
- package/dist/esm/{gb-action-panel_30.entry.js → gb-action-panel_32.entry.js} +60 -3
- package/dist/esm/gb-action-panel_32.entry.js.map +1 -0
- package/dist/esm/globuscomponents.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/globuscomponents/globuscomponents.esm.js +1 -1
- package/dist/globuscomponents/{p-ca725644.entry.js → p-05419395.entry.js} +2 -2
- package/dist/globuscomponents/p-05419395.entry.js.map +1 -0
- package/dist/types/components/gb-toast/gb-toast.d.ts +2 -3
- package/dist/types/components.d.ts +4 -0
- package/package.json +1 -1
- package/dist/cjs/gb-action-panel_30.cjs.entry.js.map +0 -1
- package/dist/cjs/gb-toast-button.cjs.entry.js +0 -25
- package/dist/cjs/gb-toast-button.cjs.entry.js.map +0 -1
- package/dist/cjs/gb-toast-button.entry.cjs.js.map +0 -1
- package/dist/cjs/gb-toast.cjs.entry.js +0 -85
- package/dist/cjs/gb-toast.cjs.entry.js.map +0 -1
- package/dist/cjs/gb-toast.entry.cjs.js.map +0 -1
- package/dist/esm/gb-action-panel_30.entry.js.map +0 -1
- package/dist/esm/gb-toast-button.entry.js +0 -23
- package/dist/esm/gb-toast-button.entry.js.map +0 -1
- package/dist/esm/gb-toast.entry.js +0 -83
- package/dist/esm/gb-toast.entry.js.map +0 -1
- package/dist/globuscomponents/gb-toast-button.entry.esm.js.map +0 -1
- package/dist/globuscomponents/gb-toast.entry.esm.js.map +0 -1
- package/dist/globuscomponents/p-3dad4e91.entry.js +0 -2
- package/dist/globuscomponents/p-3dad4e91.entry.js.map +0 -1
- package/dist/globuscomponents/p-89aeb93c.entry.js +0 -2
- package/dist/globuscomponents/p-89aeb93c.entry.js.map +0 -1
- package/dist/globuscomponents/p-ca725644.entry.js.map +0 -1
|
@@ -2,6 +2,8 @@ import { EventEmitter } from '../../stencil-public-runtime';
|
|
|
2
2
|
import { BreakPoints, GeneralColors } from '../../models/reusableModels';
|
|
3
3
|
export declare class GbToast {
|
|
4
4
|
color: GeneralColors;
|
|
5
|
+
mainText: string;
|
|
6
|
+
supportingText: string;
|
|
5
7
|
size: 'floating' | 'full_width';
|
|
6
8
|
breakpoint: BreakPoints;
|
|
7
9
|
icon: string;
|
|
@@ -15,9 +17,6 @@ export declare class GbToast {
|
|
|
15
17
|
close: EventEmitter<void>;
|
|
16
18
|
onColorChange(newValue: GeneralColors, _oldValue: GeneralColors): void;
|
|
17
19
|
componentWillLoad(): void;
|
|
18
|
-
getMainColorClasses(): "main_text_default" | "main_text_gray" | "main_text_information" | "main_text_error" | "main_text_warning" | "main_text_success";
|
|
19
|
-
getSupportingColorClasses(): "supporting_text_default" | "supporting_text_gray" | "supporting_text_information" | "supporting_text_error" | "supporting_text_warning" | "supporting_text_success";
|
|
20
20
|
closeToast(): void;
|
|
21
|
-
componentDidLoad(): void;
|
|
22
21
|
render(): any;
|
|
23
22
|
}
|
|
@@ -738,8 +738,10 @@ export namespace Components {
|
|
|
738
738
|
"breakpoint": BreakPoints;
|
|
739
739
|
"color": GeneralColors;
|
|
740
740
|
"icon": string;
|
|
741
|
+
"mainText": string;
|
|
741
742
|
"showSupportingText": boolean;
|
|
742
743
|
"size": 'floating' | 'full_width';
|
|
744
|
+
"supportingText": string;
|
|
743
745
|
"xCloseButton": boolean;
|
|
744
746
|
}
|
|
745
747
|
interface GbToastButton {
|
|
@@ -2840,11 +2842,13 @@ declare namespace LocalJSX {
|
|
|
2840
2842
|
"breakpoint"?: BreakPoints;
|
|
2841
2843
|
"color"?: GeneralColors;
|
|
2842
2844
|
"icon"?: string;
|
|
2845
|
+
"mainText"?: string;
|
|
2843
2846
|
"onClose"?: (event: GbToastCustomEvent<void>) => void;
|
|
2844
2847
|
"onDismiss"?: (event: GbToastCustomEvent<void>) => void;
|
|
2845
2848
|
"onViewChanges"?: (event: GbToastCustomEvent<void>) => void;
|
|
2846
2849
|
"showSupportingText"?: boolean;
|
|
2847
2850
|
"size"?: 'floating' | 'full_width';
|
|
2851
|
+
"supportingText"?: string;
|
|
2848
2852
|
"xCloseButton"?: boolean;
|
|
2849
2853
|
}
|
|
2850
2854
|
interface GbToastButton {
|