@public-ui/components 1.1.13-rc.5 → 1.1.13-rc.6

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.
@@ -2,10 +2,11 @@ import { JSX } from '../../stencil-public-runtime';
2
2
  import { Generic } from '@public-ui/core';
3
3
  declare type RequiredProps = unknown;
4
4
  declare type OptionalProps = unknown;
5
+ export declare type Props = Generic.Element.Members<RequiredProps, OptionalProps>;
5
6
  declare type RequiredStates = RequiredProps;
6
7
  declare type OptionalStates = OptionalProps;
7
8
  declare type States = Generic.Element.Members<RequiredStates, OptionalStates>;
8
- export declare class KolButtonGroup implements Generic.Element.ComponentApi<RequiredProps, OptionalProps, RequiredStates, OptionalStates> {
9
+ export declare class KolButtonGroupWc implements Generic.Element.ComponentApi<RequiredProps, OptionalProps, RequiredStates, OptionalStates> {
9
10
  render(): JSX.Element;
10
11
  state: States;
11
12
  }
@@ -0,0 +1,5 @@
1
+ import { JSX } from '../../stencil-public-runtime';
2
+ import { Props } from './component';
3
+ export declare class KolButtonGroup implements Props {
4
+ render(): JSX.Element;
5
+ }
@@ -1,10 +1,2 @@
1
- import { KolButtonGroup } from './button-group/component';
2
- import { KolHeading } from './heading/shadow';
3
- import { KolIconFontAwesome } from './icon-font-awesome/component';
4
- import { KolIconIcofont } from './icon-icofont/component';
5
- import { KolInputAdapterLeanup } from './input-adapter-leanup/component';
6
- import { KolInputRadioGroup } from './input-radio-group/component';
7
- import { KolInput } from './input/component';
8
- import { KolLink } from './link/shadow';
9
- import { KolSpan } from './span/shadow';
10
- export declare const COMPONENTS: (typeof KolButtonGroup | typeof KolHeading | typeof KolIconFontAwesome | typeof KolIconIcofont | typeof KolInputAdapterLeanup | typeof KolInputRadioGroup | typeof KolInput | typeof KolLink | typeof KolSpan)[];
1
+ import { KolButtonGroup } from './button-group/shadow';
2
+ export declare const COMPONENTS: (typeof KolButtonGroup)[];
@@ -206,6 +206,8 @@ export namespace Components {
206
206
  }
207
207
  interface KolButtonGroup {
208
208
  }
209
+ interface KolButtonGroupWc {
210
+ }
209
211
  interface KolButtonLink {
210
212
  /**
211
213
  * Gibt an, mit welcher Tastenkombination man den Button auslösen oder fokussieren kann.
@@ -2170,6 +2172,12 @@ declare global {
2170
2172
  prototype: HTMLKolButtonGroupElement;
2171
2173
  new (): HTMLKolButtonGroupElement;
2172
2174
  };
2175
+ interface HTMLKolButtonGroupWcElement extends Components.KolButtonGroupWc, HTMLStencilElement {
2176
+ }
2177
+ var HTMLKolButtonGroupWcElement: {
2178
+ prototype: HTMLKolButtonGroupWcElement;
2179
+ new (): HTMLKolButtonGroupWcElement;
2180
+ };
2173
2181
  interface HTMLKolButtonLinkElement extends Components.KolButtonLink, HTMLStencilElement {
2174
2182
  }
2175
2183
  var HTMLKolButtonLinkElement: {
@@ -2466,6 +2474,7 @@ declare global {
2466
2474
  "kol-breadcrumb": HTMLKolBreadcrumbElement;
2467
2475
  "kol-button": HTMLKolButtonElement;
2468
2476
  "kol-button-group": HTMLKolButtonGroupElement;
2477
+ "kol-button-group-wc": HTMLKolButtonGroupWcElement;
2469
2478
  "kol-button-link": HTMLKolButtonLinkElement;
2470
2479
  "kol-button-wc": HTMLKolButtonWcElement;
2471
2480
  "kol-card": HTMLKolCardElement;
@@ -2681,6 +2690,8 @@ declare namespace LocalJSX {
2681
2690
  }
2682
2691
  interface KolButtonGroup {
2683
2692
  }
2693
+ interface KolButtonGroupWc {
2694
+ }
2684
2695
  interface KolButtonLink {
2685
2696
  /**
2686
2697
  * Gibt an, mit welcher Tastenkombination man den Button auslösen oder fokussieren kann.
@@ -4605,6 +4616,7 @@ declare namespace LocalJSX {
4605
4616
  "kol-breadcrumb": KolBreadcrumb;
4606
4617
  "kol-button": KolButton;
4607
4618
  "kol-button-group": KolButtonGroup;
4619
+ "kol-button-group-wc": KolButtonGroupWc;
4608
4620
  "kol-button-link": KolButtonLink;
4609
4621
  "kol-button-wc": KolButtonWc;
4610
4622
  "kol-card": KolCard;
@@ -4666,6 +4678,7 @@ declare module "@stencil/core" {
4666
4678
  "kol-breadcrumb": LocalJSX.KolBreadcrumb & JSXBase.HTMLAttributes<HTMLKolBreadcrumbElement>;
4667
4679
  "kol-button": LocalJSX.KolButton & JSXBase.HTMLAttributes<HTMLKolButtonElement>;
4668
4680
  "kol-button-group": LocalJSX.KolButtonGroup & JSXBase.HTMLAttributes<HTMLKolButtonGroupElement>;
4681
+ "kol-button-group-wc": LocalJSX.KolButtonGroupWc & JSXBase.HTMLAttributes<HTMLKolButtonGroupWcElement>;
4669
4682
  "kol-button-link": LocalJSX.KolButtonLink & JSXBase.HTMLAttributes<HTMLKolButtonLinkElement>;
4670
4683
  "kol-button-wc": LocalJSX.KolButtonWc & JSXBase.HTMLAttributes<HTMLKolButtonWcElement>;
4671
4684
  "kol-card": LocalJSX.KolCard & JSXBase.HTMLAttributes<HTMLKolCardElement>;