35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head lang="en">
|
|
<title>Increment Counter Settings</title>
|
|
<meta charset="utf-8" />
|
|
<script src="https://sdpi-components.dev/releases/v3/sdpi-components.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<!--
|
|
Learn more about property inspector components at https://sdpi-components.dev/docs/components
|
|
-->
|
|
<sdpi-item label="Profile Name">
|
|
<sdpi-select setting="profileName"
|
|
datasource="getProfiles"
|
|
show-refresh="true"
|
|
placeholder="Select a ClipTrim page"></sdpi-select>
|
|
</sdpi-item>
|
|
<sdpi-item label="Base Path">
|
|
<sdpi-file setting="basePath"
|
|
global="true"
|
|
webkitdirectory
|
|
directory
|
|
multiple></sdpi-file>
|
|
</sdpi-item>
|
|
<sdpi-item label="Output Device">
|
|
<sdpi-select setting="outputDevice"
|
|
global="true"
|
|
datasource="getOutputDevices"
|
|
show-refresh="true"
|
|
placeholder="Select an Ouput Device"></sdpi-select>
|
|
</sdpi-item>
|
|
</body>
|
|
</html>
|