quasar-ui-sellmate-ui-kit 3.11.1 → 3.11.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 +104 -104
- package/.prettierrc +25 -25
- package/README.md +156 -156
- package/dist/index.common.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +1 -1
- package/dist/index.rtl.css +1 -1
- package/dist/index.rtl.min.css +1 -1
- package/dist/index.umd.js +4417 -4405
- package/dist/index.umd.min.js +2 -2
- package/html/assets/index-iPSQW1bz.css +1 -1
- package/html/assets/index-pzCGhZhc.js +35 -35
- package/html/favicon.svg +5 -5
- package/html/index.html +26 -26
- package/package.json +95 -95
- package/src/assets/icons.js +63 -63
- package/src/components/SBadge.vue +75 -75
- package/src/components/SButton.vue +206 -206
- package/src/components/SButtonGroup.vue +41 -41
- package/src/components/SButtonToggle.vue +200 -200
- package/src/components/SCaution.vue +143 -143
- package/src/components/SCheckbox.vue +123 -123
- package/src/components/SChip.vue +99 -99
- package/src/components/SDate.vue +664 -664
- package/src/components/SDateAutoRangePicker.vue +311 -311
- package/src/components/SDatePicker.vue +465 -465
- package/src/components/SDateRange.vue +382 -382
- package/src/components/SDateRangePicker.vue +582 -582
- package/src/components/SDateTimePicker.vue +259 -259
- package/src/components/SDialog.vue +250 -250
- package/src/components/SDropdown.vue +273 -273
- package/src/components/SEditor.vue +590 -590
- package/src/components/SFilePicker.vue +207 -207
- package/src/components/SHelp.vue +126 -126
- package/src/components/SHelpMessage.vue +57 -57
- package/src/components/SInput.vue +379 -379
- package/src/components/SInputCounter.vue +46 -46
- package/src/components/SInputNumber.vue +194 -194
- package/src/components/SList.vue +29 -29
- package/src/components/SMarkupTable.vue +142 -142
- package/src/components/SPagination.vue +345 -345
- package/src/components/SRadio.vue +78 -78
- package/src/components/SRouteTab.vue +67 -67
- package/src/components/SSelect.vue +299 -299
- package/src/components/SSelectCheckbox.vue +238 -238
- package/src/components/SSelectCustom.vue +189 -189
- package/src/components/SSelectGroupCheckbox.vue +372 -372
- package/src/components/SSelectSearchAutoComplete.vue +172 -172
- package/src/components/SSelectSearchCheckbox.vue +360 -360
- package/src/components/SStringToInput.vue +66 -66
- package/src/components/STab.vue +147 -147
- package/src/components/STable.vue +21 -9
- package/src/components/STableTree.vue +502 -502
- package/src/components/STabs.vue +32 -32
- package/src/components/STag.vue +152 -152
- package/src/components/STimePicker.vue +186 -186
- package/src/components/SToggle.vue +68 -68
- package/src/components/STooltip.vue +209 -209
- package/src/components/SYearMonthPicker.vue +211 -211
- package/src/components/SelelctItem.vue +21 -21
- package/src/components/TableTreeNode.vue +177 -177
- package/src/components/TimePickerCard.vue +393 -393
- package/src/components/__tests__/SButton.test.js +18 -18
- package/src/components/__tests__/SInput.test.js +42 -42
- package/src/components/__tests__/SInputCounter.test.js +30 -30
- package/src/components/__tests__/SInputNumber.test.js +32 -32
- package/src/components/__tests__/STimePicker.spec.js +78 -78
- package/src/composables/date.js +11 -11
- package/src/composables/modelBinder.js +13 -13
- package/src/composables/resizable.js +55 -55
- package/src/composables/table/use-navigator.js +110 -110
- package/src/composables/table/use-resizable-tree.js +96 -96
- package/src/composables/table/use-resizable.js +187 -187
- package/src/constants/locale.js +102 -102
- package/src/css/app.scss +106 -106
- package/src/css/default.scss +393 -393
- package/src/css/extends.scss +177 -177
- package/src/css/quasar.variables.scss +187 -187
- package/src/directives/Directive.js +7 -7
- package/src/index.scss +3 -3
- package/src/vue-plugin.js +93 -93
- package/tsconfig.json +35 -35
- package/vitest.config.ts +31 -31
package/vitest.config.ts
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { configDefaults, defineConfig } from 'vitest/config';
|
|
2
|
-
import vue from '@vitejs/plugin-vue';
|
|
3
|
-
import { quasar, transformAssetUrls } from '@quasar/vite-plugin';
|
|
4
|
-
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
5
|
-
|
|
6
|
-
// https://vitejs.dev/config/
|
|
7
|
-
export default defineConfig({
|
|
8
|
-
test: {
|
|
9
|
-
environment: 'happy-dom',
|
|
10
|
-
reporters: ['html'],
|
|
11
|
-
exclude: [...configDefaults.exclude],
|
|
12
|
-
include: [
|
|
13
|
-
// Matches vitest tests in any subfolder of 'src' or into 'test/vitest/__tests__'
|
|
14
|
-
// Matches all files with extension 'js', 'jsx', 'ts' and 'tsx'
|
|
15
|
-
'src/components/__tests__/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
|
|
16
|
-
'test/vitest/__tests__/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
|
|
17
|
-
],
|
|
18
|
-
},
|
|
19
|
-
rollupoptions: {
|
|
20
|
-
context: 'window',
|
|
21
|
-
},
|
|
22
|
-
plugins: [
|
|
23
|
-
vue({
|
|
24
|
-
template: { transformAssetUrls },
|
|
25
|
-
}),
|
|
26
|
-
quasar({
|
|
27
|
-
sassVariables: 'src/css/quasar.variables.scss',
|
|
28
|
-
}),
|
|
29
|
-
tsconfigPaths(),
|
|
30
|
-
],
|
|
31
|
-
});
|
|
1
|
+
import { configDefaults, defineConfig } from 'vitest/config';
|
|
2
|
+
import vue from '@vitejs/plugin-vue';
|
|
3
|
+
import { quasar, transformAssetUrls } from '@quasar/vite-plugin';
|
|
4
|
+
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
5
|
+
|
|
6
|
+
// https://vitejs.dev/config/
|
|
7
|
+
export default defineConfig({
|
|
8
|
+
test: {
|
|
9
|
+
environment: 'happy-dom',
|
|
10
|
+
reporters: ['html'],
|
|
11
|
+
exclude: [...configDefaults.exclude],
|
|
12
|
+
include: [
|
|
13
|
+
// Matches vitest tests in any subfolder of 'src' or into 'test/vitest/__tests__'
|
|
14
|
+
// Matches all files with extension 'js', 'jsx', 'ts' and 'tsx'
|
|
15
|
+
'src/components/__tests__/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
|
|
16
|
+
'test/vitest/__tests__/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}',
|
|
17
|
+
],
|
|
18
|
+
},
|
|
19
|
+
rollupoptions: {
|
|
20
|
+
context: 'window',
|
|
21
|
+
},
|
|
22
|
+
plugins: [
|
|
23
|
+
vue({
|
|
24
|
+
template: { transformAssetUrls },
|
|
25
|
+
}),
|
|
26
|
+
quasar({
|
|
27
|
+
sassVariables: 'src/css/quasar.variables.scss',
|
|
28
|
+
}),
|
|
29
|
+
tsconfigPaths(),
|
|
30
|
+
],
|
|
31
|
+
});
|