@namba_one/ui-kit-2 1.0.235 → 1.0.237

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/index.d.ts CHANGED
@@ -3229,6 +3229,17 @@ export declare type StepsProps = {
3229
3229
  list: StepItemProps['text'][];
3230
3230
  };
3231
3231
 
3232
+ export declare const Summary: DefineComponent<SummaryProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<SummaryProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3233
+
3234
+ export declare type SummaryProps = {
3235
+ data?: {
3236
+ type: 'text' | 'amount';
3237
+ value: string;
3238
+ label: string;
3239
+ }[];
3240
+ isLoading: boolean;
3241
+ };
3242
+
3232
3243
  export declare const Table: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
3233
3244
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & TableProps<T> & Partial<{}>> & PublicProps;
3234
3245
  expose(exposed: ShallowUnwrapRef< {}>): void;