string dates
This commit is contained in:
parent
d9e7202e3b
commit
f629b95605
|
@ -55,7 +55,7 @@
|
||||||
</ExampleLine>
|
</ExampleLine>
|
||||||
</ExampleSection>
|
</ExampleSection>
|
||||||
<Section>
|
<Section>
|
||||||
An <Block>ISO 8601</Block> datetime string. which is the number of milliseconds since Jan 1st 1970. A more recent moment in time will be a higher number.
|
An <Block>ISO 8601</Block> datetime string, which represents an exact moment in time as well as the potentional to store the timezone it occured in.
|
||||||
</Section>
|
</Section>
|
||||||
<div class="isoExamples">
|
<div class="isoExamples">
|
||||||
<ExampleSection
|
<ExampleSection
|
||||||
|
@ -63,21 +63,21 @@
|
||||||
>
|
>
|
||||||
<ExampleLine>
|
<ExampleLine>
|
||||||
<Block>2000-01-01T00:00:00.000Z</Block>
|
<Block>2000-01-01T00:00:00.000Z</Block>
|
||||||
<span class="separator">{"->"}</span>
|
<span class="separator">↓</span>
|
||||||
<Block>
|
<Block>
|
||||||
{(new Date(946684800000).toLocaleString())}
|
{(new Date(946684800000).toLocaleString())}
|
||||||
</Block>
|
</Block>
|
||||||
</ExampleLine>
|
</ExampleLine>
|
||||||
<ExampleLine>
|
<ExampleLine>
|
||||||
<Block>2000-01-01T00:00:00.000Z</Block>
|
<Block>2000-01-01T00:00:00.000Z</Block>
|
||||||
<span class="separator">{"->"}</span>
|
<span class="separator">↓</span>
|
||||||
<Block>
|
<Block>
|
||||||
{(new Date(1577836800000).toLocaleString())}
|
{(new Date(1577836800000).toLocaleString())}
|
||||||
</Block>
|
</Block>
|
||||||
</ExampleLine>
|
</ExampleLine>
|
||||||
<ExampleLine>
|
<ExampleLine>
|
||||||
<Block>{iso}</Block>
|
<Block>{iso}</Block>
|
||||||
<span class="separator">{"->"}</span>
|
<span class="separator">↓</span>
|
||||||
<Block>Now</Block>
|
<Block>Now</Block>
|
||||||
</ExampleLine>
|
</ExampleLine>
|
||||||
</ExampleSection>
|
</ExampleSection>
|
||||||
|
@ -87,15 +87,18 @@
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.separator {
|
.separator {
|
||||||
flex-shrink: 0;
|
|
||||||
margin: 0 5px;
|
margin: 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.isoExamples :global(.block) {
|
.isoExamples :global(.block) {
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
|
|
||||||
.isoExamples :global(.exampleLine) {
|
.isoExamples :global(.exampleLine) {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
width: 162px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue