openstack-uicore-foundation 4.0.16 → 4.0.19

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.
Files changed (63) hide show
  1. package/babel.config.json +1 -5
  2. package/lib/components/ajaxloader.js +1 -1
  3. package/lib/components/attendance-tracker.js +1 -1
  4. package/lib/components/circle-button.js +1 -1
  5. package/lib/components/clock.js +1 -1
  6. package/lib/components/exclusive-wrapper.js +1 -1
  7. package/lib/components/extra-questions.js +1 -1
  8. package/lib/components/form-validation.js +1 -1
  9. package/lib/components/forms/rsvp-form.js +1 -1
  10. package/lib/components/forms/simple-form.js +1 -1
  11. package/lib/components/free-text-search.js +1 -1
  12. package/lib/components/google-map.js +1 -1
  13. package/lib/components/index.js +1 -1
  14. package/lib/components/inputs/access-levels-input.js +1 -1
  15. package/lib/components/inputs/action-dropdown.js +1 -1
  16. package/lib/components/inputs/checkbox-list.js +1 -1
  17. package/lib/components/inputs/company-input.js +1 -1
  18. package/lib/components/inputs/country-dropdown.js +1 -1
  19. package/lib/components/inputs/country-input.js +1 -1
  20. package/lib/components/inputs/datetimepicker.js +1 -1
  21. package/lib/components/inputs/dropdown.js +1 -1
  22. package/lib/components/inputs/editor-input.js +1 -1
  23. package/lib/components/inputs/event-input.js +1 -1
  24. package/lib/components/inputs/free-multi-text-input.js +1 -1
  25. package/lib/components/inputs/group-input.js +1 -1
  26. package/lib/components/inputs/grouped-dropdown.js +1 -1
  27. package/lib/components/inputs/language-input.js +1 -1
  28. package/lib/components/inputs/member-input.js +1 -1
  29. package/lib/components/inputs/organization-input.js +1 -1
  30. package/lib/components/inputs/radio-list.js +1 -1
  31. package/lib/components/inputs/registration-company-input.js +1 -1
  32. package/lib/components/inputs/speaker-input.js +1 -1
  33. package/lib/components/inputs/sponsor-input.js +1 -1
  34. package/lib/components/inputs/summit-input.js +1 -1
  35. package/lib/components/inputs/tag-input.js +1 -1
  36. package/lib/components/inputs/text-input.js +1 -1
  37. package/lib/components/inputs/textarea-input.js +1 -1
  38. package/lib/components/inputs/ticket-types-input.js +1 -1
  39. package/lib/components/inputs/upload-input-v2.js +1 -1
  40. package/lib/components/inputs/upload-input.js +1 -1
  41. package/lib/components/raw-html.js +1 -1
  42. package/lib/components/sections/panel.js +1 -1
  43. package/lib/components/simple-link-list.js +1 -1
  44. package/lib/components/summit-dropdown.js +1 -1
  45. package/lib/components/table-editable.js +1 -1
  46. package/lib/components/table-selectable.js +1 -1
  47. package/lib/components/table-sortable.js +1 -1
  48. package/lib/components/table.js +1 -1
  49. package/lib/components/video-stream.js +1 -1
  50. package/lib/i18n.js +1 -1
  51. package/lib/security/abstract-auth-callback-route.js +1 -1
  52. package/lib/security/actions.js +1 -1
  53. package/lib/security/methods.js +1 -1
  54. package/lib/security/reducers.js +1 -1
  55. package/lib/security/session-checker.js +1 -1
  56. package/lib/utils/actions.js +1 -1
  57. package/lib/utils/fragment-parser.js +1 -1
  58. package/lib/utils/methods.js +1 -1
  59. package/lib/utils/query-actions.js +1 -1
  60. package/lib/utils/questions-set.js +1 -1
  61. package/lib/utils/reducers.js +1 -1
  62. package/lib/utils/use-fit-text.js +1 -1
  63. package/package.json +4 -4
package/package.json CHANGED
@@ -1,15 +1,14 @@
1
1
  {
2
2
  "name": "openstack-uicore-foundation",
3
- "version": "4.0.16",
3
+ "version": "4.0.19",
4
4
  "description": "ui reactjs components for openstack marketing site",
5
5
  "main": "lib/openstack-uicore-foundation.js",
6
6
  "scripts": {
7
+ "clean": "cd ./lib && rm -R * & find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' + && yarn install",
7
8
  "build-dev": "./node_modules/.bin/webpack --config webpack.dev.js",
8
9
  "build": "./node_modules/.bin/webpack --config webpack.prod.js",
9
- "clean": "cd ./lib && rm -R *",
10
10
  "test": "jest"
11
11
  },
12
- "author": "smarcet@gmail.com",
13
12
  "license": "APACHE 2.0",
14
13
  "devDependencies": {
15
14
  "@babel/core": "^7.17.8",
@@ -23,7 +22,6 @@
23
22
  "babel-cli": "^6.26.0",
24
23
  "babel-jest": "^28.1.0",
25
24
  "babel-loader": "^8.2.4",
26
- "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
27
25
  "browser-tabs-lock": "^1.2.15",
28
26
  "buffer": "^6.0.3",
29
27
  "crypto-js": "^4.1.1",
@@ -31,6 +29,7 @@
31
29
  "dropzone": "5.7.2",
32
30
  "extend": "^3.0.1",
33
31
  "file-loader": "^6.2.0",
32
+ "final-form": "^4.20.7",
34
33
  "font-awesome": "^4.7.0",
35
34
  "history": "^4.7.2",
36
35
  "i18n-react": "^0.6.4",
@@ -86,6 +85,7 @@
86
85
  "crypto-js": "^4.1.1",
87
86
  "dropzone": "^5.7.2",
88
87
  "extend": "^3.0.1",
88
+ "final-form": "^4.20.7",
89
89
  "font-awesome": "^4.7.0",
90
90
  "history": "^4.7.2",
91
91
  "i18n-react": "^0.6.4",