@blinkk/root-cms 1.0.0-beta.51 → 1.0.0-beta.52
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/ui/ui.css +6 -1
- package/dist/ui/ui.js +19 -13
- package/package.json +3 -3
package/dist/ui/ui.css
CHANGED
|
@@ -925,7 +925,6 @@
|
|
|
925
925
|
margin-right: 10px;
|
|
926
926
|
}
|
|
927
927
|
.DocEditor__DateTimeField input {
|
|
928
|
-
margin-top: 16px;
|
|
929
928
|
display: block;
|
|
930
929
|
width: 100%;
|
|
931
930
|
border: 1px solid #dedede;
|
|
@@ -933,6 +932,12 @@
|
|
|
933
932
|
font-family: inherit;
|
|
934
933
|
font-size: 12px;
|
|
935
934
|
}
|
|
935
|
+
.DocEditor__DateTimeField__timezone {
|
|
936
|
+
font-size: 10px;
|
|
937
|
+
font-weight: 400;
|
|
938
|
+
margin-top: 4px;
|
|
939
|
+
text-align: right;
|
|
940
|
+
}
|
|
936
941
|
|
|
937
942
|
/* ui/pages/DocumentPage/DocumentPage.css */
|
|
938
943
|
.DocumentPage {
|
package/dist/ui/ui.js
CHANGED
|
@@ -39853,7 +39853,7 @@ ${this.customData.serverResponse}`;
|
|
|
39853
39853
|
// package.json
|
|
39854
39854
|
var package_default = {
|
|
39855
39855
|
name: "@blinkk/root-cms",
|
|
39856
|
-
version: "1.0.0-beta.
|
|
39856
|
+
version: "1.0.0-beta.52",
|
|
39857
39857
|
author: "s@blinkk.com",
|
|
39858
39858
|
license: "MIT",
|
|
39859
39859
|
engines: {
|
|
@@ -39958,7 +39958,7 @@ ${this.customData.serverResponse}`;
|
|
|
39958
39958
|
vitest: "^0.18.1"
|
|
39959
39959
|
},
|
|
39960
39960
|
peerDependencies: {
|
|
39961
|
-
"@blinkk/root": "1.0.0-beta.
|
|
39961
|
+
"@blinkk/root": "1.0.0-beta.52",
|
|
39962
39962
|
"firebase-admin": ">=11",
|
|
39963
39963
|
"firebase-functions": ">=4",
|
|
39964
39964
|
preact: "10.x",
|
|
@@ -44604,18 +44604,24 @@ ${content}</tr>
|
|
|
44604
44604
|
);
|
|
44605
44605
|
return unsubscribe;
|
|
44606
44606
|
}, []);
|
|
44607
|
-
return /* @__PURE__ */ o4("div", { className: "DocEditor__DateTimeField", children:
|
|
44608
|
-
|
|
44609
|
-
|
|
44610
|
-
|
|
44611
|
-
|
|
44612
|
-
|
|
44613
|
-
|
|
44614
|
-
|
|
44615
|
-
|
|
44607
|
+
return /* @__PURE__ */ o4("div", { className: "DocEditor__DateTimeField", children: [
|
|
44608
|
+
/* @__PURE__ */ o4(
|
|
44609
|
+
"input",
|
|
44610
|
+
{
|
|
44611
|
+
type: "datetime-local",
|
|
44612
|
+
value: dateStr,
|
|
44613
|
+
onChange: (e3) => {
|
|
44614
|
+
const target = e3.target;
|
|
44615
|
+
const newDateStr = target.value;
|
|
44616
|
+
onChange(newDateStr);
|
|
44617
|
+
}
|
|
44616
44618
|
}
|
|
44617
|
-
|
|
44618
|
-
|
|
44619
|
+
),
|
|
44620
|
+
/* @__PURE__ */ o4("div", { className: "DocEditor__DateTimeField__timezone", children: [
|
|
44621
|
+
"timezone: ",
|
|
44622
|
+
Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
44623
|
+
] })
|
|
44624
|
+
] });
|
|
44619
44625
|
};
|
|
44620
44626
|
function arraySwap(arr, index1, index22) {
|
|
44621
44627
|
if (arr.length <= 1) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blinkk/root-cms",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.52",
|
|
4
4
|
"author": "s@blinkk.com",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"//": "NOTE(stevenle): due to compat issues with mantine and preact, mantine is pinned to v4.2.12",
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@babel/core": "^7.17.9",
|
|
60
|
-
"@blinkk/root": "1.0.0-beta.
|
|
60
|
+
"@blinkk/root": "1.0.0-beta.52",
|
|
61
61
|
"@emotion/react": "^11.10.5",
|
|
62
62
|
"@firebase/app-compat": "^0.1.33",
|
|
63
63
|
"@firebase/app-types": "^0.7.0",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"vitest": "^0.18.1"
|
|
93
93
|
},
|
|
94
94
|
"peerDependencies": {
|
|
95
|
-
"@blinkk/root": "1.0.0-beta.
|
|
95
|
+
"@blinkk/root": "1.0.0-beta.52",
|
|
96
96
|
"firebase-admin": ">=11",
|
|
97
97
|
"firebase-functions": ">=4",
|
|
98
98
|
"preact": "10.x",
|