@mythpe/quasar-ui-qui 0.1.23 → 0.1.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mythpe/quasar-ui-qui",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -131,7 +131,8 @@ defineOptions({
131
131
  dense: !0,
132
132
  borderless: !0,
133
133
  outlined: !1,
134
- stackLabel: !0
134
+ stackLabel: !0,
135
+ hideBottomSpace: !0
135
136
  }"
136
137
  >
137
138
  <q-checkbox
@@ -144,11 +145,17 @@ defineOptions({
144
145
  modelValue: value,
145
146
  disable: viewMode === !0 ? !0 : disable,
146
147
  autocomplete: getAutocompleteAttribute || undefined,
147
- label: undefined
148
+ label: undefined,
149
+ val,
150
+ trueValue,
151
+ falseValue
148
152
  }"
149
153
  v-on="listeners"
150
154
  >
151
- <template #default>
155
+ <template
156
+ v-if="!!getLabel || !help"
157
+ #default
158
+ >
152
159
  <MRow class="items-center">
153
160
  <div
154
161
  v-if="!!getLabel"
@@ -1,6 +1,6 @@
1
- @use "quasar/src/css/variables" as q
1
+ //@use "quasar/src/css/variables" as q
2
2
 
3
- $m--container-padding: q.$space-base !default
3
+ $m--container-padding: $space-base !default
4
4
  $m--container-fluid-width: 1440px !default
5
5
 
6
6
  .m--container
@@ -1,5 +1,5 @@
1
1
  @use 'sass:map'
2
- @use "quasar/src/css/variables" as q
2
+ //@use "quasar/src/css/variables" as q
3
3
 
4
4
  $m--row-margin-top: 1rem !default
5
5
  $m--input-helpers-margin: 5px !default
@@ -66,7 +66,6 @@ $breaks: ('inside', 'after', 'before')
66
66
  .break-#{$break}-always
67
67
  page-break-#{$break}: always
68
68
 
69
-
70
69
  $maxes: ('width', 'height') !default
71
70
  @each $max in $maxes
72
71
  .max-#{$max}
@@ -75,10 +74,11 @@ $maxes: ('width', 'height') !default
75
74
  $alignsX: ('top', 'bottom') !default
76
75
  $alignsY: ('left', 'right') !default
77
76
  $radius-class-name: 'border-rounded' !default
78
- $radius-value: q.$generic-border-radius !default
77
+ //$radius-value: q.$generic-border-radius !default
78
+ $radius-value: $generic-border-radius !default
79
79
  $bordered-class-name: 'bordered' !default
80
80
  $bordered-size: 1px !default
81
- $bordered-style: $bordered-size solid q.$primary !default
81
+ $bordered-style: $bordered-size solid $primary !default
82
82
 
83
83
 
84
84
  .#{$radius-class-name}
@@ -115,7 +115,6 @@ $bordered-style: $bordered-size solid q.$primary !default
115
115
  white-space-collapse: preserve-breaks
116
116
  white-space: pre-line
117
117
 
118
-
119
118
  pre
120
119
  max-width: 100%
121
120
 
@@ -123,10 +122,11 @@ pre
123
122
  > .q-field
124
123
  &:not(.q-field--disabled)
125
124
  .q-field__label::after
126
- color: q.$negative
125
+ //color: q.$negative
126
+ color: $negative
127
127
 
128
128
  .m--input__top-label__content
129
- color: q.$negative
129
+ color: $negative
130
130
 
131
131
 
132
132
  [data-input-name].m--input__required
@@ -138,10 +138,12 @@ pre
138
138
 
139
139
  .m--input__top-label__content::after
140
140
  content: ' *'
141
- color: q.$red
141
+ //color: q.$red
142
+ color: $red
142
143
 
143
144
  .m--input__color-preview
144
- border: 1px solid q.$primary
145
+ //border: 1px solid q.$primary
146
+ border: 1px solid $primary
145
147
  border-radius: $radius-value
146
148
 
147
149