enwawa-ui 1.0.40 → 1.0.41
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/CHANGELOG.md +17 -0
- package/lib/index.d.ts +17 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.es.js +36 -5
- package/lib/index.es.js.map +1 -1
- package/lib/index.js +36 -5
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# (Fri Sep 22 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Subtitle for OrTable [#89](https://github.com/La-Wawa-Inc/wawa-ui/pull/89) ([@miguelesco](https://github.com/miguelesco))
|
|
6
|
+
|
|
7
|
+
#### ⚠️ Pushed to `main`
|
|
8
|
+
|
|
9
|
+
- Missing build files ([@BrayhanV](https://github.com/BrayhanV))
|
|
10
|
+
|
|
11
|
+
#### Authors: 2
|
|
12
|
+
|
|
13
|
+
- Brayhan Villalba ([@BrayhanV](https://github.com/BrayhanV))
|
|
14
|
+
- Miguelangel Escorche ([@miguelesco](https://github.com/miguelesco))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
1
18
|
# (Wed Sep 20 2023)
|
|
2
19
|
|
|
3
20
|
#### 🐛 Bug Fix
|
package/lib/index.d.ts
CHANGED
|
@@ -897,7 +897,7 @@ export interface AtTextProps {
|
|
|
897
897
|
/**
|
|
898
898
|
* Color of the text
|
|
899
899
|
*/
|
|
900
|
-
color?: 'violet' | 'gold' | 'white';
|
|
900
|
+
color?: 'violet' | 'gold' | 'white' | 'lightGray';
|
|
901
901
|
/**
|
|
902
902
|
* Element width
|
|
903
903
|
*/
|
|
@@ -2842,6 +2842,14 @@ export interface OrTableModuleLayoutProps {
|
|
|
2842
2842
|
* Page title
|
|
2843
2843
|
*/
|
|
2844
2844
|
title?: string;
|
|
2845
|
+
/**
|
|
2846
|
+
* page subtitle
|
|
2847
|
+
*/
|
|
2848
|
+
subtitle?: string;
|
|
2849
|
+
/**
|
|
2850
|
+
* subtitle Content
|
|
2851
|
+
*/
|
|
2852
|
+
subtitleContent?: string;
|
|
2845
2853
|
/**
|
|
2846
2854
|
* Children component
|
|
2847
2855
|
*/
|
|
@@ -2905,6 +2913,14 @@ export interface TmCrudPageProps {
|
|
|
2905
2913
|
* Page title
|
|
2906
2914
|
*/
|
|
2907
2915
|
title?: string;
|
|
2916
|
+
/**
|
|
2917
|
+
* Page subtitle
|
|
2918
|
+
*/
|
|
2919
|
+
subtitle?: string;
|
|
2920
|
+
/**
|
|
2921
|
+
* Page subtitle content
|
|
2922
|
+
*/
|
|
2923
|
+
subContent?: string;
|
|
2908
2924
|
/**
|
|
2909
2925
|
* Page table title
|
|
2910
2926
|
*/
|