@namba_one/ui-kit-2 1.0.289 → 1.0.291

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
@@ -4770,6 +4770,26 @@ export declare type TableSimpleProps<T> = {
4770
4770
  responseButtonText?: string;
4771
4771
  };
4772
4772
 
4773
+ export declare const TabMenu: DefineComponent<TabMenuProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4774
+ click: () => any;
4775
+ }, string, PublicProps, Readonly<TabMenuProps> & Readonly<{
4776
+ onClick?: (() => any) | undefined;
4777
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
4778
+
4779
+ export declare type TabMenuEmits = {
4780
+ (event: 'click'): void;
4781
+ };
4782
+
4783
+ export declare type TabMenuProps = {
4784
+ icon: IconName;
4785
+ text: string;
4786
+ tag?: 'button' | 'a' | 'router-link';
4787
+ href?: string;
4788
+ isActive?: boolean;
4789
+ isCollapsed?: boolean;
4790
+ weight?: TheTextProps['weight'];
4791
+ };
4792
+
4773
4793
  export declare const Tabs: DefineComponent<__VLS_PublicProps_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4774
4794
  "update:value": (value: Maybe<string | number> | undefined) => any;
4775
4795
  }, string, PublicProps, Readonly<__VLS_PublicProps_21> & Readonly<{
@@ -4830,6 +4850,66 @@ export declare const ThemePickerSkeleton: DefineComponent< {}, {}, {}, {}, {}
4830
4850
 
4831
4851
  export declare const TheText: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
4832
4852
 
4853
+ export declare const TheTextHighlight: DefineComponent<TheTextHighlightProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TheTextHighlightProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
4854
+ textRef: ({
4855
+ $: ComponentInternalInstance;
4856
+ $data: {};
4857
+ $props: {
4858
+ readonly tag?: tags_2[number] | undefined;
4859
+ readonly size?: sizes[number] | undefined;
4860
+ readonly align?: aligns[number] | undefined;
4861
+ readonly weight?: weights[number] | undefined;
4862
+ readonly color?: (Color | "inherit") | undefined;
4863
+ readonly numberOfLines?: (number | string) | undefined;
4864
+ readonly isMono?: boolean | undefined;
4865
+ readonly isCrossOut?: boolean | undefined;
4866
+ readonly isPreLine?: boolean | undefined;
4867
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
4868
+ $attrs: {
4869
+ [x: string]: unknown;
4870
+ };
4871
+ $refs: {
4872
+ [x: string]: unknown;
4873
+ };
4874
+ $slots: Readonly<{
4875
+ [name: string]: Slot<any> | undefined;
4876
+ }>;
4877
+ $root: ComponentPublicInstance | null;
4878
+ $parent: ComponentPublicInstance | null;
4879
+ $host: Element | null;
4880
+ $emit: (event: string, ...args: any[]) => void;
4881
+ $el: any;
4882
+ $options: ComponentOptionsBase<Readonly<TheTextProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
4883
+ beforeCreate?: (() => void) | (() => void)[];
4884
+ created?: (() => void) | (() => void)[];
4885
+ beforeMount?: (() => void) | (() => void)[];
4886
+ mounted?: (() => void) | (() => void)[];
4887
+ beforeUpdate?: (() => void) | (() => void)[];
4888
+ updated?: (() => void) | (() => void)[];
4889
+ activated?: (() => void) | (() => void)[];
4890
+ deactivated?: (() => void) | (() => void)[];
4891
+ beforeDestroy?: (() => void) | (() => void)[];
4892
+ beforeUnmount?: (() => void) | (() => void)[];
4893
+ destroyed?: (() => void) | (() => void)[];
4894
+ unmounted?: (() => void) | (() => void)[];
4895
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
4896
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
4897
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
4898
+ };
4899
+ $forceUpdate: () => void;
4900
+ $nextTick: nextTick;
4901
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
4902
+ } & Readonly<{}> & Omit<Readonly<TheTextProps> & Readonly<{}>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
4903
+ $slots: {
4904
+ default?(_: {}): any;
4905
+ };
4906
+ }) | null;
4907
+ }, any>;
4908
+
4909
+ export declare type TheTextHighlightProps = TheTextProps & {
4910
+ highlight?: Maybe<string>;
4911
+ };
4912
+
4833
4913
  export declare type TheTextProps = {
4834
4914
  tag?: (typeof tags_2)[number];
4835
4915
  size?: (typeof sizes)[number];