@rocketui/vue 0.0.1 → 0.0.4
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 +50 -8
- package/dist/design-tokens.source.json +1 -0
- package/dist/favicon.ico +0 -0
- package/dist/rocket-ui-vue.js +1884 -0
- package/dist/rocket-ui-vue.umd.cjs +1 -0
- package/dist/style.css +2 -0
- package/dist/types/Alert/Alert.vue.d.ts +184 -0
- package/dist/types/Avatar/Avatar.vue.d.ts +130 -0
- package/dist/types/Badge/Badge.vue.d.ts +132 -0
- package/dist/types/Button/Button.vue.d.ts +287 -0
- package/dist/types/Checkbox/Checkbox.vue.d.ts +238 -0
- package/dist/types/Chips/Chip.vue.d.ts +220 -0
- package/dist/types/Dropdown/Dropdown.vue.d.ts +496 -0
- package/dist/types/Icon/Icon.vue.d.ts +114 -0
- package/dist/types/Label/Label.vue.d.ts +67 -0
- package/dist/types/Snackbar/Snackbar.vue.d.ts +419 -0
- package/dist/types/Switch/Switch.vue.d.ts +159 -0
- package/dist/types/TabItem/TabItem.vue.d.ts +220 -0
- package/dist/types/TabItem/common.d.ts +6 -0
- package/dist/types/Tabs/Tabs.vue.d.ts +212 -0
- package/dist/types/Tabs/types.d.ts +9 -0
- package/dist/types/TextArea/TextArea.vue.d.ts +191 -0
- package/dist/types/Textfield/Textfield.vue.d.ts +441 -0
- package/dist/types/Tooltip/Tooltip.vue.d.ts +319 -0
- package/dist/types/Tooltip/common.d.ts +23 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,6 +1,40 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Rocket UI Vue
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
yarn add @rocket-ui/vue
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
Your `main.js` file should look like this:
|
|
12
|
+
|
|
13
|
+
```js
|
|
14
|
+
import { createApp } from 'vue'
|
|
15
|
+
import App from './App.vue'
|
|
16
|
+
|
|
17
|
+
// Import the Styles
|
|
18
|
+
import '@rocket-ui/vue/dist/style.css'
|
|
19
|
+
|
|
20
|
+
createApp(App).mount('#app')
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Then you can use the components in your `App.vue` file:
|
|
24
|
+
|
|
25
|
+
```vue
|
|
26
|
+
<script setup>
|
|
27
|
+
import { Button } from '@rocket-ui/vue'
|
|
28
|
+
</script>
|
|
29
|
+
|
|
30
|
+
<template>
|
|
31
|
+
<Button>Rocket UI Button</Button>
|
|
32
|
+
</template>
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Development
|
|
36
|
+
|
|
37
|
+
### Recommended IDE Setup
|
|
4
38
|
|
|
5
39
|
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
|
6
40
|
|
|
@@ -15,36 +49,44 @@ If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has a
|
|
|
15
49
|
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
|
|
16
50
|
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
|
|
17
51
|
|
|
18
|
-
|
|
52
|
+
### Customize configuration
|
|
19
53
|
|
|
20
54
|
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
21
55
|
|
|
22
|
-
|
|
56
|
+
### Project Setup
|
|
23
57
|
|
|
24
58
|
```sh
|
|
25
59
|
yarn install
|
|
26
60
|
```
|
|
27
61
|
|
|
28
|
-
|
|
62
|
+
#### Compile and Hot-Reload for Development
|
|
29
63
|
|
|
30
64
|
```sh
|
|
31
65
|
yarn dev
|
|
32
66
|
```
|
|
33
67
|
|
|
34
|
-
|
|
68
|
+
#### Type-Check, Compile and Minify for Production
|
|
35
69
|
|
|
36
70
|
```sh
|
|
37
71
|
yarn build
|
|
38
72
|
```
|
|
39
73
|
|
|
40
|
-
|
|
74
|
+
#### Run Unit Tests with [Vitest](https://vitest.dev/)
|
|
41
75
|
|
|
42
76
|
```sh
|
|
43
77
|
yarn test:unit
|
|
44
78
|
```
|
|
45
79
|
|
|
46
|
-
|
|
80
|
+
#### Lint with [ESLint](https://eslint.org/)
|
|
47
81
|
|
|
48
82
|
```sh
|
|
49
83
|
yarn lint
|
|
50
84
|
```
|
|
85
|
+
|
|
86
|
+
## Contribution
|
|
87
|
+
|
|
88
|
+
Clone the repo and run `yarn install` to install dependencies. Then run `yarn dev` to start the dev server.
|
|
89
|
+
|
|
90
|
+
## License
|
|
91
|
+
|
|
92
|
+
MIT. See [LICENSE](./LICENSE) for more details.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"cssTokens":{"categories":[{"name":"Colors","presenter":"Color","range":{"from":{"column":3,"line":4},"to":{"column":23,"line":71}},"source":"/Users/gokhanozturk/Desktop/dev/labs/rocket-ui/src/index.css","tokens":[{"isAlias":false,"name":"--primary-50","presenter":"Color","rawValue":"#f2f4ff","sourceType":"CSS","value":"#f2f4ff"},{"isAlias":false,"name":"--primary-100","presenter":"Color","rawValue":"#f2f3fd","sourceType":"CSS","value":"#f2f3fd"},{"isAlias":false,"name":"--primary-200","presenter":"Color","rawValue":"#e4e6fb","sourceType":"CSS","value":"#e4e6fb"},{"isAlias":false,"name":"--primary-300","presenter":"Color","rawValue":"#a3abf0","sourceType":"CSS","value":"#a3abf0"},{"isAlias":false,"name":"--primary-400","presenter":"Color","rawValue":"#6f7de5","sourceType":"CSS","value":"#6f7de5"},{"isAlias":false,"name":"--primary-500","presenter":"Color","rawValue":"#4c5be1","sourceType":"CSS","value":"#4c5be1"},{"isAlias":false,"name":"--primary-600","presenter":"Color","rawValue":"#3a3f9e","sourceType":"CSS","value":"#3a3f9e"},{"isAlias":false,"name":"--primary-700","presenter":"Color","rawValue":"#3944a9","sourceType":"CSS","value":"#3944a9"},{"isAlias":false,"name":"--primary-800","presenter":"Color","rawValue":"#2e3a7e","sourceType":"CSS","value":"#2e3a7e"},{"isAlias":false,"name":"--primary-900","presenter":"Color","rawValue":"#2e3787","sourceType":"CSS","value":"#2e3787"},{"isAlias":false,"name":"--secondary-100","presenter":"Color","rawValue":"#fdfae7","sourceType":"CSS","value":"#fdfae7"},{"isAlias":false,"name":"--secondary-200","presenter":"Color","rawValue":"#f9eeb5","sourceType":"CSS","value":"#f9eeb5"},{"isAlias":false,"name":"--secondary-300","presenter":"Color","rawValue":"#ffec8a","sourceType":"CSS","value":"#ffec8a"},{"isAlias":false,"name":"--secondary-400","presenter":"Color","rawValue":"#ffdf3b","sourceType":"CSS","value":"#ffdf3b"},{"isAlias":false,"name":"--secondary-500","presenter":"Color","rawValue":"#ebc80f","sourceType":"CSS","value":"#ebc80f"},{"isAlias":false,"name":"--secondary-600","presenter":"Color","rawValue":"#e0bc00","sourceType":"CSS","value":"#e0bc00"},{"isAlias":false,"name":"--secondary-700","presenter":"Color","rawValue":"#998100","sourceType":"CSS","value":"#998100"},{"isAlias":false,"name":"--secondary-800","presenter":"Color","rawValue":"#705e00","sourceType":"CSS","value":"#705e00"},{"isAlias":false,"name":"--secondary-900","presenter":"Color","rawValue":"#483c00","sourceType":"CSS","value":"#483c00"},{"isAlias":false,"name":"--neutral-100","presenter":"Color","rawValue":"#f6f7f9","sourceType":"CSS","value":"#f6f7f9"},{"isAlias":false,"name":"--neutral-200","presenter":"Color","rawValue":"#e7eaee","sourceType":"CSS","value":"#e7eaee"},{"isAlias":false,"name":"--neutral-300","presenter":"Color","rawValue":"#c3c9d5","sourceType":"CSS","value":"#c3c9d5"},{"isAlias":false,"name":"--neutral-400","presenter":"Color","rawValue":"#acb4c3","sourceType":"CSS","value":"#acb4c3"},{"isAlias":false,"name":"--neutral-500","presenter":"Color","rawValue":"#818a9c","sourceType":"CSS","value":"#818a9c"},{"isAlias":false,"name":"--neutral-600","presenter":"Color","rawValue":"#586174","sourceType":"CSS","value":"#586174"},{"isAlias":false,"name":"--neutral-700","presenter":"Color","rawValue":"#3c4353","sourceType":"CSS","value":"#3c4353"},{"isAlias":false,"name":"--neutral-800","presenter":"Color","rawValue":"#242a38","sourceType":"CSS","value":"#242a38"},{"isAlias":false,"name":"--neutral-900","presenter":"Color","rawValue":"#151b26","sourceType":"CSS","value":"#151b26"},{"isAlias":false,"name":"--success-100","presenter":"Color","rawValue":"#e8fff7","sourceType":"CSS","value":"#e8fff7"},{"isAlias":false,"name":"--success-200","presenter":"Color","rawValue":"#bfffe8","sourceType":"CSS","value":"#bfffe8"},{"isAlias":false,"name":"--success-300","presenter":"Color","rawValue":"#97ffda","sourceType":"CSS","value":"#97ffda"},{"isAlias":false,"name":"--success-400","presenter":"Color","rawValue":"#1bf5a7","sourceType":"CSS","value":"#1bf5a7"},{"isAlias":false,"name":"--success-500","presenter":"Color","rawValue":"#05cc85","sourceType":"CSS","value":"#05cc85"},{"isAlias":false,"name":"--success-600","presenter":"Color","rawValue":"#0cbc7d","sourceType":"CSS","value":"#0cbc7d"},{"isAlias":false,"name":"--success-700","presenter":"Color","rawValue":"#068e03","sourceType":"CSS","value":"#068e03"},{"isAlias":false,"name":"--success-800","presenter":"Color","rawValue":"#007a4f","sourceType":"CSS","value":"#007a4f"},{"isAlias":false,"name":"--success-900","presenter":"Color","rawValue":"#005235","sourceType":"CSS","value":"#005235"},{"isAlias":false,"name":"--info-100","presenter":"Color","rawValue":"#e8f4ff","sourceType":"CSS","value":"#e8f4ff"},{"isAlias":false,"name":"--info-200","presenter":"Color","rawValue":"#b6dcff","sourceType":"CSS","value":"#b6dcff"},{"isAlias":false,"name":"--info-300","presenter":"Color","rawValue":"#83c3ff","sourceType":"CSS","value":"#83c3ff"},{"isAlias":false,"name":"--info-400","presenter":"Color","rawValue":"#50abff","sourceType":"CSS","value":"#50abff"},{"isAlias":false,"name":"--info-500","presenter":"Color","rawValue":"#0c70ce","sourceType":"CSS","value":"#0c70ce"},{"isAlias":false,"name":"--info-600","presenter":"Color","rawValue":"#0059ac","sourceType":"CSS","value":"#0059ac"},{"isAlias":false,"name":"--info-700","presenter":"Color","rawValue":"#00488a","sourceType":"CSS","value":"#00488a"},{"isAlias":false,"name":"--info-800","presenter":"Color","rawValue":"#003668","sourceType":"CSS","value":"#003668"},{"isAlias":false,"name":"--info-900","presenter":"Color","rawValue":"#002446","sourceType":"CSS","value":"#002446"},{"isAlias":false,"name":"--warning-100","presenter":"Color","rawValue":"#fdfae7","sourceType":"CSS","value":"#fdfae7"},{"isAlias":false,"name":"--warning-200","presenter":"Color","rawValue":"#f9eeb5","sourceType":"CSS","value":"#f9eeb5"},{"isAlias":false,"name":"--warning-300","presenter":"Color","rawValue":"#ffec8a","sourceType":"CSS","value":"#ffec8a"},{"isAlias":false,"name":"--warning-400","presenter":"Color","rawValue":"#ffdf3b","sourceType":"CSS","value":"#ffdf3b"},{"isAlias":false,"name":"--warning-500","presenter":"Color","rawValue":"#ebc80f","sourceType":"CSS","value":"#ebc80f"},{"isAlias":false,"name":"--warning-600","presenter":"Color","rawValue":"#e0bc00","sourceType":"CSS","value":"#e0bc00"},{"isAlias":false,"name":"--warning-700","presenter":"Color","rawValue":"#998100","sourceType":"CSS","value":"#998100"},{"isAlias":false,"name":"--warning-800","presenter":"Color","rawValue":"#705e00","sourceType":"CSS","value":"#705e00"},{"isAlias":false,"name":"--warning-900","presenter":"Color","rawValue":"#483c00","sourceType":"CSS","value":"#483c00"},{"isAlias":false,"name":"--error-100","presenter":"Color","rawValue":"#ffeceb","sourceType":"CSS","value":"#ffeceb"},{"isAlias":false,"name":"--error-200","presenter":"Color","rawValue":"#ffd0cc","sourceType":"CSS","value":"#ffd0cc"},{"isAlias":false,"name":"--error-300","presenter":"Color","rawValue":"#ff9891","sourceType":"CSS","value":"#ff9891"},{"isAlias":false,"name":"--error-400","presenter":"Color","rawValue":"#ff4537","sourceType":"CSS","value":"#ff4537"},{"isAlias":false,"name":"--error-500","presenter":"Color","rawValue":"#e13023","sourceType":"CSS","value":"#e13023"},{"isAlias":false,"name":"--error-600","presenter":"Color","rawValue":"#bf1e12","sourceType":"CSS","value":"#bf1e12"},{"isAlias":false,"name":"--error-700","presenter":"Color","rawValue":"#9d1006","sourceType":"CSS","value":"#9d1006"},{"isAlias":false,"name":"--error-800","presenter":"Color","rawValue":"#7b0900","sourceType":"CSS","value":"#7b0900"},{"isAlias":false,"name":"--error-900","presenter":"Color","rawValue":"#590600","sourceType":"CSS","value":"#590600"}]},{"name":"Box Shadows","presenter":"Shadow","range":{"from":{"column":3,"line":72},"to":{"column":60,"line":83}},"source":"/Users/gokhanozturk/Desktop/dev/labs/rocket-ui/src/index.css","tokens":[{"isAlias":false,"name":"--box-shadow","presenter":"Shadow","rawValue":"0 0 10px 0 rgba(0, 0, 0, 0.1)","sourceType":"CSS","value":"0 0 10px 0 rgba(0, 0, 0, 0.1)"},{"isAlias":false,"name":"--box-shadow-hover","presenter":"Shadow","rawValue":"0 0 10px 0 rgba(0, 0, 0, 0.2)","sourceType":"CSS","value":"0 0 10px 0 rgba(0, 0, 0, 0.2)"},{"isAlias":false,"name":"--box-shadow-active","presenter":"Shadow","rawValue":"0 0 10px 0 rgba(0, 0, 0, 0.3)","sourceType":"CSS","value":"0 0 10px 0 rgba(0, 0, 0, 0.3)"},{"isAlias":false,"name":"--box-shadow-focus","presenter":"Shadow","rawValue":"0 0 10px 0 rgba(0, 0, 0, 0.4)","sourceType":"CSS","value":"0 0 10px 0 rgba(0, 0, 0, 0.4)"},{"isAlias":false,"name":"--box-shadow-pressed","presenter":"Shadow","rawValue":"0 0 10px 0 rgba(0, 0, 0, 0.5)","sourceType":"CSS","value":"0 0 10px 0 rgba(0, 0, 0, 0.5)"},{"isAlias":false,"name":"--box-shadow-pressed-active","presenter":"Shadow","rawValue":"0 0 10px 0 rgba(0, 0, 0, 0.6)","sourceType":"CSS","value":"0 0 10px 0 rgba(0, 0, 0, 0.6)"},{"isAlias":false,"name":"--box-shadow-pressed-focus","presenter":"Shadow","rawValue":"0 0 10px 0 rgba(0, 0, 0, 0.7)","sourceType":"CSS","value":"0 0 10px 0 rgba(0, 0, 0, 0.7)"},{"isAlias":false,"name":"--box-shadow-pressed-hover","presenter":"Shadow","rawValue":"0 0 10px 0 rgba(0, 0, 0, 0.8)","sourceType":"CSS","value":"0 0 10px 0 rgba(0, 0, 0, 0.8)"}]},{"name":"Spaces","presenter":"Spacing","range":{"from":{"column":3,"line":84},"to":{"column":19,"line":107}},"source":"/Users/gokhanozturk/Desktop/dev/labs/rocket-ui/src/index.css","tokens":[{"isAlias":false,"name":"--space-1","presenter":"Spacing","rawValue":"0.25rem","sourceType":"CSS","value":"0.25rem"},{"isAlias":false,"name":"--space-2","presenter":"Spacing","rawValue":"0.5rem","sourceType":"CSS","value":"0.5rem"},{"isAlias":false,"name":"--space-3","presenter":"Spacing","rawValue":"0.75rem","sourceType":"CSS","value":"0.75rem"},{"isAlias":false,"name":"--space-4","presenter":"Spacing","rawValue":"1rem","sourceType":"CSS","value":"1rem"},{"isAlias":false,"name":"--space-5","presenter":"Spacing","rawValue":"1.25rem","sourceType":"CSS","value":"1.25rem"},{"isAlias":false,"name":"--space-6","presenter":"Spacing","rawValue":"1.5rem","sourceType":"CSS","value":"1.5rem"},{"isAlias":false,"name":"--space-7","presenter":"Spacing","rawValue":"1.75rem","sourceType":"CSS","value":"1.75rem"},{"isAlias":false,"name":"--space-8","presenter":"Spacing","rawValue":"2rem","sourceType":"CSS","value":"2rem"},{"isAlias":false,"name":"--space-9","presenter":"Spacing","rawValue":"2.25rem","sourceType":"CSS","value":"2.25rem"},{"isAlias":false,"name":"--space-10","presenter":"Spacing","rawValue":"2.5rem","sourceType":"CSS","value":"2.5rem"},{"isAlias":false,"name":"--space-11","presenter":"Spacing","rawValue":"2.75rem","sourceType":"CSS","value":"2.75rem"},{"isAlias":false,"name":"--space-12","presenter":"Spacing","rawValue":"3rem","sourceType":"CSS","value":"3rem"},{"isAlias":false,"name":"--space-13","presenter":"Spacing","rawValue":"3.25rem","sourceType":"CSS","value":"3.25rem"},{"isAlias":false,"name":"--space-14","presenter":"Spacing","rawValue":"3.5rem","sourceType":"CSS","value":"3.5rem"},{"isAlias":false,"name":"--space-15","presenter":"Spacing","rawValue":"3.75rem","sourceType":"CSS","value":"3.75rem"},{"isAlias":false,"name":"--space-16","presenter":"Spacing","rawValue":"4rem","sourceType":"CSS","value":"4rem"},{"isAlias":false,"name":"--space-17","presenter":"Spacing","rawValue":"4.25rem","sourceType":"CSS","value":"4.25rem"},{"isAlias":false,"name":"--space-18","presenter":"Spacing","rawValue":"4.5rem","sourceType":"CSS","value":"4.5rem"},{"isAlias":false,"name":"--space-19","presenter":"Spacing","rawValue":"4.75rem","sourceType":"CSS","value":"4.75rem"},{"isAlias":false,"name":"--space-20","presenter":"Spacing","rawValue":"5rem","sourceType":"CSS","value":"5rem"}]},{"name":"Border Radiuses","presenter":"BorderRadius","range":{"from":{"column":3,"line":113},"to":{"column":29,"line":123}},"source":"/Users/gokhanozturk/Desktop/dev/labs/rocket-ui/src/index.css","tokens":[{"isAlias":false,"name":"--border-radius","presenter":"BorderRadius","rawValue":"0.25rem","sourceType":"CSS","value":"0.25rem"},{"isAlias":false,"name":"--border-radius-1","presenter":"BorderRadius","rawValue":"0.25rem","sourceType":"CSS","value":"0.25rem"},{"isAlias":false,"name":"--border-radius-2","presenter":"BorderRadius","rawValue":"0.5rem","sourceType":"CSS","value":"0.5rem"},{"isAlias":false,"name":"--border-radius-3","presenter":"BorderRadius","rawValue":"0.75rem","sourceType":"CSS","value":"0.75rem"},{"isAlias":false,"name":"--border-radius-4","presenter":"BorderRadius","rawValue":"1rem","sourceType":"CSS","value":"1rem"},{"isAlias":false,"name":"--border-radius-5","presenter":"BorderRadius","rawValue":"1.25rem","sourceType":"CSS","value":"1.25rem"},{"isAlias":false,"name":"--border-radius-6","presenter":"BorderRadius","rawValue":"99999px","sourceType":"CSS","value":"99999px"}]}],"injectionStyles":"@keyframes spin {\n to {\n transform: rotate(-360deg);\n }\n}:root {\n --primary-50: #f2f4ff;--primary-100: #f2f3fd;--primary-200: #e4e6fb;--primary-300: #a3abf0;--primary-400: #6f7de5;--primary-500: #4c5be1;--primary-600: #3a3f9e;--primary-700: #3944a9;--primary-800: #2e3a7e;--primary-900: #2e3787;--secondary-100: #fdfae7;--secondary-200: #f9eeb5;--secondary-300: #ffec8a;--secondary-400: #ffdf3b;--secondary-500: #ebc80f;--secondary-600: #e0bc00;--secondary-700: #998100;--secondary-800: #705e00;--secondary-900: #483c00;--neutral-100: #f6f7f9;--neutral-200: #e7eaee;--neutral-300: #c3c9d5;--neutral-400: #acb4c3;--neutral-500: #818a9c;--neutral-600: #586174;--neutral-700: #3c4353;--neutral-800: #242a38;--neutral-900: #151b26;--success-100: #e8fff7;--success-200: #bfffe8;--success-300: #97ffda;--success-400: #1bf5a7;--success-500: #05cc85;--success-600: #0cbc7d;--success-700: #068e03;--success-800: #007a4f;--success-900: #005235;--info-100: #e8f4ff;--info-200: #b6dcff;--info-300: #83c3ff;--info-400: #50abff;--info-500: #0c70ce;--info-600: #0059ac;--info-700: #00488a;--info-800: #003668;--info-900: #002446;--warning-100: #fdfae7;--warning-200: #f9eeb5;--warning-300: #ffec8a;--warning-400: #ffdf3b;--warning-500: #ebc80f;--warning-600: #e0bc00;--warning-700: #998100;--warning-800: #705e00;--warning-900: #483c00;--error-100: #ffeceb;--error-200: #ffd0cc;--error-300: #ff9891;--error-400: #ff4537;--error-500: #e13023;--error-600: #bf1e12;--error-700: #9d1006;--error-800: #7b0900;--error-900: #590600;--box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);--box-shadow-hover: 0 0 10px 0 rgba(0, 0, 0, 0.2);--box-shadow-active: 0 0 10px 0 rgba(0, 0, 0, 0.3);--box-shadow-focus: 0 0 10px 0 rgba(0, 0, 0, 0.4);--box-shadow-pressed: 0 0 10px 0 rgba(0, 0, 0, 0.5);--box-shadow-pressed-active: 0 0 10px 0 rgba(0, 0, 0, 0.6);--box-shadow-pressed-focus: 0 0 10px 0 rgba(0, 0, 0, 0.7);--box-shadow-pressed-hover: 0 0 10px 0 rgba(0, 0, 0, 0.8);--space-1: 0.25rem;--space-2: 0.5rem;--space-3: 0.75rem;--space-4: 1rem;--space-5: 1.25rem;--space-6: 1.5rem;--space-7: 1.75rem;--space-8: 2rem;--space-9: 2.25rem;--space-10: 2.5rem;--space-11: 2.75rem;--space-12: 3rem;--space-13: 3.25rem;--space-14: 3.5rem;--space-15: 3.75rem;--space-16: 4rem;--space-17: 4.25rem;--space-18: 4.5rem;--space-19: 4.75rem;--space-20: 5rem;--column-gap: 1rem;--row-gap: 1rem;--border-radius: 0.25rem;--border-radius-1: 0.25rem;--border-radius-2: 0.5rem;--border-radius-3: 0.75rem;--border-radius-4: 1rem;--border-radius-5: 1.25rem;--border-radius-6: 99999px;--column-1: 1;--column-2: 2;--column-3: 3;--column-4: 4;--column-5: 5;--column-6: 6;--column-7: 7\n }"},"scssTokens":{"categories":[],"injectionStyles":":root {\n \n }"},"lessTokens":{"categories":[],"injectionStyles":":root {\n \n }"},"svgTokens":{"categories":[{"name":"SVG Icons","presenter":"Svg","tokens":[{"name":"blank-avatar","description":"","categoryName":"SVG Icons","presenter":"Svg","rawValue":"<svg width=\"27\" height=\"28\" viewBox=\"0 0 27 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M13.4993 14C17.1827 14 20.166 11.0167 20.166 7.33334C20.166 3.65 17.1827 0.666672 13.4993 0.666672C9.81602 0.666672 6.83268 3.65 6.83268 7.33334C6.83268 11.0167 9.81602 14 13.4993 14ZM13.4993 17.3333C9.04935 17.3333 0.166016 19.5667 0.166016 24V25.6667C0.166016 26.5833 0.916016 27.3333 1.83268 27.3333H25.166C26.0827 27.3333 26.8327 26.5833 26.8327 25.6667V24C26.8327 19.5667 17.9493 17.3333 13.4993 17.3333Z\" fill=\"#4C5BE1\"></path>\n</svg>","sourceType":"SVG","value":"<svg width=\"27\" height=\"28\" viewBox=\"0 0 27 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n<path d=\"M13.4993 14C17.1827 14 20.166 11.0167 20.166 7.33334C20.166 3.65 17.1827 0.666672 13.4993 0.666672C9.81602 0.666672 6.83268 3.65 6.83268 7.33334C6.83268 11.0167 9.81602 14 13.4993 14ZM13.4993 17.3333C9.04935 17.3333 0.166016 19.5667 0.166016 24V25.6667C0.166016 26.5833 0.916016 27.3333 1.83268 27.3333H25.166C26.0827 27.3333 26.8327 26.5833 26.8327 25.6667V24C26.8327 19.5667 17.9493 17.3333 13.4993 17.3333Z\" fill=\"#4C5BE1\"></path>\n</svg>"},{"name":"logo","description":"","categoryName":"SVG Icons","presenter":"Svg","rawValue":"<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 261.76 226.69\" xmlns:v=\"https://vecta.io/nano\"><path d=\"M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z\" fill=\"#41b883\"></path><path d=\"M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z\" fill=\"#34495e\"></path></svg>","sourceType":"SVG","value":"<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 261.76 226.69\" xmlns:v=\"https://vecta.io/nano\"><path d=\"M161.096.001l-30.225 52.351L100.647.001H-.005l130.877 226.688L261.749.001z\" fill=\"#41b883\"></path><path d=\"M161.096.001l-30.225 52.351L100.647.001H52.346l78.526 136.01L209.398.001z\" fill=\"#34495e\"></path></svg>"}]}]},"imageTokens":{"categories":[]}}
|
package/dist/favicon.ico
ADDED
|
Binary file
|