@comercti/vue-components 0.11.0 → 0.12.0
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 +3 -3
- package/comerc-style-guide.es.js +1093 -1069
- package/comerc-style-guide.umd.js +3 -3
- package/index.d.ts +8 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -204,8 +204,8 @@ change: (value: boolean | CustomEvent<any>) => any;
|
|
|
204
204
|
onChange?: (value: boolean | CustomEvent<any>) => any;
|
|
205
205
|
}>, {
|
|
206
206
|
invalid: boolean;
|
|
207
|
-
disabled: boolean;
|
|
208
207
|
modelValue: boolean;
|
|
208
|
+
disabled: boolean;
|
|
209
209
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
210
210
|
rootRef: HTMLDivElement;
|
|
211
211
|
}, any>;
|
|
@@ -1713,9 +1713,9 @@ showValue: boolean;
|
|
|
1713
1713
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1714
1714
|
|
|
1715
1715
|
export declare const CeSvgIcon: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{}>, {
|
|
1716
|
-
fill: string;
|
|
1717
1716
|
size: number | string;
|
|
1718
1717
|
color: string;
|
|
1718
|
+
fill: string;
|
|
1719
1719
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1720
1720
|
|
|
1721
1721
|
export declare const CeTab: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
@@ -1914,11 +1914,15 @@ declare interface optsRadio {
|
|
|
1914
1914
|
|
|
1915
1915
|
declare type PaginationProps = {
|
|
1916
1916
|
/** Total de páginas */
|
|
1917
|
-
totalPages
|
|
1917
|
+
totalPages?: number;
|
|
1918
1918
|
/** Página atual */
|
|
1919
1919
|
currentPage: number;
|
|
1920
1920
|
/** Itens por página */
|
|
1921
|
-
itemsPerPage
|
|
1921
|
+
itemsPerPage?: number;
|
|
1922
|
+
/** totalItems + itemsPerPage, geram o total de páginas (alternativa ao totalPages) */
|
|
1923
|
+
totalItems?: number;
|
|
1924
|
+
/** Valor do currentPage para two-way binding (v-model) */
|
|
1925
|
+
modelValue?: number;
|
|
1922
1926
|
};
|
|
1923
1927
|
|
|
1924
1928
|
export declare const removeCeToast: (id: number) => void;
|