quasar-ui-sellmate-ui-kit 2.2.33 → 2.3.1

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 (62) hide show
  1. package/README.md +142 -142
  2. package/dist/index.common.js +3 -3
  3. package/dist/index.css +2 -2
  4. package/dist/index.esm.js +3 -3
  5. package/dist/index.min.css +2 -2
  6. package/dist/index.rtl.css +2 -2
  7. package/dist/index.rtl.min.css +2 -2
  8. package/dist/index.umd.js +3558 -3550
  9. package/dist/index.umd.min.js +3 -3
  10. package/package.json +75 -75
  11. package/src/components/SBreadcrumbs.vue +55 -55
  12. package/src/components/SButton.vue +206 -206
  13. package/src/components/SButtonGroup.vue +41 -41
  14. package/src/components/SCaution.vue +102 -102
  15. package/src/components/SCheckbox.vue +123 -123
  16. package/src/components/SChip.vue +99 -99
  17. package/src/components/SDate.vue +717 -717
  18. package/src/components/SDateAutoRangePicker.vue +341 -341
  19. package/src/components/SDatePicker.vue +472 -472
  20. package/src/components/SDateRange.vue +470 -470
  21. package/src/components/SDateRangePicker.vue +660 -660
  22. package/src/components/SDateTimePicker.vue +349 -349
  23. package/src/components/SDialog.vue +250 -250
  24. package/src/components/SDropdown.vue +216 -216
  25. package/src/components/SEditor.vue +490 -490
  26. package/src/components/SFilePicker.vue +207 -207
  27. package/src/components/SHelp.vue +146 -146
  28. package/src/components/SInput.vue +343 -343
  29. package/src/components/SInputCounter.vue +46 -46
  30. package/src/components/SInputNumber.vue +179 -179
  31. package/src/components/SList.vue +29 -29
  32. package/src/components/SMarkupTable.vue +141 -141
  33. package/src/components/SPagination.vue +266 -266
  34. package/src/components/SRadio.vue +78 -78
  35. package/src/components/SRouteTab.vue +67 -67
  36. package/src/components/SSelect.vue +294 -294
  37. package/src/components/SSelectCheckbox.vue +222 -225
  38. package/src/components/SSelectCustom.vue +25 -17
  39. package/src/components/SSelectGroupCheckbox.vue +235 -235
  40. package/src/components/SSelectSearch.vue +261 -261
  41. package/src/components/SSelectSearchAutoComplete.vue +172 -172
  42. package/src/components/SSelectSearchCheckbox.vue +356 -356
  43. package/src/components/SStringToInput.vue +66 -66
  44. package/src/components/STab.vue +80 -80
  45. package/src/components/STableTree.vue +208 -208
  46. package/src/components/STimePicker.vue +159 -159
  47. package/src/components/SToggle.vue +68 -68
  48. package/src/components/STooltip.vue +209 -209
  49. package/src/components/SelelctItem.vue +21 -21
  50. package/src/components/TimePickerCard.vue +352 -352
  51. package/src/composables/date.js +11 -11
  52. package/src/composables/modelBinder.js +13 -13
  53. package/src/composables/table/use-navigator.js +110 -110
  54. package/src/composables/table/use-resizable.js +80 -80
  55. package/src/css/app.scss +90 -90
  56. package/src/css/extends.scss +154 -154
  57. package/src/css/quasar.variables.scss +189 -189
  58. package/src/index.common.js +1 -1
  59. package/src/index.esm.js +4 -4
  60. package/src/index.scss +9 -9
  61. package/src/index.umd.js +3 -3
  62. package/src/vue-plugin.js +92 -92
package/src/index.esm.js CHANGED
@@ -1,4 +1,4 @@
1
- import * as VuePlugin from './vue-plugin';
2
-
3
- export * from './vue-plugin';
4
- export default VuePlugin;
1
+ import * as VuePlugin from './vue-plugin';
2
+
3
+ export * from './vue-plugin';
4
+ export default VuePlugin;
package/src/index.scss CHANGED
@@ -1,9 +1,9 @@
1
- @font-face {
2
- font-family: 'Pretendard';
3
- font-weight: 400;
4
- font-display: swap;
5
- src: local('Pretendard Regular'), url('../src/css/fonts/Pretendard-Regular.subset.woff2') format('woff2');
6
- }
7
-
8
- @import '../src/css/app.scss';
9
-
1
+ @font-face {
2
+ font-family: 'Pretendard';
3
+ font-weight: 400;
4
+ font-display: swap;
5
+ src: local('Pretendard Regular'), url('../src/css/fonts/Pretendard-Regular.subset.woff2') format('woff2');
6
+ }
7
+
8
+ @import '../src/css/app.scss';
9
+
package/src/index.umd.js CHANGED
@@ -1,3 +1,3 @@
1
- import * as VuePlugin from './vue-plugin';
2
-
3
- export default VuePlugin;
1
+ import * as VuePlugin from './vue-plugin';
2
+
3
+ export default VuePlugin;
package/src/vue-plugin.js CHANGED
@@ -1,92 +1,92 @@
1
- /* eslint-disable no-multiple-empty-lines */
2
- import SBreadcrumbs from './components/SBreadcrumbs.vue';
3
- import SButton from './components/SButton.vue';
4
- import SButtonGroup from './components/SButtonGroup.vue';
5
- import SButtonToggle from './components/SButtonToggle.vue';
6
- import SCaution from './components/SCaution.vue';
7
- import SCheckbox from './components/SCheckbox.vue';
8
- import SChip from './components/SChip.vue';
9
- import SDatePicker from './components/SDatePicker.vue';
10
- import SDateRangePicker from './components/SDateRangePicker.vue';
11
- import SDialog from './components/SDialog.vue';
12
- import SDropdown from './components/SDropdown.vue';
13
- import SEditor from './components/SEditor.vue';
14
- import SFilePicker from './components/SFilePicker.vue';
15
- import SHelp from './components/SHelp.vue';
16
- import SInput from './components/SInput.vue';
17
- import SInputNumber from './components/SInputNumber.vue';
18
- import SInputCounter from './components/SInputCounter.vue';
19
- import SList from './components/SList.vue';
20
- import SMarkupTable from './components/SMarkupTable.vue';
21
- import SPagination from './components/SPagination.vue';
22
- import SRadio from './components/SRadio.vue';
23
- import SRouteTab from './components/SRouteTab.vue';
24
- import SSelect from './components/SSelect.vue';
25
- import SSelectCheckbox from './components/SSelectCheckbox.vue';
26
- import SSelectSearchCheckbox from './components/SSelectSearchCheckbox.vue';
27
- import SSelectGroupCheckbox from './components/SSelectGroupCheckbox.vue';
28
- import SSelectCustom from './components/SSelectCustom.vue';
29
- import SSelectSearch from './components/SSelectSearch.vue';
30
- import SSelectSearchAutoComplete from './components/SSelectSearchAutoComplete.vue';
31
- import STab from './components/STab.vue';
32
- import STable from './components/STable.vue';
33
- import STabs from './components/STabs.vue';
34
- import STimePicker from './components/STimePicker.vue';
35
- import SToggle from './components/SToggle.vue';
36
- import STooltip from './components/STooltip.vue';
37
- import SDateTimePicker from './components/SDateTimePicker.vue';
38
- import SDateRange from './components/SDateRange.vue';
39
- import SDate from './components/SDate.vue';
40
- import SDateAutoRangePicker from './components/SDateAutoRangePicker.vue';
41
- import Directive from './directives/Directive';
42
-
43
- const version = __UI_VERSION__;
44
-
45
- function install(app) {
46
- app.component('s-breadcrumbs', SBreadcrumbs);
47
- app.component('s-button', SButton);
48
- app.component('s-button-group', SButtonGroup);
49
- app.component('s-button-toggle', SButtonToggle);
50
- app.component('s-caution', SCaution);
51
- app.component('s-checkbox', SCheckbox);
52
- app.component('s-chip', SChip);
53
- app.component('s-dialog', SDialog);
54
- app.component('s-date-picker', SDatePicker);
55
- app.component('s-date-range-picker', SDateRangePicker);
56
- app.component('s-file-picker', SFilePicker);
57
- app.component('s-help', SHelp);
58
- app.component('s-input', SInput);
59
- app.component('s-input-number', SInputNumber);
60
- app.component('s-input-counter', SInputCounter);
61
- app.component('s-list', SList);
62
- app.component('s-markup-table', SMarkupTable);
63
- app.component('s-pagination', SPagination);
64
- app.component('s-radio', SRadio);
65
- app.component('s-select', SSelect);
66
- app.component('s-select-custom', SSelectCustom);
67
- app.component('s-select-checkbox', SSelectCheckbox);
68
- app.component('s-select-search-checkbox', SSelectSearchCheckbox);
69
- app.component('s-select-group-checkbox', SSelectGroupCheckbox);
70
- app.component('s-select-search', SSelectSearch);
71
- app.component('s-select-search-auto-complete', SSelectSearchAutoComplete);
72
- app.component('s-tab', STab);
73
- app.component('s-route-tab', SRouteTab);
74
- app.component('s-tabs', STabs);
75
- app.component('s-table', STable);
76
- app.component('s-time-picker', STimePicker);
77
- app.component('s-date-time-picker', SDateTimePicker);
78
- app.component('s-toggle', SToggle);
79
- app.component('s-tooltip', STooltip);
80
- app.component('s-dropdown', SDropdown);
81
- app.component('s-editor', SEditor);
82
- app.component('s-date-range', SDateRange);
83
- app.component('s-date', SDate);
84
- app.component('s-date-auto-range-picker', SDateAutoRangePicker);
85
- }
86
-
87
- export {
88
- version,
89
- Directive,
90
- install,
91
- };
92
-
1
+ /* eslint-disable no-multiple-empty-lines */
2
+ import SBreadcrumbs from './components/SBreadcrumbs.vue';
3
+ import SButton from './components/SButton.vue';
4
+ import SButtonGroup from './components/SButtonGroup.vue';
5
+ import SButtonToggle from './components/SButtonToggle.vue';
6
+ import SCaution from './components/SCaution.vue';
7
+ import SCheckbox from './components/SCheckbox.vue';
8
+ import SChip from './components/SChip.vue';
9
+ import SDatePicker from './components/SDatePicker.vue';
10
+ import SDateRangePicker from './components/SDateRangePicker.vue';
11
+ import SDialog from './components/SDialog.vue';
12
+ import SDropdown from './components/SDropdown.vue';
13
+ import SEditor from './components/SEditor.vue';
14
+ import SFilePicker from './components/SFilePicker.vue';
15
+ import SHelp from './components/SHelp.vue';
16
+ import SInput from './components/SInput.vue';
17
+ import SInputNumber from './components/SInputNumber.vue';
18
+ import SInputCounter from './components/SInputCounter.vue';
19
+ import SList from './components/SList.vue';
20
+ import SMarkupTable from './components/SMarkupTable.vue';
21
+ import SPagination from './components/SPagination.vue';
22
+ import SRadio from './components/SRadio.vue';
23
+ import SRouteTab from './components/SRouteTab.vue';
24
+ import SSelect from './components/SSelect.vue';
25
+ import SSelectCheckbox from './components/SSelectCheckbox.vue';
26
+ import SSelectSearchCheckbox from './components/SSelectSearchCheckbox.vue';
27
+ import SSelectGroupCheckbox from './components/SSelectGroupCheckbox.vue';
28
+ import SSelectCustom from './components/SSelectCustom.vue';
29
+ import SSelectSearch from './components/SSelectSearch.vue';
30
+ import SSelectSearchAutoComplete from './components/SSelectSearchAutoComplete.vue';
31
+ import STab from './components/STab.vue';
32
+ import STable from './components/STable.vue';
33
+ import STabs from './components/STabs.vue';
34
+ import STimePicker from './components/STimePicker.vue';
35
+ import SToggle from './components/SToggle.vue';
36
+ import STooltip from './components/STooltip.vue';
37
+ import SDateTimePicker from './components/SDateTimePicker.vue';
38
+ import SDateRange from './components/SDateRange.vue';
39
+ import SDate from './components/SDate.vue';
40
+ import SDateAutoRangePicker from './components/SDateAutoRangePicker.vue';
41
+ import Directive from './directives/Directive';
42
+
43
+ const version = __UI_VERSION__;
44
+
45
+ function install(app) {
46
+ app.component('s-breadcrumbs', SBreadcrumbs);
47
+ app.component('s-button', SButton);
48
+ app.component('s-button-group', SButtonGroup);
49
+ app.component('s-button-toggle', SButtonToggle);
50
+ app.component('s-caution', SCaution);
51
+ app.component('s-checkbox', SCheckbox);
52
+ app.component('s-chip', SChip);
53
+ app.component('s-dialog', SDialog);
54
+ app.component('s-date-picker', SDatePicker);
55
+ app.component('s-date-range-picker', SDateRangePicker);
56
+ app.component('s-file-picker', SFilePicker);
57
+ app.component('s-help', SHelp);
58
+ app.component('s-input', SInput);
59
+ app.component('s-input-number', SInputNumber);
60
+ app.component('s-input-counter', SInputCounter);
61
+ app.component('s-list', SList);
62
+ app.component('s-markup-table', SMarkupTable);
63
+ app.component('s-pagination', SPagination);
64
+ app.component('s-radio', SRadio);
65
+ app.component('s-select', SSelect);
66
+ app.component('s-select-custom', SSelectCustom);
67
+ app.component('s-select-checkbox', SSelectCheckbox);
68
+ app.component('s-select-search-checkbox', SSelectSearchCheckbox);
69
+ app.component('s-select-group-checkbox', SSelectGroupCheckbox);
70
+ app.component('s-select-search', SSelectSearch);
71
+ app.component('s-select-search-auto-complete', SSelectSearchAutoComplete);
72
+ app.component('s-tab', STab);
73
+ app.component('s-route-tab', SRouteTab);
74
+ app.component('s-tabs', STabs);
75
+ app.component('s-table', STable);
76
+ app.component('s-time-picker', STimePicker);
77
+ app.component('s-date-time-picker', SDateTimePicker);
78
+ app.component('s-toggle', SToggle);
79
+ app.component('s-tooltip', STooltip);
80
+ app.component('s-dropdown', SDropdown);
81
+ app.component('s-editor', SEditor);
82
+ app.component('s-date-range', SDateRange);
83
+ app.component('s-date', SDate);
84
+ app.component('s-date-auto-range-picker', SDateAutoRangePicker);
85
+ }
86
+
87
+ export {
88
+ version,
89
+ Directive,
90
+ install,
91
+ };
92
+