@sellmate/design-system-vue 0.0.51 → 0.0.52
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.d.ts +1 -0
- package/dist/components.js +8 -0
- package/lib/components.ts +11 -0
- package/package.json +54 -54
package/dist/components.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export declare const SdTag: StencilVueComponent<JSX.SdTag>;
|
|
|
28
28
|
export declare const SdTbody: StencilVueComponent<JSX.SdTbody>;
|
|
29
29
|
export declare const SdTd: StencilVueComponent<JSX.SdTd>;
|
|
30
30
|
export declare const SdTh: StencilVueComponent<JSX.SdTh>;
|
|
31
|
+
export declare const SdToggle: StencilVueComponent<JSX.SdToggle, JSX.SdToggle["value"]>;
|
|
31
32
|
export declare const SdTooltip: StencilVueComponent<JSX.SdTooltip>;
|
|
32
33
|
export declare const SdTooltipPortal: StencilVueComponent<JSX.SdTooltipPortal>;
|
|
33
34
|
export declare const SdTr: StencilVueComponent<JSX.SdTr>;
|
package/dist/components.js
CHANGED
|
@@ -344,6 +344,14 @@ export const SdTd = /*@__PURE__*/ defineContainer('sd-td', undefined, [
|
|
|
344
344
|
'tdClass'
|
|
345
345
|
]);
|
|
346
346
|
export const SdTh = /*@__PURE__*/ defineContainer('sd-th', undefined);
|
|
347
|
+
export const SdToggle = /*@__PURE__*/ defineContainer('sd-toggle', undefined, [
|
|
348
|
+
'value',
|
|
349
|
+
'label',
|
|
350
|
+
'disabled',
|
|
351
|
+
'sdChange'
|
|
352
|
+
], [
|
|
353
|
+
'sdChange'
|
|
354
|
+
], 'value', 'sdChange', undefined);
|
|
347
355
|
export const SdTooltip = /*@__PURE__*/ defineContainer('sd-tooltip', undefined, [
|
|
348
356
|
'trigger',
|
|
349
357
|
'placement',
|
package/lib/components.ts
CHANGED
|
@@ -408,6 +408,17 @@ export const SdTd: StencilVueComponent<JSX.SdTd> = /*@__PURE__*/ defineContainer
|
|
|
408
408
|
export const SdTh: StencilVueComponent<JSX.SdTh> = /*@__PURE__*/ defineContainer<JSX.SdTh>('sd-th', undefined);
|
|
409
409
|
|
|
410
410
|
|
|
411
|
+
export const SdToggle: StencilVueComponent<JSX.SdToggle, JSX.SdToggle["value"]> = /*@__PURE__*/ defineContainer<JSX.SdToggle, JSX.SdToggle["value"]>('sd-toggle', undefined, [
|
|
412
|
+
'value',
|
|
413
|
+
'label',
|
|
414
|
+
'disabled',
|
|
415
|
+
'sdChange'
|
|
416
|
+
], [
|
|
417
|
+
'sdChange'
|
|
418
|
+
],
|
|
419
|
+
'value', 'sdChange', undefined);
|
|
420
|
+
|
|
421
|
+
|
|
411
422
|
export const SdTooltip: StencilVueComponent<JSX.SdTooltip> = /*@__PURE__*/ defineContainer<JSX.SdTooltip>('sd-tooltip', undefined, [
|
|
412
423
|
'trigger',
|
|
413
424
|
'placement',
|
package/package.json
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@sellmate/design-system-vue",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Design System - Vue Component Wrappers",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"vue",
|
|
7
|
-
"web-components",
|
|
8
|
-
"design-system",
|
|
9
|
-
"ui-library"
|
|
10
|
-
],
|
|
11
|
-
"homepage": "https://gitlab.corp.sellmate.co.kr/sellmate/frontend/design-system/-/blob/main/README.md?ref_type=heads",
|
|
12
|
-
"repository": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "https://gitlab.corp.sellmate.co.kr/sellmate/frontend/design-system.git"
|
|
15
|
-
},
|
|
16
|
-
"bugs": {
|
|
17
|
-
"url": "https://gitlab.corp.sellmate.co.kr/sellmate/frontend/design-system/-/issues"
|
|
18
|
-
},
|
|
19
|
-
"license": "MIT",
|
|
20
|
-
"author": {
|
|
21
|
-
"name": "MeeKyeong Kim",
|
|
22
|
-
"email": "kmeijjing@gmail.com"
|
|
23
|
-
},
|
|
24
|
-
"main": "dist/index.js",
|
|
25
|
-
"types": "dist/index.d.ts",
|
|
26
|
-
"directories": {
|
|
27
|
-
"lib": "lib",
|
|
28
|
-
"test": "__tests__"
|
|
29
|
-
},
|
|
30
|
-
"files": [
|
|
31
|
-
"lib",
|
|
32
|
-
"dist"
|
|
33
|
-
],
|
|
34
|
-
"publishConfig": {
|
|
35
|
-
"access": "public"
|
|
36
|
-
},
|
|
37
|
-
"scripts": {
|
|
38
|
-
"build": "tsc",
|
|
39
|
-
"clean": "rm -rf lib",
|
|
40
|
-
"dev": "tsc --watch"
|
|
41
|
-
},
|
|
42
|
-
"devDependencies": {
|
|
43
|
-
"@types/node": "^24.9.1",
|
|
44
|
-
"typescript": "^5.9.3",
|
|
45
|
-
"vue": "^3.4.38"
|
|
46
|
-
},
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"@sellmate/design-system": "^0.0.
|
|
49
|
-
"@stencil/vue-output-target": "^0.11.8"
|
|
50
|
-
},
|
|
51
|
-
"peerDependencies": {
|
|
52
|
-
"vue": ">=3.0.0"
|
|
53
|
-
}
|
|
54
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@sellmate/design-system-vue",
|
|
3
|
+
"version": "0.0.52",
|
|
4
|
+
"description": "Design System - Vue Component Wrappers",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"vue",
|
|
7
|
+
"web-components",
|
|
8
|
+
"design-system",
|
|
9
|
+
"ui-library"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://gitlab.corp.sellmate.co.kr/sellmate/frontend/design-system/-/blob/main/README.md?ref_type=heads",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://gitlab.corp.sellmate.co.kr/sellmate/frontend/design-system.git"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://gitlab.corp.sellmate.co.kr/sellmate/frontend/design-system/-/issues"
|
|
18
|
+
},
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"author": {
|
|
21
|
+
"name": "MeeKyeong Kim",
|
|
22
|
+
"email": "kmeijjing@gmail.com"
|
|
23
|
+
},
|
|
24
|
+
"main": "dist/index.js",
|
|
25
|
+
"types": "dist/index.d.ts",
|
|
26
|
+
"directories": {
|
|
27
|
+
"lib": "lib",
|
|
28
|
+
"test": "__tests__"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"lib",
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "tsc",
|
|
39
|
+
"clean": "rm -rf lib",
|
|
40
|
+
"dev": "tsc --watch"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/node": "^24.9.1",
|
|
44
|
+
"typescript": "^5.9.3",
|
|
45
|
+
"vue": "^3.4.38"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@sellmate/design-system": "^0.0.51",
|
|
49
|
+
"@stencil/vue-output-target": "^0.11.8"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"vue": ">=3.0.0"
|
|
53
|
+
}
|
|
54
|
+
}
|