@mathstack/ui 0.0.1-beta.1 → 0.0.1-beta.3
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/README.md +9 -0
- package/fesm2022/mathstack-ui.mjs +175 -176
- package/fesm2022/mathstack-ui.mjs.map +1 -1
- package/package.json +7 -7
- package/types/mathstack-ui.d.ts +618 -0
- package/index.d.ts +0 -5
- package/lib/combobox/combobox-label/combobox-label.component.d.ts +0 -11
- package/lib/combobox/combobox.component.d.ts +0 -20
- package/lib/combobox/combobox.module.d.ts +0 -15
- package/lib/combobox/combobox.service.d.ts +0 -124
- package/lib/combobox/editable-textbox/editable-textbox.component.d.ts +0 -39
- package/lib/combobox/index.d.ts +0 -11
- package/lib/combobox/listbox/active-index.service.d.ts +0 -32
- package/lib/combobox/listbox/listbox-filtering.service.d.ts +0 -12
- package/lib/combobox/listbox/listbox-scroll.service.d.ts +0 -11
- package/lib/combobox/listbox/listbox.component.d.ts +0 -58
- package/lib/combobox/listbox-group/listbox-group.component.d.ts +0 -16
- package/lib/combobox/listbox-label/listbox-label.component.d.ts +0 -12
- package/lib/combobox/listbox-option/listbox-option.component.d.ts +0 -52
- package/lib/combobox/select-all-listbox-option/select-all-listbox-option.component.d.ts +0 -24
- package/lib/combobox/textbox/textbox.component.d.ts +0 -41
- package/lib/directory/directory.component.d.ts +0 -44
- package/lib/directory/index.d.ts +0 -1
- package/lib/table/index.d.ts +0 -4
- package/lib/table/single-sort-header/single-sort-header.component.d.ts +0 -9
- package/lib/table/table-column.d.ts +0 -53
- package/lib/table/table.component.d.ts +0 -27
- package/lib/table/table.config.d.ts +0 -5
- package/lib/table/table.module.d.ts +0 -11
- package/lib/tabs/index.d.ts +0 -6
- package/lib/tabs/tab-body.component.d.ts +0 -8
- package/lib/tabs/tab-content.directive.d.ts +0 -15
- package/lib/tabs/tab-item.component.d.ts +0 -16
- package/lib/tabs/tab-label.component.d.ts +0 -10
- package/lib/tabs/tabs.component.d.ts +0 -24
- package/lib/tabs/tabs.module.d.ts +0 -11
- package/lib/tabs/tabs.service.d.ts +0 -9
- package/public-api.d.ts +0 -4
package/README.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version
|
|
4
4
|
19.2.0.
|
|
5
5
|
|
|
6
|
+
## Overview
|
|
7
|
+
|
|
8
|
+
This library serves as the home for replacements to any Material components that are exceptionally
|
|
9
|
+
difficult to style, and for reusable components that do not exist in angular Material (e.g., loading
|
|
10
|
+
dialog).
|
|
11
|
+
|
|
12
|
+
It provides a centralized location for managing custom components that enhance the functionality and
|
|
13
|
+
appearance of the application, ensuring consistency and reusability.
|
|
14
|
+
|
|
6
15
|
## Code scaffolding
|
|
7
16
|
|
|
8
17
|
Run `ng generate component component-name --project ui` to generate a new component. You can also
|