@ithinkdt/ui 4.0.0-12 → 4.0.0-120

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 (59) hide show
  1. package/dist/components-DFllLyV9.js +1650 -0
  2. package/dist/components.js +5 -0
  3. package/dist/directives-DUuJW647.js +183 -0
  4. package/dist/directives.js +3 -0
  5. package/dist/index.js +1224 -0
  6. package/dist/page.js +519 -0
  7. package/dist/use-i18n-Dx7V4KrY.js +6 -0
  8. package/dist/use-style-DcT-1dj4.js +29 -0
  9. package/dist/use-style.js +2 -0
  10. package/{src → esm}/components.d.ts +16 -3
  11. package/esm/components.js +1 -0
  12. package/{src → esm}/design.d.ts +9 -0
  13. package/esm/directives.js +1 -0
  14. package/esm/index.js +1 -0
  15. package/{src → esm}/page.d.ts +43 -26
  16. package/esm/page.js +1 -0
  17. package/esm/use-style.js +1 -0
  18. package/locale.d.ts +4 -0
  19. package/package.json +31 -28
  20. package/unocss-preset.d.ts +5 -0
  21. package/unocss-preset.js +163 -0
  22. package/src/components/Checkboxes.jsx +0 -128
  23. package/src/components/DataActions.jsx +0 -107
  24. package/src/components/DataCustom.jsx +0 -172
  25. package/src/components/DataFilter.jsx +0 -113
  26. package/src/components/DataForm.jsx +0 -264
  27. package/src/components/DataLocaleInput.jsx +0 -121
  28. package/src/components/DataPagination.jsx +0 -62
  29. package/src/components/DataSelection.jsx +0 -57
  30. package/src/components/DataTable.jsx +0 -243
  31. package/src/components/Radios.jsx +0 -120
  32. package/src/components/UserDept.jsx +0 -643
  33. package/src/components/assets.jsx +0 -274
  34. package/src/components/index.js +0 -11
  35. package/src/design/Account.jsx +0 -152
  36. package/src/design/Appearance.jsx +0 -89
  37. package/src/design/Breadcrumb.jsx +0 -67
  38. package/src/design/Fullscreen.jsx +0 -65
  39. package/src/design/Language.jsx +0 -45
  40. package/src/design/Layout.jsx +0 -241
  41. package/src/design/Logo.jsx +0 -91
  42. package/src/design/Menu.jsx +0 -133
  43. package/src/design/MultiTabs.jsx +0 -501
  44. package/src/design/Notification.jsx +0 -322
  45. package/src/design/common.jsx +0 -19
  46. package/src/design/index.js +0 -10
  47. package/src/directives/index.js +0 -2
  48. package/src/directives/spin.js +0 -181
  49. package/src/directives/tooltip.jsx +0 -121
  50. package/src/index.js +0 -18
  51. package/src/page.jsx +0 -626
  52. package/src/use-i18n.js +0 -8
  53. package/src/use-style.js +0 -58
  54. package/src/utils.js +0 -20
  55. package/unocss.d.ts +0 -5
  56. package/unocss.js +0 -95
  57. /package/{src → esm}/directives.d.ts +0 -0
  58. /package/{src → esm}/index.d.ts +0 -0
  59. /package/{src → esm}/use-style.d.ts +0 -0
package/src/utils.js DELETED
@@ -1,20 +0,0 @@
1
- import { NButton, NIcon } from 'ithinkdt-ui'
2
- import { h, withDirectives } from 'vue'
3
-
4
- import { vTooltip } from './directives/tooltip.jsx'
5
-
6
- export const renderBtn = (Icon, props, tooltip) =>
7
- withDirectives(
8
- h(
9
- NButton,
10
- {
11
- text: true,
12
- ...props,
13
- },
14
- () =>
15
- h(NIcon, {
16
- component: Icon,
17
- }),
18
- ),
19
- [[vTooltip, tooltip]],
20
- )
package/unocss.d.ts DELETED
@@ -1,5 +0,0 @@
1
- import { PresetFactory, PresetUnoTheme } from 'unocss'
2
-
3
- declare const ithinkdt: PresetFactory<PresetUnoTheme, {}>
4
-
5
- export default ithinkdt
package/unocss.js DELETED
@@ -1,95 +0,0 @@
1
- const ithinkdt = () => {
2
- return {
3
- name: 'preset-ithinkdt',
4
- theme: {
5
- colors: {
6
- ...Object.fromEntries(
7
- ['primary', 'success', 'warning', 'danger'].map(name => [
8
- name,
9
- {
10
- DEFAULT: `rgb(var(--color-${name}-rgb) / <alpha-value>)`,
11
- ...Object.fromEntries(
12
- ['hover', 'active'].map(level => [
13
- level,
14
- `rgb(var(--color-${name}-${level}-rgb) / <alpha-value>)`,
15
- ]),
16
- ),
17
- },
18
- ]),
19
- ),
20
- text: {
21
- DEFAULT: `rgb(var(--color-text-rgb))`,
22
- },
23
- base: {
24
- DEFAULT: `rgb(var(--color-base-rgb))`,
25
- },
26
- },
27
- borderRadius: Object.fromEntries(
28
- ['tiny', 'small', 'medium', 'large'].map(size => [size, `var(--rounded-${size})`]),
29
- ),
30
- },
31
- variants: [
32
- // stuck:
33
- (matcher) => {
34
- const array = ['top', 'right', 'bottom', 'left']
35
- const index = array.findIndex(it => matcher.startsWith(`stuck-${it}:`))
36
- if (index === -1)
37
- return matcher
38
- return {
39
- matcher: matcher.slice(7 + array[index].length),
40
- handle: (input, next) => next({
41
- ...input,
42
- parent: `${input.parent ? `${input.parent} $$ ` : ''} @container scroll-state(stuck: ${array[index]})`,
43
- }),
44
- }
45
- },
46
- ],
47
- rules: [
48
- ['scroll-state', { 'container-type': 'scroll-state' }],
49
- [
50
- /^bg-img-(.*)$/,
51
- ([_, r]) => {
52
- return {
53
- 'background-image': r[0] === '[' && r.at(-1) === ']' ? r.slice(1, -1) : r,
54
- }
55
- },
56
- ],
57
- [
58
- /^mask-(.*)$/,
59
- ([_, r]) => {
60
- const mask = `var(--un-icon) no-repeat`
61
- return {
62
- '--un-icon': r[0] === '[' && r.at(-1) === ']' ? r.slice(1, -1) : r,
63
- mask,
64
- 'mask-size': '100% 100%',
65
- }
66
- },
67
- ],
68
- ],
69
- shortcuts: [
70
- [
71
- /^card-(.*)$/,
72
- ([_, size]) => {
73
- const i = ['none', 'small', 'medium', 'large'].indexOf(size)
74
- if (i === -1) return
75
- const p = [0, 2, 4, 5][i]
76
- return `rounded-${size} px-${p + 1} py-${p} bg-white dark:bg-dark ease-in-out transition-shadow
77
- hover:shadow-[0_1px_2px_0_rgba(0_0_0_/_0.03),0_1px_6px_-1px_rgba(0_0_0_/_0.02),0_2px_4px_0_rgba(0_0_0_/_0.02)]`
78
- },
79
- { autocomplete: ['card-none', 'card-small', 'card-medium', 'card-large'] },
80
- ],
81
- {
82
- 'ell': 'truncate',
83
- 'ell-2': 'line-clamp-2',
84
- 'ell-3': 'line-clamp-3',
85
- 'flex-x-center': 'flex items-center',
86
- 'flex-y-center': 'flex justify-center',
87
- 'flex-center': 'flex justify-center items-center',
88
- 'page': 'flex flex-col p-5 gap-4',
89
- 'card': `card-medium`,
90
- },
91
- ],
92
- }
93
- }
94
-
95
- export default ithinkdt
File without changes
File without changes
File without changes