@zeedhi/vuetify 1.101.1 → 1.103.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/dist/zd-style.css +5 -5
- package/dist/zd-vuetify.esm.js +836 -682
- package/dist/zd-vuetify.umd.js +733 -578
- package/package.json +5 -5
- package/types/components/zd-grid/ZdGrid.d.ts +5 -2
- package/types/components/zd-grid/subcomponents/cell/ZdGridCheckbox.d.ts +0 -1
- package/types/components/zd-iterable-component-render/ZdIterableComponentRender.d.ts +1 -0
- package/types/components/zd-select/ZdSelect.d.ts +13 -0
- package/types/mixins/index.d.ts +2 -1
- package/types/mixins/themeable/Themeable.d.ts +16 -0
- package/types/components/zd-grid/ZdGridFooter.d.ts +0 -6
- package/types/components/zd-grid/ZdGridNoData.d.ts +0 -8
- package/types/components/zd-grid/ZdGridTop.d.ts +0 -6
- package/types/components/zd-iterable/ZdIterableColumnsButton.d.ts +0 -23
- package/types/components/zd-iterable/ZdIterablePageInfo.d.ts +0 -9
- package/types/components/zd-iterable/ZdIterablePageSize.d.ts +0 -20
- package/types/components/zd-iterable/ZdIterablePagination.d.ts +0 -35
- package/types/components/zd-iterable/ZdSearch.d.ts +0 -16
- package/types/utils/getIconPlugin.d.ts +0 -2
package/dist/zd-style.css
CHANGED
@@ -51,14 +51,11 @@
|
|
51
51
|
line-height: 15px;
|
52
52
|
height: auto;
|
53
53
|
font-weight: var(--zd-font-body1-weight); }
|
54
|
-
.zd-input.v-input .v-input__control > .v-input__slot input, .zd-input.v-input .v-input__control > .v-input__slot label, .zd-input.v-input .v-input__control > .v-input__slot textarea {
|
55
|
-
color:
|
56
|
-
.zd-input.v-input .v-input__control > .v-input__slot input::placeholder, .zd-input.v-input .v-input__control > .v-input__slot label::placeholder, .zd-input.v-input .v-input__control > .v-input__slot textarea::placeholder {
|
57
|
-
color: #bdbdbd; }
|
54
|
+
.zd-input.v-input .v-input__control > .v-input__slot input::placeholder, .zd-input.v-input .v-input__control > .v-input__slot label::placeholder, .zd-input.v-input .v-input__control > .v-input__slot textarea::placeholder {
|
55
|
+
color: #bdbdbd; }
|
58
56
|
.zd-input.v-input .v-input__control > .v-input__slot input, .zd-input.v-input .v-input__control > .v-input__slot textarea {
|
59
57
|
font-size: var(--zd-font-body1-size);
|
60
58
|
font-weight: var(--zd-font-body1-weight);
|
61
|
-
color: var(--zd-font-color);
|
62
59
|
cursor: text; }
|
63
60
|
.zd-input.v-input .v-input__control > .v-input__slot .v-input__icon--clear {
|
64
61
|
opacity: 0; }
|
@@ -123,6 +120,9 @@
|
|
123
120
|
.zd-input.error--text.v-input > .v-input__control > .v-input__slot {
|
124
121
|
border: solid var(--regular) var(--v-error-base); }
|
125
122
|
|
123
|
+
.zd-input.theme--light input {
|
124
|
+
color: var(--zd-font-color); }
|
125
|
+
|
126
126
|
/* Class to make inputs without label be correctly align inside forms with inputs */
|
127
127
|
.zd-form-input-align {
|
128
128
|
margin-top: var(--spacing-5) !important; }
|