adata-ui 0.3.72 → 0.3.74
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/README.md +7 -7
- package/babel.config.js +5 -5
- package/package.json +76 -76
- package/public/index.html +17 -17
- package/public/logo.svg +4 -4
- package/src/App.vue +25 -25
- package/src/assets/_text_field.scss +224 -224
- package/src/assets/facebook.svg +4 -4
- package/src/assets/instagram.svg +6 -6
- package/src/assets/logo-desktop-main.svg +8 -8
- package/src/assets/logo-desktop.svg +9 -9
- package/src/assets/logo-mobile-main.svg +4 -4
- package/src/assets/logo-mobile.svg +9 -9
- package/src/assets/logo-white-desktop.svg +8 -8
- package/src/assets/style.scss +1 -1
- package/src/assets/telegram.svg +4 -4
- package/src/assets/tiktok.svg +4 -4
- package/src/assets/up-down.svg +3 -3
- package/src/assets/youtube.svg +5 -5
- package/src/components/Alert/Alert.stories.js +17 -17
- package/src/components/Alert/Alert.vue +63 -63
- package/src/components/BottomNavigationBar/ABottomNavigationBar.vue +160 -160
- package/src/components/BottomNavigationBar/BottomNavigationBar.stories.js +24 -24
- package/src/components/Button/AButton.vue +231 -231
- package/src/components/Button/Button.stories.js +23 -23
- package/src/components/Checkbox/ACheckbox.vue +114 -114
- package/src/components/Checkbox/Checkbox.stories.js +15 -15
- package/src/components/CheckboxMenu/CheckboxMenu.stories.js +23 -23
- package/src/components/CheckboxMenu/CheckboxMenu.vue +108 -108
- package/src/components/ErrorPages/BadGateway.vue +224 -224
- package/src/components/ErrorPages/Forbidden.vue +468 -468
- package/src/components/ErrorPages/InternalServerError.vue +275 -275
- package/src/components/ErrorPages/NotFound.vue +995 -995
- package/src/components/ErrorPages/Unavailable.vue +3705 -3705
- package/src/components/Footer/Footer.stories.js +20 -20
- package/src/components/Footer/Footer.vue +292 -292
- package/src/components/Header/ChildLinks.vue +141 -122
- package/src/components/Header/Header.stories.js +56 -56
- package/src/components/Header/Header.vue +1289 -1289
- package/src/components/Header/InfoHeader.vue +319 -319
- package/src/components/Header/Profile.vue +670 -670
- package/src/components/Header/ProfileMenu.vue +291 -276
- package/src/components/Header/ProfileMobile.vue +308 -308
- package/src/components/Header/ProfileOld.vue +781 -781
- package/src/components/InternalServerError/InternalServerError.stories.js +16 -16
- package/src/components/InternalServerError/InternalServerError.vue +262 -262
- package/src/components/Introduction.stories.mdx +7 -7
- package/src/components/Loader/Loader.stories.js +24 -24
- package/src/components/Loader/Loader.vue +325 -325
- package/src/components/MailTo/MailTo.stories.js +14 -14
- package/src/components/MailTo/MailTo.vue +258 -258
- package/src/components/NavIcon/ANavIcon.vue +49 -49
- package/src/components/NavIcon/NavIcon.stories.js +14 -14
- package/src/components/PasswordField/PasswordField.stories.js +16 -16
- package/src/components/PasswordField/PasswordField.vue +77 -77
- package/src/components/SearchTextField/SearchTextField.stories.js +77 -77
- package/src/components/SearchTextField/SearchTextField.vue +230 -230
- package/src/components/ServiceSlider/AServiceSlider.vue +782 -782
- package/src/components/ServiceSlider/ServiceSlider.stories.js +20 -20
- package/src/components/Table/ATable.vue +117 -117
- package/src/components/Table/Table.stories.js +15 -15
- package/src/components/TextArea/TextArea.stories.js +17 -17
- package/src/components/TextArea/TextArea.vue +116 -116
- package/src/components/TextError/TextError.stories.js +15 -15
- package/src/components/TextError/TextError.vue +57 -57
- package/src/components/TextField/TextField.stories.js +17 -17
- package/src/components/TextField/TextField.vue +107 -107
- package/src/components/index.js +54 -54
- package/src/components/newComponents/FooterNew/FooterBottom.vue +153 -153
- package/src/components/newComponents/FooterNew/FooterItem.vue +113 -113
- package/src/components/newComponents/FooterNew/FooterNew.stories.js +20 -20
- package/src/components/newComponents/FooterNew/FooterNew.vue +39 -39
- package/src/components/newComponents/FooterNew/FooterTop.vue +321 -321
- package/src/components/transitions/SlideToggle.vue +55 -55
- package/src/components/transitions/VerticalMobileToggle.vue +75 -75
- package/src/configs/icons.js +112 -112
- package/src/configs/profileDropDown.js +134 -134
- package/src/main.js +12 -12
- package/dist/adata-ui.common.js +0 -12970
- package/dist/adata-ui.common.js.map +0 -1
- package/dist/adata-ui.css +0 -1
- package/dist/adata-ui.umd.js +0 -12980
- package/dist/adata-ui.umd.js.map +0 -1
- package/dist/adata-ui.umd.min.js +0 -7
- package/dist/adata-ui.umd.min.js.map +0 -1
- package/dist/demo.html +0 -10
- package/dist/img/facebook.797d820f.svg +0 -4
- package/dist/img/instagram.8a77381c.svg +0 -6
- package/dist/img/logo-desktop-main.4d169395.svg +0 -8
- package/dist/img/logo-mobile-main.397bce24.svg +0 -4
- package/dist/img/logo-white-desktop.7d0e3481.svg +0 -8
- package/dist/img/telegram.be0d1008.svg +0 -4
- package/dist/img/tiktok.eaeb39cb.svg +0 -4
- package/dist/img/up-down.e2b28f72.svg +0 -3
- package/dist/img/youtube.125aace6.svg +0 -5
- package/package-lock.json +0 -26218
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# Welcome to Adata-UI
|
|
2
|
-
### here we develop UI components to our projects
|
|
3
|
-
## Project setup
|
|
4
|
-
```
|
|
5
|
-
npm install
|
|
6
|
-
npm run storybook
|
|
7
|
-
```
|
|
1
|
+
# Welcome to Adata-UI
|
|
2
|
+
### here we develop UI components to our projects
|
|
3
|
+
## Project setup
|
|
4
|
+
```
|
|
5
|
+
npm install
|
|
6
|
+
npm run storybook
|
|
7
|
+
```
|
package/babel.config.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
presets: [
|
|
3
|
-
'@vue/cli-plugin-babel/preset'
|
|
4
|
-
]
|
|
5
|
-
}
|
|
1
|
+
module.exports = {
|
|
2
|
+
presets: [
|
|
3
|
+
'@vue/cli-plugin-babel/preset'
|
|
4
|
+
]
|
|
5
|
+
}
|
package/package.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "adata-ui",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"private": false,
|
|
5
|
-
"scripts": {
|
|
6
|
-
"serve": "vue-cli-service serve",
|
|
7
|
-
"build": "vue-cli-service build",
|
|
8
|
-
"build-bundle": "vue-cli-service build --target lib --name adata-ui ./src/components/index.js",
|
|
9
|
-
"lint": "vue-cli-service lint",
|
|
10
|
-
"storybook": "start-storybook -p 6006",
|
|
11
|
-
"build-storybook": "build-storybook",
|
|
12
|
-
"test": "jest"
|
|
13
|
-
},
|
|
14
|
-
"dependencies": {
|
|
15
|
-
"@storybook/addons": "^6.4.14",
|
|
16
|
-
"@storybook/theming": "^6.4.14",
|
|
17
|
-
"core-js": "^3.6.5",
|
|
18
|
-
"flush-promises": "^1.0.2",
|
|
19
|
-
"node-sass": "^5.0.0",
|
|
20
|
-
"user": "0.0.0",
|
|
21
|
-
"v-click-outside": "^3.1.2",
|
|
22
|
-
"v-mask": "^2.3.0",
|
|
23
|
-
"vue": "^2.6.11",
|
|
24
|
-
"vue-the-mask": "^0.11.1",
|
|
25
|
-
"vue2-perfect-scrollbar": "^1.5.2"
|
|
26
|
-
},
|
|
27
|
-
"devDependencies": {
|
|
28
|
-
"@babel/core": "^7.16.7",
|
|
29
|
-
"@storybook/addon-actions": "^6.4.13",
|
|
30
|
-
"@storybook/addon-essentials": "^6.4.13",
|
|
31
|
-
"@storybook/addon-links": "^6.4.13",
|
|
32
|
-
"@storybook/preset-scss": "^1.0.3",
|
|
33
|
-
"@storybook/vue": "^6.4.13",
|
|
34
|
-
"@vue/cli-plugin-babel": "~4.5.0",
|
|
35
|
-
"@vue/cli-plugin-eslint": "~4.5.0",
|
|
36
|
-
"@vue/cli-service": "~4.5.0",
|
|
37
|
-
"babel-eslint": "^10.1.0",
|
|
38
|
-
"babel-loader": "^8.2.3",
|
|
39
|
-
"css-loader": "^5.2.7",
|
|
40
|
-
"eslint": "^6.7.2",
|
|
41
|
-
"eslint-plugin-vue": "^6.2.2",
|
|
42
|
-
"jest": "^27.4.7",
|
|
43
|
-
"sass": "^1.48.0",
|
|
44
|
-
"sass-loader": "^10.1.1",
|
|
45
|
-
"style-loader": "^2.0.0",
|
|
46
|
-
"vue-loader": "^15.9.8",
|
|
47
|
-
"vue-template-compiler": "^2.6.11"
|
|
48
|
-
},
|
|
49
|
-
"eslintConfig": {
|
|
50
|
-
"root": true,
|
|
51
|
-
"env": {
|
|
52
|
-
"node": true
|
|
53
|
-
},
|
|
54
|
-
"extends": [
|
|
55
|
-
"plugin:vue/essential",
|
|
56
|
-
"eslint:recommended"
|
|
57
|
-
],
|
|
58
|
-
"parserOptions": {
|
|
59
|
-
"parser": "babel-eslint"
|
|
60
|
-
},
|
|
61
|
-
"rules": {}
|
|
62
|
-
},
|
|
63
|
-
"browserslist": [
|
|
64
|
-
"> 1%",
|
|
65
|
-
"last 2 versions",
|
|
66
|
-
"not dead"
|
|
67
|
-
],
|
|
68
|
-
"main": "./dist/adata-ui.common.js",
|
|
69
|
-
"files": [
|
|
70
|
-
"dist/*",
|
|
71
|
-
"src/*",
|
|
72
|
-
"public/*",
|
|
73
|
-
"*.json",
|
|
74
|
-
"*.js"
|
|
75
|
-
]
|
|
76
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "adata-ui",
|
|
3
|
+
"version": "0.3.74",
|
|
4
|
+
"private": false,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"serve": "vue-cli-service serve",
|
|
7
|
+
"build": "vue-cli-service build",
|
|
8
|
+
"build-bundle": "vue-cli-service build --target lib --name adata-ui ./src/components/index.js",
|
|
9
|
+
"lint": "vue-cli-service lint",
|
|
10
|
+
"storybook": "start-storybook -p 6006",
|
|
11
|
+
"build-storybook": "build-storybook",
|
|
12
|
+
"test": "jest"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@storybook/addons": "^6.4.14",
|
|
16
|
+
"@storybook/theming": "^6.4.14",
|
|
17
|
+
"core-js": "^3.6.5",
|
|
18
|
+
"flush-promises": "^1.0.2",
|
|
19
|
+
"node-sass": "^5.0.0",
|
|
20
|
+
"user": "0.0.0",
|
|
21
|
+
"v-click-outside": "^3.1.2",
|
|
22
|
+
"v-mask": "^2.3.0",
|
|
23
|
+
"vue": "^2.6.11",
|
|
24
|
+
"vue-the-mask": "^0.11.1",
|
|
25
|
+
"vue2-perfect-scrollbar": "^1.5.2"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@babel/core": "^7.16.7",
|
|
29
|
+
"@storybook/addon-actions": "^6.4.13",
|
|
30
|
+
"@storybook/addon-essentials": "^6.4.13",
|
|
31
|
+
"@storybook/addon-links": "^6.4.13",
|
|
32
|
+
"@storybook/preset-scss": "^1.0.3",
|
|
33
|
+
"@storybook/vue": "^6.4.13",
|
|
34
|
+
"@vue/cli-plugin-babel": "~4.5.0",
|
|
35
|
+
"@vue/cli-plugin-eslint": "~4.5.0",
|
|
36
|
+
"@vue/cli-service": "~4.5.0",
|
|
37
|
+
"babel-eslint": "^10.1.0",
|
|
38
|
+
"babel-loader": "^8.2.3",
|
|
39
|
+
"css-loader": "^5.2.7",
|
|
40
|
+
"eslint": "^6.7.2",
|
|
41
|
+
"eslint-plugin-vue": "^6.2.2",
|
|
42
|
+
"jest": "^27.4.7",
|
|
43
|
+
"sass": "^1.48.0",
|
|
44
|
+
"sass-loader": "^10.1.1",
|
|
45
|
+
"style-loader": "^2.0.0",
|
|
46
|
+
"vue-loader": "^15.9.8",
|
|
47
|
+
"vue-template-compiler": "^2.6.11"
|
|
48
|
+
},
|
|
49
|
+
"eslintConfig": {
|
|
50
|
+
"root": true,
|
|
51
|
+
"env": {
|
|
52
|
+
"node": true
|
|
53
|
+
},
|
|
54
|
+
"extends": [
|
|
55
|
+
"plugin:vue/essential",
|
|
56
|
+
"eslint:recommended"
|
|
57
|
+
],
|
|
58
|
+
"parserOptions": {
|
|
59
|
+
"parser": "babel-eslint"
|
|
60
|
+
},
|
|
61
|
+
"rules": {}
|
|
62
|
+
},
|
|
63
|
+
"browserslist": [
|
|
64
|
+
"> 1%",
|
|
65
|
+
"last 2 versions",
|
|
66
|
+
"not dead"
|
|
67
|
+
],
|
|
68
|
+
"main": "./dist/adata-ui.common.js",
|
|
69
|
+
"files": [
|
|
70
|
+
"dist/*",
|
|
71
|
+
"src/*",
|
|
72
|
+
"public/*",
|
|
73
|
+
"*.json",
|
|
74
|
+
"*.js"
|
|
75
|
+
]
|
|
76
|
+
}
|
package/public/index.html
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
7
|
-
<link rel="icon" href="<%= BASE_URL %>logo.svg">
|
|
8
|
-
<title>Adata UI</title>
|
|
9
|
-
</head>
|
|
10
|
-
<body>
|
|
11
|
-
<noscript>
|
|
12
|
-
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
13
|
-
</noscript>
|
|
14
|
-
<div id="app"></div>
|
|
15
|
-
<!-- built files will be auto injected -->
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
7
|
+
<link rel="icon" href="<%= BASE_URL %>logo.svg">
|
|
8
|
+
<title>Adata UI</title>
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<noscript>
|
|
12
|
+
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
13
|
+
</noscript>
|
|
14
|
+
<div id="app"></div>
|
|
15
|
+
<!-- built files will be auto injected -->
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
package/public/logo.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg width="40" height="38" viewBox="0 0 28 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M13.3117 8.26147H13.2237C13.1861 8.71085 13.0938 9.15443 12.9487 9.58314L11.231 14.7333H15.2706L13.5754 9.63513C13.4383 9.18726 13.3499 8.7269 13.3117 8.26147Z" fill="#2C3E50"/>
|
|
3
|
-
<path d="M24.3463 0H2.70514C1.98769 0 1.29963 0.273926 0.792318 0.76152C0.285006 1.24911 0 1.91044 0 2.6V23.4C0 24.0896 0.285006 24.7509 0.792318 25.2385C1.29963 25.7261 1.98769 26 2.70514 26H24.3463C25.0637 26 25.7518 25.7261 26.2591 25.2385C26.7664 24.7509 27.0514 24.0896 27.0514 23.4V2.6C27.0514 1.91044 26.7664 1.24911 26.2591 0.76152C25.7518 0.273926 25.0637 0 24.3463 0ZM17.2069 20.7242L16.0798 17.3485H10.4666L9.35527 20.7242H5.50721L11.2534 5.55751H15.4689L21.0821 20.7242H17.2069Z" fill="#2C3E50"/>
|
|
4
|
-
</svg>
|
|
1
|
+
<svg width="40" height="38" viewBox="0 0 28 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.3117 8.26147H13.2237C13.1861 8.71085 13.0938 9.15443 12.9487 9.58314L11.231 14.7333H15.2706L13.5754 9.63513C13.4383 9.18726 13.3499 8.7269 13.3117 8.26147Z" fill="#2C3E50"/>
|
|
3
|
+
<path d="M24.3463 0H2.70514C1.98769 0 1.29963 0.273926 0.792318 0.76152C0.285006 1.24911 0 1.91044 0 2.6V23.4C0 24.0896 0.285006 24.7509 0.792318 25.2385C1.29963 25.7261 1.98769 26 2.70514 26H24.3463C25.0637 26 25.7518 25.7261 26.2591 25.2385C26.7664 24.7509 27.0514 24.0896 27.0514 23.4V2.6C27.0514 1.91044 26.7664 1.24911 26.2591 0.76152C25.7518 0.273926 25.0637 0 24.3463 0ZM17.2069 20.7242L16.0798 17.3485H10.4666L9.35527 20.7242H5.50721L11.2534 5.55751H15.4689L21.0821 20.7242H17.2069Z" fill="#2C3E50"/>
|
|
4
|
+
</svg>
|
package/src/App.vue
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div id="app">
|
|
3
|
-
<a-header active-tab-key="" login-url="" mode="dev"></a-header>
|
|
4
|
-
<a-footer/>
|
|
5
|
-
<a-footer-new :mode="'dev'"/>
|
|
6
|
-
</div>
|
|
7
|
-
</template>
|
|
8
|
-
|
|
9
|
-
<script>
|
|
10
|
-
|
|
11
|
-
export default {
|
|
12
|
-
name: "App",
|
|
13
|
-
components: {},
|
|
14
|
-
};
|
|
15
|
-
</script>
|
|
16
|
-
|
|
17
|
-
<style>
|
|
18
|
-
#app {
|
|
19
|
-
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
20
|
-
-webkit-font-smoothing: antialiased;
|
|
21
|
-
-moz-osx-font-smoothing: grayscale;
|
|
22
|
-
color: #2c3e50;
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div id="app">
|
|
3
|
+
<a-header active-tab-key="" login-url="" mode="dev"></a-header>
|
|
4
|
+
<a-footer/>
|
|
5
|
+
<a-footer-new :mode="'dev'"/>
|
|
6
|
+
</div>
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<script>
|
|
10
|
+
|
|
11
|
+
export default {
|
|
12
|
+
name: "App",
|
|
13
|
+
components: {},
|
|
14
|
+
};
|
|
15
|
+
</script>
|
|
16
|
+
|
|
17
|
+
<style>
|
|
18
|
+
#app {
|
|
19
|
+
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
20
|
+
-webkit-font-smoothing: antialiased;
|
|
21
|
+
-moz-osx-font-smoothing: grayscale;
|
|
22
|
+
color: #2c3e50;
|
|
23
|
+
|
|
24
|
+
}
|
|
25
|
+
</style>
|