solid-ui 2.4.19-6a4efc3e → 2.4.19-72f773b9
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/lib/acl/access-groups.d.ts +5 -4
- package/lib/acl/access-groups.d.ts.map +1 -1
- package/lib/acl/access-groups.js +1 -0
- package/lib/acl/access-groups.js.map +1 -1
- package/lib/acl/acl-control.d.ts +2 -2
- package/lib/acl/acl-control.d.ts.map +1 -1
- package/lib/acl/acl-control.js.map +1 -1
- package/lib/acl/acl.d.ts +5 -5
- package/lib/acl/acl.d.ts.map +1 -1
- package/lib/acl/acl.js.map +1 -1
- package/lib/footer/index.d.ts +4 -4
- package/lib/footer/index.d.ts.map +1 -1
- package/lib/footer/index.js.map +1 -1
- package/lib/header/styleMap.d.ts +0 -4
- package/lib/header/styleMap.d.ts.map +1 -1
- package/lib/header/styleMap.js +15 -20
- package/lib/header/styleMap.js.map +1 -1
- package/lib/login/login.d.ts +4 -1
- package/lib/login/login.d.ts.map +1 -1
- package/lib/login/login.js +226 -133
- package/lib/login/login.js.map +1 -1
- package/lib/style.js +3 -3
- package/lib/style.js.map +1 -1
- package/lib/tabs.d.ts +1 -1
- package/lib/tabs.d.ts.map +1 -1
- package/lib/tabs.js +11 -3
- package/lib/tabs.js.map +1 -1
- package/lib/utils/headerFooterHelpers.d.ts +2 -3
- package/lib/utils/headerFooterHelpers.d.ts.map +1 -1
- package/lib/utils/headerFooterHelpers.js +63 -33
- package/lib/utils/headerFooterHelpers.js.map +1 -1
- package/lib/versionInfo.js +2 -2
- package/lib/versionInfo.js.map +1 -1
- package/lib/webpack-bundle.js +438 -275
- package/lib/webpack-bundle.js.map +1 -1
- package/lib/widgets/forms/basic.d.ts +1 -1
- package/lib/widgets/forms/basic.d.ts.map +1 -1
- package/lib/widgets/forms/basic.js +8 -6
- package/lib/widgets/forms/basic.js.map +1 -1
- package/lib/widgets/forms.js +51 -28
- package/lib/widgets/forms.js.map +1 -1
- package/package.json +1 -5
package/lib/header/styleMap.d.ts
CHANGED
|
@@ -53,7 +53,6 @@ export declare const styleMap: {
|
|
|
53
53
|
'header-user-menu__navigation-menu': {
|
|
54
54
|
background: string;
|
|
55
55
|
border: string;
|
|
56
|
-
borderRadius: string;
|
|
57
56
|
borderRight: string;
|
|
58
57
|
position: string;
|
|
59
58
|
right: string;
|
|
@@ -79,7 +78,6 @@ export declare const styleMap: {
|
|
|
79
78
|
width: string;
|
|
80
79
|
};
|
|
81
80
|
'header-banner': {
|
|
82
|
-
border: string;
|
|
83
81
|
boxShadow: string;
|
|
84
82
|
display: string;
|
|
85
83
|
justifyContent: string;
|
|
@@ -102,12 +100,10 @@ export declare const styleMap: {
|
|
|
102
100
|
'header-banner__user-menu': {
|
|
103
101
|
borderLeft: string;
|
|
104
102
|
marginLeft: string;
|
|
105
|
-
marginRight: string;
|
|
106
103
|
};
|
|
107
104
|
'header-banner__help-menu': {
|
|
108
105
|
borderLeft: string;
|
|
109
106
|
marginLeft: string;
|
|
110
|
-
marginRight: string;
|
|
111
107
|
};
|
|
112
108
|
'header-banner__icon': {
|
|
113
109
|
backgroundSize: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styleMap.d.ts","sourceRoot":"","sources":["../../src/header/styleMap.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"styleMap.d.ts","sourceRoot":"","sources":["../../src/header/styleMap.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsHpB,CAAA"}
|
package/lib/header/styleMap.js
CHANGED
|
@@ -9,17 +9,17 @@ var styleMap = {
|
|
|
9
9
|
'header-user-menu__link': {
|
|
10
10
|
background: 'none',
|
|
11
11
|
border: '0',
|
|
12
|
-
color: '
|
|
12
|
+
color: 'black',
|
|
13
13
|
cursor: 'pointer',
|
|
14
14
|
display: 'block',
|
|
15
|
-
fontFamily: '
|
|
15
|
+
fontFamily: 'Arial',
|
|
16
16
|
fontSize: '1em',
|
|
17
17
|
textAlign: 'left',
|
|
18
18
|
padding: '1em',
|
|
19
19
|
width: '100%',
|
|
20
20
|
'&:focus, &:hover': {
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
backgroundColor: 'linear-gradient(to right, #7C4DFF 0%, #18A9E6 50%, #01C9EA 100%)' // backgroundColor: '#eee'
|
|
22
|
+
|
|
23
23
|
},
|
|
24
24
|
a: {
|
|
25
25
|
textDecoration: 'none'
|
|
@@ -43,17 +43,16 @@ var styleMap = {
|
|
|
43
43
|
'header-user-menu__button': {
|
|
44
44
|
background: 'none',
|
|
45
45
|
border: '0',
|
|
46
|
-
color: '
|
|
46
|
+
color: 'black',
|
|
47
47
|
cursor: 'pointer',
|
|
48
48
|
display: 'block',
|
|
49
|
-
fontFamily: '
|
|
49
|
+
fontFamily: 'Arial',
|
|
50
50
|
fontSize: '1em',
|
|
51
51
|
textAlign: 'left',
|
|
52
52
|
padding: '1em',
|
|
53
53
|
width: '100%',
|
|
54
54
|
'&:focus, &:hover': {
|
|
55
|
-
|
|
56
|
-
backgroundColor: 'rgba(48.6, 30.2, 100, 5%)'
|
|
55
|
+
backgroundColor: 'linear-gradient(to right, #7C4DFF 0%, #18A9E6 50%, #01C9EA 100%)'
|
|
57
56
|
}
|
|
58
57
|
},
|
|
59
58
|
'header-user-menu__list': {
|
|
@@ -63,12 +62,11 @@ var styleMap = {
|
|
|
63
62
|
},
|
|
64
63
|
'header-user-menu__navigation-menu': {
|
|
65
64
|
background: 'white',
|
|
66
|
-
border: 'solid 1px #
|
|
65
|
+
border: 'solid 1px #000000',
|
|
67
66
|
// the color was defined in mashlib as a SASS variable $divider_color
|
|
68
|
-
|
|
69
|
-
borderRight: 'solid 1px #C8C8C8',
|
|
67
|
+
borderRight: '0',
|
|
70
68
|
position: 'absolute',
|
|
71
|
-
right: '0
|
|
69
|
+
right: '0',
|
|
72
70
|
top: '60px',
|
|
73
71
|
// defined in mashlib as a SASS variable $icon_size
|
|
74
72
|
width: '200px',
|
|
@@ -78,7 +76,7 @@ var styleMap = {
|
|
|
78
76
|
}
|
|
79
77
|
},
|
|
80
78
|
'header-user-menu__list-item': {
|
|
81
|
-
borderBottom: 'solid 1px #
|
|
79
|
+
borderBottom: 'solid 1px #000000',
|
|
82
80
|
// the color was defined in mashlib as a SASS variable $divider_color
|
|
83
81
|
'&:last-child': {
|
|
84
82
|
border: '0'
|
|
@@ -94,8 +92,7 @@ var styleMap = {
|
|
|
94
92
|
width: '50px'
|
|
95
93
|
},
|
|
96
94
|
'header-banner': {
|
|
97
|
-
|
|
98
|
-
boxShadow: '0px 1px 4px #C8C8C8',
|
|
95
|
+
boxShadow: '0px 1px 4px #000000',
|
|
99
96
|
// the color was defined in mashlib as a SASS variable $divider_color
|
|
100
97
|
display: 'flex',
|
|
101
98
|
justifyContent: 'space-between',
|
|
@@ -117,16 +114,14 @@ var styleMap = {
|
|
|
117
114
|
}
|
|
118
115
|
},
|
|
119
116
|
'header-banner__user-menu': {
|
|
120
|
-
borderLeft: 'solid 1px #
|
|
117
|
+
borderLeft: 'solid 1px #000000',
|
|
121
118
|
// the color was defined in mashlib as a SASS variable $divider_color
|
|
122
|
-
marginLeft: 'auto'
|
|
123
|
-
marginRight: '0.5em'
|
|
119
|
+
marginLeft: 'auto'
|
|
124
120
|
},
|
|
125
121
|
'header-banner__help-menu': {
|
|
126
122
|
borderLeft: 'solid 1px #000000',
|
|
127
123
|
// the color was defined in mashlib as a SASS variable $divider_color
|
|
128
|
-
marginLeft: 'auto'
|
|
129
|
-
marginRight: '0.5em'
|
|
124
|
+
marginLeft: 'auto'
|
|
130
125
|
},
|
|
131
126
|
'header-banner__icon': {
|
|
132
127
|
backgroundSize: '65px 60px',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/header/styleMap.ts"],"names":["styleMap","background","border","color","cursor","display","fontFamily","fontSize","textAlign","padding","width","backgroundColor","a","textDecoration","height","img","borderRadius","listStyle","margin","borderRight","position","right","top","borderBottom","backgroundPosition","backgroundRepeat","backgroundSize","boxShadow","justifyContent","marginBottom","marginLeft","input","borderLeft"
|
|
1
|
+
{"version":3,"sources":["../../src/header/styleMap.ts"],"names":["styleMap","background","border","color","cursor","display","fontFamily","fontSize","textAlign","padding","width","backgroundColor","a","textDecoration","height","img","borderRadius","listStyle","margin","borderRight","position","right","top","borderBottom","backgroundPosition","backgroundRepeat","backgroundSize","boxShadow","justifyContent","marginBottom","marginLeft","input","borderLeft"],"mappings":"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","sourcesContent":["export const styleMap = {\n 'header-user-menu': {\n },\n 'header-user-menu__link': {\n background: 'none',\n border: '0',\n color: 'black',\n cursor: 'pointer',\n display: 'block',\n fontFamily: 'Arial',\n fontSize: '1em',\n textAlign: 'left',\n padding: '1em',\n width: '100%',\n '&:focus, &:hover': {\n backgroundColor: 'linear-gradient(to right, #7C4DFF 0%, #18A9E6 50%, #01C9EA 100%)'\n // backgroundColor: '#eee'\n },\n a: {\n textDecoration: 'none'\n }\n },\n 'header-user-menu__trigger': {\n background: 'none',\n border: '0',\n cursor: 'pointer',\n width: '60px', // defined in mashlib as a SASS variable $icon_size\n height: '60px', // defined in mashlib as a SASS variable $icon_size\n img: {\n borderRadius: '50%',\n height: '56px', // defined in mashlib as a SASS variable $icon_size - 4px\n width: '56px'\n }\n },\n 'header-user-menu__button': {\n background: 'none',\n border: '0',\n color: 'black',\n cursor: 'pointer',\n display: 'block',\n fontFamily: 'Arial',\n fontSize: '1em',\n textAlign: 'left',\n padding: '1em',\n width: '100%',\n '&:focus, &:hover': {\n backgroundColor: 'linear-gradient(to right, #7C4DFF 0%, #18A9E6 50%, #01C9EA 100%)'\n }\n },\n 'header-user-menu__list': {\n listStyle: 'none',\n margin: '0',\n padding: '0'\n },\n 'header-user-menu__navigation-menu': {\n background: 'white',\n border: 'solid 1px #000000', // the color was defined in mashlib as a SASS variable $divider_color\n borderRight: '0',\n position: 'absolute',\n right: '0',\n top: '60px', // defined in mashlib as a SASS variable $icon_size\n width: '200px',\n 'z-index': '1',\n '&[aria-hidden = true]': {\n display: 'none'\n }\n },\n 'header-user-menu__list-item': {\n borderBottom: 'solid 1px #000000', // the color was defined in mashlib as a SASS variable $divider_color\n '&:last-child': {\n border: '0'\n }\n },\n 'header-user-menu__photo': {\n borderRadius: '50%',\n backgroundPosition: 'center',\n backgroundRepeat: 'no-repeat',\n backgroundSize: 'cover',\n height: '50px', // $icon-size - $image-margin * 2 image-margin was 5px in mashlib and icon size 60px\n width: '50px'\n },\n 'header-banner': {\n boxShadow: '0px 1px 4px #000000', // the color was defined in mashlib as a SASS variable $divider_color\n display: 'flex',\n justifyContent: 'space-between',\n padding: '0 1.5em',\n marginBottom: '4px'\n },\n 'header-banner__link': {\n display: 'block'\n },\n 'header-banner__right-menu': {\n display: 'flex'\n },\n 'header-banner__login': {\n marginLeft: 'auto',\n input: {\n // hacks to override the default style of login and signup button from solid-ui\n margin: '0.75em 0 0.75em 0.5em !important',\n padding: '0.5em !important'\n }\n },\n 'header-banner__user-menu': {\n borderLeft: 'solid 1px #000000', // the color was defined in mashlib as a SASS variable $divider_color\n marginLeft: 'auto'\n },\n 'header-banner__help-menu': {\n borderLeft: 'solid 1px #000000', // the color was defined in mashlib as a SASS variable $divider_color\n marginLeft: 'auto'\n },\n 'header-banner__icon': {\n backgroundSize: '65px 60px',\n height: '60px !important', // this is the icon size\n width: '65px !important' // may just be 65px round($icon-size * 352 / 322);\n },\n 'header-banner__help-icon': {\n width: '28px !important'\n }\n}\n"],"file":"styleMap.js"}
|
package/lib/login/login.d.ts
CHANGED
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
* * `containers` An array of nodes of containers of instances
|
|
18
18
|
* * `div` A DOM element where UI can be displayed
|
|
19
19
|
* * `statusArea` A DOM element (opt) progress stuff can be displayed, or error messages
|
|
20
|
+
* *
|
|
21
|
+
* * Vocabulary: "load" loads a file if it exists;
|
|
22
|
+
* * 'Ensure" CREATES the file if it does not exist (if it can) and then loads it.
|
|
20
23
|
* @packageDocumentation
|
|
21
24
|
*/
|
|
22
25
|
import { PaneDefinition } from 'pane-registry';
|
|
@@ -59,7 +62,7 @@ export declare function registrationControl(context: AuthenticationContext, inst
|
|
|
59
62
|
/**
|
|
60
63
|
* UI to List at all registered things
|
|
61
64
|
*/
|
|
62
|
-
export declare function registrationList(
|
|
65
|
+
export declare function registrationList(context0: AuthenticationContext, options: {
|
|
63
66
|
private?: boolean;
|
|
64
67
|
public?: boolean;
|
|
65
68
|
type?: NamedNode;
|
package/lib/login/login.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"login.d.ts","sourceRoot":"","sources":["../../src/login/login.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"login.d.ts","sourceRoot":"","sources":["../../src/login/login.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAA;AAC9C,OAAO,EAAa,SAAS,EAAiB,MAAM,QAAQ,CAAA;AAG5D,OAAO,EAAE,UAAU,EAAE,qBAAqB,EAAgN,MAAM,aAAa,CAAA;AAS7Q;;;;IAII;AAEJ,wBAAgB,cAAc,CAAE,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAwB9F;AAED;;;;;;;GAOG;AAEH,wBAAsB,uBAAuB,CAAE,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,qBAAqB,CAAC,CA2D7G;AAED;;;;;;GAMG;AAEH,wBAAsB,mBAAmB,CAAE,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAmBzG;AAED;;;;;IAKI;AACJ,wBAAsB,gBAAgB,CACpC,OAAO,EAAE,qBAAqB,EAC9B,QAAQ,EAAE,SAAS,EACnB,QAAQ,CAAC,EAAE,OAAO,GACjB,OAAO,CAAC,qBAAqB,CAAC,CAqEhC;AAED;;IAEI;AACJ,wBAAsB,mBAAmB,CACvC,OAAO,EAAE,qBAAqB,EAC9B,QAAQ,KAAA,EACR,QAAQ,KAAA,GACP,OAAO,CAAC,qBAAqB,GAAG,IAAI,CAAC,CAsFvC;AAED;;IAEI;AACJ,wBAAsB,gBAAgB,CAAE,QAAQ,EAAE,qBAAqB,EAAE,OAAO,EAAE;IAC/E,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,SAAS,CAAA;CACjB,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAyElC;AA8FD,wBAAgB,iBAAiB,CAAE,GAAG,EAAE,YAAY,QAoHnD;AAED;;;;;;;;;IASI;AACJ,wBAAgB,cAAc,CAC5B,GAAG,EAAE,YAAY,EACjB,QAAQ,GAAE,CAAC,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC,GAAG,IAAW,EACtD,OAAO,GAAE;IACP,WAAW,CAAC,EAAE,MAAM,CAAA;CACf,GACN,WAAW,CAmFb;AAsBD;;;IAGI;AAEJ;;;;;;;;;;;;;;;;;IAiBI;AACJ,wBAAgB,eAAe,CAC7B,GAAG,EAAE,YAAY,EACjB,UAAU,EAAE,UAAU,EACtB,UAAU,EAAE,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,EAAE,OAAO,EAAE,MAAM,KAAK,IAAI,GAC9D,WAAW,CAqNb;AAED;;;;;;;;;;;;;;;IAeI;AACJ,wBAAgB,cAAc,CAC5B,GAAG,EAAE,YAAY,EACjB,UAAU,EAAE,UAAU,EACtB,QAAQ,EAAE,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,EAAE,OAAO,EAAE,MAAM,KAAK,IAAI,GAC5D,WAAW,CAeb;AACD;;;GAGG;AACH,wBAAsB,YAAY,IAAK,OAAO,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAe/D;AAED;;GAEG;AACH,wBAAsB,oBAAoB,CAAE,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,OAAO,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAGxG"}
|