@sellmate/design-system-vue 0.0.50 → 0.0.51

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.
@@ -16,6 +16,7 @@ export declare const SdPagination: StencilVueComponent<JSX.SdPagination>;
16
16
  export declare const SdPopover: StencilVueComponent<JSX.SdPopover>;
17
17
  export declare const SdPortal: StencilVueComponent<JSX.SdPortal>;
18
18
  export declare const SdProgress: StencilVueComponent<JSX.SdProgress>;
19
+ export declare const SdRadioGroup: StencilVueComponent<JSX.SdRadioGroup, JSX.SdRadioGroup["value"]>;
19
20
  export declare const SdSelect: StencilVueComponent<JSX.SdSelect>;
20
21
  export declare const SdSelectMultiple: StencilVueComponent<JSX.SdSelectMultiple>;
21
22
  export declare const SdSelectMultipleGroup: StencilVueComponent<JSX.SdSelectMultipleGroup>;
@@ -171,6 +171,16 @@ export const SdProgress = /*@__PURE__*/ defineContainer('sd-progress', undefined
171
171
  'strokeWidth',
172
172
  'label'
173
173
  ]);
174
+ export const SdRadioGroup = /*@__PURE__*/ defineContainer('sd-radio-group', undefined, [
175
+ 'value',
176
+ 'radioOptions',
177
+ 'direction',
178
+ 'disabled',
179
+ 'name',
180
+ 'sdChange'
181
+ ], [
182
+ 'sdChange'
183
+ ], 'value', 'sdChange', undefined);
174
184
  export const SdSelect = /*@__PURE__*/ defineContainer('sd-select', undefined, [
175
185
  'value',
176
186
  'label',
package/lib/components.ts CHANGED
@@ -210,6 +210,19 @@ export const SdProgress: StencilVueComponent<JSX.SdProgress> = /*@__PURE__*/ def
210
210
  ]);
211
211
 
212
212
 
213
+ export const SdRadioGroup: StencilVueComponent<JSX.SdRadioGroup, JSX.SdRadioGroup["value"]> = /*@__PURE__*/ defineContainer<JSX.SdRadioGroup, JSX.SdRadioGroup["value"]>('sd-radio-group', undefined, [
214
+ 'value',
215
+ 'radioOptions',
216
+ 'direction',
217
+ 'disabled',
218
+ 'name',
219
+ 'sdChange'
220
+ ], [
221
+ 'sdChange'
222
+ ],
223
+ 'value', 'sdChange', undefined);
224
+
225
+
213
226
  export const SdSelect: StencilVueComponent<JSX.SdSelect> = /*@__PURE__*/ defineContainer<JSX.SdSelect>('sd-select', undefined, [
214
227
  'value',
215
228
  'label',
package/package.json CHANGED
@@ -1,54 +1,54 @@
1
- {
2
- "name": "@sellmate/design-system-vue",
3
- "version": "0.0.50",
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",
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.51",
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.50",
49
+ "@stencil/vue-output-target": "^0.11.8"
50
+ },
51
+ "peerDependencies": {
52
+ "vue": ">=3.0.0"
53
+ }
54
+ }