@jari-ace/element-plus-component 0.1.9 → 0.2.0

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 (140) hide show
  1. package/README.md +18 -18
  2. package/dist/components/userPicker/src/UserPicker.vue.d.ts +17 -0
  3. package/dist/components/userPicker/src/UserPicker.vue.d.ts.map +1 -1
  4. package/dist/components/userPicker/src/UserPicker.vue.js +15 -0
  5. package/dist/components/userPicker/src/UserPicker.vue.js.map +1 -1
  6. package/dist/components/userSelectDialog/src/userSelectDialog.vue.d.ts +17 -0
  7. package/dist/components/userSelectDialog/src/userSelectDialog.vue.d.ts.map +1 -1
  8. package/dist/components/userSelectDialog/src/userSelectDialog.vue.js +15 -0
  9. package/dist/components/userSelectDialog/src/userSelectDialog.vue.js.map +1 -1
  10. package/dist/hooks/useClassificationLevels.d.ts +21 -0
  11. package/dist/hooks/useClassificationLevels.d.ts.map +1 -0
  12. package/dist/hooks/useClassificationLevels.js +55 -0
  13. package/dist/hooks/useClassificationLevels.js.map +1 -0
  14. package/dist/hooks/useUserRefQuery.d.ts +6 -0
  15. package/dist/hooks/useUserRefQuery.d.ts.map +1 -1
  16. package/dist/hooks/useUserRefQuery.js +4 -0
  17. package/dist/hooks/useUserRefQuery.js.map +1 -1
  18. package/dist/index.d.ts +0 -1
  19. package/dist/index.d.ts.map +1 -1
  20. package/dist/index.js +0 -1
  21. package/dist/index.js.map +1 -1
  22. package/lib/index.css +1 -1
  23. package/lib/index.js +740 -723
  24. package/lib/index.umd.cjs +2 -2
  25. package/package.json +61 -61
  26. package/packages/components/autoComplete/JaAutoComplete.vue +47 -47
  27. package/packages/components/autoComplete/index.ts +5 -5
  28. package/packages/components/avatar/JaAvatar.vue +126 -126
  29. package/packages/components/avatar/avatarToken.ts +11 -11
  30. package/packages/components/avatar/defaultImg.ts +14 -14
  31. package/packages/components/avatar/index.ts +7 -7
  32. package/packages/components/button/JaButton.vue +51 -51
  33. package/packages/components/button/index.ts +4 -4
  34. package/packages/components/channelPicker/index.ts +7 -7
  35. package/packages/components/channelPicker/src/ChannelPicker.vue +43 -43
  36. package/packages/components/channelPicker/src/JaChannelPicker.vue +42 -42
  37. package/packages/components/checkbox/JaCheckbox.vue +73 -73
  38. package/packages/components/checkbox/index.ts +4 -4
  39. package/packages/components/checkboxGroup/JaCheckboxGroup.vue +45 -45
  40. package/packages/components/checkboxGroup/index.ts +4 -4
  41. package/packages/components/customGroupTree/index.ts +10 -10
  42. package/packages/components/customGroupTree/src/customGroupTree.vue +91 -91
  43. package/packages/components/datePicker/JaDatePicker.vue +52 -52
  44. package/packages/components/datePicker/index.ts +4 -4
  45. package/packages/components/departmentPicker/index.ts +4 -4
  46. package/packages/components/departmentPicker/src/DepartmentPicker.vue +107 -107
  47. package/packages/components/departmentPicker/src/consts.ts +2 -2
  48. package/packages/components/departmentTree/index.ts +10 -10
  49. package/packages/components/departmentTree/src/departmentTree.vue +135 -135
  50. package/packages/components/dropdownButton/JaDropdownButton.vue +59 -59
  51. package/packages/components/dropdownButton/index.ts +4 -4
  52. package/packages/components/enumList/EnumListInput.vue +107 -107
  53. package/packages/components/enumList/JaEnumList.vue +39 -39
  54. package/packages/components/enumList/index.ts +7 -7
  55. package/packages/components/enumPicker/index.ts +5 -5
  56. package/packages/components/enumPicker/src/EnumPicker.vue +103 -103
  57. package/packages/components/form/JaForm.vue +186 -186
  58. package/packages/components/form/index.ts +5 -5
  59. package/packages/components/form/types.ts +4 -4
  60. package/packages/components/formItem/JaFormItem.vue +68 -68
  61. package/packages/components/formItem/index.ts +4 -4
  62. package/packages/components/index.ts +34 -34
  63. package/packages/components/input/JaInput.vue +143 -143
  64. package/packages/components/input/index.ts +4 -4
  65. package/packages/components/inputI18n/I18nBundleEditor.vue +76 -76
  66. package/packages/components/inputI18n/InputI18n.vue +146 -146
  67. package/packages/components/inputI18n/JaInputI18n.vue +50 -50
  68. package/packages/components/inputI18n/index.ts +8 -8
  69. package/packages/components/inputNumber/JaInputNumber.vue +98 -98
  70. package/packages/components/inputNumber/index.ts +4 -4
  71. package/packages/components/mapItemList/JaMapItemList.vue +35 -35
  72. package/packages/components/mapItemList/MapItemListInput.vue +191 -191
  73. package/packages/components/mapItemList/index.ts +7 -7
  74. package/packages/components/numberList/JaNumberList.vue +36 -36
  75. package/packages/components/numberList/NumberListInput.vue +111 -111
  76. package/packages/components/numberList/index.ts +7 -7
  77. package/packages/components/properyPicker/JaPropertyPicker.vue +38 -38
  78. package/packages/components/properyPicker/PropertyPicker.vue +314 -314
  79. package/packages/components/properyPicker/index.ts +7 -7
  80. package/packages/components/radioGroup/JaRadioGroup.vue +50 -50
  81. package/packages/components/radioGroup/index.ts +4 -4
  82. package/packages/components/rolePicker/RoleEditor.vue +129 -129
  83. package/packages/components/rolePicker/RolePicker.vue +44 -44
  84. package/packages/components/rolePicker/RolePickerRaw.vue +56 -56
  85. package/packages/components/rolePicker/baseRolePicker.vue +87 -87
  86. package/packages/components/rolePicker/index.ts +10 -10
  87. package/packages/components/scrollbar/Scrollbar.vue +89 -89
  88. package/packages/components/scrollbar/index.ts +5 -5
  89. package/packages/components/scrollbar/utils.ts +17 -17
  90. package/packages/components/select/JaSelect.vue +48 -48
  91. package/packages/components/select/index.ts +4 -4
  92. package/packages/components/stringList/JaStringList.vue +36 -36
  93. package/packages/components/stringList/StringListInput.vue +96 -96
  94. package/packages/components/stringList/index.ts +7 -7
  95. package/packages/components/switch/JaSwitch.vue +50 -50
  96. package/packages/components/switch/index.ts +4 -4
  97. package/packages/components/timePicker/JaTimePicker.vue +52 -52
  98. package/packages/components/timePicker/index.ts +5 -5
  99. package/packages/components/tip/index.ts +4 -4
  100. package/packages/components/tip/src/AceTip.vue +43 -43
  101. package/packages/components/upload/index.ts +6 -6
  102. package/packages/components/upload/src/Upload.vue +25 -25
  103. package/packages/components/upload/src/type.ts +3 -3
  104. package/packages/components/userGroupPicker/index.ts +4 -4
  105. package/packages/components/userGroupPicker/src/UserGroupPicker.vue +94 -94
  106. package/packages/components/userGroupTree/index.ts +10 -10
  107. package/packages/components/userGroupTree/src/userGroupTree.vue +149 -149
  108. package/packages/components/userPicker/index.ts +10 -10
  109. package/packages/components/userPicker/src/CustomGroupManager.vue +189 -189
  110. package/packages/components/userPicker/src/JaUserList.vue +283 -283
  111. package/packages/components/userPicker/src/JaUserPicker.vue +37 -37
  112. package/packages/components/userPicker/src/UserPicker.vue +376 -368
  113. package/packages/components/userSelectDialog/index.ts +6 -6
  114. package/packages/components/userSelectDialog/src/userSelectDialog.vue +462 -455
  115. package/packages/components/userTag/UserInfoTag.vue +397 -397
  116. package/packages/components/userTag/index.ts +6 -6
  117. package/packages/components/userTag/sharedAxios.ts +8 -8
  118. package/packages/directives/auth/index.ts +41 -41
  119. package/packages/directives/autofocus/index.ts +29 -29
  120. package/packages/directives/index.ts +10 -10
  121. package/packages/directives/shortcut/index.ts +192 -192
  122. package/packages/hooks/useAppInstances.ts +34 -34
  123. package/packages/hooks/useBridage.ts +157 -157
  124. package/packages/hooks/useClassificationLevels.ts +62 -0
  125. package/packages/hooks/useDateTimeShortCuts.ts +65 -65
  126. package/packages/hooks/useRealms.ts +28 -28
  127. package/packages/hooks/useTreeData.ts +45 -45
  128. package/packages/hooks/useUserRefQuery.ts +232 -224
  129. package/packages/index.ts +21 -22
  130. package/packages/list.json +7 -7
  131. package/packages/types/custom.d.ts +13 -13
  132. package/packages/types/window.d.ts +16 -16
  133. package/packages/utils/install.ts +43 -43
  134. package/packages/utils/objectUtils.ts +31 -31
  135. package/theme-style/fonts/iconfont.json +5196 -5196
  136. package/theme-style/index.scss +10 -10
  137. package/theme-style/styles/element-plus-var.scss +1419 -1419
  138. package/theme-style/styles/iconfont.css +2979 -2979
  139. package/theme-style/styles/theme-var.scss +72 -72
  140. package/theme-style/styles/transition.scss +122 -122
@@ -1,96 +1,96 @@
1
- <script setup lang="ts">
2
- import {Minus, Plus} from "@element-plus/icons-vue";
3
- import {watch, ref, onBeforeMount} from "vue";
4
- import {ElSpace, ElInput, ElIcon, ElTooltip} from "element-plus";
5
-
6
- const props = withDefaults(defineProps<{
7
- modelValue: string[],
8
- size?: 'small' | 'large' | 'default'
9
- }>(), {})
10
- const emits = defineEmits(["update:modelValue", "change"])
11
-
12
- function removeValue(index: number) {
13
- values.value.splice(index, 1);
14
- }
15
-
16
- function addValue() {
17
- values.value.push({v: ""})
18
- }
19
-
20
- const values = ref(props.modelValue?.map(v => {
21
- return {v}
22
- }) ?? [{
23
- v: ""
24
- }])
25
-
26
- let initializing = false;
27
- let internalChangedValue = false;
28
-
29
- onBeforeMount(() => initializeModelValue(props.modelValue))
30
-
31
- function initializeModelValue(n: string[]) {
32
- if (internalChangedValue) {
33
- internalChangedValue = false;
34
- return;
35
- }
36
- initializing = true;
37
- if (n) {
38
- values.value = n.map(v => {
39
- return {v}
40
- });
41
- if (values.value.length == 0) {
42
- values.value.push({v: ""});
43
- }
44
- } else {
45
- values.value = [{v: ""}]
46
- }
47
- }
48
-
49
- watch(() => props.modelValue, (n: string[]) => {
50
- initializeModelValue(n);
51
- })
52
-
53
- watch(() => values.value, () => {
54
- if (initializing) {
55
- initializing = false;
56
- return;
57
- }
58
- internalChangedValue = true;
59
- const newValue = values.value.map(item => item.v).filter(v => v && v.length > 0)
60
- emits("update:modelValue", newValue)
61
- emits("change", newValue)
62
- }, {deep: true})
63
- </script>
64
-
65
- <template>
66
- <div style="width: 100%">
67
- <el-space direction="vertical" style="align-items: stretch; width: 100%">
68
- <el-input v-for="(v, index) in values" :key="index" v-model="v.v" :size="size">
69
- <template #append>
70
- <el-tooltip content="删除" placement="right">
71
- <div @click="removeValue(index)"
72
- v-show="index < (values?.length ?? 0) - 1"
73
- style="margin:0 -20px; padding: 0 20px;">
74
- <el-icon>
75
- <Minus/>
76
- </el-icon>
77
- </div>
78
- </el-tooltip>
79
- <el-tooltip content="添加" placement="right">
80
- <div @click="addValue()" v-show="index === (values?.length ?? 0) - 1"
81
- style="margin:0 -20px; padding: 0 20px;">
82
- <el-icon>
83
- <plus/>
84
- </el-icon>
85
- </div>
86
- </el-tooltip>
87
-
88
- </template>
89
- </el-input>
90
- </el-space>
91
- </div>
92
- </template>
93
-
94
- <style scoped lang="scss">
95
-
96
- </style>
1
+ <script setup lang="ts">
2
+ import {Minus, Plus} from "@element-plus/icons-vue";
3
+ import {watch, ref, onBeforeMount} from "vue";
4
+ import {ElSpace, ElInput, ElIcon, ElTooltip} from "element-plus";
5
+
6
+ const props = withDefaults(defineProps<{
7
+ modelValue: string[],
8
+ size?: 'small' | 'large' | 'default'
9
+ }>(), {})
10
+ const emits = defineEmits(["update:modelValue", "change"])
11
+
12
+ function removeValue(index: number) {
13
+ values.value.splice(index, 1);
14
+ }
15
+
16
+ function addValue() {
17
+ values.value.push({v: ""})
18
+ }
19
+
20
+ const values = ref(props.modelValue?.map(v => {
21
+ return {v}
22
+ }) ?? [{
23
+ v: ""
24
+ }])
25
+
26
+ let initializing = false;
27
+ let internalChangedValue = false;
28
+
29
+ onBeforeMount(() => initializeModelValue(props.modelValue))
30
+
31
+ function initializeModelValue(n: string[]) {
32
+ if (internalChangedValue) {
33
+ internalChangedValue = false;
34
+ return;
35
+ }
36
+ initializing = true;
37
+ if (n) {
38
+ values.value = n.map(v => {
39
+ return {v}
40
+ });
41
+ if (values.value.length == 0) {
42
+ values.value.push({v: ""});
43
+ }
44
+ } else {
45
+ values.value = [{v: ""}]
46
+ }
47
+ }
48
+
49
+ watch(() => props.modelValue, (n: string[]) => {
50
+ initializeModelValue(n);
51
+ })
52
+
53
+ watch(() => values.value, () => {
54
+ if (initializing) {
55
+ initializing = false;
56
+ return;
57
+ }
58
+ internalChangedValue = true;
59
+ const newValue = values.value.map(item => item.v).filter(v => v && v.length > 0)
60
+ emits("update:modelValue", newValue)
61
+ emits("change", newValue)
62
+ }, {deep: true})
63
+ </script>
64
+
65
+ <template>
66
+ <div style="width: 100%">
67
+ <el-space direction="vertical" style="align-items: stretch; width: 100%">
68
+ <el-input v-for="(v, index) in values" :key="index" v-model="v.v" :size="size">
69
+ <template #append>
70
+ <el-tooltip content="删除" placement="right">
71
+ <div @click="removeValue(index)"
72
+ v-show="index < (values?.length ?? 0) - 1"
73
+ style="margin:0 -20px; padding: 0 20px;">
74
+ <el-icon>
75
+ <Minus/>
76
+ </el-icon>
77
+ </div>
78
+ </el-tooltip>
79
+ <el-tooltip content="添加" placement="right">
80
+ <div @click="addValue()" v-show="index === (values?.length ?? 0) - 1"
81
+ style="margin:0 -20px; padding: 0 20px;">
82
+ <el-icon>
83
+ <plus/>
84
+ </el-icon>
85
+ </div>
86
+ </el-tooltip>
87
+
88
+ </template>
89
+ </el-input>
90
+ </el-space>
91
+ </div>
92
+ </template>
93
+
94
+ <style scoped lang="scss">
95
+
96
+ </style>
@@ -1,7 +1,7 @@
1
- import {type SFCWithInstall, withInstall} from "../../utils/install";
2
- import StringList from "./JaStringList.vue";
3
- import StringListInput from "./StringListInput.vue";
4
-
5
- export const JaStringList: SFCWithInstall<typeof StringList> = withInstall(StringList);
6
-
7
- export const JaStringListRaw: SFCWithInstall<typeof StringListInput> = withInstall(StringListInput);
1
+ import {type SFCWithInstall, withInstall} from "../../utils/install";
2
+ import StringList from "./JaStringList.vue";
3
+ import StringListInput from "./StringListInput.vue";
4
+
5
+ export const JaStringList: SFCWithInstall<typeof StringList> = withInstall(StringList);
6
+
7
+ export const JaStringListRaw: SFCWithInstall<typeof StringListInput> = withInstall(StringListInput);
@@ -1,50 +1,50 @@
1
- <script setup lang="ts">
2
- import type {ValidationInstance} from '../../hooks/useBackendValidations'
3
- import {inject, ref, watch} from "vue";
4
- import {ElSwitch} from "element-plus";
5
- import {getValue, setValue} from "../../utils/objectUtils";
6
- import type {EpPropMergeType} from "element-plus/es/utils";
7
-
8
- const input = ref<typeof ElSwitch>()
9
- const model = inject('aceFormModel') as Record<string, any>
10
- const prop = inject('aceFormItemProp') as string
11
- const validator = inject('aceFormValidator') as ValidationInstance
12
- const emit = defineEmits<{
13
- change: [value: boolean | string | number]
14
- }>()
15
-
16
- function onChange(value: boolean | string | number) {
17
- validator.removeFieldError(prop)
18
- setValue(model.formData, prop, mv.value);
19
- emit('change', value)
20
- }
21
-
22
- type modelType =
23
- EpPropMergeType<readonly [BooleanConstructor, StringConstructor, NumberConstructor], unknown, unknown>
24
- | undefined;
25
-
26
- const mv = ref(getValue(model.formData, prop) as modelType);
27
- watch(() => model.formData, () => {
28
- mv.value = getValue(model.formData, prop) as modelType
29
- }, {
30
- deep: true
31
- })
32
-
33
- defineExpose({
34
- focus: () => input.value?.focus(),
35
- blur: () => input.value?.blur(),
36
- elSwitch: input
37
- })
38
- </script>
39
-
40
- <template>
41
- <el-switch
42
- ref="input"
43
- v-model="mv"
44
- @change="onChange"
45
- v-bind="$attrs">
46
- <template v-for="(_, name) in $slots" v-slot:[name]>
47
- <slot :name="name"></slot>
48
- </template>
49
- </el-switch>
50
- </template>
1
+ <script setup lang="ts">
2
+ import type {ValidationInstance} from '../../hooks/useBackendValidations'
3
+ import {inject, ref, watch} from "vue";
4
+ import {ElSwitch} from "element-plus";
5
+ import {getValue, setValue} from "../../utils/objectUtils";
6
+ import type {EpPropMergeType} from "element-plus/es/utils";
7
+
8
+ const input = ref<typeof ElSwitch>()
9
+ const model = inject('aceFormModel') as Record<string, any>
10
+ const prop = inject('aceFormItemProp') as string
11
+ const validator = inject('aceFormValidator') as ValidationInstance
12
+ const emit = defineEmits<{
13
+ change: [value: boolean | string | number]
14
+ }>()
15
+
16
+ function onChange(value: boolean | string | number) {
17
+ validator.removeFieldError(prop)
18
+ setValue(model.formData, prop, mv.value);
19
+ emit('change', value)
20
+ }
21
+
22
+ type modelType =
23
+ EpPropMergeType<readonly [BooleanConstructor, StringConstructor, NumberConstructor], unknown, unknown>
24
+ | undefined;
25
+
26
+ const mv = ref(getValue(model.formData, prop) as modelType);
27
+ watch(() => model.formData, () => {
28
+ mv.value = getValue(model.formData, prop) as modelType
29
+ }, {
30
+ deep: true
31
+ })
32
+
33
+ defineExpose({
34
+ focus: () => input.value?.focus(),
35
+ blur: () => input.value?.blur(),
36
+ elSwitch: input
37
+ })
38
+ </script>
39
+
40
+ <template>
41
+ <el-switch
42
+ ref="input"
43
+ v-model="mv"
44
+ @change="onChange"
45
+ v-bind="$attrs">
46
+ <template v-for="(_, name) in $slots" v-slot:[name]>
47
+ <slot :name="name"></slot>
48
+ </template>
49
+ </el-switch>
50
+ </template>
@@ -1,4 +1,4 @@
1
- import {type SFCWithInstall, withInstall} from "../../utils/install";
2
- import Switch from "./JaSwitch.vue";
3
- export const JaSwitch:SFCWithInstall<typeof Switch> = withInstall(Switch);
4
- export default Switch;
1
+ import {type SFCWithInstall, withInstall} from "../../utils/install";
2
+ import Switch from "./JaSwitch.vue";
3
+ export const JaSwitch:SFCWithInstall<typeof Switch> = withInstall(Switch);
4
+ export default Switch;
@@ -1,52 +1,52 @@
1
- <script setup lang="ts">
2
- import type {ValidationInstance} from '../../hooks/useBackendValidations'
3
- import {inject, onMounted, ref, watch} from "vue";
4
- import {ElTimePicker} from "element-plus";
5
- import {getValue, setValue} from "../../utils/objectUtils";
6
-
7
- const input = ref<typeof ElTimePicker>({} as typeof ElTimePicker)
8
- const model = inject('aceFormModel') as Record<string, any>
9
- const prop = inject('aceFormItemProp') as string
10
- const validator = inject('aceFormValidator') as ValidationInstance
11
- const emit = defineEmits<{
12
- change: [value: string]
13
- }>()
14
-
15
- const exposeMethods = ref<any>({})
16
-
17
- function onChange(value: string) {
18
- validator.removeFieldError(prop);
19
- setValue(model.formData, prop, mv.value);
20
- emit('change', value);
21
- }
22
-
23
- type ModelType = string | number | object;
24
-
25
- const mv = ref(getValue(model.formData, prop) as ModelType);
26
- watch(() => model.formData, () => {
27
- mv.value = getValue(model.formData, prop) as ModelType;
28
- }, {
29
- deep: true
30
- })
31
-
32
- onMounted(() => {
33
- const refMethods = Object.entries(input.value).filter(([_, v]) => v instanceof Function);
34
- refMethods.forEach(([key, val]) => {
35
- exposeMethods.value[key] = val;
36
- })
37
- })
38
-
39
- defineExpose(exposeMethods.value);
40
- </script>
41
-
42
- <template>
43
- <el-time-picker
44
- ref="input"
45
- v-model="model.formData[prop]"
46
- @change="onChange"
47
- v-bind="$attrs">
48
- <template v-for="(_, name) in $slots" v-slot:[name]>
49
- <slot :name="name"></slot>
50
- </template>
51
- </el-time-picker>
52
- </template>
1
+ <script setup lang="ts">
2
+ import type {ValidationInstance} from '../../hooks/useBackendValidations'
3
+ import {inject, onMounted, ref, watch} from "vue";
4
+ import {ElTimePicker} from "element-plus";
5
+ import {getValue, setValue} from "../../utils/objectUtils";
6
+
7
+ const input = ref<typeof ElTimePicker>({} as typeof ElTimePicker)
8
+ const model = inject('aceFormModel') as Record<string, any>
9
+ const prop = inject('aceFormItemProp') as string
10
+ const validator = inject('aceFormValidator') as ValidationInstance
11
+ const emit = defineEmits<{
12
+ change: [value: string]
13
+ }>()
14
+
15
+ const exposeMethods = ref<any>({})
16
+
17
+ function onChange(value: string) {
18
+ validator.removeFieldError(prop);
19
+ setValue(model.formData, prop, mv.value);
20
+ emit('change', value);
21
+ }
22
+
23
+ type ModelType = string | number | object;
24
+
25
+ const mv = ref(getValue(model.formData, prop) as ModelType);
26
+ watch(() => model.formData, () => {
27
+ mv.value = getValue(model.formData, prop) as ModelType;
28
+ }, {
29
+ deep: true
30
+ })
31
+
32
+ onMounted(() => {
33
+ const refMethods = Object.entries(input.value).filter(([_, v]) => v instanceof Function);
34
+ refMethods.forEach(([key, val]) => {
35
+ exposeMethods.value[key] = val;
36
+ })
37
+ })
38
+
39
+ defineExpose(exposeMethods.value);
40
+ </script>
41
+
42
+ <template>
43
+ <el-time-picker
44
+ ref="input"
45
+ v-model="model.formData[prop]"
46
+ @change="onChange"
47
+ v-bind="$attrs">
48
+ <template v-for="(_, name) in $slots" v-slot:[name]>
49
+ <slot :name="name"></slot>
50
+ </template>
51
+ </el-time-picker>
52
+ </template>
@@ -1,5 +1,5 @@
1
- import {type SFCWithInstall, withInstall} from "../../utils/install";
2
- import Picker from "./JaTimePicker.vue";
3
-
4
- export const JaTimePicker: SFCWithInstall<typeof Picker> = withInstall(Picker);
5
- export default Picker;
1
+ import {type SFCWithInstall, withInstall} from "../../utils/install";
2
+ import Picker from "./JaTimePicker.vue";
3
+
4
+ export const JaTimePicker: SFCWithInstall<typeof Picker> = withInstall(Picker);
5
+ export default Picker;
@@ -1,4 +1,4 @@
1
- import { withInstall } from "../../utils/install";
2
- import Tip from "./src/AceTip.vue";
3
- export const AceTip = withInstall(Tip);
4
- export default Tip;
1
+ import { withInstall } from "../../utils/install";
2
+ import Tip from "./src/AceTip.vue";
3
+ export const AceTip = withInstall(Tip);
4
+ export default Tip;
@@ -1,43 +1,43 @@
1
- <template>
2
- <div
3
- class="ace-tip-sfc"
4
- :style="{
5
- backgroundColor: `var(--el-color-${props.type}-light-9)`,
6
- border: ` var(--el-color-${props.type})`,
7
- }"
8
- >
9
- <slot name="icon"></slot>
10
- <p class="text-box">
11
- {{ props.text }}
12
- </p>
13
- </div>
14
- </template>
15
-
16
- <script setup lang="ts">
17
- const props = withDefaults(defineProps<{
18
- type?: "primary" | "success" | "warning" | "danger" | "info";
19
- text?: string;
20
- }>(), {
21
- type: "primary",
22
- text: "",
23
- });
24
- </script>
25
-
26
- <style scoped lang="scss">
27
- .ace-tip-sfc {
28
- padding: 8px 16px;
29
- border-radius: 4px;
30
- border-left: 5px solid;
31
- margin: 20px 0;
32
- font-size: 14px;
33
- display: flex;
34
- width: auto;
35
- align-items: center;
36
-
37
- .text-box {
38
- display: flex;
39
- align-items: center;
40
- color: var(--el-color-info);
41
- }
42
- }
43
- </style>
1
+ <template>
2
+ <div
3
+ class="ace-tip-sfc"
4
+ :style="{
5
+ backgroundColor: `var(--el-color-${props.type}-light-9)`,
6
+ border: ` var(--el-color-${props.type})`,
7
+ }"
8
+ >
9
+ <slot name="icon"></slot>
10
+ <p class="text-box">
11
+ {{ props.text }}
12
+ </p>
13
+ </div>
14
+ </template>
15
+
16
+ <script setup lang="ts">
17
+ const props = withDefaults(defineProps<{
18
+ type?: "primary" | "success" | "warning" | "danger" | "info";
19
+ text?: string;
20
+ }>(), {
21
+ type: "primary",
22
+ text: "",
23
+ });
24
+ </script>
25
+
26
+ <style scoped lang="scss">
27
+ .ace-tip-sfc {
28
+ padding: 8px 16px;
29
+ border-radius: 4px;
30
+ border-left: 5px solid;
31
+ margin: 20px 0;
32
+ font-size: 14px;
33
+ display: flex;
34
+ width: auto;
35
+ align-items: center;
36
+
37
+ .text-box {
38
+ display: flex;
39
+ align-items: center;
40
+ color: var(--el-color-info);
41
+ }
42
+ }
43
+ </style>
@@ -1,6 +1,6 @@
1
- import { withInstall } from '../../utils/install'
2
- import Upload from './src/Upload.vue'
3
- export const AceUpload = withInstall(Upload);
4
- export default Upload;
5
-
6
- export * from "./src/Upload.vue";
1
+ import { withInstall } from '../../utils/install'
2
+ import Upload from './src/Upload.vue'
3
+ export const AceUpload = withInstall(Upload);
4
+ export default Upload;
5
+
6
+ export * from "./src/Upload.vue";
@@ -1,25 +1,25 @@
1
- <template>
2
- <div>
3
- <el-upload v-model:file-list="state.fileList" class="ace-upload" list-type="picture">
4
- <el-button type="primary">Click to upload</el-button>
5
- <template #tip>
6
- <div class="el-upload__tip">jpg/png files with a size less than 500kb</div>
7
- </template>
8
- </el-upload>
9
- </div>
10
- </template>
11
-
12
- <script lang="ts" setup name="AceUpload">
13
- import {reactive} from "vue";
14
- import type {Props} from "./type";
15
-
16
- // defineOptions({
17
- // name: 'ElUpload',
18
- // })
19
- const props = defineProps<Props>();
20
- const state = reactive({
21
- fileList: [],
22
- });
23
- </script>
24
-
25
- <style lang="scss" scoped></style>
1
+ <template>
2
+ <div>
3
+ <el-upload v-model:file-list="state.fileList" class="ace-upload" list-type="picture">
4
+ <el-button type="primary">Click to upload</el-button>
5
+ <template #tip>
6
+ <div class="el-upload__tip">jpg/png files with a size less than 500kb</div>
7
+ </template>
8
+ </el-upload>
9
+ </div>
10
+ </template>
11
+
12
+ <script lang="ts" setup name="AceUpload">
13
+ import {reactive} from "vue";
14
+ import type {Props} from "./type";
15
+
16
+ // defineOptions({
17
+ // name: 'ElUpload',
18
+ // })
19
+ const props = defineProps<Props>();
20
+ const state = reactive({
21
+ fileList: [],
22
+ });
23
+ </script>
24
+
25
+ <style lang="scss" scoped></style>
@@ -1,3 +1,3 @@
1
- import type {UploadRequestOptions} from "element-plus";
2
-
3
- export interface Props extends UploadRequestOptions {}
1
+ import type {UploadRequestOptions} from "element-plus";
2
+
3
+ export interface Props extends UploadRequestOptions {}
@@ -1,4 +1,4 @@
1
- import UserGroupPicker from "./src/UserGroupPicker.vue";
2
- import {type SFCWithInstall, withInstall} from "../../utils/install";
3
-
4
- export const JaUserGroupPicker: SFCWithInstall<typeof UserGroupPicker> = withInstall(UserGroupPicker);
1
+ import UserGroupPicker from "./src/UserGroupPicker.vue";
2
+ import {type SFCWithInstall, withInstall} from "../../utils/install";
3
+
4
+ export const JaUserGroupPicker: SFCWithInstall<typeof UserGroupPicker> = withInstall(UserGroupPicker);