-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to master from @ 2ff24cf 🚀
- Loading branch information
Showing
8 changed files
with
24 additions
and
455 deletions.
There are no files selected for viewing
7 changes: 3 additions & 4 deletions
7
dist/lib/js/components/Drawer/DrawerContent/DrawerContent.vue.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
declare const _default: { | ||
name: 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; | ||
}>; |
23 changes: 3 additions & 20 deletions
23
dist/lib/js/components/Drawer/DrawerDivider/DrawerDivider.vue.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,3 @@ | ||
import Divider from '../../Divider'; | ||
declare const _default: { | ||
name: string; | ||
components: { | ||
DsDivider: typeof Divider; | ||
}; | ||
props: { | ||
prominence: { | ||
type: StringConstructor; | ||
default: string; | ||
validator: (value: string) => boolean; | ||
}; | ||
size: { | ||
type: StringConstructor; | ||
default: string; | ||
validator: (value: string) => 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; | ||
}>; |
7 changes: 3 additions & 4 deletions
7
dist/lib/js/components/Drawer/DrawerListItemGroup/DrawerListItemGroup.vue.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
declare const _default: { | ||
name: 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; | ||
}>; |
233 changes: 3 additions & 230 deletions
233
dist/lib/js/components/Drawer/DrawerSection/DrawerSection.vue.d.ts
Large diffs are not rendered by default.
Oops, something went wrong.
66 changes: 3 additions & 63 deletions
66
dist/lib/js/components/Drawer/DrawerTile/DrawerTile.vue.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,3 @@ | ||
import Tile from '../../Tile/Tile.vue'; | ||
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; | ||
}; | ||
}; | ||
emits: 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; | ||
}>; |
65 changes: 3 additions & 62 deletions
65
dist/lib/js/components/SelectList/SelectListItemTile/SelectListItemTile.vue.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}>; |
61 changes: 3 additions & 58 deletions
61
dist/lib/js/components/SelectList/SelectListItemToggle/SelectListItemToggle.vue.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}>; |
17 changes: 3 additions & 14 deletions
17
dist/lib/js/components/SelectList/SelectListSectionTitle/SelectListSectionTitle.vue.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,3 @@ | ||
declare const _default: { | ||
name: string; | ||
props: { | ||
label: { | ||
type: StringConstructor; | ||
required: boolean; | ||
}; | ||
isUppercase: { | ||
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; | ||
}>; |