daisyui 1.15.0 → 1.16.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/CHANGELOG.md +8 -0
- package/README.md +1 -1
- package/colors/themes.js +34 -0
- package/dist/full.css +2 -2
- package/dist/styled.css +1 -1
- package/dist/styled.js +1 -1
- package/dist/styled.rtl.js +1 -1
- package/dist/themes.css +1 -1
- package/dist/unstyled.css +1 -1
- package/dist/unstyled.js +1 -1
- package/dist/unstyled.rtl.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [1.16.0](https://github.com/saadeghi/daisyui/compare/v1.15.0...v1.16.0) (2021-10-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* Add `cmyk` theme, fix: [#203](https://github.com/saadeghi/daisyui/issues/203) ([9a230b5](https://github.com/saadeghi/daisyui/commit/9a230b5541d43610f3b2dc87a8f1ab82b075c5c7))
|
|
11
|
+
* Add `steps-vertical`, fix [#192](https://github.com/saadeghi/daisyui/issues/192) ([c851160](https://github.com/saadeghi/daisyui/commit/c8511600e14feeecf880def1e76cec82bfbcc8bb))
|
|
12
|
+
|
|
5
13
|
## [1.15.0](https://github.com/saadeghi/daisyui/compare/v1.14.7...v1.15.0) (2021-10-23)
|
|
6
14
|
|
|
7
15
|
|
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ Loading CSS files from CDN is not recommended for production. It's better to ins
|
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
```html
|
|
82
|
-
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.
|
|
82
|
+
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.15.0/dist/full.css" rel="stylesheet" type="text/css" />
|
|
83
83
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2/dist/tailwind.min.css" rel="stylesheet" type="text/css" />
|
|
84
84
|
```
|
|
85
85
|
|
package/colors/themes.js
CHANGED
|
@@ -101,6 +101,40 @@ module.exports = {
|
|
|
101
101
|
"--tab-border": "1px",
|
|
102
102
|
"--tab-radius": "0.5rem",
|
|
103
103
|
},
|
|
104
|
+
"[data-theme=cmyk]": {
|
|
105
|
+
'primary': '#45AEEE',
|
|
106
|
+
'primary-focus': '#3d9bd6',
|
|
107
|
+
'primary-content': '#000000',
|
|
108
|
+
'secondary': '#E8488A',
|
|
109
|
+
'secondary-focus': '#ce407b',
|
|
110
|
+
'secondary-content': '#000000',
|
|
111
|
+
'accent': '#FFF232',
|
|
112
|
+
'accent-focus': '#ddd12c',
|
|
113
|
+
'accent-content': '#000000',
|
|
114
|
+
'neutral': '#1a1a1a',
|
|
115
|
+
'neutral-focus': '#000000',
|
|
116
|
+
'neutral-content': '#ffffff',
|
|
117
|
+
'base-100': '#ffffff',
|
|
118
|
+
'base-200': '#f5f5f5',
|
|
119
|
+
'base-300': '#ebebeb',
|
|
120
|
+
'base-content': '#000000',
|
|
121
|
+
'info': '#4AA8C0',
|
|
122
|
+
'success': '#823290',
|
|
123
|
+
'warning': '#EE8133',
|
|
124
|
+
'error': '#E93F33',
|
|
125
|
+
"--border-color": "var(--b3)",
|
|
126
|
+
"--rounded-box": "1rem",
|
|
127
|
+
"--rounded-btn": "0.5rem",
|
|
128
|
+
"--rounded-badge": "1.9rem",
|
|
129
|
+
"--animation-btn": "0.25s",
|
|
130
|
+
"--animation-input": ".2s",
|
|
131
|
+
"--btn-text-case": "uppercase",
|
|
132
|
+
"--btn-focus-scale": "0.95",
|
|
133
|
+
"--navbar-padding": ".5rem",
|
|
134
|
+
"--border-btn": "1px",
|
|
135
|
+
"--tab-border": "1px",
|
|
136
|
+
"--tab-radius": "0.5rem",
|
|
137
|
+
},
|
|
104
138
|
"[data-theme=corporate]": {
|
|
105
139
|
"primary": "#4b6bfb",
|
|
106
140
|
"primary-focus": "#1942fa",
|