@agorapulse/ui-theme 0.0.1 → 0.0.2
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/agorapulse-ui-theme-0.0.2.tgz +0 -0
- package/assets/lib-ui-theme/style/_colors.scss +1 -1
- package/assets/lib-ui-theme/style/_mat-typography.scss +1 -2
- package/assets/lib-ui-theme/style/components-custom-style/_alert.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_clickable-text.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_form.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_input-error.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_input.scss +3 -2
- package/assets/lib-ui-theme/style/components-custom-style/_mat-button-toggle-group.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_mat-button.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_mat-checkbox.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_mat-dialog.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_mat-list.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_mat-menu.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_mat-radio-button.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_mat-slide-toggle.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_mat-snack-bar.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_ng-select.scss +2 -2
- package/assets/lib-ui-theme/style/components-custom-style/_notification.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_reduction.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_select.scss +1 -1
- package/assets/lib-ui-theme/style/components-custom-style/_sign.scss +1 -1
- package/assets/lib-ui-theme/style/theme.scss +22 -22
- package/package.json +6 -2
- package/agorapulse-ui-theme-0.0.1.tgz +0 -0
- package/ng-package.json +0 -4
|
Binary file
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import '../variables';
|
|
2
2
|
|
|
3
3
|
textarea, select, input, button {
|
|
4
4
|
outline: none;
|
|
@@ -45,7 +45,7 @@ input, textarea {
|
|
|
45
45
|
&.valid:not([disabled]):not(.transparent) {
|
|
46
46
|
border: 1px solid $color-success;
|
|
47
47
|
}
|
|
48
|
-
|
|
48
|
+
|
|
49
49
|
// Transparent
|
|
50
50
|
&.transparent {
|
|
51
51
|
border: 0;
|
|
@@ -67,6 +67,7 @@ input, textarea {
|
|
|
67
67
|
flex-direction: row;
|
|
68
68
|
width: 180px;
|
|
69
69
|
color: map_get($colors-grey, 100);
|
|
70
|
+
border-radius: $border-radius;
|
|
70
71
|
|
|
71
72
|
input {
|
|
72
73
|
box-sizing: border-box;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
@import '
|
|
2
|
-
@import '
|
|
1
|
+
@import '~@ng-select/ng-select/themes/default.theme.css';
|
|
2
|
+
@import '../variables';
|
|
3
3
|
|
|
4
4
|
@mixin select-state-style($color) {
|
|
5
5
|
.ng-select-container {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* THEMING
|
|
3
3
|
* See https://material.angular.io/guide/theming
|
|
4
4
|
*/
|
|
5
|
-
@use '
|
|
5
|
+
@use '@angular/material' as mat;
|
|
6
6
|
@include mat.core();
|
|
7
7
|
|
|
8
8
|
|
|
@@ -37,27 +37,27 @@
|
|
|
37
37
|
* COMPONENTS
|
|
38
38
|
*/
|
|
39
39
|
|
|
40
|
-
@import '
|
|
41
|
-
@import '
|
|
42
|
-
@import '
|
|
43
|
-
@import '
|
|
44
|
-
@import '
|
|
45
|
-
@import '
|
|
46
|
-
@import '
|
|
47
|
-
@import '
|
|
48
|
-
@import '
|
|
49
|
-
@import '
|
|
50
|
-
@import '
|
|
51
|
-
@import '
|
|
52
|
-
@import '
|
|
53
|
-
@import '
|
|
54
|
-
@import '
|
|
55
|
-
@import '
|
|
56
|
-
@import '
|
|
57
|
-
@import '
|
|
58
|
-
@import '
|
|
59
|
-
@import '
|
|
60
|
-
@import '
|
|
40
|
+
@import 'components-custom-style/alert';
|
|
41
|
+
@import 'components-custom-style/form';
|
|
42
|
+
@import 'components-custom-style/input';
|
|
43
|
+
@import 'components-custom-style/notification';
|
|
44
|
+
@import 'components-custom-style/mat-button';
|
|
45
|
+
@import 'components-custom-style/mat-button-toggle-group';
|
|
46
|
+
@import 'components-custom-style/mat-checkbox';
|
|
47
|
+
@import 'components-custom-style/mat-dialog';
|
|
48
|
+
@import 'components-custom-style/mat-divider';
|
|
49
|
+
@import 'components-custom-style/mat-expansion-panel';
|
|
50
|
+
@import 'components-custom-style/mat-list';
|
|
51
|
+
@import 'components-custom-style/mat-menu';
|
|
52
|
+
@import 'components-custom-style/mat-radio-button';
|
|
53
|
+
@import 'components-custom-style/mat-slide-toggle';
|
|
54
|
+
@import 'components-custom-style/mat-snack-bar';
|
|
55
|
+
@import 'components-custom-style/ng-select';
|
|
56
|
+
@import 'components-custom-style/select';
|
|
57
|
+
@import 'components-custom-style/sign';
|
|
58
|
+
@import 'components-custom-style/reduction';
|
|
59
|
+
@import 'components-custom-style/clickable-text';
|
|
60
|
+
@import 'components-custom-style/input-error';
|
|
61
61
|
|
|
62
62
|
.mat-ripple { display: none; }
|
|
63
63
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agorapulse/ui-theme",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Agorapulse UI Theme Library",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -11,5 +11,9 @@
|
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/agorapulse/design/issues"
|
|
13
13
|
},
|
|
14
|
-
"homepage": "https://github.com/agorapulse/design#readme"
|
|
14
|
+
"homepage": "https://github.com/agorapulse/design#readme",
|
|
15
|
+
"peerDependencies": {
|
|
16
|
+
"@angular/material": "^12.2.3",
|
|
17
|
+
"@ng-select/ng-select": "^7.2.0"
|
|
18
|
+
}
|
|
15
19
|
}
|
|
Binary file
|
package/ng-package.json
DELETED