@iankibetsh/shframework 0.5.8 → 0.5.9
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/library.js +1 -5
- package/dist/library.mjs +1 -5
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -2013,7 +2013,6 @@ var script$6 = {
|
|
|
2013
2013
|
const datePickers = ['free_tier_days', 'recurring_date', 'date', 'paid_at'];
|
|
2014
2014
|
let realEditors = ['html_content', 'listing_description', 'mail', 'comment'];
|
|
2015
2015
|
const mapLocations = ['building_location'];
|
|
2016
|
-
const files = ['file', 'logo'];
|
|
2017
2016
|
const phones = ['phone'];
|
|
2018
2017
|
if (this.selectData[field]) {
|
|
2019
2018
|
return 'select'
|
|
@@ -2024,9 +2023,6 @@ var script$6 = {
|
|
|
2024
2023
|
if (field.includes('password')) {
|
|
2025
2024
|
return 'password'
|
|
2026
2025
|
}
|
|
2027
|
-
if (field.includes('file')) {
|
|
2028
|
-
return 'file'
|
|
2029
|
-
}
|
|
2030
2026
|
if (textareas.includes(field)) {
|
|
2031
2027
|
return 'textarea'
|
|
2032
2028
|
}
|
|
@@ -2049,7 +2045,7 @@ var script$6 = {
|
|
|
2049
2045
|
if (selects.includes(field)) {
|
|
2050
2046
|
return 'select'
|
|
2051
2047
|
}
|
|
2052
|
-
if (files.includes(field)) {
|
|
2048
|
+
if (typeof this.files === 'array' && this.files.includes(field)) {
|
|
2053
2049
|
return 'file'
|
|
2054
2050
|
}
|
|
2055
2051
|
return 'text'
|
package/dist/library.mjs
CHANGED
|
@@ -2001,7 +2001,6 @@ var script$6 = {
|
|
|
2001
2001
|
const datePickers = ['free_tier_days', 'recurring_date', 'date', 'paid_at'];
|
|
2002
2002
|
let realEditors = ['html_content', 'listing_description', 'mail', 'comment'];
|
|
2003
2003
|
const mapLocations = ['building_location'];
|
|
2004
|
-
const files = ['file', 'logo'];
|
|
2005
2004
|
const phones = ['phone'];
|
|
2006
2005
|
if (this.selectData[field]) {
|
|
2007
2006
|
return 'select'
|
|
@@ -2012,9 +2011,6 @@ var script$6 = {
|
|
|
2012
2011
|
if (field.includes('password')) {
|
|
2013
2012
|
return 'password'
|
|
2014
2013
|
}
|
|
2015
|
-
if (field.includes('file')) {
|
|
2016
|
-
return 'file'
|
|
2017
|
-
}
|
|
2018
2014
|
if (textareas.includes(field)) {
|
|
2019
2015
|
return 'textarea'
|
|
2020
2016
|
}
|
|
@@ -2037,7 +2033,7 @@ var script$6 = {
|
|
|
2037
2033
|
if (selects.includes(field)) {
|
|
2038
2034
|
return 'select'
|
|
2039
2035
|
}
|
|
2040
|
-
if (files.includes(field)) {
|
|
2036
|
+
if (typeof this.files === 'array' && this.files.includes(field)) {
|
|
2041
2037
|
return 'file'
|
|
2042
2038
|
}
|
|
2043
2039
|
return 'text'
|