@comercti/react-components-hmg 0.32.11 → 0.32.13
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/comerc-style-guide.cjs.js +2 -2
- package/comerc-style-guide.es.js +213 -209
- package/comerc-style-guide.umd.js +2 -2
- package/index.d.ts +14 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -39,6 +39,8 @@ fields: string[];
|
|
|
39
39
|
style?: Record<string, string>;
|
|
40
40
|
class?: string;
|
|
41
41
|
};
|
|
42
|
+
backgroundPagination: "transparent" | `#${string}` | `rgb(${string})` | `rgba(${string})`;
|
|
43
|
+
backgroundTitle: "transparent" | `#${string}` | `rgb(${string})` | `rgba(${string})`;
|
|
42
44
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
43
45
|
rootRef: HTMLDivElement;
|
|
44
46
|
}, HTMLDivElement>;
|
|
@@ -1818,6 +1820,8 @@ declare interface Coluna {
|
|
|
1818
1820
|
value: string;
|
|
1819
1821
|
}
|
|
1820
1822
|
|
|
1823
|
+
declare type CSSColor = HexColor | RgbColor | RgbaColor | 'transparent';
|
|
1824
|
+
|
|
1821
1825
|
declare type DataTableProps = {
|
|
1822
1826
|
/** Array utilizado no header da tabela
|
|
1823
1827
|
*
|
|
@@ -1865,6 +1869,10 @@ declare type DataTableProps = {
|
|
|
1865
1869
|
style?: Record<string, string>;
|
|
1866
1870
|
class?: string;
|
|
1867
1871
|
};
|
|
1872
|
+
/** Define o estilo de fundo do slot de paginação */
|
|
1873
|
+
backgroundPagination?: CSSColor;
|
|
1874
|
+
/** Define o estilo de fundo da area superior da tabela */
|
|
1875
|
+
backgroundTitle?: CSSColor;
|
|
1868
1876
|
};
|
|
1869
1877
|
|
|
1870
1878
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -2182,6 +2190,8 @@ declare type Header = {
|
|
|
2182
2190
|
width?: string;
|
|
2183
2191
|
};
|
|
2184
2192
|
|
|
2193
|
+
declare type HexColor = `#${string}`;
|
|
2194
|
+
|
|
2185
2195
|
declare interface IBreadcrumbsProps {
|
|
2186
2196
|
/** Define o ponto de partida do breadcrumbs */
|
|
2187
2197
|
home: string;
|
|
@@ -2409,6 +2419,10 @@ declare interface Props_2 {
|
|
|
2409
2419
|
|
|
2410
2420
|
export declare const removeCeToast: (id: number) => void;
|
|
2411
2421
|
|
|
2422
|
+
declare type RgbaColor = `rgba(${string})`;
|
|
2423
|
+
|
|
2424
|
+
declare type RgbColor = `rgb(${string})`;
|
|
2425
|
+
|
|
2412
2426
|
declare interface SelectOption {
|
|
2413
2427
|
label?: string;
|
|
2414
2428
|
value?: string | number | boolean | null;
|