@comercti/vue-components 0.24.0 → 0.25.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/index.d.ts CHANGED
@@ -152,6 +152,7 @@ openTheFirst: boolean;
152
152
  allOpen: boolean;
153
153
  direction: "row" | "column";
154
154
  closeCollapse: number | null;
155
+ openCollapse: number[] | null;
155
156
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
156
157
 
157
158
  declare const __VLS_component_23: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
@@ -160,8 +161,8 @@ close: (value: boolean) => any;
160
161
  onClose?: (value: boolean) => any;
161
162
  }>, {
162
163
  background: "white" | "green";
163
- rounded: boolean;
164
164
  position: "top" | "bottom";
165
+ rounded: boolean;
165
166
  isOpen: boolean;
166
167
  showIcon: boolean;
167
168
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
@@ -293,7 +294,7 @@ redirect: (item: ItensMenu_2) => any;
293
294
  onSelected?: (value: Coluna[]) => any;
294
295
  onRedirect?: (item: ItensMenu_2) => any;
295
296
  }>, {
296
- type: "menu" | "selection";
297
+ type: "menu" | "selection" | "button";
297
298
  background: "white" | "black";
298
299
  itemsMenu: ItensMenu_2[];
299
300
  itemsSelection: ItemsSelection[];
@@ -630,6 +631,7 @@ declare type __VLS_Props_27 = {
630
631
  closeCollapse?: number | null;
631
632
  disabled?: IFields;
632
633
  invalid?: number[];
634
+ openCollapse?: number[] | null;
633
635
  };
634
636
 
635
637
  declare type __VLS_Props_28 = {
@@ -1804,8 +1806,8 @@ updatePerPage: (value: number) => any;
1804
1806
  onUpdatePerPage?: (value: number) => any;
1805
1807
  }>, {
1806
1808
  disabled: boolean;
1807
- textDirection: "left" | "right";
1808
1809
  position: "top" | "bottom";
1810
+ textDirection: "left" | "right";
1809
1811
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
1810
1812
  menuRef: HTMLDivElement;
1811
1813
  referenceRef: HTMLButtonElement;
@@ -1854,7 +1856,10 @@ paginationPages: number;
1854
1856
 
1855
1857
  export declare const CeProgressIndicator: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1856
1858
 
1857
- export declare const CeProgressSteps: DefineComponent<IProgressStepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IProgressStepsProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1859
+ export declare const CeProgressSteps: DefineComponent<IProgressStepsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IProgressStepsProps> & Readonly<{}>, {
1860
+ position: "horizontal" | "vertical";
1861
+ showInitialStep: boolean;
1862
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1858
1863
 
1859
1864
  export declare const CeRadioGroup: DefineComponent<__VLS_Props_11, {
1860
1865
  /** Focus radio input */
@@ -2024,7 +2029,7 @@ declare interface DropdownProps {
2024
2029
  /** Define os itens do dropdown tipo seleção */
2025
2030
  itemsSelection?: ItemsSelection[];
2026
2031
  /** Define o tipo do dropdown */
2027
- type?: 'menu' | 'selection';
2032
+ type?: 'menu' | 'selection' | 'button';
2028
2033
  /** Define a cor de fundo */
2029
2034
  background?: 'white' | 'black';
2030
2035
  /** Permite redirecionamento */
@@ -2138,12 +2143,15 @@ declare interface IItems {
2138
2143
  title: string;
2139
2144
  description: string;
2140
2145
  status: keyof IStatus;
2146
+ showDescription?: boolean;
2141
2147
  }
2142
2148
 
2143
2149
  declare type IProgressStepsProps = {
2144
2150
  /** Define os itens que serão exibidos */
2145
2151
  items: IItems[];
2146
- variant?: 'primary' | 'secondary';
2152
+ position?: 'horizontal' | 'vertical';
2153
+ showInitialStep?: boolean;
2154
+ titleInitialStep?: string;
2147
2155
  };
2148
2156
 
2149
2157
  export declare const isMobile: Ref<boolean, boolean>;
@@ -2280,6 +2288,7 @@ declare interface SliderProps {
2280
2288
  showValue?: boolean;
2281
2289
  size?: 'small' | 'large';
2282
2290
  modelValue?: number | number[];
2291
+ showPercentage?: boolean;
2283
2292
  }
2284
2293
 
2285
2294
  declare interface SubMenu {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comercti/vue-components",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "types": "index.d.ts",
5
5
  "type": "module",
6
6
  "license": "private",