@namba_one/ui-kit-2 1.0.272 → 1.0.276

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
@@ -7,6 +7,7 @@ import { ComponentOptionsBase } from 'vue';
7
7
  import { ComponentOptionsMixin } from 'vue';
8
8
  import { ComponentProvideOptions } from 'vue';
9
9
  import { ComponentPublicInstance } from 'vue';
10
+ import { ComputedRef } from 'vue';
10
11
  import { DebuggerEvent } from 'vue';
11
12
  import { DefineComponent } from 'vue';
12
13
  import { ExtractPropTypes } from 'vue';
@@ -4010,6 +4011,9 @@ export declare type PageInfoCellProps = {
4010
4011
  isShowDivider?: boolean;
4011
4012
  valueColor?: Color;
4012
4013
  isCopy?: boolean;
4014
+ isLink?: boolean;
4015
+ link?: string;
4016
+ linkTag?: 'a' | 'router-link';
4013
4017
  };
4014
4018
 
4015
4019
  export declare const PageInfoCellSkeleton: DefineComponent<PageInfoCellSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PageInfoCellSkeletonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
@@ -4240,6 +4244,21 @@ export declare type SelectProps = Pick<SelectBaseProps, 'label' | 'description'
4240
4244
  }[];
4241
4245
  };
4242
4246
 
4247
+ export declare const SidebarStepList: DefineComponent<SidebarStepListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4248
+ setStep: (value: number) => any;
4249
+ }, string, PublicProps, Readonly<SidebarStepListProps> & Readonly<{
4250
+ onSetStep?: ((value: number) => any) | undefined;
4251
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
4252
+
4253
+ export declare type SidebarStepListEmits = {
4254
+ (e: 'setStep', value: number): void;
4255
+ };
4256
+
4257
+ export declare type SidebarStepListProps = {
4258
+ steps: StepItem_2[];
4259
+ step: StepItem_2;
4260
+ };
4261
+
4243
4262
  declare const sizes: readonly ["title120", "title1", "title2", "title3", "headline", "body", "subhead", "caption"];
4244
4263
 
4245
4264
  declare const sizes_10: readonly ["28", "36", "40", "56", "120", 28, 36, 40, 56, 120];
@@ -4304,6 +4323,12 @@ export declare type StatusSelectSkeletonProps = {
4304
4323
 
4305
4324
  export declare const StepItem: DefineComponent<StepItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<StepItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
4306
4325
 
4326
+ declare type StepItem_2 = {
4327
+ key: string;
4328
+ label: string;
4329
+ isAvailable: boolean;
4330
+ };
4331
+
4307
4332
  export declare type StepItemProps = {
4308
4333
  count: number;
4309
4334
  text: string;
@@ -4771,6 +4796,25 @@ export declare type UserRowProps = {
4771
4796
 
4772
4797
  export declare const UserRowSkeleton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
4773
4798
 
4799
+ export declare const useSidebarStepper: (rawSteps: StepItem_2[]) => {
4800
+ steps: Ref< {
4801
+ key: string;
4802
+ label: string;
4803
+ isAvailable: boolean;
4804
+ }[], StepItem_2[] | {
4805
+ key: string;
4806
+ label: string;
4807
+ isAvailable: boolean;
4808
+ }[]>;
4809
+ step: ComputedRef< {
4810
+ key: string;
4811
+ label: string;
4812
+ isAvailable: boolean;
4813
+ }>;
4814
+ nextStep: () => void;
4815
+ setStep: (index: number) => void;
4816
+ };
4817
+
4774
4818
  export declare const useToaster: () => ToasterContext;
4775
4819
 
4776
4820
  declare type Value = ColorInput | undefined;