obsidian-dev-utils 17.10.2-beta.4 → 17.10.2-beta.5
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/CHANGELOG.md +4 -0
- package/dist/lib/Library.cjs +2 -2
- package/dist/lib/Library.mjs +2 -2
- package/dist/styles.css +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/lib/Library.cjs
CHANGED
@@ -30,9 +30,9 @@ __export(Library_exports, {
|
|
30
30
|
LIBRARY_VERSION: () => LIBRARY_VERSION
|
31
31
|
});
|
32
32
|
module.exports = __toCommonJS(Library_exports);
|
33
|
-
const LIBRARY_VERSION = "17.10.2-beta.
|
33
|
+
const LIBRARY_VERSION = "17.10.2-beta.5";
|
34
34
|
const LIBRARY_NAME = "obsidian-dev-utils";
|
35
|
-
const LIBRARY_STYLES = ".obsidian-dev-utils :invalid {\n box-shadow: 0 0 0 2px var(--text-error);\n}\n\
|
35
|
+
const LIBRARY_STYLES = ".obsidian-dev-utils :invalid {\n box-shadow: 0 0 0 2px var(--text-error);\n}\n\n.obsidian-dev-utils.multiple-dropdown-component select,\n.obsidian-dev-utils.multiple-dropdown-component .dropdown {\n height: auto;\n}\n";
|
36
36
|
// Annotate the CommonJS export names for ESM import in node:
|
37
37
|
0 && (module.exports = {
|
38
38
|
LIBRARY_NAME,
|
package/dist/lib/Library.mjs
CHANGED
@@ -5,9 +5,9 @@ if you want to view the source, please visit the github repository of this plugi
|
|
5
5
|
|
6
6
|
(function init(){const globalThisRecord=globalThis;globalThisRecord["__name"]??=name;if(!require.__isPatched){const originalRequire=require;require=Object.assign(id=>requirePatched(id,originalRequire),originalRequire,{__isPatched:true})}const newFuncs={__extractDefault:__name(()=>extractDefault,"__extractDefault"),process:__name(()=>({browser:true,cwd:__name(()=>"/","cwd"),env:{},platform:"android"}),"process")};for(const key of Object.keys(newFuncs)){globalThisRecord[key]??=newFuncs[key]?.()}function name(obj){return obj}__name(name,"name");function extractDefault(module){return module&&module.__esModule&&module.default?module.default:module}__name(extractDefault,"extractDefault");function requirePatched(id,originalRequire){const module=originalRequire(id);if(module){return extractDefault(module)}if(id==="process"||id==="node:process"){console.error(`Module not found: ${id}. Fake process object is returned instead.`);return globalThis.process}console.error(`Module not found: ${id}. Empty object is returned instead.`);return{}}__name(requirePatched,"requirePatched")})();
|
7
7
|
|
8
|
-
const LIBRARY_VERSION = "17.10.2-beta.
|
8
|
+
const LIBRARY_VERSION = "17.10.2-beta.5";
|
9
9
|
const LIBRARY_NAME = "obsidian-dev-utils";
|
10
|
-
const LIBRARY_STYLES = ".obsidian-dev-utils :invalid {\n box-shadow: 0 0 0 2px var(--text-error);\n}\n\
|
10
|
+
const LIBRARY_STYLES = ".obsidian-dev-utils :invalid {\n box-shadow: 0 0 0 2px var(--text-error);\n}\n\n.obsidian-dev-utils.multiple-dropdown-component select,\n.obsidian-dev-utils.multiple-dropdown-component .dropdown {\n height: auto;\n}\n";
|
11
11
|
export {
|
12
12
|
LIBRARY_NAME,
|
13
13
|
LIBRARY_STYLES,
|
package/dist/styles.css
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
box-shadow: 0 0 0 2px var(--text-error);
|
3
3
|
}
|
4
4
|
|
5
|
-
|
6
|
-
.obsidian-dev-utils.multiple-dropdown-component.dropdown {
|
5
|
+
.obsidian-dev-utils.multiple-dropdown-component select,
|
6
|
+
.obsidian-dev-utils.multiple-dropdown-component .dropdown {
|
7
7
|
height: auto;
|
8
8
|
}
|
package/package.json
CHANGED