awing-library 2.1.94-beta → 2.1.95-beta

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.
@@ -92,6 +92,7 @@ var Infomation = function () {
92
92
  fieldName: 'name',
93
93
  type: 'text',
94
94
  label: t('Campaign.Name'),
95
+ pattern: false,
95
96
  required: true,
96
97
  },
97
98
  ];
@@ -117,7 +117,7 @@ function attributesValid(value) {
117
117
  exports.attributesValid = attributesValid;
118
118
  function tabInfomationValid(campaign, campaignAttributes) {
119
119
  return (directoryValid(campaign.directoryId) &&
120
- (0, validation_1.textValidation)(campaign.name, 200).valid &&
120
+ (0, validation_1.textValidation)(campaign.name, 200, true, false).valid &&
121
121
  attributesValid(campaignAttributes));
122
122
  }
123
123
  exports.tabInfomationValid = tabInfomationValid;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awing-library",
3
- "version": "2.1.94-beta",
3
+ "version": "2.1.95-beta",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",