quasar-ui-sellmate-ui-kit 3.14.14 → 3.14.16

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.
Files changed (55) hide show
  1. package/dist/index.common.js +2 -2
  2. package/dist/index.css +2868 -2859
  3. package/dist/index.esm.js +2 -2
  4. package/dist/index.min.css +2 -2
  5. package/dist/index.rtl.css +2868 -2859
  6. package/dist/index.rtl.min.css +2 -2
  7. package/dist/index.umd.js +438 -421
  8. package/dist/index.umd.min.js +2 -2
  9. package/package.json +1 -1
  10. package/src/components/InputWithSearchIcon.vue +2 -2
  11. package/src/components/SBadge.vue +5 -5
  12. package/src/components/SBreadcrumbs.vue +26 -30
  13. package/src/components/SButton.vue +7 -4
  14. package/src/components/SButtonGroup.vue +21 -26
  15. package/src/components/SButtonToggle.vue +3 -3
  16. package/src/components/SCaution.vue +92 -98
  17. package/src/components/SCheckbox.vue +86 -87
  18. package/src/components/SChip.vue +63 -63
  19. package/src/components/SDate.vue +15 -15
  20. package/src/components/SDateAutoRangePicker.vue +101 -98
  21. package/src/components/SDatePicker.vue +19 -19
  22. package/src/components/SDateRange.vue +15 -25
  23. package/src/components/SDateRangePicker.vue +19 -20
  24. package/src/components/SDateTimePicker.vue +15 -23
  25. package/src/components/SDialog.vue +145 -169
  26. package/src/components/SDropdown.vue +6 -6
  27. package/src/components/SEditor.vue +2 -2
  28. package/src/components/SFilePicker.vue +10 -10
  29. package/src/components/SHelp.vue +4 -4
  30. package/src/components/SInput.vue +19 -19
  31. package/src/components/SInputNumber.vue +12 -12
  32. package/src/components/SMarkupTable.vue +89 -88
  33. package/src/components/SPagination.vue +11 -11
  34. package/src/components/SRadio.vue +52 -52
  35. package/src/components/SRouteTab.vue +3 -3
  36. package/src/components/SSelect.vue +9 -9
  37. package/src/components/SSelectCheckbox.vue +5 -5
  38. package/src/components/SSelectGroupCheckbox.vue +7 -7
  39. package/src/components/SSelectSearch.vue +2 -2
  40. package/src/components/SSelectSearchCheckbox.vue +5 -5
  41. package/src/components/STab.vue +6 -6
  42. package/src/components/STable.vue +9 -9
  43. package/src/components/STableTree.vue +10 -10
  44. package/src/components/STag.vue +17 -17
  45. package/src/components/STimePicker.vue +9 -9
  46. package/src/components/SToggle.vue +44 -45
  47. package/src/components/STooltip.vue +144 -142
  48. package/src/components/SYearMonthPicker.vue +8 -8
  49. package/src/components/TableTreeNode.vue +4 -4
  50. package/src/components/TimePickerCard.vue +11 -11
  51. package/src/composables/table/use-resizable.js +14 -4
  52. package/src/css/app.scss +24 -8
  53. package/src/css/default.scss +172 -141
  54. package/src/css/extends.scss +34 -13
  55. package/src/css/quasar.variables.scss +133 -121
@@ -8,28 +8,15 @@
8
8
  round
9
9
  dense
10
10
  v-close-popup
11
- color="Grey_Default"
11
+ color="grey_65"
12
12
  :ripple="false"
13
13
  @click="$emit('handleClose')"
14
14
  />
15
15
  </q-card-actions>
16
16
  <q-card-section class="modal-title">
17
- <div
18
- v-if="withHeaderIcon"
19
- class="flex items-center justify-center modal-icon"
20
- >
21
- <q-icon
22
- v-if="type === 'info'"
23
- :name="infoOutlineIcon"
24
- size="32px"
25
- color="positive"
26
- />
27
- <q-icon
28
- v-else
29
- :name="warningOutlineIcon"
30
- size="32px"
31
- color="negative"
32
- />
17
+ <div v-if="withHeaderIcon" class="flex items-center justify-center modal-icon">
18
+ <q-icon v-if="type === 'info'" :name="infoOutlineIcon" size="32px" color="positive" />
19
+ <q-icon v-else :name="warningOutlineIcon" size="32px" color="negative" />
33
20
  </div>
34
21
  {{ title }}
35
22
  </q-card-section>
@@ -75,176 +62,165 @@
75
62
  </template>
76
63
 
77
64
  <script>
78
- import { defineComponent } from 'vue';
79
- import {
80
- QDialog,
81
- QCard,
82
- QCardSection,
83
- QBtn,
84
- QIcon,
85
- QCardActions,
86
- } from 'quasar';
87
- import {
88
- infoOutlineIcon,
89
- warningOutlineIcon,
90
- closeIcon,
91
- } from '../assets/icons';
65
+ import { defineComponent } from 'vue';
66
+ import { QDialog, QCard, QCardSection, QBtn, QIcon, QCardActions } from 'quasar';
67
+ import { infoOutlineIcon, warningOutlineIcon, closeIcon } from '../assets/icons';
92
68
 
93
- export default defineComponent({
94
- name: 'SConfirm',
95
- components: {
96
- QDialog,
97
- QCard,
98
- QCardSection,
99
- QCardActions,
100
- QBtn,
101
- QIcon,
102
- },
103
- props: {
104
- withHeaderIcon: {
105
- type: Boolean,
106
- default: false,
107
- },
108
- title: {
109
- type: String,
110
- default: '',
111
- },
112
- content: {
113
- type: String,
114
- default: '',
115
- },
116
- type: {
117
- type: String,
118
- default: 'info',
119
- },
120
- buttonLabel: {
121
- type: String,
122
- default: '',
123
- },
124
- twoButtons: {
125
- type: Boolean,
126
- default: false,
127
- },
128
- secondButtonLabel: {
129
- type: String,
130
- default: '',
131
- },
132
- firstBtnColor: {
133
- type: String,
134
- default: '',
135
- },
136
- secondBtnColor: {
137
- type: String,
138
- default: '',
69
+ export default defineComponent({
70
+ name: 'SConfirm',
71
+ components: {
72
+ QDialog,
73
+ QCard,
74
+ QCardSection,
75
+ QCardActions,
76
+ QBtn,
77
+ QIcon,
139
78
  },
140
- firstBtnOutLine: {
141
- type: Boolean,
142
- default: false,
79
+ props: {
80
+ withHeaderIcon: {
81
+ type: Boolean,
82
+ default: false,
83
+ },
84
+ title: {
85
+ type: String,
86
+ default: '',
87
+ },
88
+ content: {
89
+ type: String,
90
+ default: '',
91
+ },
92
+ type: {
93
+ type: String,
94
+ default: 'info',
95
+ },
96
+ buttonLabel: {
97
+ type: String,
98
+ default: '',
99
+ },
100
+ twoButtons: {
101
+ type: Boolean,
102
+ default: false,
103
+ },
104
+ secondButtonLabel: {
105
+ type: String,
106
+ default: '',
107
+ },
108
+ firstBtnColor: {
109
+ type: String,
110
+ default: '',
111
+ },
112
+ secondBtnColor: {
113
+ type: String,
114
+ default: '',
115
+ },
116
+ firstBtnOutLine: {
117
+ type: Boolean,
118
+ default: false,
119
+ },
120
+ secondBtnOutLine: {
121
+ type: Boolean,
122
+ default: false,
123
+ },
124
+ btnVertical: {
125
+ type: Boolean,
126
+ default: false,
127
+ },
143
128
  },
144
- secondBtnOutLine: {
145
- type: Boolean,
146
- default: false,
129
+ emits: ['handleClose', 'handleFirst', 'handleSecond'],
130
+ setup() {
131
+ return {
132
+ infoOutlineIcon,
133
+ warningOutlineIcon,
134
+ closeIcon,
135
+ };
147
136
  },
148
- btnVertical: {
149
- type: Boolean,
150
- default: false,
151
- },
152
- },
153
- emits: ['handleClose', 'handleFirst', 'handleSecond'],
154
- setup() {
155
- return {
156
- infoOutlineIcon,
157
- warningOutlineIcon,
158
- closeIcon,
159
- };
160
- },
161
- });
137
+ });
162
138
  </script>
163
139
 
164
140
  <style lang="scss">
165
- @import "../css/quasar.variables.scss";
141
+ @import '../css/quasar.variables.scss';
166
142
 
167
- .s-confirm {
168
- border-radius: 8px;
169
- padding: 40px 24px;
170
- width: 504px;
171
- display: flex;
172
- align-items: center;
173
- justify-content: center;
174
- flex-direction: column;
175
- .modal-close-button {
176
- position: absolute;
177
- top: 12px;
178
- right: 12px;
179
- width: 24px;
180
- height: 24px;
181
- padding: 0;
182
- .q-btn {
183
- color: $Grey_Darken-2;
143
+ .s-confirm {
144
+ border-radius: 8px;
145
+ padding: 40px 24px;
146
+ width: 504px;
147
+ display: flex;
148
+ align-items: center;
149
+ justify-content: center;
150
+ flex-direction: column;
151
+ .modal-close-button {
152
+ position: absolute;
153
+ top: 12px;
154
+ right: 12px;
155
+ width: 24px;
156
+ height: 24px;
184
157
  padding: 0;
185
- width: 100%;
186
- height: 100%;
187
- align-items: center;
188
- justify-content: center;
189
- min: {
190
- height: 0;
191
- width: 0;
192
- }
193
- .q-focusable:focus .q-focus-helper,
194
- .q-hoverable:hover .q-focus-helper {
195
- background: inherit !important;
196
- opacity: 0;
197
- }
198
- .q-icon {
158
+ .q-btn {
159
+ color: $grey_80;
160
+ padding: 0;
199
161
  width: 100%;
200
162
  height: 100%;
163
+ align-items: center;
164
+ justify-content: center;
165
+ min: {
166
+ height: 0;
167
+ width: 0;
168
+ }
169
+ .q-focusable:focus .q-focus-helper,
170
+ .q-hoverable:hover .q-focus-helper {
171
+ background: inherit !important;
172
+ opacity: 0;
173
+ }
174
+ .q-icon {
175
+ width: 100%;
176
+ height: 100%;
177
+ }
201
178
  }
202
179
  }
203
- }
204
- .modal-title {
205
- padding: 0 0 16px;
206
- text-align: center;
207
- color: $Grey_Darken-5;
208
- font: {
209
- size: 20px;
210
- weight: 700;
211
- }
212
- .modal-icon {
180
+ .modal-title {
181
+ padding: 0 0 16px;
213
182
  text-align: center;
214
- width: 32px;
215
- height: 32px;
216
- margin: 0 auto 16px;
217
- }
218
- }
219
- .modal-content {
220
- padding: 0 0 32px;
221
- text-align: center;
222
- font: {
223
- size: 14px;
224
- weight: 400;
183
+ color: $grey_95;
184
+ font: {
185
+ size: 20px;
186
+ weight: 700;
187
+ }
188
+ .modal-icon {
189
+ text-align: center;
190
+ width: 32px;
191
+ height: 32px;
192
+ margin: 0 auto 16px;
193
+ }
225
194
  }
226
- }
227
- .modal-buttons {
228
- text-align: center;
229
- padding: 0;
230
- width: 100%;
231
- height: 42px;
232
- display: flex;
233
- flex-flow: row nowrap;
234
- justify-content: center;
235
- .q-btn {
236
- min-width: 76px;
237
- padding: 8px 24px;
238
- margin: 0 4px;
239
- height: 42px;
195
+ .modal-content {
196
+ padding: 0 0 32px;
197
+ text-align: center;
240
198
  font: {
241
- weight: 500;
242
- size: 18px;
199
+ size: 14px;
200
+ weight: 400;
243
201
  }
244
- &__content {
245
- height: 100%;
202
+ }
203
+ .modal-buttons {
204
+ text-align: center;
205
+ padding: 0;
206
+ width: 100%;
207
+ height: 42px;
208
+ display: flex;
209
+ flex-flow: row nowrap;
210
+ justify-content: center;
211
+ .q-btn {
212
+ min-width: 76px;
213
+ padding: 8px 24px;
214
+ margin: 0 4px;
215
+ height: 42px;
216
+ font: {
217
+ weight: 500;
218
+ size: 18px;
219
+ }
220
+ &__content {
221
+ height: 100%;
222
+ }
246
223
  }
247
224
  }
248
225
  }
249
- }
250
226
  </style>
@@ -2,7 +2,7 @@
2
2
  <q-btn
3
3
  outline
4
4
  split
5
- :color="$attrs.color || 'Grey_Default'"
5
+ :color="$attrs.color || 'grey_65'"
6
6
  no-caps
7
7
  no-wrap
8
8
  unelevated
@@ -234,18 +234,18 @@
234
234
  border: none;
235
235
  padding: 0;
236
236
  &:before {
237
- border: 1px solid $Grey_Lighten-2;
238
- background: $Grey_Lighten-3 !important;
237
+ border: 1px solid $grey_45;
238
+ background: $grey_30 !important;
239
239
  }
240
240
 
241
241
  .q-btn__content {
242
242
  > .block,
243
243
  > .q-icon {
244
- color: $Grey_Default;
244
+ color: $grey_65;
245
245
  }
246
246
 
247
247
  .block {
248
- border-right: 1px solid $Grey_Lighten-2 !important;
248
+ border-right: 1px solid $grey_45 !important;
249
249
  }
250
250
  }
251
251
  }
@@ -264,7 +264,7 @@
264
264
 
265
265
  &:not(.q-item--clickable) {
266
266
  cursor: default;
267
- color: $Grey_Lighten-1;
267
+ color: $grey_55;
268
268
  }
269
269
  }
270
270
 
@@ -19,7 +19,7 @@
19
19
  <q-btn flat dense :ripple="false" size="sm">
20
20
  <q-icon name="image" />
21
21
  <q-menu>
22
- <q-card class="q-pa-sm bg-Grey_Lighten-5">
22
+ <q-card class="q-pa-sm bg-grey_10">
23
23
  <q-card-section class="q-pa-none">
24
24
  <q-input
25
25
  class="bg-white font-12-400"
@@ -37,7 +37,7 @@
37
37
  :label="imgUploadBtnLabel"
38
38
  @click="onOkClick"
39
39
  v-close-popup
40
- color="Blue_B_Default"
40
+ color="oceanblue_75"
41
41
  class="bg-white"
42
42
  />
43
43
  </div>
@@ -14,8 +14,8 @@
14
14
  </template>
15
15
  <!-- NOTE: slot에 오버라이드 되어서 무조건 노출로 변경 -->
16
16
  <template #prepend v-if="true">
17
- <q-icon :name="attachFileIcon20" size="20px" color="Grey_Darken-1" @click.stop />
18
- <div v-if="displayPlaceholder" class="file-placeholder text-Grey_Lighten-2" @click.stop>
17
+ <q-icon :name="attachFileIcon20" size="20px" color="grey_70" @click.stop />
18
+ <div v-if="displayPlaceholder" class="file-placeholder text-grey_45" @click.stop>
19
19
  {{ placeholder }}
20
20
  </div>
21
21
  </template>
@@ -104,11 +104,11 @@
104
104
 
105
105
  &:hover,
106
106
  &:active {
107
- background: $Grey_Lighten-5;
107
+ background: $grey_10;
108
108
  }
109
109
 
110
110
  &:after {
111
- border: 1px solid $Grey_Lighten-1;
111
+ border: 1px solid $grey_55;
112
112
  box-shadow: none;
113
113
  }
114
114
 
@@ -139,7 +139,7 @@
139
139
  > div {
140
140
  font-size: $default-font;
141
141
  overflow: hidden;
142
- color: $Grey_Darken-5;
142
+ color: $grey_95;
143
143
  word-break: keep-all;
144
144
  white-space: nowrap;
145
145
  text-overflow: ellipsis;
@@ -176,16 +176,16 @@
176
176
  .q-field__inner {
177
177
  .q-field__control {
178
178
  opacity: 1 !important;
179
- background: $Grey_Lighten-3;
179
+ background: $grey_30;
180
180
 
181
181
  &:after {
182
- border: 1px solid $Grey_Lighten-2;
182
+ border: 1px solid $grey_45;
183
183
  }
184
184
 
185
185
  &-container {
186
186
  .q-field__native {
187
187
  > span {
188
- color: $Grey_Default;
188
+ color: $grey_65;
189
189
  }
190
190
  }
191
191
  }
@@ -194,11 +194,11 @@
194
194
  opacity: 1 !important;
195
195
 
196
196
  .file-placeholder {
197
- color: $Grey_Default !important;
197
+ color: $grey_65 !important;
198
198
  }
199
199
 
200
200
  .q-icon {
201
- color: $Grey_Default !important;
201
+ color: $grey_65 !important;
202
202
  }
203
203
  }
204
204
  }
@@ -17,7 +17,7 @@
17
17
  dense
18
18
  :ripple="false"
19
19
  :icon="closeIcon"
20
- color="Grey_Default"
20
+ color="grey_65"
21
21
  @click="helpPopup = false"
22
22
  class="close-btn q-pa-none"
23
23
  size="20px"
@@ -74,7 +74,7 @@
74
74
  min-height: $default-height;
75
75
  height: $default-height;
76
76
  &:before {
77
- border-color: $Grey_Lighten-2;
77
+ border-color: $grey_45;
78
78
  }
79
79
  .q-btn__content {
80
80
  .q-icon {
@@ -83,7 +83,7 @@
83
83
  }
84
84
  > .block {
85
85
  font-size: $default-font;
86
- color: $Grey_Darken-4;
86
+ color: $grey_90;
87
87
  line-height: $default-content-height;
88
88
  height: $default-content-height;
89
89
  }
@@ -103,7 +103,7 @@
103
103
  border-radius: 8px;
104
104
  padding: 20px 32px;
105
105
  position: relative;
106
- color: $Grey_Darken-4;
106
+ color: $grey_90;
107
107
  .close-btn {
108
108
  position: absolute;
109
109
  top: 12px;
@@ -35,7 +35,7 @@
35
35
  </template>
36
36
  <template v-slot:before v-if="label || insideLabel">
37
37
  <div v-if="!insideLabel" class="input-label">{{ label }}</div>
38
- <div v-else-if="insideLabel" class="input-addon bg-Grey_Lighten-5">
38
+ <div v-else-if="insideLabel" class="input-addon bg-grey_10">
39
39
  {{ insideLabel }}
40
40
  </div>
41
41
  </template>
@@ -163,18 +163,18 @@
163
163
  padding: 0;
164
164
  height: 28px;
165
165
  &:before {
166
- border: 1px solid $Grey_Lighten-1;
166
+ border: 1px solid $grey_55;
167
167
  }
168
168
  &-container {
169
169
  padding: $button-padding-sm;
170
170
  .q-field__native {
171
171
  font-size: $default-font;
172
172
  font-weight: $default-font-weight;
173
- color: $Grey_Darken-4;
173
+ color: $grey_90;
174
174
  padding: 0;
175
175
  }
176
176
  input::placeholder {
177
- color: $Grey_Lighten-1;
177
+ color: $grey_55;
178
178
  }
179
179
  .q-field__prefix {
180
180
  padding: 0 4px 0 0;
@@ -189,7 +189,7 @@
189
189
  padding: 0 8px 0 0;
190
190
  height: 100%;
191
191
  .q-icon {
192
- color: $Grey_Default;
192
+ color: $grey_65;
193
193
  font-size: 12px;
194
194
  }
195
195
  }
@@ -198,20 +198,20 @@
198
198
  height: $default-height;
199
199
  .q-icon {
200
200
  font-size: 16px;
201
- color: $Grey_Default;
201
+ color: $grey_65;
202
202
  }
203
203
  }
204
204
  }
205
205
  .q-field__bottom {
206
206
  padding: 8px 0px 0px 0px;
207
- color: $Grey_Darken-1;
207
+ color: $grey_70;
208
208
  font-size: 12px;
209
209
  .q-field__messages {
210
210
  div[role='alert'] {
211
- color: $Red_Lighten-1;
211
+ color: $red_70;
212
212
  }
213
213
  .error-msg {
214
- color: $Red_Default;
214
+ color: $red_75;
215
215
  flex-wrap: nowrap;
216
216
  width: 250px;
217
217
  gap: 4px;
@@ -227,18 +227,18 @@
227
227
  padding: 0;
228
228
  .input-label {
229
229
  padding: 4px 12px 4px 0;
230
- color: $Grey_Darken-4;
230
+ color: $grey_90;
231
231
  font: {
232
232
  size: $default-font;
233
233
  weight: $default-font-weight;
234
234
  }
235
235
  }
236
236
  .input-addon {
237
- color: $Grey_Darken-4;
237
+ color: $grey_90;
238
238
  height: 100%;
239
239
  line-height: 150%;
240
240
  padding: $button-padding-sm;
241
- border: 1px solid $Grey_Lighten-1;
241
+ border: 1px solid $grey_55;
242
242
  border: {
243
243
  right: none;
244
244
  radius: 2px 0 0 2px;
@@ -253,16 +253,16 @@
253
253
  .q-field__inner {
254
254
  .q-field__control {
255
255
  opacity: 1 !important;
256
- background: $Grey_Lighten-4;
256
+ background: $grey_20;
257
257
  &:after {
258
- border: 1px solid $Grey_Lighten-2;
258
+ border: 1px solid $grey_45;
259
259
  }
260
260
  &-container {
261
261
  .q-field__native {
262
- color: $Grey_Default;
262
+ color: $grey_65;
263
263
  }
264
264
  & > input::placeholder {
265
- color: $Grey_Default;
265
+ color: $grey_65;
266
266
  }
267
267
  }
268
268
  }
@@ -295,7 +295,7 @@
295
295
  top: -28px;
296
296
  display: flex;
297
297
  align-items: center;
298
- color: $Grey_Lighten-1;
298
+ color: $grey_55;
299
299
  padding: 0;
300
300
  }
301
301
  }
@@ -303,7 +303,7 @@
303
303
  .q-field__after {
304
304
  height: 28px;
305
305
  font-size: 12px;
306
- color: $Grey_Lighten-1;
306
+ color: $grey_55;
307
307
  align-items: end;
308
308
  padding-left: 8px;
309
309
  }
@@ -334,7 +334,7 @@
334
334
  padding-top: 4px;
335
335
  .q-field__counter {
336
336
  padding: 0;
337
- color: $Grey_Lighten-2;
337
+ color: $grey_45;
338
338
  font-size: 12px;
339
339
  }
340
340
  }