@sellmate/design-system-react 1.7.3 → 1.9.0
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.
|
@@ -764,7 +764,7 @@ export const SdTextLink = /*@__PURE__*/ createComponent({
|
|
|
764
764
|
icon: 'icon',
|
|
765
765
|
iconColor: 'icon-color',
|
|
766
766
|
labelClass: 'label-class',
|
|
767
|
-
|
|
767
|
+
rightArrow: 'right-arrow',
|
|
768
768
|
underline: 'underline',
|
|
769
769
|
disabled: 'disabled'
|
|
770
770
|
},
|
|
@@ -8,6 +8,7 @@ import { defineCustomElement as defineSdTbody } from '@sellmate/design-system/di
|
|
|
8
8
|
import { defineCustomElement as defineSdTd } from '@sellmate/design-system/dist/components/sd-td.js';
|
|
9
9
|
import { defineCustomElement as defineSdThead } from '@sellmate/design-system/dist/components/sd-thead.js';
|
|
10
10
|
import { defineCustomElement as defineSdTr } from '@sellmate/design-system/dist/components/sd-tr.js';
|
|
11
|
+
import { defineCustomElement as defineSdDivider } from '@sellmate/design-system/dist/components/sd-divider.js';
|
|
11
12
|
export function defineCustomElements() {
|
|
12
13
|
if (typeof customElements === 'undefined')
|
|
13
14
|
return;
|
|
@@ -20,6 +21,7 @@ export function defineCustomElements() {
|
|
|
20
21
|
defineSdTd();
|
|
21
22
|
defineSdThead();
|
|
22
23
|
defineSdTr();
|
|
24
|
+
defineSdDivider();
|
|
23
25
|
// 나머지 컴포넌트는 Stencil loader가 lazy 등록
|
|
24
26
|
defineLazyCustomElements();
|
|
25
27
|
}
|
|
@@ -1034,7 +1034,7 @@ export const SdTextLink: StencilReactComponent<SdTextLinkElement, SdTextLinkEven
|
|
|
1034
1034
|
icon: 'icon',
|
|
1035
1035
|
iconColor: 'icon-color',
|
|
1036
1036
|
labelClass: 'label-class',
|
|
1037
|
-
|
|
1037
|
+
rightArrow: 'right-arrow',
|
|
1038
1038
|
underline: 'underline',
|
|
1039
1039
|
disabled: 'disabled'
|
|
1040
1040
|
},
|
|
@@ -9,6 +9,7 @@ import { defineCustomElement as defineSdTbody } from '@sellmate/design-system/di
|
|
|
9
9
|
import { defineCustomElement as defineSdTd } from '@sellmate/design-system/dist/components/sd-td.js';
|
|
10
10
|
import { defineCustomElement as defineSdThead } from '@sellmate/design-system/dist/components/sd-thead.js';
|
|
11
11
|
import { defineCustomElement as defineSdTr } from '@sellmate/design-system/dist/components/sd-tr.js';
|
|
12
|
+
import { defineCustomElement as defineSdDivider } from '@sellmate/design-system/dist/components/sd-divider.js';
|
|
12
13
|
|
|
13
14
|
export function defineCustomElements(): void {
|
|
14
15
|
if (typeof customElements === 'undefined') return;
|
|
@@ -22,6 +23,7 @@ export function defineCustomElements(): void {
|
|
|
22
23
|
defineSdTd();
|
|
23
24
|
defineSdThead();
|
|
24
25
|
defineSdTr();
|
|
26
|
+
defineSdDivider();
|
|
25
27
|
|
|
26
28
|
// 나머지 컴포넌트는 Stencil loader가 lazy 등록
|
|
27
29
|
defineLazyCustomElements();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellmate/design-system-react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "Design System - React Component Wrappers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"typecheck": "tsc --noEmit"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@sellmate/design-system": "^1.
|
|
58
|
+
"@sellmate/design-system": "^1.9.0",
|
|
59
59
|
"@stencil/react-output-target": "^1.2.0"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|