diff --git a/lib/fonts/fa-brands.svg b/fonts/fa-brands.svg similarity index 100% rename from lib/fonts/fa-brands.svg rename to fonts/fa-brands.svg diff --git a/lib/fonts/fa-light.svg b/fonts/fa-light.svg similarity index 100% rename from lib/fonts/fa-light.svg rename to fonts/fa-light.svg diff --git a/lib/fonts/fa-regular.svg b/fonts/fa-regular.svg similarity index 100% rename from lib/fonts/fa-regular.svg rename to fonts/fa-regular.svg diff --git a/lib/fonts/fa-solid.svg b/fonts/fa-solid.svg similarity index 100% rename from lib/fonts/fa-solid.svg rename to fonts/fa-solid.svg diff --git a/lib/ui/checkbox.d.ts b/lib/ui/checkbox.d.ts index c7514e2..52f2e6d 100644 --- a/lib/ui/checkbox.d.ts +++ b/lib/ui/checkbox.d.ts @@ -10,4 +10,4 @@ interface CheckboxOptions { } export function createCheckbox(opts?: CheckboxOptions): HTMLElement -export function resolveCheckbox(container: HTMLElement, legacy?: boolean): HTMLElement \ No newline at end of file +export function resolveCheckbox(container?: HTMLElement, legacy?: boolean): HTMLElement \ No newline at end of file diff --git a/lib/ui/checkbox.html b/lib/ui/checkbox.html index a221420..a6ab2a4 100644 --- a/lib/ui/checkbox.html +++ b/lib/ui/checkbox.html @@ -54,10 +54,10 @@ 复选框改变时触发的事件
function resolveCheckbox(container: HTMLElement, legacy?: boolean): HTMLElement
- function resolveCheckbox(container?: HTMLElement, legacy?: boolean): HTMLElement
+
- 将把此 HTML 元素下的所有 label[data-checkbox]
元素解析为复选框,[data-id]
为复选框元素的 id,包含
+ 将把此 HTML 元素,为 null 则把 document.body 下的所有 label[data-checkbox]
元素解析为复选框,[data-id]
为复选框元素的 id,包含
[data-checked]
时复选框默认选中。
当该元素无子元素时,[data-type]
同上述参数中的 type?: string
,[data-label]
同上述参数中的
diff --git a/lib/ui/checkbox.js b/lib/ui/checkbox.js
index 0322324..48a11c5 100644
--- a/lib/ui/checkbox.js
+++ b/lib/ui/checkbox.js
@@ -50,27 +50,42 @@ function createCheckbox(opts) {
}
function resolveCheckbox(container, legacy) {
+ if (container == null) {
+ container = document.body;
+ }
if (legacy) {
const checks = container.querySelectorAll('input[type="checkbox"]');
for (let chk of checks) {
+ if (chk.parentElement.querySelector('layer.check-box-inner') != null) {
+ continue;
+ }
const id = chk.id;
- let label;
+ let label, text;
if (id != null) {
label = container.querySelector(`label[for="${id}"]`);
}
if (label == null) {
const e = chk.nextElementSibling;
- if (e != null && e.tagName === 'LABEL') {
- label = e;
+ if (e != null) {
+ if (e.tagName === 'LABEL') {
+ label = e;
+ } else if (e.tagName === 'SPAN' && e.getAttribute('data-lgid') != null) {
+ text = e.innerText;
+ e.style.display = 'none';
+ }
}
}
if (label == null) {
const e = chk.previousElementSibling;
- if (e != null && e.tagName === 'LABEL') {
- label = e;
+ if (e != null) {
+ if (e.tagName === 'LABEL') {
+ label = e;
+ } else if (text == null && e.tagName === 'SPAN' && e.getAttribute('data-lgid') != null) {
+ text = e.innerText;
+ e.style.display = 'none';
+ }
}
}
- let text;
if (label == null) {
label = document.createElement('label');
chk.parentElement.insertBefore(label, chk);
diff --git a/lib/ui/icon.js b/lib/ui/icon.js
index c308342..ab56660 100644
--- a/lib/ui/icon.js
+++ b/lib/ui/icon.js
@@ -5,7 +5,7 @@ function createUse(type, id) {
const path = c.path || '';
const ver = c.resver == null ? '' : `?${c.resver}`;
const use = document.createElementNS(svgns, 'use');
- use.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', `${path}lib/fonts/${type}.svg${ver}#${id}`);
+ use.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', `${path}fonts/${type}.svg${ver}#${id}`);
return use;
}
diff --git a/lib/ui/tooltip.d.ts b/lib/ui/tooltip.d.ts
index ea024d7..aa43040 100644
--- a/lib/ui/tooltip.d.ts
+++ b/lib/ui/tooltip.d.ts
@@ -1,2 +1,2 @@
export function setTooltip(container: HTMLElement, content: string | HTMLElement): void
-export function resolveTooltip(container: HTMLElement): HTMLElement
\ No newline at end of file
+export function resolveTooltip(container?: HTMLElement): HTMLElement
\ No newline at end of file
diff --git a/lib/ui/tooltip.html b/lib/ui/tooltip.html
index 17c3d70..91ed355 100644
--- a/lib/ui/tooltip.html
+++ b/lib/ui/tooltip.html
@@ -15,10 +15,10 @@
要设置的 tooltip 内容,允许为字符串或者 HTML 元素
function resolveTooltip(container: HTMLElement): HTMLElement
- function resolveTooltip(container?: HTMLElement): HTMLElement
+ - 给此元素下的所有含有 title 属性的子元素设置成统一样式的 tooltip + 给此元素,为 null 则把 document.body 下的所有含有 title 属性的子元素设置成统一样式的 tooltip
+ 字符串操作工具类。 +
+function nullOrEmpty(s?: string | any | null): boolean
+ + 待判断的对象,非字符串或者长度为 0 则返回 true +
+function contains(s: string, key: string | any, ignoreCase?: boolean): boolean
+ + 待判断的字符串 +
++ 检查字符串中是否含有该值,非字符串会先转换为字符串后再进行判断 +
++ 判断时是否忽略大小写 +
+function endsWith(s: string, suffix: string): boolean
+ + 待判断的字符串 +
++ 检查字符串是否以该字符串结尾 +
+function padStart(s: string, num: Number, char: string): boolean
+ + 基础字符串 +
++ 对齐字符个数 +
++ 用此字符串填充,使得字符串对齐,默认为 ' ' +
+const util = window["lib-utility"]; + +let s = 'test string'; +console.log(util.nullOrEmpty(s)); // false +console.log(util.contains(s, 'abc')); // true +console.log(util.endsWith(s, 'string')); // true +s = util.padStart(s, 16, '0'); +// '00000test string'+