@sellmate/design-system-react 0.0.11 → 0.0.13

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 (115) hide show
  1. package/dist/components/components.d.ts +18 -88
  2. package/dist/components/components.js +23 -171
  3. package/dist/components/sd-badge.d.ts +8 -0
  4. package/dist/components/sd-badge.js +17 -0
  5. package/dist/components/sd-badge.server.d.ts +10 -0
  6. package/dist/components/sd-badge.server.js +20 -0
  7. package/dist/components/sd-button.d.ts +11 -0
  8. package/dist/components/sd-button.js +12 -0
  9. package/dist/components/sd-button.server.d.ts +13 -0
  10. package/dist/components/sd-button.server.js +28 -0
  11. package/dist/components/sd-checkbox.d.ts +10 -0
  12. package/dist/components/sd-checkbox.js +17 -0
  13. package/dist/components/sd-checkbox.server.d.ts +12 -0
  14. package/dist/components/sd-checkbox.server.js +21 -0
  15. package/dist/components/sd-date-box.d.ts +11 -0
  16. package/dist/components/sd-date-box.js +20 -0
  17. package/dist/components/sd-date-box.server.d.ts +13 -0
  18. package/dist/components/sd-date-box.server.js +25 -0
  19. package/dist/components/sd-date-picker.d.ts +10 -0
  20. package/dist/components/sd-date-picker.js +17 -0
  21. package/dist/components/sd-date-picker.server.d.ts +12 -0
  22. package/dist/components/sd-date-picker.server.js +20 -0
  23. package/dist/components/sd-date-range-picker.d.ts +10 -0
  24. package/dist/components/sd-date-range-picker.js +17 -0
  25. package/dist/components/sd-date-range-picker.server.d.ts +12 -0
  26. package/dist/components/sd-date-range-picker.server.js +20 -0
  27. package/dist/components/sd-guide.d.ts +8 -0
  28. package/dist/components/sd-guide.js +17 -0
  29. package/dist/components/sd-guide.server.d.ts +10 -0
  30. package/dist/components/sd-guide.server.js +22 -0
  31. package/dist/components/sd-icon.d.ts +8 -0
  32. package/dist/components/sd-icon.js +17 -0
  33. package/dist/components/sd-icon.server.d.ts +10 -0
  34. package/dist/components/sd-icon.server.js +22 -0
  35. package/dist/components/sd-input.d.ts +15 -0
  36. package/dist/components/sd-input.js +18 -0
  37. package/dist/components/sd-input.server.d.ts +17 -0
  38. package/dist/components/sd-input.server.js +28 -0
  39. package/dist/components/sd-pagination.d.ts +10 -0
  40. package/dist/components/sd-pagination.js +17 -0
  41. package/dist/components/sd-pagination.server.d.ts +12 -0
  42. package/dist/components/sd-pagination.server.js +20 -0
  43. package/dist/components/sd-popover.d.ts +8 -0
  44. package/dist/components/sd-popover.js +17 -0
  45. package/dist/components/sd-popover.server.d.ts +10 -0
  46. package/dist/components/sd-popover.server.js +29 -0
  47. package/dist/components/sd-portal.d.ts +10 -0
  48. package/dist/components/sd-portal.js +17 -0
  49. package/dist/components/sd-portal.server.d.ts +12 -0
  50. package/dist/components/sd-portal.server.js +20 -0
  51. package/dist/components/sd-select-option.d.ts +15 -0
  52. package/dist/components/sd-select-option.js +12 -0
  53. package/dist/components/sd-select-option.server.d.ts +17 -0
  54. package/dist/components/sd-select-option.server.js +22 -0
  55. package/dist/components/sd-select.d.ts +12 -0
  56. package/dist/components/sd-select.js +15 -0
  57. package/dist/components/sd-select.server.d.ts +14 -0
  58. package/dist/components/sd-select.server.js +26 -0
  59. package/dist/components/sd-table.d.ts +12 -0
  60. package/dist/components/sd-table.js +15 -0
  61. package/dist/components/sd-table.server.d.ts +14 -0
  62. package/dist/components/sd-table.server.js +23 -0
  63. package/dist/components/sd-tag.d.ts +8 -0
  64. package/dist/components/sd-tag.js +17 -0
  65. package/dist/components/sd-tag.server.d.ts +10 -0
  66. package/dist/components/sd-tag.server.js +23 -0
  67. package/dist/components/sd-tooltip-portal.d.ts +10 -0
  68. package/dist/components/sd-tooltip-portal.js +17 -0
  69. package/dist/components/sd-tooltip-portal.server.d.ts +12 -0
  70. package/dist/components/sd-tooltip-portal.server.js +21 -0
  71. package/dist/components/sd-tooltip.d.ts +8 -0
  72. package/dist/components/sd-tooltip.js +17 -0
  73. package/dist/components/sd-tooltip.server.d.ts +10 -0
  74. package/dist/components/sd-tooltip.server.js +27 -0
  75. package/lib/components/components.ts +18 -247
  76. package/lib/components/sd-badge.server.ts +29 -0
  77. package/lib/components/sd-badge.ts +24 -0
  78. package/lib/components/sd-button.server.ts +38 -0
  79. package/lib/components/sd-button.ts +25 -0
  80. package/lib/components/sd-checkbox.server.ts +30 -0
  81. package/lib/components/sd-checkbox.ts +24 -0
  82. package/lib/components/sd-date-box.server.ts +37 -0
  83. package/lib/components/sd-date-box.ts +30 -0
  84. package/lib/components/sd-date-picker.server.ts +29 -0
  85. package/lib/components/sd-date-picker.ts +24 -0
  86. package/lib/components/sd-date-range-picker.server.ts +29 -0
  87. package/lib/components/sd-date-range-picker.ts +24 -0
  88. package/lib/components/sd-guide.server.ts +31 -0
  89. package/lib/components/sd-guide.ts +24 -0
  90. package/lib/components/sd-icon.server.ts +31 -0
  91. package/lib/components/sd-icon.ts +24 -0
  92. package/lib/components/sd-input.server.ts +44 -0
  93. package/lib/components/sd-input.ts +37 -0
  94. package/lib/components/sd-pagination.server.ts +29 -0
  95. package/lib/components/sd-pagination.ts +24 -0
  96. package/lib/components/sd-popover.server.ts +38 -0
  97. package/lib/components/sd-popover.ts +24 -0
  98. package/lib/components/sd-portal.server.ts +29 -0
  99. package/lib/components/sd-portal.ts +24 -0
  100. package/lib/components/sd-select-option.server.ts +38 -0
  101. package/lib/components/sd-select-option.ts +31 -0
  102. package/lib/components/sd-select.server.ts +39 -0
  103. package/lib/components/sd-select.ts +31 -0
  104. package/lib/components/sd-table.server.ts +36 -0
  105. package/lib/components/sd-table.ts +31 -0
  106. package/lib/components/sd-tag.server.ts +32 -0
  107. package/lib/components/sd-tag.ts +24 -0
  108. package/lib/components/sd-tooltip-portal.server.ts +30 -0
  109. package/lib/components/sd-tooltip-portal.ts +24 -0
  110. package/lib/components/sd-tooltip.server.ts +36 -0
  111. package/lib/components/sd-tooltip.ts +24 -0
  112. package/package.json +6 -7
  113. package/dist/hydrate.d.ts +0 -2
  114. package/dist/hydrate.js +0 -44
  115. package/lib/hydrate.ts +0 -52
@@ -0,0 +1,20 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ /* eslint-disable */
6
+ // @ts-ignore - ignore potential type issues as the project is importing itself
7
+ import * as clientComponents from '@sellmate/design-system-react';
8
+ import { createComponent } from '@stencil/react-output-target/ssr';
9
+ export const serializeShadowRoot = { default: "declarative-shadow-dom" };
10
+ export const SdDatePicker = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-date-picker',
12
+ properties: {
13
+ date: 'date',
14
+ label: 'label',
15
+ disabled: 'disabled'
16
+ },
17
+ hydrateModule: import('@sellmate/design-system/hydrate'),
18
+ clientModule: clientComponents.SdDatePicker,
19
+ serializeShadowRoot,
20
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdDateRangePicker as SdDateRangePickerElement } from "@sellmate/design-system/dist/components/sd-date-range-picker.js";
6
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ export type SdDateRangePickerEvents = {
8
+ onSdChange: EventName<CustomEvent<[string, string]>>;
9
+ };
10
+ export declare const SdDateRangePicker: StencilReactComponent<SdDateRangePickerElement, SdDateRangePickerEvents>;
@@ -0,0 +1,17 @@
1
+ 'use client';
2
+ /**
3
+ * This file was automatically generated by the Stencil React Output Target.
4
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
5
+ */
6
+ /* eslint-disable */
7
+ import { SdDateRangePicker as SdDateRangePickerElement, defineCustomElement as defineSdDateRangePicker } from "@sellmate/design-system/dist/components/sd-date-range-picker.js";
8
+ import { createComponent } from '@stencil/react-output-target/runtime';
9
+ import React from 'react';
10
+ export const SdDateRangePicker = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-date-range-picker',
12
+ elementClass: SdDateRangePickerElement,
13
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
14
+ react: React,
15
+ events: { onSdChange: 'sdChange' },
16
+ defineCustomElement: defineSdDateRangePicker
17
+ });
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdDateRangePicker as SdDateRangePickerElement } from "@sellmate/design-system/dist/components/sd-date-range-picker.js";
6
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ import { type SerializeShadowRootOptions } from '@stencil/react-output-target/ssr';
8
+ export declare const serializeShadowRoot: SerializeShadowRootOptions;
9
+ export type SdDateRangePickerEvents = {
10
+ onSdChange: EventName<CustomEvent<[string, string]>>;
11
+ };
12
+ export declare const SdDateRangePicker: StencilReactComponent<SdDateRangePickerElement, SdDateRangePickerEvents>;
@@ -0,0 +1,20 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ /* eslint-disable */
6
+ // @ts-ignore - ignore potential type issues as the project is importing itself
7
+ import * as clientComponents from '@sellmate/design-system-react';
8
+ import { createComponent } from '@stencil/react-output-target/ssr';
9
+ export const serializeShadowRoot = { default: "declarative-shadow-dom" };
10
+ export const SdDateRangePicker = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-date-range-picker',
12
+ properties: {
13
+ label: 'label',
14
+ maxRange: 'max-range',
15
+ disabled: 'disabled'
16
+ },
17
+ hydrateModule: import('@sellmate/design-system/hydrate'),
18
+ clientModule: clientComponents.SdDateRangePicker,
19
+ serializeShadowRoot,
20
+ });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdGuide as SdGuideElement } from "@sellmate/design-system/dist/components/sd-guide.js";
6
+ import type { StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ export type SdGuideEvents = NonNullable<unknown>;
8
+ export declare const SdGuide: StencilReactComponent<SdGuideElement, SdGuideEvents>;
@@ -0,0 +1,17 @@
1
+ 'use client';
2
+ /**
3
+ * This file was automatically generated by the Stencil React Output Target.
4
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
5
+ */
6
+ /* eslint-disable */
7
+ import { SdGuide as SdGuideElement, defineCustomElement as defineSdGuide } from "@sellmate/design-system/dist/components/sd-guide.js";
8
+ import { createComponent } from '@stencil/react-output-target/runtime';
9
+ import React from 'react';
10
+ export const SdGuide = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-guide',
12
+ elementClass: SdGuideElement,
13
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
14
+ react: React,
15
+ events: {},
16
+ defineCustomElement: defineSdGuide
17
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdGuide as SdGuideElement } from "@sellmate/design-system/dist/components/sd-guide.js";
6
+ import type { StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ import { type SerializeShadowRootOptions } from '@stencil/react-output-target/ssr';
8
+ export declare const serializeShadowRoot: SerializeShadowRootOptions;
9
+ export type SdGuideEvents = NonNullable<unknown>;
10
+ export declare const SdGuide: StencilReactComponent<SdGuideElement, SdGuideEvents>;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ /* eslint-disable */
6
+ // @ts-ignore - ignore potential type issues as the project is importing itself
7
+ import * as clientComponents from '@sellmate/design-system-react';
8
+ import { createComponent } from '@stencil/react-output-target/ssr';
9
+ export const serializeShadowRoot = { default: "declarative-shadow-dom" };
10
+ export const SdGuide = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-guide',
12
+ properties: {
13
+ type: 'type',
14
+ popupTitle: 'popup-title',
15
+ message: 'message',
16
+ guideUrl: 'guide-url',
17
+ popupWidth: 'popup-width'
18
+ },
19
+ hydrateModule: import('@sellmate/design-system/hydrate'),
20
+ clientModule: clientComponents.SdGuide,
21
+ serializeShadowRoot,
22
+ });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdIcon as SdIconElement } from "@sellmate/design-system/dist/components/sd-icon.js";
6
+ import type { StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ export type SdIconEvents = NonNullable<unknown>;
8
+ export declare const SdIcon: StencilReactComponent<SdIconElement, SdIconEvents>;
@@ -0,0 +1,17 @@
1
+ 'use client';
2
+ /**
3
+ * This file was automatically generated by the Stencil React Output Target.
4
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
5
+ */
6
+ /* eslint-disable */
7
+ import { SdIcon as SdIconElement, defineCustomElement as defineSdIcon } from "@sellmate/design-system/dist/components/sd-icon.js";
8
+ import { createComponent } from '@stencil/react-output-target/runtime';
9
+ import React from 'react';
10
+ export const SdIcon = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-icon',
12
+ elementClass: SdIconElement,
13
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
14
+ react: React,
15
+ events: {},
16
+ defineCustomElement: defineSdIcon
17
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdIcon as SdIconElement } from "@sellmate/design-system/dist/components/sd-icon.js";
6
+ import type { StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ import { type SerializeShadowRootOptions } from '@stencil/react-output-target/ssr';
8
+ export declare const serializeShadowRoot: SerializeShadowRootOptions;
9
+ export type SdIconEvents = NonNullable<unknown>;
10
+ export declare const SdIcon: StencilReactComponent<SdIconElement, SdIconEvents>;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ /* eslint-disable */
6
+ // @ts-ignore - ignore potential type issues as the project is importing itself
7
+ import * as clientComponents from '@sellmate/design-system-react';
8
+ import { createComponent } from '@stencil/react-output-target/ssr';
9
+ export const serializeShadowRoot = { default: "declarative-shadow-dom" };
10
+ export const SdIcon = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-icon',
12
+ properties: {
13
+ name: 'name',
14
+ size: 'size',
15
+ color: 'color',
16
+ rotate: 'rotate',
17
+ label: 'label'
18
+ },
19
+ hydrateModule: import('@sellmate/design-system/hydrate'),
20
+ clientModule: clientComponents.SdIcon,
21
+ serializeShadowRoot,
22
+ });
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { type SdInputCustomEvent } from "@sellmate/design-system";
6
+ import { SdInput as SdInputElement } from "@sellmate/design-system/dist/components/sd-input.js";
7
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
8
+ export type SdInputEvents = {
9
+ onSdClick: EventName<CustomEvent<string | number | null>>;
10
+ onSdInput: EventName<CustomEvent<string | number | null>>;
11
+ onSdChange: EventName<CustomEvent<string | number | null>>;
12
+ onSdFocus: EventName<SdInputCustomEvent<Event>>;
13
+ onSdBlur: EventName<SdInputCustomEvent<Event>>;
14
+ };
15
+ export declare const SdInput: StencilReactComponent<SdInputElement, SdInputEvents>;
@@ -0,0 +1,18 @@
1
+ 'use client';
2
+ import { SdInput as SdInputElement, defineCustomElement as defineSdInput } from "@sellmate/design-system/dist/components/sd-input.js";
3
+ import { createComponent } from '@stencil/react-output-target/runtime';
4
+ import React from 'react';
5
+ export const SdInput = /*@__PURE__*/ createComponent({
6
+ tagName: 'sd-input',
7
+ elementClass: SdInputElement,
8
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
9
+ react: React,
10
+ events: {
11
+ onSdClick: 'sdClick',
12
+ onSdInput: 'sdInput',
13
+ onSdChange: 'sdChange',
14
+ onSdFocus: 'sdFocus',
15
+ onSdBlur: 'sdBlur'
16
+ },
17
+ defineCustomElement: defineSdInput
18
+ });
@@ -0,0 +1,17 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { type SdInputCustomEvent } from "@sellmate/design-system";
6
+ import { SdInput as SdInputElement } from "@sellmate/design-system/dist/components/sd-input.js";
7
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
8
+ import { type SerializeShadowRootOptions } from '@stencil/react-output-target/ssr';
9
+ export declare const serializeShadowRoot: SerializeShadowRootOptions;
10
+ export type SdInputEvents = {
11
+ onSdClick: EventName<CustomEvent<string | number | null>>;
12
+ onSdInput: EventName<CustomEvent<string | number | null>>;
13
+ onSdChange: EventName<CustomEvent<string | number | null>>;
14
+ onSdFocus: EventName<SdInputCustomEvent<Event>>;
15
+ onSdBlur: EventName<SdInputCustomEvent<Event>>;
16
+ };
17
+ export declare const SdInput: StencilReactComponent<SdInputElement, SdInputEvents>;
@@ -0,0 +1,28 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ /* eslint-disable */
6
+ // @ts-ignore - ignore potential type issues as the project is importing itself
7
+ import * as clientComponents from '@sellmate/design-system-react';
8
+ import { createComponent } from '@stencil/react-output-target/ssr';
9
+ export const serializeShadowRoot = { default: "declarative-shadow-dom" };
10
+ export const SdInput = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-input',
12
+ properties: {
13
+ value: 'value',
14
+ label: 'label',
15
+ placeholder: 'placeholder',
16
+ disabled: 'disabled',
17
+ clearable: 'clearable',
18
+ width: 'width',
19
+ barcode: 'barcode',
20
+ autoFocus: 'auto-focus',
21
+ status: 'status',
22
+ inputClass: 'input-class',
23
+ readonly: 'readonly'
24
+ },
25
+ hydrateModule: import('@sellmate/design-system/hydrate'),
26
+ clientModule: clientComponents.SdInput,
27
+ serializeShadowRoot,
28
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdPagination as SdPaginationElement } from "@sellmate/design-system/dist/components/sd-pagination.js";
6
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ export type SdPaginationEvents = {
8
+ onPageChange: EventName<CustomEvent<number>>;
9
+ };
10
+ export declare const SdPagination: StencilReactComponent<SdPaginationElement, SdPaginationEvents>;
@@ -0,0 +1,17 @@
1
+ 'use client';
2
+ /**
3
+ * This file was automatically generated by the Stencil React Output Target.
4
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
5
+ */
6
+ /* eslint-disable */
7
+ import { SdPagination as SdPaginationElement, defineCustomElement as defineSdPagination } from "@sellmate/design-system/dist/components/sd-pagination.js";
8
+ import { createComponent } from '@stencil/react-output-target/runtime';
9
+ import React from 'react';
10
+ export const SdPagination = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-pagination',
12
+ elementClass: SdPaginationElement,
13
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
14
+ react: React,
15
+ events: { onPageChange: 'pageChange' },
16
+ defineCustomElement: defineSdPagination
17
+ });
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdPagination as SdPaginationElement } from "@sellmate/design-system/dist/components/sd-pagination.js";
6
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ import { type SerializeShadowRootOptions } from '@stencil/react-output-target/ssr';
8
+ export declare const serializeShadowRoot: SerializeShadowRootOptions;
9
+ export type SdPaginationEvents = {
10
+ onPageChange: EventName<CustomEvent<number>>;
11
+ };
12
+ export declare const SdPagination: StencilReactComponent<SdPaginationElement, SdPaginationEvents>;
@@ -0,0 +1,20 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ /* eslint-disable */
6
+ // @ts-ignore - ignore potential type issues as the project is importing itself
7
+ import * as clientComponents from '@sellmate/design-system-react';
8
+ import { createComponent } from '@stencil/react-output-target/ssr';
9
+ export const serializeShadowRoot = { default: "declarative-shadow-dom" };
10
+ export const SdPagination = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-pagination',
12
+ properties: {
13
+ currentPage: 'current-page',
14
+ lastPage: 'last-page',
15
+ simple: 'simple'
16
+ },
17
+ hydrateModule: import('@sellmate/design-system/hydrate'),
18
+ clientModule: clientComponents.SdPagination,
19
+ serializeShadowRoot,
20
+ });
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdPopover as SdPopoverElement } from "@sellmate/design-system/dist/components/sd-popover.js";
6
+ import type { StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ export type SdPopoverEvents = NonNullable<unknown>;
8
+ export declare const SdPopover: StencilReactComponent<SdPopoverElement, SdPopoverEvents>;
@@ -0,0 +1,17 @@
1
+ 'use client';
2
+ /**
3
+ * This file was automatically generated by the Stencil React Output Target.
4
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
5
+ */
6
+ /* eslint-disable */
7
+ import { SdPopover as SdPopoverElement, defineCustomElement as defineSdPopover } from "@sellmate/design-system/dist/components/sd-popover.js";
8
+ import { createComponent } from '@stencil/react-output-target/runtime';
9
+ import React from 'react';
10
+ export const SdPopover = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-popover',
12
+ elementClass: SdPopoverElement,
13
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
14
+ react: React,
15
+ events: {},
16
+ defineCustomElement: defineSdPopover
17
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdPopover as SdPopoverElement } from "@sellmate/design-system/dist/components/sd-popover.js";
6
+ import type { StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ import { type SerializeShadowRootOptions } from '@stencil/react-output-target/ssr';
8
+ export declare const serializeShadowRoot: SerializeShadowRootOptions;
9
+ export type SdPopoverEvents = NonNullable<unknown>;
10
+ export declare const SdPopover: StencilReactComponent<SdPopoverElement, SdPopoverEvents>;
@@ -0,0 +1,29 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ /* eslint-disable */
6
+ // @ts-ignore - ignore potential type issues as the project is importing itself
7
+ import * as clientComponents from '@sellmate/design-system-react';
8
+ import { createComponent } from '@stencil/react-output-target/ssr';
9
+ export const serializeShadowRoot = { default: "declarative-shadow-dom" };
10
+ export const SdPopover = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-popover',
12
+ properties: {
13
+ show: 'show',
14
+ placement: 'placement',
15
+ color: 'color',
16
+ icon: 'icon',
17
+ iconSize: 'icon-size',
18
+ label: 'label',
19
+ buttonSize: 'button-size',
20
+ buttonVariant: 'button-variant',
21
+ menuTitle: 'title',
22
+ menuClass: 'menu-class',
23
+ noHover: 'no-hover',
24
+ useClose: 'use-close'
25
+ },
26
+ hydrateModule: import('@sellmate/design-system/hydrate'),
27
+ clientModule: clientComponents.SdPopover,
28
+ serializeShadowRoot,
29
+ });
@@ -0,0 +1,10 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdPortal as SdPortalElement } from "@sellmate/design-system/dist/components/sd-portal.js";
6
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ export type SdPortalEvents = {
8
+ onSdClose: EventName<CustomEvent<void>>;
9
+ };
10
+ export declare const SdPortal: StencilReactComponent<SdPortalElement, SdPortalEvents>;
@@ -0,0 +1,17 @@
1
+ 'use client';
2
+ /**
3
+ * This file was automatically generated by the Stencil React Output Target.
4
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
5
+ */
6
+ /* eslint-disable */
7
+ import { SdPortal as SdPortalElement, defineCustomElement as defineSdPortal } from "@sellmate/design-system/dist/components/sd-portal.js";
8
+ import { createComponent } from '@stencil/react-output-target/runtime';
9
+ import React from 'react';
10
+ export const SdPortal = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-portal',
12
+ elementClass: SdPortalElement,
13
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
14
+ react: React,
15
+ events: { onSdClose: 'sdClose' },
16
+ defineCustomElement: defineSdPortal
17
+ });
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { SdPortal as SdPortalElement } from "@sellmate/design-system/dist/components/sd-portal.js";
6
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
7
+ import { type SerializeShadowRootOptions } from '@stencil/react-output-target/ssr';
8
+ export declare const serializeShadowRoot: SerializeShadowRootOptions;
9
+ export type SdPortalEvents = {
10
+ onSdClose: EventName<CustomEvent<void>>;
11
+ };
12
+ export declare const SdPortal: StencilReactComponent<SdPortalElement, SdPortalEvents>;
@@ -0,0 +1,20 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ /* eslint-disable */
6
+ // @ts-ignore - ignore potential type issues as the project is importing itself
7
+ import * as clientComponents from '@sellmate/design-system-react';
8
+ import { createComponent } from '@stencil/react-output-target/ssr';
9
+ export const serializeShadowRoot = { default: "declarative-shadow-dom" };
10
+ export const SdPortal = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-portal',
12
+ properties: {
13
+ to: 'to',
14
+ zIndex: 'z-index',
15
+ open: 'open'
16
+ },
17
+ hydrateModule: import('@sellmate/design-system/hydrate'),
18
+ clientModule: clientComponents.SdPortal,
19
+ serializeShadowRoot,
20
+ });
@@ -0,0 +1,15 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { type SdSelectOptionCustomEvent, type SelectOption } from "@sellmate/design-system";
6
+ import { SdSelectOption as SdSelectOptionElement } from "@sellmate/design-system/dist/components/sd-select-option.js";
7
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
8
+ export type SdSelectOptionEvents = {
9
+ onOptionClick: EventName<SdSelectOptionCustomEvent<{
10
+ option: SelectOption;
11
+ index: number;
12
+ event: MouseEvent;
13
+ }>>;
14
+ };
15
+ export declare const SdSelectOption: StencilReactComponent<SdSelectOptionElement, SdSelectOptionEvents>;
@@ -0,0 +1,12 @@
1
+ 'use client';
2
+ import { SdSelectOption as SdSelectOptionElement, defineCustomElement as defineSdSelectOption } from "@sellmate/design-system/dist/components/sd-select-option.js";
3
+ import { createComponent } from '@stencil/react-output-target/runtime';
4
+ import React from 'react';
5
+ export const SdSelectOption = /*@__PURE__*/ createComponent({
6
+ tagName: 'sd-select-option',
7
+ elementClass: SdSelectOptionElement,
8
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
9
+ react: React,
10
+ events: { onOptionClick: 'optionClick' },
11
+ defineCustomElement: defineSdSelectOption
12
+ });
@@ -0,0 +1,17 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { type SdSelectOptionCustomEvent, type SelectOption } from "@sellmate/design-system";
6
+ import { SdSelectOption as SdSelectOptionElement } from "@sellmate/design-system/dist/components/sd-select-option.js";
7
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
8
+ import { type SerializeShadowRootOptions } from '@stencil/react-output-target/ssr';
9
+ export declare const serializeShadowRoot: SerializeShadowRootOptions;
10
+ export type SdSelectOptionEvents = {
11
+ onOptionClick: EventName<SdSelectOptionCustomEvent<{
12
+ option: SelectOption;
13
+ index: number;
14
+ event: MouseEvent;
15
+ }>>;
16
+ };
17
+ export declare const SdSelectOption: StencilReactComponent<SdSelectOptionElement, SdSelectOptionEvents>;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ /* eslint-disable */
6
+ // @ts-ignore - ignore potential type issues as the project is importing itself
7
+ import * as clientComponents from '@sellmate/design-system-react';
8
+ import { createComponent } from '@stencil/react-output-target/ssr';
9
+ export const serializeShadowRoot = { default: "declarative-shadow-dom" };
10
+ export const SdSelectOption = /*@__PURE__*/ createComponent({
11
+ tagName: 'sd-select-option',
12
+ properties: {
13
+ index: 'index',
14
+ isSelected: 'is-selected',
15
+ isFocused: 'is-focused',
16
+ disabled: 'disabled',
17
+ useCheckbox: 'use-checkbox'
18
+ },
19
+ hydrateModule: import('@sellmate/design-system/hydrate'),
20
+ clientModule: clientComponents.SdSelectOption,
21
+ serializeShadowRoot,
22
+ });
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { type SdSelectCustomEvent, type SelectEvents } from "@sellmate/design-system";
6
+ import { SdSelect as SdSelectElement } from "@sellmate/design-system/dist/components/sd-select.js";
7
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
8
+ export type SdSelectEvents = {
9
+ onSdChange: EventName<SdSelectCustomEvent<SelectEvents['sdChange']>>;
10
+ onDropDownShow: EventName<SdSelectCustomEvent<SelectEvents['dropDownShow']>>;
11
+ };
12
+ export declare const SdSelect: StencilReactComponent<SdSelectElement, SdSelectEvents>;
@@ -0,0 +1,15 @@
1
+ 'use client';
2
+ import { SdSelect as SdSelectElement, defineCustomElement as defineSdSelect } from "@sellmate/design-system/dist/components/sd-select.js";
3
+ import { createComponent } from '@stencil/react-output-target/runtime';
4
+ import React from 'react';
5
+ export const SdSelect = /*@__PURE__*/ createComponent({
6
+ tagName: 'sd-select',
7
+ elementClass: SdSelectElement,
8
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
9
+ react: React,
10
+ events: {
11
+ onSdChange: 'sdChange',
12
+ onDropDownShow: 'dropDownShow'
13
+ },
14
+ defineCustomElement: defineSdSelect
15
+ });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * This file was automatically generated by the Stencil React Output Target.
3
+ * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
+ */
5
+ import { type SdSelectCustomEvent, type SelectEvents } from "@sellmate/design-system";
6
+ import { SdSelect as SdSelectElement } from "@sellmate/design-system/dist/components/sd-select.js";
7
+ import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
8
+ import { type SerializeShadowRootOptions } from '@stencil/react-output-target/ssr';
9
+ export declare const serializeShadowRoot: SerializeShadowRootOptions;
10
+ export type SdSelectEvents = {
11
+ onSdChange: EventName<SdSelectCustomEvent<SelectEvents['sdChange']>>;
12
+ onDropDownShow: EventName<SdSelectCustomEvent<SelectEvents['dropDownShow']>>;
13
+ };
14
+ export declare const SdSelect: StencilReactComponent<SdSelectElement, SdSelectEvents>;