revotech-ui-kit 0.0.29 → 0.0.30
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/revotech-ui-kit.js +1361 -1188
- package/dist/revotech-ui-kit.umd.cjs +235 -155
- package/dist/src/components/atoms/accordion/accordion.atoms.d.ts +1 -0
- package/dist/src/components/atoms/alert/alert.atom.d.ts +1 -0
- package/dist/src/components/atoms/aspect-ratio/aspect-ratio-atom.d.ts +1 -0
- package/dist/src/components/atoms/avatar/avatar-fallback.d.ts +5 -0
- package/dist/src/components/atoms/avatar/avatar-image.d.ts +5 -0
- package/dist/src/components/atoms/avatar/avatar.atom.d.ts +6 -0
- package/dist/src/components/atoms/badge/badge.atom.d.ts +2 -0
- package/dist/src/components/atoms/checkbox/checkbox.atom.d.ts +1 -0
- package/dist/src/components/atoms/collapsible/collapsible.atom.d.ts +1 -0
- package/dist/src/components/atoms/combobox/combo-box-item.d.ts +1 -1
- package/dist/src/components/atoms/command/command.atom.d.ts +1 -0
- package/dist/src/components/atoms/index.d.ts +3 -0
- package/dist/src/components/atoms/input/input.atom.d.ts +1 -1
- package/dist/src/components/atoms/textarea/textarea.atom.d.ts +1 -0
- package/dist/src/components/atoms/toast/toast.atom.d.ts +1 -0
- package/dist/src/components/atoms/toggle/toggle.atom.d.ts +1 -0
- package/dist/src/components/molecules/tabs/tab.molecules.d.ts +1 -0
- package/dist/src/components/molecules/toggle-group/toggle-group.molecules.d.ts +1 -0
- package/package.json +1 -1
@@ -5,6 +5,7 @@ import { AccordionContent } from './accordion-content';
|
|
5
5
|
import { ACCORDION_GROUP_TYPE } from './accordion.defs';
|
6
6
|
declare class Accordion extends BaseElement {
|
7
7
|
static styles: import("lit").CSSResult[];
|
8
|
+
twCLass: string;
|
8
9
|
type: ACCORDION_GROUP_TYPE;
|
9
10
|
selectedItems: string[];
|
10
11
|
protected getAttributesToExclude(): string[];
|
@@ -2,6 +2,7 @@ import { LitElement } from 'lit';
|
|
2
2
|
import { AlertTitle } from './alert-title';
|
3
3
|
import { AlertDescription } from './alert-description';
|
4
4
|
declare class Alert extends LitElement {
|
5
|
+
twCLass: string;
|
5
6
|
static styles: import("lit").CSSResult[];
|
6
7
|
static alertVairants: (props?: ({
|
7
8
|
variant?: "error" | "success" | "warning" | "info" | null | undefined;
|
@@ -1,5 +1,11 @@
|
|
1
1
|
import { LitElement } from 'lit';
|
2
2
|
export declare class Avatar extends LitElement {
|
3
3
|
static styles: import("lit").CSSResult[];
|
4
|
+
twCLass: string;
|
4
5
|
render(): import("lit-html").TemplateResult<1>;
|
5
6
|
}
|
7
|
+
declare global {
|
8
|
+
interface HTMLElementTagNameMap {
|
9
|
+
'rtg-avatar': Avatar;
|
10
|
+
}
|
11
|
+
}
|
@@ -4,7 +4,9 @@ export declare class Badge extends BaseElement {
|
|
4
4
|
static badgeVariants: (props?: ({
|
5
5
|
variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
|
6
6
|
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
7
|
+
twCLass: string;
|
7
8
|
variant: badgeType.BadgeVariant;
|
9
|
+
id: string;
|
8
10
|
static styles: import("lit").CSSResult[];
|
9
11
|
protected getAttributesToExclude(): string[];
|
10
12
|
render(): import("lit-html").TemplateResult<1>;
|
@@ -8,7 +8,7 @@ export declare class Input extends BaseElement {
|
|
8
8
|
placeholder: string;
|
9
9
|
defaultValue: string;
|
10
10
|
value: string;
|
11
|
-
|
11
|
+
twClass: string;
|
12
12
|
static styles: import("lit").CSSResult[];
|
13
13
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
14
14
|
handleInputChange(event: Event): void;
|
@@ -8,6 +8,7 @@ export declare class TextArea extends BaseElement {
|
|
8
8
|
rows: string;
|
9
9
|
cols: string;
|
10
10
|
value: string;
|
11
|
+
twCLass: string;
|
11
12
|
static styles: import("lit").CSSResult[];
|
12
13
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
13
14
|
handleInputChange(event: Event): void;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { BaseElement } from '../../../helpers';
|
2
2
|
import { TOGGLE_GROUP_TYPE, TOGGLE_GROUP_VARIANT, TOGGLE_GROUP_SIZE } from './toggle-group.defs';
|
3
3
|
declare class ToggleGroup extends BaseElement {
|
4
|
+
twClass: string;
|
4
5
|
disabled: boolean;
|
5
6
|
type: TOGGLE_GROUP_TYPE;
|
6
7
|
required: boolean;
|
package/package.json
CHANGED