ngx-bimplus-components 0.0.83 → 0.0.84-draggable
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/assets/languages/strings_de.json +3 -36
- package/assets/languages/strings_en.json +2 -3
- package/assets/languages/strings_us.json +3 -62
- package/esm2022/lib/components/bimplus-floating-bar/bimplus-floating-bar.component.mjs +65 -9
- package/esm2022/lib/components/bimplus-floating-bar-body/bimplus-floating-bar-body.component.mjs +17 -6
- package/esm2022/lib/components/bimplus-floating-bar-dragger/bimplus-floating-bar-dragger.component.mjs +16 -12
- package/esm2022/lib/components/bimplus-floating-bar-header-content/bimplus-floating-bar-header-content.component.mjs +20 -12
- package/esm2022/lib/components/bimplus-floating-bar-header-logo/bimplus-floating-bar-header-logo.component.mjs +26 -16
- package/esm2022/lib/components/bimplus-floating-bar-hide-objects/bimplus-floating-bar-hide-objects.component.mjs +16 -51
- package/esm2022/lib/components/bimplus-floating-bar-isolation-objects/bimplus-floating-bar-isolation-objects.component.mjs +12 -36
- package/esm2022/lib/components/bimplus-floating-bar-project-navigator/bimplus-floating-bar-project-navigator.component.mjs +18 -37
- package/esm2022/lib/components/bimplus-main-menu/bimplus-main-menu.component.mjs +12 -3
- package/esm2022/lib/components/bimplus-navbar/bimplus-navbar.component.mjs +3 -3
- package/esm2022/lib/components/bimplus-project-menu/bimplus-project-menu.component.mjs +9 -7
- package/esm2022/lib/components/bimplus-tool-hub/bimplus-tool-hub.component.mjs +53 -36
- package/esm2022/lib/directives/draggable.directive.mjs +8 -2
- package/esm2022/lib/directives/resizable.directive.mjs +290 -0
- package/esm2022/lib/services/layout-manager.service.mjs +245 -43
- package/esm2022/lib/services/local-storage.service.mjs +70 -0
- package/esm2022/lib/services/resize-observer.service.mjs +34 -0
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/ngx-bimplus-components.mjs +954 -332
- package/fesm2022/ngx-bimplus-components.mjs.map +1 -1
- package/lib/components/bimplus-floating-bar/bimplus-floating-bar.component.d.ts +22 -4
- package/lib/components/bimplus-floating-bar-body/bimplus-floating-bar-body.component.d.ts +8 -3
- package/lib/components/bimplus-floating-bar-dragger/bimplus-floating-bar-dragger.component.d.ts +6 -3
- package/lib/components/bimplus-floating-bar-header-content/bimplus-floating-bar-header-content.component.d.ts +6 -3
- package/lib/components/bimplus-floating-bar-header-logo/bimplus-floating-bar-header-logo.component.d.ts +10 -6
- package/lib/components/bimplus-floating-bar-hide-objects/bimplus-floating-bar-hide-objects.component.d.ts +10 -12
- package/lib/components/bimplus-floating-bar-isolation-objects/bimplus-floating-bar-isolation-objects.component.d.ts +6 -9
- package/lib/components/bimplus-floating-bar-project-navigator/bimplus-floating-bar-project-navigator.component.d.ts +6 -8
- package/lib/components/bimplus-main-menu/bimplus-main-menu.component.d.ts +4 -1
- package/lib/components/bimplus-project-menu/bimplus-project-menu.component.d.ts +3 -3
- package/lib/components/bimplus-tool-hub/bimplus-tool-hub.component.d.ts +18 -11
- package/lib/directives/draggable.directive.d.ts +2 -1
- package/lib/directives/resizable.directive.d.ts +80 -0
- package/lib/services/layout-manager.service.d.ts +60 -3
- package/lib/services/local-storage.service.d.ts +18 -0
- package/lib/services/resize-observer.service.d.ts +12 -0
- package/package.json +2 -2
- package/public-api.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-bimplus-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.84-draggable",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "",
|
|
6
6
|
"description": "bim+ angular components library",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"url": "."
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
+
"@angular/cdk": "^17.3.3",
|
|
23
24
|
"@angular/common": "^17.3.1",
|
|
24
25
|
"@angular/core": "^17.3.1",
|
|
25
|
-
"@angular/cdk": "^17.3.3",
|
|
26
26
|
"@angular/material": "^17.3.3"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
package/public-api.d.ts
CHANGED
|
@@ -38,4 +38,5 @@ export * from './lib/components/bimplus-scrollable-container/bimplus-scrollable-
|
|
|
38
38
|
export * from './lib/components/bimplus-touch-menu/bimplus-touch-menu.component';
|
|
39
39
|
export * from './lib/components/bimplus-project-menu/bimplus-project-menu.component';
|
|
40
40
|
export * from './lib/services/language-strings.service';
|
|
41
|
+
export * from './lib/services/resize-observer.service';
|
|
41
42
|
export * from './lib/types/types';
|