##  **New Features**
### Features on Plateau Studio
- **Create UI with AI (Beta)** is now available in Plateau Studio.
We have integrated a brand‑new **Create UI with AI** feature into Plateau Studio to streamline and accelerate the development of UI pages.
**Where to find it**
- In the Studio toolbar (bottom‑left), click Add New → New UI Page with AI.
<img src="https://stechq.github.io/cdn/release/notes/plateau-studio/plateau-web/release-notes/v3.0.32/NewUIPageWithAI.png" />
- Or from the Explorer pane (bottom), hit the gradient Try New AI Feature button.
<img src="https://stechq.github.io/cdn/release/notes/plateau-studio/plateau-web/release-notes/v3.0.32/TryNewAIFeatureButton.png" />
- **Container Services File and Component List** files now open in JavaScript (JS) format with IntelliSense support. If there are any errors in these files, saving will be disabled until the issues are resolved.
### Features on UI
- **options: { skipIfParentInvisible?: boolean }** parameter added to the **Validate() and ValidateAll()** methods. If **skipIfParentInvisible is set to true**, validation checks will be skipped for inputComponents whose parent components are not visible.
```js
let result = quick.Quick.validate("myCard", false, false, { skipIfParentInvisible: false });
let result = quick.Quick.validateAll(false, false, { skipIfParentInvisible: false });
```
- **xReverse and yReverse props** added to the **LineChart and BarChart** components to reverse the scale.
##  **Bug Fixes**
### Fixes on Plateau Studio
- Resolved an issue where the save button **remained disabled** even when a **save page operation failed**. Enhanced error handling ensures that the button state accurately reflects the outcome of save and update actions.
### Fixes on UI
- Memory accumulation from previous pages during page transitions has been largely prevented. *The enhancements* in **memory management** have contributed to a **more efficient** operation of the application.
- Due to an issue experienced during page transitions in the shell application, adjustments were made to **CSS loading**.
- Resolved an issue where searches in the **Settings tab** on editor returned **no results due to typos**.
- The QR code output generated by the **QrCode** component aligned with standardized formatting to ensure visual consistency.
- The **alignment problem** in the **Items Per Page menu** of the **Datatable** component in **Projects under the shell** has resolved. This shifting can be eliminated by creating an **AttachMenu probe** with the **div ID information** of the shell that causes the shifting in the **ComponentList** file.
### Fixes on Style Editor & Component Styles
- **Fixed** the issue where the **disabled values set externally** for the component **not reflected in the style disabled values**.
<img src="https://stechq.github.io/cdn/release/notes/plateau-studio/plateau-web/release-notes/v3.0.32/disable_enable.gif" width="640" />
- By changing the **Border Radius style value** in **Input Components** *( Autocomplete, Select, Combobox, Textfield, FileInput, Textarea, PhoneInput, InlineDatePicker, InlineTimePicker )*, **inputPadding** fields are now working together. In this way, the **border will work more harmoniously** with **the floating label** seen when the **Input Components are active**.
<img src="https://stechq.github.io/cdn/release/notes/plateau-studio/plateau-web/release-notes/v3.0.32/legend_margin_left.gif" width="640" />