@apipass/schemas 1.0.0 → 1.0.8

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 (68) hide show
  1. package/base-schema.component.d.ts +12 -12
  2. package/{esm2020 → esm2022}/apipass-schemas.mjs +4 -4
  3. package/esm2022/base-schema.component.mjs +38 -0
  4. package/esm2022/public-api.mjs +17 -0
  5. package/esm2022/schema-custom-attributes/schema-custom-attributes.mjs +169 -0
  6. package/esm2022/schema-fields.service.mjs +81 -0
  7. package/esm2022/schema-form/schema-array/array-session/array-session.mjs +141 -0
  8. package/{esm2020 → esm2022}/schema-form/schema-array/schema-array.mjs +219 -220
  9. package/esm2022/schema-form/schema-form.mjs +107 -0
  10. package/esm2022/schema-form/schema-input/field-render/field-render.mjs +76 -0
  11. package/esm2022/schema-form/schema-input/input-render/boolean-input/boolean-input.component.mjs +51 -0
  12. package/esm2022/schema-form/schema-input/input-render/input-render.mjs +193 -0
  13. package/esm2022/schema-form/schema-input/input-render/number-input/number-input.component.mjs +49 -0
  14. package/esm2022/schema-form/schema-input/schema-input.mjs +95 -0
  15. package/esm2022/schema-form/schema-object/schema-object.mjs +125 -0
  16. package/esm2022/schema-form-render.mjs +126 -0
  17. package/esm2022/schema-form-render.module.mjs +109 -0
  18. package/esm2022/schema-validation-field.mjs +18 -0
  19. package/esm2022/struct.utils.mjs +9 -0
  20. package/esm2022/type-script-compile/type-script-compile.base.mjs +115 -0
  21. package/{fesm2020 → fesm2022}/apipass-schemas.mjs +1572 -1566
  22. package/fesm2022/apipass-schemas.mjs.map +1 -0
  23. package/index.d.ts +5 -5
  24. package/package.json +15 -21
  25. package/public-api.d.ts +16 -16
  26. package/schema-custom-attributes/schema-custom-attributes.d.ts +21 -21
  27. package/schema-fields.service.d.ts +14 -15
  28. package/schema-form/schema-array/array-session/array-session.d.ts +19 -19
  29. package/schema-form/schema-array/schema-array.d.ts +31 -32
  30. package/schema-form/schema-form.d.ts +31 -31
  31. package/schema-form/schema-input/field-render/field-render.d.ts +16 -16
  32. package/schema-form/schema-input/input-render/boolean-input/boolean-input.component.d.ts +15 -15
  33. package/schema-form/schema-input/input-render/input-render.d.ts +29 -29
  34. package/schema-form/schema-input/input-render/number-input/number-input.component.d.ts +15 -15
  35. package/schema-form/schema-input/schema-input.d.ts +18 -19
  36. package/schema-form/schema-object/schema-object.d.ts +34 -34
  37. package/schema-form-render.d.ts +31 -31
  38. package/schema-form-render.module.d.ts +23 -23
  39. package/schema-validation-field.d.ts +23 -23
  40. package/struct.utils.d.ts +1 -1
  41. package/type-script-compile/type-script-compile.base.d.ts +17 -17
  42. package/assets/css/buttons.scss +0 -118
  43. package/assets/css/colors.scss +0 -34
  44. package/assets/css/fonts.scss +0 -24
  45. package/assets/css/inputs.scss +0 -197
  46. package/assets/css/pt_sans.scss +0 -144
  47. package/assets/css/spacing.scss +0 -28
  48. package/assets/css/texts.scss +0 -18
  49. package/esm2020/base-schema.component.mjs +0 -38
  50. package/esm2020/public-api.mjs +0 -17
  51. package/esm2020/schema-custom-attributes/schema-custom-attributes.mjs +0 -169
  52. package/esm2020/schema-fields.service.mjs +0 -82
  53. package/esm2020/schema-form/schema-array/array-session/array-session.mjs +0 -143
  54. package/esm2020/schema-form/schema-form.mjs +0 -107
  55. package/esm2020/schema-form/schema-input/field-render/field-render.mjs +0 -69
  56. package/esm2020/schema-form/schema-input/input-render/boolean-input/boolean-input.component.mjs +0 -46
  57. package/esm2020/schema-form/schema-input/input-render/input-render.mjs +0 -192
  58. package/esm2020/schema-form/schema-input/input-render/number-input/number-input.component.mjs +0 -44
  59. package/esm2020/schema-form/schema-input/schema-input.mjs +0 -96
  60. package/esm2020/schema-form/schema-object/schema-object.mjs +0 -123
  61. package/esm2020/schema-form-render.mjs +0 -126
  62. package/esm2020/schema-form-render.module.mjs +0 -108
  63. package/esm2020/schema-validation-field.mjs +0 -14
  64. package/esm2020/struct.utils.mjs +0 -9
  65. package/esm2020/type-script-compile/type-script-compile.base.mjs +0 -112
  66. package/fesm2015/apipass-schemas.mjs +0 -1803
  67. package/fesm2015/apipass-schemas.mjs.map +0 -1
  68. package/fesm2020/apipass-schemas.mjs.map +0 -1
@@ -1,17 +1,17 @@
1
- import * as i0 from "@angular/core";
2
- export declare class TypeScriptCompileBase {
3
- protected getTranslate(text: string): string;
4
- protected addItemToFormProperties(formProperties: any, item: any, key: string): void;
5
- compileProperties(input: any): {
6
- compiledProperties: any;
7
- formProperties: any;
8
- inputData: any;
9
- };
10
- protected translateProperties(input: any): void;
11
- protected proccessProperties(item: any, formProperties: {}, key: any): void;
12
- protected hasProperties(item: any): any;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<TypeScriptCompileBase, never>;
14
- static ɵprov: i0.ɵɵInjectableDeclaration<TypeScriptCompileBase>;
15
- }
16
- export declare function APIPASS_TYPESCRIPT_COMPILE_BASE_PROVIDER_FACTORY(parentIntl: TypeScriptCompileBase): any;
17
- export declare const APIPASS_TYPESCRIPT_COMPILE_INTL_PROVIDER: any;
1
+ import * as i0 from "@angular/core";
2
+ export declare class TypeScriptCompileBase {
3
+ protected getTranslate(text: string): string;
4
+ protected addItemToFormProperties(formProperties: any, item: any, key: string): void;
5
+ compileProperties(input: any): {
6
+ compiledProperties: any;
7
+ formProperties: any;
8
+ inputData: any;
9
+ };
10
+ protected translateProperties(input: any): void;
11
+ protected proccessProperties(item: any, formProperties: Record<string, unknown>, key: any): void;
12
+ protected hasProperties(item: any): any;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<TypeScriptCompileBase, never>;
14
+ static ɵprov: i0.ɵɵInjectableDeclaration<TypeScriptCompileBase>;
15
+ }
16
+ export declare function APIPASS_TYPESCRIPT_COMPILE_BASE_PROVIDER_FACTORY(parentIntl: TypeScriptCompileBase): any;
17
+ export declare const APIPASS_TYPESCRIPT_COMPILE_INTL_PROVIDER: any;
@@ -1,118 +0,0 @@
1
- @import "colors";
2
- @import "fonts";
3
- @import "spacing";
4
-
5
- /* Buttons */
6
- .apipass-tab-button {
7
- display: flex !important;
8
- justify-content: center !important;
9
- align-items: center !important;
10
- padding: $spacing-tab-button-top $spacing-tab-button-right $spacing-tab-button-bottom $spacing-tab-button-left !important;
11
- font-weight: bold;
12
- font-size: $base-font-size - 2px;
13
- border-radius: 6px 6px 0 0 !important;
14
- .mat-button-wrapper, .mat-icon, .button-text {
15
- display: flex;
16
- justify-content: center;
17
- align-items: center;
18
- }
19
- .apipass-btn-icon-text {
20
- padding-right: 10px;
21
- }
22
- .apipass-btn-icon-text-suffix {
23
- padding-left: 10px;
24
- }
25
- }
26
-
27
- .apipass-btn-default {
28
- display: flex !important;
29
- justify-content: center !important;
30
- align-items: center !important;
31
- padding: 0 $spacing-button-right 0 $spacing-button-left !important;
32
- font-weight: bold;
33
- border-radius: 6px !important;
34
- .mat-button-wrapper, .mat-icon, .button-text {
35
- display: flex;
36
- justify-content: center;
37
- align-items: center;
38
- }
39
- .apipass-btn-icon-text {
40
- padding-right: 10px;
41
- }
42
- .apipass-btn-icon-text-suffix {
43
- padding-left: 10px;
44
- }
45
- }
46
-
47
- .apipass-btn-primary {
48
- background: var(--color-primary);
49
- color: #FFF;
50
- &:hover, .hover {
51
- background: var(--color-primary-hover);
52
- }
53
- &:active, .active {
54
- background: var(--color-primary-active);
55
- }
56
- &:disabled, .disabled {
57
- background: var(--color-tertiary);
58
- color: var(--color-fonts-tertiary);
59
- border: 1px px solid var(--color-tertiary-hover);
60
- cursor: no-drop !important;
61
- }
62
- }
63
-
64
- .apipass-btn-secondary {
65
- background: var(--color-secondary);
66
- color: var(--color-primary);
67
- &:hover, .hover {
68
- background: var(--color-secondary-hover);
69
- }
70
- &:active, .active {
71
- background: var(--color-secondary-active);
72
- }
73
- &:disabled, .disabled {
74
- background: var(--color-tertiary);
75
- color: var(--color-fonts-tertiary);
76
- border: 1px px solid var(--color-tertiary-hover);
77
- cursor: no-drop !important;
78
- }
79
- }
80
-
81
- .apipass-btn-tertiary {
82
- background: var(--color-tertiary);
83
- color: var(--color-primary);
84
- padding: 15px !important;
85
- border: 1px solid var(--color-tertiary-hover);
86
- &:hover, .hover {
87
- background: var(--color-tertiary-hover);
88
- }
89
- &:active, .active {
90
- background: var(--color-tertiary-active);
91
- }
92
- &:disabled, .disabled {
93
- background: var(--color-tertiary);
94
- color: var(--color-fonts-tertiary);
95
- border: 1px px solid var(--color-tertiary-hover);
96
- cursor: no-drop !important;
97
- }
98
- }
99
-
100
- .apipass-btn-outline {
101
- color: var(--color-fonts-tertiary);
102
- &.remove-button {
103
- color: var(--color-red);
104
- }
105
- &:hover, .hover {
106
- background: var(--color-tertiary-hover);
107
- }
108
- &:active, .active {
109
- background: var(--color-tertiary-active);
110
- }
111
- &:disabled, .disabled {
112
- background: var(--color-tertiary);
113
- color: var(--color-fonts-tertiary);
114
- border: 1px px solid var(--color-tertiary-hover);
115
- cursor: no-drop !important;
116
- }
117
- }
118
-
@@ -1,34 +0,0 @@
1
- :root {
2
- --color-primary: #222D57;
3
- --color-primary-hover: #18203D;
4
- --color-primary-active: #29376A;
5
-
6
- --color-secondary: #D3D921;
7
- --color-secondary-hover: #B3B81C;
8
- --color-secondary-active: #DCE13F;
9
-
10
- --color-tertiary: #EFEFEF;
11
- --color-tertiary-hover: #CBCBCB;
12
- --color-tertiary-active: #F1F1F1;
13
-
14
- --color-fonts-tertiary: #777777;
15
-
16
-
17
-
18
-
19
- // Defaults
20
- --color-body-light: #FFF;
21
- --color-red: rgb(255, 0, 0);
22
- --limit-plan-color: #ff6c00;
23
- --color_disabled: #E0E0E0;
24
- --color_components_light: #FFF;
25
- --color-inputs-border: #DDD;
26
- --color-inputs-background: #FFF;
27
- --color_icon_remove: var(--color-red);
28
- --color_icon_success: #070;
29
- --color_graph_primary: #1643EF;
30
- --color_graph_primary_hover: #0A2692;
31
- --color_graph_error: #EB5757;
32
- --color_graph_error_hover: #C91717;
33
-
34
- }
@@ -1,24 +0,0 @@
1
- $base-font-size: 14px;
2
- $base-input-font-size: $base-font-size;
3
-
4
- @import "pt_sans";
5
-
6
- .text-primary {
7
- color: var(--color-primary) !important;
8
- }
9
-
10
- .text-secondary {
11
- color: var(--color-secondary) !important;
12
- }
13
-
14
- .text-tertiary {
15
- color: var(--color-fonts-tertiary) !important;
16
- }
17
-
18
- .text-weight-bold {
19
- font-weight: bold !important;
20
- }
21
-
22
- .text-weight-normal {
23
- font-weight: normal !important;
24
- }
@@ -1,197 +0,0 @@
1
- @import "colors";
2
- @import "fonts";
3
- @import "spacing";
4
-
5
- /* Default Inputs */
6
- .mat-input-underline, .mat-form-field-underline {
7
- display: none;
8
- }
9
-
10
- .mat-form-field-appearance-fill .mat-form-field-flex {
11
- display: flex!important;
12
- align-items: center!important;
13
- border: 1px solid var(--color-inputs-border) !important;
14
- background: var(--color-inputs-background) !important;
15
- border-radius: 6px !important;
16
- }
17
-
18
- .mat-form-field-infix {
19
- padding: 0 !important;
20
- display: flex!important;
21
- align-items: center!important;
22
- border-top: none!important;
23
- }
24
-
25
- .mat-select-arrow-wrapper {
26
- display: flex!important;
27
- }
28
-
29
- .mat-icon-button {
30
- width: auto!important;
31
- }
32
-
33
- .no-border {
34
- .mat-form-field-flex {
35
- border: none !important;
36
- input {
37
- padding: 1px;
38
- }
39
- }
40
- }
41
-
42
- .mat-form-field-label-wrapper {
43
- top: -10px;
44
- }
45
-
46
- .mat-form-field-should-float .mat-form-field-label-wrapper {
47
- font-size: $base-font-size;
48
- }
49
-
50
- .placeholder-primary {
51
- .mat-form-field-label-wrapper {
52
- color: var(--color-primary) !important;
53
- label {
54
- color: var(--color-primary) !important;
55
- }
56
- }
57
- ::ng-deep .mat-form-field-placeholder, .mat-form-field-placeholder {
58
- color: var(--color-primary) !important;
59
- }
60
- ::ng-deep .mat-focused .mat-form-field-placeholder, .mat-focused .mat-form-field-placeholder {
61
- color: var(--color-primary) !important;
62
- }
63
- input {
64
- ::-webkit-input-placeholder { /* Edge */
65
- color: var(--color-primary) !important;
66
- }
67
- :-ms-input-placeholder { /* Internet Explorer 10-11 */
68
- color: var(--color-primary) !important;
69
- }
70
- ::placeholder {
71
- color: var(--color-primary) !important;
72
- }
73
- }
74
- }
75
-
76
- .placeholder-bold {
77
- .mat-form-field-label-wrapper {
78
- font-weight: bold !important;
79
- label {
80
- font-weight: bold !important;
81
- }
82
- }
83
- ::ng-deep .mat-form-field-placeholder, .mat-form-field-placeholder {
84
- font-weight: bold !important;
85
- }
86
- ::ng-deep .mat-focused .mat-form-field-placeholder, .mat-focused .mat-form-field-placeholder {
87
- font-weight: bold !important;
88
- }
89
- input {
90
- ::-webkit-input-placeholder { /* Edge */
91
- font-weight: bold !important;
92
- }
93
- :-ms-input-placeholder { /* Internet Explorer 10-11 */
94
- font-weight: bold !important;
95
- }
96
- ::placeholder {
97
- font-weight: bold !important;
98
- }
99
- }
100
- }
101
-
102
- /* Inputs */
103
- .apipass-input-text {
104
- width: 100%;
105
- .mat-form-field-flex {
106
- padding: $spacing-input-top $spacing-input-right $spacing-input-bottom $spacing-input-left !important;
107
- }
108
- }
109
-
110
- .apipass-input-text,
111
- .apipass-search-input-text,
112
- .custom-select-component,
113
- .apipass-select,
114
- .apipass-date-filter {
115
-
116
- .mat-form-field-wrapper {
117
- padding: 0 !important;
118
- }
119
- .mat-icon-button {
120
- width: auto!important;
121
- height: auto!important;
122
- }
123
-
124
- &.label-input {
125
- .mat-form-field-label-wrapper {
126
- padding-top: 0;
127
- top: auto !important;
128
- }
129
- input {
130
- padding-top: 10px !important;
131
- padding-bottom: 5px !important;
132
- }
133
- }
134
- &.mat-form-field-should-float {
135
- .mat-form-field-label-wrapper {
136
- padding-top: 0 !important;
137
- margin-top: -10px !important;
138
- }
139
- }
140
-
141
- }
142
-
143
-
144
- .apipass-search-input-text {
145
- width: 100%;
146
-
147
- &.small-text {
148
- font-size: $base-font-size - 2px;
149
- }
150
- .mat-form-field-flex {
151
- padding: 2px 5px 2px 2px !important;
152
- border-top: none !important;
153
- border-left: none !important;
154
- border-right: none !important;
155
- border-radius: 0 !important;
156
- }
157
- .search-icon {
158
- margin-top: -5px !important;
159
- }
160
-
161
- }
162
-
163
- .custom-select-component {
164
- width: 100%;
165
- .mat-form-field-flex {
166
- padding: 1px $spacing-input-right 1px $spacing-input-left !important;
167
- }
168
- }
169
-
170
- .apipass-select {
171
- width: 100%;
172
- .mat-form-field-flex {
173
- padding: $spacing-select-top $spacing-select-right $spacing-select-bottom $spacing-select-left !important;
174
- }
175
- &.label-input {
176
- .mat-form-field-infix {
177
- padding-top: 7px !important;
178
- padding-bottom: 7px !important;
179
- }
180
- }
181
- }
182
-
183
- .apipass-date-filter {
184
- width: 100%;
185
- .mat-form-field-flex {
186
- padding: $spacing-date-filter-top $spacing-date-filter-right $spacing-date-filter-bottom $spacing-date-filter-left !important;
187
- }
188
- .mat-form-field-suffix {
189
- span {
190
- cursor: pointer;
191
- color: #777;
192
- }
193
- }
194
- .mat-form-field-wrapper {
195
- padding-bottom: 0 !important;
196
- }
197
- }
@@ -1,144 +0,0 @@
1
- /* cyrillic-ext */
2
- @font-face {
3
- font-family: 'PT Sans';
4
- font-style: italic;
5
- font-weight: 400;
6
- font-display: swap;
7
- src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0ysmIEDQ.woff2) format('woff2');
8
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
9
- }
10
- /* cyrillic */
11
- @font-face {
12
- font-family: 'PT Sans';
13
- font-style: italic;
14
- font-weight: 400;
15
- font-display: swap;
16
- src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0w8mIEDQ.woff2) format('woff2');
17
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
18
- }
19
- /* latin-ext */
20
- @font-face {
21
- font-family: 'PT Sans';
22
- font-style: italic;
23
- font-weight: 400;
24
- font-display: swap;
25
- src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0ycmIEDQ.woff2) format('woff2');
26
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
27
- }
28
- /* latin */
29
- @font-face {
30
- font-family: 'PT Sans';
31
- font-style: italic;
32
- font-weight: 400;
33
- font-display: swap;
34
- src: local('PT Sans Italic'), local('PTSans-Italic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0e0x8mI.woff2) format('woff2');
35
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
36
- }
37
- /* cyrillic-ext */
38
- @font-face {
39
- font-family: 'PT Sans';
40
- font-style: italic;
41
- font-weight: 700;
42
- font-display: swap;
43
- src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydIhUdwzM.woff2) format('woff2');
44
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
45
- }
46
- /* cyrillic */
47
- @font-face {
48
- font-family: 'PT Sans';
49
- font-style: italic;
50
- font-weight: 700;
51
- font-display: swap;
52
- src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydKxUdwzM.woff2) format('woff2');
53
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
54
- }
55
- /* latin-ext */
56
- @font-face {
57
- font-family: 'PT Sans';
58
- font-style: italic;
59
- font-weight: 700;
60
- font-display: swap;
61
- src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydIRUdwzM.woff2) format('woff2');
62
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
63
- }
64
- /* latin */
65
- @font-face {
66
- font-family: 'PT Sans';
67
- font-style: italic;
68
- font-weight: 700;
69
- font-display: swap;
70
- src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url(https://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOydLxUd.woff2) format('woff2');
71
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
72
- }
73
- /* cyrillic-ext */
74
- @font-face {
75
- font-family: 'PT Sans';
76
- font-style: normal;
77
- font-weight: 400;
78
- font-display: swap;
79
- src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0-ExdGM.woff2) format('woff2');
80
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
81
- }
82
- /* cyrillic */
83
- @font-face {
84
- font-family: 'PT Sans';
85
- font-style: normal;
86
- font-weight: 400;
87
- font-display: swap;
88
- src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0aExdGM.woff2) format('woff2');
89
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
90
- }
91
- /* latin-ext */
92
- @font-face {
93
- font-family: 'PT Sans';
94
- font-style: normal;
95
- font-weight: 400;
96
- font-display: swap;
97
- src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0yExdGM.woff2) format('woff2');
98
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
99
- }
100
- /* latin */
101
- @font-face {
102
- font-family: 'PT Sans';
103
- font-style: normal;
104
- font-weight: 400;
105
- font-display: swap;
106
- src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79D0KExQ.woff2) format('woff2');
107
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
108
- }
109
- /* cyrillic-ext */
110
- @font-face {
111
- font-family: 'PT Sans';
112
- font-style: normal;
113
- font-weight: 700;
114
- font-display: swap;
115
- src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0OOtLQ0Z.woff2) format('woff2');
116
- unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
117
- }
118
- /* cyrillic */
119
- @font-face {
120
- font-family: 'PT Sans';
121
- font-style: normal;
122
- font-weight: 700;
123
- font-display: swap;
124
- src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0OqtLQ0Z.woff2) format('woff2');
125
- unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
126
- }
127
- /* latin-ext */
128
- @font-face {
129
- font-family: 'PT Sans';
130
- font-style: normal;
131
- font-weight: 700;
132
- font-display: swap;
133
- src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0OCtLQ0Z.woff2) format('woff2');
134
- unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
135
- }
136
- /* latin */
137
- @font-face {
138
- font-family: 'PT Sans';
139
- font-style: normal;
140
- font-weight: 700;
141
- font-display: swap;
142
- src: local('PT Sans Bold'), local('PTSans-Bold'), url(https://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh0O6tLQ.woff2) format('woff2');
143
- unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
144
- }
@@ -1,28 +0,0 @@
1
- // Input
2
- $spacing-input-top: 10px;
3
- $spacing-input-right: 10px;
4
- $spacing-input-bottom: 10px;
5
- $spacing-input-left: 10px;
6
-
7
- // Date Filter
8
- $spacing-date-filter-top: 7px;
9
- $spacing-date-filter-right: 10px;
10
- $spacing-date-filter-bottom: 7px;
11
- $spacing-date-filter-left: 10px;
12
-
13
- // Select
14
- $spacing-select-top: 10px;
15
- $spacing-select-right: 5px;
16
- $spacing-select-bottom: 10px;
17
- $spacing-select-left: 10px;
18
-
19
- // Buttons
20
- $spacing-button-top: 7px;
21
- $spacing-button-right: 15px;
22
- $spacing-button-bottom: 7px;
23
- $spacing-button-left: 15px;
24
-
25
- $spacing-tab-button-top: 8px;
26
- $spacing-tab-button-right: 40px;
27
- $spacing-tab-button-bottom: 8px;
28
- $spacing-tab-button-left: 40px;
@@ -1,18 +0,0 @@
1
- @import "colors";
2
-
3
- .text-color-primary {
4
- color: var(--color-primary);
5
- }
6
-
7
- .text-color-secondary {
8
- color: var(--color-secondary);
9
- }
10
-
11
- .text-color-tertiary {
12
- color: var(--color-fonts-tertiary);
13
- }
14
-
15
- .font-black {
16
- color: #000 !important;
17
- }
18
-
@@ -1,38 +0,0 @@
1
- import { Component, EventEmitter, Input, Output } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class BaseSchemaComponent {
4
- constructor() {
5
- this.modelChange = new EventEmitter();
6
- }
7
- getSchemaProperties() {
8
- return this.schema.properties instanceof Array ? this.schema.properties : [this.schema.properties];
9
- }
10
- canRender(property) {
11
- // tslint:disable-next-line:no-eval
12
- property.canRender = property?.conditionExpression ? eval(property.conditionExpression) : true;
13
- return property.canRender;
14
- }
15
- onDrop(event, attr) {
16
- const data = event.data;
17
- if (!attr) {
18
- attr = '';
19
- }
20
- attr += `{{${data}}}`;
21
- return attr;
22
- }
23
- }
24
- BaseSchemaComponent.ɵfac = function BaseSchemaComponent_Factory(t) { return new (t || BaseSchemaComponent)(); };
25
- BaseSchemaComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: BaseSchemaComponent, selectors: [["ng-component"]], inputs: { model: "model", schema: "schema" }, outputs: { modelChange: "modelChange" }, decls: 0, vars: 0, template: function BaseSchemaComponent_Template(rf, ctx) { }, encapsulation: 2 });
26
- (function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BaseSchemaComponent, [{
27
- type: Component,
28
- args: [{
29
- template: ''
30
- }]
31
- }], null, { model: [{
32
- type: Input
33
- }], schema: [{
34
- type: Input
35
- }], modelChange: [{
36
- type: Output
37
- }] }); })();
38
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFzZS1zY2hlbWEuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcHJvamVjdHMvc2NoZW1hcy9zcmMvYmFzZS1zY2hlbWEuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUMsTUFBTSxlQUFlLENBQUM7O0FBS3JFLE1BQU0sT0FBZ0IsbUJBQW1CO0lBSHpDO1FBT1ksZ0JBQVcsR0FBc0IsSUFBSSxZQUFZLEVBQU8sQ0FBQztLQXFCcEU7SUFuQkMsbUJBQW1CO1FBQ2pCLE9BQU8sSUFBSSxDQUFDLE1BQU0sQ0FBQyxVQUFVLFlBQVksS0FBSyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLFVBQVUsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBQ3JHLENBQUM7SUFFTSxTQUFTLENBQUMsUUFBYTtRQUM1QixtQ0FBbUM7UUFDbkMsUUFBUSxDQUFDLFNBQVMsR0FBRyxRQUFRLEVBQUUsbUJBQW1CLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsbUJBQW1CLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDO1FBQy9GLE9BQU8sUUFBUSxDQUFDLFNBQVMsQ0FBQztJQUM1QixDQUFDO0lBRU0sTUFBTSxDQUFDLEtBQVUsRUFBRSxJQUFTO1FBQ2pDLE1BQU0sSUFBSSxHQUFHLEtBQUssQ0FBQyxJQUFJLENBQUM7UUFDeEIsSUFBSSxDQUFDLElBQUksRUFBRTtZQUNULElBQUksR0FBRyxFQUFFLENBQUM7U0FDWDtRQUNELElBQUksSUFBSSxLQUFLLElBQUksSUFBSSxDQUFDO1FBQ3RCLE9BQU8sSUFBSSxDQUFDO0lBQ2QsQ0FBQzs7c0ZBdkJtQixtQkFBbUI7c0VBQW5CLG1CQUFtQjt1RkFBbkIsbUJBQW1CO2NBSHhDLFNBQVM7ZUFBQztnQkFDVCxRQUFRLEVBQUUsRUFBRTthQUNiO2dCQUdVLEtBQUs7a0JBQWIsS0FBSztZQUNVLE1BQU07a0JBQXJCLEtBQUs7WUFDSSxXQUFXO2tCQUFwQixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE91dHB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICB0ZW1wbGF0ZTogJydcclxufSlcclxuZXhwb3J0IGFic3RyYWN0IGNsYXNzIEJhc2VTY2hlbWFDb21wb25lbnQge1xyXG5cclxuICBASW5wdXQoKSBtb2RlbDogYW55O1xyXG4gIEBJbnB1dCgpIHB1YmxpYyBzY2hlbWE6IGFueTtcclxuICBAT3V0cHV0KCkgbW9kZWxDaGFuZ2U6IEV2ZW50RW1pdHRlcjxhbnk+ID0gbmV3IEV2ZW50RW1pdHRlcjxhbnk+KCk7XHJcblxyXG4gIGdldFNjaGVtYVByb3BlcnRpZXMoKTogYW55IHtcclxuICAgIHJldHVybiB0aGlzLnNjaGVtYS5wcm9wZXJ0aWVzIGluc3RhbmNlb2YgQXJyYXkgPyB0aGlzLnNjaGVtYS5wcm9wZXJ0aWVzIDogW3RoaXMuc2NoZW1hLnByb3BlcnRpZXNdO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIGNhblJlbmRlcihwcm9wZXJ0eTogYW55KTogYm9vbGVhbiB7XHJcbiAgICAvLyB0c2xpbnQ6ZGlzYWJsZS1uZXh0LWxpbmU6bm8tZXZhbFxyXG4gICAgcHJvcGVydHkuY2FuUmVuZGVyID0gcHJvcGVydHk/LmNvbmRpdGlvbkV4cHJlc3Npb24gPyBldmFsKHByb3BlcnR5LmNvbmRpdGlvbkV4cHJlc3Npb24pIDogdHJ1ZTtcclxuICAgIHJldHVybiBwcm9wZXJ0eS5jYW5SZW5kZXI7XHJcbiAgfVxyXG5cclxuICBwdWJsaWMgb25Ecm9wKGV2ZW50OiBhbnksIGF0dHI6IGFueSk6IHN0cmluZyB7XHJcbiAgICBjb25zdCBkYXRhID0gZXZlbnQuZGF0YTtcclxuICAgIGlmICghYXR0cikge1xyXG4gICAgICBhdHRyID0gJyc7XHJcbiAgICB9XHJcbiAgICBhdHRyICs9IGB7eyR7ZGF0YX19fWA7XHJcbiAgICByZXR1cm4gYXR0cjtcclxuICB9XHJcblxyXG59XHJcbiJdfQ==
@@ -1,17 +0,0 @@
1
- export * from './schema-form-render.module';
2
- export * from './schema-validation-field';
3
- export * from './schema-form-render';
4
- export * from './schema-fields.service';
5
- export * from './base-schema.component';
6
- export * from './schema-custom-attributes/schema-custom-attributes';
7
- export * from './schema-form/schema-form';
8
- export * from './schema-form/schema-array/schema-array';
9
- export * from './schema-form/schema-array/array-session/array-session';
10
- export * from './schema-form/schema-input/schema-input';
11
- export * from './schema-form/schema-input/field-render/field-render';
12
- export * from './schema-form/schema-input/input-render/input-render';
13
- export * from './schema-form/schema-input/input-render/boolean-input/boolean-input.component';
14
- export * from './schema-form/schema-input/input-render/number-input/number-input.component';
15
- export * from './schema-form/schema-object/schema-object';
16
- export * from './type-script-compile/type-script-compile.base';
17
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL3NjaGVtYXMvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMscURBQXFELENBQUM7QUFDcEUsY0FBYywyQkFBMkIsQ0FBQztBQUMxQyxjQUFjLHlDQUF5QyxDQUFDO0FBQ3hELGNBQWMsd0RBQXdELENBQUM7QUFDdkUsY0FBYyx5Q0FBeUMsQ0FBQztBQUN4RCxjQUFjLHNEQUFzRCxDQUFDO0FBQ3JFLGNBQWMsc0RBQXNELENBQUM7QUFDckUsY0FBYywrRUFBK0UsQ0FBQztBQUM5RixjQUFjLDZFQUE2RSxDQUFDO0FBQzVGLGNBQWMsMkNBQTJDLENBQUM7QUFFMUQsY0FBYyxnREFBZ0QsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2NoZW1hLWZvcm0tcmVuZGVyLm1vZHVsZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vc2NoZW1hLXZhbGlkYXRpb24tZmllbGQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3NjaGVtYS1mb3JtLXJlbmRlcic7XHJcbmV4cG9ydCAqIGZyb20gJy4vc2NoZW1hLWZpZWxkcy5zZXJ2aWNlJztcclxuZXhwb3J0ICogZnJvbSAnLi9iYXNlLXNjaGVtYS5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3NjaGVtYS1jdXN0b20tYXR0cmlidXRlcy9zY2hlbWEtY3VzdG9tLWF0dHJpYnV0ZXMnO1xyXG5leHBvcnQgKiBmcm9tICcuL3NjaGVtYS1mb3JtL3NjaGVtYS1mb3JtJztcclxuZXhwb3J0ICogZnJvbSAnLi9zY2hlbWEtZm9ybS9zY2hlbWEtYXJyYXkvc2NoZW1hLWFycmF5JztcclxuZXhwb3J0ICogZnJvbSAnLi9zY2hlbWEtZm9ybS9zY2hlbWEtYXJyYXkvYXJyYXktc2Vzc2lvbi9hcnJheS1zZXNzaW9uJztcclxuZXhwb3J0ICogZnJvbSAnLi9zY2hlbWEtZm9ybS9zY2hlbWEtaW5wdXQvc2NoZW1hLWlucHV0JztcclxuZXhwb3J0ICogZnJvbSAnLi9zY2hlbWEtZm9ybS9zY2hlbWEtaW5wdXQvZmllbGQtcmVuZGVyL2ZpZWxkLXJlbmRlcic7XHJcbmV4cG9ydCAqIGZyb20gJy4vc2NoZW1hLWZvcm0vc2NoZW1hLWlucHV0L2lucHV0LXJlbmRlci9pbnB1dC1yZW5kZXInO1xyXG5leHBvcnQgKiBmcm9tICcuL3NjaGVtYS1mb3JtL3NjaGVtYS1pbnB1dC9pbnB1dC1yZW5kZXIvYm9vbGVhbi1pbnB1dC9ib29sZWFuLWlucHV0LmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vc2NoZW1hLWZvcm0vc2NoZW1hLWlucHV0L2lucHV0LXJlbmRlci9udW1iZXItaW5wdXQvbnVtYmVyLWlucHV0LmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vc2NoZW1hLWZvcm0vc2NoZW1hLW9iamVjdC9zY2hlbWEtb2JqZWN0JztcclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vdHlwZS1zY3JpcHQtY29tcGlsZS90eXBlLXNjcmlwdC1jb21waWxlLmJhc2UnO1xyXG4iXX0=