quasar-ui-danx 0.2.23 → 0.2.24
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +31 -2
- package/dist/danx.es.js +6377 -6303
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +5 -5
- package/dist/danx.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/config/index.ts +26 -2
- package/src/helpers/FlashMessages.ts +35 -26
- package/src/styles/index.scss +2 -0
- package/src/styles/quasar-reset.scss +28 -0
package/README.md
CHANGED
@@ -34,8 +34,37 @@
|
|
34
34
|
# Setup
|
35
35
|
|
36
36
|
```bash
|
37
|
-
|
38
|
-
|
37
|
+
yarn create vue # Follow instructions for settings up new Vue App
|
38
|
+
yarn add quasar-ui-danx quasar
|
39
|
+
yarn add -D sass vite-svg-loader tailwindcss eslint eslint-plugin-import autoprefixer
|
40
|
+
```
|
41
|
+
|
42
|
+
### Setup Tailwind
|
43
|
+
|
44
|
+
Initialize config files for tailwind
|
45
|
+
NOTE: vite will automatically pick up the postcss.config.js file, no need to manually configure anything
|
46
|
+
|
47
|
+
```
|
48
|
+
npx tailwindcss init -p
|
49
|
+
```
|
50
|
+
|
51
|
+
* Rename tailwind.config.js to tailwind.config.ts
|
52
|
+
* Setup your tailwind.config.ts:
|
53
|
+
* Make any changes to the colors object
|
54
|
+
|
55
|
+
```ts
|
56
|
+
/** @type {import('tailwindcss').Config} */
|
57
|
+
export const colors = {}
|
58
|
+
|
59
|
+
export default {
|
60
|
+
content: [],
|
61
|
+
theme: {
|
62
|
+
extend: {
|
63
|
+
colors
|
64
|
+
}
|
65
|
+
},
|
66
|
+
plugins: []
|
67
|
+
}
|
39
68
|
```
|
40
69
|
|
41
70
|
# Developing
|