quasar-ui-sellmate-ui-kit 3.1.0 → 3.1.2
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/.eslintrc.cjs +38 -7
- package/dist/index.common.js +2 -2
- package/dist/index.css +15 -2
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +2 -2
- package/dist/index.rtl.css +15 -2
- package/dist/index.rtl.min.css +2 -2
- package/dist/index.umd.js +11 -16
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/assets/icons.js +1 -1
- package/src/components/SCaution.vue +2 -7
- package/src/components/SChip.vue +1 -1
- package/src/components/SDateAutoRangePicker.vue +1 -1
- package/src/components/SDatePicker.vue +1 -1
- package/src/components/SDateRangePicker.vue +1 -1
- package/src/components/SDialog.vue +1 -1
- package/src/components/SDropdown.vue +1 -1
- package/src/components/SFilePicker.vue +1 -1
- package/src/components/SHelp.vue +1 -1
- package/src/components/SInputNumber.vue +1 -1
- package/src/components/SPagination.vue +1 -1
- package/src/components/SSelect.vue +1 -1
- package/src/components/SSelectCheckbox.vue +1 -1
- package/src/components/SSelectCustom.vue +1 -1
- package/src/components/SSelectGroupCheckbox.vue +1 -1
- package/src/components/SSelectSearch.vue +1 -1
- package/src/components/SSelectSearchAutoComplete.vue +1 -1
- package/src/components/SSelectSearchCheckbox.vue +1 -1
- package/src/components/STimePicker.vue +1 -1
- package/src/components/STooltip.vue +1 -1
- package/src/composables/table/use-navigator.js +1 -1
- package/src/css/app.scss +16 -1
- package/src/css/fonts/Pretendard-Bold.subset.woff2 +0 -0
- package/src/css/fonts/Pretendard-Bold.ttf +0 -0
- package/src/css/fonts/Pretendard-ExtraBold.subset.woff2 +0 -0
- package/src/css/fonts/Pretendard-ExtraBold.ttf +0 -0
- package/src/css/fonts/Pretendard-Light.subset.woff2 +0 -0
- package/src/css/fonts/Pretendard-Light.ttf +0 -0
- package/src/css/fonts/Pretendard-Medium.subset.woff2 +0 -0
- package/src/css/fonts/Pretendard-Medium.ttf +0 -0
- package/src/css/fonts/Pretendard-Regular.subset.woff2 +0 -0
- package/src/css/fonts/Pretendard-Regular.ttf +0 -0
- package/src/css/fonts/Pretendard-SemiBold.subset.woff2 +0 -0
- package/src/css/fonts/Pretendard-SemiBold.ttf +0 -0
- package/src/css/fonts.css +0 -68
package/dist/index.css
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* quasar-ui-sellmate-ui-kit v3.
|
|
2
|
+
* quasar-ui-sellmate-ui-kit v3.1.1
|
|
3
3
|
* (c) 2024 Sellmate Dev Team <dev@sellmate.co.kr>
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
@import 'material-icons/iconfont/material-icons.css';
|
|
7
7
|
/*********** spacing ***********/
|
|
8
|
-
@import './fonts.css';
|
|
9
8
|
.s-pa-xxs {
|
|
10
9
|
padding: 6px;
|
|
11
10
|
}
|
|
@@ -6933,6 +6932,20 @@
|
|
|
6933
6932
|
font-weight: 700;
|
|
6934
6933
|
}
|
|
6935
6934
|
|
|
6935
|
+
/*
|
|
6936
|
+
Copyright (c) 2021 Kil Hyung-jin, with Reserved Font Name Pretendard.
|
|
6937
|
+
https://github.com/orioncactus/pretendard
|
|
6938
|
+
|
|
6939
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
6940
|
+
This license is copied below, and is also available with a FAQ at:
|
|
6941
|
+
http://scripts.sil.org/OFL
|
|
6942
|
+
*/
|
|
6943
|
+
@font-face {
|
|
6944
|
+
font-family: "Pretendard";
|
|
6945
|
+
src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
|
|
6946
|
+
font-weight: 400;
|
|
6947
|
+
font-style: normal;
|
|
6948
|
+
}
|
|
6936
6949
|
.q-field {
|
|
6937
6950
|
font-size: 14px;
|
|
6938
6951
|
}
|