@maxax/ui 1.1.77 → 1.1.78
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/dist/component.d.ts.map +1 -1
- package/dist/components/basic-edit-batch/helper.d.ts +1 -1
- package/dist/components/basic-form/BasicForm.vue.d.ts +2 -2
- package/dist/components/basic-form/componentMap.d.ts.map +1 -1
- package/dist/components/basic-form/helper.d.ts +1 -1
- package/dist/components/basic-form/types/component.d.ts +2 -0
- package/dist/components/basic-form/types/component.d.ts.map +1 -1
- package/dist/components/basic-multilingual-input/BasicMultilingualInput.vue.d.ts +51 -0
- package/dist/components/basic-multilingual-input/BasicMultilingualInput.vue.d.ts.map +1 -0
- package/dist/components/basic-multilingual-input/index.d.ts +7 -0
- package/dist/components/basic-multilingual-input/index.d.ts.map +1 -0
- package/dist/components/basic-multilingual-input/interface.d.ts +35 -0
- package/dist/components/basic-multilingual-input/interface.d.ts.map +1 -0
- package/dist/components/basic-table/BasicTable.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs +356 -114
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +356 -114
- package/dist/index.mjs.map +1 -1
- package/dist/locale/lang/en.d.ts.map +1 -1
- package/dist/locale/lang/zh-cn.d.ts.map +1 -1
- package/dist/locales.cjs +4 -1
- package/dist/locales.cjs.map +1 -1
- package/dist/locales.mjs +4 -1
- package/dist/locales.mjs.map +1 -1
- package/dist/theme-chalk/components/basicMultilingualInput.scss +55 -0
- package/dist/theme-chalk/components/components.scss +1 -0
- package/dist/theme-chalk/index.css +1 -1
- package/dist/theme-chalk/light.css +1 -1
- package/dist/{zh-cn-KPfh6ZPA.js → zh-cn-BwGvDABC.js} +4 -1
- package/dist/zh-cn-BwGvDABC.js.map +1 -0
- package/dist/{zh-cn-BdENqlAc.cjs → zh-cn-OQuZRA6h.cjs} +4 -1
- package/dist/zh-cn-OQuZRA6h.cjs.map +1 -0
- package/package.json +3 -3
- package/dist/zh-cn-BdENqlAc.cjs.map +0 -1
- package/dist/zh-cn-KPfh6ZPA.js.map +0 -1
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
@use '../base/config' as *;
|
|
2
|
+
@use '../base/var' as *;
|
|
3
|
+
@use '../base/utils' as *;
|
|
4
|
+
@use '../base/function' as *;
|
|
5
|
+
|
|
6
|
+
@include b('basic-multilingual-input') {
|
|
7
|
+
--basic-multilingual-input-name: 'basic-multilingual-input';
|
|
8
|
+
|
|
9
|
+
@include e('language-trigger') {
|
|
10
|
+
display: inline-flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
justify-content: center;
|
|
13
|
+
width: 24px;
|
|
14
|
+
height: 24px;
|
|
15
|
+
padding: 0;
|
|
16
|
+
border: 0;
|
|
17
|
+
border-radius: 6px;
|
|
18
|
+
color: rgb(var(--primary-color, 64, 158, 255));
|
|
19
|
+
background: transparent;
|
|
20
|
+
cursor: pointer;
|
|
21
|
+
transition:
|
|
22
|
+
color 0.18s ease,
|
|
23
|
+
background-color 0.18s ease;
|
|
24
|
+
|
|
25
|
+
&:hover,
|
|
26
|
+
&:focus-visible {
|
|
27
|
+
color: rgb(var(--primary-color, 64, 158, 255));
|
|
28
|
+
background-color: rgba(var(--primary-color, 64, 158, 255), 0.1);
|
|
29
|
+
outline: none;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&:disabled {
|
|
33
|
+
color: var(--max-disabled-text);
|
|
34
|
+
cursor: not-allowed;
|
|
35
|
+
background: transparent;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@include e('language-icon') {
|
|
40
|
+
width: 18px;
|
|
41
|
+
height: 18px;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@include b('basic-multilingual-input-modal') {
|
|
46
|
+
@include e('language-flag') {
|
|
47
|
+
margin-right: 8px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@include e('footer') {
|
|
51
|
+
display: flex;
|
|
52
|
+
justify-content: flex-end;
|
|
53
|
+
gap: 8px;
|
|
54
|
+
}
|
|
55
|
+
}
|