@skf-design-system/ui-components 1.0.0-alpha.27 → 1.0.0-alpha.29

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 (91) hide show
  1. package/README.md +26 -6
  2. package/custom-elements.json +18265 -0
  3. package/dist/components/alert/alert.component.js +20 -18
  4. package/dist/components/alert/alert.styles.js +50 -47
  5. package/dist/components/button/button.component.d.ts +24 -0
  6. package/dist/components/button/button.component.js +79 -55
  7. package/dist/components/button/button.styles.js +1 -0
  8. package/dist/components/checkbox/checkbox.component.d.ts +3 -8
  9. package/dist/components/checkbox/checkbox.component.js +95 -90
  10. package/dist/components/checkbox/checkbox.styles.js +2 -2
  11. package/dist/components/input/input.component.d.ts +10 -0
  12. package/dist/components/input/input.component.js +89 -82
  13. package/dist/components/progress/progress.component.d.ts +22 -0
  14. package/dist/components/progress/progress.component.js +40 -0
  15. package/dist/components/progress/progress.d.ts +8 -0
  16. package/dist/components/progress/progress.js +6 -0
  17. package/dist/components/progress/progress.styles.d.ts +1 -0
  18. package/dist/components/progress/progress.styles.js +47 -0
  19. package/dist/components/radio/radio.component.d.ts +4 -6
  20. package/dist/components/radio/radio.component.js +93 -77
  21. package/dist/components/select/select.component.d.ts +5 -2
  22. package/dist/components/select/select.component.js +103 -88
  23. package/dist/components/select/select.controllers.js +5 -2
  24. package/dist/components/switch/switch.component.js +4 -1
  25. package/dist/components/tab/tab.component.d.ts +29 -0
  26. package/dist/components/tab/tab.component.js +57 -0
  27. package/dist/components/tab/tab.d.ts +8 -0
  28. package/dist/components/tab/tab.js +6 -0
  29. package/dist/components/tab/tab.styles.d.ts +1 -0
  30. package/dist/components/tab/tab.styles.js +123 -0
  31. package/dist/components/tab-group/tab-group.component.d.ts +43 -0
  32. package/dist/components/tab-group/tab-group.component.js +98 -0
  33. package/dist/components/tab-group/tab-group.d.ts +8 -0
  34. package/dist/components/tab-group/tab-group.js +6 -0
  35. package/dist/components/tab-group/tab-group.styles.d.ts +1 -0
  36. package/dist/components/tab-group/tab-group.styles.js +75 -0
  37. package/dist/components/tab-panel/tab-panel.component.d.ts +19 -0
  38. package/dist/components/tab-panel/tab-panel.component.js +36 -0
  39. package/dist/components/tab-panel/tab-panel.d.ts +8 -0
  40. package/dist/components/tab-panel/tab-panel.js +6 -0
  41. package/dist/components/tab-panel/tab-panel.styles.d.ts +1 -0
  42. package/dist/components/tab-panel/tab-panel.styles.js +13 -0
  43. package/dist/components/textarea/textarea.component.js +5 -5
  44. package/dist/components/toast/toast.component.d.ts +35 -0
  45. package/dist/components/toast/toast.component.js +52 -0
  46. package/dist/components/toast/toast.d.ts +8 -0
  47. package/dist/components/toast/toast.js +6 -0
  48. package/dist/components/toast/toast.singleton.d.ts +26 -0
  49. package/dist/components/toast/toast.singleton.js +53 -0
  50. package/dist/components/toast/toast.styles.d.ts +1 -0
  51. package/dist/components/toast/toast.styles.js +9 -0
  52. package/dist/components/toast-item/toast-item.component.d.ts +21 -0
  53. package/dist/components/toast-item/toast-item.component.js +65 -0
  54. package/dist/components/toast-item/toast-item.d.ts +6 -0
  55. package/dist/components/toast-item/toast-item.js +2 -0
  56. package/dist/components/toast-item/toast-item.styles.d.ts +2 -0
  57. package/dist/components/toast-item/toast-item.styles.js +16 -0
  58. package/dist/components/toast-wrapper/toast-wrapper.component.d.ts +24 -0
  59. package/dist/components/toast-wrapper/toast-wrapper.component.js +37 -0
  60. package/dist/components/toast-wrapper/toast-wrapper.d.ts +8 -0
  61. package/dist/components/toast-wrapper/toast-wrapper.js +6 -0
  62. package/dist/components/toast-wrapper/toast-wrapper.styles.d.ts +1 -0
  63. package/dist/components/toast-wrapper/toast-wrapper.styles.js +20 -0
  64. package/dist/custom-elements.json +1167 -311
  65. package/dist/index.d.ts +5 -0
  66. package/dist/index.js +57 -42
  67. package/dist/internal/components/formBase.d.ts +1 -0
  68. package/dist/internal/components/formBase.js +11 -11
  69. package/dist/internal/helpers/watch.d.ts +27 -0
  70. package/dist/internal/helpers/watch.js +28 -0
  71. package/dist/react/index.d.ts +6 -0
  72. package/dist/react/index.js +6 -0
  73. package/dist/react/skf-button/index.d.ts +7 -1
  74. package/dist/react/skf-button/index.js +5 -1
  75. package/dist/react/skf-progress/index.d.ts +3 -0
  76. package/dist/react/skf-progress/index.js +13 -0
  77. package/dist/react/skf-tab/index.d.ts +12 -0
  78. package/dist/react/skf-tab/index.js +18 -0
  79. package/dist/react/skf-tab-group/index.d.ts +3 -0
  80. package/dist/react/skf-tab-group/index.js +13 -0
  81. package/dist/react/skf-tab-panel/index.d.ts +3 -0
  82. package/dist/react/skf-tab-panel/index.js +13 -0
  83. package/dist/react/skf-toast/index.d.ts +3 -0
  84. package/dist/react/skf-toast/index.js +13 -0
  85. package/dist/react/skf-toast-wrapper/index.d.ts +3 -0
  86. package/dist/react/skf-toast-wrapper/index.js +13 -0
  87. package/dist/types/jsx/custom-element-jsx.d.ts +342 -806
  88. package/dist/types/vue/index.d.ts +147 -8
  89. package/dist/vscode.html-custom-data.json +116 -16
  90. package/dist/web-types.json +304 -35
  91. package/package.json +27 -27
package/dist/index.d.ts CHANGED
@@ -11,10 +11,15 @@ export { default as SkfInput } from './components/input/input.js';
11
11
  export { default as SkfLink } from './components/link/link.js';
12
12
  export { default as SkfLoader } from './components/loader/loader.js';
13
13
  export { default as SkfLogo } from './components/logo/logo.js';
14
+ export { default as SkfProgress } from './components/progress/progress.js';
14
15
  export { default as SkfRadio } from './components/radio/radio.js';
15
16
  export { default as SkfOptionGroup } from './components/select-option-group/select-option-group.js';
16
17
  export { default as SkfOption } from './components/select-option/select-option.js';
17
18
  export { default as SkfSelect } from './components/select/select.js';
18
19
  export { default as SkfSwitch } from './components/switch/switch.js';
20
+ export { default as SkfTabGoup } from './components/tab-group/tab-group.js';
21
+ export { default as SkfTabPanel } from './components/tab-panel/tab-panel.js';
22
+ export { default as SkfTab } from './components/tab/tab.js';
19
23
  export { default as SkfTag } from './components/tag/tag.js';
20
24
  export { default as SkfTextArea } from './components/textarea/textarea.js';
25
+ export { default as SkfToast } from './components/toast/toast.js';
package/dist/index.js CHANGED
@@ -11,54 +11,69 @@ import "./components/input/input.js";
11
11
  import "./components/link/link.js";
12
12
  import "./components/loader/loader.js";
13
13
  import "./components/logo/logo.js";
14
+ import "./components/progress/progress.js";
14
15
  import "./components/radio/radio.js";
15
16
  import "./components/select-option-group/select-option-group.js";
16
17
  import "./components/select-option/select-option.js";
17
18
  import "./components/select/select.js";
18
19
  import "./components/switch/switch.js";
20
+ import "./components/tab-group/tab-group.js";
21
+ import "./components/tab-panel/tab-panel.js";
22
+ import "./components/tab/tab.js";
19
23
  import "./components/tag/tag.js";
20
24
  import "./components/textarea/textarea.js";
21
- import { SkfAccordion as I } from "./components/accordion/accordion.component.js";
22
- import { SkfAlert as h } from "./components/alert/alert.component.js";
23
- import { SkfButton as T } from "./components/button/button.component.js";
24
- import { SkfCard as v } from "./components/card/card.component.js";
25
- import { SkfCheckbox as B } from "./components/checkbox/checkbox.component.js";
26
- import { SkfCollapse as H } from "./components/collapse/collapse.component.js";
27
- import { SkfDivider as j } from "./components/divider/divider.component.js";
28
- import { SkfHeading as y } from "./components/heading/heading.component.js";
29
- import { SkfIcon as E } from "./components/icon/icon.component.js";
30
- import { SkfInput as J } from "./components/input/input.component.js";
31
- import { SkfLink as M } from "./components/link/link.component.js";
32
- import { SkfLoader as P } from "./components/loader/loader.component.js";
33
- import { SkfLogo as U } from "./components/logo/logo.component.js";
34
- import { SkfRadio as W } from "./components/radio/radio.component.js";
35
- import { SkfSelectOptionGroup as Y } from "./components/select-option-group/select-option-group.component.js";
36
- import { SkfSelectOption as _ } from "./components/select-option/select-option.component.js";
37
- import { SkfSelect as oo } from "./components/select/select.component.js";
38
- import { SkfSwitch as to } from "./components/switch/switch.component.js";
39
- import { SkfTag as fo } from "./components/tag/tag.component.js";
40
- import { SkfTextArea as eo } from "./components/textarea/textarea.component.js";
41
- import { SkfAccordionItem as So } from "./components/accordion/accordion-item.js";
25
+ import "./components/toast/toast.js";
26
+ import { SkfAccordion as h } from "./components/accordion/accordion.component.js";
27
+ import { SkfAlert as v } from "./components/alert/alert.component.js";
28
+ import { SkfButton as B } from "./components/button/button.component.js";
29
+ import { SkfCard as H } from "./components/card/card.component.js";
30
+ import { SkfCheckbox as j } from "./components/checkbox/checkbox.component.js";
31
+ import { SkfCollapse as y } from "./components/collapse/collapse.component.js";
32
+ import { SkfDivider as E } from "./components/divider/divider.component.js";
33
+ import { SkfHeading as J } from "./components/heading/heading.component.js";
34
+ import { SkfIcon as M } from "./components/icon/icon.component.js";
35
+ import { SkfInput as Q } from "./components/input/input.component.js";
36
+ import { SkfLink as V } from "./components/link/link.component.js";
37
+ import { SkfLoader as X } from "./components/loader/loader.component.js";
38
+ import { SkfLogo as Z } from "./components/logo/logo.component.js";
39
+ import { SkfProgress as $ } from "./components/progress/progress.component.js";
40
+ import { SkfRadio as ro } from "./components/radio/radio.component.js";
41
+ import { SkfSelectOptionGroup as po } from "./components/select-option-group/select-option-group.component.js";
42
+ import { SkfSelectOption as mo } from "./components/select-option/select-option.component.js";
43
+ import { SkfSelect as io } from "./components/select/select.component.js";
44
+ import { SkfSwitch as ko } from "./components/switch/switch.component.js";
45
+ import { SkfTabGroup as ao } from "./components/tab-group/tab-group.component.js";
46
+ import { SkfTabPanel as co } from "./components/tab-panel/tab-panel.component.js";
47
+ import { SkfTab as so } from "./components/tab/tab.component.js";
48
+ import { SkfTag as uo } from "./components/tag/tag.component.js";
49
+ import { SkfTextArea as go } from "./components/textarea/textarea.component.js";
50
+ import { SkfToast as Go } from "./components/toast/toast.component.js";
51
+ import { SkfAccordionItem as Co } from "./components/accordion/accordion-item.js";
42
52
  export {
43
- I as SkfAccordion,
44
- So as SkfAccordionItem,
45
- h as SkfAlert,
46
- T as SkfButton,
47
- v as SkfCard,
48
- B as SkfCheckbox,
49
- H as SkfCollapse,
50
- j as SkfDivider,
51
- y as SkfHeading,
52
- E as SkfIcon,
53
- J as SkfInput,
54
- M as SkfLink,
55
- P as SkfLoader,
56
- U as SkfLogo,
57
- _ as SkfOption,
58
- Y as SkfOptionGroup,
59
- W as SkfRadio,
60
- oo as SkfSelect,
61
- to as SkfSwitch,
62
- fo as SkfTag,
63
- eo as SkfTextArea
53
+ h as SkfAccordion,
54
+ Co as SkfAccordionItem,
55
+ v as SkfAlert,
56
+ B as SkfButton,
57
+ H as SkfCard,
58
+ j as SkfCheckbox,
59
+ y as SkfCollapse,
60
+ E as SkfDivider,
61
+ J as SkfHeading,
62
+ M as SkfIcon,
63
+ Q as SkfInput,
64
+ V as SkfLink,
65
+ X as SkfLoader,
66
+ Z as SkfLogo,
67
+ mo as SkfOption,
68
+ po as SkfOptionGroup,
69
+ $ as SkfProgress,
70
+ ro as SkfRadio,
71
+ io as SkfSelect,
72
+ ko as SkfSwitch,
73
+ so as SkfTab,
74
+ ao as SkfTabGoup,
75
+ co as SkfTabPanel,
76
+ uo as SkfTag,
77
+ go as SkfTextArea,
78
+ Go as SkfToast
64
79
  };
@@ -22,6 +22,7 @@ export declare class FormBase extends SkfElement {
22
22
  protected customErrorDisplay: boolean;
23
23
  protected pristine: boolean;
24
24
  protected validateOnChange: boolean;
25
+ protected withFallback: (message?: string | null) => string;
25
26
  static shadowRootOptions: {
26
27
  delegatesFocus: boolean;
27
28
  mode: ShadowRootMode;
@@ -1,14 +1,14 @@
1
1
  import { LitElement as c } from "lit";
2
2
  import { property as d } from "lit/decorators.js";
3
3
  import { SkfElement as u } from "./skf-element.js";
4
- var p = Object.defineProperty, _ = Object.getOwnPropertyDescriptor, h = (l, t, e, s) => {
4
+ var p = Object.defineProperty, _ = Object.getOwnPropertyDescriptor, h = (l, t, e, r) => {
5
5
  for (var i = _(t, e), n = l.length - 1, o; n >= 0; n--)
6
6
  (o = l[n]) && (i = o(t, e, i) || i);
7
7
  return i && p(t, e, i), i;
8
8
  };
9
9
  const a = class a extends u {
10
10
  constructor() {
11
- super(), this._disabled = !1, this._pristine = !0, this.validationError = "", this.customErrorDisplay = !1, this.pristine = !0, this.validateOnChange = !0, this._dispatchResetEvent = () => {
11
+ super(), this._disabled = !1, this._pristine = !0, this.validationError = "", this.customErrorDisplay = !1, this.pristine = !0, this.validateOnChange = !0, this.withFallback = (t) => String(t).trim() || "A unspecified form validation error occured.", this._dispatchResetEvent = () => {
12
12
  this.dispatchEvent(new Event("reset", { bubbles: !0, composed: !0, cancelable: !1 }));
13
13
  }, this._internals = this.attachInternals(), this._required = !1;
14
14
  }
@@ -59,8 +59,8 @@ const a = class a extends u {
59
59
  get willValidate() {
60
60
  return this._internals.willValidate;
61
61
  }
62
- setValidity(t, e, s) {
63
- this._internals.setValidity(t, e, s);
62
+ setValidity(t, e, r) {
63
+ this._internals.setValidity(t, e, r);
64
64
  }
65
65
  setFormValue(t) {
66
66
  this._internals.setFormValue(t);
@@ -88,20 +88,20 @@ const a = class a extends u {
88
88
  * @returns
89
89
  */
90
90
  emitEvent(t, e = {}) {
91
- const s = { bubbles: !0, composed: !0, cancelable: !0 };
91
+ const r = { bubbles: !0, composed: !0, cancelable: !0 };
92
92
  return t.startsWith("skf-") ? this.dispatchEvent(
93
- new CustomEvent(t, { detail: null, ...s, ...e })
94
- ) : this.dispatchEvent(new Event(t, { ...s, ...e }));
93
+ new CustomEvent(t, { detail: null, ...r, ...e })
94
+ ) : this.dispatchEvent(new Event(t, { ...r, ...e }));
95
95
  }
96
96
  };
97
97
  a.formAssociated = !0, a.shadowRootOptions = { ...c.shadowRootOptions, delegatesFocus: !0 };
98
- let r = a;
98
+ let s = a;
99
99
  h([
100
100
  d({ type: Boolean })
101
- ], r.prototype, "required");
101
+ ], s.prototype, "required");
102
102
  h([
103
103
  d({ type: Boolean, attribute: "native-validation" })
104
- ], r.prototype, "nativeValidation");
104
+ ], s.prototype, "nativeValidation");
105
105
  export {
106
- r as FormBase
106
+ s as FormBase
107
107
  };
@@ -0,0 +1,27 @@
1
+ import type { LitElement } from 'lit';
2
+ type UpdateHandler = (prev?: unknown, next?: unknown) => void;
3
+ type NonUndefined<A> = A extends undefined ? never : A;
4
+ type UpdateHandlerFunctionKeys<T extends object> = {
5
+ [K in keyof T]-?: NonUndefined<T[K]> extends UpdateHandler ? K : never;
6
+ }[keyof T];
7
+ interface WatchOptions {
8
+ /**
9
+ * If true, will only start watching after the initial update/render
10
+ */
11
+ waitUntilFirstUpdate?: boolean;
12
+ afterUpdate?: boolean;
13
+ }
14
+ /**
15
+ * Runs when observed properties change, e.g. @property or @state, but before the component updates. To wait for an
16
+ * update to complete after a change occurs, use `await this.updateComplete` in the handler. To start watching after the
17
+ * initial update/render, use `{ waitUntilFirstUpdate: true }` or `this.hasUpdated` in the handler.
18
+ *
19
+ * Usage:
20
+ *
21
+ * @watch('propName')
22
+ * handlePropChange(oldValue, newValue) {
23
+ * ...
24
+ * }
25
+ */
26
+ export declare function watch(propertyName: string | string[], options?: WatchOptions): <ElemClass extends LitElement>(proto: ElemClass, decoratedFnName: UpdateHandlerFunctionKeys<ElemClass>) => void;
27
+ export {};
@@ -0,0 +1,28 @@
1
+ function o(f, U) {
2
+ const e = {
3
+ waitUntilFirstUpdate: !1,
4
+ afterUpdate: !1,
5
+ ...U
6
+ };
7
+ return (l, c) => {
8
+ const { update: d } = l, h = Array.isArray(f) ? f : [f];
9
+ l.update = function(i) {
10
+ e.afterUpdate || h.forEach((n) => {
11
+ const t = n;
12
+ if (i.has(t)) {
13
+ const a = i.get(t), s = this[t];
14
+ a !== s && (!e.waitUntilFirstUpdate || this.hasUpdated) && this[c](a, s);
15
+ }
16
+ }), d.call(this, i), e.afterUpdate && h.forEach((n) => {
17
+ const t = n;
18
+ if (i.has(t)) {
19
+ const a = i.get(t), s = this[t];
20
+ a !== s && (!e.waitUntilFirstUpdate || this.hasUpdated) && this[c](a, s);
21
+ }
22
+ });
23
+ };
24
+ };
25
+ }
26
+ export {
27
+ o as watch
28
+ };
@@ -11,10 +11,16 @@ export { default as SkfInput } from './skf-input/index.js';
11
11
  export { default as SkfLink } from './skf-link/index.js';
12
12
  export { default as SkfLoader } from './skf-loader/index.js';
13
13
  export { default as SkfLogo } from './skf-logo/index.js';
14
+ export { default as SkfProgress } from './skf-progress/index.js';
14
15
  export { default as SkfRadio } from './skf-radio/index.js';
15
16
  export { default as SkfSelect } from './skf-select/index.js';
16
17
  export { default as SkfSelectOption } from './skf-select-option/index.js';
17
18
  export { default as SkfSelectOptionGroup } from './skf-select-option-group/index.js';
18
19
  export { default as SkfSwitch } from './skf-switch/index.js';
20
+ export { default as SkfTab } from './skf-tab/index.js';
21
+ export { default as SkfTabGroup } from './skf-tab-group/index.js';
22
+ export { default as SkfTabPanel } from './skf-tab-panel/index.js';
19
23
  export { default as SkfTag } from './skf-tag/index.js';
20
24
  export { default as SkfTextArea } from './skf-textarea/index.js';
25
+ export { default as SkfToast } from './skf-toast/index.js';
26
+ export { default as SkfToastWrapper } from './skf-toast-wrapper/index.js';
@@ -11,10 +11,16 @@ export { default as SkfInput } from './skf-input/index.js';
11
11
  export { default as SkfLink } from './skf-link/index.js';
12
12
  export { default as SkfLoader } from './skf-loader/index.js';
13
13
  export { default as SkfLogo } from './skf-logo/index.js';
14
+ export { default as SkfProgress } from './skf-progress/index.js';
14
15
  export { default as SkfRadio } from './skf-radio/index.js';
15
16
  export { default as SkfSelect } from './skf-select/index.js';
16
17
  export { default as SkfSelectOption } from './skf-select-option/index.js';
17
18
  export { default as SkfSelectOptionGroup } from './skf-select-option-group/index.js';
18
19
  export { default as SkfSwitch } from './skf-switch/index.js';
20
+ export { default as SkfTab } from './skf-tab/index.js';
21
+ export { default as SkfTabGroup } from './skf-tab-group/index.js';
22
+ export { default as SkfTabPanel } from './skf-tab-panel/index.js';
19
23
  export { default as SkfTag } from './skf-tag/index.js';
20
24
  export { default as SkfTextArea } from './skf-textarea/index.js';
25
+ export { default as SkfToast } from './skf-toast/index.js';
26
+ export { default as SkfToastWrapper } from './skf-toast-wrapper/index.js';
@@ -1,3 +1,9 @@
1
1
  import Component from '../../components/button/button.js';
2
- declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>;
2
+ import { type SkfButton } from '../../components/button/button.js';
3
+ import { type EventName } from '@lit/react';
4
+ declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
5
+ onClick: EventName<Event & {
6
+ target: SkfButton;
7
+ }>;
8
+ }>;
3
9
  export default reactWrapper;
@@ -1,13 +1,17 @@
1
1
  import * as React from 'react';
2
2
  import { createComponent } from '@lit/react';
3
3
  import Component from '../../components/button/button.js';
4
+ import {} from '../../components/button/button.js';
5
+ import {} from '@lit/react';
4
6
  const tagName = 'skf-button';
5
7
  Component.define('skf-button');
6
8
  const reactWrapper = createComponent({
7
9
  tagName,
8
10
  elementClass: Component,
9
11
  react: React,
10
- events: {},
12
+ events: {
13
+ onClick: 'click',
14
+ },
11
15
  displayName: 'SkfButton',
12
16
  });
13
17
  export default reactWrapper;
@@ -0,0 +1,3 @@
1
+ import Component from '../../components/progress/progress.js';
2
+ declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>;
3
+ export default reactWrapper;
@@ -0,0 +1,13 @@
1
+ import * as React from 'react';
2
+ import { createComponent } from '@lit/react';
3
+ import Component from '../../components/progress/progress.js';
4
+ const tagName = 'skf-progress';
5
+ Component.define('skf-progress');
6
+ const reactWrapper = createComponent({
7
+ tagName,
8
+ elementClass: Component,
9
+ react: React,
10
+ events: {},
11
+ displayName: 'SkfProgress',
12
+ });
13
+ export default reactWrapper;
@@ -0,0 +1,12 @@
1
+ import Component from '../../components/tab/tab.js';
2
+ import { type SkfTab } from '../../components/tab/tab.js';
3
+ import { type EventName } from '@lit/react';
4
+ declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {
5
+ onSkfTabSelect: EventName<Event & {
6
+ target: SkfTab;
7
+ }>;
8
+ onClick: EventName<Event & {
9
+ target: SkfTab;
10
+ }>;
11
+ }>;
12
+ export default reactWrapper;
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import { createComponent } from '@lit/react';
3
+ import Component from '../../components/tab/tab.js';
4
+ import {} from '../../components/tab/tab.js';
5
+ import {} from '@lit/react';
6
+ const tagName = 'skf-tab';
7
+ Component.define('skf-tab');
8
+ const reactWrapper = createComponent({
9
+ tagName,
10
+ elementClass: Component,
11
+ react: React,
12
+ events: {
13
+ onSkfTabSelect: 'skf-tab-select',
14
+ onClick: 'click',
15
+ },
16
+ displayName: 'SkfTab',
17
+ });
18
+ export default reactWrapper;
@@ -0,0 +1,3 @@
1
+ import Component from '../../components/tab-group/tab-group.js';
2
+ declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>;
3
+ export default reactWrapper;
@@ -0,0 +1,13 @@
1
+ import * as React from 'react';
2
+ import { createComponent } from '@lit/react';
3
+ import Component from '../../components/tab-group/tab-group.js';
4
+ const tagName = 'skf-tab-group';
5
+ Component.define('skf-tab-group');
6
+ const reactWrapper = createComponent({
7
+ tagName,
8
+ elementClass: Component,
9
+ react: React,
10
+ events: {},
11
+ displayName: 'SkfTabGroup',
12
+ });
13
+ export default reactWrapper;
@@ -0,0 +1,3 @@
1
+ import Component from '../../components/tab-panel/tab-panel.js';
2
+ declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>;
3
+ export default reactWrapper;
@@ -0,0 +1,13 @@
1
+ import * as React from 'react';
2
+ import { createComponent } from '@lit/react';
3
+ import Component from '../../components/tab-panel/tab-panel.js';
4
+ const tagName = 'skf-tab-panel';
5
+ Component.define('skf-tab-panel');
6
+ const reactWrapper = createComponent({
7
+ tagName,
8
+ elementClass: Component,
9
+ react: React,
10
+ events: {},
11
+ displayName: 'SkfTabPanel',
12
+ });
13
+ export default reactWrapper;
@@ -0,0 +1,3 @@
1
+ import Component from '../../components/toast/toast.js';
2
+ declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>;
3
+ export default reactWrapper;
@@ -0,0 +1,13 @@
1
+ import * as React from 'react';
2
+ import { createComponent } from '@lit/react';
3
+ import Component from '../../components/toast/toast.js';
4
+ const tagName = 'skf-toast';
5
+ Component.define('skf-toast');
6
+ const reactWrapper = createComponent({
7
+ tagName,
8
+ elementClass: Component,
9
+ react: React,
10
+ events: {},
11
+ displayName: 'SkfToast',
12
+ });
13
+ export default reactWrapper;
@@ -0,0 +1,3 @@
1
+ import Component from '../../components/toast-wrapper/toast-wrapper.js';
2
+ declare const reactWrapper: import("@lit/react").ReactWebComponent<Component, {}>;
3
+ export default reactWrapper;
@@ -0,0 +1,13 @@
1
+ import * as React from 'react';
2
+ import { createComponent } from '@lit/react';
3
+ import Component from '../../components/toast-wrapper/toast-wrapper.js';
4
+ const tagName = 'skf-toast-wrapper';
5
+ Component.define('skf-toast-wrapper');
6
+ const reactWrapper = createComponent({
7
+ tagName,
8
+ elementClass: Component,
9
+ react: React,
10
+ events: {},
11
+ displayName: 'SkfToastWrapper',
12
+ });
13
+ export default reactWrapper;