@xyhp915/slack-base-ui 0.0.8 → 0.0.10
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/libs/Select.d.ts.map +1 -1
- package/libs/index.js +15524 -17633
- package/package.json +2 -2
- package/src/pages/ComponentShowcase.tsx +4 -4
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@xyhp915/slack-base-ui",
|
|
3
3
|
"main": "libs/index.js",
|
|
4
4
|
"types": "libs/index.d.ts",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.10",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"dev": "vite",
|
|
@@ -34,6 +34,6 @@
|
|
|
34
34
|
"tailwindcss": "^4.1.18",
|
|
35
35
|
"typescript": "~5.9.3",
|
|
36
36
|
"typescript-eslint": "^8.46.4",
|
|
37
|
-
"vite": "
|
|
37
|
+
"vite": "8.0.5"
|
|
38
38
|
}
|
|
39
39
|
}
|
|
@@ -847,9 +847,9 @@ export const ComponentShowcase = () => {
|
|
|
847
847
|
required
|
|
848
848
|
fullWidth
|
|
849
849
|
options={[
|
|
850
|
-
{ value: 'admin', label: 'Administrator' },
|
|
851
|
-
{ value: 'member', label: 'Member' },
|
|
852
|
-
{ value: 'guest', label: 'Guest' },
|
|
850
|
+
{ value: 'admin', label: '(管理员)Administrator' },
|
|
851
|
+
{ value: 'member', label: '(会员)Member' },
|
|
852
|
+
{ value: 'guest', label: '(访客)Guest' },
|
|
853
853
|
]}
|
|
854
854
|
/>
|
|
855
855
|
<FormTextarea
|
|
@@ -1463,7 +1463,7 @@ export const ComponentShowcase = () => {
|
|
|
1463
1463
|
label="Channel type"
|
|
1464
1464
|
placeholder="Choose a type"
|
|
1465
1465
|
options={[
|
|
1466
|
-
{ value: 'public', label: 'Public channel' },
|
|
1466
|
+
{ value: 'public', label: '(公共频道)Public channel' },
|
|
1467
1467
|
{ value: 'private', label: 'Private channel' },
|
|
1468
1468
|
{ value: 'dm', label: 'Direct message' },
|
|
1469
1469
|
]}
|