@macroui/macroui 1.0.26 → 1.0.27
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/dist/macroui.css +30 -49
- package/package.json +1 -1
package/dist/macroui.css
CHANGED
|
@@ -8170,21 +8170,21 @@ to {
|
|
|
8170
8170
|
height: var(--el-component-size-default, 40px);
|
|
8171
8171
|
padding: 0 0.75rem;
|
|
8172
8172
|
border-radius: var(--el-border-radius-base, 0.5rem);
|
|
8173
|
-
border: 1px solid
|
|
8174
|
-
background-color:
|
|
8173
|
+
border: 1px solid #d1d5db;
|
|
8174
|
+
background-color: #ffffff;
|
|
8175
8175
|
transition: all 0.2s ease;
|
|
8176
|
+
box-shadow: none;
|
|
8176
8177
|
}
|
|
8177
8178
|
|
|
8178
8179
|
.el-input__wrapper:hover,
|
|
8179
8180
|
.input-wrapper:hover {
|
|
8180
|
-
border-color:
|
|
8181
|
+
border-color: #9ca3af;
|
|
8181
8182
|
}
|
|
8182
8183
|
|
|
8183
8184
|
.el-input__wrapper:focus-within,
|
|
8184
8185
|
.input-wrapper:focus-within {
|
|
8185
|
-
|
|
8186
|
-
|
|
8187
|
-
border-color: var(--daisy-primary, #4d70ff);
|
|
8186
|
+
border-color: #4d70ff;
|
|
8187
|
+
box-shadow: 0 0 0 2px rgba(77, 112, 255, 0.2);
|
|
8188
8188
|
}
|
|
8189
8189
|
|
|
8190
8190
|
/* Input inner */
|
|
@@ -8198,13 +8198,12 @@ to {
|
|
|
8198
8198
|
background: transparent;
|
|
8199
8199
|
font-size: var(--el-font-size-base, 14px);
|
|
8200
8200
|
font-family: inherit;
|
|
8201
|
-
color:
|
|
8201
|
+
color: #1f2937;
|
|
8202
8202
|
}
|
|
8203
8203
|
|
|
8204
8204
|
.el-input__inner::placeholder,
|
|
8205
8205
|
.input::placeholder {
|
|
8206
|
-
color:
|
|
8207
|
-
opacity: 0.5;
|
|
8206
|
+
color: #9ca3af;
|
|
8208
8207
|
}
|
|
8209
8208
|
|
|
8210
8209
|
.el-input__inner:disabled,
|
|
@@ -8220,8 +8219,7 @@ to {
|
|
|
8220
8219
|
.input-suffix {
|
|
8221
8220
|
display: inline-flex;
|
|
8222
8221
|
align-items: center;
|
|
8223
|
-
color:
|
|
8224
|
-
opacity: 0.6;
|
|
8222
|
+
color: #6b7280;
|
|
8225
8223
|
flex-shrink: 0;
|
|
8226
8224
|
}
|
|
8227
8225
|
|
|
@@ -8237,8 +8235,7 @@ to {
|
|
|
8237
8235
|
.input-prefix-inner {
|
|
8238
8236
|
display: inline-flex;
|
|
8239
8237
|
align-items: center;
|
|
8240
|
-
color:
|
|
8241
|
-
opacity: 0.6;
|
|
8238
|
+
color: #6b7280;
|
|
8242
8239
|
flex-shrink: 0;
|
|
8243
8240
|
margin-right: 0.5rem;
|
|
8244
8241
|
}
|
|
@@ -8283,27 +8280,15 @@ to {
|
|
|
8283
8280
|
|
|
8284
8281
|
.el-input.is-disabled .el-input__wrapper,
|
|
8285
8282
|
.el-input.is-disabled .input-wrapper {
|
|
8286
|
-
background-color:
|
|
8287
|
-
border-color:
|
|
8283
|
+
background-color: #f3f4f6;
|
|
8284
|
+
border-color: #e5e7eb;
|
|
8288
8285
|
opacity: 0.6;
|
|
8289
8286
|
}
|
|
8290
8287
|
|
|
8291
8288
|
.el-input.is-focus .el-input__wrapper,
|
|
8292
8289
|
.el-input.is-focus .input-wrapper {
|
|
8293
|
-
border-color:
|
|
8294
|
-
|
|
8295
|
-
outline-offset: 2px;
|
|
8296
|
-
}
|
|
8297
|
-
|
|
8298
|
-
/* With prefix/suffix */
|
|
8299
|
-
.el-input__wrapper:has(.el-input__prefix),
|
|
8300
|
-
.input-wrapper:has(.input-prefix) {
|
|
8301
|
-
padding-left: 0;
|
|
8302
|
-
}
|
|
8303
|
-
|
|
8304
|
-
.el-input__wrapper:has(.el-input__suffix),
|
|
8305
|
-
.input-wrapper:has(.input-suffix) {
|
|
8306
|
-
padding-right: 0;
|
|
8290
|
+
border-color: #4d70ff;
|
|
8291
|
+
box-shadow: 0 0 0 2px rgba(77, 112, 255, 0.2);
|
|
8307
8292
|
}
|
|
8308
8293
|
|
|
8309
8294
|
/* ============================================
|
|
@@ -8322,11 +8307,11 @@ textarea.input {
|
|
|
8322
8307
|
min-height: 80px;
|
|
8323
8308
|
padding: 0.5rem 0.75rem;
|
|
8324
8309
|
border-radius: var(--el-border-radius-base, 0.5rem);
|
|
8325
|
-
border: 1px solid
|
|
8326
|
-
background-color:
|
|
8310
|
+
border: 1px solid #d1d5db;
|
|
8311
|
+
background-color: #ffffff;
|
|
8327
8312
|
font-size: var(--el-font-size-base, 14px);
|
|
8328
8313
|
font-family: inherit;
|
|
8329
|
-
color:
|
|
8314
|
+
color: #1f2937;
|
|
8330
8315
|
resize: vertical;
|
|
8331
8316
|
outline: none;
|
|
8332
8317
|
transition: all 0.2s ease;
|
|
@@ -8334,19 +8319,18 @@ textarea.input {
|
|
|
8334
8319
|
|
|
8335
8320
|
.el-textarea__inner:hover,
|
|
8336
8321
|
textarea.input:hover {
|
|
8337
|
-
border-color:
|
|
8322
|
+
border-color: #9ca3af;
|
|
8338
8323
|
}
|
|
8339
8324
|
|
|
8340
8325
|
.el-textarea__inner:focus,
|
|
8341
8326
|
textarea.input:focus {
|
|
8342
|
-
|
|
8343
|
-
|
|
8344
|
-
border-color: var(--daisy-primary, #4d70ff);
|
|
8327
|
+
border-color: #4d70ff;
|
|
8328
|
+
box-shadow: 0 0 0 2px rgba(77, 112, 255, 0.2);
|
|
8345
8329
|
}
|
|
8346
8330
|
|
|
8347
8331
|
.el-textarea__inner:disabled,
|
|
8348
8332
|
textarea.input:disabled {
|
|
8349
|
-
background-color:
|
|
8333
|
+
background-color: #f3f4f6;
|
|
8350
8334
|
opacity: 0.6;
|
|
8351
8335
|
cursor: not-allowed;
|
|
8352
8336
|
resize: none;
|
|
@@ -8367,9 +8351,9 @@ textarea.input:disabled {
|
|
|
8367
8351
|
display: flex;
|
|
8368
8352
|
align-items: center;
|
|
8369
8353
|
padding: 0 0.75rem;
|
|
8370
|
-
background-color:
|
|
8371
|
-
border: 1px solid
|
|
8372
|
-
color:
|
|
8354
|
+
background-color: #f3f4f6;
|
|
8355
|
+
border: 1px solid #d1d5db;
|
|
8356
|
+
color: #1f2937;
|
|
8373
8357
|
font-size: var(--el-font-size-base, 14px);
|
|
8374
8358
|
}
|
|
8375
8359
|
|
|
@@ -8405,8 +8389,7 @@ textarea.input:disabled {
|
|
|
8405
8389
|
right: 0.5rem;
|
|
8406
8390
|
bottom: 0.25rem;
|
|
8407
8391
|
font-size: var(--el-font-size-small, 12px);
|
|
8408
|
-
color:
|
|
8409
|
-
opacity: 0.6;
|
|
8392
|
+
color: #6b7280;
|
|
8410
8393
|
}
|
|
8411
8394
|
|
|
8412
8395
|
.el-input.is-count-up .el-input__wrapper {
|
|
@@ -8419,8 +8402,7 @@ textarea.input:disabled {
|
|
|
8419
8402
|
right: 0.5rem;
|
|
8420
8403
|
bottom: 0.25rem;
|
|
8421
8404
|
font-size: var(--el-font-size-small, 12px);
|
|
8422
|
-
color:
|
|
8423
|
-
opacity: 0.6;
|
|
8405
|
+
color: #6b7280;
|
|
8424
8406
|
}
|
|
8425
8407
|
|
|
8426
8408
|
/* Input Group Addon (prefix/suffix) */
|
|
@@ -8428,9 +8410,9 @@ textarea.input:disabled {
|
|
|
8428
8410
|
display: flex;
|
|
8429
8411
|
align-items: center;
|
|
8430
8412
|
padding: 0 0.75rem;
|
|
8431
|
-
background-color:
|
|
8432
|
-
border: 1px solid
|
|
8433
|
-
color:
|
|
8413
|
+
background-color: #f3f4f6;
|
|
8414
|
+
border: 1px solid #d1d5db;
|
|
8415
|
+
color: #1f2937;
|
|
8434
8416
|
font-size: var(--el-font-size-base, 14px);
|
|
8435
8417
|
border-radius: var(--el-border-radius-base, 0.5rem);
|
|
8436
8418
|
}
|
|
@@ -8448,8 +8430,7 @@ textarea.input:disabled {
|
|
|
8448
8430
|
display: inline-flex;
|
|
8449
8431
|
align-items: center;
|
|
8450
8432
|
margin-left: 0.5rem;
|
|
8451
|
-
}
|
|
8452
|
-
/* ============================================
|
|
8433
|
+
}/* ============================================
|
|
8453
8434
|
Element Plus Dialog - DaisyUI Style
|
|
8454
8435
|
============================================ */
|
|
8455
8436
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@macroui/macroui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.27",
|
|
4
4
|
"description": "Element Plus compatible component library with DaisyUI visual styling. 100% API compatible with Element Plus, featuring 85+ components and 67 languages.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|