Skip to content

Commit

Permalink
Deploying to master from @ d496e64 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
preziu committed May 21, 2024
1 parent d496e64 commit 331e2bd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 128 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
import Divider from '../../Divider/Divider.vue';
declare const _default: {
name: string;
components: {
Divider: typeof Divider;
};
};
export default _default;
export declare function render(_ctx: any, _cache: any, $props: any, $setup: any, $data: any, $options: any): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>;
Original file line number Diff line number Diff line change
@@ -1,62 +1,3 @@
import Tile from '../../Tile';
declare const _default: {
name: string;
components: {
DsTile: typeof Tile;
};
props: {
interactive: {
type: BooleanConstructor;
default: boolean;
};
iconLeft: {
type: ObjectConstructor;
default: null;
validator(iconLeft: any): boolean;
};
iconRight: {
type: ObjectConstructor;
default: null;
validator(iconRight: any): boolean;
};
text: {
type: StringConstructor;
required: boolean;
};
eyebrowText: {
type: StringConstructor;
default: null;
};
additionalText: {
type: StringConstructor;
default: null;
};
color: {
type: StringConstructor;
default: "neutral";
validator(color: any): boolean;
};
isEyebrowTextUppercase: {
type: BooleanConstructor;
default: boolean;
};
state: {
type: StringConstructor;
default: "default";
validator(value: import("../../../utils/type.utils").Value<{
readonly DEFAULT: "default";
readonly DISABLED: "disabled";
readonly LOADING: "loading";
}>): boolean;
};
eyebrowEllipsis: {
type: BooleanConstructor;
default: boolean;
};
textEllipsis: {
type: BooleanConstructor;
default: boolean;
};
};
};
export default _default;
export declare function render(_ctx: any, _cache: any, $props: any, $setup: any, $data: any, $options: any): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>;
Original file line number Diff line number Diff line change
@@ -1,58 +1,3 @@
import { IconItem } from '../../Icons/Icon';
import SelectListItem from '../SelectListItem/SelectListItem.vue';
declare const _default: {
name: string;
components: {
SelectListItem: typeof SelectListItem;
};
props: {
iconOff: {
type: ObjectConstructor;
default: null;
validator(icon: any): boolean;
};
iconOn: {
type: ObjectConstructor;
default: null;
validator(icon: any): boolean;
};
isOn: {
type: BooleanConstructor;
default: boolean;
};
labelOff: {
type: StringConstructor;
required: boolean;
};
labelOn: {
type: StringConstructor;
required: boolean;
};
size: {
type: StringConstructor;
default: string;
validator(size: any): boolean;
};
state: {
type: StringConstructor;
default: string;
validator(size: any): boolean;
};
};
data(): {
SELECT_LIST_ITEM_SELECTION_MODE: Readonly<{
SELECT_ONLY: string;
TOGGLE: string;
}>;
SELECT_LIST_ITEM_STATES: Readonly<{
DEFAULT: string;
LOADING: string;
DISABLED: string;
}>;
};
computed: {
icon(): IconItem | null;
label(): string;
};
};
export default _default;
export declare function render(_ctx: any, _cache: any, $props: any, $setup: any, $data: any, $options: any): import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>;

0 comments on commit 331e2bd

Please sign in to comment.