@agorapulse/ui-theme 0.0.1 → 1.0.0
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-1.0.0.tgz +0 -0
- package/assets/{lib-ui-theme/fonts → fonts}/averta/AvertaStd-Black.otf +0 -0
- package/assets/{lib-ui-theme/fonts → fonts}/averta/AvertaStd-Bold.otf +0 -0
- package/assets/{lib-ui-theme/fonts → fonts}/averta/AvertaStd-Extrabold.otf +0 -0
- package/assets/{lib-ui-theme/fonts → fonts}/averta/AvertaStd-Regular.otf +0 -0
- package/assets/{lib-ui-theme/fonts → fonts}/averta/AvertaStd-Semibold.otf +0 -0
- package/assets/{lib-ui-theme/style → style}/_colors.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/_font-face.scss +0 -0
- package/assets/{lib-ui-theme/style → style}/_grid.scss +0 -0
- package/assets/{lib-ui-theme/style → style}/_helpers.scss +0 -0
- package/assets/{lib-ui-theme/style → style}/_mat-typography.scss +1 -2
- package/assets/{lib-ui-theme/style → style}/_variables.scss +0 -0
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_alert.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_clickable-text.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_form.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_input-error.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_input.scss +2 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-button-toggle-group.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-button.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-checkbox.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-dialog.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-divider.scss +0 -0
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-expansion-panel.scss +0 -0
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-list.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-menu.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-radio-button.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-slide-toggle.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-snack-bar.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_ng-select.scss +2 -2
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_notification.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_reduction.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_select.scss +1 -1
- package/assets/{lib-ui-theme/style → style}/components-custom-style/_sign.scss +1 -1
- package/assets/style/theme.scss +77 -0
- package/package.json +6 -2
- package/package.json.bak +19 -0
- package/agorapulse-ui-theme-0.0.1.tgz +0 -0
- package/assets/lib-ui-theme/style/theme.scss +0 -77
- package/ng-package.json +0 -4
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@import '
|
|
1
|
+
@import '../variables';
|
|
2
2
|
|
|
3
3
|
textarea, select, input, button {
|
|
4
4
|
outline: none;
|
|
@@ -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;
|
|
File without changes
|
package/assets/{lib-ui-theme/style → style}/components-custom-style/_mat-expansion-panel.scss
RENAMED
|
File without changes
|
|
@@ -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 {
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* THEMING
|
|
3
|
+
* See https://material.angular.io/guide/theming
|
|
4
|
+
*/
|
|
5
|
+
@use '~@angular/material' as mat;
|
|
6
|
+
@include mat.core();
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@import 'font-face';
|
|
10
|
+
@import 'colors';
|
|
11
|
+
@import 'variables';
|
|
12
|
+
|
|
13
|
+
// Custom palettes
|
|
14
|
+
@include mat.all-component-themes(mat.define-light-theme(
|
|
15
|
+
$primary: mat.define-palette($colors-primary),
|
|
16
|
+
$accent: mat.define-palette($colors-accent),
|
|
17
|
+
$warn: mat.define-palette($colors-warn)
|
|
18
|
+
));
|
|
19
|
+
|
|
20
|
+
/*
|
|
21
|
+
* TYPOGRAPHY
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
@import 'mat-typography';
|
|
25
|
+
|
|
26
|
+
/*
|
|
27
|
+
* GRID
|
|
28
|
+
*/
|
|
29
|
+
@import 'grid';
|
|
30
|
+
|
|
31
|
+
/*
|
|
32
|
+
* HELPERS
|
|
33
|
+
*/
|
|
34
|
+
@import 'helpers';
|
|
35
|
+
|
|
36
|
+
/*
|
|
37
|
+
* COMPONENTS
|
|
38
|
+
*/
|
|
39
|
+
|
|
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
|
+
|
|
62
|
+
.mat-ripple { display: none; }
|
|
63
|
+
|
|
64
|
+
/*
|
|
65
|
+
* {
|
|
66
|
+
-webkit-font-smoothing: antialiased;
|
|
67
|
+
-moz-osx-font-smoothing: grayscale;
|
|
68
|
+
box-sizing: border-box;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
a, button {
|
|
72
|
+
cursor: pointer;
|
|
73
|
+
}
|
|
74
|
+
*/
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agorapulse/ui-theme",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
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
|
}
|
package/package.json.bak
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agorapulse/ui-theme",
|
|
3
|
+
"version": "1.0.0-SNAPSHOT",
|
|
4
|
+
"description": "Agorapulse UI Theme Library",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/agorapulse/design.git"
|
|
8
|
+
},
|
|
9
|
+
"author": "Arnaud BUSO",
|
|
10
|
+
"license": "ISC",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/agorapulse/design/issues"
|
|
13
|
+
},
|
|
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
|
+
}
|
|
19
|
+
}
|
|
Binary file
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* THEMING
|
|
3
|
-
* See https://material.angular.io/guide/theming
|
|
4
|
-
*/
|
|
5
|
-
@use '../../../../../node_modules/@angular/material/index' as mat;
|
|
6
|
-
@include mat.core();
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
@import 'font-face';
|
|
10
|
-
@import 'colors';
|
|
11
|
-
@import 'variables';
|
|
12
|
-
|
|
13
|
-
// Custom palettes
|
|
14
|
-
@include mat.all-component-themes(mat.define-light-theme(
|
|
15
|
-
$primary: mat.define-palette($colors-primary),
|
|
16
|
-
$accent: mat.define-palette($colors-accent),
|
|
17
|
-
$warn: mat.define-palette($colors-warn)
|
|
18
|
-
));
|
|
19
|
-
|
|
20
|
-
/*
|
|
21
|
-
* TYPOGRAPHY
|
|
22
|
-
*/
|
|
23
|
-
|
|
24
|
-
@import 'mat-typography';
|
|
25
|
-
|
|
26
|
-
/*
|
|
27
|
-
* GRID
|
|
28
|
-
*/
|
|
29
|
-
@import 'grid';
|
|
30
|
-
|
|
31
|
-
/*
|
|
32
|
-
* HELPERS
|
|
33
|
-
*/
|
|
34
|
-
@import 'helpers';
|
|
35
|
-
|
|
36
|
-
/*
|
|
37
|
-
* COMPONENTS
|
|
38
|
-
*/
|
|
39
|
-
|
|
40
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/alert';
|
|
41
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/form';
|
|
42
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/input';
|
|
43
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/notification';
|
|
44
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/mat-button';
|
|
45
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/mat-button-toggle-group';
|
|
46
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/mat-checkbox';
|
|
47
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/mat-dialog';
|
|
48
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/mat-divider';
|
|
49
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/mat-expansion-panel';
|
|
50
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/mat-list';
|
|
51
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/mat-menu';
|
|
52
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/mat-radio-button';
|
|
53
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/mat-slide-toggle';
|
|
54
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/mat-snack-bar';
|
|
55
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/ng-select';
|
|
56
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/select';
|
|
57
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/sign';
|
|
58
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/reduction';
|
|
59
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/clickable-text';
|
|
60
|
-
@import 'assets/lib-ui-theme/style/components-custom-style/input-error';
|
|
61
|
-
|
|
62
|
-
.mat-ripple { display: none; }
|
|
63
|
-
|
|
64
|
-
/*
|
|
65
|
-
* {
|
|
66
|
-
-webkit-font-smoothing: antialiased;
|
|
67
|
-
-moz-osx-font-smoothing: grayscale;
|
|
68
|
-
box-sizing: border-box;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
a, button {
|
|
72
|
-
cursor: pointer;
|
|
73
|
-
}
|
|
74
|
-
*/
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
package/ng-package.json
DELETED