enwawa-ui 1.0.7 → 1.0.9
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/.eslintrc.cjs +1 -1
- package/CHANGELOG.md +29 -2
- package/lib/constants.d.ts +1 -0
- package/lib/index.d.ts +1579 -0
- package/lib/index.esm.js +55276 -0
- package/lib/index.esm.js.map +1 -0
- package/lib/index.js +55334 -0
- package/lib/index.js.map +1 -0
- package/lib/placeholder.d.ts +1 -0
- package/lib/stories/atoms/AtAvatar/index.d.ts +37 -0
- package/lib/stories/atoms/AtButton/index.d.ts +53 -0
- package/lib/stories/atoms/AtButton/styles.d.ts +3 -0
- package/lib/stories/atoms/AtCheckBox/index.d.ts +30 -0
- package/lib/stories/atoms/AtDatePicker/index.d.ts +83 -0
- package/lib/stories/atoms/AtDivider/index.d.ts +32 -0
- package/lib/stories/atoms/AtImage/index.d.ts +38 -0
- package/lib/stories/atoms/AtLogo/index.d.ts +8 -0
- package/lib/stories/atoms/AtLogo/styles.d.ts +9 -0
- package/lib/stories/atoms/AtNumberInput/index.d.ts +121 -0
- package/lib/stories/atoms/AtNumberInput/styles.d.ts +7 -0
- package/lib/stories/atoms/AtPasswordInput/index.d.ts +7 -0
- package/lib/stories/atoms/AtRadio/index.d.ts +33 -0
- package/lib/stories/atoms/AtSelect/index.d.ts +189 -0
- package/lib/stories/atoms/AtSelect/styles.d.ts +7 -0
- package/lib/stories/atoms/AtText/index.d.ts +49 -0
- package/lib/stories/atoms/AtTextInput/index.d.ts +73 -0
- package/lib/stories/atoms/AtTitle/index.d.ts +61 -0
- package/lib/stories/atoms/index.d.ts +14 -0
- package/lib/stories/molecules/MlBreadCrumb/index.d.ts +22 -0
- package/lib/stories/molecules/MlCard/index.d.ts +87 -0
- package/lib/stories/molecules/MlCard/styles.d.ts +3 -0
- package/lib/stories/molecules/MlCarousel/index.d.ts +50 -0
- package/lib/stories/molecules/MlDropdown/index.d.ts +62 -0
- package/lib/stories/molecules/MlFormItem/index.d.ts +82 -0
- package/lib/stories/molecules/MlRadioGroup/index.d.ts +49 -0
- package/lib/stories/molecules/index.d.ts +6 -0
- package/lib/stories/organisms/OrAlert/index.d.ts +54 -0
- package/lib/stories/organisms/OrCol/index.d.ts +88 -0
- package/lib/stories/organisms/OrCol/styles.d.ts +3 -0
- package/lib/stories/organisms/OrContent/index.d.ts +3 -0
- package/lib/stories/organisms/OrCountryCard/index.d.ts +24 -0
- package/lib/stories/organisms/OrFlagGrid/index.d.ts +25 -0
- package/lib/stories/organisms/OrFrom/index.d.ts +6 -0
- package/lib/stories/organisms/OrHeader/index.d.ts +3 -0
- package/lib/stories/organisms/OrLayout/index.d.ts +3 -0
- package/lib/stories/organisms/OrLoginLayout/index.d.ts +16 -0
- package/lib/stories/organisms/OrLoginLayout/styles.d.ts +545 -0
- package/lib/stories/organisms/OrRow/index.d.ts +58 -0
- package/lib/stories/organisms/OrRow/styles.d.ts +3 -0
- package/lib/stories/organisms/OrSider/index.d.ts +3 -0
- package/lib/stories/organisms/OrSimpleBanner/index.d.ts +12 -0
- package/lib/stories/organisms/OrSimpleBanner/styles.d.ts +548 -0
- package/lib/stories/organisms/OrSpace/index.d.ts +33 -0
- package/lib/stories/organisms/OrSpaceCompact/index.d.ts +24 -0
- package/lib/stories/organisms/index.d.ts +14 -0
- package/lib/stories/templates/TmLoginCountry/index.d.ts +21 -0
- package/lib/stories/templates/TmLoginCountry/styles.d.ts +275 -0
- package/lib/stories/templates/TmLoginPhone/index.d.ts +60 -0
- package/lib/stories/templates/TmLoginPhone/styles.d.ts +1361 -0
- package/lib/stories/templates/index.d.ts +2 -0
- package/lib/theme.d.ts +10 -0
- package/package.json +1 -1
package/.eslintrc.cjs
CHANGED
|
@@ -12,7 +12,7 @@ module.exports = {
|
|
|
12
12
|
commonjs: true,
|
|
13
13
|
node: true,
|
|
14
14
|
},
|
|
15
|
-
ignorePatterns: ['.eslintrc.js', 'dist'],
|
|
15
|
+
ignorePatterns: ['.eslintrc.js', 'dist', 'lib'],
|
|
16
16
|
rules: {
|
|
17
17
|
'@typescript-eslint/interface-name-prefix': 'off',
|
|
18
18
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,36 @@
|
|
|
1
1
|
# (Tue Jul 25 2023)
|
|
2
2
|
|
|
3
|
+
#### ⚠️ Pushed to `main`
|
|
3
4
|
|
|
5
|
+
- dist removed lib added ([@BrayhanV](https://github.com/BrayhanV))
|
|
6
|
+
- v1.0.8 ([@BrayhanV](https://github.com/BrayhanV))
|
|
7
|
+
- Changelog updated ([@BrayhanV](https://github.com/BrayhanV))
|
|
8
|
+
- Dist folder added ([@BrayhanV](https://github.com/BrayhanV))
|
|
9
|
+
|
|
10
|
+
#### Authors: 1
|
|
11
|
+
|
|
12
|
+
- Brayhan Villalba ([@BrayhanV](https://github.com/BrayhanV))
|
|
4
13
|
|
|
5
14
|
---
|
|
6
15
|
|
|
16
|
+
# (Tue Jul 25 2023)
|
|
17
|
+
|
|
18
|
+
- Configuration need to use in others projects
|
|
19
|
+
|
|
20
|
+
#### ⚠️ Pushed to `main`
|
|
21
|
+
|
|
22
|
+
- Dist folder added ([@BrayhanV](https://github.com/BrayhanV))
|
|
23
|
+
|
|
24
|
+
#### Authors: 1
|
|
25
|
+
|
|
26
|
+
- Brayhan Villalba ([@BrayhanV](https://github.com/BrayhanV))
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
# (Tue Jul 25 2023)
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
7
34
|
# (Fri Jul 21 2023)
|
|
8
35
|
|
|
9
36
|
#### 🐛 Bug Fix
|
|
@@ -17,7 +44,7 @@
|
|
|
17
44
|
- First release for npm [#31](https://github.com/La-Wawa-Inc/wawa-ui/pull/31) ([@BrayhanV](https://github.com/BrayhanV) [@xzotacx](https://github.com/xzotacx) [@miguelesco](https://github.com/miguelesco))
|
|
18
45
|
- Rm tm login phone [#30](https://github.com/La-Wawa-Inc/wawa-ui/pull/30) ([@xzotacx](https://github.com/xzotacx) [@BrayhanV](https://github.com/BrayhanV))
|
|
19
46
|
- AtImage [#28](https://github.com/La-Wawa-Inc/wawa-ui/pull/28) ([@miguelesco](https://github.com/miguelesco))
|
|
20
|
-
- At-Button
|
|
47
|
+
- At-Button Fix [#26](https://github.com/La-Wawa-Inc/wawa-ui/pull/26) ([@xzotacx](https://github.com/xzotacx))
|
|
21
48
|
- AtAvatar [#20](https://github.com/La-Wawa-Inc/wawa-ui/pull/20) ([@miguelesco](https://github.com/miguelesco) [@BrayhanV](https://github.com/BrayhanV))
|
|
22
49
|
- TmLoginCountry [#25](https://github.com/La-Wawa-Inc/wawa-ui/pull/25) ([@xzotacx](https://github.com/xzotacx) [@BrayhanV](https://github.com/BrayhanV))
|
|
23
50
|
- MlSimpleBanner [#24](https://github.com/La-Wawa-Inc/wawa-ui/pull/24) ([@xzotacx](https://github.com/xzotacx) [@BrayhanV](https://github.com/BrayhanV))
|
|
@@ -70,7 +97,7 @@
|
|
|
70
97
|
- First release for npm [#31](https://github.com/La-Wawa-Inc/wawa-ui/pull/31) ([@BrayhanV](https://github.com/BrayhanV) [@xzotacx](https://github.com/xzotacx) [@miguelesco](https://github.com/miguelesco))
|
|
71
98
|
- Rm tm login phone [#30](https://github.com/La-Wawa-Inc/wawa-ui/pull/30) ([@xzotacx](https://github.com/xzotacx) [@BrayhanV](https://github.com/BrayhanV))
|
|
72
99
|
- AtImage [#28](https://github.com/La-Wawa-Inc/wawa-ui/pull/28) ([@miguelesco](https://github.com/miguelesco))
|
|
73
|
-
- At-Button
|
|
100
|
+
- At-Button Fix [#26](https://github.com/La-Wawa-Inc/wawa-ui/pull/26) ([@xzotacx](https://github.com/xzotacx))
|
|
74
101
|
- AtAvatar [#20](https://github.com/La-Wawa-Inc/wawa-ui/pull/20) ([@miguelesco](https://github.com/miguelesco) [@BrayhanV](https://github.com/BrayhanV))
|
|
75
102
|
- TmLoginCountry [#25](https://github.com/La-Wawa-Inc/wawa-ui/pull/25) ([@xzotacx](https://github.com/xzotacx) [@BrayhanV](https://github.com/BrayhanV))
|
|
76
103
|
- MlSimpleBanner [#24](https://github.com/La-Wawa-Inc/wawa-ui/pull/24) ([@xzotacx](https://github.com/xzotacx) [@BrayhanV](https://github.com/BrayhanV))
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const PRIMARY_COLOR = "#6C369C";
|