ekm-ui 0.4.72 → 0.4.73

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 (36) hide show
  1. package/.turbo/turbo-build.log +59 -59
  2. package/CHANGELOG.md +6 -0
  3. package/dist/card-payment-block.css +1 -1
  4. package/dist/card-payment-block.css.map +1 -1
  5. package/dist/card-payment-block.js +2 -2
  6. package/dist/{chunk-ZRMNYAO7.js → chunk-GOW54NGZ.js} +2 -2
  7. package/dist/{chunk-ZNWAFIZY.js → chunk-PSYIXRU7.js} +2 -2
  8. package/dist/{chunk-ZNWAFIZY.js.map → chunk-PSYIXRU7.js.map} +1 -1
  9. package/dist/country-picker/country-modal.css +1 -1
  10. package/dist/country-picker/country-modal.css.map +1 -1
  11. package/dist/country-picker/country-modal.js +2 -2
  12. package/dist/drag-and-drop.css +1 -1
  13. package/dist/drag-and-drop.css.map +1 -1
  14. package/dist/drag-and-drop.js +2 -2
  15. package/dist/file-picker/file-picker.css +1 -1
  16. package/dist/file-picker/file-picker.css.map +1 -1
  17. package/dist/file-picker/file-picker.js +2 -2
  18. package/dist/index.css +1 -1
  19. package/dist/index.css.map +1 -1
  20. package/dist/index.js +2 -2
  21. package/dist/layout/layout.css +1 -1
  22. package/dist/layout/layout.css.map +1 -1
  23. package/dist/layout/layout.js +2 -2
  24. package/dist/product-picker/product-modal.css +1 -1
  25. package/dist/product-picker/product-modal.css.map +1 -1
  26. package/dist/product-picker/product-modal.js +2 -2
  27. package/dist/search/search.js +1 -1
  28. package/dist/stacked-list-item.css +1 -1
  29. package/dist/stacked-list-item.css.map +1 -1
  30. package/dist/stacked-list-item.js +2 -2
  31. package/dist/table-result-block.css +1 -1
  32. package/dist/table-result-block.css.map +1 -1
  33. package/dist/table-result-block.js +2 -2
  34. package/package.json +1 -1
  35. package/src/search/search.tsx +1 -1
  36. /package/dist/{chunk-ZRMNYAO7.js.map → chunk-GOW54NGZ.js.map} +0 -0
@@ -1,11 +1,11 @@
1
- export { e as TableResultBlock } from './chunk-ZRMNYAO7.js';
1
+ export { e as TableResultBlock } from './chunk-GOW54NGZ.js';
2
2
  import './chunk-NF5KDPMG.js';
3
3
  import './chunk-YZ2YZSNQ.js';
4
4
  import './chunk-GVNUAH45.js';
5
5
  import './chunk-JAR3LP2K.js';
6
6
  import './chunk-FOWKHGHJ.js';
7
7
  import './chunk-22RUXGYW.js';
8
- import './chunk-ZNWAFIZY.js';
8
+ import './chunk-PSYIXRU7.js';
9
9
  import './chunk-HVNLAQA6.js';
10
10
  import './chunk-HW7AZG2V.js';
11
11
  import './chunk-AN66H4D6.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ekm-ui",
3
- "version": "0.4.72",
3
+ "version": "0.4.73",
4
4
  "sideEffects": [
5
5
  "**/*.css"
6
6
  ],
@@ -174,7 +174,7 @@ export const Search = forwardRef(function Search(
174
174
  onKeyDown={handleKeyDown}
175
175
  disabled={disabled}
176
176
  id={`${id}-search-input`}
177
- className={`block w-full rounded-lg border border-gray-300 border-r-gray-300 text-sm text-gray-900 focus:border-blue-500 focus:ring-blue-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-blue-500 ${showSearchIcon ? 'pl-2 lg:pl-10 pr-2 py-2 bg-white' : 'p-2 bg-gray-50'}`}
177
+ className={`block w-full rounded-lg border border-gray-300 border-r-gray-300 text-sm text-gray-900 focus:border-blue-500 focus:ring-blue-500 dark:border-gray-600 dark:bg-gray-700 dark:text-white dark:placeholder-gray-400 dark:focus:border-blue-500 ${showSearchIcon ? 'pl-[8px] lg:pl-10 pr-2 py-2 bg-white' : 'p-2 bg-gray-50'}`}
178
178
  />
179
179
  {categories?.length > 0 && renderDropdown()}
180
180
  </div>