/******/ (function() { // webpackBootstrap /******/ "use strict"; /******/ var __webpack_modules__ = ({ /***/ "@reduxjs/toolkit": /*!****************************************************!*\ !*** external ["elementorVendors","reduxToolkit"] ***! \****************************************************/ /***/ (function(module) { module.exports = window["elementorVendors"]["reduxToolkit"]; /***/ }), /***/ "react-redux": /*!**************************************************!*\ !*** external ["elementorVendors","reactRedux"] ***! \**************************************************/ /***/ (function(module) { module.exports = window["elementorVendors"]["reactRedux"]; /***/ }) /******/ }); /************************************************************************/ /******/ // The module cache /******/ var __webpack_module_cache__ = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ var cachedModule = __webpack_module_cache__[moduleId]; /******/ if (cachedModule !== undefined) { /******/ return cachedModule.exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = __webpack_module_cache__[moduleId] = { /******/ // no module.id needed /******/ // no module.loaded needed /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /************************************************************************/ /******/ /* webpack/runtime/compat get default export */ /******/ !function() { /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function() { return module['default']; } : /******/ function() { return module; }; /******/ __webpack_require__.d(getter, { a: getter }); /******/ return getter; /******/ }; /******/ }(); /******/ /******/ /* webpack/runtime/define property getters */ /******/ !function() { /******/ // define getter functions for harmony exports /******/ __webpack_require__.d = function(exports, definition) { /******/ for(var key in definition) { /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); /******/ } /******/ } /******/ }; /******/ }(); /******/ /******/ /* webpack/runtime/hasOwnProperty shorthand */ /******/ !function() { /******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); } /******/ }(); /******/ /******/ /* webpack/runtime/make namespace object */ /******/ !function() { /******/ // define __esModule on exports /******/ __webpack_require__.r = function(exports) { /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ }(); /******/ /************************************************************************/ var __webpack_exports__ = {}; // This entry needs to be wrapped in an IIFE because it needs to be isolated against other modules in the chunk. !function() { /*!***************************************************!*\ !*** ./packages/packages/libs/store/src/index.ts ***! \***************************************************/ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ __StoreProvider: function() { return /* reexport safe */ react_redux__WEBPACK_IMPORTED_MODULE_1__.Provider; }, /* harmony export */ __addMiddleware: function() { return /* binding */ addMiddleware; }, /* harmony export */ __createAction: function() { return /* reexport safe */ _reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_0__.createAction; }, /* harmony export */ __createAsyncThunk: function() { return /* reexport safe */ _reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_0__.createAsyncThunk; }, /* harmony export */ __createSelector: function() { return /* reexport safe */ _reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_0__.createSelector; }, /* harmony export */ __createSlice: function() { return /* reexport safe */ _reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_0__.createSlice; }, /* harmony export */ __createStore: function() { return /* binding */ createStore; }, /* harmony export */ __deleteStore: function() { return /* binding */ deleteStore; }, /* harmony export */ __dispatch: function() { return /* binding */ dispatch; }, /* harmony export */ __getState: function() { return /* binding */ getState; }, /* harmony export */ __getStore: function() { return /* binding */ getStore; }, /* harmony export */ __registerSlice: function() { return /* binding */ registerSlice; }, /* harmony export */ __subscribe: function() { return /* binding */ subscribe; }, /* harmony export */ __subscribeWithSelector: function() { return /* binding */ subscribeWithSelector; }, /* harmony export */ __useDispatch: function() { return /* reexport safe */ react_redux__WEBPACK_IMPORTED_MODULE_1__.useDispatch; }, /* harmony export */ __useSelector: function() { return /* reexport safe */ react_redux__WEBPACK_IMPORTED_MODULE_1__.useSelector; } /* harmony export */ }); /* harmony import */ var _reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @reduxjs/toolkit */ "@reduxjs/toolkit"); /* harmony import */ var _reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_0__); /* harmony import */ var react_redux__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react-redux */ "react-redux"); /* harmony import */ var react_redux__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react_redux__WEBPACK_IMPORTED_MODULE_1__); /** * Usage: * * const mySlice = addSlice( ... ); * * type MySliceState = SliceState; * * const value = useSelector( ( state: MySliceState ) => state.mySlice.value ); */ // The `configureStore` function from Redux Toolkit infers its actions from the `reducers` // key of the initialization object. This is fine when creating the store statically, but // breaks in our case since we create the store dynamically, which means that TypeScript // can't infer the types. Therefore, we force the store to accept any actions using a // generic store type. // eslint-disable-next-line @typescript-eslint/no-explicit-any let instance = null; let slices = {}; const pendingActions = []; const middlewares = new Set(); const getReducers = () => { const reducers = Object.entries(slices).reduce((reducersData, [name, slice]) => { reducersData[name] = slice.reducer; return reducersData; }, {}); return (0,_reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_0__.combineReducers)(reducers); }; function registerSlice(slice) { if (slices[slice.name]) { throw new Error(`Slice with name "${slice.name}" already exists.`); } slices[slice.name] = slice; } const addMiddleware = middleware => { middlewares.add(middleware); }; // eslint-disable-next-line @typescript-eslint/no-explicit-any -- See the comment above about `AnyStore` const dispatch = action => { if (!instance) { pendingActions.push(action); return; } return instance.dispatch(action); }; const getState = () => { if (!instance) { throw new Error('The store instance does not exist.'); } return instance.getState(); }; const subscribe = listener => { if (!instance) { throw new Error('The store instance does not exist.'); } return instance.subscribe(listener); }; // eslint-disable-next-line @typescript-eslint/no-explicit-any const subscribeWithSelector = (selector, listener) => { let prevState = selector(getState()); return subscribe(() => { const nextState = selector(getState()); if (prevState === nextState) { return; } prevState = nextState; listener(nextState); }); }; const createStore = () => { if (instance) { throw new Error('The store instance already exists.'); } instance = (0,_reduxjs_toolkit__WEBPACK_IMPORTED_MODULE_0__.configureStore)({ reducer: getReducers(), middleware: getDefaultMiddleware => { return [...getDefaultMiddleware(), ...Array.from(middlewares)]; } }); if (pendingActions.length) { pendingActions.forEach(action => dispatch(action)); pendingActions.length = 0; } return instance; }; const getStore = () => { return instance; }; const deleteStore = () => { instance = null; slices = {}; pendingActions.length = 0; middlewares.clear(); }; }(); (window.elementorV2 = window.elementorV2 || {}).store = __webpack_exports__; /******/ })() ; window.elementorV2.store?.init?.(); //# sourceMappingURL=store.js.mapPremium Shop – Parquet Flooring Dubai https://parquetflooringdubai.ae Fri, 12 Sep 2025 10:32:34 +0000 en-US hourly 1 https://wordpress.org/?v=7.1.1 https://parquetflooringdubai.ae/wp-content/uploads/2026/01/Parquet-Flooring-Dubai.png Shop – Parquet Flooring Dubai https://parquetflooringdubai.ae 32 32 Metz Oak -D3766 https://parquetflooringdubai.ae/product/metz-oak-d3766-2/ https://parquetflooringdubai.ae/product/metz-oak-d3766-2/#respond Fri, 12 Sep 2025 10:32:33 +0000 https://parquetflooringdubai.ae/?post_type=product&p=2902 Metz Oak - D3766 Flooring adds a classic and stylish look to any room. The natural oak texture makes it suitable for both modern and traditional interiors, while its strong surface ensures long-lasting use. It is easy to clean and maintain, making it a smart choice for busy homes and offices.

Features:

  • Classic oak design with natural texture

  • Strong and durable surface for daily use

  • Easy to clean and maintain

  • Great for homes, offices, and commercial spaces

  • Quick and smooth installation

]]>
Metz Oak – D3766 Flooring adds a classic and stylish look to any room. The natural oak texture makes it suitable for both modern and traditional interiors, while its strong surface ensures long-lasting use. It is easy to clean and maintain, making it a smart choice for busy homes and offices.

Features:

  • Classic oak design with natural texture

  • Strong and durable surface for daily use

  • Easy to clean and maintain

  • Great for homes, offices, and commercial spaces

  • Quick and smooth installation

]]>
https://parquetflooringdubai.ae/product/metz-oak-d3766-2/feed/ 0
Atlas Oak Coffee https://parquetflooringdubai.ae/product/atlas-oak-coffee/ https://parquetflooringdubai.ae/product/atlas-oak-coffee/#respond Mon, 10 Feb 2025 09:09:19 +0000 https://parquetflooringdubai.ae/?post_type=product&p=3931 This flooring has a water-resistant surface that helps protect against moisture, making it ideal for bathrooms, kitchens, and other damp areas. To keep your floor fully safe, all edges and joints should be properly sealed. We recommend using one of the Water Protection Sealant products from Parquet Flooring Dubai to give extra protection. Remember, standing water should not stay on the floor for more than 24 hours, as long exposure can still cause damage over time.

Features:

  • Water-resistant surface for moisture protection

  • Best for wet or humid rooms like kitchens and bathrooms

  • Requires sealing of edges and joints

  • Use Parquet Flooring Dubai’s Water Protection Sealant

  • Avoid leaving standing water for over 24 hours

]]>
This flooring has a water-resistant surface that helps protect against moisture, making it ideal for bathrooms, kitchens, and other damp areas. To keep your floor fully safe, all edges and joints should be properly sealed. We recommend using one of the Water Protection Sealant products from Parquet Flooring Dubai to give extra protection. Remember, standing water should not stay on the floor for more than 24 hours, as long exposure can still cause damage over time.

Features:

  • Water-resistant surface for moisture protection

  • Best for wet or humid rooms like kitchens and bathrooms

  • Requires sealing of edges and joints

  • Use Parquet Flooring Dubai’s Water Protection Sealant

  • Avoid leaving standing water for over 24 hours

]]>
https://parquetflooringdubai.ae/product/atlas-oak-coffee/feed/ 0
Harbour Oak https://parquetflooringdubai.ae/product/harbour-oak/ https://parquetflooringdubai.ae/product/harbour-oak/#respond Mon, 10 Feb 2025 09:08:31 +0000 https://parquetflooringdubai.ae/?post_type=product&p=3929 This Harbour Oak  floor looks just like real oak wood with a textured surface and 4-sided V-grooves for a natural finish. It is easy to clean, affordable, and built to handle heavy foot traffic, making it a great choice for busy homes or commercial spaces. The 12mm thickness and AC5 rating ensure long-lasting durability. Made from eco-friendly materials and featuring an anti-bacterial coating, this flooring adds warmth and style to any room. For the best comfort and sound, we recommend using a 1–3mm underlay.

Features:

  • Realistic oak wood look with 4-sided V-grooves

  • Durable 12mm thickness with AC5 rating

  • Eco-friendly and anti-bacterial surface

  • Easy to clean and maintain

  • Best used with 1–3mm underlay

  • Available at Parquet Flooring Dubai

]]>
This Harbour Oak  floor looks just like real oak wood with a textured surface and 4-sided V-grooves for a natural finish. It is easy to clean, affordable, and built to handle heavy foot traffic, making it a great choice for busy homes or commercial spaces. The 12mm thickness and AC5 rating ensure long-lasting durability. Made from eco-friendly materials and featuring an anti-bacterial coating, this flooring adds warmth and style to any room. For the best comfort and sound, we recommend using a 1–3mm underlay.

Features:

  • Realistic oak wood look with 4-sided V-grooves

  • Durable 12mm thickness with AC5 rating

  • Eco-friendly and anti-bacterial surface

  • Easy to clean and maintain

  • Best used with 1–3mm underlay

  • Available at Parquet Flooring Dubai

 

]]>
https://parquetflooringdubai.ae/product/harbour-oak/feed/ 0
Premium Oak Nature https://parquetflooringdubai.ae/product/premium-oak-nature/ https://parquetflooringdubai.ae/product/premium-oak-nature/#respond Mon, 10 Feb 2025 09:07:50 +0000 https://parquetflooringdubai.ae/?post_type=product&p=3927 This Premium Oak Nature  flooring from the ROBUSTO range offers a natural oak look with a warm mid-brown color. Made by the trusted German-Swiss brand KRONOTEX, these 12mm thick boards have an AC5 rating, meaning they are very strong and perfect for busy homes or businesses. The 4-sided bevel edges create a realistic wood floor appearance. The flooring is designed to resist heavy foot traffic, spills, and wear. It uses an easy “Clic” system for quick installation. Available at Parquet Flooring Dubai, this durable laminate keeps its beauty for years.

Features:

  • Natural oak wood look with 4-sided bevel edges

  • 12mm thick with AC5 durability rating

  • Strong and resistant to heavy use and spills

  • Easy “Clic” installation system

  • Suitable for homes, offices, cafés, salons

  • Available at Parquet Flooring Dubai

]]>
This Premium Oak Nature  flooring from the ROBUSTO range offers a natural oak look with a warm mid-brown color. Made by the trusted German-Swiss brand KRONOTEX, these 12mm thick boards have an AC5 rating, meaning they are very strong and perfect for busy homes or businesses. The 4-sided bevel edges create a realistic wood floor appearance. The flooring is designed to resist heavy foot traffic, spills, and wear. It uses an easy “Clic” system for quick installation. Available at Parquet Flooring Dubai, this durable laminate keeps its beauty for years.

Features:

  • Natural oak wood look with 4-sided bevel edges

  • 12mm thick with AC5 durability rating

  • Strong and resistant to heavy use and spills

  • Easy “Clic” installation system

  • Suitable for homes, offices, cafés, salons

]]> https://parquetflooringdubai.ae/product/premium-oak-nature/feed/ 0 Rip Oak White https://parquetflooringdubai.ae/product/rip-oak-white/ https://parquetflooringdubai.ae/product/rip-oak-white/#respond Mon, 10 Feb 2025 09:07:06 +0000 https://parquetflooringdubai.ae/?post_type=product&p=3925 Rip Oak White Flooring gives your space a clean, bright, and modern wood look. Its light oak design adds a fresh feel to any room—whether it’s your home or a business. The strong build makes it perfect for busy areas, and it’s easy to clean and install. With 4V bevel edges and a natural texture, it looks just like real wood.

Features:

  • Light oak design with white wood finish

  • Looks like real wood with 4V bevel edges

  • Durable and easy to maintain

  • Simple “Clic” system for fast installation

  • Great for homes, offices, and shops

  • Available at Parquet Flooring Dubai

]]> Rip Oak White Flooring gives your space a clean, bright, and modern wood look. Its light oak design adds a fresh feel to any room—whether it’s your home or a business. The strong build makes it perfect for busy areas, and it’s easy to clean and install. With 4V bevel edges and a natural texture, it looks just like real wood.

Features:

  • Light oak design with white wood finish

  • Looks like real wood with 4V bevel edges

  • Durable and easy to maintain

  • Simple “Clic” system for fast installation

  • Great for homes, offices, and shops

]]>
https://parquetflooringdubai.ae/product/rip-oak-white/feed/ 0
Rip Oak https://parquetflooringdubai.ae/product/rip-oak/ https://parquetflooringdubai.ae/product/rip-oak/#respond Mon, 10 Feb 2025 09:05:39 +0000 https://parquetflooringdubai.ae/?post_type=product&p=3923 Rip Oak Flooring gives your room a warm and natural wood look. Its smooth surface and oak-style design make it a great choice for both homes and businesses. The floor is strong, easy to clean, and perfect for areas with lots of foot traffic. With a simple click-lock system, it’s also quick to install. You can find this durable and stylish flooring at Parquet Flooring Dubai.

Features:

  • Natural oak wood look with smooth finish

  • Strong and made for busy areas

  • Easy to clean and maintain

  • Quick click-lock installation system

  • Great for homes, offices, and shops

  • Available at Parquet Flooring Dubai

]]>
Rip Oak Flooring gives your room a warm and natural wood look. Its smooth surface and oak-style design make it a great choice for both homes and businesses. The floor is strong, easy to clean, and perfect for areas with lots of foot traffic. With a simple click-lock system, it’s also quick to install.

Features:

  • Natural oak wood look with smooth finish

  • Strong and made for busy areas

  • Easy to clean and maintain

  • Quick click-lock installation system

  • Great for homes, offices, and shops

]]> https://parquetflooringdubai.ae/product/rip-oak/feed/ 0 Timeless Oak https://parquetflooringdubai.ae/product/timeless-oak/ https://parquetflooringdubai.ae/product/timeless-oak/#respond Mon, 10 Feb 2025 09:04:40 +0000 https://parquetflooringdubai.ae/?post_type=product&p=3921 Timeless Oak Flooring brings a classic and warm oak wood look to any room. Its natural grain design and smooth finish add charm to both homes and offices. Made to handle daily use, it’s strong, easy to clean, and simple to install with a click-lock system. Whether for a modern or traditional space, this flooring fits perfectly.

Features:

  • Natural oak wood look with timeless design

  • Durable surface for daily foot traffic

  • Smooth finish, easy to clean

  • Click-lock system for quick installation

  • Great for homes, offices, and shops

]]> Timeless Oak Flooring brings a classic and warm oak wood look to any room. Its natural grain design and smooth finish add charm to both homes and offices. Made to handle daily use, it’s strong, easy to clean, and simple to install with a click-lock system. Whether for a modern or traditional space, this flooring fits perfectly.

Features:

  • Natural oak wood look with timeless design

  • Durable surface for daily foot traffic

  • Smooth finish, easy to clean

  • Click-lock system for quick installation

  • Great for homes, offices, and shops

]]>
https://parquetflooringdubai.ae/product/timeless-oak/feed/ 0
3D Hollow Grey https://parquetflooringdubai.ae/product/3d-hollow-grey/ https://parquetflooringdubai.ae/product/3d-hollow-grey/#respond Mon, 10 Feb 2025 06:01:57 +0000 https://parquetflooringdubai.ae/?post_type=product&p=3877 3D Hollow Grey Flooring adds a modern and stylish look to any space with its unique 3D texture and sleek grey color. It is designed to be strong and durable, making it perfect for homes, offices, and shops. The flooring is easy to clean and maintain, and the click-lock system makes installation quick and simple. This flooring combines beauty with practicality, giving your space a fresh and contemporary feel. Available at Parquet Flooring Dubai.

Features:

  • Modern 3D texture with stylish grey finish

  • Durable and strong for everyday use

  • Easy to clean and maintain

  • Quick and simple click-lock installation

  • Suitable for homes, offices, and commercial spaces

  • Available at Parquet Flooring Dubai

]]>
3D Hollow Grey Flooring adds a modern and stylish look to any space with its unique 3D texture and sleek grey color. It is designed to be strong and durable, making it perfect for homes, offices, and shops. The flooring is easy to clean and maintain, and the click-lock system makes installation quick and simple.

  • Modern 3D texture with stylish grey finish

  • Durable and strong for everyday use

  • Easy to clean and maintain

  • Quick and simple click-lock installation

  • Suitable for homes, offices, and commercial spaces

]]>
https://parquetflooringdubai.ae/product/3d-hollow-grey/feed/ 0
Acacia Golden Oak https://parquetflooringdubai.ae/product/acacia-golden-oak/ https://parquetflooringdubai.ae/product/acacia-golden-oak/#respond Mon, 10 Feb 2025 05:42:38 +0000 https://parquetflooringdubai.ae/?post_type=product&p=3871 Acacia Golden Oak Flooring offers a warm and rich wood look with its golden oak finish. Its natural texture and strong build make it perfect for both homes and commercial spaces. The flooring is easy to clean, durable, and designed for heavy foot traffic. Installation is quick and simple thanks to the click-lock system.

Features:

  • Warm golden oak wood look with natural texture

  • Durable and strong for busy areas

  • Easy to clean and maintain

  • Quick click-lock installation system

  • Suitable for homes, offices, and shops

]]>
Acacia Golden Oak Flooring offers a warm and rich wood look with its golden oak finish. Its natural texture and strong build make it perfect for both homes and commercial spaces. The flooring is easy to clean, durable, and designed for heavy foot traffic. Installation is quick and simple thanks to the click-lock system.

Features:

  • Warm golden oak wood look with natural texture

  • Durable and strong for busy areas

  • Easy to clean and maintain

  • Quick click-lock installation system

  • Suitable for homes, offices, and shops

]]>
https://parquetflooringdubai.ae/product/acacia-golden-oak/feed/ 0
Acacia GV 06 Brown https://parquetflooringdubai.ae/product/acacia-gv-06-brown/ https://parquetflooringdubai.ae/product/acacia-gv-06-brown/#respond Mon, 10 Feb 2025 05:41:31 +0000 https://parquetflooringdubai.ae/?post_type=product&p=3869 Acacia GV 06 Brown Flooring gives your space a rich, deep brown wood look that feels warm and inviting. It is strong, durable, and made to last in both homes and busy commercial places. The surface is easy to clean and designed to resist wear and tear. Thanks to the click-lock system, installing this flooring is quick and simple. You can find this stylish and long-lasting flooring at Parquet Flooring Dubai.

Features:

  • Deep brown oak wood look with natural texture

  • Strong and durable for heavy use

  • Easy to clean and maintain

  • Quick and simple click-lock installation

  • Perfect for homes, offices, and shop

]]>
Acacia GV 06 Brown Flooring gives your space a rich, deep brown wood look that feels warm and inviting. It is strong, durable, and made to last in both homes and busy commercial places. The surface is easy to clean and designed to resist wear and tear. Thanks to the click-lock system, installing this flooring is quick and simple.

Features:

  • Deep brown oak wood look with natural texture

  • Strong and durable for heavy use

  • Easy to clean and maintain

  • Quick and simple click-lock installation

  • Perfect for homes, offices, and shops

  • Available at Parquet Flooring Dubai

]]>
https://parquetflooringdubai.ae/product/acacia-gv-06-brown/feed/ 0