@iankibetsh/shframework 5.7.5 → 5.7.6
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/dist/library.mjs.css +32 -32
- package/dist/library.js +7 -7
- package/dist/library.mjs +7 -7
- package/package.json +2 -2
|
@@ -260,38 +260,6 @@
|
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
.sh-phone{
|
|
264
|
-
display: flex;
|
|
265
|
-
width: 100%;
|
|
266
|
-
align-items: center;
|
|
267
|
-
padding: 0 0.25rem;
|
|
268
|
-
}
|
|
269
|
-
.phone-country{
|
|
270
|
-
width: 2rem;
|
|
271
|
-
border: none;
|
|
272
|
-
align-self: center;
|
|
273
|
-
outline: none !important;
|
|
274
|
-
padding: 0.4rem;
|
|
275
|
-
border-right: 1px solid #0003;
|
|
276
|
-
}
|
|
277
|
-
.phone-number{
|
|
278
|
-
width: calc(100% - 2.2rem);
|
|
279
|
-
border: none;
|
|
280
|
-
align-self: center;
|
|
281
|
-
outline: none;
|
|
282
|
-
margin-bottom: 0;
|
|
283
|
-
padding: 0.4rem;
|
|
284
|
-
}
|
|
285
|
-
.sh-phone img{
|
|
286
|
-
padding: 0.125rem;
|
|
287
|
-
width: 2rem;
|
|
288
|
-
height: 2rem;
|
|
289
|
-
}
|
|
290
|
-
.phone-number::placeholder{
|
|
291
|
-
font-weight: 300;
|
|
292
|
-
opacity: 0.5;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
263
|
.colored-toast.swal2-icon-success {
|
|
296
264
|
background-color: #a5dc86 !important;
|
|
297
265
|
}
|
|
@@ -324,6 +292,38 @@
|
|
|
324
292
|
color: white;
|
|
325
293
|
}
|
|
326
294
|
|
|
295
|
+
.sh-phone{
|
|
296
|
+
display: flex;
|
|
297
|
+
width: 100%;
|
|
298
|
+
align-items: center;
|
|
299
|
+
padding: 0 0.25rem;
|
|
300
|
+
}
|
|
301
|
+
.phone-country{
|
|
302
|
+
width: 2rem;
|
|
303
|
+
border: none;
|
|
304
|
+
align-self: center;
|
|
305
|
+
outline: none !important;
|
|
306
|
+
padding: 0.4rem;
|
|
307
|
+
border-right: 1px solid #0003;
|
|
308
|
+
}
|
|
309
|
+
.phone-number{
|
|
310
|
+
width: calc(100% - 2.2rem);
|
|
311
|
+
border: none;
|
|
312
|
+
align-self: center;
|
|
313
|
+
outline: none;
|
|
314
|
+
margin-bottom: 0;
|
|
315
|
+
padding: 0.4rem;
|
|
316
|
+
}
|
|
317
|
+
.sh-phone img{
|
|
318
|
+
padding: 0.125rem;
|
|
319
|
+
width: 2rem;
|
|
320
|
+
height: 2rem;
|
|
321
|
+
}
|
|
322
|
+
.phone-number::placeholder{
|
|
323
|
+
font-weight: 300;
|
|
324
|
+
opacity: 0.5;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
327
|
.permissions-main {
|
|
328
328
|
background: #edeff2;
|
|
329
329
|
}
|
package/dist/library.js
CHANGED
|
@@ -3114,7 +3114,7 @@ const inputModel = vue.ref(null);
|
|
|
3114
3114
|
|
|
3115
3115
|
const modelValueUpdated = (e) => {
|
|
3116
3116
|
emit('clearValidationErrors');
|
|
3117
|
-
emit('update:modelValue',inputModel);
|
|
3117
|
+
emit('update:modelValue',inputModel.value);
|
|
3118
3118
|
};
|
|
3119
3119
|
vue.onMounted(()=>{
|
|
3120
3120
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3157,7 +3157,7 @@ const inputModel = vue.ref(null);
|
|
|
3157
3157
|
|
|
3158
3158
|
const modelValueUpdated = (e) => {
|
|
3159
3159
|
emit('clearValidationErrors');
|
|
3160
|
-
emit('update:modelValue',inputModel);
|
|
3160
|
+
emit('update:modelValue',inputModel.value);
|
|
3161
3161
|
};
|
|
3162
3162
|
vue.onMounted(()=>{
|
|
3163
3163
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3199,7 +3199,7 @@ const inputModel = vue.ref(null);
|
|
|
3199
3199
|
|
|
3200
3200
|
const modelValueUpdated = (e) => {
|
|
3201
3201
|
emit('clearValidationErrors');
|
|
3202
|
-
emit('update:modelValue',inputModel);
|
|
3202
|
+
emit('update:modelValue',inputModel.value);
|
|
3203
3203
|
};
|
|
3204
3204
|
vue.onMounted(()=>{
|
|
3205
3205
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3241,7 +3241,7 @@ const inputModel = vue.ref(null);
|
|
|
3241
3241
|
|
|
3242
3242
|
const modelValueUpdated = (e) => {
|
|
3243
3243
|
emit('clearValidationErrors');
|
|
3244
|
-
emit('update:modelValue',inputModel);
|
|
3244
|
+
emit('update:modelValue',inputModel.value);
|
|
3245
3245
|
};
|
|
3246
3246
|
vue.onMounted(()=>{
|
|
3247
3247
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3284,7 +3284,7 @@ const inputModel = vue.ref(null);
|
|
|
3284
3284
|
const selectOptions = vue.ref(null);
|
|
3285
3285
|
const modelValueUpdated = (e) => {
|
|
3286
3286
|
emit('clearValidationErrors');
|
|
3287
|
-
emit('update:modelValue',inputModel);
|
|
3287
|
+
emit('update:modelValue',inputModel.value);
|
|
3288
3288
|
};
|
|
3289
3289
|
vue.onMounted(()=>{
|
|
3290
3290
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3350,7 +3350,7 @@ const inputModel = vue.ref(null);
|
|
|
3350
3350
|
|
|
3351
3351
|
const modelValueUpdated = (e) => {
|
|
3352
3352
|
emit('clearValidationErrors');
|
|
3353
|
-
emit('update:modelValue',inputModel);
|
|
3353
|
+
emit('update:modelValue',inputModel.value);
|
|
3354
3354
|
};
|
|
3355
3355
|
vue.onMounted(()=>{
|
|
3356
3356
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3386,7 +3386,7 @@ const inputModel = vue.ref(null);
|
|
|
3386
3386
|
|
|
3387
3387
|
const modelValueUpdated = (e) => {
|
|
3388
3388
|
emit('clearValidationErrors');
|
|
3389
|
-
emit('update:modelValue',inputModel);
|
|
3389
|
+
emit('update:modelValue',inputModel.value);
|
|
3390
3390
|
};
|
|
3391
3391
|
vue.onMounted(()=>{
|
|
3392
3392
|
props.modelValue && (inputModel.value = props.modelValue);
|
package/dist/library.mjs
CHANGED
|
@@ -3103,7 +3103,7 @@ const inputModel = ref(null);
|
|
|
3103
3103
|
|
|
3104
3104
|
const modelValueUpdated = (e) => {
|
|
3105
3105
|
emit('clearValidationErrors');
|
|
3106
|
-
emit('update:modelValue',inputModel);
|
|
3106
|
+
emit('update:modelValue',inputModel.value);
|
|
3107
3107
|
};
|
|
3108
3108
|
onMounted(()=>{
|
|
3109
3109
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3146,7 +3146,7 @@ const inputModel = ref(null);
|
|
|
3146
3146
|
|
|
3147
3147
|
const modelValueUpdated = (e) => {
|
|
3148
3148
|
emit('clearValidationErrors');
|
|
3149
|
-
emit('update:modelValue',inputModel);
|
|
3149
|
+
emit('update:modelValue',inputModel.value);
|
|
3150
3150
|
};
|
|
3151
3151
|
onMounted(()=>{
|
|
3152
3152
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3188,7 +3188,7 @@ const inputModel = ref(null);
|
|
|
3188
3188
|
|
|
3189
3189
|
const modelValueUpdated = (e) => {
|
|
3190
3190
|
emit('clearValidationErrors');
|
|
3191
|
-
emit('update:modelValue',inputModel);
|
|
3191
|
+
emit('update:modelValue',inputModel.value);
|
|
3192
3192
|
};
|
|
3193
3193
|
onMounted(()=>{
|
|
3194
3194
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3230,7 +3230,7 @@ const inputModel = ref(null);
|
|
|
3230
3230
|
|
|
3231
3231
|
const modelValueUpdated = (e) => {
|
|
3232
3232
|
emit('clearValidationErrors');
|
|
3233
|
-
emit('update:modelValue',inputModel);
|
|
3233
|
+
emit('update:modelValue',inputModel.value);
|
|
3234
3234
|
};
|
|
3235
3235
|
onMounted(()=>{
|
|
3236
3236
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3273,7 +3273,7 @@ const inputModel = ref(null);
|
|
|
3273
3273
|
const selectOptions = ref(null);
|
|
3274
3274
|
const modelValueUpdated = (e) => {
|
|
3275
3275
|
emit('clearValidationErrors');
|
|
3276
|
-
emit('update:modelValue',inputModel);
|
|
3276
|
+
emit('update:modelValue',inputModel.value);
|
|
3277
3277
|
};
|
|
3278
3278
|
onMounted(()=>{
|
|
3279
3279
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3339,7 +3339,7 @@ const inputModel = ref(null);
|
|
|
3339
3339
|
|
|
3340
3340
|
const modelValueUpdated = (e) => {
|
|
3341
3341
|
emit('clearValidationErrors');
|
|
3342
|
-
emit('update:modelValue',inputModel);
|
|
3342
|
+
emit('update:modelValue',inputModel.value);
|
|
3343
3343
|
};
|
|
3344
3344
|
onMounted(()=>{
|
|
3345
3345
|
props.modelValue && (inputModel.value = props.modelValue);
|
|
@@ -3375,7 +3375,7 @@ const inputModel = ref(null);
|
|
|
3375
3375
|
|
|
3376
3376
|
const modelValueUpdated = (e) => {
|
|
3377
3377
|
emit('clearValidationErrors');
|
|
3378
|
-
emit('update:modelValue',inputModel);
|
|
3378
|
+
emit('update:modelValue',inputModel.value);
|
|
3379
3379
|
};
|
|
3380
3380
|
onMounted(()=>{
|
|
3381
3381
|
props.modelValue && (inputModel.value = props.modelValue);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iankibetsh/shframework",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.6",
|
|
4
4
|
"description": "Vue library for handling laravel backend",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -59,4 +59,4 @@
|
|
|
59
59
|
"nprogress": "^0.2.0",
|
|
60
60
|
"sweetalert2": "^11"
|
|
61
61
|
}
|
|
62
|
-
}
|
|
62
|
+
}
|