@revotech-group/revotech-ui-kit 0.1.28 → 0.1.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.
@@ -6,6 +6,7 @@ declare class TabList extends BaseElement {
6
6
  tabindex: number;
7
7
  customClass: string;
8
8
  customStyle: string;
9
+ orientation: 'horizontal' | 'vertical';
9
10
  get _tab(): Tab | null;
10
11
  get _containerElement(): HTMLDivElement | null;
11
12
  protected getAttributesToExclude(): string[];
@@ -16,6 +16,7 @@ declare class TabsTrigger extends BaseElement {
16
16
  handleClick: (event: Event) => void;
17
17
  protected getAttributesToExclude(): string[];
18
18
  protected createRenderRoot(): HTMLElement | DocumentFragment;
19
+ get orientation(): 'horizontal' | 'vertical';
19
20
  render(): import('lit-element').TemplateResult<1>;
20
21
  }
21
22
  declare global {
@@ -9,6 +9,7 @@ declare class Tab extends BaseElement {
9
9
  tabindex: number;
10
10
  customClass: string;
11
11
  customStyle: string;
12
+ orientation: 'horizontal' | 'vertical';
12
13
  get _containerElement(): HTMLDivElement | null;
13
14
  connectedCallback(): void;
14
15
  disconnectedCallback(): void;
@@ -12,4 +12,5 @@ export declare enum TAB_LIST {
12
12
  }
13
13
  declare const _default: Meta;
14
14
  export default _default;
15
- export declare const Tab: StoryFn;
15
+ export declare const TabHorizontal: StoryFn;
16
+ export declare const VerticalTab: StoryFn;
@@ -1 +1,4 @@
1
1
  export declare const tabListStyles = "rtg-h-10 rtg-items-center rtg-justify-center rtg-rounded-md rtg-bg-muted rtg-p-1 rtg-text-muted-foreground rtg-grid rtg-w-full rtg-grid-cols-2";
2
+ export declare const tabListBaseStyles = "rtg-items-center rtg-justify-center rtg-rounded-md rtg-bg-muted rtg-p-1 rtg-text-muted-foreground";
3
+ export declare const tabListHorizontalStyles = "rtg-grid rtg-w-full rtg-h-10 rtg-grid-cols-2";
4
+ export declare const tabListVerticalStyles = "rtg-w-60 rtg-h-full";
@@ -6,6 +6,7 @@ export declare class LightSampleDemo extends BaseElement {
6
6
  private inputValue;
7
7
  protected getAttributesToExclude(): string[];
8
8
  protected createRenderRoot(): HTMLElement | DocumentFragment;
9
+ defaultValue: string;
9
10
  render(): import('lit').TemplateResult<1>;
10
11
  }
11
12
  declare global {
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.1.28",
6
+ "version": "0.1.30",
7
7
  "type": "module",
8
8
  "main": "dist/rtg-ui-kit.umd.cjs",
9
9
  "module": "./dist/rtg-ui-kit.js",