@posiwise/shared-components 0.0.36 → 0.0.37
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/assets/app.scss
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
////////////////////////////
|
|
2
|
+
// Font styling
|
|
3
|
+
///////////////////////////
|
|
4
|
+
@import 'css/google-fonts.css';
|
|
5
|
+
|
|
6
|
+
////////////////////////////
|
|
7
|
+
// Main Styling files
|
|
8
|
+
///////////////////////////
|
|
9
|
+
|
|
10
|
+
// Bootstrap modules => This loads the main Bootstrap module
|
|
11
|
+
@import 'scss/custom-bootstrap/bootstrap_variables'; // This is to overwride custom bootstrap variables such as theme-colors. NOT USED FOR NOW.
|
|
12
|
+
@import 'scss/bootstrap_modules';
|
|
13
|
+
|
|
14
|
+
// Custom variables
|
|
15
|
+
@import 'scss/variables'; // Here we have the branding and dashboard variables
|
|
16
|
+
|
|
17
|
+
// Public Pages styling
|
|
18
|
+
@import 'scss/public-pages';
|
|
19
|
+
|
|
20
|
+
// Dashboard styling
|
|
21
|
+
@import 'scss/dashboard';
|
|
22
|
+
@import 'scss/custom-bootstrap'; // Many bootstrap commands have been modified for the dashboard
|
|
23
|
+
|
|
24
|
+
// Shared/generic
|
|
25
|
+
@import 'scss/shared';
|
|
26
|
+
|
|
27
|
+
// Plugins scss => Here we load the styles for the loaded plugins
|
|
28
|
+
@import 'scss/plugins';
|
|
29
|
+
|
|
30
|
+
////////////////////////////
|
|
31
|
+
// Other
|
|
32
|
+
///////////////////////////
|
|
33
|
+
|
|
34
|
+
// Loading quill
|
|
35
|
+
@import 'quill/dist/quill.core.css';
|
|
36
|
+
@import 'quill/dist/quill.bubble.css';
|
|
37
|
+
@import 'quill/dist/quill.snow.css';
|
|
38
|
+
|
|
39
|
+
// Loading ui-switch
|
|
40
|
+
@import 'ngx-ui-switch/ui-switch.component';
|
|
41
|
+
|
|
42
|
+
// dynamic stylesheet
|
|
43
|
+
@import 'scss/dynamic-styles';
|
|
@@ -425,8 +425,8 @@
|
|
|
425
425
|
// spinner color
|
|
426
426
|
|
|
427
427
|
p-progressSpinner .p-progress-spinner-circle {
|
|
428
|
-
|
|
429
|
-
|
|
428
|
+
animation: custom-progress-spinner-dash 1.5s ease-in-out infinite,
|
|
429
|
+
custom-progress-spinner-color 6s ease-in-out infinite;
|
|
430
430
|
}
|
|
431
431
|
|
|
432
432
|
@keyframes custom-progress-spinner-color {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@posiwise/shared-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.37",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "15.2.5",
|
|
6
6
|
"@angular/core": "15.2.5",
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"@posiwise/app-base-component": "^0.0.20",
|
|
12
12
|
"@posiwise/directives": "^0.0.12",
|
|
13
13
|
"@posiwise/core-transloco": "^0.0.1",
|
|
14
|
-
"@posiwise/core-styles": "^
|
|
14
|
+
"@posiwise/core-styles": "^0.0.1",
|
|
15
15
|
"@posiwise/admin-module-utils": "^0.0.11",
|
|
16
|
-
"@posiwise/shared-public-components": "^0.0.
|
|
16
|
+
"@posiwise/shared-public-components": "^0.0.12",
|
|
17
17
|
"@posiwise/shared-product-services": "^0.0.9",
|
|
18
18
|
"@posiwise/pipes": "^0.0.4",
|
|
19
19
|
"@posiwise/utils": "^0.0.3"
|