@progressio_resources/gravity-design-system 2.6.13 → 2.6.15

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.
Files changed (22) hide show
  1. package/esm2022/lib/components/gravity-checkbox/gravity-checkbox.component.mjs +12 -9
  2. package/esm2022/lib/components/gravity-dropdown-list/gravity-dropdown-list.component.mjs +1 -1
  3. package/esm2022/lib/components/gravity-radio-button/gravity-radio-button.component.mjs +10 -8
  4. package/esm2022/lib/components/gravity-switch/gravity-switch.component.mjs +22 -23
  5. package/esm2022/lib/gravity-design-system.module.mjs +1 -5
  6. package/fesm2022/progressio_resources-gravity-design-system.mjs +42 -42
  7. package/fesm2022/progressio_resources-gravity-design-system.mjs.map +1 -1
  8. package/lib/components/gravity-checkbox/gravity-checkbox.component.d.ts +3 -2
  9. package/lib/components/gravity-radio-button/gravity-radio-button.component.d.ts +4 -4
  10. package/lib/components/gravity-switch/gravity-switch.component.d.ts +14 -10
  11. package/lib/gravity-design-system.module.d.ts +1 -2
  12. package/package.json +2 -4
  13. package/src/lib/styles/_shared.scss +0 -2
  14. package/src/lib/styles/foundations/colors/themes/_hero.theme.scss +4 -4
  15. package/src/lib/styles/gravity-design-system.scss +0 -1
  16. package/src/lib/styles/overwrite/pretty-checkbox/_core.scss +0 -119
  17. package/src/lib/styles/overwrite/pretty-checkbox/_variables.scss +0 -37
  18. package/src/lib/styles/overwrite/pretty-checkbox/elements/default/_outline.scss +0 -35
  19. package/src/lib/styles/overwrite/pretty-checkbox/elements/switch/_fill.scss +0 -7
  20. package/src/lib/styles/overwrite/pretty-checkbox/elements/switch/_general.scss +0 -49
  21. package/src/lib/styles/overwrite/pretty-checkbox/elements/switch/_mixin.scss +0 -15
  22. package/src/lib/styles/overwrite/pretty-checkbox/pretty-checkbox.scss +0 -29
@@ -4,15 +4,16 @@ export declare class GravityCheckboxComponent implements AfterViewInit, OnChange
4
4
  checked: boolean;
5
5
  disabled: boolean;
6
6
  name: string;
7
+ size: 'md' | 'sm';
7
8
  value: string;
8
9
  change: EventEmitter<{
9
10
  value: string;
10
11
  checked: boolean;
11
12
  }>;
12
- isCheckboxActive: boolean;
13
+ isCheckboxChecked: boolean;
13
14
  ngAfterViewInit(): void;
14
15
  ngOnChanges(changes: SimpleChanges): void;
15
16
  toggleCheckbox(): void;
16
17
  static ɵfac: i0.ɵɵFactoryDeclaration<GravityCheckboxComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<GravityCheckboxComponent, "gravity-checkbox", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "change": "change"; }, never, ["*"], false, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<GravityCheckboxComponent, "gravity-checkbox", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "change": "change"; }, never, ["*"], false, never>;
18
19
  }
@@ -1,13 +1,13 @@
1
1
  import { EventEmitter } from '@angular/core';
2
- import { PrettyRadioChange } from "ngx-pretty-checkbox";
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class GravityRadioButtonComponent {
5
4
  checked: boolean;
6
5
  disabled: boolean;
7
6
  name: string;
7
+ size: 'md' | 'sm';
8
8
  value: string;
9
- change: EventEmitter<PrettyRadioChange>;
10
- onChange(event: PrettyRadioChange): void;
9
+ onChange: EventEmitter<string>;
10
+ onChangeEvent(value: string): void;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<GravityRadioButtonComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<GravityRadioButtonComponent, "gravity-radio-button", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "change": "change"; }, never, ["*"], false, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<GravityRadioButtonComponent, "gravity-radio-button", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], false, never>;
13
13
  }
@@ -1,17 +1,21 @@
1
- import { AfterViewInit, EventEmitter } from '@angular/core';
1
+ import { AfterViewInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
- export declare class GravitySwitchComponent implements AfterViewInit {
4
- currentLang: string;
5
- customCheck: boolean;
3
+ export declare class GravitySwitchComponent implements AfterViewInit, OnChanges {
4
+ checked: boolean;
6
5
  cypressTag: string;
7
- label: string;
8
- required: boolean;
9
- state: 'readonly' | 'disabled' | 'enabled';
10
- toggleOptions: string[];
11
- switchResponse: EventEmitter<boolean>;
6
+ disabled: boolean;
7
+ size: 'md' | 'sm';
8
+ textOptions: {
9
+ above?: string;
10
+ left?: string;
11
+ right?: string;
12
+ below?: string;
13
+ };
14
+ response: EventEmitter<boolean>;
12
15
  isSwitchActive: boolean;
13
16
  ngAfterViewInit(): void;
17
+ ngOnChanges(changes: SimpleChanges): void;
14
18
  toggleSwitch(): void;
15
19
  static ɵfac: i0.ɵɵFactoryDeclaration<GravitySwitchComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<GravitySwitchComponent, "gravity-switch", never, { "currentLang": { "alias": "currentLang"; "required": false; }; "customCheck": { "alias": "customCheck"; "required": false; }; "cypressTag": { "alias": "cypressTag"; "required": false; }; "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "toggleOptions": { "alias": "toggleOptions"; "required": false; }; }, { "switchResponse": "response"; }, never, never, false, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<GravitySwitchComponent, "gravity-switch", never, { "checked": { "alias": "checked"; "required": false; }; "cypressTag": { "alias": "cypressTag"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "textOptions": { "alias": "textOptions"; "required": false; }; }, { "response": "response"; }, never, never, false, never>;
17
21
  }
@@ -30,9 +30,8 @@ import * as i28 from "@angular/common";
30
30
  import * as i29 from "@angular/forms";
31
31
  import * as i30 from "./vendor/gravity-tooltip/gravity-tooltip.module";
32
32
  import * as i31 from "@ng-bootstrap/ng-bootstrap";
33
- import * as i32 from "ngx-pretty-checkbox";
34
33
  export declare class GravityDesignSystemModule {
35
34
  static ɵfac: i0.ɵɵFactoryDeclaration<GravityDesignSystemModule, never>;
36
- static ɵmod: i0.ɵɵNgModuleDeclaration<GravityDesignSystemModule, [typeof i1.GravityAttachFileComponent, typeof i2.GravityButtonComponent, typeof i3.GravityCalendarComponent, typeof i4.GravityCheckboxComponent, typeof i5.GravityDialogComponent, typeof i6.GravityDropdownListComponent, typeof i7.GravityIconButtonComponent, typeof i8.GravityIconComponent, typeof i9.GravityNotificationComponent, typeof i10.GravityNotificationInstantContainerComponent, typeof i11.GravityOffcanvasComponent, typeof i12.GravityRadioButtonComponent, typeof i13.GravityStatusIndicatorComponent, typeof i14.GravityStepperComponent, typeof i15.GravitySwitchComponent, typeof i16.GravityTableComponent, typeof i17.GravityTextFieldComponent, typeof i18.GravityTextFieldNumberOnlyComponent, typeof i19.GravityTreeViewComponent, typeof i20.NodeComponent, typeof i21.NodeToggleComponent, typeof i22.NodeCheckboxComponent, typeof i23.NodeNameComponent, typeof i24.FilterByPipe], [typeof i25.AngularSvgIconModule, typeof i26.AngularSvgIconPreloaderModule, typeof i27.BsDatepickerModule, typeof i28.CommonModule, typeof i29.FormsModule, typeof i30.GravityTooltipModule, typeof i31.NgbDatepickerModule, typeof i31.NgbOffcanvasModule, typeof i31.NgbProgressbarModule, typeof i31.NgbToastModule, typeof i32.NgxPrettyCheckboxModule, typeof i29.ReactiveFormsModule], [typeof i1.GravityAttachFileComponent, typeof i2.GravityButtonComponent, typeof i3.GravityCalendarComponent, typeof i4.GravityCheckboxComponent, typeof i5.GravityDialogComponent, typeof i6.GravityDropdownListComponent, typeof i7.GravityIconButtonComponent, typeof i8.GravityIconComponent, typeof i10.GravityNotificationInstantContainerComponent, typeof i11.GravityOffcanvasComponent, typeof i12.GravityRadioButtonComponent, typeof i13.GravityStatusIndicatorComponent, typeof i14.GravityStepperComponent, typeof i15.GravitySwitchComponent, typeof i16.GravityTableComponent, typeof i17.GravityTextFieldComponent, typeof i18.GravityTextFieldNumberOnlyComponent, typeof i30.GravityTooltipModule, typeof i19.GravityTreeViewComponent]>;
35
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GravityDesignSystemModule, [typeof i1.GravityAttachFileComponent, typeof i2.GravityButtonComponent, typeof i3.GravityCalendarComponent, typeof i4.GravityCheckboxComponent, typeof i5.GravityDialogComponent, typeof i6.GravityDropdownListComponent, typeof i7.GravityIconButtonComponent, typeof i8.GravityIconComponent, typeof i9.GravityNotificationComponent, typeof i10.GravityNotificationInstantContainerComponent, typeof i11.GravityOffcanvasComponent, typeof i12.GravityRadioButtonComponent, typeof i13.GravityStatusIndicatorComponent, typeof i14.GravityStepperComponent, typeof i15.GravitySwitchComponent, typeof i16.GravityTableComponent, typeof i17.GravityTextFieldComponent, typeof i18.GravityTextFieldNumberOnlyComponent, typeof i19.GravityTreeViewComponent, typeof i20.NodeComponent, typeof i21.NodeToggleComponent, typeof i22.NodeCheckboxComponent, typeof i23.NodeNameComponent, typeof i24.FilterByPipe], [typeof i25.AngularSvgIconModule, typeof i26.AngularSvgIconPreloaderModule, typeof i27.BsDatepickerModule, typeof i28.CommonModule, typeof i29.FormsModule, typeof i30.GravityTooltipModule, typeof i31.NgbDatepickerModule, typeof i31.NgbOffcanvasModule, typeof i31.NgbProgressbarModule, typeof i31.NgbToastModule, typeof i29.ReactiveFormsModule], [typeof i1.GravityAttachFileComponent, typeof i2.GravityButtonComponent, typeof i3.GravityCalendarComponent, typeof i4.GravityCheckboxComponent, typeof i5.GravityDialogComponent, typeof i6.GravityDropdownListComponent, typeof i7.GravityIconButtonComponent, typeof i8.GravityIconComponent, typeof i10.GravityNotificationInstantContainerComponent, typeof i11.GravityOffcanvasComponent, typeof i12.GravityRadioButtonComponent, typeof i13.GravityStatusIndicatorComponent, typeof i14.GravityStepperComponent, typeof i15.GravitySwitchComponent, typeof i16.GravityTableComponent, typeof i17.GravityTextFieldComponent, typeof i18.GravityTextFieldNumberOnlyComponent, typeof i30.GravityTooltipModule, typeof i19.GravityTreeViewComponent]>;
37
36
  static ɵinj: i0.ɵɵInjectorDeclaration<GravityDesignSystemModule>;
38
37
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progressio_resources/gravity-design-system",
3
3
  "description": "Gravity Design System",
4
- "version": "2.6.13",
4
+ "version": "2.6.15",
5
5
  "license": "SEE LICENSE IN LIBRARY-LICENSE",
6
6
  "peerDependencies": {
7
7
  "@angular/common": "^16.2.12",
@@ -11,9 +11,7 @@
11
11
  "@popperjs/core": "^2.11.8",
12
12
  "angular-svg-icon": "^16.1.0",
13
13
  "angular-svg-icon-preloader": "^6.0.0",
14
- "ngx-bootstrap": "^11.0.2",
15
- "ngx-pretty-checkbox": "^16.0.0",
16
- "pretty-checkbox": "^3.0.3"
14
+ "ngx-bootstrap": "^11.0.2"
17
15
  },
18
16
  "dependencies": {
19
17
  "tslib": "^2.6.2"
@@ -1,5 +1,3 @@
1
- $input-height: 3rem;
2
-
3
1
  .text-negative {
4
2
  color: var(--negative-primary);
5
3
  }
@@ -331,14 +331,14 @@ $on-bg-switch-on-primary-light: $n900;
331
331
  $bg-switch-on-primary-light: $b400;
332
332
  $on-bg-switch-off-primary-light: $n800;
333
333
  $bg-switch-off-primary-light: $n700;
334
- $on-bg-switch-disabled-primary-light: $n900;
335
- $bg-switch-disabled-primary-light: $n800;
334
+ $on-bg-switch-disabled-primary-light: $n700;
335
+ $bg-switch-disabled-primary-light: $n700;
336
336
  $on-bg-switch-on-primary-dark: $n200;
337
337
  $bg-switch-on-primary-dark: $b700;
338
338
  $on-bg-switch-off-primary-dark: $n400;
339
339
  $bg-switch-off-primary-dark: $n300;
340
- $on-bg-switch-disabled-primary-dark: $n100;
341
- $bg-switch-disabled-primary-dark: $n200;
340
+ $on-bg-switch-disabled-primary-dark: $n400;
341
+ $bg-switch-disabled-primary-dark: $n400;
342
342
 
343
343
  // notification
344
344
  $on-bg-notification-primary-light: $n400;
@@ -15,4 +15,3 @@
15
15
 
16
16
  //Overwrite
17
17
  @import "./overwrite/bootstrap/bootstrap-export";
18
- @import "./overwrite/pretty-checkbox/pretty-checkbox.scss";
@@ -1,119 +0,0 @@
1
- @charset "utf-8";
2
-
3
- .#{$pretty--class-name} * {
4
- box-sizing: border-box;
5
- }
6
-
7
- //Throw error on invalid input types.
8
- .#{$pretty--class-name} input:not([type='checkbox']):not([type='radio']) {
9
- display: none;
10
-
11
- @if $pretty--debug {
12
- + *:after {
13
- content: $pretty--err-message;
14
- border: 1px solid #dedede;
15
- border-left: 3px solid #d9534f;
16
- padding: 9px;
17
- font-size: 1em;
18
- font-weight: 600;
19
- color: #d9534f;
20
- position: absolute;
21
- z-index: 3;
22
- background: #fbfbfb;
23
- top: 0;
24
- left: 0;
25
- }
26
- }
27
- }
28
-
29
- .#{$pretty--class-name} {
30
- position: relative;
31
- display: inline-block;
32
- white-space: nowrap;
33
- line-height: 1;
34
-
35
- &:not(.p-switch){
36
- input[type="checkbox"] {
37
- &:not(:checked) ~ .state label:before {
38
- border-color: var(--outline-checkbox-off-primary);
39
- }
40
-
41
- &:checked ~ .state {
42
- label:after {
43
- background-color: var(--bg-checkbox-on-primary);
44
- }
45
-
46
- svg-icon svg path {
47
- fill: var(--on-bg-checkbox-on-primary);
48
- stroke: var(--on-bg-checkbox-on-primary);
49
- }
50
- }
51
- &:disabled ~ .state {
52
- label:before {
53
- border-color: var(--bg-disabled);
54
- }
55
- }
56
- &:disabled:checked ~ .state {
57
- label:after {
58
- background-color: var(--bg-disabled);
59
- }
60
-
61
- svg-icon svg path {
62
- fill: var(--on-bg-disabled);
63
- stroke: var(--on-bg-disabled);
64
- }
65
- }
66
-
67
- }
68
- }
69
-
70
- input {
71
- position: absolute;
72
- left: 0;
73
- top: 0;
74
- min-width: 1em;
75
- width: 100%;
76
- height: 100%;
77
- z-index: $pretty--z-index-front;
78
- opacity: 0;
79
- margin: 0;
80
- padding: 0;
81
- cursor: pointer;
82
- }
83
-
84
- .state {
85
- label {
86
- position: initial;
87
- display: inline-block;
88
- font-weight: normal;
89
- margin: 0;
90
- text-indent: $pretty--label-text-offset;
91
- min-width: $pretty--box-size;
92
-
93
- &:before,
94
- &:after {
95
- content: '';
96
- width: $pretty--box-size;
97
- height: $pretty--box-size;
98
- display: block;
99
- box-sizing: border-box;
100
- border-radius: 0;
101
- border: 1px solid transparent;
102
- z-index: $pretty--z-index-back;
103
- position: absolute;
104
- left: 0;
105
- top: $pretty-top-offset;
106
- background-color: transparent;
107
- }
108
-
109
- &:before {
110
- border-color: $pretty--color-default;
111
- }
112
- }
113
-
114
- &.p-is-hover,
115
- &.p-is-indeterminate {
116
- display: none;
117
- }
118
- }
119
- }
@@ -1,37 +0,0 @@
1
- $pretty--class-name: pretty !default;
2
-
3
- // colors
4
- $pretty--color-default: #bdc3c7 !default;
5
- $pretty--color-primary: #428bca !default;
6
- $pretty--color-info: #5bc0de !default;
7
- $pretty--color-success: #5cb85c !default;
8
- $pretty--color-warning: #f0ad4e !default;
9
- $pretty--color-danger: #d9534f !default;
10
- $pretty--color-dark: #5a656b !default;
11
-
12
- // z-index
13
- $pretty--z-index-back: 0 !default;
14
- $pretty--z-index-between: 1 !default;
15
- $pretty--z-index-front: 2 !default;
16
-
17
- // box
18
- $pretty--curve-radius: 20% !default;
19
- $pretty--box-size: calc(1em + 2px) !default;
20
-
21
- // text
22
- $pretty--label-text-offset: 1.5em !default;
23
- $pretty--label-text-offset-switch: 2.5em !default;
24
-
25
- // scale
26
- $pretty--2x: 1.2em !default;
27
-
28
- // color set
29
- $pretty--colors: (primary, $pretty--color-primary), (info, $pretty--color-info), (success, $pretty--color-success), (warning, $pretty--color-warning), (danger, $pretty--color-danger) !default;
30
-
31
- // position
32
- $pretty-top: 7;
33
- $pretty-top-offset: calc((0% - (100% - 1em)) - #{$pretty-top * 1%});
34
-
35
- // dev
36
- $pretty--debug: false !default;
37
- $pretty--err-message: 'Error: Invalid input type!' !default;
@@ -1,35 +0,0 @@
1
- .#{$pretty--class-name}.p-default {
2
- .state label {
3
- &:before, &:after {
4
- border-radius: 50%;
5
- }
6
-
7
- &:after {
8
- transform: scale(0.6);
9
- }
10
- }
11
-
12
- input[type='radio'] {
13
- &:not(:checked) ~ .state label:before {
14
- border-color: var(--radio-button-off-primary);
15
- }
16
-
17
- &:checked ~ .state label {
18
- &:before {
19
- border-color: var(--radio-button-on-primary);
20
- }
21
-
22
- &:after {
23
- background-color: var(--radio-button-on-primary);
24
- }
25
- }
26
-
27
- &:disabled ~ .state label:before {
28
- border-color: var(--outline-disabled);
29
- }
30
-
31
- &:disabled:checked ~ .state label:after {
32
- background-color: var(--outline-disabled);
33
- }
34
- }
35
- }
@@ -1,7 +0,0 @@
1
- @use 'mixin';
2
-
3
- .#{$pretty--class-name}.p-switch.p-fill {
4
- input:checked:not(:disabled) ~ .state {
5
- @include mixin.switchColor(bg-switch-on-primary);
6
- }
7
- }
@@ -1,49 +0,0 @@
1
- @use 'mixin';
2
-
3
- .#{$pretty--class-name}.p-switch {
4
- input {
5
- &:checked ~ .state, &:disabled ~ .state {
6
- @include mixin.switchColor(bg-switch-disabled-primary);
7
- }
8
- }
9
-
10
- .state {
11
- height: 100%;
12
- position: relative;
13
-
14
- &:before {
15
- content: '';
16
- border: 1px solid var(--bg-switch-off-primary);
17
- background-color: var(--bg-switch-off-primary);
18
- border-radius: 60px;
19
- width: calc(3rem - 2px);
20
- box-sizing: unset;
21
- height: calc(100% - 2px);
22
- position: absolute;
23
- top: 0;
24
- z-index: $pretty--z-index-back;
25
- transition: all 0.5s ease;
26
- }
27
-
28
- label {
29
- text-indent: $pretty--label-text-offset-switch;
30
-
31
- &:before,
32
- &:after {
33
- transition: all 0.5s ease;
34
- border-radius: 100%;
35
- left: 5%;
36
- border-color: transparent;
37
- transform: scale(0.8);
38
- height: 1.375rem;
39
- top: 10%;
40
- width: 1.375rem;
41
- }
42
-
43
- &:before {
44
- border: 1px solid var(--on-bg-switch-off-primary);
45
- background-color: var(--on-bg-switch-off-primary);
46
- }
47
- }
48
- }
49
- }
@@ -1,15 +0,0 @@
1
- @mixin switchColor($varColorName) {
2
- &:before {
3
- border-color: var(--#{$varColorName});
4
- background-color: var(--#{$varColorName});
5
- }
6
-
7
- label:before {
8
- opacity: 0;
9
- }
10
-
11
- label:after {
12
- background-color: var(--on-#{$varColorName}) !important;
13
- left: 50%;
14
- }
15
- }
@@ -1,29 +0,0 @@
1
- @import './variables';
2
- @import './core';
3
-
4
-
5
- @import 'node_modules/pretty-checkbox/src/scss/essentials/keyframes';
6
- @import 'node_modules/pretty-checkbox/src/scss/essentials/functions';
7
- @import 'node_modules/pretty-checkbox/src/scss/essentials/mixins';
8
- @import 'node_modules/pretty-checkbox/src/scss/elements/default/fill';
9
- @import './elements/default/outline';
10
- @import 'node_modules/pretty-checkbox/src/scss/elements/default/thick';
11
- @import 'node_modules/pretty-checkbox/src/scss/elements/font-icon/general';
12
- @import 'node_modules/pretty-checkbox/src/scss/elements/svg/general';
13
- @import 'node_modules/pretty-checkbox/src/scss/elements/image/general';
14
- @import './elements/switch/general';
15
- @import './elements/switch/fill';
16
- @import 'node_modules/pretty-checkbox/src/scss/elements/switch/slim';
17
- @import 'node_modules/pretty-checkbox/src/scss/states/hover';
18
- @import 'node_modules/pretty-checkbox/src/scss/states/focus';
19
- @import 'node_modules/pretty-checkbox/src/scss/states/indeterminate';
20
- @import 'node_modules/pretty-checkbox/src/scss/extras/toggle';
21
- @import 'node_modules/pretty-checkbox/src/scss/extras/plain';
22
- @import 'node_modules/pretty-checkbox/src/scss/extras/round';
23
- @import 'node_modules/pretty-checkbox/src/scss/extras/curve';
24
- @import 'node_modules/pretty-checkbox/src/scss/extras/animation';
25
- @import 'node_modules/pretty-checkbox/src/scss/extras/disabled';
26
- @import 'node_modules/pretty-checkbox/src/scss/extras/locked';
27
- @import 'node_modules/pretty-checkbox/src/scss/extras/colors';
28
- @import 'node_modules/pretty-checkbox/src/scss/extras/bigger';
29
- @import 'node_modules/pretty-checkbox/src/scss/extras/print';