@1money/component-ui 0.0.60-alpha.2 → 0.0.61-alpha.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/es/business/Select/Country/SelectCountry.d.ts +2 -0
- package/es/business/Select/Country/SelectCountry.js +87 -0
- package/es/business/Select/Country/index.d.ts +2 -0
- package/es/business/Select/Country/index.js +3 -0
- package/es/business/Select/Country/interface.d.ts +29 -0
- package/es/business/Select/Country/interface.js +2 -0
- package/es/business/Select/index.d.ts +1 -0
- package/es/business/Select/index.js +2 -0
- package/es/business/index.d.ts +1 -0
- package/es/business/index.js +2 -0
- package/es/index.css +1 -1
- package/lib/business/Select/Country/SelectCountry.d.ts +2 -0
- package/lib/business/Select/Country/SelectCountry.js +94 -0
- package/lib/business/Select/Country/index.d.ts +2 -0
- package/lib/business/Select/Country/index.js +28 -0
- package/lib/business/Select/Country/interface.d.ts +29 -0
- package/lib/business/Select/Country/interface.js +6 -0
- package/lib/business/Select/index.d.ts +1 -0
- package/lib/business/Select/index.js +17 -0
- package/lib/business/index.d.ts +1 -0
- package/lib/business/index.js +17 -0
- package/lib/index.css +1 -1
- package/package.json +17 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1money/component-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.61-alpha.0",
|
|
4
4
|
"description": "React Components based on primereact for 1money front-end projects",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -264,6 +264,21 @@
|
|
|
264
264
|
"types": "./es/components/VirtualList/index.d.ts",
|
|
265
265
|
"import": "./es/components/VirtualList/index.js",
|
|
266
266
|
"require": "./lib/components/VirtualList/index.js"
|
|
267
|
+
},
|
|
268
|
+
"./business": {
|
|
269
|
+
"types": "./es/business/index.d.ts",
|
|
270
|
+
"import": "./es/business/index.js",
|
|
271
|
+
"require": "./lib/business/index.js"
|
|
272
|
+
},
|
|
273
|
+
"./business/Select": {
|
|
274
|
+
"types": "./es/business/Select/index.d.ts",
|
|
275
|
+
"import": "./es/business/Select/index.js",
|
|
276
|
+
"require": "./lib/business/Select/index.js"
|
|
277
|
+
},
|
|
278
|
+
"./business/Select/Country": {
|
|
279
|
+
"types": "./es/business/Select/Country/index.d.ts",
|
|
280
|
+
"import": "./es/business/Select/Country/index.js",
|
|
281
|
+
"require": "./lib/business/Select/Country/index.js"
|
|
267
282
|
}
|
|
268
283
|
},
|
|
269
284
|
"scripts": {
|
|
@@ -389,6 +404,7 @@
|
|
|
389
404
|
"eslint-plugin-prettier": "~5.2.6",
|
|
390
405
|
"eslint-plugin-react": "~7.37.5",
|
|
391
406
|
"eslint-plugin-storybook": "^0.8.0",
|
|
407
|
+
"flag-icons": "^7.5.0",
|
|
392
408
|
"globals": "^15.15.0",
|
|
393
409
|
"gulp": "4.0.2",
|
|
394
410
|
"gulp-autoprefixer": "9.0.0",
|