@fox-js/foxui 4.0.1-83 → 4.0.1-84
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/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +1871 -1859
- package/dist/index.umd.js +2 -2
- package/dist/style.css +17 -5
- package/dist/style.js +1 -1
- package/dist/types/index.d.ts +14 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -615,11 +615,11 @@
|
|
|
615
615
|
}
|
|
616
616
|
|
|
617
617
|
.fox-item {
|
|
618
|
-
width: var(--fox-input-item-width
|
|
618
|
+
width: var(--fox-input-item-width);
|
|
619
619
|
min-width: var(--fox-input-item-min-width, 0);
|
|
620
620
|
max-width: var(--fox-input-item-max-width);
|
|
621
|
-
padding: var(--fox-input-item-padding
|
|
622
|
-
margin: var(--fox-input-item-margin
|
|
621
|
+
padding: var(--fox-input-item-padding);
|
|
622
|
+
margin: var(--fox-input-item-margin);
|
|
623
623
|
background: var(--fox-input-item-background-color);
|
|
624
624
|
box-sizing: border-box;
|
|
625
625
|
float: left;
|
|
@@ -784,8 +784,8 @@
|
|
|
784
784
|
}
|
|
785
785
|
|
|
786
786
|
.fox-row-item {
|
|
787
|
-
padding: var(--fox-input-item-padding
|
|
788
|
-
margin: var(--fox-input-item-margin
|
|
787
|
+
padding: var(--fox-input-item-padding);
|
|
788
|
+
margin: var(--fox-input-item-margin);
|
|
789
789
|
border: none;
|
|
790
790
|
flex-flow: row;
|
|
791
791
|
align-items: center;
|
|
@@ -1623,6 +1623,8 @@
|
|
|
1623
1623
|
flex: none;
|
|
1624
1624
|
transition-property: color, border-color, background-color;
|
|
1625
1625
|
transition-duration: .3s;
|
|
1626
|
+
width: var(--fox-actionsheet-list-item-icon-size, 16px) !important;
|
|
1627
|
+
height: var(--fox-actionsheet-list-item-icon-size, 16px) !important;
|
|
1626
1628
|
}
|
|
1627
1629
|
|
|
1628
1630
|
.fox-actionsheet__list-item.is-checked .fox-actionsheet__list-item-icon {
|
|
@@ -1642,6 +1644,16 @@
|
|
|
1642
1644
|
display: flex;
|
|
1643
1645
|
}
|
|
1644
1646
|
|
|
1647
|
+
.fox-actionsheet__footer-confirm {
|
|
1648
|
+
height: var(--fox-actionsheet-footer-button-height, 36px);
|
|
1649
|
+
width: var(--fox-actionsheet-footer-button-min-width, 100%);
|
|
1650
|
+
color: var(--fox-white, #fff);
|
|
1651
|
+
text-align: center;
|
|
1652
|
+
line-height: var(--fox-actionsheet-footer-button-height, 36px);
|
|
1653
|
+
border-radius: 22px;
|
|
1654
|
+
margin: 10px 18px;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1645
1657
|
.fox-actionsheet-item {
|
|
1646
1658
|
width: 100%;
|
|
1647
1659
|
}
|
package/dist/style.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1586,6 +1586,13 @@ export declare function isTouch(): boolean;
|
|
|
1586
1586
|
*/
|
|
1587
1587
|
export declare function isWindow(obj: any): boolean;
|
|
1588
1588
|
|
|
1589
|
+
/**
|
|
1590
|
+
* 中划线格式转换为大驼峰
|
|
1591
|
+
* @param str
|
|
1592
|
+
* @returns
|
|
1593
|
+
*/
|
|
1594
|
+
export declare function kebabToPascal(str: string): string;
|
|
1595
|
+
|
|
1589
1596
|
/**
|
|
1590
1597
|
* 获取对应元素的在数组中最后一个匹配的索引
|
|
1591
1598
|
* @param x
|
|
@@ -1807,6 +1814,13 @@ export declare interface PageState {
|
|
|
1807
1814
|
footerMounted?: boolean;
|
|
1808
1815
|
}
|
|
1809
1816
|
|
|
1817
|
+
/**
|
|
1818
|
+
* 大驼峰转换为中划线
|
|
1819
|
+
* @param str
|
|
1820
|
+
* @returns
|
|
1821
|
+
*/
|
|
1822
|
+
export declare function pascalToKebab<T extends string>(str: string): string;
|
|
1823
|
+
|
|
1810
1824
|
/**
|
|
1811
1825
|
* 持久消息
|
|
1812
1826
|
*/
|