@sellmate/design-system-react 0.0.12 → 0.0.14
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.
- package/dist/components/sd-badge.server.d.ts +10 -0
- package/dist/components/sd-badge.server.js +20 -0
- package/dist/components/sd-button.server.d.ts +13 -0
- package/dist/components/sd-button.server.js +28 -0
- package/dist/components/sd-checkbox.server.d.ts +12 -0
- package/dist/components/sd-checkbox.server.js +21 -0
- package/dist/components/sd-date-box.server.d.ts +13 -0
- package/dist/components/sd-date-box.server.js +25 -0
- package/dist/components/sd-date-picker.server.d.ts +12 -0
- package/dist/components/sd-date-picker.server.js +20 -0
- package/dist/components/sd-date-range-picker.server.d.ts +12 -0
- package/dist/components/sd-date-range-picker.server.js +20 -0
- package/dist/components/sd-guide.server.d.ts +10 -0
- package/dist/components/sd-guide.server.js +22 -0
- package/dist/components/sd-icon.server.d.ts +10 -0
- package/dist/components/sd-icon.server.js +22 -0
- package/dist/components/sd-input.server.d.ts +17 -0
- package/dist/components/sd-input.server.js +28 -0
- package/dist/components/sd-pagination.server.d.ts +12 -0
- package/dist/components/sd-pagination.server.js +20 -0
- package/dist/components/sd-popover.server.d.ts +10 -0
- package/dist/components/sd-popover.server.js +29 -0
- package/dist/components/sd-portal.server.d.ts +12 -0
- package/dist/components/sd-portal.server.js +20 -0
- package/dist/components/sd-select-option.server.d.ts +17 -0
- package/dist/components/sd-select-option.server.js +22 -0
- package/dist/components/sd-select.server.d.ts +14 -0
- package/dist/components/sd-select.server.js +26 -0
- package/dist/components/sd-table.server.d.ts +14 -0
- package/dist/components/sd-table.server.js +23 -0
- package/dist/components/sd-tag.server.d.ts +10 -0
- package/dist/components/sd-tag.server.js +23 -0
- package/dist/components/sd-tooltip-portal.server.d.ts +12 -0
- package/dist/components/sd-tooltip-portal.server.js +21 -0
- package/dist/components/sd-tooltip.server.d.ts +10 -0
- package/dist/components/sd-tooltip.server.js +27 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -2
- package/lib/components/sd-badge.server.ts +29 -0
- package/lib/components/sd-button.server.ts +38 -0
- package/lib/components/sd-checkbox.server.ts +30 -0
- package/lib/components/sd-date-box.server.ts +37 -0
- package/lib/components/sd-date-picker.server.ts +29 -0
- package/lib/components/sd-date-range-picker.server.ts +29 -0
- package/lib/components/sd-guide.server.ts +31 -0
- package/lib/components/sd-icon.server.ts +31 -0
- package/lib/components/sd-input.server.ts +44 -0
- package/lib/components/sd-pagination.server.ts +29 -0
- package/lib/components/sd-popover.server.ts +38 -0
- package/lib/components/sd-portal.server.ts +29 -0
- package/lib/components/sd-select-option.server.ts +38 -0
- package/lib/components/sd-select.server.ts +39 -0
- package/lib/components/sd-table.server.ts +36 -0
- package/lib/components/sd-tag.server.ts +32 -0
- package/lib/components/sd-tooltip-portal.server.ts +30 -0
- package/lib/components/sd-tooltip.server.ts +36 -0
- package/lib/index.ts +1 -3
- package/package.json +6 -7
- package/dist/hydrate.d.ts +0 -2
- package/dist/hydrate.js +0 -45
- package/dist/registerStencil.d.ts +0 -1
- package/dist/registerStencil.js +0 -8
- package/lib/hydrate.ts +0 -53
- package/lib/registerStencil.ts +0 -9
|
@@ -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 { SdBadge as SdBadgeElement } from "@sellmate/design-system/dist/components/sd-badge.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 SdBadgeEvents = NonNullable<unknown>;
|
|
10
|
+
export declare const SdBadge: StencilReactComponent<SdBadgeElement, SdBadgeEvents>;
|
|
@@ -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 SdBadge = /*@__PURE__*/ createComponent({
|
|
11
|
+
tagName: 'sd-badge',
|
|
12
|
+
properties: {
|
|
13
|
+
size: 'size',
|
|
14
|
+
color: 'color',
|
|
15
|
+
label: 'label'
|
|
16
|
+
},
|
|
17
|
+
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
18
|
+
clientModule: clientComponents.SdBadge,
|
|
19
|
+
serializeShadowRoot,
|
|
20
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
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 SdButtonCustomEvent } from "@sellmate/design-system";
|
|
6
|
+
import { SdButton as SdButtonElement } from "@sellmate/design-system/dist/components/sd-button.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 SdButtonEvents = {
|
|
11
|
+
onSdClick: EventName<SdButtonCustomEvent<MouseEvent>>;
|
|
12
|
+
};
|
|
13
|
+
export declare const SdButton: StencilReactComponent<SdButtonElement, SdButtonEvents>;
|
|
@@ -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 SdButton = /*@__PURE__*/ createComponent({
|
|
11
|
+
tagName: 'sd-button',
|
|
12
|
+
properties: {
|
|
13
|
+
variant: 'variant',
|
|
14
|
+
size: 'size',
|
|
15
|
+
color: 'color',
|
|
16
|
+
label: 'label',
|
|
17
|
+
disabled: 'disabled',
|
|
18
|
+
type: 'type',
|
|
19
|
+
icon: 'icon',
|
|
20
|
+
iconColor: 'icon-color',
|
|
21
|
+
iconSize: 'icon-size',
|
|
22
|
+
iconRight: 'icon-right',
|
|
23
|
+
noHover: 'no-hover'
|
|
24
|
+
},
|
|
25
|
+
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
26
|
+
clientModule: clientComponents.SdButton,
|
|
27
|
+
serializeShadowRoot,
|
|
28
|
+
});
|
|
@@ -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 { SdCheckbox as SdCheckboxElement } from "@sellmate/design-system/dist/components/sd-checkbox.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 SdCheckboxEvents = {
|
|
10
|
+
onSdChange: EventName<CustomEvent<any | any[]>>;
|
|
11
|
+
};
|
|
12
|
+
export declare const SdCheckbox: StencilReactComponent<SdCheckboxElement, SdCheckboxEvents>;
|
|
@@ -0,0 +1,21 @@
|
|
|
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 SdCheckbox = /*@__PURE__*/ createComponent({
|
|
11
|
+
tagName: 'sd-checkbox',
|
|
12
|
+
properties: {
|
|
13
|
+
checked: 'checked',
|
|
14
|
+
val: 'val',
|
|
15
|
+
disabled: 'disabled',
|
|
16
|
+
label: 'label'
|
|
17
|
+
},
|
|
18
|
+
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
19
|
+
clientModule: clientComponents.SdCheckbox,
|
|
20
|
+
serializeShadowRoot,
|
|
21
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
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 { SdDateBox as SdDateBoxElement } from "@sellmate/design-system/dist/components/sd-date-box.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 SdDateBoxEvents = {
|
|
10
|
+
onSdClick: EventName<CustomEvent<number | string | null>>;
|
|
11
|
+
onSdMouseOver: EventName<CustomEvent<number | string | null>>;
|
|
12
|
+
};
|
|
13
|
+
export declare const SdDateBox: StencilReactComponent<SdDateBoxElement, SdDateBoxEvents>;
|
|
@@ -0,0 +1,25 @@
|
|
|
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 SdDateBox = /*@__PURE__*/ createComponent({
|
|
11
|
+
tagName: 'sd-date-box',
|
|
12
|
+
properties: {
|
|
13
|
+
date: 'date',
|
|
14
|
+
disabled: 'disabled',
|
|
15
|
+
selected: 'selected',
|
|
16
|
+
isStartDate: 'is-start-date',
|
|
17
|
+
isEndDate: 'is-end-date',
|
|
18
|
+
isToday: 'is-today',
|
|
19
|
+
inRange: 'in-range',
|
|
20
|
+
type: 'type'
|
|
21
|
+
},
|
|
22
|
+
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
23
|
+
clientModule: clientComponents.SdDateBox,
|
|
24
|
+
serializeShadowRoot,
|
|
25
|
+
});
|
|
@@ -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 { SdDatePicker as SdDatePickerElement } from "@sellmate/design-system/dist/components/sd-date-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 SdDatePickerEvents = {
|
|
10
|
+
onSdChange: EventName<CustomEvent<string | null>>;
|
|
11
|
+
};
|
|
12
|
+
export declare const SdDatePicker: StencilReactComponent<SdDatePickerElement, SdDatePickerEvents>;
|
|
@@ -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,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,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,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,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,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,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,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,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,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>;
|
|
@@ -0,0 +1,26 @@
|
|
|
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 SdSelect = /*@__PURE__*/ createComponent({
|
|
11
|
+
tagName: 'sd-select',
|
|
12
|
+
properties: {
|
|
13
|
+
value: 'value',
|
|
14
|
+
label: 'label',
|
|
15
|
+
placeholder: 'placeholder',
|
|
16
|
+
optionPlaceholder: 'option-placeholder',
|
|
17
|
+
width: 'width',
|
|
18
|
+
dropdownHeight: 'dropdown-height',
|
|
19
|
+
disabled: 'disabled',
|
|
20
|
+
clearable: 'clearable',
|
|
21
|
+
searchable: 'searchable'
|
|
22
|
+
},
|
|
23
|
+
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
24
|
+
clientModule: clientComponents.SdSelect,
|
|
25
|
+
serializeShadowRoot,
|
|
26
|
+
});
|
|
@@ -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 Row, type SdTableCustomEvent } from "@sellmate/design-system";
|
|
6
|
+
import { SdTable as SdTableElement } from "@sellmate/design-system/dist/components/sd-table.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 SdTableEvents = {
|
|
11
|
+
onSdSelectChange: EventName<SdTableCustomEvent<Row[]>>;
|
|
12
|
+
onSdPageChange: EventName<CustomEvent<number>>;
|
|
13
|
+
};
|
|
14
|
+
export declare const SdTable: StencilReactComponent<SdTableElement, SdTableEvents>;
|
|
@@ -0,0 +1,23 @@
|
|
|
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 SdTable = /*@__PURE__*/ createComponent({
|
|
11
|
+
tagName: 'sd-table',
|
|
12
|
+
properties: {
|
|
13
|
+
rowKey: 'row-key',
|
|
14
|
+
selectable: 'selectable',
|
|
15
|
+
resizable: 'resizable',
|
|
16
|
+
height: 'height',
|
|
17
|
+
stickyHeader: 'sticky-header',
|
|
18
|
+
noDataLabel: 'no-data-label'
|
|
19
|
+
},
|
|
20
|
+
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
21
|
+
clientModule: clientComponents.SdTable,
|
|
22
|
+
serializeShadowRoot,
|
|
23
|
+
});
|
|
@@ -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 { SdTag as SdTagElement } from "@sellmate/design-system/dist/components/sd-tag.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 SdTagEvents = NonNullable<unknown>;
|
|
10
|
+
export declare const SdTag: StencilReactComponent<SdTagElement, SdTagEvents>;
|
|
@@ -0,0 +1,23 @@
|
|
|
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 SdTag = /*@__PURE__*/ createComponent({
|
|
11
|
+
tagName: 'sd-tag',
|
|
12
|
+
properties: {
|
|
13
|
+
size: 'size',
|
|
14
|
+
color: 'color',
|
|
15
|
+
rounded: 'rounded',
|
|
16
|
+
label: 'label',
|
|
17
|
+
bgColor: 'bg-color',
|
|
18
|
+
textColor: 'text-color'
|
|
19
|
+
},
|
|
20
|
+
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
21
|
+
clientModule: clientComponents.SdTag,
|
|
22
|
+
serializeShadowRoot,
|
|
23
|
+
});
|
|
@@ -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 { SdTooltipPortal as SdTooltipPortalElement } from "@sellmate/design-system/dist/components/sd-tooltip-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 SdTooltipPortalEvents = {
|
|
10
|
+
onSdClose: EventName<CustomEvent<void>>;
|
|
11
|
+
};
|
|
12
|
+
export declare const SdTooltipPortal: StencilReactComponent<SdTooltipPortalElement, SdTooltipPortalEvents>;
|