@basis-ng/primitives 0.0.1-alpha.15 → 0.0.1-alpha.150
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/fesm2022/basis-ng-primitives.mjs +3636 -2224
- package/fesm2022/basis-ng-primitives.mjs.map +1 -1
- package/package.json +13 -5
- package/types/basis-ng-primitives.d.ts +1847 -0
- package/core/components/alert/alert.component.d.ts +0 -20
- package/core/components/attached-box/attached-box.component.d.ts +0 -125
- package/core/components/attached-box/types/alignment.type.d.ts +0 -1
- package/core/components/attached-box/types/direction.type.d.ts +0 -1
- package/core/components/badge/badge.component.d.ts +0 -9
- package/core/components/bottom-sheet/bottom-sheet.component.d.ts +0 -60
- package/core/components/button/button.component.d.ts +0 -22
- package/core/components/button-group/button-group.component.d.ts +0 -9
- package/core/components/checkbox/checkbox.component.d.ts +0 -26
- package/core/components/color-picker/color-picker.component.d.ts +0 -61
- package/core/components/combobox/combobox.component.d.ts +0 -127
- package/core/components/command/command-options.component.d.ts +0 -58
- package/core/components/command/command.component.d.ts +0 -41
- package/core/components/icon/icon.component.d.ts +0 -29
- package/core/components/input/input.component.d.ts +0 -78
- package/core/components/input-group/input-group.component.d.ts +0 -13
- package/core/components/menu/menu.component.d.ts +0 -9
- package/core/components/menu/shared/components/menu-item/menu-item.component.d.ts +0 -9
- package/core/components/menu/shared/components/menu-item-checkbox/menu-item-checkbox.component.d.ts +0 -9
- package/core/components/menu/shared/components/menu-item-radio/menu-item-radio.component.d.ts +0 -9
- package/core/components/menu/shared/components/menu-label/menu-label.component.d.ts +0 -8
- package/core/components/menu/shared/directives/menu-trigger.directive.d.ts +0 -14
- package/core/components/range/range.component.d.ts +0 -26
- package/core/components/select/select-options.component.d.ts +0 -51
- package/core/components/select/select.component.d.ts +0 -127
- package/core/components/side-sheet/side-sheet.component.d.ts +0 -46
- package/core/components/spinner/spinner.component.d.ts +0 -9
- package/core/components/switch/switch.component.d.ts +0 -35
- package/core/components/table/components/row/components/row-item/row-item.component.d.ts +0 -12
- package/core/components/table/components/row/row.component.d.ts +0 -9
- package/core/components/table/table.component.d.ts +0 -5
- package/core/components/tabs/components/tab/tab.component.d.ts +0 -25
- package/core/components/tabs/tabs.component.d.ts +0 -60
- package/core/components/textarea/textarea.component.d.ts +0 -48
- package/core/components/tooltip/tooltip.component.d.ts +0 -36
- package/core/components/tree/shared/components/tree-node/tree-node.component.d.ts +0 -43
- package/core/components/tree/tree.component.d.ts +0 -56
- package/core/directives/in-viewport.directive.d.ts +0 -13
- package/core/services/in-viewport.service.d.ts +0 -23
- package/core/services/responsive.service.d.ts +0 -47
- package/core/services/theme.service.d.ts +0 -44
- package/index.d.ts +0 -5
- package/public-api.d.ts +0 -44
- package/shared/components/label.component.d.ts +0 -30
- package/shared/components/option.component.d.ts +0 -22
- package/shared/directives/lazy-content.directive.d.ts +0 -7
- package/shared/types/position.type.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basis-ng/primitives",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.150",
|
|
4
4
|
"description": "basis-ng components, animations, directives and services for Angular",
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@angular/common": "^
|
|
7
|
-
"@angular/core": "^
|
|
6
|
+
"@angular/common": "^21.0.0",
|
|
7
|
+
"@angular/core": "^21.0.0"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"tslib": "^2.3.0"
|
|
@@ -12,14 +12,22 @@
|
|
|
12
12
|
"sideEffects": false,
|
|
13
13
|
"author": "molmos",
|
|
14
14
|
"license": "MIT",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/molmosdev/basis-ng.git",
|
|
18
|
+
"directory": "projects/primitives"
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
15
23
|
"module": "fesm2022/basis-ng-primitives.mjs",
|
|
16
|
-
"typings": "
|
|
24
|
+
"typings": "types/basis-ng-primitives.d.ts",
|
|
17
25
|
"exports": {
|
|
18
26
|
"./package.json": {
|
|
19
27
|
"default": "./package.json"
|
|
20
28
|
},
|
|
21
29
|
".": {
|
|
22
|
-
"types": "./
|
|
30
|
+
"types": "./types/basis-ng-primitives.d.ts",
|
|
23
31
|
"default": "./fesm2022/basis-ng-primitives.mjs"
|
|
24
32
|
}
|
|
25
33
|
}
|