@revotech-group/revotech-ui-kit 0.1.26 → 0.1.28
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/library.css +1 -1
- package/dist/rtg-ui-kit.js +2364 -2300
- package/dist/rtg-ui-kit.umd.cjs +288 -278
- package/dist/src/components/ui/avatar/avatar-fallback.d.ts +2 -0
- package/dist/src/components/ui/avatar/avatar-image.d.ts +2 -0
- package/dist/src/components/ui/avatar/avatar.d.ts +2 -0
- package/dist/src/components/ui/card/card.d.ts +2 -0
- package/dist/src/components/ui/tabs/tab-contents.d.ts +2 -0
- package/dist/src/components/ui/tabs/tab-list.d.ts +2 -0
- package/dist/src/components/ui/tabs/tab-trigger.d.ts +2 -0
- package/dist/src/components/ui/tabs/tab.d.ts +2 -0
- package/package.json +1 -1
|
@@ -2,6 +2,8 @@ import { LitElement } from 'lit';
|
|
|
2
2
|
|
|
3
3
|
export declare class AvatarFallback extends LitElement {
|
|
4
4
|
protected createRenderRoot(): HTMLElement | DocumentFragment;
|
|
5
|
+
customClass: string;
|
|
6
|
+
customStyle: string;
|
|
5
7
|
render(): import('lit').TemplateResult<1>;
|
|
6
8
|
}
|
|
7
9
|
declare global {
|
|
@@ -3,6 +3,8 @@ import { LitElement } from 'lit';
|
|
|
3
3
|
export declare class AvatarImage extends LitElement {
|
|
4
4
|
alt: string;
|
|
5
5
|
src: string;
|
|
6
|
+
customClass: string;
|
|
7
|
+
customStyle: string;
|
|
6
8
|
protected createRenderRoot(): HTMLElement | DocumentFragment;
|
|
7
9
|
render(): import('lit').TemplateResult<1>;
|
|
8
10
|
}
|
|
@@ -4,6 +4,8 @@ import { AvatarImage } from './avatar-image';
|
|
|
4
4
|
|
|
5
5
|
declare class Avatar extends LitElement {
|
|
6
6
|
protected createRenderRoot(): HTMLElement | DocumentFragment;
|
|
7
|
+
customClass: string;
|
|
8
|
+
customStyle: string;
|
|
7
9
|
render(): import('lit').TemplateResult<1>;
|
|
8
10
|
}
|
|
9
11
|
export { Avatar, AvatarFallback, AvatarImage };
|
|
@@ -10,6 +10,8 @@ declare class Card extends BaseElement {
|
|
|
10
10
|
wrapperDivElement: HTMLDivElement;
|
|
11
11
|
protected createRenderRoot(): HTMLElement | DocumentFragment;
|
|
12
12
|
protected getAttributesToExclude(): string[];
|
|
13
|
+
customClass: string;
|
|
14
|
+
customStyle: string;
|
|
13
15
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
14
16
|
render(): import('lit').TemplateResult<1>;
|
|
15
17
|
}
|
|
@@ -4,6 +4,8 @@ import { Tab } from './tab';
|
|
|
4
4
|
|
|
5
5
|
declare class TabList extends BaseElement {
|
|
6
6
|
tabindex: number;
|
|
7
|
+
customClass: string;
|
|
8
|
+
customStyle: string;
|
|
7
9
|
get _tab(): Tab | null;
|
|
8
10
|
get _containerElement(): HTMLDivElement | null;
|
|
9
11
|
protected getAttributesToExclude(): string[];
|
|
@@ -7,6 +7,8 @@ declare class TabsTrigger extends BaseElement {
|
|
|
7
7
|
defaultValue: string;
|
|
8
8
|
value: string;
|
|
9
9
|
onClickCallback?: (tabValue: string) => void;
|
|
10
|
+
customClass: string;
|
|
11
|
+
customStyle: string;
|
|
10
12
|
get _tab(): Tab | null;
|
|
11
13
|
get _tabList(): TabList | null;
|
|
12
14
|
get _containerElement(): HTMLButtonElement | null;
|
|
@@ -7,6 +7,8 @@ import { TabContent } from './tab-contents';
|
|
|
7
7
|
declare class Tab extends BaseElement {
|
|
8
8
|
defaultValue: string;
|
|
9
9
|
tabindex: number;
|
|
10
|
+
customClass: string;
|
|
11
|
+
customStyle: string;
|
|
10
12
|
get _containerElement(): HTMLDivElement | null;
|
|
11
13
|
connectedCallback(): void;
|
|
12
14
|
disconnectedCallback(): void;
|
package/package.json
CHANGED