dothtml 5.2.3 → 5.2.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.
@@ -0,0 +1,24 @@
1
+ import IDotCss from "./i-dotcss";
2
+ declare const dotcss: IDotCss;
3
+ /**
4
+ * The dotcss builder gets extended with all of the css functions at runtime.
5
+ */
6
+ export declare class _Builder {
7
+ currentCss: string;
8
+ targets: Array<HTMLElement>;
9
+ constructor(targets?: Array<HTMLElement>);
10
+ toString(): string;
11
+ hide(style?: {
12
+ duration: any;
13
+ hideStyle: any;
14
+ complete: any;
15
+ }): this;
16
+ show(style?: {
17
+ duration: any;
18
+ showStyle: any;
19
+ complete: any;
20
+ }): import("./i-dotcss").IDotcssProp | this;
21
+ fadeOut(duration: any, complete: any): this;
22
+ fadeIn(duration: any, complete: any): import("./i-dotcss").IDotcssProp | this;
23
+ }
24
+ export default dotcss;
@@ -0,0 +1,10 @@
1
+ export declare const AllLengthUnits: ({
2
+ unit: string;
3
+ jsName?: undefined;
4
+ } | {
5
+ unit: string;
6
+ jsName: string;
7
+ })[];
8
+ export declare const AllAngleUnits: {
9
+ unit: string;
10
+ }[];
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "dothtml",
3
- "version": "5.2.3",
3
+ "version": "5.2.4",
4
4
  "description": "DOThtml is a client-side framework for building single-page applications.",
5
5
  "main": "lib/dothtml.js",
6
- "files": ["lib/dothtml.js"],
6
+ "files": ["lib/**/*"],
7
7
  "devDependencies": {
8
8
  "@babel/preset-env": "^7.14.5",
9
9
  "@testing-library/jest-dom": "^5.13.0",