Merge pull request #20009 from terabytesoftw/fix-maskedinputasset

Fix `MaskedInputAsset::class`.
This commit is contained in:
Bizley
2023-10-16 15:03:53 +02:00
committed by GitHub
3 changed files with 5 additions and 5 deletions

View File

@ -76,8 +76,8 @@
"ezyang/htmlpurifier": "^4.6", "ezyang/htmlpurifier": "^4.6",
"cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0", "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
"bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable", "bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
"bower-asset/inputmask": "~3.2.2 | ~3.3.5 | ~5.0.8 ", "bower-asset/inputmask": "^5.0.8 ",
"bower-asset/punycode": "1.3.* | 2.2.*", "bower-asset/punycode": "^2.2",
"bower-asset/yii2-pjax": "~2.0.1", "bower-asset/yii2-pjax": "~2.0.1",
"paragonie/random_compat": ">=1" "paragonie/random_compat": ">=1"
}, },

View File

@ -71,8 +71,8 @@
"ezyang/htmlpurifier": "^4.6", "ezyang/htmlpurifier": "^4.6",
"cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0", "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
"bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable", "bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
"bower-asset/inputmask": "~3.2.2 | ~3.3.5 | ~5.0.8 ", "bower-asset/inputmask": "^5.0.8 ",
"bower-asset/punycode": "1.3.* | 2.2.*", "bower-asset/punycode": "^2.2",
"bower-asset/yii2-pjax": "~2.0.1", "bower-asset/yii2-pjax": "~2.0.1",
"paragonie/random_compat": ">=1" "paragonie/random_compat": ">=1"
}, },

View File

@ -21,7 +21,7 @@ class MaskedInputAsset extends AssetBundle
{ {
public $sourcePath = '@bower/inputmask/dist'; public $sourcePath = '@bower/inputmask/dist';
public $js = [ public $js = [
'jquery.inputmask.bundle.js', 'jquery.inputmask.js',
]; ];
public $depends = [ public $depends = [
'yii\web\YiiAsset', 'yii\web\YiiAsset',