Skip to content

Commit c477313

Browse files
temp remoced breadcrumb
1 parent 55ca513 commit c477313

File tree

12 files changed

+1
-742
lines changed

12 files changed

+1
-742
lines changed

packages/components/src/components.d.ts

Lines changed: 0 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -98,30 +98,6 @@ export namespace Components {
9898
*/
9999
"type": BannerType;
100100
}
101-
interface PostBreadcrumbItem {
102-
/**
103-
* The optional URL to which the breadcrumb item will link.
104-
*/
105-
"url"?: string | URL;
106-
}
107-
interface PostBreadcrumbs {
108-
/**
109-
* The URL for the home breadcrumb item.
110-
*/
111-
"homeUrl": string;
112-
/**
113-
* The accessible label for the breadcrumb component.
114-
*/
115-
"textBreadcrumbs": string;
116-
/**
117-
* The text label for the home breadcrumb item.
118-
*/
119-
"textHome": string;
120-
/**
121-
* The accessible label for the breadcrumb menu when breadcrumb items are concatenated.
122-
*/
123-
"textMoreItems": string;
124-
}
125101
interface PostClosebutton {
126102
/**
127103
* The "type" attribute used for the close button
@@ -745,18 +721,6 @@ declare global {
745721
prototype: HTMLPostBannerElement;
746722
new (): HTMLPostBannerElement;
747723
};
748-
interface HTMLPostBreadcrumbItemElement extends Components.PostBreadcrumbItem, HTMLStencilElement {
749-
}
750-
var HTMLPostBreadcrumbItemElement: {
751-
prototype: HTMLPostBreadcrumbItemElement;
752-
new (): HTMLPostBreadcrumbItemElement;
753-
};
754-
interface HTMLPostBreadcrumbsElement extends Components.PostBreadcrumbs, HTMLStencilElement {
755-
}
756-
var HTMLPostBreadcrumbsElement: {
757-
prototype: HTMLPostBreadcrumbsElement;
758-
new (): HTMLPostBreadcrumbsElement;
759-
};
760724
interface HTMLPostClosebuttonElement extends Components.PostClosebutton, HTMLStencilElement {
761725
}
762726
var HTMLPostClosebuttonElement: {
@@ -1063,8 +1027,6 @@ declare global {
10631027
"post-avatar": HTMLPostAvatarElement;
10641028
"post-back-to-top": HTMLPostBackToTopElement;
10651029
"post-banner": HTMLPostBannerElement;
1066-
"post-breadcrumb-item": HTMLPostBreadcrumbItemElement;
1067-
"post-breadcrumbs": HTMLPostBreadcrumbsElement;
10681030
"post-closebutton": HTMLPostClosebuttonElement;
10691031
"post-collapsible": HTMLPostCollapsibleElement;
10701032
"post-collapsible-trigger": HTMLPostCollapsibleTriggerElement;
@@ -1164,30 +1126,6 @@ declare namespace LocalJSX {
11641126
*/
11651127
"type"?: BannerType;
11661128
}
1167-
interface PostBreadcrumbItem {
1168-
/**
1169-
* The optional URL to which the breadcrumb item will link.
1170-
*/
1171-
"url"?: string | URL;
1172-
}
1173-
interface PostBreadcrumbs {
1174-
/**
1175-
* The URL for the home breadcrumb item.
1176-
*/
1177-
"homeUrl": string;
1178-
/**
1179-
* The accessible label for the breadcrumb component.
1180-
*/
1181-
"textBreadcrumbs": string;
1182-
/**
1183-
* The text label for the home breadcrumb item.
1184-
*/
1185-
"textHome": string;
1186-
/**
1187-
* The accessible label for the breadcrumb menu when breadcrumb items are concatenated.
1188-
*/
1189-
"textMoreItems": string;
1190-
}
11911129
interface PostClosebutton {
11921130
/**
11931131
* The "type" attribute used for the close button
@@ -1708,15 +1646,6 @@ declare namespace LocalJSX {
17081646
interface PostBannerAttributes {
17091647
"type": BannerType;
17101648
}
1711-
interface PostBreadcrumbItemAttributes {
1712-
"url": string | URL;
1713-
}
1714-
interface PostBreadcrumbsAttributes {
1715-
"homeUrl": string;
1716-
"textHome": string;
1717-
"textBreadcrumbs": string;
1718-
"textMoreItems": string;
1719-
}
17201649
interface PostClosebuttonAttributes {
17211650
"buttonType": ButtonType;
17221651
"placement": Placement;
@@ -1863,8 +1792,6 @@ declare namespace LocalJSX {
18631792
"post-avatar": Omit<PostAvatar, keyof PostAvatarAttributes> & { [K in keyof PostAvatar & keyof PostAvatarAttributes]?: PostAvatar[K] } & { [K in keyof PostAvatar & keyof PostAvatarAttributes as `attr:${K}`]?: PostAvatarAttributes[K] } & { [K in keyof PostAvatar & keyof PostAvatarAttributes as `prop:${K}`]?: PostAvatar[K] } & OneOf<"firstname", PostAvatar["firstname"], PostAvatarAttributes["firstname"]>;
18641793
"post-back-to-top": Omit<PostBackToTop, keyof PostBackToTopAttributes> & { [K in keyof PostBackToTop & keyof PostBackToTopAttributes]?: PostBackToTop[K] } & { [K in keyof PostBackToTop & keyof PostBackToTopAttributes as `attr:${K}`]?: PostBackToTopAttributes[K] } & { [K in keyof PostBackToTop & keyof PostBackToTopAttributes as `prop:${K}`]?: PostBackToTop[K] } & OneOf<"textBackToTop", PostBackToTop["textBackToTop"], PostBackToTopAttributes["textBackToTop"]>;
18651794
"post-banner": Omit<PostBanner, keyof PostBannerAttributes> & { [K in keyof PostBanner & keyof PostBannerAttributes]?: PostBanner[K] } & { [K in keyof PostBanner & keyof PostBannerAttributes as `attr:${K}`]?: PostBannerAttributes[K] } & { [K in keyof PostBanner & keyof PostBannerAttributes as `prop:${K}`]?: PostBanner[K] };
1866-
"post-breadcrumb-item": Omit<PostBreadcrumbItem, keyof PostBreadcrumbItemAttributes> & { [K in keyof PostBreadcrumbItem & keyof PostBreadcrumbItemAttributes]?: PostBreadcrumbItem[K] } & { [K in keyof PostBreadcrumbItem & keyof PostBreadcrumbItemAttributes as `attr:${K}`]?: PostBreadcrumbItemAttributes[K] } & { [K in keyof PostBreadcrumbItem & keyof PostBreadcrumbItemAttributes as `prop:${K}`]?: PostBreadcrumbItem[K] };
1867-
"post-breadcrumbs": Omit<PostBreadcrumbs, keyof PostBreadcrumbsAttributes> & { [K in keyof PostBreadcrumbs & keyof PostBreadcrumbsAttributes]?: PostBreadcrumbs[K] } & { [K in keyof PostBreadcrumbs & keyof PostBreadcrumbsAttributes as `attr:${K}`]?: PostBreadcrumbsAttributes[K] } & { [K in keyof PostBreadcrumbs & keyof PostBreadcrumbsAttributes as `prop:${K}`]?: PostBreadcrumbs[K] } & OneOf<"homeUrl", PostBreadcrumbs["homeUrl"], PostBreadcrumbsAttributes["homeUrl"]> & OneOf<"textHome", PostBreadcrumbs["textHome"], PostBreadcrumbsAttributes["textHome"]> & OneOf<"textBreadcrumbs", PostBreadcrumbs["textBreadcrumbs"], PostBreadcrumbsAttributes["textBreadcrumbs"]> & OneOf<"textMoreItems", PostBreadcrumbs["textMoreItems"], PostBreadcrumbsAttributes["textMoreItems"]>;
18681795
"post-closebutton": Omit<PostClosebutton, keyof PostClosebuttonAttributes> & { [K in keyof PostClosebutton & keyof PostClosebuttonAttributes]?: PostClosebutton[K] } & { [K in keyof PostClosebutton & keyof PostClosebuttonAttributes as `attr:${K}`]?: PostClosebuttonAttributes[K] } & { [K in keyof PostClosebutton & keyof PostClosebuttonAttributes as `prop:${K}`]?: PostClosebutton[K] };
18691796
"post-collapsible": Omit<PostCollapsible, keyof PostCollapsibleAttributes> & { [K in keyof PostCollapsible & keyof PostCollapsibleAttributes]?: PostCollapsible[K] } & { [K in keyof PostCollapsible & keyof PostCollapsibleAttributes as `attr:${K}`]?: PostCollapsibleAttributes[K] } & { [K in keyof PostCollapsible & keyof PostCollapsibleAttributes as `prop:${K}`]?: PostCollapsible[K] };
18701797
"post-collapsible-trigger": Omit<PostCollapsibleTrigger, keyof PostCollapsibleTriggerAttributes> & { [K in keyof PostCollapsibleTrigger & keyof PostCollapsibleTriggerAttributes]?: PostCollapsibleTrigger[K] } & { [K in keyof PostCollapsibleTrigger & keyof PostCollapsibleTriggerAttributes as `attr:${K}`]?: PostCollapsibleTriggerAttributes[K] } & { [K in keyof PostCollapsibleTrigger & keyof PostCollapsibleTriggerAttributes as `prop:${K}`]?: PostCollapsibleTrigger[K] } & OneOf<"for", PostCollapsibleTrigger["for"], PostCollapsibleTriggerAttributes["for"]>;
@@ -1908,8 +1835,6 @@ declare module "@stencil/core" {
19081835
"post-avatar": LocalJSX.IntrinsicElements["post-avatar"] & JSXBase.HTMLAttributes<HTMLPostAvatarElement>;
19091836
"post-back-to-top": LocalJSX.IntrinsicElements["post-back-to-top"] & JSXBase.HTMLAttributes<HTMLPostBackToTopElement>;
19101837
"post-banner": LocalJSX.IntrinsicElements["post-banner"] & JSXBase.HTMLAttributes<HTMLPostBannerElement>;
1911-
"post-breadcrumb-item": LocalJSX.IntrinsicElements["post-breadcrumb-item"] & JSXBase.HTMLAttributes<HTMLPostBreadcrumbItemElement>;
1912-
"post-breadcrumbs": LocalJSX.IntrinsicElements["post-breadcrumbs"] & JSXBase.HTMLAttributes<HTMLPostBreadcrumbsElement>;
19131838
"post-closebutton": LocalJSX.IntrinsicElements["post-closebutton"] & JSXBase.HTMLAttributes<HTMLPostClosebuttonElement>;
19141839
"post-collapsible": LocalJSX.IntrinsicElements["post-collapsible"] & JSXBase.HTMLAttributes<HTMLPostCollapsibleElement>;
19151840
"post-collapsible-trigger": LocalJSX.IntrinsicElements["post-collapsible-trigger"] & JSXBase.HTMLAttributes<HTMLPostCollapsibleTriggerElement>;

packages/components/src/components/post-breadcrumb-item/post-breadcrumb-item.scss

Lines changed: 0 additions & 53 deletions
This file was deleted.

packages/components/src/components/post-breadcrumb-item/post-breadcrumb-item.tsx

Lines changed: 0 additions & 78 deletions
This file was deleted.

packages/components/src/components/post-breadcrumb-item/readme.md

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)