@whitesev/pops 1.6.3 → 1.6.4
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.amd.js +2192 -2186
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +2192 -2186
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2192 -2186
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +2192 -2186
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +2192 -2186
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +2192 -2186
- package/dist/index.umd.js.map +1 -1
- package/dist/types/src/Pops.d.ts +1 -1
- package/dist/types/src/components/panel/PanelHandleContentDetails.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/panel/PanelHandleContentDetails.ts +2472 -2451
- package/src/components/panel/index.ts +2 -2
package/dist/types/src/Pops.d.ts
CHANGED
|
@@ -178,7 +178,7 @@ declare class Pops {
|
|
|
178
178
|
division(number1: number, number2: number): number;
|
|
179
179
|
};
|
|
180
180
|
/** pops.panel中用于处理各个类型的工具 */
|
|
181
|
-
panelHandleContentUtils: {
|
|
181
|
+
panelHandleContentUtils: () => {
|
|
182
182
|
asideULElement: HTMLUListElement;
|
|
183
183
|
sectionContainerHeaderULElement: HTMLUListElement;
|
|
184
184
|
sectionContainerULElement: HTMLUListElement;
|
|
@@ -9,7 +9,7 @@ import type { PopsPanelSelectDetails } from "./selectType";
|
|
|
9
9
|
import type { PopsPanelSliderDetails } from "./sliderType";
|
|
10
10
|
import type { PopsPanelSwitchDetails } from "./switchType";
|
|
11
11
|
import type { PopsPanelTextAreaDetails } from "./textareaType";
|
|
12
|
-
export declare const PanelHandleContentDetails: {
|
|
12
|
+
export declare const PanelHandleContentDetails: () => {
|
|
13
13
|
/**
|
|
14
14
|
* 左侧的ul容器
|
|
15
15
|
*/
|