@things-factory/operato-board 7.0.1 → 7.0.4
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/dist-client/themes/dark.css +56 -47
- package/dist-client/themes/light.css +52 -43
- package/package.json +33 -33
- package/schema.graphql +1 -1
|
@@ -1,51 +1,60 @@
|
|
|
1
|
+
/* material web color roles : https://m3.material.io/styles/color/roles#5fdf196d-1e21-4d03-ae63-e802d61ad5ee */
|
|
2
|
+
|
|
1
3
|
.dark {
|
|
2
|
-
--md-sys-color-primary: rgb(
|
|
3
|
-
--md-sys-color-surface-tint: rgb(
|
|
4
|
-
--md-sys-color-on-primary: rgb(
|
|
5
|
-
--md-sys-color-primary-container: rgb(
|
|
6
|
-
--md-sys-color-on-primary-container: rgb(
|
|
7
|
-
|
|
8
|
-
--md-sys-color-
|
|
9
|
-
--md-sys-color-secondary
|
|
10
|
-
--md-sys-color-
|
|
11
|
-
--md-sys-color-
|
|
12
|
-
|
|
13
|
-
--md-sys-color-tertiary
|
|
14
|
-
--md-sys-color-on-tertiary
|
|
15
|
-
--md-sys-color-
|
|
16
|
-
--md-sys-color-on-
|
|
17
|
-
|
|
18
|
-
--md-sys-color-
|
|
19
|
-
--md-sys-color-
|
|
20
|
-
--md-sys-color-
|
|
21
|
-
--md-sys-color-
|
|
22
|
-
|
|
23
|
-
--md-sys-color-
|
|
24
|
-
--md-sys-color-on-
|
|
25
|
-
--md-sys-color-
|
|
26
|
-
--md-sys-color-
|
|
4
|
+
--md-sys-color-primary: rgb(188 135 91); /* for header bar bg*/
|
|
5
|
+
--md-sys-color-surface-tint: rgb(221 151 52);
|
|
6
|
+
--md-sys-color-on-primary: rgb(45 43 41); /* for header bar font */
|
|
7
|
+
--md-sys-color-primary-container: rgb(55 51 49);
|
|
8
|
+
--md-sys-color-on-primary-container: rgb(246 244 240);
|
|
9
|
+
|
|
10
|
+
--md-sys-color-secondary: rgb(142 124 104);
|
|
11
|
+
--md-sys-color-on-secondary: rgb(40 38 37);
|
|
12
|
+
--md-sys-color-secondary-container: rgb(98 88 83);
|
|
13
|
+
--md-sys-color-on-secondary-container: rgb(255 251 245);
|
|
14
|
+
|
|
15
|
+
--md-sys-color-tertiary: rgb(148 232 86);
|
|
16
|
+
--md-sys-color-on-tertiary: rgb(29 68 1);
|
|
17
|
+
--md-sys-color-tertiary-container: rgb(37 49 27);
|
|
18
|
+
--md-sys-color-on-tertiary-container: rgb(229 246 217);
|
|
19
|
+
|
|
20
|
+
--md-sys-color-error: rgb(248 90 87);
|
|
21
|
+
--md-sys-color-on-error: rgb(255 234 192);
|
|
22
|
+
--md-sys-color-error-container: rgb(51 28 27);
|
|
23
|
+
--md-sys-color-on-error-container: rgb(255 255 255);
|
|
24
|
+
|
|
25
|
+
--md-sys-color-background: rgb(53 51 48); /* for content bg */
|
|
26
|
+
--md-sys-color-on-background: rgb(246 244 240);
|
|
27
|
+
--md-sys-color-surface: rgb(68 62 58);
|
|
28
|
+
--md-sys-color-on-surface: var(--md-sys-color-on-primary-container);
|
|
29
|
+
--md-sys-color-surface-variant: rgb(50 46 43); /* for more pannel bg */
|
|
30
|
+
--md-sys-color-on-surface-variant: var(--md-sys-color-on-primary-container);
|
|
31
|
+
|
|
32
|
+
--md-sys-color-outline: rgba(255,255,255,.25);
|
|
33
|
+
--md-sys-color-outline-variant: rgba(255,255,255,.15);
|
|
27
34
|
--md-sys-color-shadow: rgb(0 0 0);
|
|
28
35
|
--md-sys-color-scrim: rgb(0 0 0);
|
|
29
|
-
--md-sys-color-inverse-surface: rgb(
|
|
30
|
-
--md-sys-color-inverse-on-surface:
|
|
31
|
-
--md-sys-color-inverse-primary: rgb(
|
|
32
|
-
|
|
33
|
-
--md-sys-color-
|
|
34
|
-
--md-sys-color-primary-fixed
|
|
35
|
-
--md-sys-color-
|
|
36
|
-
--md-sys-color-
|
|
37
|
-
--md-sys-color-
|
|
38
|
-
--md-sys-color-secondary-fixed
|
|
39
|
-
--md-sys-color-
|
|
40
|
-
--md-sys-color-
|
|
41
|
-
--md-sys-color-
|
|
42
|
-
--md-sys-color-tertiary-fixed
|
|
43
|
-
--md-sys-color-
|
|
44
|
-
--md-sys-color-
|
|
45
|
-
|
|
46
|
-
--md-sys-color-surface-
|
|
47
|
-
--md-sys-color-surface-
|
|
48
|
-
--md-sys-color-surface-container: rgb(34
|
|
49
|
-
--md-sys-color-surface-container-
|
|
50
|
-
--md-sys-color-surface-container
|
|
36
|
+
--md-sys-color-inverse-surface: rgb(241 231 218);
|
|
37
|
+
--md-sys-color-inverse-on-surface: var(--md-sys-color-on-secondary);
|
|
38
|
+
--md-sys-color-inverse-primary: rgb(125 84 64); /* for header bar bg */
|
|
39
|
+
|
|
40
|
+
--md-sys-color-primary-fixed: rgb(166 132 115);
|
|
41
|
+
--md-sys-color-on-primary-fixed: rgb(255 255 255);
|
|
42
|
+
--md-sys-color-primary-fixed-dim: rgb(157 119 100);
|
|
43
|
+
--md-sys-color-on-primary-fixed-variant: rgba(255, 255, 255,.8);
|
|
44
|
+
--md-sys-color-secondary-fixed: rgb(179 130 86);
|
|
45
|
+
--md-sys-color-on-secondary-fixed: rgb(224 211 199);
|
|
46
|
+
--md-sys-color-secondary-fixed-dim: rgb(102 78 61);
|
|
47
|
+
--md-sys-color-on-secondary-fixed-variant: rgba(255,255,255,.8);
|
|
48
|
+
--md-sys-color-tertiary-fixed: rgb(100 162 72);
|
|
49
|
+
--md-sys-color-on-tertiary-fixed: rgb(255 255 255);
|
|
50
|
+
--md-sys-color-tertiary-fixed-dim: rgb(86 146 60);
|
|
51
|
+
--md-sys-color-on-tertiary-fixed-variant: rgba(255, 255, 255,.8);
|
|
52
|
+
|
|
53
|
+
--md-sys-color-surface-dim: rgb(31 28 27);
|
|
54
|
+
--md-sys-color-surface-bright: rgb(52 50 49);
|
|
55
|
+
--md-sys-color-surface-container-lowest: rgb(34 30 28);
|
|
56
|
+
--md-sys-color-surface-container-low: rgb(31 27 26);
|
|
57
|
+
--md-sys-color-surface-container: rgb(37 33 31);
|
|
58
|
+
--md-sys-color-surface-container-high: rgb(43 39 37);
|
|
59
|
+
--md-sys-color-surface-container-highest: rgb(54 50 48);
|
|
51
60
|
}
|
|
@@ -1,51 +1,60 @@
|
|
|
1
|
+
/* material web color roles : https://m3.material.io/styles/color/roles#5fdf196d-1e21-4d03-ae63-e802d61ad5ee */
|
|
2
|
+
|
|
1
3
|
.light {
|
|
2
|
-
--md-sys-color-primary: rgb(
|
|
3
|
-
--md-sys-color-surface-tint: rgb(
|
|
4
|
-
--md-sys-color-on-primary:
|
|
5
|
-
--md-sys-color-primary-container: rgb(
|
|
6
|
-
--md-sys-color-on-primary-container: rgb(
|
|
7
|
-
|
|
4
|
+
--md-sys-color-primary: rgb(137 112 103); /* for header bar bg, auth UI bg, grist header top border, grist header th color, menu icon, menu active */
|
|
5
|
+
--md-sys-color-surface-tint: rgb(163 116 74);
|
|
6
|
+
--md-sys-color-on-primary: rgba(255,255,255,.9); /* for header bar font */
|
|
7
|
+
--md-sys-color-primary-container: rgb(242 236 231);
|
|
8
|
+
--md-sys-color-on-primary-container: rgb(77 68 63); /* for default text bg */
|
|
9
|
+
|
|
10
|
+
--md-sys-color-secondary: rgb(100 85 80);
|
|
8
11
|
--md-sys-color-on-secondary: rgb(255 255 255);
|
|
9
|
-
--md-sys-color-secondary-container: rgb(
|
|
10
|
-
--md-sys-color-on-secondary-container: rgb(
|
|
11
|
-
|
|
12
|
+
--md-sys-color-secondary-container: rgb(242 239 236);
|
|
13
|
+
--md-sys-color-on-secondary-container: rgb(117 105 92);
|
|
14
|
+
|
|
15
|
+
--md-sys-color-tertiary: rgb(77 100 67);
|
|
12
16
|
--md-sys-color-on-tertiary: rgb(255 255 255);
|
|
13
|
-
--md-sys-color-tertiary-container: rgb(
|
|
14
|
-
--md-sys-color-on-tertiary-container: rgb(
|
|
15
|
-
|
|
17
|
+
--md-sys-color-tertiary-container: rgb(230 238 227);
|
|
18
|
+
--md-sys-color-on-tertiary-container: rgb(63 85 54);
|
|
19
|
+
|
|
20
|
+
--md-sys-color-error: rgb(225 87 87);
|
|
16
21
|
--md-sys-color-on-error: rgb(255 255 255);
|
|
17
|
-
--md-sys-color-error-container: rgb(
|
|
18
|
-
--md-sys-color-on-error-container: rgb(
|
|
19
|
-
|
|
20
|
-
--md-sys-color-
|
|
21
|
-
--md-sys-color-
|
|
22
|
-
--md-sys-color-
|
|
23
|
-
--md-sys-color-surface
|
|
24
|
-
--md-sys-color-
|
|
25
|
-
--md-sys-color-
|
|
26
|
-
|
|
22
|
+
--md-sys-color-error-container: rgb(242 226 226);
|
|
23
|
+
--md-sys-color-on-error-container: rgb(225 87 87);
|
|
24
|
+
|
|
25
|
+
--md-sys-color-background: rgb(247 245 243); /* for content bg */
|
|
26
|
+
--md-sys-color-on-background: var(--md-sys-color-on-primary-container);
|
|
27
|
+
--md-sys-color-surface: rgb(241 238 237);
|
|
28
|
+
--md-sys-color-on-surface: var(--md-sys-color-on-primary-container);
|
|
29
|
+
--md-sys-color-surface-variant: rgb(225 216 213); /* for more pannel bg */
|
|
30
|
+
--md-sys-color-on-surface-variant: var(--md-sys-color-on-primary-container);
|
|
31
|
+
|
|
32
|
+
--md-sys-color-outline: rgba(0,0,0,.25);
|
|
33
|
+
--md-sys-color-outline-variant: rgba(0,0,0,.15);
|
|
27
34
|
--md-sys-color-shadow: rgb(0 0 0);
|
|
28
35
|
--md-sys-color-scrim: rgb(0 0 0);
|
|
29
|
-
--md-sys-color-inverse-surface: rgb(
|
|
30
|
-
--md-sys-color-inverse-on-surface:
|
|
31
|
-
--md-sys-color-inverse-primary:
|
|
32
|
-
|
|
33
|
-
--md-sys-color-
|
|
34
|
-
--md-sys-color-primary-fixed
|
|
35
|
-
--md-sys-color-
|
|
36
|
-
--md-sys-color-
|
|
37
|
-
--md-sys-color-
|
|
38
|
-
--md-sys-color-secondary-fixed
|
|
39
|
-
--md-sys-color-
|
|
40
|
-
--md-sys-color-
|
|
41
|
-
--md-sys-color-
|
|
42
|
-
--md-sys-color-tertiary-fixed
|
|
43
|
-
--md-sys-color-
|
|
44
|
-
--md-sys-color-
|
|
45
|
-
|
|
36
|
+
--md-sys-color-inverse-surface: rgb(130 111 100);
|
|
37
|
+
--md-sys-color-inverse-on-surface: rgba(223,210,205,.9);
|
|
38
|
+
--md-sys-color-inverse-primary: rgba(155,121,98,.25); /* for grist edit cell bg */
|
|
39
|
+
|
|
40
|
+
--md-sys-color-primary-fixed: rgb(166 132 115);
|
|
41
|
+
--md-sys-color-on-primary-fixed: rgb(255 255 255);
|
|
42
|
+
--md-sys-color-primary-fixed-dim: rgb(157 119 100);
|
|
43
|
+
--md-sys-color-on-primary-fixed-variant: rgba(255, 255, 255,.8);
|
|
44
|
+
--md-sys-color-secondary-fixed: rgb(179 130 86);
|
|
45
|
+
--md-sys-color-on-secondary-fixed: rgb(224 211 199);
|
|
46
|
+
--md-sys-color-secondary-fixed-dim: rgb(102 78 61);
|
|
47
|
+
--md-sys-color-on-secondary-fixed-variant: rgba(255,255,255,.8);
|
|
48
|
+
--md-sys-color-tertiary-fixed: rgb(100 162 72);
|
|
49
|
+
--md-sys-color-on-tertiary-fixed: rgb(255 255 255);
|
|
50
|
+
--md-sys-color-tertiary-fixed-dim: rgb(86 146 60);
|
|
51
|
+
--md-sys-color-on-tertiary-fixed-variant: rgba(255, 255, 255,.8);
|
|
52
|
+
|
|
53
|
+
--md-sys-color-surface-dim: rgb(221 216 213);
|
|
54
|
+
--md-sys-color-surface-bright: rgb(245 242 237);
|
|
46
55
|
--md-sys-color-surface-container-lowest: rgb(255 255 255);
|
|
47
|
-
--md-sys-color-surface-container-low: rgb(
|
|
48
|
-
--md-sys-color-surface-container: rgb(
|
|
49
|
-
--md-sys-color-surface-container-high: rgb(
|
|
50
|
-
--md-sys-color-surface-container-highest: rgb(
|
|
56
|
+
--md-sys-color-surface-container-low: rgb(242 238 233);
|
|
57
|
+
--md-sys-color-surface-container: rgb(237 232 227);
|
|
58
|
+
--md-sys-color-surface-container-high: rgb(229 223 217);
|
|
59
|
+
--md-sys-color-surface-container-highest: rgb(222 215 208);
|
|
51
60
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-board",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.4",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -91,45 +91,45 @@
|
|
|
91
91
|
"@operato/shell": "^7.0.0",
|
|
92
92
|
"@operato/styles": "^7.0.0",
|
|
93
93
|
"@operato/utils": "^7.0.0",
|
|
94
|
-
"@things-factory/apptool-ui": "^7.0.
|
|
95
|
-
"@things-factory/auth-azure-ad": "^7.0.
|
|
96
|
-
"@things-factory/auth-google": "^7.0.
|
|
97
|
-
"@things-factory/auth-ui": "^7.0.
|
|
98
|
-
"@things-factory/board-service": "^7.0.
|
|
99
|
-
"@things-factory/board-ui": "^7.0.
|
|
100
|
-
"@things-factory/context-ui": "^7.0.
|
|
101
|
-
"@things-factory/export-ui": "^7.0.
|
|
102
|
-
"@things-factory/fav-base": "^7.0.
|
|
103
|
-
"@things-factory/font-base": "^7.0.
|
|
94
|
+
"@things-factory/apptool-ui": "^7.0.2",
|
|
95
|
+
"@things-factory/auth-azure-ad": "^7.0.2",
|
|
96
|
+
"@things-factory/auth-google": "^7.0.2",
|
|
97
|
+
"@things-factory/auth-ui": "^7.0.2",
|
|
98
|
+
"@things-factory/board-service": "^7.0.2",
|
|
99
|
+
"@things-factory/board-ui": "^7.0.4",
|
|
100
|
+
"@things-factory/context-ui": "^7.0.2",
|
|
101
|
+
"@things-factory/export-ui": "^7.0.2",
|
|
102
|
+
"@things-factory/fav-base": "^7.0.2",
|
|
103
|
+
"@things-factory/font-base": "^7.0.2",
|
|
104
104
|
"@things-factory/form-ui": "^7.0.0",
|
|
105
|
-
"@things-factory/help": "^7.0.
|
|
106
|
-
"@things-factory/i18n-base": "^7.0.
|
|
107
|
-
"@things-factory/import-ui": "^7.0.
|
|
108
|
-
"@things-factory/integration-base": "^7.0.
|
|
109
|
-
"@things-factory/integration-email": "^7.0.
|
|
110
|
-
"@things-factory/integration-influxdb": "^7.0.
|
|
111
|
-
"@things-factory/integration-msgraph": "^7.0.
|
|
112
|
-
"@things-factory/integration-notification": "^7.0.
|
|
113
|
-
"@things-factory/integration-openai": "^7.0.
|
|
114
|
-
"@things-factory/integration-ui": "^7.0.
|
|
115
|
-
"@things-factory/more-ui": "^7.0.
|
|
116
|
-
"@things-factory/notification": "^7.0.
|
|
117
|
-
"@things-factory/oauth2-client": "^7.0.
|
|
118
|
-
"@things-factory/offline-ui": "^7.0.
|
|
105
|
+
"@things-factory/help": "^7.0.2",
|
|
106
|
+
"@things-factory/i18n-base": "^7.0.2",
|
|
107
|
+
"@things-factory/import-ui": "^7.0.2",
|
|
108
|
+
"@things-factory/integration-base": "^7.0.2",
|
|
109
|
+
"@things-factory/integration-email": "^7.0.2",
|
|
110
|
+
"@things-factory/integration-influxdb": "^7.0.2",
|
|
111
|
+
"@things-factory/integration-msgraph": "^7.0.2",
|
|
112
|
+
"@things-factory/integration-notification": "^7.0.2",
|
|
113
|
+
"@things-factory/integration-openai": "^7.0.2",
|
|
114
|
+
"@things-factory/integration-ui": "^7.0.2",
|
|
115
|
+
"@things-factory/more-ui": "^7.0.2",
|
|
116
|
+
"@things-factory/notification": "^7.0.2",
|
|
117
|
+
"@things-factory/oauth2-client": "^7.0.2",
|
|
118
|
+
"@things-factory/offline-ui": "^7.0.2",
|
|
119
119
|
"@things-factory/pdf": "^7.0.0",
|
|
120
|
-
"@things-factory/print-service": "^7.0.
|
|
121
|
-
"@things-factory/print-ui": "^7.0.
|
|
122
|
-
"@things-factory/resource-ui": "^7.0.
|
|
123
|
-
"@things-factory/setting-ui": "^7.0.
|
|
124
|
-
"@things-factory/shell": "^7.0.
|
|
125
|
-
"@things-factory/system": "^7.0.
|
|
120
|
+
"@things-factory/print-service": "^7.0.2",
|
|
121
|
+
"@things-factory/print-ui": "^7.0.2",
|
|
122
|
+
"@things-factory/resource-ui": "^7.0.2",
|
|
123
|
+
"@things-factory/setting-ui": "^7.0.2",
|
|
124
|
+
"@things-factory/shell": "^7.0.2",
|
|
125
|
+
"@things-factory/system": "^7.0.2"
|
|
126
126
|
},
|
|
127
127
|
"devDependencies": {
|
|
128
|
-
"@things-factory/board-test": "^7.0.
|
|
128
|
+
"@things-factory/board-test": "^7.0.2",
|
|
129
129
|
"@things-factory/builder": "^7.0.0"
|
|
130
130
|
},
|
|
131
131
|
"resolutions": {
|
|
132
132
|
"passport": "^0.7.0"
|
|
133
133
|
},
|
|
134
|
-
"gitHead": "
|
|
134
|
+
"gitHead": "9ac021e4a84ef649b7c34497b33dce8d7baed8ac"
|
|
135
135
|
}
|
package/schema.graphql
CHANGED
|
@@ -1653,7 +1653,7 @@ type Mutation {
|
|
|
1653
1653
|
"""To delete multiple ApprovalLines"""
|
|
1654
1654
|
deleteApprovalLines(ids: [String!]!): Boolean!
|
|
1655
1655
|
deleteAttachment(id: String!): Boolean!
|
|
1656
|
-
deleteAttachmentsByRef(refBys: [String!]
|
|
1656
|
+
deleteAttachmentsByRef(refBys: [String!]!, refType: String): Boolean!
|
|
1657
1657
|
|
|
1658
1658
|
"""To delete AttributeSet"""
|
|
1659
1659
|
deleteAttributeSet(id: String!): Boolean!
|