quasar-ui-danx 0.2.22 → 0.2.24
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 +31 -1
- 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/helpers/index.ts +1 -1
- package/src/helpers/{http.ts → request.ts} +32 -15
- package/src/styles/index.scss +2 -0
- package/src/styles/quasar-reset.scss +28 -0
package/README.md
CHANGED
@@ -34,7 +34,37 @@
|
|
34
34
|
# Setup
|
35
35
|
|
36
36
|
```bash
|
37
|
-
|
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
|
+
}
|
38
68
|
```
|
39
69
|
|
40
70
|
# Developing
|