Skip to content

Commit ee0fa60

Browse files
committed
readme/doc
1 parent 35dab84 commit ee0fa60

File tree

7 files changed

+179
-28
lines changed

7 files changed

+179
-28
lines changed

docs/assets/highlight.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
--dark-hl-8: #B5CEA8;
2020
--light-hl-9: #008000;
2121
--dark-hl-9: #6A9955;
22+
--light-hl-10: #000000;
23+
--dark-hl-10: #C8C8C8;
2224
--light-code-background: #FFFFFF;
2325
--dark-code-background: #1E1E1E;
2426
}
@@ -34,6 +36,7 @@
3436
--hl-7: var(--light-hl-7);
3537
--hl-8: var(--light-hl-8);
3638
--hl-9: var(--light-hl-9);
39+
--hl-10: var(--light-hl-10);
3740
--code-background: var(--light-code-background);
3841
} }
3942

@@ -48,6 +51,7 @@
4851
--hl-7: var(--dark-hl-7);
4952
--hl-8: var(--dark-hl-8);
5053
--hl-9: var(--dark-hl-9);
54+
--hl-10: var(--dark-hl-10);
5155
--code-background: var(--dark-code-background);
5256
} }
5357

@@ -62,6 +66,7 @@
6266
--hl-7: var(--light-hl-7);
6367
--hl-8: var(--light-hl-8);
6468
--hl-9: var(--light-hl-9);
69+
--hl-10: var(--light-hl-10);
6570
--code-background: var(--light-code-background);
6671
}
6772

@@ -76,6 +81,7 @@
7681
--hl-7: var(--dark-hl-7);
7782
--hl-8: var(--dark-hl-8);
7883
--hl-9: var(--dark-hl-9);
84+
--hl-10: var(--dark-hl-10);
7985
--code-background: var(--dark-code-background);
8086
}
8187

@@ -89,4 +95,5 @@
8995
.hl-7 { color: var(--hl-7); }
9096
.hl-8 { color: var(--hl-8); }
9197
.hl-9 { color: var(--hl-9); }
98+
.hl-10 { color: var(--hl-10); }
9299
pre, code { background: var(--code-background); }

docs/assets/main.js

Lines changed: 55 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/search.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/assets/style.css

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -483,10 +483,9 @@ blockquote {
483483
.has-menu .col-menu {
484484
visibility: visible;
485485
transform: translate(0, 0);
486-
display: grid;
487-
align-items: center;
488-
grid-template-rows: auto 1fr;
489-
grid-gap: 1.5rem;
486+
display: flex;
487+
flex-direction: column;
488+
gap: 1.5rem;
490489
max-height: 100vh;
491490
padding: 1rem 2rem;
492491
}
@@ -911,7 +910,7 @@ a.tsd-index-link {
911910
margin-right: 0.8rem;
912911
}
913912

914-
@media (min-width: 1024px) {
913+
@media (min-width: 1025px) {
915914
.col-content {
916915
margin: 2rem auto;
917916
}

docs/classes/GestureRootView.html

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,10 @@ <h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-
3939
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
4040
<li class="tsd-signature tsd-anchor-link" id="constructor.new_GestureRootView">new <wbr/>Gesture<wbr/>Root<wbr/>View<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="GestureRootView.html" class="tsd-signature-type" data-tsd-kind="Class">GestureRootView</a><a href="#constructor.new_GestureRootView" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
4141
<li class="tsd-description">
42-
<div class="tsd-comment tsd-typography"><p>Please note that should you be using the <code>new Observable({})</code> constructor, it is <strong>obsolete</strong> since v3.0,
43-
and you have to migrate to the &quot;data/observable&quot; <code>fromObject({})</code> or the <code>fromObjectRecursive({})</code> functions.</p>
44-
</div>
4542
<h4 class="tsd-returns-title">Returns <a href="GestureRootView.html" class="tsd-signature-type" data-tsd-kind="Class">GestureRootView</a></h4><aside class="tsd-sources">
4643
<p>Inherited from BaseGestureRootView.constructor</p>
4744
<ul>
48-
<li>Defined in node_modules/@nativescript/core/data/observable/index.d.ts:76</li></ul></aside></li></ul></section></section></div>
45+
<li>Defined in node_modules/@nativescript/core/ui/core/view-base/index.d.ts:263</li></ul></aside></li></ul></section></section></div>
4946
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
5047
<div class="tsd-navigation settings">
5148
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">

docs/classes/Manager.html

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabI
3030
<div class="tsd-accordion-details">
3131
<section class="tsd-index-section">
3232
<h3 class="tsd-index-heading">Constructors</h3>
33-
<div class="tsd-index-list"><a href="Manager.html#constructor" class="tsd-index-link tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="#4D7FFF" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12" id="icon-512-path"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)" id="icon-512-text"></path></svg><span>constructor</span></a>
33+
<div class="tsd-index-list"><a href="Manager.html#constructor" class="tsd-index-link tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="#4D7FFF" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="12" id="icon-512-path"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)" id="icon-512-text"></path></svg><span>constructor</span></a>
3434
</div></section>
3535
<section class="tsd-index-section">
3636
<h3 class="tsd-index-heading">Methods</h3>
@@ -39,18 +39,13 @@ <h3 class="tsd-index-heading">Methods</h3>
3939
</div></section></div></details></section></section>
4040
<section class="tsd-panel-group tsd-member-group">
4141
<h2>Constructors</h2>
42-
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a id="constructor" class="tsd-anchor"></a>
42+
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><a id="constructor" class="tsd-anchor"></a>
4343
<h3 class="tsd-anchor-link"><span>constructor</span><a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none" id="icon-anchor-a"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5" id="icon-anchor-b"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5" id="icon-anchor-c"></path></svg></a></h3>
44-
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external">
44+
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited">
4545
<li class="tsd-signature tsd-anchor-link" id="constructor.new_Manager">new <wbr/>Manager<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="Manager.html" class="tsd-signature-type" data-tsd-kind="Class">Manager</a><a href="#constructor.new_Manager" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></li>
4646
<li class="tsd-description">
47-
<div class="tsd-comment tsd-typography"><p>Please note that should you be using the <code>new Observable({})</code> constructor, it is <strong>obsolete</strong> since v3.0,
48-
and you have to migrate to the &quot;data/observable&quot; <code>fromObject({})</code> or the <code>fromObjectRecursive({})</code> functions.</p>
49-
</div>
5047
<h4 class="tsd-returns-title">Returns <a href="Manager.html" class="tsd-signature-type" data-tsd-kind="Class">Manager</a></h4><aside class="tsd-sources">
51-
<p>Inherited from Observable.constructor</p>
52-
<ul>
53-
<li>Defined in node_modules/@nativescript/core/data/observable/index.d.ts:76</li></ul></aside></li></ul></section></section>
48+
<p>Inherited from Observable.constructor</p></aside></li></ul></section></section>
5449
<section class="tsd-panel-group tsd-member-group">
5550
<h2>Methods</h2>
5651
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"><a id="createGestureHandler" class="tsd-anchor"></a>
@@ -107,7 +102,7 @@ <h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.9389
107102
<ul>
108103
<li class="current tsd-kind-class"><a href="Manager.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-class)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-128-path"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)" id="icon-128-text"></path></svg><span>Manager</span></a>
109104
<ul>
110-
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited tsd-is-external"><a href="Manager.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-512-path"></use><use href="#icon-512-text"></use></svg>constructor</a></li>
105+
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><a href="Manager.html#constructor" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-512-path"></use><use href="#icon-512-text"></use></svg>constructor</a></li>
111106
<li class="tsd-kind-method tsd-parent-kind-class"><a href="Manager.html#createGestureHandler" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>create<wbr/>Gesture<wbr/>Handler</a></li>
112107
<li class="tsd-kind-method tsd-parent-kind-class"><a href="Manager.html#getInstance" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-2048-path"></use><use href="#icon-2048-text"></use></svg>get<wbr/>Instance</a></li></ul></li></ul></nav></div></div>
113108
<div class="container tsd-generator">

0 commit comments

Comments
 (0)