@aeria-ui/ui 0.0.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 +19 -0
- package/README.md +11 -0
- package/dist/activation-c458cc9b.js +83 -0
- package/dist/components/aeria-accordion/aeria-accordion.vue.d.ts +24 -0
- package/dist/components/aeria-badge/aeria-badge.vue.d.ts +22 -0
- package/dist/components/aeria-bare-button/aeria-bare-button.vue.d.ts +25 -0
- package/dist/components/aeria-button/aeria-button.vue.d.ts +30 -0
- package/dist/components/aeria-card/aeria-card.vue.d.ts +25 -0
- package/dist/components/aeria-context-menu/aeria-context-menu.vue.d.ts +38 -0
- package/dist/components/aeria-crud/_internals/components/aeria-filter-panel/aeria-filter-panel.vue.d.ts +6 -0
- package/dist/components/aeria-crud/_internals/components/aeria-insert-panel/aeria-insert-panel.vue.d.ts +7 -0
- package/dist/components/aeria-crud/_internals/helpers.d.ts +6 -0
- package/dist/components/aeria-crud/_internals/layouts/aeria-grid/aeria-grid.vue.d.ts +18 -0
- package/dist/components/aeria-crud/_internals/layouts/aeria-tabular/aeria-tabular.vue.d.ts +24 -0
- package/dist/components/aeria-crud/_internals/layouts/index.d.ts +98 -0
- package/dist/components/aeria-crud/_internals/store.d.ts +24 -0
- package/dist/components/aeria-crud/aeria-crud.vue.d.ts +45 -0
- package/dist/components/aeria-grid/aeria-grid.vue.d.ts +21 -0
- package/dist/components/aeria-icon/aeria-icon.vue.d.ts +27 -0
- package/dist/components/aeria-info/aeria-info.vue.d.ts +22 -0
- package/dist/components/aeria-main/aeria-main.vue.d.ts +9 -0
- package/dist/components/aeria-menu/aeria-menu.vue.d.ts +7 -0
- package/dist/components/aeria-pagination/aeria-pagination.vue.d.ts +19 -0
- package/dist/components/aeria-panel/aeria-panel.vue.d.ts +75 -0
- package/dist/components/aeria-picture/aeria-picture.vue.d.ts +37 -0
- package/dist/components/aeria-table/aeria-table.vue.d.ts +42 -0
- package/dist/components/aeria-tabs/aeria-tabs.vue.d.ts +23 -0
- package/dist/components/dashboard/aeria-crud-topbar/aeria-crud-topbar.vue.d.ts +14 -0
- package/dist/components/dashboard/aeria-password-form/aeria-password-form.vue.d.ts +36 -0
- package/dist/components/dashboard/aeria-prompt/aeria-prompt.vue.d.ts +23 -0
- package/dist/components/dashboard/aeria-toast/aeria-toast.vue.d.ts +25 -0
- package/dist/components/dashboard/index.d.ts +4 -0
- package/dist/components/form/aeria-checkbox/aeria-checkbox.vue.d.ts +84 -0
- package/dist/components/form/aeria-file/aeria-file.vue.d.ts +26 -0
- package/dist/components/form/aeria-form/_internals/helpers.d.ts +4 -0
- package/dist/components/form/aeria-form/aeria-form.vue.d.ts +88 -0
- package/dist/components/form/aeria-input/aeria-input.vue.d.ts +35 -0
- package/dist/components/form/aeria-options/aeria-options.vue.d.ts +41 -0
- package/dist/components/form/aeria-search/_internals/components/aeria-search-container/aeria-search-container.vue.d.ts +26 -0
- package/dist/components/form/aeria-search/_internals/components/aeria-search-item/aeria-search-item.vue.d.ts +31 -0
- package/dist/components/form/aeria-search/aeria-search.vue.d.ts +40 -0
- package/dist/components/form/aeria-select/aeria-select.vue.d.ts +31 -0
- package/dist/components/form/aeria-switch/aeria-switch.vue.d.ts +34 -0
- package/dist/components/form/index.d.ts +8 -0
- package/dist/components/form/types.d.ts +9 -0
- package/dist/components/index.d.ts +20 -0
- package/dist/components/utils/aeria-async.d.ts +41 -0
- package/dist/components/utils/index.d.ts +1 -0
- package/dist/crud-view-0cee3962.js +31 -0
- package/dist/index-8ee4cf77.js +3259 -0
- package/dist/index.d.ts +2 -0
- package/dist/less/main.less +3 -0
- package/dist/less/polyfill.less +37 -0
- package/dist/less/spinner.less +47 -0
- package/dist/less/theme.less +10 -0
- package/dist/less/utilities.less +27 -0
- package/dist/password-change-845c176d.js +53 -0
- package/dist/profile-dc78782e.js +133 -0
- package/dist/routes.d.ts +4 -0
- package/dist/signin-596dcc4b.js +83 -0
- package/dist/signup-33a15c17.js +112 -0
- package/dist/style.css +1 -0
- package/dist/ui.js +42 -0
- package/dist/views/dashboard/crud-view/crud-view.vue.d.ts +21 -0
- package/dist/views/dashboard/user/password-change/password-change.vue.d.ts +2 -0
- package/dist/views/dashboard/user/profile/profile.vue.d.ts +9 -0
- package/dist/views/user/activation.vue.d.ts +2 -0
- package/dist/views/user/signin.vue.d.ts +2 -0
- package/dist/views/user/signup.vue.d.ts +2 -0
- package/package.json +52 -0
- package/themes/dark.less +21 -0
- package/themes/light.less +21 -0
- package/vue.d.ts +7 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aeria-ui/ui",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"description": "",
|
|
6
|
+
"keywords": [],
|
|
7
|
+
"author": "",
|
|
8
|
+
"license": "ISC",
|
|
9
|
+
"main": "dist/ui.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"exports": {
|
|
15
|
+
".": "./dist/ui.js",
|
|
16
|
+
"./themes/*": "./themes/*",
|
|
17
|
+
"./*": "./dist/*"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"themes",
|
|
22
|
+
"vue.d.ts"
|
|
23
|
+
],
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"maska": "^2.1.10"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@aeriajs/types": "*",
|
|
29
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
|
30
|
+
"vite": "^4.4.8",
|
|
31
|
+
"vite-plugin-dts": "^3.3.0",
|
|
32
|
+
"vite-plugin-static-copy": "^0.17.0",
|
|
33
|
+
"vue-tsc": "^1.8.22",
|
|
34
|
+
"aeria-build": "^0.0.0"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"@aeriajs/common": "*",
|
|
38
|
+
"@aeria-ui/state-management": "*",
|
|
39
|
+
"@aeria-ui/web": "^0.0.0",
|
|
40
|
+
"vue-router": "*"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
44
|
+
"dev": "vite",
|
|
45
|
+
"lint": "eslint src && pnpm lint-css",
|
|
46
|
+
"lint:fix": "eslint src --fix && pnpm lint-css:fix",
|
|
47
|
+
"lint-css": "stylelint '**/*.less'",
|
|
48
|
+
"lint-css:fix": "stylelint --fix '**/*.less'",
|
|
49
|
+
"build": "vue-tsc --noEmit && vite build",
|
|
50
|
+
"preview": "vite preview"
|
|
51
|
+
}
|
|
52
|
+
}
|
package/themes/dark.less
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
@import '../dist/less/theme.less';
|
|
2
|
+
|
|
3
|
+
.dark-theme(@brand-color, @background-color) {
|
|
4
|
+
.theme-defaults();
|
|
5
|
+
--theme-brand-color: @brand-color;
|
|
6
|
+
--theme-brand-color-shade-1: spin(@brand-color, 20%);
|
|
7
|
+
--theme-brand-color-shade-2: darken(@brand-color, 8%);
|
|
8
|
+
--theme-brand-color-shade-3: darken(@brand-color, 13%);
|
|
9
|
+
--theme-brand-color-contrast: contrast(@brand-color);
|
|
10
|
+
--theme-foreground-color: lighten(@background-color, 95%);
|
|
11
|
+
--theme-background-color: @background-color;
|
|
12
|
+
--theme-background-color-shade-2: lighten(@background-color, 13%);
|
|
13
|
+
--theme-background-color-shade-3: lighten(@background-color, 14%);
|
|
14
|
+
--theme-background-color-shade-4: lighten(@background-color, 16%);
|
|
15
|
+
--theme-background-color-shade-5: lighten(@background-color, 20%);
|
|
16
|
+
--theme-shadow-color: lighten(@background-color, 60%);
|
|
17
|
+
--theme-body-background: @background-color;
|
|
18
|
+
--theme-border-color: lighten(@background-color, 25%);
|
|
19
|
+
--theme-redish: lighten(red, 30%);
|
|
20
|
+
--theme-blueish: lighten(blue, 30%);
|
|
21
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
@import '../dist/less/theme.less';
|
|
2
|
+
|
|
3
|
+
.light-theme(@brand-color, @background-color) {
|
|
4
|
+
.theme-defaults();
|
|
5
|
+
--theme-brand-color: @brand-color;
|
|
6
|
+
--theme-brand-color-shade-1: spin(@brand-color, 20%);
|
|
7
|
+
--theme-brand-color-shade-2: darken(@brand-color, 8%);
|
|
8
|
+
--theme-brand-color-shade-3: darken(@brand-color, 13%);
|
|
9
|
+
--theme-brand-color-contrast: contrast(@brand-color);
|
|
10
|
+
--theme-foreground-color: darken(@background-color, 70%);
|
|
11
|
+
--theme-background-color: @background-color;
|
|
12
|
+
--theme-background-color-shade-2: darken(@background-color, 1.5%);
|
|
13
|
+
--theme-background-color-shade-3: darken(@background-color, 2%);
|
|
14
|
+
--theme-background-color-shade-4: darken(@background-color, 4%);
|
|
15
|
+
--theme-background-color-shade-5: darken(@background-color, 6%);
|
|
16
|
+
--theme-shadow-color: darken(@background-color, 12%);
|
|
17
|
+
--theme-body-background: @background-color;
|
|
18
|
+
--theme-border-color: darken(@background-color, 6%);
|
|
19
|
+
--theme-redish: lighten(red, 15%);
|
|
20
|
+
--theme-blueish: lighten(blue, 15%);
|
|
21
|
+
}
|