@revotech-group/revotech-ui-kit 0.0.55 → 0.0.57
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 +2137 -1774
- package/dist/revotech-ui-kit.umd.cjs +342 -277
- package/dist/src/assets/icons/chart.icon.d.ts +1 -0
- package/dist/src/assets/icons/decrease.icon.d.ts +1 -0
- package/dist/src/assets/icons/index.d.ts +3 -0
- package/dist/src/assets/icons/plus.icon.d.ts +1 -0
- package/dist/src/components/atoms/drawer/drawer-close.d.ts +12 -0
- package/dist/src/components/atoms/drawer/drawer-content.d.ts +6 -0
- package/dist/src/components/atoms/drawer/drawer-description.d.ts +6 -0
- package/dist/src/components/atoms/drawer/drawer-footer.d.ts +5 -0
- package/dist/src/components/atoms/drawer/drawer-header.d.ts +7 -0
- package/dist/src/components/atoms/drawer/drawer-overlay.d.ts +5 -0
- package/dist/src/components/atoms/drawer/drawer-title.d.ts +6 -0
- package/dist/src/components/atoms/drawer/drawer-trigger.d.ts +8 -0
- package/dist/src/components/atoms/drawer/drawer.atom.d.ts +35 -0
- package/dist/src/components/atoms/drawer/drawer.stories.d.ts +4 -0
- package/dist/src/components/atoms/index.d.ts +1 -2
- package/dist/src/components/index.d.ts +2 -0
- package/dist/src/components/ui/index.d.ts +2 -0
- package/dist/src/components/{atoms/input/input.atom.d.ts → ui/input/input.d.ts} +3 -3
- package/dist/src/components/{atoms → ui}/input/input.stories.d.ts +2 -1
- package/dist/src/components/{atoms/label/label.atom.d.ts → ui/label/label.d.ts} +1 -1
- package/dist/src/components/widgets/index.d.ts +1 -0
- package/dist/src/components/widgets/light-sample-demo/light-sample.demo.d.ts +13 -0
- package/dist/src/helpers/index.d.ts +1 -0
- package/dist/src/helpers/shadow-wrapper.d.ts +8 -0
- package/dist/src/index.d.ts +2 -2
- package/package.json +1 -1
- /package/dist/src/components/{atoms → ui}/input/input.styles.d.ts +0 -0
- /package/dist/src/components/{atoms → ui}/input/input.type.d.ts +0 -0
- /package/dist/src/components/{atoms → ui}/label/label.stories.d.ts +0 -0
- /package/dist/src/components/{atoms → ui}/label/label.style.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function chartIcon(): import("lit-html").TemplateResult<2>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function decreaseIcon(): import("lit-html").TemplateResult<2>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function plusIcon(): import("lit-html").TemplateResult<2>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { LitElement, PropertyValueMap } from 'lit';
|
|
2
|
+
export declare class DrawerClose extends LitElement {
|
|
3
|
+
static styles: import("lit").CSSResult[];
|
|
4
|
+
private get _drawer();
|
|
5
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
6
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
7
|
+
}
|
|
8
|
+
declare global {
|
|
9
|
+
interface HTMLElementTagNameMap {
|
|
10
|
+
'rtg-drawer-close': DrawerClose;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { LitElement, PropertyValueMap } from 'lit';
|
|
2
|
+
export declare class DrawerTrigger extends LitElement {
|
|
3
|
+
static styles: import("lit").CSSResult[];
|
|
4
|
+
private get _drawer();
|
|
5
|
+
handleClick: () => void;
|
|
6
|
+
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
7
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { LitElement, PropertyValues } from 'lit';
|
|
2
|
+
import { DrawerContent } from './drawer-content';
|
|
3
|
+
import { DrawerClose } from './drawer-close';
|
|
4
|
+
import { DrawerFooter } from './drawer-footer';
|
|
5
|
+
import { DrawerHeader } from './drawer-header';
|
|
6
|
+
import { DrawerTitle } from './drawer-title';
|
|
7
|
+
import { DrawerOverlay } from './drawer-overlay';
|
|
8
|
+
import { DrawerTrigger } from './drawer-trigger';
|
|
9
|
+
import { DrawerDescription } from './drawer-description';
|
|
10
|
+
declare class Drawer extends LitElement {
|
|
11
|
+
static styles: import("lit").CSSResult[];
|
|
12
|
+
state: string;
|
|
13
|
+
private get _content();
|
|
14
|
+
connectedCallback(): void;
|
|
15
|
+
disconnectedCallback(): void;
|
|
16
|
+
protected updated(_changedProperties: PropertyValues): void;
|
|
17
|
+
private handleOutsideClick;
|
|
18
|
+
private setupOutsideClickHandler;
|
|
19
|
+
private removeOutsideClickHandler;
|
|
20
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
21
|
+
}
|
|
22
|
+
export { Drawer, DrawerContent, DrawerClose, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerTrigger, DrawerDescription, DrawerTitle, };
|
|
23
|
+
declare global {
|
|
24
|
+
interface HTMLElementTagNameMap {
|
|
25
|
+
'rtg-drawer': Drawer;
|
|
26
|
+
'rtg-drawer-trigger': DrawerTrigger;
|
|
27
|
+
'rtg-drawer-content': DrawerContent;
|
|
28
|
+
'rtg-drawer-close': DrawerClose;
|
|
29
|
+
'rtg-drawer-footer': DrawerFooter;
|
|
30
|
+
'rtg-drawer-header': DrawerHeader;
|
|
31
|
+
'rtg-drawer-overlay': DrawerOverlay;
|
|
32
|
+
'rtg-drawer-discription': DrawerDescription;
|
|
33
|
+
'rtg-drawer-title': DrawerTitle;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -27,8 +27,6 @@ export * from './dialog/dialog-overly';
|
|
|
27
27
|
export * from './dialog/dialog-trigger';
|
|
28
28
|
export * from './dropdown-menu/dropdown-menu.atom';
|
|
29
29
|
export * from './hoverCard/hover-card.atom';
|
|
30
|
-
export * from './input/input.atom';
|
|
31
|
-
export * from './label/label.atom';
|
|
32
30
|
export * from './popover/popover.atom';
|
|
33
31
|
export * from './radio-group/radio-group.atom';
|
|
34
32
|
export * from './select/select.atom';
|
|
@@ -47,3 +45,4 @@ export * from './carousel/carousel.atom';
|
|
|
47
45
|
export * from './calendar/calendar.atom';
|
|
48
46
|
export * from './date-picker/date-picker.atom';
|
|
49
47
|
export * from './progress/progress.atom';
|
|
48
|
+
export * from './drawer/drawer.atom';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PropertyValues } from 'lit';
|
|
2
2
|
import * as inputType from './input.type';
|
|
3
3
|
import { BaseElement } from '../../../helpers';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class RtgInput extends BaseElement {
|
|
5
5
|
constructor();
|
|
6
6
|
disabled: boolean;
|
|
7
7
|
type: inputType.InputType;
|
|
@@ -9,14 +9,14 @@ export declare class Input extends BaseElement {
|
|
|
9
9
|
defaultValue: string;
|
|
10
10
|
value: string;
|
|
11
11
|
twClass: string;
|
|
12
|
-
static styles: import("lit").CSSResult[];
|
|
13
12
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
14
13
|
handleInputChange(event: Event): void;
|
|
15
14
|
protected getAttributesToExclude(): string[];
|
|
15
|
+
protected createRenderRoot(): HTMLElement | DocumentFragment;
|
|
16
16
|
render(): import("lit-html").TemplateResult<1>;
|
|
17
17
|
}
|
|
18
18
|
declare global {
|
|
19
19
|
interface HTMLElementTagNameMap {
|
|
20
|
-
'rtg-input':
|
|
20
|
+
'rtg-input': RtgInput;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Meta, StoryFn } from '@storybook/web-components';
|
|
2
|
+
import { InputArgs } from './input.type';
|
|
2
3
|
declare const _default: Meta;
|
|
3
4
|
export default _default;
|
|
4
|
-
export declare const Input: StoryFn
|
|
5
|
+
export declare const Input: StoryFn<InputArgs>;
|
|
5
6
|
export declare const SpecificInput: StoryFn;
|
|
@@ -5,8 +5,8 @@ export declare class Label extends BaseElement {
|
|
|
5
5
|
for: string;
|
|
6
6
|
static styles: import("lit").CSSResult[];
|
|
7
7
|
protected firstUpdated(_changedProperties: PropertyValues): void;
|
|
8
|
-
private _onClick;
|
|
9
8
|
protected getAttributesToExclude(): string[];
|
|
9
|
+
protected createRenderRoot(): HTMLElement | DocumentFragment;
|
|
10
10
|
render(): import("lit-html").TemplateResult<1>;
|
|
11
11
|
}
|
|
12
12
|
declare global {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './light-sample-demo/light-sample.demo';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { BaseElement } from '../../../helpers';
|
|
2
|
+
export declare class LightSampleDemo extends BaseElement {
|
|
3
|
+
constructor();
|
|
4
|
+
protected getAttributesToExclude(): string[];
|
|
5
|
+
protected createRenderRoot(): HTMLElement | DocumentFragment;
|
|
6
|
+
inputValue: string;
|
|
7
|
+
render(): import("lit-html").TemplateResult<1>;
|
|
8
|
+
}
|
|
9
|
+
declare global {
|
|
10
|
+
interface HTMLElementTagNameMap {
|
|
11
|
+
'light-sample-demo': LightSampleDemo;
|
|
12
|
+
}
|
|
13
|
+
}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { Alert, AlertDescription, AlertTitle, Button, Badge,
|
|
2
|
-
export { Alert, AlertDescription, AlertTitle, Button, Badge,
|
|
1
|
+
import { Alert, AlertDescription, AlertTitle, Button, Badge, Card, CardTitle, CardHeader, CardFooter, CardDescription, CardContent, Checkbox, ComboBox, Dialog, DialogContent, DialogClose, DialogFooter, DialogHeader, DialogOverlay, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuCheckboxItem, DropdownMenuGroup, Popover, PopoverContent, PopoverTrigger, Toggle, ContextMenu, ContextMenuCheckboxItem, ContextMenuGroup, ContextMenuContent, ContextMenuItem, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, Select, SelectItem, SelectList, SelectLabel, SelectSeperator, Switch, RadioGroup, RadioGroupItem, Separator, AspectRatio, Menubar, MenubarContent, MenubarGroup, MenubarMenu, MenubarItem, MenubarRadioItem, MenubarCheckboxItem, MenubarSeparator, MenubarShortcut, NavigationMenu, NavigationMenuList, NavigationMenuItem, NavigationMenuContent, NavigationMenuLink, Pagination, PaginationContent, PaginationItem, PaginationLink, PaginationEllipsis, PaginationNext, PaginationPrevious, Carousel, Calendar, DatePicker, Progress, Drawer, DrawerContent, DrawerClose, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerTrigger, DrawerDescription, DrawerTitle, LightSampleDemo, RtgInput, Label } from './components';
|
|
2
|
+
export { Alert, AlertDescription, AlertTitle, Button, Badge, Card, CardTitle, CardHeader, CardFooter, CardDescription, CardContent, Checkbox, ComboBox, Dialog, DialogContent, DialogClose, DialogFooter, DialogHeader, DialogOverlay, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuCheckboxItem, DropdownMenuGroup, Popover, PopoverContent, PopoverTrigger, Toggle, ContextMenu, ContextMenuCheckboxItem, ContextMenuGroup, ContextMenuContent, ContextMenuItem, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, Select, SelectItem, SelectList, SelectLabel, SelectSeperator, Switch, RadioGroup, RadioGroupItem, Separator, AspectRatio, Menubar, MenubarContent, MenubarGroup, MenubarMenu, MenubarItem, MenubarRadioItem, MenubarCheckboxItem, MenubarSeparator, MenubarShortcut, NavigationMenu, NavigationMenuList, NavigationMenuItem, NavigationMenuContent, NavigationMenuLink, Pagination, PaginationContent, PaginationItem, PaginationLink, PaginationEllipsis, PaginationNext, PaginationPrevious, Carousel, Calendar, DatePicker, Progress, Drawer, DrawerContent, DrawerClose, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerTrigger, DrawerDescription, DrawerTitle, LightSampleDemo, RtgInput, Label, };
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|