revotech-ui-kit 0.0.32 → 0.0.34

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.
Files changed (36) hide show
  1. package/dist/revotech-ui-kit.js +4351 -3746
  2. package/dist/revotech-ui-kit.umd.cjs +896 -934
  3. package/dist/src/components/atoms/accordion/accordion-content.d.ts +5 -2
  4. package/dist/src/components/atoms/accordion/accordion-trigger.d.ts +6 -2
  5. package/dist/src/components/atoms/combobox/combo-box-empty.d.ts +11 -0
  6. package/dist/src/components/atoms/combobox/combo-box-group.d.ts +25 -0
  7. package/dist/src/components/atoms/combobox/combo-box-input.d.ts +9 -4
  8. package/dist/src/components/atoms/combobox/combo-box-item.d.ts +10 -6
  9. package/dist/src/components/atoms/combobox/combo-box-trigger.d.ts +15 -0
  10. package/dist/src/components/atoms/combobox/combo-box-value.d.ts +18 -0
  11. package/dist/src/components/atoms/combobox/combo-box.atom.d.ts +3 -8
  12. package/dist/src/components/atoms/combobox/combo-box.stories.d.ts +0 -1
  13. package/dist/src/components/atoms/hoverCard/hover-card-content.d.ts +6 -0
  14. package/dist/src/components/atoms/hoverCard/hover-card.atom.d.ts +6 -0
  15. package/dist/src/components/atoms/index.d.ts +17 -14
  16. package/dist/src/components/atoms/radio-group/radio-group.atom.d.ts +1 -0
  17. package/dist/src/components/atoms/select/select-group.d.ts +23 -0
  18. package/dist/src/components/atoms/select/select-item.d.ts +15 -5
  19. package/dist/src/components/atoms/select/select-label.d.ts +5 -0
  20. package/dist/src/components/atoms/select/select-seperator.d.ts +2 -1
  21. package/dist/src/components/atoms/select/select-trigger.d.ts +15 -0
  22. package/dist/src/components/atoms/select/select-value.d.ts +18 -0
  23. package/dist/src/components/atoms/select/select.atom.d.ts +6 -18
  24. package/dist/src/components/atoms/select/select.stories.d.ts +0 -1
  25. package/dist/src/components/atoms/seperator/separator.atom.d.ts +1 -0
  26. package/dist/src/components/atoms/switch/switch.atom.d.ts +1 -0
  27. package/dist/src/components/atoms/textarea/textarea.atom.d.ts +5 -0
  28. package/dist/src/components/atoms/toast/toast-action.d.ts +5 -0
  29. package/dist/src/components/atoms/toast/toast-description.d.ts +5 -0
  30. package/dist/src/components/atoms/toast/toast-title.d.ts +5 -0
  31. package/dist/src/components/atoms/toast/toast-view-port.d.ts +5 -0
  32. package/dist/src/components/atoms/toast/toast.atom.d.ts +5 -0
  33. package/dist/src/helpers/genrate-uuid.helper.d.ts +1 -0
  34. package/dist/src/helpers/index.d.ts +1 -0
  35. package/package.json +1 -1
  36. package/dist/src/components/atoms/combobox/combo-box-list.d.ts +0 -15
@@ -1,11 +1,14 @@
1
1
  import { LitElement, PropertyValues } from 'lit-element';
2
- import { Accordion } from './accordion.atoms';
2
+ import { Accordion, AccordionItem } from './accordion.atoms';
3
3
  declare class AccordionContent extends LitElement {
4
4
  value: string;
5
5
  selectedValue: string;
6
6
  static styles: import("lit-element").CSSResult[];
7
- get _accordion(): Accordion | null;
8
7
  protected updated(_changedProperties: PropertyValues): void;
8
+ protected firstUpdated(_changedProperties: PropertyValues): void;
9
+ get _accordion(): Accordion | null;
10
+ get _item(): AccordionItem | null;
11
+ hasActiveState(): Boolean;
9
12
  render(): import("lit-html").TemplateResult<1>;
10
13
  }
11
14
  export { AccordionContent };
@@ -1,11 +1,15 @@
1
+ import { PropertyValues } from 'lit-element';
1
2
  import { BaseElement } from '../../../helpers';
3
+ import { Accordion, AccordionItem } from './accordion.atoms';
2
4
  declare class AccordionTrigger extends BaseElement {
3
- defaultValue: string;
4
- value: string;
5
5
  onClickCallback?: (tabValue: string) => void;
6
6
  static styles: import("lit-element").CSSResult[];
7
7
  connectedCallback(): void;
8
+ protected firstUpdated(_changedProperties: PropertyValues): void;
8
9
  protected getAttributesToExclude(): string[];
10
+ get _accordion(): Accordion | null;
11
+ get _item(): AccordionItem | null;
12
+ hasActiveState(): Boolean;
9
13
  render(): import("lit-html").TemplateResult<1>;
10
14
  }
11
15
  export { AccordionTrigger };
@@ -0,0 +1,11 @@
1
+ import { LitElement } from 'lit';
2
+ declare class ComboBoxEmpty extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ render(): import("lit-html").TemplateResult<1>;
5
+ }
6
+ export { ComboBoxEmpty };
7
+ declare global {
8
+ interface HTMLElementTagNameMap {
9
+ 'rtg-combo-box-empty': ComboBoxEmpty;
10
+ }
11
+ }
@@ -0,0 +1,25 @@
1
+ import { LitElement, PropertyValues } from 'lit';
2
+ import { ComboBox } from './combo-box.atom';
3
+ declare class ComboBoxGroup extends LitElement {
4
+ static styles: import("lit").CSSResult[];
5
+ private childrenArray;
6
+ searchKey: string;
7
+ focusedIndex: number;
8
+ selectedValue: string;
9
+ get _comboBox(): ComboBox | null;
10
+ connectedCallback(): void;
11
+ protected firstUpdated(_changedProperties: PropertyValues): void;
12
+ protected updated(_changedProperties: PropertyValues): void;
13
+ disconnectedCallback(): void;
14
+ onSelectedValue(value: string, index: number): void;
15
+ handleKeyDown(event: KeyboardEvent): void;
16
+ handleMouseOver(event: Event, index: number): void;
17
+ checkRender: () => import("lit-html").TemplateResult<1> | import("lit-html").TemplateResult<1>[];
18
+ render(): import("lit-html").TemplateResult<1>;
19
+ }
20
+ export { ComboBoxGroup };
21
+ declare global {
22
+ interface HTMLElementTagNameMap {
23
+ 'rtg-combo-box-group': ComboBoxGroup;
24
+ }
25
+ }
@@ -1,11 +1,16 @@
1
1
  import { LitElement } from 'lit';
2
- export declare class ComboBoxInput extends LitElement {
3
- value: string;
4
- handleClick: () => void;
5
- handleKeyDown: () => void;
2
+ import { ComboBoxGroup } from './combo-box-group';
3
+ declare class ComboBoxInput extends LitElement {
6
4
  static styles: import("lit").CSSResult[];
5
+ placeholder: string;
6
+ twClass: string;
7
+ searchValue: string;
8
+ get _comboBoxGroup(): ComboBoxGroup | null;
9
+ handleSearch(event: Event): void;
10
+ handleKeyDown(event: Event): void;
7
11
  render(): import("lit-html").TemplateResult<1>;
8
12
  }
13
+ export { ComboBoxInput };
9
14
  declare global {
10
15
  interface HTMLElementTagNameMap {
11
16
  'rtg-combo-box-input': ComboBoxInput;
@@ -1,14 +1,18 @@
1
- import { LitElement } from 'lit';
2
- export declare class ComboBoxItem extends LitElement {
3
- key: string;
4
- searchText: string;
1
+ import { BaseElement } from '../../../helpers';
2
+ export declare class ComboBoxItem extends BaseElement {
5
3
  value: string;
4
+ key: string;
6
5
  tabindex: number;
7
6
  isSelected: boolean;
8
- twClass: string;
9
- onSelect: () => void;
7
+ isFocus: boolean;
8
+ class: string;
9
+ selectItemIndex: number;
10
+ onSelect: (_value: string, _index: number) => void;
11
+ onMouseOver: (_event: Event, _index: number) => void;
10
12
  static styles: import("lit").CSSResult[];
13
+ protected getAttributesToExclude(): string[];
11
14
  connectedCallback(): void;
15
+ handleClick: (event: Event) => void;
12
16
  render(): import("lit-html").TemplateResult<1>;
13
17
  }
14
18
  declare global {
@@ -0,0 +1,15 @@
1
+ import { LitElement, PropertyValues } from 'lit';
2
+ import { ComboBox } from './combo-box.atom';
3
+ declare class ComboBoxTrigger extends LitElement {
4
+ static styles: import("lit").CSSResult[];
5
+ get _comboBox(): ComboBox | null;
6
+ protected firstUpdated(_changedProperties: PropertyValues): void;
7
+ handleClick: () => void;
8
+ render(): import("lit-html").TemplateResult<1>;
9
+ }
10
+ export { ComboBoxTrigger };
11
+ declare global {
12
+ interface HTMLElementTagNameMap {
13
+ 'rtg-combo-box-trigger': ComboBoxTrigger;
14
+ }
15
+ }
@@ -0,0 +1,18 @@
1
+ import { LitElement, PropertyValues } from 'lit';
2
+ import { ComboBox } from './combo-box.atom';
3
+ declare class ComboBoxValue extends LitElement {
4
+ placeholder: string;
5
+ static styles: import("lit").CSSResult[];
6
+ get _comboBox(): ComboBox | null;
7
+ connectedCallback(): void;
8
+ protected firstUpdated(_changedProperties: PropertyValues): void;
9
+ handleClick: () => void;
10
+ renderLabel: () => string;
11
+ render(): import("lit-html").TemplateResult<1>;
12
+ }
13
+ export { ComboBoxValue };
14
+ declare global {
15
+ interface HTMLElementTagNameMap {
16
+ 'rtg-combo-box-value': ComboBoxValue;
17
+ }
18
+ }
@@ -1,25 +1,20 @@
1
1
  import { LitElement, PropertyValues } from 'lit';
2
2
  declare class ComboBox extends LitElement {
3
3
  static styles: import("lit").CSSResult[];
4
- comboBoxid: `${string}-${string}-${string}-${string}-${string}`;
5
4
  isOpen: boolean;
6
5
  selectedValue: string;
7
6
  searchTerm: string;
8
7
  focusedIndex: number;
9
8
  filteredItems: string[];
9
+ uuid: string;
10
10
  label: string;
11
11
  items: never[];
12
12
  connectedCallback(): void;
13
- disconnectedCallback(): void;
14
13
  protected firstUpdated(_changedProperties: PropertyValues): void;
15
14
  updated(changedProps: PropertyValues): void;
16
- toggleDropdown(): void;
17
- selectItem(event: Event): void;
18
15
  handleClickOutside: (e: MouseEvent) => void;
19
- handleSearch(event: Event): void;
20
- handleKeyDown(event: KeyboardEvent): void;
21
- handleMouseOver(event: Event, index: number): void;
22
- updateFocus(): void;
16
+ disconnectedCallback(): void;
17
+ selectItem(event: Event): void;
23
18
  render(): import("lit-html").TemplateResult<1>;
24
19
  }
25
20
  export { ComboBox };
@@ -2,4 +2,3 @@ import type { Meta, StoryFn } from '@storybook/web-components';
2
2
  declare const _default: Meta;
3
3
  export default _default;
4
4
  export declare const basicComboBox: StoryFn;
5
- export declare const emptyComboBox: StoryFn;
@@ -1,6 +1,7 @@
1
1
  import { LitElement, PropertyValues } from 'lit';
2
2
  export declare class HoverContent extends LitElement {
3
3
  static styles: import("lit").CSSResult[];
4
+ twClass: string;
4
5
  state: string;
5
6
  isOpen: boolean;
6
7
  connectedCallback(): void;
@@ -9,3 +10,8 @@ export declare class HoverContent extends LitElement {
9
10
  handleHoverEnter(event: MouseEvent): void;
10
11
  render(): import("lit-html").TemplateResult<1>;
11
12
  }
13
+ declare global {
14
+ interface HTMLElementTagNameMap {
15
+ 'rtg-hover-card-content': HoverContent;
16
+ }
17
+ }
@@ -1,6 +1,7 @@
1
1
  import { LitElement, PropertyValues } from 'lit';
2
2
  export declare class HoverCard extends LitElement {
3
3
  static styles: import("lit").CSSResult[];
4
+ twClass: string;
4
5
  isOpen: boolean;
5
6
  handleMouseEnter(): void;
6
7
  handleMouseLeave(): void;
@@ -10,3 +11,8 @@ export declare class HoverCard extends LitElement {
10
11
  disconnectedCallback(): void;
11
12
  render(): import("lit-html").TemplateResult<1>;
12
13
  }
14
+ declare global {
15
+ interface HTMLElementTagNameMap {
16
+ 'rtg-hover-card': HoverCard;
17
+ }
18
+ }
@@ -1,11 +1,15 @@
1
+ export * from './accordion/accordion.atoms';
2
+ export * from './alert/alert.atom';
3
+ export * from './aspect-ratio/aspect-ratio-atom';
1
4
  export * from './avatar/avatar.atom';
2
5
  export * from './avatar/avatar-fallback';
3
6
  export * from './avatar/avatar-image';
4
7
  export * from './button/button.atom';
8
+ export * from './badge/badge.atom';
9
+ export * from './card/card.atom';
10
+ export * from './collapsible/collapsible.atom';
5
11
  export * from './checkbox/checkbox.atom';
6
- export * from './dialog/dialog.atom';
7
- export * from './input/input.atom';
8
- export * from './label/label.atom';
12
+ export * from './context-menu/context-menu.atom';
9
13
  export * from './command/command.atom';
10
14
  export * from './command/command-empty.atom';
11
15
  export * from './command/command-group.atom';
@@ -13,19 +17,18 @@ export * from './command/command-input.atom';
13
17
  export * from './command/command-item.atom';
14
18
  export * from './command/command-list.atom';
15
19
  export * from './command/command-separator.atom';
16
- export * from './card/card.atom';
17
- export * from './popover/popover.atom';
18
- export * from './alert/alert.atom';
19
- export * from './badge/badge.atom';
20
20
  export * from './combobox/combo-box.atom';
21
+ export * from './dialog/dialog.atom';
21
22
  export * from './dropdown-menu/dropdown-menu.atom';
22
- export * from './toggle/toggle.atom';
23
- export * from './context-menu/context-menu.atom';
24
- export * from './select/select.atom';
25
- export * from './switch/switch.atom';
23
+ export * from './hoverCard/hover-card.atom';
24
+ export * from './input/input.atom';
25
+ export * from './label/label.atom';
26
+ export * from './popover/popover.atom';
26
27
  export * from './radio-group/radio-group.atom';
27
- export * from './accordion/accordion.atoms';
28
+ export * from './select/select.atom';
28
29
  export * from './seperator/separator.atom';
30
+ export * from './switch/switch.atom';
31
+ export * from './textarea/textarea.atom';
32
+ export * from './toast/toast.atom';
33
+ export * from './toggle/toggle.atom';
29
34
  export * from './sample-demo/sample-demo';
30
- export * from './collapsible/collapsible.atom';
31
- export * from './aspect-ratio/aspect-ratio-atom';
@@ -2,6 +2,7 @@ import { LitElement } from 'lit';
2
2
  import { RadioGroupItem } from './radio-group-item';
3
3
  declare class RadioGroup extends LitElement {
4
4
  static styles: import("lit").CSSResult[];
5
+ twClass: string;
5
6
  connectedCallback(): void;
6
7
  private _handleRadioSelected;
7
8
  render(): import("lit-html").TemplateResult<1>;
@@ -0,0 +1,23 @@
1
+ import { LitElement, PropertyValues } from 'lit';
2
+ import { Select } from './select.atom';
3
+ declare class SelectGroup extends LitElement {
4
+ static styles: import("lit").CSSResult[];
5
+ private childrenArray;
6
+ focusedIndex: number;
7
+ selectedValue: string;
8
+ get _select(): Select | null;
9
+ connectedCallback(): void;
10
+ disconnectedCallback(): void;
11
+ protected firstUpdated(_changedProperties: PropertyValues): void;
12
+ protected updated(_changedProperties: PropertyValues): void;
13
+ onSelectedValue(value: string, index: number): void;
14
+ handleKeyDown(event: KeyboardEvent): void;
15
+ handleMouseOver(event: Event, index: number): void;
16
+ render(): import("lit-html").TemplateResult<1>;
17
+ }
18
+ export { SelectGroup };
19
+ declare global {
20
+ interface HTMLElementTagNameMap {
21
+ 'rtg-select-group': SelectGroup;
22
+ }
23
+ }
@@ -1,12 +1,22 @@
1
- import { LitElement } from 'lit';
2
- export declare class SelectItem extends LitElement {
3
- key: string;
4
- searchText: string;
1
+ import { BaseElement } from '../../../helpers';
2
+ declare class SelectItem extends BaseElement {
5
3
  value: string;
4
+ key: string;
6
5
  tabindex: number;
7
6
  isSelected: boolean;
7
+ isFocus: boolean;
8
8
  class: string;
9
- onSelect: () => void;
9
+ selectItemIndex: number;
10
+ onSelect: (_value: string, _index: number) => void;
11
+ onMouseOver: (_event: Event, _index: number) => void;
10
12
  static styles: import("lit").CSSResult[];
13
+ protected getAttributesToExclude(): string[];
14
+ handleClick: (event: Event) => void;
11
15
  render(): import("lit-html").TemplateResult<1>;
12
16
  }
17
+ export { SelectItem };
18
+ declare global {
19
+ interface HTMLElementTagNameMap {
20
+ 'rtg-select-item': SelectItem;
21
+ }
22
+ }
@@ -3,3 +3,8 @@ export declare class SelectLabel extends LitElement {
3
3
  static styles: import("lit").CSSResult[];
4
4
  render(): import("lit-html").TemplateResult<1>;
5
5
  }
6
+ declare global {
7
+ interface HTMLElementTagNameMap {
8
+ 'rtg-select-label': SelectLabel;
9
+ }
10
+ }
@@ -1,5 +1,5 @@
1
1
  import { LitElement } from 'lit';
2
- export declare class SelectSeperator extends LitElement {
2
+ declare class SelectSeperator extends LitElement {
3
3
  _id: string;
4
4
  _hidden: string;
5
5
  private static _counter;
@@ -7,3 +7,4 @@ export declare class SelectSeperator extends LitElement {
7
7
  private get identifier();
8
8
  render(): import("lit-html").TemplateResult<1>;
9
9
  }
10
+ export { SelectSeperator };
@@ -0,0 +1,15 @@
1
+ import { LitElement, PropertyValues } from 'lit';
2
+ import { Select } from './select.atom';
3
+ declare class SelectTrigger extends LitElement {
4
+ static styles: import("lit").CSSResult[];
5
+ get _select(): Select | null;
6
+ protected firstUpdated(_changedProperties: PropertyValues): void;
7
+ handleClick: () => void;
8
+ render(): import("lit-html").TemplateResult<1>;
9
+ }
10
+ export { SelectTrigger };
11
+ declare global {
12
+ interface HTMLElementTagNameMap {
13
+ 'rtg-select-trigger': SelectTrigger;
14
+ }
15
+ }
@@ -0,0 +1,18 @@
1
+ import { LitElement, PropertyValues } from 'lit';
2
+ import { Select } from './select.atom';
3
+ declare class SelectValue extends LitElement {
4
+ placeholder: string;
5
+ static styles: import("lit").CSSResult[];
6
+ get _select(): Select | null;
7
+ connectedCallback(): void;
8
+ protected firstUpdated(_changedProperties: PropertyValues): void;
9
+ handleClick: () => void;
10
+ renderLabel: () => string;
11
+ render(): import("lit-html").TemplateResult<1>;
12
+ }
13
+ export { SelectValue };
14
+ declare global {
15
+ interface HTMLElementTagNameMap {
16
+ 'rtg-select-value': SelectValue;
17
+ }
18
+ }
@@ -3,34 +3,22 @@ import { SelectItem } from './select-item';
3
3
  import { SelectList } from './select-list';
4
4
  import { SelectLabel } from './select-label';
5
5
  import { SelectSeperator } from './select-seperator';
6
+ import { SelectTrigger } from './select-trigger';
7
+ import { SelectGroup } from './select-group';
8
+ import { SelectValue } from './select-value';
6
9
  declare class Select extends LitElement {
7
10
  static styles: import("lit").CSSResult[];
8
11
  isOpen: boolean;
9
- selectedValue: string;
10
- searchTerm: string;
11
- focusedIndex: number;
12
- filteredItems: string[];
13
- label: string;
14
- items: never[];
12
+ selectedValue: any;
13
+ uuid: string;
15
14
  connectedCallback(): void;
16
- disconnectedCallback(): void;
17
15
  updated(changedProps: PropertyValues): void;
18
- protected firstUpdated(_changedProperties: PropertyValues): void;
19
16
  handleClickOutside: (e: MouseEvent) => void;
20
- toggleDropdown(): void;
21
- selectItem(event: Event): void;
22
- handleInputClick(): void;
23
- handleKeyDown(event: KeyboardEvent): void;
24
- handleMouseOver(event: Event, index: number): void;
25
17
  render(): import("lit-html").TemplateResult<1>;
26
18
  }
27
- export { Select, SelectItem, SelectList, SelectLabel, SelectSeperator };
19
+ export { Select, SelectGroup, SelectValue, SelectItem, SelectList, SelectLabel, SelectSeperator, SelectTrigger, };
28
20
  declare global {
29
21
  interface HTMLElementTagNameMap {
30
22
  'rtg-select': Select;
31
- 'rtg-select-list': SelectList;
32
- 'rtg-select-item': SelectItem;
33
- 'rtg-select-label': SelectLabel;
34
- 'rtg-select-seperator': SelectSeperator;
35
23
  }
36
24
  }
@@ -2,4 +2,3 @@ import type { Meta, StoryFn } from '@storybook/web-components';
2
2
  declare const _default: Meta;
3
3
  export default _default;
4
4
  export declare const basicSelect: StoryFn;
5
- export declare const emptySelect: StoryFn;
@@ -2,6 +2,7 @@ import { BaseElement } from '../../../helpers';
2
2
  import { SEPARATOR_ORIENTATION } from './separator.defs';
3
3
  export declare class Separator extends BaseElement {
4
4
  orientation: SEPARATOR_ORIENTATION;
5
+ twClass: string;
5
6
  static styles: import("lit").CSSResult[];
6
7
  protected getAttributesToExclude(): string[];
7
8
  render(): import("lit-html").TemplateResult<1>;
@@ -2,6 +2,7 @@ import { LitElement } from 'lit';
2
2
  export declare class Switch extends LitElement {
3
3
  checked: boolean;
4
4
  disabled: boolean;
5
+ twClass: string;
5
6
  static styles: import("lit").CSSResult[];
6
7
  private _toggleChecked;
7
8
  render(): import("lit-html").TemplateResult<1>;
@@ -15,3 +15,8 @@ export declare class TextArea extends BaseElement {
15
15
  protected getAttributesToExclude(): string[];
16
16
  render(): import("lit-html").TemplateResult<1>;
17
17
  }
18
+ declare global {
19
+ interface HTMLElementTagNameMap {
20
+ 'rtg-textarea': TextArea;
21
+ }
22
+ }
@@ -12,3 +12,8 @@ export declare class ToastAction extends LitElement {
12
12
  };
13
13
  render(): import("lit-html").TemplateResult<1>;
14
14
  }
15
+ declare global {
16
+ interface HTMLElementTagNameMap {
17
+ 'rtg-toast-action': ToastAction;
18
+ }
19
+ }
@@ -3,3 +3,8 @@ export declare class ToastDescription extends LitElement {
3
3
  static styles: import("lit").CSSResult[];
4
4
  render(): import("lit-html").TemplateResult<1>;
5
5
  }
6
+ declare global {
7
+ interface HTMLElementTagNameMap {
8
+ 'rtg-toast-description': ToastDescription;
9
+ }
10
+ }
@@ -3,3 +3,8 @@ export declare class ToastTitle extends LitElement {
3
3
  static styles: import("lit").CSSResult[];
4
4
  render(): import("lit-html").TemplateResult<1>;
5
5
  }
6
+ declare global {
7
+ interface HTMLElementTagNameMap {
8
+ 'rtg-toast-title': ToastTitle;
9
+ }
10
+ }
@@ -10,3 +10,8 @@ export declare class ToastViewPort extends LitElement {
10
10
  private handleCloseButtonClick;
11
11
  render(): import("lit-html").TemplateResult<1>;
12
12
  }
13
+ declare global {
14
+ interface HTMLElementTagNameMap {
15
+ 'rtg-toast-view-port': ToastViewPort;
16
+ }
17
+ }
@@ -9,3 +9,8 @@ export declare class Toast extends LitElement {
9
9
  protected updated(_changedProperties: PropertyValues): void;
10
10
  render(): import("lit-html").TemplateResult<1>;
11
11
  }
12
+ declare global {
13
+ interface HTMLElementTagNameMap {
14
+ 'rtg-toast': Toast;
15
+ }
16
+ }
@@ -0,0 +1 @@
1
+ export declare function generateUUID(): string;
@@ -1,3 +1,4 @@
1
1
  export * from './mouse-conroller.helper';
2
2
  export * from './style.helpers';
3
3
  export * from './base-element';
4
+ export * from './genrate-uuid.helper';
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent wc-ui following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "wc-ui",
6
- "version": "0.0.32",
6
+ "version": "0.0.34",
7
7
  "type": "module",
8
8
  "main": "dist/revotech-ui-kit.umd.cjs",
9
9
  "module": "./dist/revotech-ui-kit.js",
@@ -1,15 +0,0 @@
1
- import { LitElement } from 'lit';
2
- import { ComboBox } from './combo-box.atom';
3
- export declare class ComboBoxList extends LitElement {
4
- static styles: import("lit").CSSResult[];
5
- state: string;
6
- handleKeyDown: () => void;
7
- isOpen: boolean;
8
- get _popover(): ComboBox | null;
9
- render(): import("lit-html").TemplateResult<1>;
10
- }
11
- declare global {
12
- interface HTMLElementTagNameMap {
13
- 'rtg-combo-box-list': ComboBoxList;
14
- }
15
- }