ublo-lib 1.38.44 → 1.39.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/market-place/components/instant-search/google-results.d.ts +9 -0
- package/es/market-place/components/instant-search/google-results.d.ts.map +1 -0
- package/es/market-place/components/instant-search/google-results.js +24 -0
- package/es/market-place/components/instant-search/google-results.module.css +109 -0
- package/es/market-place/components/instant-search/hooks/use-constant.d.ts +2 -0
- package/es/market-place/components/instant-search/hooks/use-constant.d.ts.map +1 -0
- package/es/market-place/components/instant-search/hooks/use-constant.js +8 -0
- package/es/market-place/components/instant-search/hooks/use-debounced-search.d.ts +7 -0
- package/es/market-place/components/instant-search/hooks/use-debounced-search.d.ts.map +1 -0
- package/es/market-place/components/instant-search/hooks/use-debounced-search.js +11 -0
- package/es/market-place/components/instant-search/hooks/use-google-search.d.ts +7 -0
- package/es/market-place/components/instant-search/hooks/use-google-search.d.ts.map +1 -0
- package/es/market-place/components/instant-search/hooks/use-google-search.js +7 -0
- package/es/market-place/components/instant-search/hooks/use-search.d.ts +17 -0
- package/es/market-place/components/instant-search/hooks/use-search.d.ts.map +1 -0
- package/es/market-place/components/instant-search/hooks/use-search.js +10 -0
- package/es/market-place/components/instant-search/i18n.json +67 -0
- package/es/market-place/components/instant-search/index.d.ts +3 -0
- package/es/market-place/components/instant-search/index.d.ts.map +1 -0
- package/es/market-place/components/instant-search/index.js +2 -0
- package/es/market-place/components/instant-search/instant-search.d.ts +14 -0
- package/es/market-place/components/instant-search/instant-search.d.ts.map +1 -0
- package/es/market-place/components/instant-search/instant-search.js +66 -0
- package/es/market-place/components/instant-search/instant-search.module.css +16 -0
- package/es/market-place/components/instant-search/links.d.ts +11 -0
- package/es/market-place/components/instant-search/links.d.ts.map +1 -0
- package/es/market-place/components/instant-search/links.js +31 -0
- package/es/market-place/components/instant-search/links.module.css +97 -0
- package/es/market-place/components/instant-search/no-product.d.ts +6 -0
- package/es/market-place/components/instant-search/no-product.d.ts.map +1 -0
- package/es/market-place/components/instant-search/no-product.js +4 -0
- package/es/market-place/components/instant-search/products.d.ts +13 -0
- package/es/market-place/components/instant-search/products.d.ts.map +1 -0
- package/es/market-place/components/instant-search/products.js +54 -0
- package/es/market-place/components/instant-search/products.module.css +169 -0
- package/es/market-place/components/instant-search/results.d.ts +20 -0
- package/es/market-place/components/instant-search/results.d.ts.map +1 -0
- package/es/market-place/components/instant-search/results.js +47 -0
- package/es/market-place/components/instant-search/results.module.css +95 -0
- package/es/market-place/components/instant-search/search-input.d.ts +15 -0
- package/es/market-place/components/instant-search/search-input.d.ts.map +1 -0
- package/es/market-place/components/instant-search/search-input.js +56 -0
- package/es/market-place/components/instant-search/search-input.module.css +87 -0
- package/es/market-place/components/instant-search/services/api.d.ts +17 -0
- package/es/market-place/components/instant-search/services/api.d.ts.map +1 -0
- package/es/market-place/components/instant-search/services/api.js +24 -0
- package/es/market-place/components/instant-search/services/messages.d.ts +2 -0
- package/es/market-place/components/instant-search/services/messages.d.ts.map +1 -0
- package/es/market-place/components/instant-search/services/messages.js +5 -0
- package/es/market-place/components/instant-search/services/utils.d.ts +4 -0
- package/es/market-place/components/instant-search/services/utils.d.ts.map +1 -0
- package/es/market-place/components/instant-search/services/utils.js +44 -0
- package/package.json +1 -1