tosijs-ui 1.0.4 → 1.0.6
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/filter-builder.d.ts +15 -4
- package/dist/iife.js +34 -34
- package/dist/iife.js.map +7 -7
- package/dist/index.js +8 -8
- package/dist/index.js.map +7 -7
- package/dist/side-nav.d.ts +4 -3
- package/dist/version.d.ts +1 -1
- package/package.json +5 -6
package/dist/side-nav.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { Component, ElementCreator } from 'tosijs';
|
|
2
|
+
type NavState = 'normal' | 'compact/nav' | 'compact/content';
|
|
2
3
|
export declare class SideNav extends Component {
|
|
3
4
|
minSize: number;
|
|
4
5
|
navSize: number;
|
|
5
6
|
compact: boolean;
|
|
7
|
+
contentVisible: boolean;
|
|
8
|
+
value: NavState;
|
|
6
9
|
content: HTMLSlotElement[];
|
|
7
|
-
private _contentVisible;
|
|
8
|
-
get contentVisible(): boolean;
|
|
9
|
-
set contentVisible(visible: boolean);
|
|
10
10
|
static styleSpec: {
|
|
11
11
|
':host': {
|
|
12
12
|
display: string;
|
|
@@ -34,3 +34,4 @@ export declare class SideNav extends Component {
|
|
|
34
34
|
render(): void;
|
|
35
35
|
}
|
|
36
36
|
export declare const sideNav: ElementCreator<SideNav>;
|
|
37
|
+
export {};
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.0.
|
|
1
|
+
export declare const version = "1.0.6";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tosijs-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "simple robust web-components for use with xinjs or anything else",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "bun --watch bin/dev.ts",
|
|
@@ -25,18 +25,17 @@
|
|
|
25
25
|
"url": "https://github.com/tonioloewald/xinjs-ui.git"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@playwright/test": "^1.55.
|
|
28
|
+
"@playwright/test": "^1.55.1",
|
|
29
29
|
"@types/jsdom": "^21.1.7",
|
|
30
|
-
"@types/node": "^22.18.
|
|
31
|
-
"@types/react": "^19.
|
|
30
|
+
"@types/node": "^22.18.8",
|
|
31
|
+
"@types/react": "^19.2.0",
|
|
32
32
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
33
33
|
"@typescript-eslint/parser": "^5.62.0",
|
|
34
34
|
"bun-types": "latest",
|
|
35
|
-
"caniuse-lite": "^1.0.30001739",
|
|
36
35
|
"chokidar": "^4.0.3",
|
|
37
36
|
"eslint": "^8.57.1",
|
|
38
37
|
"prettier": "^2.8.8",
|
|
39
|
-
"typescript": "^5.9.
|
|
38
|
+
"typescript": "^5.9.3"
|
|
40
39
|
},
|
|
41
40
|
"peerDependencies": {
|
|
42
41
|
"marked": "^16.0.0",
|