@morozeckiy/dd-lib 0.1.20 → 0.1.21
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/README.md +6 -21
- package/assets/scss/common.scss +8 -0
- package/assets/scss/mixins.scss +44 -0
- package/assets/scss/reset.scss +331 -106
- package/assets/styles.scss +1 -3
- package/esm2022/lib/core/dialog/modal-base/modal-base.component.mjs +45 -0
- package/esm2022/lib/core/dialog/modal-base/modal-common.component.mjs +13 -0
- package/esm2022/lib/core/index.mjs +3 -1
- package/esm2022/lib/lib-accordion/lib-accordion.component.mjs +3 -3
- package/esm2022/morozeckiy-dd-lib2.mjs +5 -0
- package/fesm2022/morozeckiy-dd-lib.mjs +55 -4
- package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -1
- package/fesm2022/morozeckiy-dd-lib2.mjs +2897 -0
- package/fesm2022/morozeckiy-dd-lib2.mjs.map +1 -0
- package/lib/core/dialog/modal-base/modal-base.component.d.ts +21 -0
- package/lib/core/dialog/modal-base/modal-common.component.d.ts +6 -0
- package/lib/core/index.d.ts +2 -0
- package/morozeckiy-dd-lib-0.1.21.tgz +0 -0
- package/morozeckiy-dd-lib2-0.1.21.tgz +0 -0
- package/package.json +1 -1
- package/morozeckiy-dd-lib-0.1.20.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,24 +1,9 @@
|
|
|
1
1
|
# DdLib
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Для публикации библиотеки необходимо повысить версию либы в рутовом проекте и в projects
|
|
4
|
+
npm version patch - для меких багов
|
|
5
|
+
npm version minor - в случае добавления нового функционала
|
|
6
|
+
npm version major - в случае изменения работы текущего функционала
|
|
4
7
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project dd-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project dd-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project dd-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build dd-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build dd-lib`, go to the dist folder `cd dist/dd-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test dd-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
8
|
+
запустить команду lib:publish
|
|
9
|
+
изменить версию в исходном проекте
|
package/assets/scss/common.scss
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
@import '../scss/vars';
|
|
4
4
|
|
|
5
5
|
.root-container {
|
|
6
|
+
font-family: 'ALS_Sirius', Roboto, Helvetica, Arial, san-serif, serif; /* 1 */
|
|
7
|
+
-ms-text-size-adjust: 100%; /* 2 */
|
|
8
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
6
9
|
min-height: calc(100vh - var(--header-height));
|
|
7
10
|
background-color: var(--main-bgc);
|
|
8
11
|
overflow: hidden; //выпадашка поиска в подписка гор воды закатывается под футер
|
|
@@ -227,3 +230,8 @@
|
|
|
227
230
|
width: 30%;
|
|
228
231
|
}
|
|
229
232
|
}
|
|
233
|
+
@include offsets('');
|
|
234
|
+
|
|
235
|
+
@include below($mobile) {
|
|
236
|
+
@include offsets('m-');
|
|
237
|
+
}
|
package/assets/scss/mixins.scss
CHANGED
|
@@ -73,3 +73,47 @@
|
|
|
73
73
|
src: $src;
|
|
74
74
|
}
|
|
75
75
|
}
|
|
76
|
+
|
|
77
|
+
@mixin offsets($prefix) {
|
|
78
|
+
@for $i from 0 through 24 {
|
|
79
|
+
.#{$prefix}mt-#{$i * 4} {
|
|
80
|
+
margin-top: #{$i * 4}px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.#{$prefix}mb-#{$i * 4} {
|
|
84
|
+
margin-bottom: #{$i * 4}px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.#{$prefix}ml-#{$i * 4} {
|
|
88
|
+
margin-left: #{$i * 4}px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.#{$prefix}mr-#{$i * 4} {
|
|
92
|
+
margin-right: #{$i * 4}px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.#{$prefix}m-#{$i * 4} {
|
|
96
|
+
margin: #{$i * 4}px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.#{$prefix}pt-#{$i * 4} {
|
|
100
|
+
padding-top: #{$i * 4}px;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.#{$prefix}pb-#{$i * 4} {
|
|
104
|
+
padding-bottom: #{$i * 4}px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.#{$prefix}pl-#{$i * 4} {
|
|
108
|
+
padding-left: #{$i * 4}px;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.#{$prefix}pr-#{$i * 4} {
|
|
112
|
+
padding-right: #{$i * 4}px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.#{$prefix}p-#{$i * 4} {
|
|
116
|
+
padding: #{$i * 4}px;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
package/assets/scss/reset.scss
CHANGED
|
@@ -1,84 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
object,
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
acronym,
|
|
20
|
-
address,
|
|
21
|
-
big,
|
|
22
|
-
cite,
|
|
23
|
-
code,
|
|
24
|
-
del,
|
|
25
|
-
dfn,
|
|
26
|
-
em,
|
|
27
|
-
img,
|
|
28
|
-
ins,
|
|
29
|
-
kbd,
|
|
30
|
-
q,
|
|
31
|
-
s,
|
|
32
|
-
samp,
|
|
33
|
-
small,
|
|
34
|
-
strike,
|
|
35
|
-
strong,
|
|
36
|
-
sub,
|
|
37
|
-
sup,
|
|
38
|
-
tt,
|
|
39
|
-
var,
|
|
40
|
-
b,
|
|
41
|
-
u,
|
|
42
|
-
i,
|
|
43
|
-
center,
|
|
44
|
-
dl,
|
|
45
|
-
dt,
|
|
46
|
-
dd,
|
|
47
|
-
ol,
|
|
48
|
-
ul,
|
|
49
|
-
li,
|
|
50
|
-
fieldset,
|
|
51
|
-
form,
|
|
52
|
-
label,
|
|
53
|
-
legend,
|
|
54
|
-
table,
|
|
55
|
-
caption,
|
|
56
|
-
tbody,
|
|
57
|
-
tfoot,
|
|
58
|
-
thead,
|
|
59
|
-
tr,
|
|
60
|
-
th,
|
|
61
|
-
td,
|
|
62
|
-
article,
|
|
63
|
-
aside,
|
|
64
|
-
canvas,
|
|
65
|
-
details,
|
|
66
|
-
embed,
|
|
67
|
-
figure,
|
|
68
|
-
figcaption,
|
|
69
|
-
footer,
|
|
70
|
-
header,
|
|
71
|
-
hgroup,
|
|
72
|
-
menu,
|
|
73
|
-
nav,
|
|
74
|
-
output,
|
|
75
|
-
ruby,
|
|
76
|
-
section,
|
|
77
|
-
summary,
|
|
78
|
-
time,
|
|
79
|
-
mark,
|
|
80
|
-
audio,
|
|
81
|
-
video {
|
|
1
|
+
/* http://meyerweb.com/eric/tools/css/reset/
|
|
2
|
+
v2.0-modified | 20110126
|
|
3
|
+
License: none (public domain)
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
html, body, div, span, applet, object, iframe,
|
|
7
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
8
|
+
a, abbr, acronym, address, big, cite, code,
|
|
9
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
|
10
|
+
small, strike, strong, sub, sup, tt, var,
|
|
11
|
+
b, u, i, center,
|
|
12
|
+
dl, dt, dd, ol, ul, li,
|
|
13
|
+
fieldset, form, label, legend,
|
|
14
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
|
15
|
+
article, aside, canvas, details, embed,
|
|
16
|
+
figure, figcaption, footer, header, hgroup,
|
|
17
|
+
menu, nav, output, ruby, section, summary,
|
|
18
|
+
time, mark, audio, video {
|
|
82
19
|
margin: 0;
|
|
83
20
|
padding: 0;
|
|
84
21
|
border: 0;
|
|
@@ -87,18 +24,14 @@ video {
|
|
|
87
24
|
vertical-align: baseline;
|
|
88
25
|
}
|
|
89
26
|
|
|
27
|
+
/* make sure to set some focus styles for accessibility */
|
|
28
|
+
:focus {
|
|
29
|
+
outline: 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
90
32
|
/* HTML5 display-role reset for older browsers */
|
|
91
|
-
article,
|
|
92
|
-
|
|
93
|
-
details,
|
|
94
|
-
figcaption,
|
|
95
|
-
figure,
|
|
96
|
-
footer,
|
|
97
|
-
header,
|
|
98
|
-
hgroup,
|
|
99
|
-
menu,
|
|
100
|
-
nav,
|
|
101
|
-
section {
|
|
33
|
+
article, aside, details, figcaption, figure,
|
|
34
|
+
footer, header, hgroup, menu, nav, section {
|
|
102
35
|
display: block;
|
|
103
36
|
}
|
|
104
37
|
|
|
@@ -106,20 +39,16 @@ body {
|
|
|
106
39
|
line-height: 1;
|
|
107
40
|
}
|
|
108
41
|
|
|
109
|
-
ol,
|
|
110
|
-
ul {
|
|
42
|
+
ol, ul {
|
|
111
43
|
list-style: none;
|
|
112
44
|
}
|
|
113
45
|
|
|
114
|
-
blockquote,
|
|
115
|
-
q {
|
|
46
|
+
blockquote, q {
|
|
116
47
|
quotes: none;
|
|
117
48
|
}
|
|
118
49
|
|
|
119
|
-
blockquote:before,
|
|
120
|
-
|
|
121
|
-
q:before,
|
|
122
|
-
q:after {
|
|
50
|
+
blockquote:before, blockquote:after,
|
|
51
|
+
q:before, q:after {
|
|
123
52
|
content: '';
|
|
124
53
|
content: none;
|
|
125
54
|
}
|
|
@@ -129,13 +58,309 @@ table {
|
|
|
129
58
|
border-spacing: 0;
|
|
130
59
|
}
|
|
131
60
|
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
61
|
+
input[type=search]::-webkit-search-cancel-button,
|
|
62
|
+
input[type=search]::-webkit-search-decoration,
|
|
63
|
+
input[type=search]::-webkit-search-results-button,
|
|
64
|
+
input[type=search]::-webkit-search-results-decoration {
|
|
65
|
+
-webkit-appearance: none;
|
|
66
|
+
-moz-appearance: none;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
input[type=search] {
|
|
70
|
+
-webkit-appearance: none;
|
|
71
|
+
-moz-appearance: none;
|
|
72
|
+
-webkit-box-sizing: content-box;
|
|
73
|
+
-moz-box-sizing: content-box;
|
|
74
|
+
box-sizing: content-box;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
textarea {
|
|
78
|
+
overflow: auto;
|
|
79
|
+
vertical-align: top;
|
|
80
|
+
resize: vertical;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
|
|
85
|
+
*/
|
|
86
|
+
|
|
87
|
+
audio,
|
|
88
|
+
canvas,
|
|
89
|
+
video {
|
|
90
|
+
display: inline-block;
|
|
91
|
+
*display: inline;
|
|
92
|
+
*zoom: 1;
|
|
93
|
+
max-width: 100%;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Prevent modern browsers from displaying `audio` without controls.
|
|
98
|
+
* Remove excess height in iOS 5 devices.
|
|
99
|
+
*/
|
|
100
|
+
|
|
101
|
+
audio:not([controls]) {
|
|
102
|
+
display: none;
|
|
103
|
+
height: 0;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
|
|
108
|
+
* Known issue: no IE 6 support.
|
|
109
|
+
*/
|
|
110
|
+
|
|
111
|
+
[hidden] {
|
|
112
|
+
display: none;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
|
|
117
|
+
* `em` units.
|
|
118
|
+
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
|
119
|
+
* user zoom.
|
|
120
|
+
*/
|
|
121
|
+
|
|
122
|
+
html {
|
|
123
|
+
font-size: 100%; /* 1 */
|
|
124
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
|
125
|
+
-ms-text-size-adjust: 100%; /* 2 */
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Address `outline` inconsistency between Chrome and other browsers.
|
|
130
|
+
*/
|
|
131
|
+
|
|
132
|
+
a:focus {
|
|
133
|
+
outline: thin dotted;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* Improve readability when focused and also mouse hovered in all browsers.
|
|
138
|
+
*/
|
|
139
|
+
|
|
140
|
+
a:active,
|
|
141
|
+
a:hover {
|
|
142
|
+
outline: 0;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
|
|
147
|
+
* 2. Improve image quality when scaled in IE 7.
|
|
148
|
+
*/
|
|
149
|
+
|
|
150
|
+
img {
|
|
151
|
+
border: 0; /* 1 */
|
|
152
|
+
-ms-interpolation-mode: bicubic; /* 2 */
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
|
|
157
|
+
*/
|
|
158
|
+
|
|
159
|
+
figure {
|
|
160
|
+
margin: 0;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Correct margin displayed oddly in IE 6/7.
|
|
165
|
+
*/
|
|
166
|
+
|
|
167
|
+
form {
|
|
168
|
+
margin: 0;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* Define consistent border, margin, and padding.
|
|
173
|
+
*/
|
|
174
|
+
|
|
175
|
+
fieldset {
|
|
176
|
+
border: 1px solid #c0c0c0;
|
|
177
|
+
margin: 0 2px;
|
|
178
|
+
padding: 0.35em 0.625em 0.75em;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* 1. Correct color not being inherited in IE 6/7/8/9.
|
|
183
|
+
* 2. Correct text not wrapping in Firefox 3.
|
|
184
|
+
* 3. Correct alignment displayed oddly in IE 6/7.
|
|
185
|
+
*/
|
|
186
|
+
|
|
187
|
+
legend {
|
|
188
|
+
border: 0; /* 1 */
|
|
189
|
+
padding: 0;
|
|
190
|
+
white-space: normal; /* 2 */
|
|
191
|
+
*margin-left: -7px; /* 3 */
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* 1. Correct font size not being inherited in all browsers.
|
|
196
|
+
* 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
|
|
197
|
+
* and Chrome.
|
|
198
|
+
* 3. Improve appearance and consistency in all browsers.
|
|
199
|
+
*/
|
|
200
|
+
|
|
201
|
+
button,
|
|
202
|
+
input,
|
|
203
|
+
select,
|
|
204
|
+
textarea {
|
|
205
|
+
font-size: 100%; /* 1 */
|
|
206
|
+
margin: 0; /* 2 */
|
|
207
|
+
vertical-align: baseline; /* 3 */
|
|
208
|
+
*vertical-align: middle; /* 3 */
|
|
135
209
|
}
|
|
136
210
|
|
|
137
|
-
|
|
138
|
-
|
|
211
|
+
/**
|
|
212
|
+
* Address Firefox 3+ setting `line-height` on `input` using `!important` in
|
|
213
|
+
* the UA stylesheet.
|
|
214
|
+
*/
|
|
215
|
+
|
|
216
|
+
button,
|
|
139
217
|
input {
|
|
140
|
-
|
|
218
|
+
line-height: normal;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
/**
|
|
222
|
+
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
|
223
|
+
* All other form control elements do not inherit `text-transform` values.
|
|
224
|
+
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
|
|
225
|
+
* Correct `select` style inheritance in Firefox 4+ and Opera.
|
|
226
|
+
*/
|
|
227
|
+
|
|
228
|
+
button,
|
|
229
|
+
select {
|
|
230
|
+
text-transform: none;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
|
235
|
+
* and `video` controls.
|
|
236
|
+
* 2. Correct inability to style clickable `input` types in iOS.
|
|
237
|
+
* 3. Improve usability and consistency of cursor style between image-type
|
|
238
|
+
* `input` and others.
|
|
239
|
+
* 4. Remove inner spacing in IE 7 without affecting normal text inputs.
|
|
240
|
+
* Known issue: inner spacing remains in IE 6.
|
|
241
|
+
*/
|
|
242
|
+
|
|
243
|
+
button,
|
|
244
|
+
html input[type="button"], /* 1 */
|
|
245
|
+
input[type="reset"],
|
|
246
|
+
input[type="submit"] {
|
|
247
|
+
-webkit-appearance: button; /* 2 */
|
|
248
|
+
cursor: pointer; /* 3 */
|
|
249
|
+
*overflow: visible; /* 4 */
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* Re-set default cursor for disabled elements.
|
|
254
|
+
*/
|
|
255
|
+
|
|
256
|
+
button[disabled],
|
|
257
|
+
html input[disabled] {
|
|
258
|
+
cursor: default;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* 1. Address box sizing set to content-box in IE 8/9.
|
|
263
|
+
* 2. Remove excess padding in IE 8/9.
|
|
264
|
+
* 3. Remove excess padding in IE 7.
|
|
265
|
+
* Known issue: excess padding remains in IE 6.
|
|
266
|
+
*/
|
|
267
|
+
|
|
268
|
+
input[type="checkbox"],
|
|
269
|
+
input[type="radio"] {
|
|
270
|
+
box-sizing: border-box; /* 1 */
|
|
271
|
+
padding: 0; /* 2 */
|
|
272
|
+
*height: 13px; /* 3 */
|
|
273
|
+
*width: 13px; /* 3 */
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
|
278
|
+
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
|
279
|
+
* (include `-moz` to future-proof).
|
|
280
|
+
*/
|
|
281
|
+
|
|
282
|
+
input[type="search"] {
|
|
283
|
+
-webkit-appearance: textfield; /* 1 */
|
|
284
|
+
-moz-box-sizing: content-box;
|
|
285
|
+
-webkit-box-sizing: content-box; /* 2 */
|
|
286
|
+
box-sizing: content-box;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
* Remove inner padding and search cancel button in Safari 5 and Chrome
|
|
291
|
+
* on OS X.
|
|
292
|
+
*/
|
|
293
|
+
|
|
294
|
+
input[type="search"]::-webkit-search-cancel-button,
|
|
295
|
+
input[type="search"]::-webkit-search-decoration {
|
|
296
|
+
-webkit-appearance: none;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
/**
|
|
300
|
+
* Remove inner padding and border in Firefox 3+.
|
|
301
|
+
*/
|
|
302
|
+
|
|
303
|
+
button::-moz-focus-inner,
|
|
304
|
+
input::-moz-focus-inner {
|
|
305
|
+
border: 0;
|
|
306
|
+
padding: 0;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* 1. Remove default vertical scrollbar in IE 6/7/8/9.
|
|
311
|
+
* 2. Improve readability and alignment in all browsers.
|
|
312
|
+
*/
|
|
313
|
+
|
|
314
|
+
textarea {
|
|
315
|
+
overflow: auto; /* 1 */
|
|
316
|
+
vertical-align: top; /* 2 */
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* Remove most spacing between table cells.
|
|
321
|
+
*/
|
|
322
|
+
|
|
323
|
+
table {
|
|
324
|
+
border-collapse: collapse;
|
|
325
|
+
border-spacing: 0;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
html,
|
|
329
|
+
button,
|
|
330
|
+
input,
|
|
331
|
+
select,
|
|
332
|
+
textarea {
|
|
333
|
+
color: #222;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
::-moz-selection {
|
|
338
|
+
background: #b3d4fc;
|
|
339
|
+
text-shadow: none;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
::selection {
|
|
343
|
+
background: #b3d4fc;
|
|
344
|
+
text-shadow: none;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
img {
|
|
348
|
+
vertical-align: middle;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
fieldset {
|
|
352
|
+
border: 0;
|
|
353
|
+
margin: 0;
|
|
354
|
+
padding: 0;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
textarea {
|
|
358
|
+
resize: vertical;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.chromeframe {
|
|
362
|
+
margin: 0.2em 0;
|
|
363
|
+
background: #ccc;
|
|
364
|
+
color: #000;
|
|
365
|
+
padding: 0.2em 0;
|
|
141
366
|
}
|
package/assets/styles.scss
CHANGED
|
@@ -4,10 +4,8 @@
|
|
|
4
4
|
@import './scss/reset';
|
|
5
5
|
@import './scss/mixins';
|
|
6
6
|
@import './scss/fonts';
|
|
7
|
-
@import './scss/normalize';
|
|
8
7
|
@import './scss/titles';
|
|
9
|
-
@import './scss/offsets';
|
|
10
8
|
@import './scss/theme';
|
|
11
9
|
@import './scss/modal';
|
|
12
|
-
@import '@angular/cdk/overlay-prebuilt.css';
|
|
13
10
|
@import './scss/common';
|
|
11
|
+
@import '@angular/cdk/overlay-prebuilt.css';
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Component, HostListener, Input } from '@angular/core';
|
|
2
|
+
import { NgComponentOutlet, NgTemplateOutlet } from '@angular/common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/router";
|
|
5
|
+
import * as i2 from "../dialog-ref";
|
|
6
|
+
export class ModalBaseComponent {
|
|
7
|
+
constructor(route, router, dialog) {
|
|
8
|
+
this.route = route;
|
|
9
|
+
this.router = router;
|
|
10
|
+
this.dialog = dialog;
|
|
11
|
+
this.clearFragment = true;
|
|
12
|
+
this.padding = '40';
|
|
13
|
+
this.afterDestroy = () => {
|
|
14
|
+
if (this.clearFragment) {
|
|
15
|
+
this.router.navigate([], { fragment: undefined, preserveFragment: false, relativeTo: this.route });
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
onKeydownComponent(event) {
|
|
20
|
+
if (event.key === 'Escape' || event.key === 'Esc') {
|
|
21
|
+
this.destroy();
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
close() {
|
|
25
|
+
this.dialog.close();
|
|
26
|
+
}
|
|
27
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.2", ngImport: i0, type: ModalBaseComponent, deps: [{ token: i1.ActivatedRoute }, { token: i1.Router }, { token: i2.DDDialogRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
28
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.2.2", type: ModalBaseComponent, isStandalone: true, selector: "dd-modal-base", inputs: { content: "content", component: "component", clearFragment: "clearFragment", padding: "padding" }, host: { listeners: { "document:keydown": "onKeydownComponent($event)" } }, ngImport: i0, template: "<div class=\"popup p-{{ padding }}\">\n <a (click)=\"close()\" class=\"close\"></a>\n @if (content) {\n <div class=\"popup-content\">\n <ng-template [ngTemplateOutletContext]=\"{ data }\" [ngTemplateOutlet]=\"content\"></ng-template>\n </div>\n } @if (component) {\n <div class=\"popup-content\">\n <ng-template [ngComponentOutlet]=\"component\"></ng-template>\n </div>\n } @else {\n <ng-content></ng-content>\n }\n</div>\n", styles: [".popup{display:flex;flex-direction:column;max-width:var(--main-body-width)}.close{z-index:10}.popup-content{flex-grow:1;position:relative;overflow:hidden}@media all and (max-width: 767.99px){.popup{max-width:100%;border-radius:0;padding:24px}.popup .title{padding-right:18px}}@media (max-width: 767.99px){.popup-content{display:flex;flex-direction:column;justify-content:space-between;min-height:calc(100vh - 162px)}}.popup-wrapper.has-title .popup-content{padding-top:24px}@media all and (min-width: 768px){.popup-wrapper.has-sticky-title{overflow:hidden}.popup-wrapper.has-sticky-title .popup{max-width:var(--main-body-width);height:auto;max-height:calc(100vh - 192px)}.popup-wrapper.has-sticky-title .popup-content{overflow-y:auto}}\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"] }] }); }
|
|
29
|
+
}
|
|
30
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.2", ngImport: i0, type: ModalBaseComponent, decorators: [{
|
|
31
|
+
type: Component,
|
|
32
|
+
args: [{ selector: 'dd-modal-base', standalone: true, imports: [NgTemplateOutlet, NgComponentOutlet], template: "<div class=\"popup p-{{ padding }}\">\n <a (click)=\"close()\" class=\"close\"></a>\n @if (content) {\n <div class=\"popup-content\">\n <ng-template [ngTemplateOutletContext]=\"{ data }\" [ngTemplateOutlet]=\"content\"></ng-template>\n </div>\n } @if (component) {\n <div class=\"popup-content\">\n <ng-template [ngComponentOutlet]=\"component\"></ng-template>\n </div>\n } @else {\n <ng-content></ng-content>\n }\n</div>\n", styles: [".popup{display:flex;flex-direction:column;max-width:var(--main-body-width)}.close{z-index:10}.popup-content{flex-grow:1;position:relative;overflow:hidden}@media all and (max-width: 767.99px){.popup{max-width:100%;border-radius:0;padding:24px}.popup .title{padding-right:18px}}@media (max-width: 767.99px){.popup-content{display:flex;flex-direction:column;justify-content:space-between;min-height:calc(100vh - 162px)}}.popup-wrapper.has-title .popup-content{padding-top:24px}@media all and (min-width: 768px){.popup-wrapper.has-sticky-title{overflow:hidden}.popup-wrapper.has-sticky-title .popup{max-width:var(--main-body-width);height:auto;max-height:calc(100vh - 192px)}.popup-wrapper.has-sticky-title .popup-content{overflow-y:auto}}\n"] }]
|
|
33
|
+
}], ctorParameters: () => [{ type: i1.ActivatedRoute }, { type: i1.Router }, { type: i2.DDDialogRef }], propDecorators: { content: [{
|
|
34
|
+
type: Input
|
|
35
|
+
}], component: [{
|
|
36
|
+
type: Input
|
|
37
|
+
}], clearFragment: [{
|
|
38
|
+
type: Input
|
|
39
|
+
}], padding: [{
|
|
40
|
+
type: Input
|
|
41
|
+
}], onKeydownComponent: [{
|
|
42
|
+
type: HostListener,
|
|
43
|
+
args: ['document:keydown', ['$event']]
|
|
44
|
+
}] } });
|
|
45
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kYWwtYmFzZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kZC1saWIvc3JjL2xpYi9jb3JlL2RpYWxvZy9tb2RhbC1iYXNlL21vZGFsLWJhc2UuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZGQtbGliL3NyYy9saWIvY29yZS9kaWFsb2cvbW9kYWwtYmFzZS9tb2RhbC1iYXNlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBcUIsTUFBTSxlQUFlLENBQUM7QUFDbEYsT0FBTyxFQUFFLGlCQUFpQixFQUFFLGdCQUFnQixFQUFFLE1BQU0saUJBQWlCLENBQUM7Ozs7QUFXdEUsTUFBTSxPQUFPLGtCQUFrQjtJQVM3QixZQUNVLEtBQXFCLEVBQ3JCLE1BQWMsRUFDZCxNQUF1QztRQUZ2QyxVQUFLLEdBQUwsS0FBSyxDQUFnQjtRQUNyQixXQUFNLEdBQU4sTUFBTSxDQUFRO1FBQ2QsV0FBTSxHQUFOLE1BQU0sQ0FBaUM7UUFUakMsa0JBQWEsR0FBRyxJQUFJLENBQUM7UUFDckIsWUFBTyxHQUFHLElBQUksQ0FBQztRQWtCeEIsaUJBQVksR0FBRyxHQUFHLEVBQUU7WUFDekIsSUFBSSxJQUFJLENBQUMsYUFBYSxFQUFFLENBQUM7Z0JBQ3ZCLElBQUksQ0FBQyxNQUFNLENBQUMsUUFBUSxDQUFDLEVBQUUsRUFBRSxFQUFFLFFBQVEsRUFBRSxTQUFTLEVBQUUsZ0JBQWdCLEVBQUUsS0FBSyxFQUFFLFVBQVUsRUFBRSxJQUFJLENBQUMsS0FBSyxFQUFFLENBQUMsQ0FBQztZQUNyRyxDQUFDO1FBQ0gsQ0FBQyxDQUFDO0lBYkMsQ0FBQztJQUdHLGtCQUFrQixDQUFDLEtBQW9CO1FBQzVDLElBQUksS0FBSyxDQUFDLEdBQUcsS0FBSyxRQUFRLElBQUksS0FBSyxDQUFDLEdBQUcsS0FBSyxLQUFLLEVBQUUsQ0FBQztZQUNsRCxJQUFJLENBQUMsT0FBUSxFQUFFLENBQUM7UUFDbEIsQ0FBQztJQUNILENBQUM7SUFRTSxLQUFLO1FBQ1YsSUFBSSxDQUFDLE1BQU0sQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUN0QixDQUFDOzhHQTlCVSxrQkFBa0I7a0dBQWxCLGtCQUFrQixnUUNaL0IsMGJBY0EsMnhCRE5ZLGdCQUFnQixvSkFBRSxpQkFBaUI7OzJGQUlsQyxrQkFBa0I7a0JBUDlCLFNBQVM7K0JBQ0UsZUFBZSxjQUNiLElBQUksV0FDUCxDQUFDLGdCQUFnQixFQUFFLGlCQUFpQixDQUFDO2tJQUs5QixPQUFPO3NCQUF0QixLQUFLO2dCQUNVLFNBQVM7c0JBQXhCLEtBQUs7Z0JBQ1UsYUFBYTtzQkFBNUIsS0FBSztnQkFDVSxPQUFPO3NCQUF0QixLQUFLO2dCQVlDLGtCQUFrQjtzQkFEeEIsWUFBWTt1QkFBQyxrQkFBa0IsRUFBRSxDQUFDLFFBQVEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSG9zdExpc3RlbmVyLCBJbnB1dCwgVGVtcGxhdGVSZWYsIFR5cGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE5nQ29tcG9uZW50T3V0bGV0LCBOZ1RlbXBsYXRlT3V0bGV0IH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEFjdGl2YXRlZFJvdXRlLCBSb3V0ZXIgfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuaW1wb3J0IHtERERpYWxvZ1JlZn0gZnJvbSBcIi4uL2RpYWxvZy1yZWZcIjtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZGQtbW9kYWwtYmFzZScsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtOZ1RlbXBsYXRlT3V0bGV0LCBOZ0NvbXBvbmVudE91dGxldF0sXG4gIHRlbXBsYXRlVXJsOiAnLi9tb2RhbC1iYXNlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vbW9kYWwtYmFzZS5jb21wb25lbnQuc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBNb2RhbEJhc2VDb21wb25lbnQge1xuICBASW5wdXQoKSBwdWJsaWMgY29udGVudDogVGVtcGxhdGVSZWY8YW55PiB8IHVuZGVmaW5lZDtcbiAgQElucHV0KCkgcHVibGljIGNvbXBvbmVudDogVHlwZTxhbnk+IHwgbnVsbCB8IHVuZGVmaW5lZDtcbiAgQElucHV0KCkgcHVibGljIGNsZWFyRnJhZ21lbnQgPSB0cnVlO1xuICBASW5wdXQoKSBwdWJsaWMgcGFkZGluZyA9ICc0MCc7XG4gIHB1YmxpYyBkYXRhOiBhbnk7XG5cbiAgcHVibGljIGRlc3Ryb3k6ICgoKSA9PiB7fSkgfCB1bmRlZmluZWQ7XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHJpdmF0ZSByb3V0ZTogQWN0aXZhdGVkUm91dGUsXG4gICAgcHJpdmF0ZSByb3V0ZXI6IFJvdXRlcixcbiAgICBwcml2YXRlIGRpYWxvZzogREREaWFsb2dSZWY8TW9kYWxCYXNlQ29tcG9uZW50PixcbiAgKSB7fVxuXG4gIEBIb3N0TGlzdGVuZXIoJ2RvY3VtZW50OmtleWRvd24nLCBbJyRldmVudCddKVxuICBwdWJsaWMgb25LZXlkb3duQ29tcG9uZW50KGV2ZW50OiBLZXlib2FyZEV2ZW50KTogdm9pZCB7XG4gICAgaWYgKGV2ZW50LmtleSA9PT0gJ0VzY2FwZScgfHwgZXZlbnQua2V5ID09PSAnRXNjJykge1xuICAgICAgdGhpcy5kZXN0cm95ISgpO1xuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBhZnRlckRlc3Ryb3kgPSAoKSA9PiB7XG4gICAgaWYgKHRoaXMuY2xlYXJGcmFnbWVudCkge1xuICAgICAgdGhpcy5yb3V0ZXIubmF2aWdhdGUoW10sIHsgZnJhZ21lbnQ6IHVuZGVmaW5lZCwgcHJlc2VydmVGcmFnbWVudDogZmFsc2UsIHJlbGF0aXZlVG86IHRoaXMucm91dGUgfSk7XG4gICAgfVxuICB9O1xuXG4gIHB1YmxpYyBjbG9zZSgpOiB2b2lkIHtcbiAgICB0aGlzLmRpYWxvZy5jbG9zZSgpO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwicG9wdXAgIHAte3sgcGFkZGluZyB9fVwiPlxuICA8YSAoY2xpY2spPVwiY2xvc2UoKVwiIGNsYXNzPVwiY2xvc2VcIj48L2E+XG4gIEBpZiAoY29udGVudCkge1xuICA8ZGl2IGNsYXNzPVwicG9wdXAtY29udGVudFwiPlxuICAgIDxuZy10ZW1wbGF0ZSBbbmdUZW1wbGF0ZU91dGxldENvbnRleHRdPVwieyBkYXRhIH1cIiBbbmdUZW1wbGF0ZU91dGxldF09XCJjb250ZW50XCI+PC9uZy10ZW1wbGF0ZT5cbiAgPC9kaXY+XG4gIH0gQGlmIChjb21wb25lbnQpIHtcbiAgPGRpdiBjbGFzcz1cInBvcHVwLWNvbnRlbnRcIj5cbiAgICA8bmctdGVtcGxhdGUgW25nQ29tcG9uZW50T3V0bGV0XT1cImNvbXBvbmVudFwiPjwvbmctdGVtcGxhdGU+XG4gIDwvZGl2PlxuICB9IEBlbHNlIHtcbiAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuICB9XG48L2Rpdj5cbiJdfQ==
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class ModalCommonComponent {
|
|
4
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.2", ngImport: i0, type: ModalCommonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.2", type: ModalCommonComponent, selector: "ng-component", ngImport: i0, template: '', isInline: true }); }
|
|
6
|
+
}
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.2", ngImport: i0, type: ModalCommonComponent, decorators: [{
|
|
8
|
+
type: Component,
|
|
9
|
+
args: [{
|
|
10
|
+
template: '',
|
|
11
|
+
}]
|
|
12
|
+
}] });
|
|
13
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kYWwtY29tbW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2RkLWxpYi9zcmMvbGliL2NvcmUvZGlhbG9nL21vZGFsLWJhc2UvbW9kYWwtY29tbW9uLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUsxQyxNQUFNLE9BQWdCLG9CQUFvQjs4R0FBcEIsb0JBQW9CO2tHQUFwQixvQkFBb0Isb0RBRjlCLEVBQUU7OzJGQUVRLG9CQUFvQjtrQkFIekMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsRUFBRTtpQkFDYiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGU6ICcnLFxufSlcbmV4cG9ydCBhYnN0cmFjdCBjbGFzcyBNb2RhbENvbW1vbkNvbXBvbmVudCB7XG4gIHB1YmxpYyBkZXN0cm95OiAoKCkgPT4ge30pIHwgdW5kZWZpbmVkO1xufVxuIl19
|
|
@@ -26,4 +26,6 @@ export * from './toast/toast-placeholder/toast-placeholder.component';
|
|
|
26
26
|
export * from './toast/toast-base/toast-base.component';
|
|
27
27
|
// dialog
|
|
28
28
|
export * from './dialog/dialog.service';
|
|
29
|
-
|
|
29
|
+
export * from './dialog/modal-base/modal-common.component';
|
|
30
|
+
export * from './dialog/modal-base/modal-base.component';
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9kZC1saWIvc3JjL2xpYi9jb3JlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLFdBQVc7QUFDWCxjQUFjLHNDQUFzQyxDQUFBO0FBQ3BELGNBQWMseUJBQXlCLENBQUE7QUFDdkMsY0FBYyw4QkFBOEIsQ0FBQTtBQUM1QyxjQUFjLDRCQUE0QixDQUFBO0FBQzFDLGNBQWMsaUNBQWlDLENBQUE7QUFDL0MsY0FBYywrQkFBK0IsQ0FBQTtBQUM3QyxjQUFjLDRCQUE0QixDQUFBO0FBQzFDLFFBQVE7QUFDUixjQUFjLHFCQUFxQixDQUFBO0FBQ25DLGNBQWMsd0JBQXdCLENBQUE7QUFDdEMsY0FBYyxtQkFBbUIsQ0FBQTtBQUNqQyxjQUFjLHNCQUFzQixDQUFBO0FBQ3BDLGNBQWMsMEJBQTBCLENBQUE7QUFFeEMsYUFBYTtBQUNiLGNBQWUsb0NBQW9DLENBQUE7QUFDbkQsY0FBZSxnQ0FBZ0MsQ0FBQTtBQUMvQyxjQUFlLG1DQUFtQyxDQUFBO0FBQ2xELGNBQWUsc0NBQXNDLENBQUE7QUFDckQsY0FBZSx3Q0FBd0MsQ0FBQTtBQUN2RCxjQUFjLDZCQUE2QixDQUFBO0FBQzNDLGNBQWMsNkJBQTZCLENBQUE7QUFDM0MsY0FBYyxpQ0FBaUMsQ0FBQTtBQUUvQyxjQUFjLHVCQUF1QixDQUFBO0FBQ3JDLGNBQWMsdURBQXVELENBQUE7QUFDckUsY0FBYyx5Q0FBeUMsQ0FBQTtBQUN2RCxTQUFTO0FBQ1QsY0FBYyx5QkFBeUIsQ0FBQTtBQUN2QyxjQUFjLDRDQUE0QyxDQUFBO0FBQzFELGNBQWMsMENBQTBDLENBQUEiLCJzb3VyY2VzQ29udGVudCI6WyIvLyBzZXJ2aWNlc1xyXG5leHBvcnQgKiBmcm9tICcuL3NlcnZpY2VzL3RoZW1lLWNvbnN0cnVjdG9yLnNlcnZpY2UnXHJcbmV4cG9ydCAqIGZyb20gJy4vc2VydmljZXMvZGF0ZS5zZXJ2aWNlJ1xyXG5leHBvcnQgKiBmcm9tICcuL3NlcnZpY2VzL3N2Zy1pY29ucy5zZXJ2aWNlJ1xyXG5leHBvcnQgKiBmcm9tICcuL3NlcnZpY2VzL2Rlc3Ryb3kuc2VydmljZSdcclxuZXhwb3J0ICogZnJvbSAnLi9zZXJ2aWNlcy9pbnRlcmNlcHRvcnMuc2VydmljZSdcclxuZXhwb3J0ICogZnJvbSAnLi9zZXJ2aWNlcy92YWxpZGF0b3JzLnNlcnZpY2UnXHJcbmV4cG9ydCAqIGZyb20gJy4vc2VydmljZXMvZmV0Y2hlci5zZXJ2aWNlJ1xyXG4vLyBwaXBlc1xyXG5leHBvcnQgKiBmcm9tICcuL3BpcGVzL2ZpbHRlci5waXBlJ1xyXG5leHBvcnQgKiBmcm9tICcuL3BpcGVzL2hpZ2hsaWdodC5waXBlJ1xyXG5leHBvcnQgKiBmcm9tICcuL3BpcGVzL3NhZmUucGlwZSdcclxuZXhwb3J0ICogZnJvbSAnLi9waXBlcy9yZXZlcnNlLnBpcGUnXHJcbmV4cG9ydCAqIGZyb20gJy4vcGlwZXMvZmlsdGVyLXRhYnMucGlwZSdcclxuXHJcbi8vIGRpcmVjdGl2ZXNcclxuZXhwb3J0ICogZnJvbSAgJy4vZGlyZWN0aXZlcy9hdXRvLWhlaWdodC5kaXJlY3RpdmUnXHJcbmV4cG9ydCAqIGZyb20gICcuL2RpcmVjdGl2ZXMvY291bnRlci5kaXJlY3RpdmUnXHJcbmV4cG9ydCAqIGZyb20gICcuL2RpcmVjdGl2ZXMvZGVjbGVuc2lvbi5kaXJlY3RpdmUnXHJcbmV4cG9ydCAqIGZyb20gICcuL2RpcmVjdGl2ZXMvY2xpY2stb3V0c2lkZS5kaXJlY3RpdmUnXHJcbmV4cG9ydCAqIGZyb20gICcuL2RpcmVjdGl2ZXMvcmVzaXplLXRleHRhcmVhLmRpcmVjdGl2ZSdcclxuZXhwb3J0ICogZnJvbSAnLi90b29sdGlwL3Rvb2x0aXAuZGlyZWN0aXZlJ1xyXG5leHBvcnQgKiBmcm9tICcuL3Rvb2x0aXAvdG9vbHRpcC5jb21wb25lbnQnXHJcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90cmlhbmdsZS5kaXJlY3RpdmUnXHJcblxyXG5leHBvcnQgKiBmcm9tICcuL3RvYXN0L3RvYXN0LnNlcnZpY2UnXHJcbmV4cG9ydCAqIGZyb20gJy4vdG9hc3QvdG9hc3QtcGxhY2Vob2xkZXIvdG9hc3QtcGxhY2Vob2xkZXIuY29tcG9uZW50J1xyXG5leHBvcnQgKiBmcm9tICcuL3RvYXN0L3RvYXN0LWJhc2UvdG9hc3QtYmFzZS5jb21wb25lbnQnXHJcbi8vIGRpYWxvZ1xyXG5leHBvcnQgKiBmcm9tICcuL2RpYWxvZy9kaWFsb2cuc2VydmljZSdcclxuZXhwb3J0ICogZnJvbSAnLi9kaWFsb2cvbW9kYWwtYmFzZS9tb2RhbC1jb21tb24uY29tcG9uZW50J1xyXG5leHBvcnQgKiBmcm9tICcuL2RpYWxvZy9tb2RhbC1iYXNlL21vZGFsLWJhc2UuY29tcG9uZW50J1xyXG4iXX0=
|