@firedesktop/react-base 1.74.0 → 1.75.0
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/utils/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import * as Configuration from './configuration';
|
|
|
3
3
|
import CurrencyUtiles from './CurrencyUtiles';
|
|
4
4
|
import DateUtils from './DateUtils';
|
|
5
5
|
import FileUtils from './FileUtils';
|
|
6
|
+
import RegExValidation from './RegExValidation';
|
|
6
7
|
import UrlUtils from './UrlUtils';
|
|
7
8
|
import * as Labels from './labels';
|
|
8
|
-
export { Configuration, CurrencyUtiles, DateUtils, Fetch, FileUtils, Labels, UrlUtils };
|
|
9
|
+
export { Configuration, CurrencyUtiles, DateUtils, Fetch, FileUtils, Labels, RegExValidation, UrlUtils };
|
package/dist/utils/index.js
CHANGED
|
@@ -3,7 +3,8 @@ import * as Configuration from './configuration';
|
|
|
3
3
|
import CurrencyUtiles from './CurrencyUtiles';
|
|
4
4
|
import DateUtils from './DateUtils';
|
|
5
5
|
import FileUtils from './FileUtils';
|
|
6
|
+
import RegExValidation from './RegExValidation';
|
|
6
7
|
import UrlUtils from './UrlUtils';
|
|
7
8
|
import * as Labels from './labels';
|
|
8
|
-
export { Configuration, CurrencyUtiles, DateUtils, Fetch, FileUtils, Labels, UrlUtils };
|
|
9
|
+
export { Configuration, CurrencyUtiles, DateUtils, Fetch, FileUtils, Labels, RegExValidation, UrlUtils };
|
|
9
10
|
//# sourceMappingURL=index.js.map
|
package/dist/utils/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/lib/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,aAAa,MAAM,iBAAiB,CAAC;AACjD,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,SAAS,MAAM,aAAa,CAAC;AACpC,OAAO,SAAS,MAAM,aAAa,CAAC;AACpC,OAAO,QAAQ,MAAM,YAAY,CAAC;AAElC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AAEnC,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/lib/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,aAAa,MAAM,iBAAiB,CAAC;AACjD,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAC9C,OAAO,SAAS,MAAM,aAAa,CAAC;AACpC,OAAO,SAAS,MAAM,aAAa,CAAC;AACpC,OAAO,eAAe,MAAM,mBAAmB,CAAC;AAChD,OAAO,QAAQ,MAAM,YAAY,CAAC;AAElC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AAEnC,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,eAAe,EAAE,QAAQ,EAAE,CAAC"}
|
package/package.json
CHANGED
package/src/lib/utils/index.ts
CHANGED
|
@@ -3,8 +3,9 @@ import * as Configuration from './configuration';
|
|
|
3
3
|
import CurrencyUtiles from './CurrencyUtiles';
|
|
4
4
|
import DateUtils from './DateUtils';
|
|
5
5
|
import FileUtils from './FileUtils';
|
|
6
|
+
import RegExValidation from './RegExValidation';
|
|
6
7
|
import UrlUtils from './UrlUtils';
|
|
7
8
|
|
|
8
9
|
import * as Labels from './labels';
|
|
9
10
|
|
|
10
|
-
export { Configuration, CurrencyUtiles, DateUtils, Fetch, FileUtils, Labels, UrlUtils };
|
|
11
|
+
export { Configuration, CurrencyUtiles, DateUtils, Fetch, FileUtils, Labels, RegExValidation, UrlUtils };
|