@uzum-tech/ui 0.1.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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2021 TuSimple
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,84 @@
1
+ <p align="center">
2
+ <img width="144px" src="https://ik.imagekit.io/jbalancer/uzum-logo.svg?updatedAt=1692012347116" />
3
+ </p>
4
+
5
+ <h1 align="center">Uzum UI</h1>
6
+ <p align="center">A Vue 3 Component Library</p>
7
+ <p align="center"><b>Fairly Complete, Theme Customizable, Uses TypeScript, Fast</b></p>
8
+ <p align="center">Kinda Interesting</p>
9
+
10
+ <p align="center">English | <a href="README.zh-CN.md">中文</a></p>
11
+
12
+ ## Documentation
13
+
14
+ [www.uzumui.com](http://www.uzumui.com)
15
+
16
+ ## Community
17
+
18
+ - [Discord](https://discord.gg/Pqv7Mev5Dd)
19
+ - DingTalk Group 1 (Member limit reached) 33482509
20
+ - DingTalk Group 2 (Member limit reached) 35886835
21
+ - DingTalk Group 3 (Member limit reached) 32377370
22
+ - DingTalk Group 4 (Member limit reached) 8165002788
23
+ - DingTalk Group 5 31205022250
24
+ - [Awesome Uzum UI](https://gitlab.paymart.uz/uzum-ui/uzum-ui-repo/uzum-ui)
25
+
26
+ ## Features
27
+
28
+ ### Fairly Complete
29
+
30
+ There are more than 80 components. Hope they can help you write less code.
31
+
32
+ What's more, they are all treeshakable.
33
+
34
+ ### Theme Customizable
35
+
36
+ We provide an advanced type safe theme system built using TypeScript. All you need is to provide a theme overrides object in JS. Then all the stuff will be done by us.
37
+
38
+ What's more, no less/sass/css variables, no webpack loaders are required.
39
+
40
+ ### Uses TypeScript
41
+
42
+ All the stuff in Uzum UI is written in TypeScript. It can work with your typescript project seamlessly.
43
+
44
+ What's more, you don't need to import any CSS to use the components.
45
+
46
+ ### Fast
47
+
48
+ I try to make it not rather slow. At least select, tree, transfer, table and cascader work with virtual list.
49
+
50
+ What's more, ..., no more. Just enjoy it.
51
+
52
+ ## Installation
53
+
54
+ ### npm
55
+
56
+ Use npm to install.
57
+
58
+ ```bash
59
+ npm i -D @uzum/ui
60
+ ```
61
+
62
+ ### Fonts
63
+
64
+ ```bash
65
+ npm i -D vfonts
66
+ ```
67
+
68
+ ### Icons
69
+
70
+ Uzum UI recommends using [xicons](https://www.xicons.org) as icon library.
71
+
72
+ ### Design Resources
73
+
74
+ [Uzum UI (Figma)](https://www.figma.com/file/yKEpk8950c0bZ2fA51psBI/Components-Web?type=design&t=brzuYK7mC2iOHJJ1-6).
75
+
76
+ ## Contributing
77
+
78
+ Please see [CONTRIBUTING.md](https://gitlab.paymart.uz/uzum-ui/uzum-ui-repo/uzum-ui/-/blob/main/CONTRIBUTING.md).
79
+
80
+ ## License
81
+
82
+ Uzum UI is licensed under the [MIT license](https://opensource.org/licenses/MIT).
83
+
84
+ Graphics resouces of `result` component is licensed under the [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/). The graphics resources come from [Twemoji](https://github.com/twitter/twemoji).
package/package.json ADDED
@@ -0,0 +1,207 @@
1
+ {
2
+ "name": "@uzum-tech/ui",
3
+ "version": "0.1.0",
4
+ "description": "A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast",
5
+ "main": "lib/index.js",
6
+ "module": "es/index.js",
7
+ "types": "es/index.d.ts",
8
+ "unpkg": "dist/index.js",
9
+ "jsdelivr": "dist/index.js",
10
+ "scripts": {
11
+ "start": "pnpm run dev",
12
+ "dev": "pnpm run clean && pnpm run gen-version && pnpm run gen-volar-dts && NODE_ENV=development vite",
13
+ "build:package": "pnpm run gen-version && pnpm run clean && pnpm run gen-volar-dts && tsc -b --force tsconfig.esm.json && node scripts/pre-build/pre-cjs-build.js && tsc -b --force tsconfig.cjs.json && rollup -c && pnpm run test:umd && node scripts/post-build && rimraf {es,lib}/*.tsbuildinfo",
14
+ "build:site": "./scripts/pre-build-site/pre-build-site.sh && NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 vite build && ./scripts/post-build-site/post-build-site.sh",
15
+ "clean": "rimraf site lib es dist node_modules/uzum-tech-ui themes/tusimple/es themes/tusimple/lib",
16
+ "release:package": "pnpm run test && pnpm run build:package && pnpm publish --no-git-checks",
17
+ "release:changelog": "node scripts/release-changelog.mjs",
18
+ "lint": "pnpm run lint:code && pnpm run lint:type",
19
+ "lint:type": "pnpm run lint:src-type && pnpm run lint:demo-type",
20
+ "lint:code": "eslint \"{src,build,scripts,demo}/**/*.{ts,tsx,js,vue,md}\"",
21
+ "lint:fix": "eslint --fix \"{src,build,scripts,demo}/**/*.{ts,tsx,js,vue,md}\"",
22
+ "lint:src-type": "tsc -b --force tsconfig.esm.json",
23
+ "lint:demo-type": "NODE_OPTIONS=--max-old-space-size=4096 vue-tsc -p src/tsconfig.demo.json",
24
+ "format": "pnpm run format:code && pnpm run format:md && pnpm run lint:fix",
25
+ "format:code": "prettier --write \"(src|demo)/**/*.(vue|js)\"",
26
+ "format:md": "prettier --write --parser markdown --prose-wrap never \"(src|demo)/**/*.md\"",
27
+ "test": "NODE_ENV=test jest --collectCoverage=false",
28
+ "test:update": "NODE_ENV=test jest -u --collectCoverage=false",
29
+ "test:cov": "NODE_ENV=test NODE_OPTIONS=--unhandled-rejections=warn jest",
30
+ "test:watch": "NODE_ENV=test jest ---watch --verbose --coverage",
31
+ "test:umd": "jest --collectCoverage=false --testMatch=\"<rootDir>/umd-test/index.spec.js\"",
32
+ "gen-version": "node scripts/gen-version",
33
+ "gen-volar-dts": "esbuild scripts/gen-component-declaration.js --bundle --platform=node --tsconfig=tsconfig.esbuild.json | node",
34
+ "build:site:ts": "./scripts/pre-build-site/pre-build-site.sh && TUSIMPLE=true NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 vite build && ./scripts/post-build-site/post-build-site.sh",
35
+ "prepare": "husky install",
36
+ "transpile-docs": "node scripts/md-to-vue data-table",
37
+ "release:site": "TUSIMPLE=true pnpm run build:site && node build-doc/generate-deploy-sh.js && sudo bash build-doc/deploy-doc.sh"
38
+ },
39
+ "author": {
40
+ "name": "Uzum",
41
+ "url": "https://uzum.com"
42
+ },
43
+ "contributors": [
44
+ {
45
+ "name": "Mardonov Baxtiyor",
46
+ "email": "jbalancer@mail.ru",
47
+ "url": "https://jbalancer.com"
48
+ },
49
+ {
50
+ "name": "Suyarov Sarvarbek",
51
+ "email": "nick881sava@gmail.com"
52
+ },
53
+ {
54
+ "name": "Shohzod Tursunov",
55
+ "email": "shohzodt454@gmail.com"
56
+ }
57
+ ],
58
+ "license": "MIT",
59
+ "files": [
60
+ "es",
61
+ "lib",
62
+ "dist",
63
+ "volar.d.ts",
64
+ "web-types.json",
65
+ "README.md"
66
+ ],
67
+ "web-types": "./web-types.json",
68
+ "lint-staged": {
69
+ "*.js": [
70
+ "prettier --write",
71
+ "eslint --fix"
72
+ ],
73
+ "*.ts": [
74
+ "prettier --write",
75
+ "eslint --fix"
76
+ ],
77
+ "*.tsx": [
78
+ "prettier --write",
79
+ "eslint --fix"
80
+ ],
81
+ "*.vue": [
82
+ "prettier --parser=vue --write",
83
+ "eslint --fix"
84
+ ],
85
+ "*.css": [
86
+ "prettier --write"
87
+ ],
88
+ "*.md": [
89
+ "prettier --write --parser markdown --prose-wrap never",
90
+ "eslint --fix"
91
+ ]
92
+ },
93
+ "devDependencies": {
94
+ "@babel/core": "^7.21.3",
95
+ "@babel/eslint-parser": "^7.21.3",
96
+ "@babel/generator": "^7.21.4",
97
+ "@babel/parser": "^7.21.4",
98
+ "@babel/preset-env": "^7.21.4",
99
+ "@babel/traverse": "^7.21.4",
100
+ "@rollup/plugin-babel": "^6.0.3",
101
+ "@rollup/plugin-commonjs": "^25.0.0",
102
+ "@rollup/plugin-node-resolve": "^15.0.2",
103
+ "@rollup/plugin-replace": "^5.0.2",
104
+ "@rollup/plugin-terser": "^0.4.1",
105
+ "@types/estree": "^1.0.0",
106
+ "@types/jest": "^29.5.0",
107
+ "@typescript-eslint/eslint-plugin": "^5.59.1",
108
+ "@typescript-eslint/parser": "^5.59.1",
109
+ "@vicons/fluent": "^0.12.0",
110
+ "@vicons/ionicons4": "^0.12.0",
111
+ "@vicons/ionicons5": "^0.12.0",
112
+ "@vitejs/plugin-vue": "^4.2.1",
113
+ "@vue/compiler-sfc": "^3.3.4",
114
+ "@vue/eslint-config-standard": "^8.0.1",
115
+ "@vue/eslint-config-typescript": "^11.0.3",
116
+ "@vue/server-renderer": "^3.3.4",
117
+ "@vue/test-utils": "^2.3.2",
118
+ "autoprefixer": "^10.4.4",
119
+ "babel-jest": "^29.5.0",
120
+ "codesandbox": "^2.2.3",
121
+ "cssnano": "^6.0.0",
122
+ "deepmerge": "^4.3.1",
123
+ "esbuild": "0.18.12",
124
+ "eslint": "^8.38.0",
125
+ "eslint-config-prettier": "^8.8.0",
126
+ "eslint-config-standard": "^17.0.0",
127
+ "eslint-config-standard-with-typescript": "^35.0.0",
128
+ "eslint-plugin-import": "^2.27.5",
129
+ "eslint-plugin-markdown": "^3.0.0",
130
+ "eslint-plugin-n": "^15.7.0",
131
+ "eslint-plugin-node": "^11.1.0",
132
+ "eslint-plugin-promise": "^6.1.1",
133
+ "eslint-plugin-vue": "^9.14.1",
134
+ "express": "^4.17.3",
135
+ "fast-glob": "^3.2.11",
136
+ "fs-extra": "^11.1.0",
137
+ "grapheme-splitter": "^1.0.4",
138
+ "husky": "^8.0.1",
139
+ "inquirer": "^9.1.0",
140
+ "jest": "^29.5.0",
141
+ "jest-canvas-mock": "^2.5.0",
142
+ "jest-environment-jsdom": "^29.5.0",
143
+ "katex": "^0.16.3",
144
+ "lint-staged": "^13.0.3",
145
+ "lyla": "^1.1.1",
146
+ "marked": "^5.0.5",
147
+ "prettier": "^2.8.8",
148
+ "rimraf": "^5.0.0",
149
+ "rollup": "^3.21.2",
150
+ "rollup-plugin-esbuild": "^5.0.0",
151
+ "superagent": "^8.0.0",
152
+ "ts-jest": "^29.1.0",
153
+ "typescript": "5.1.3",
154
+ "vfonts": "^0.1.0",
155
+ "vite": "^4.3.3",
156
+ "vue": "^3.3.4",
157
+ "vue-router": "^4.1.6",
158
+ "vue-tsc": "^1.6.5"
159
+ },
160
+ "peerDependencies": {
161
+ "vue": "^3.0.0"
162
+ },
163
+ "dependencies": {
164
+ "@css-render/plugin-bem": "^0.15.10",
165
+ "@css-render/vue3-ssr": "^0.15.10",
166
+ "@types/katex": "^0.14.0",
167
+ "@types/lodash": "^4.14.181",
168
+ "@types/lodash-es": "^4.17.6",
169
+ "async-validator": "^4.0.7",
170
+ "css-render": "^0.15.10",
171
+ "date-fns": "^2.28.0",
172
+ "date-fns-tz": "^2.0.0",
173
+ "evtd": "^0.2.4",
174
+ "highlight.js": "^11.5.0",
175
+ "lodash": "^4.17.21",
176
+ "lodash-es": "^4.17.21",
177
+ "seemly": "^0.3.6",
178
+ "treemate": "^0.3.11",
179
+ "vdirs": "^0.1.8",
180
+ "vooks": "^0.2.12",
181
+ "vueuc": "^0.4.51"
182
+ },
183
+ "sideEffects": false,
184
+ "homepage": "https://www.uzum.com",
185
+ "repository": {
186
+ "type": "git",
187
+ "url": "https://gitlab.paymart.uz/uzum-tech-ui/uzum-tech-ui-repo/uzum-tech-ui"
188
+ },
189
+ "keywords": [
190
+ "uzum-tech-ui",
191
+ "component library",
192
+ "ui framework",
193
+ "ui",
194
+ "vue",
195
+ "uzum"
196
+ ],
197
+ "pnpm": {
198
+ "peerDependencyRules": {
199
+ "ignoreMissing": [
200
+ "@babel/core",
201
+ "postcss",
202
+ "rollup",
203
+ "webpack"
204
+ ]
205
+ }
206
+ }
207
+ }
package/volar.d.ts ADDED
@@ -0,0 +1,147 @@
1
+ // Auto generated component declarations
2
+ declare module 'vue' {
3
+ export interface GlobalComponents {
4
+ NA: typeof import('@uzum-tech/ui')['NA']
5
+ NAffix: typeof import('@uzum-tech/ui')['NAffix']
6
+ NAlert: typeof import('@uzum-tech/ui')['NAlert']
7
+ NAnchor: typeof import('@uzum-tech/ui')['NAnchor']
8
+ NAnchorLink: typeof import('@uzum-tech/ui')['NAnchorLink']
9
+ NAutoComplete: typeof import('@uzum-tech/ui')['NAutoComplete']
10
+ NAvatar: typeof import('@uzum-tech/ui')['NAvatar']
11
+ NAvatarGroup: typeof import('@uzum-tech/ui')['NAvatarGroup']
12
+ NBackTop: typeof import('@uzum-tech/ui')['NBackTop']
13
+ NBadge: typeof import('@uzum-tech/ui')['NBadge']
14
+ NBlockquote: typeof import('@uzum-tech/ui')['NBlockquote']
15
+ NBreadcrumb: typeof import('@uzum-tech/ui')['NBreadcrumb']
16
+ NBreadcrumbItem: typeof import('@uzum-tech/ui')['NBreadcrumbItem']
17
+ NButton: typeof import('@uzum-tech/ui')['NButton']
18
+ NButtonGroup: typeof import('@uzum-tech/ui')['NButtonGroup']
19
+ NCalendar: typeof import('@uzum-tech/ui')['NCalendar']
20
+ NCard: typeof import('@uzum-tech/ui')['NCard']
21
+ NCarousel: typeof import('@uzum-tech/ui')['NCarousel']
22
+ NCarouselItem: typeof import('@uzum-tech/ui')['NCarouselItem']
23
+ NCascader: typeof import('@uzum-tech/ui')['NCascader']
24
+ NCheckbox: typeof import('@uzum-tech/ui')['NCheckbox']
25
+ NCheckboxGroup: typeof import('@uzum-tech/ui')['NCheckboxGroup']
26
+ NCode: typeof import('@uzum-tech/ui')['NCode']
27
+ NCol: typeof import('@uzum-tech/ui')['NCol']
28
+ NCollapse: typeof import('@uzum-tech/ui')['NCollapse']
29
+ NCollapseItem: typeof import('@uzum-tech/ui')['NCollapseItem']
30
+ NCollapseTransition: typeof import('@uzum-tech/ui')['NCollapseTransition']
31
+ NColorPicker: typeof import('@uzum-tech/ui')['NColorPicker']
32
+ NConfigProvider: typeof import('@uzum-tech/ui')['NConfigProvider']
33
+ NCountdown: typeof import('@uzum-tech/ui')['NCountdown']
34
+ NDataTable: typeof import('@uzum-tech/ui')['NDataTable']
35
+ NDatePicker: typeof import('@uzum-tech/ui')['NDatePicker']
36
+ NDescriptions: typeof import('@uzum-tech/ui')['NDescriptions']
37
+ NDescriptionsItem: typeof import('@uzum-tech/ui')['NDescriptionsItem']
38
+ NDialog: typeof import('@uzum-tech/ui')['NDialog']
39
+ NDialogProvider: typeof import('@uzum-tech/ui')['NDialogProvider']
40
+ NDivider: typeof import('@uzum-tech/ui')['NDivider']
41
+ NDrawer: typeof import('@uzum-tech/ui')['NDrawer']
42
+ NDrawerContent: typeof import('@uzum-tech/ui')['NDrawerContent']
43
+ NDropdown: typeof import('@uzum-tech/ui')['NDropdown']
44
+ NDynamicInput: typeof import('@uzum-tech/ui')['NDynamicInput']
45
+ NDynamicTags: typeof import('@uzum-tech/ui')['NDynamicTags']
46
+ NEl: typeof import('@uzum-tech/ui')['NEl']
47
+ NElement: typeof import('@uzum-tech/ui')['NElement']
48
+ NEllipsis: typeof import('@uzum-tech/ui')['NEllipsis']
49
+ NEmpty: typeof import('@uzum-tech/ui')['NEmpty']
50
+ NEquation: typeof import('@uzum-tech/ui')['NEquation']
51
+ NForm: typeof import('@uzum-tech/ui')['NForm']
52
+ NFormItem: typeof import('@uzum-tech/ui')['NFormItem']
53
+ NFormItemCol: typeof import('@uzum-tech/ui')['NFormItemCol']
54
+ NFormItemGi: typeof import('@uzum-tech/ui')['NFormItemGi']
55
+ NFormItemGridItem: typeof import('@uzum-tech/ui')['NFormItemGridItem']
56
+ NFormItemRow: typeof import('@uzum-tech/ui')['NFormItemRow']
57
+ NGi: typeof import('@uzum-tech/ui')['NGi']
58
+ NGlobalStyle: typeof import('@uzum-tech/ui')['NGlobalStyle']
59
+ NGradientText: typeof import('@uzum-tech/ui')['NGradientText']
60
+ NGrid: typeof import('@uzum-tech/ui')['NGrid']
61
+ NGridItem: typeof import('@uzum-tech/ui')['NGridItem']
62
+ NH1: typeof import('@uzum-tech/ui')['NH1']
63
+ NH2: typeof import('@uzum-tech/ui')['NH2']
64
+ NH3: typeof import('@uzum-tech/ui')['NH3']
65
+ NH4: typeof import('@uzum-tech/ui')['NH4']
66
+ NH5: typeof import('@uzum-tech/ui')['NH5']
67
+ NH6: typeof import('@uzum-tech/ui')['NH6']
68
+ NHr: typeof import('@uzum-tech/ui')['NHr']
69
+ NIcon: typeof import('@uzum-tech/ui')['NIcon']
70
+ NIconWrapper: typeof import('@uzum-tech/ui')['NIconWrapper']
71
+ NImage: typeof import('@uzum-tech/ui')['NImage']
72
+ NImageGroup: typeof import('@uzum-tech/ui')['NImageGroup']
73
+ NInput: typeof import('@uzum-tech/ui')['NInput']
74
+ NInputGroup: typeof import('@uzum-tech/ui')['NInputGroup']
75
+ NInputGroupLabel: typeof import('@uzum-tech/ui')['NInputGroupLabel']
76
+ NInputNumber: typeof import('@uzum-tech/ui')['NInputNumber']
77
+ NLayout: typeof import('@uzum-tech/ui')['NLayout']
78
+ NLayoutContent: typeof import('@uzum-tech/ui')['NLayoutContent']
79
+ NLayoutFooter: typeof import('@uzum-tech/ui')['NLayoutFooter']
80
+ NLayoutHeader: typeof import('@uzum-tech/ui')['NLayoutHeader']
81
+ NLayoutSider: typeof import('@uzum-tech/ui')['NLayoutSider']
82
+ NLegacyTransfer: typeof import('@uzum-tech/ui')['NLegacyTransfer']
83
+ NLi: typeof import('@uzum-tech/ui')['NLi']
84
+ NList: typeof import('@uzum-tech/ui')['NList']
85
+ NListItem: typeof import('@uzum-tech/ui')['NListItem']
86
+ NLoadingBarProvider: typeof import('@uzum-tech/ui')['NLoadingBarProvider']
87
+ NLog: typeof import('@uzum-tech/ui')['NLog']
88
+ NMention: typeof import('@uzum-tech/ui')['NMention']
89
+ NMenu: typeof import('@uzum-tech/ui')['NMenu']
90
+ NMessageProvider: typeof import('@uzum-tech/ui')['NMessageProvider']
91
+ NModal: typeof import('@uzum-tech/ui')['NModal']
92
+ NNotificationProvider: typeof import('@uzum-tech/ui')['NNotificationProvider']
93
+ NNumberAnimation: typeof import('@uzum-tech/ui')['NNumberAnimation']
94
+ NOl: typeof import('@uzum-tech/ui')['NOl']
95
+ NP: typeof import('@uzum-tech/ui')['NP']
96
+ NPageHeader: typeof import('@uzum-tech/ui')['NPageHeader']
97
+ NPagination: typeof import('@uzum-tech/ui')['NPagination']
98
+ NPerformantEllipsis: typeof import('@uzum-tech/ui')['NPerformantEllipsis']
99
+ NPopconfirm: typeof import('@uzum-tech/ui')['NPopconfirm']
100
+ NPopover: typeof import('@uzum-tech/ui')['NPopover']
101
+ NPopselect: typeof import('@uzum-tech/ui')['NPopselect']
102
+ NProgress: typeof import('@uzum-tech/ui')['NProgress']
103
+ NRadio: typeof import('@uzum-tech/ui')['NRadio']
104
+ NRadioButton: typeof import('@uzum-tech/ui')['NRadioButton']
105
+ NRadioGroup: typeof import('@uzum-tech/ui')['NRadioGroup']
106
+ NRate: typeof import('@uzum-tech/ui')['NRate']
107
+ NResult: typeof import('@uzum-tech/ui')['NResult']
108
+ NRow: typeof import('@uzum-tech/ui')['NRow']
109
+ NScrollbar: typeof import('@uzum-tech/ui')['NScrollbar']
110
+ NSelect: typeof import('@uzum-tech/ui')['NSelect']
111
+ NSkeleton: typeof import('@uzum-tech/ui')['NSkeleton']
112
+ NSlider: typeof import('@uzum-tech/ui')['NSlider']
113
+ NSpace: typeof import('@uzum-tech/ui')['NSpace']
114
+ NSpin: typeof import('@uzum-tech/ui')['NSpin']
115
+ NStatistic: typeof import('@uzum-tech/ui')['NStatistic']
116
+ NStep: typeof import('@uzum-tech/ui')['NStep']
117
+ NSteps: typeof import('@uzum-tech/ui')['NSteps']
118
+ NSwitch: typeof import('@uzum-tech/ui')['NSwitch']
119
+ NTab: typeof import('@uzum-tech/ui')['NTab']
120
+ NTabPane: typeof import('@uzum-tech/ui')['NTabPane']
121
+ NTable: typeof import('@uzum-tech/ui')['NTable']
122
+ NTabs: typeof import('@uzum-tech/ui')['NTabs']
123
+ NTag: typeof import('@uzum-tech/ui')['NTag']
124
+ NTbody: typeof import('@uzum-tech/ui')['NTbody']
125
+ NTd: typeof import('@uzum-tech/ui')['NTd']
126
+ NText: typeof import('@uzum-tech/ui')['NText']
127
+ NTh: typeof import('@uzum-tech/ui')['NTh']
128
+ NThead: typeof import('@uzum-tech/ui')['NThead']
129
+ NThing: typeof import('@uzum-tech/ui')['NThing']
130
+ NTime: typeof import('@uzum-tech/ui')['NTime']
131
+ NTimePicker: typeof import('@uzum-tech/ui')['NTimePicker']
132
+ NTimeline: typeof import('@uzum-tech/ui')['NTimeline']
133
+ NTimelineItem: typeof import('@uzum-tech/ui')['NTimelineItem']
134
+ NTooltip: typeof import('@uzum-tech/ui')['NTooltip']
135
+ NTr: typeof import('@uzum-tech/ui')['NTr']
136
+ NTransfer: typeof import('@uzum-tech/ui')['NTransfer']
137
+ NTree: typeof import('@uzum-tech/ui')['NTree']
138
+ NTreeSelect: typeof import('@uzum-tech/ui')['NTreeSelect']
139
+ NUl: typeof import('@uzum-tech/ui')['NUl']
140
+ NUpload: typeof import('@uzum-tech/ui')['NUpload']
141
+ NUploadDragger: typeof import('@uzum-tech/ui')['NUploadDragger']
142
+ NUploadFileList: typeof import('@uzum-tech/ui')['NUploadFileList']
143
+ NUploadTrigger: typeof import('@uzum-tech/ui')['NUploadTrigger']
144
+ NWatermark: typeof import('@uzum-tech/ui')['NWatermark']
145
+ }
146
+ }
147
+ export {}