@sellmate/design-system-vue 0.0.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.
- package/README.md +11 -0
- package/dist/components.d.ts +18 -0
- package/dist/components.js +212 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/plugin.d.ts +5 -0
- package/dist/plugin.js +7 -0
- package/lib/components.ts +250 -0
- package/lib/index.ts +2 -0
- package/lib/plugin.ts +10 -0
- package/package.json +55 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
2
|
+
import type { JSX } from '@sellmate/design-system';
|
|
3
|
+
export declare const SdButton: StencilVueComponent<JSX.SdButton>;
|
|
4
|
+
export declare const SdCheckbox: StencilVueComponent<JSX.SdCheckbox>;
|
|
5
|
+
export declare const SdDateBox: StencilVueComponent<JSX.SdDateBox>;
|
|
6
|
+
export declare const SdDatePicker: StencilVueComponent<JSX.SdDatePicker>;
|
|
7
|
+
export declare const SdDateRangePicker: StencilVueComponent<JSX.SdDateRangePicker>;
|
|
8
|
+
export declare const SdIcon: StencilVueComponent<JSX.SdIcon>;
|
|
9
|
+
export declare const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]>;
|
|
10
|
+
export declare const SdPagination: StencilVueComponent<JSX.SdPagination>;
|
|
11
|
+
export declare const SdPopover: StencilVueComponent<JSX.SdPopover>;
|
|
12
|
+
export declare const SdPortal: StencilVueComponent<JSX.SdPortal>;
|
|
13
|
+
export declare const SdSelect: StencilVueComponent<JSX.SdSelect>;
|
|
14
|
+
export declare const SdSelectOption: StencilVueComponent<JSX.SdSelectOption>;
|
|
15
|
+
export declare const SdTable: StencilVueComponent<JSX.SdTable>;
|
|
16
|
+
export declare const SdTag: StencilVueComponent<JSX.SdTag>;
|
|
17
|
+
export declare const SdTooltip: StencilVueComponent<JSX.SdTooltip>;
|
|
18
|
+
export declare const SdTooltipPortal: StencilVueComponent<JSX.SdTooltipPortal>;
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* auto-generated vue proxies */
|
|
4
|
+
import { defineContainer } from '@stencil/vue-output-target/runtime';
|
|
5
|
+
export const SdButton = /*@__PURE__*/ defineContainer('sd-button', undefined, [
|
|
6
|
+
'variant',
|
|
7
|
+
'size',
|
|
8
|
+
'color',
|
|
9
|
+
'label',
|
|
10
|
+
'disabled',
|
|
11
|
+
'type',
|
|
12
|
+
'icon',
|
|
13
|
+
'iconRight',
|
|
14
|
+
'noHover',
|
|
15
|
+
'sdClick'
|
|
16
|
+
], [
|
|
17
|
+
'sdClick'
|
|
18
|
+
]);
|
|
19
|
+
export const SdCheckbox = /*@__PURE__*/ defineContainer('sd-checkbox', undefined, [
|
|
20
|
+
'checked',
|
|
21
|
+
'val',
|
|
22
|
+
'disabled',
|
|
23
|
+
'label',
|
|
24
|
+
'checkboxStyle',
|
|
25
|
+
'sdChange'
|
|
26
|
+
], [
|
|
27
|
+
'sdChange'
|
|
28
|
+
]);
|
|
29
|
+
export const SdDateBox = /*@__PURE__*/ defineContainer('sd-date-box', undefined, [
|
|
30
|
+
'date',
|
|
31
|
+
'disabled',
|
|
32
|
+
'selected',
|
|
33
|
+
'isStartDate',
|
|
34
|
+
'isEndDate',
|
|
35
|
+
'isToday',
|
|
36
|
+
'inRange',
|
|
37
|
+
'type',
|
|
38
|
+
'sdClick',
|
|
39
|
+
'sdMouseOver'
|
|
40
|
+
], [
|
|
41
|
+
'sdClick',
|
|
42
|
+
'sdMouseOver'
|
|
43
|
+
]);
|
|
44
|
+
export const SdDatePicker = /*@__PURE__*/ defineContainer('sd-date-picker', undefined, [
|
|
45
|
+
'date',
|
|
46
|
+
'label',
|
|
47
|
+
'selectable',
|
|
48
|
+
'disabled',
|
|
49
|
+
'sdChange'
|
|
50
|
+
], [
|
|
51
|
+
'sdChange'
|
|
52
|
+
]);
|
|
53
|
+
export const SdDateRangePicker = /*@__PURE__*/ defineContainer('sd-date-range-picker', undefined, [
|
|
54
|
+
'date',
|
|
55
|
+
'label',
|
|
56
|
+
'selectable',
|
|
57
|
+
'maxRange',
|
|
58
|
+
'disabled',
|
|
59
|
+
'sdChange'
|
|
60
|
+
], [
|
|
61
|
+
'sdChange'
|
|
62
|
+
]);
|
|
63
|
+
export const SdIcon = /*@__PURE__*/ defineContainer('sd-icon', undefined, [
|
|
64
|
+
'name',
|
|
65
|
+
'size',
|
|
66
|
+
'color',
|
|
67
|
+
'rotate',
|
|
68
|
+
'label'
|
|
69
|
+
]);
|
|
70
|
+
export const SdInput = /*@__PURE__*/ defineContainer('sd-input', undefined, [
|
|
71
|
+
'value',
|
|
72
|
+
'label',
|
|
73
|
+
'placeholder',
|
|
74
|
+
'disabled',
|
|
75
|
+
'clearable',
|
|
76
|
+
'width',
|
|
77
|
+
'barcode',
|
|
78
|
+
'rules',
|
|
79
|
+
'autoFocus',
|
|
80
|
+
'status',
|
|
81
|
+
'inputClass',
|
|
82
|
+
'readonly',
|
|
83
|
+
'inputStyle',
|
|
84
|
+
'sdClick',
|
|
85
|
+
'sdInput',
|
|
86
|
+
'sdChange',
|
|
87
|
+
'sdFocus',
|
|
88
|
+
'sdBlur'
|
|
89
|
+
], [
|
|
90
|
+
'sdClick',
|
|
91
|
+
'sdInput',
|
|
92
|
+
'sdChange',
|
|
93
|
+
'sdFocus',
|
|
94
|
+
'sdBlur'
|
|
95
|
+
], 'value', 'sdInput', undefined);
|
|
96
|
+
export const SdPagination = /*@__PURE__*/ defineContainer('sd-pagination', undefined, [
|
|
97
|
+
'currentPage',
|
|
98
|
+
'lastPage',
|
|
99
|
+
'simple',
|
|
100
|
+
'pageChange'
|
|
101
|
+
], [
|
|
102
|
+
'pageChange'
|
|
103
|
+
]);
|
|
104
|
+
export const SdPopover = /*@__PURE__*/ defineContainer('sd-popover', undefined, [
|
|
105
|
+
'show',
|
|
106
|
+
'placement',
|
|
107
|
+
'color',
|
|
108
|
+
'icon',
|
|
109
|
+
'iconSize',
|
|
110
|
+
'label',
|
|
111
|
+
'buttonSize',
|
|
112
|
+
'buttonVariant',
|
|
113
|
+
'menuTitle',
|
|
114
|
+
'messages',
|
|
115
|
+
'buttons',
|
|
116
|
+
'menuClass',
|
|
117
|
+
'noHover',
|
|
118
|
+
'useClose'
|
|
119
|
+
]);
|
|
120
|
+
export const SdPortal = /*@__PURE__*/ defineContainer('sd-portal', undefined, [
|
|
121
|
+
'to',
|
|
122
|
+
'parentRef',
|
|
123
|
+
'offset',
|
|
124
|
+
'zIndex',
|
|
125
|
+
'open',
|
|
126
|
+
'sdClose'
|
|
127
|
+
], [
|
|
128
|
+
'sdClose'
|
|
129
|
+
]);
|
|
130
|
+
export const SdSelect = /*@__PURE__*/ defineContainer('sd-select', undefined, [
|
|
131
|
+
'value',
|
|
132
|
+
'label',
|
|
133
|
+
'options',
|
|
134
|
+
'placeholder',
|
|
135
|
+
'optionPlaceholder',
|
|
136
|
+
'width',
|
|
137
|
+
'dropdownHeight',
|
|
138
|
+
'disabled',
|
|
139
|
+
'clearable',
|
|
140
|
+
'searchable',
|
|
141
|
+
'containerStyle',
|
|
142
|
+
'triggerStyle',
|
|
143
|
+
'dropdownStyle',
|
|
144
|
+
'optionStyle',
|
|
145
|
+
'labelStyle',
|
|
146
|
+
'optionRenderer',
|
|
147
|
+
'sdChange',
|
|
148
|
+
'dropDownShow'
|
|
149
|
+
], [
|
|
150
|
+
'sdChange',
|
|
151
|
+
'dropDownShow'
|
|
152
|
+
]);
|
|
153
|
+
export const SdSelectOption = /*@__PURE__*/ defineContainer('sd-select-option', undefined, [
|
|
154
|
+
'option',
|
|
155
|
+
'index',
|
|
156
|
+
'isSelected',
|
|
157
|
+
'isFocused',
|
|
158
|
+
'optionStyle',
|
|
159
|
+
'disabled',
|
|
160
|
+
'useCheckbox',
|
|
161
|
+
'optionClick'
|
|
162
|
+
], [
|
|
163
|
+
'optionClick'
|
|
164
|
+
]);
|
|
165
|
+
export const SdTable = /*@__PURE__*/ defineContainer('sd-table', undefined, [
|
|
166
|
+
'columns',
|
|
167
|
+
'rows',
|
|
168
|
+
'selected',
|
|
169
|
+
'rowKey',
|
|
170
|
+
'selectable',
|
|
171
|
+
'resizable',
|
|
172
|
+
'stickyHeader',
|
|
173
|
+
'noDataLabel',
|
|
174
|
+
'pagination',
|
|
175
|
+
'bodyCellRenderer',
|
|
176
|
+
'sdSelectChange',
|
|
177
|
+
'sdPageChange'
|
|
178
|
+
], [
|
|
179
|
+
'sdSelectChange',
|
|
180
|
+
'sdPageChange'
|
|
181
|
+
]);
|
|
182
|
+
export const SdTag = /*@__PURE__*/ defineContainer('sd-tag', undefined, [
|
|
183
|
+
'size',
|
|
184
|
+
'color',
|
|
185
|
+
'rounded',
|
|
186
|
+
'label',
|
|
187
|
+
'bgColor',
|
|
188
|
+
'textColor'
|
|
189
|
+
]);
|
|
190
|
+
export const SdTooltip = /*@__PURE__*/ defineContainer('sd-tooltip', undefined, [
|
|
191
|
+
'trigger',
|
|
192
|
+
'placement',
|
|
193
|
+
'color',
|
|
194
|
+
'icon',
|
|
195
|
+
'iconSize',
|
|
196
|
+
'label',
|
|
197
|
+
'buttonSize',
|
|
198
|
+
'buttonVariant',
|
|
199
|
+
'noHover',
|
|
200
|
+
'useClose'
|
|
201
|
+
]);
|
|
202
|
+
export const SdTooltipPortal = /*@__PURE__*/ defineContainer('sd-tooltip-portal', undefined, [
|
|
203
|
+
'to',
|
|
204
|
+
'parentRef',
|
|
205
|
+
'offset',
|
|
206
|
+
'zIndex',
|
|
207
|
+
'placement',
|
|
208
|
+
'open',
|
|
209
|
+
'sdClose'
|
|
210
|
+
], [
|
|
211
|
+
'sdClose'
|
|
212
|
+
]);
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/dist/plugin.d.ts
ADDED
package/dist/plugin.js
ADDED
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* auto-generated vue proxies */
|
|
4
|
+
import { defineContainer, type StencilVueComponent } from '@stencil/vue-output-target/runtime';
|
|
5
|
+
|
|
6
|
+
import type { JSX } from '@sellmate/design-system';
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
export const SdButton: StencilVueComponent<JSX.SdButton> = /*@__PURE__*/ defineContainer<JSX.SdButton>('sd-button', undefined, [
|
|
12
|
+
'variant',
|
|
13
|
+
'size',
|
|
14
|
+
'color',
|
|
15
|
+
'label',
|
|
16
|
+
'disabled',
|
|
17
|
+
'type',
|
|
18
|
+
'icon',
|
|
19
|
+
'iconRight',
|
|
20
|
+
'noHover',
|
|
21
|
+
'sdClick'
|
|
22
|
+
], [
|
|
23
|
+
'sdClick'
|
|
24
|
+
]);
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
export const SdCheckbox: StencilVueComponent<JSX.SdCheckbox> = /*@__PURE__*/ defineContainer<JSX.SdCheckbox>('sd-checkbox', undefined, [
|
|
28
|
+
'checked',
|
|
29
|
+
'val',
|
|
30
|
+
'disabled',
|
|
31
|
+
'label',
|
|
32
|
+
'checkboxStyle',
|
|
33
|
+
'sdChange'
|
|
34
|
+
], [
|
|
35
|
+
'sdChange'
|
|
36
|
+
]);
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
export const SdDateBox: StencilVueComponent<JSX.SdDateBox> = /*@__PURE__*/ defineContainer<JSX.SdDateBox>('sd-date-box', undefined, [
|
|
40
|
+
'date',
|
|
41
|
+
'disabled',
|
|
42
|
+
'selected',
|
|
43
|
+
'isStartDate',
|
|
44
|
+
'isEndDate',
|
|
45
|
+
'isToday',
|
|
46
|
+
'inRange',
|
|
47
|
+
'type',
|
|
48
|
+
'sdClick',
|
|
49
|
+
'sdMouseOver'
|
|
50
|
+
], [
|
|
51
|
+
'sdClick',
|
|
52
|
+
'sdMouseOver'
|
|
53
|
+
]);
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
export const SdDatePicker: StencilVueComponent<JSX.SdDatePicker> = /*@__PURE__*/ defineContainer<JSX.SdDatePicker>('sd-date-picker', undefined, [
|
|
57
|
+
'date',
|
|
58
|
+
'label',
|
|
59
|
+
'selectable',
|
|
60
|
+
'disabled',
|
|
61
|
+
'sdChange'
|
|
62
|
+
], [
|
|
63
|
+
'sdChange'
|
|
64
|
+
]);
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
export const SdDateRangePicker: StencilVueComponent<JSX.SdDateRangePicker> = /*@__PURE__*/ defineContainer<JSX.SdDateRangePicker>('sd-date-range-picker', undefined, [
|
|
68
|
+
'date',
|
|
69
|
+
'label',
|
|
70
|
+
'selectable',
|
|
71
|
+
'maxRange',
|
|
72
|
+
'disabled',
|
|
73
|
+
'sdChange'
|
|
74
|
+
], [
|
|
75
|
+
'sdChange'
|
|
76
|
+
]);
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
export const SdIcon: StencilVueComponent<JSX.SdIcon> = /*@__PURE__*/ defineContainer<JSX.SdIcon>('sd-icon', undefined, [
|
|
80
|
+
'name',
|
|
81
|
+
'size',
|
|
82
|
+
'color',
|
|
83
|
+
'rotate',
|
|
84
|
+
'label'
|
|
85
|
+
]);
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
export const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]> = /*@__PURE__*/ defineContainer<JSX.SdInput, JSX.SdInput["value"]>('sd-input', undefined, [
|
|
89
|
+
'value',
|
|
90
|
+
'label',
|
|
91
|
+
'placeholder',
|
|
92
|
+
'disabled',
|
|
93
|
+
'clearable',
|
|
94
|
+
'width',
|
|
95
|
+
'barcode',
|
|
96
|
+
'rules',
|
|
97
|
+
'autoFocus',
|
|
98
|
+
'status',
|
|
99
|
+
'inputClass',
|
|
100
|
+
'readonly',
|
|
101
|
+
'inputStyle',
|
|
102
|
+
'sdClick',
|
|
103
|
+
'sdInput',
|
|
104
|
+
'sdChange',
|
|
105
|
+
'sdFocus',
|
|
106
|
+
'sdBlur'
|
|
107
|
+
], [
|
|
108
|
+
'sdClick',
|
|
109
|
+
'sdInput',
|
|
110
|
+
'sdChange',
|
|
111
|
+
'sdFocus',
|
|
112
|
+
'sdBlur'
|
|
113
|
+
],
|
|
114
|
+
'value', 'sdInput', undefined);
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
export const SdPagination: StencilVueComponent<JSX.SdPagination> = /*@__PURE__*/ defineContainer<JSX.SdPagination>('sd-pagination', undefined, [
|
|
118
|
+
'currentPage',
|
|
119
|
+
'lastPage',
|
|
120
|
+
'simple',
|
|
121
|
+
'pageChange'
|
|
122
|
+
], [
|
|
123
|
+
'pageChange'
|
|
124
|
+
]);
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
export const SdPopover: StencilVueComponent<JSX.SdPopover> = /*@__PURE__*/ defineContainer<JSX.SdPopover>('sd-popover', undefined, [
|
|
128
|
+
'show',
|
|
129
|
+
'placement',
|
|
130
|
+
'color',
|
|
131
|
+
'icon',
|
|
132
|
+
'iconSize',
|
|
133
|
+
'label',
|
|
134
|
+
'buttonSize',
|
|
135
|
+
'buttonVariant',
|
|
136
|
+
'menuTitle',
|
|
137
|
+
'messages',
|
|
138
|
+
'buttons',
|
|
139
|
+
'menuClass',
|
|
140
|
+
'noHover',
|
|
141
|
+
'useClose'
|
|
142
|
+
]);
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
export const SdPortal: StencilVueComponent<JSX.SdPortal> = /*@__PURE__*/ defineContainer<JSX.SdPortal>('sd-portal', undefined, [
|
|
146
|
+
'to',
|
|
147
|
+
'parentRef',
|
|
148
|
+
'offset',
|
|
149
|
+
'zIndex',
|
|
150
|
+
'open',
|
|
151
|
+
'sdClose'
|
|
152
|
+
], [
|
|
153
|
+
'sdClose'
|
|
154
|
+
]);
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
export const SdSelect: StencilVueComponent<JSX.SdSelect> = /*@__PURE__*/ defineContainer<JSX.SdSelect>('sd-select', undefined, [
|
|
158
|
+
'value',
|
|
159
|
+
'label',
|
|
160
|
+
'options',
|
|
161
|
+
'placeholder',
|
|
162
|
+
'optionPlaceholder',
|
|
163
|
+
'width',
|
|
164
|
+
'dropdownHeight',
|
|
165
|
+
'disabled',
|
|
166
|
+
'clearable',
|
|
167
|
+
'searchable',
|
|
168
|
+
'containerStyle',
|
|
169
|
+
'triggerStyle',
|
|
170
|
+
'dropdownStyle',
|
|
171
|
+
'optionStyle',
|
|
172
|
+
'labelStyle',
|
|
173
|
+
'optionRenderer',
|
|
174
|
+
'sdChange',
|
|
175
|
+
'dropDownShow'
|
|
176
|
+
], [
|
|
177
|
+
'sdChange',
|
|
178
|
+
'dropDownShow'
|
|
179
|
+
]);
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
export const SdSelectOption: StencilVueComponent<JSX.SdSelectOption> = /*@__PURE__*/ defineContainer<JSX.SdSelectOption>('sd-select-option', undefined, [
|
|
183
|
+
'option',
|
|
184
|
+
'index',
|
|
185
|
+
'isSelected',
|
|
186
|
+
'isFocused',
|
|
187
|
+
'optionStyle',
|
|
188
|
+
'disabled',
|
|
189
|
+
'useCheckbox',
|
|
190
|
+
'optionClick'
|
|
191
|
+
], [
|
|
192
|
+
'optionClick'
|
|
193
|
+
]);
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
export const SdTable: StencilVueComponent<JSX.SdTable> = /*@__PURE__*/ defineContainer<JSX.SdTable>('sd-table', undefined, [
|
|
197
|
+
'columns',
|
|
198
|
+
'rows',
|
|
199
|
+
'selected',
|
|
200
|
+
'rowKey',
|
|
201
|
+
'selectable',
|
|
202
|
+
'resizable',
|
|
203
|
+
'stickyHeader',
|
|
204
|
+
'noDataLabel',
|
|
205
|
+
'pagination',
|
|
206
|
+
'bodyCellRenderer',
|
|
207
|
+
'sdSelectChange',
|
|
208
|
+
'sdPageChange'
|
|
209
|
+
], [
|
|
210
|
+
'sdSelectChange',
|
|
211
|
+
'sdPageChange'
|
|
212
|
+
]);
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
export const SdTag: StencilVueComponent<JSX.SdTag> = /*@__PURE__*/ defineContainer<JSX.SdTag>('sd-tag', undefined, [
|
|
216
|
+
'size',
|
|
217
|
+
'color',
|
|
218
|
+
'rounded',
|
|
219
|
+
'label',
|
|
220
|
+
'bgColor',
|
|
221
|
+
'textColor'
|
|
222
|
+
]);
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
export const SdTooltip: StencilVueComponent<JSX.SdTooltip> = /*@__PURE__*/ defineContainer<JSX.SdTooltip>('sd-tooltip', undefined, [
|
|
226
|
+
'trigger',
|
|
227
|
+
'placement',
|
|
228
|
+
'color',
|
|
229
|
+
'icon',
|
|
230
|
+
'iconSize',
|
|
231
|
+
'label',
|
|
232
|
+
'buttonSize',
|
|
233
|
+
'buttonVariant',
|
|
234
|
+
'noHover',
|
|
235
|
+
'useClose'
|
|
236
|
+
]);
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
export const SdTooltipPortal: StencilVueComponent<JSX.SdTooltipPortal> = /*@__PURE__*/ defineContainer<JSX.SdTooltipPortal>('sd-tooltip-portal', undefined, [
|
|
240
|
+
'to',
|
|
241
|
+
'parentRef',
|
|
242
|
+
'offset',
|
|
243
|
+
'zIndex',
|
|
244
|
+
'placement',
|
|
245
|
+
'open',
|
|
246
|
+
'sdClose'
|
|
247
|
+
], [
|
|
248
|
+
'sdClose'
|
|
249
|
+
]);
|
|
250
|
+
|
package/lib/index.ts
ADDED
package/lib/plugin.ts
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sellmate/design-system-vue",
|
|
3
|
+
"version": "0.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.0",
|
|
49
|
+
"@stencil/vue-output-target": "^0.11.8"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"vue": ">=3.0.0"
|
|
53
|
+
},
|
|
54
|
+
"gitHead": "cb83a0141f6b846b81fd382ad77a1f0a12009bf2"
|
|
55
|
+
}
|