tickup 1.0.0
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/CHANGELOG.md +21 -0
- package/LICENSE +21 -0
- package/README.md +55 -0
- package/dist/branding/TickUpAttribution.d.ts +11 -0
- package/dist/branding/TickUpMark.d.ts +15 -0
- package/dist/branding/tickupBrandAssets.d.ts +12 -0
- package/dist/branding/tickupWatermark.d.ts +28 -0
- package/dist/components/Canvas/Axes/XAxis.d.ts +18 -0
- package/dist/components/Canvas/Axes/YAxis.d.ts +12 -0
- package/dist/components/Canvas/ChartCanvas.d.ts +40 -0
- package/dist/components/Canvas/ChartStage.d.ts +5 -0
- package/dist/components/Canvas/TickUpStage.d.ts +122 -0
- package/dist/components/Canvas/utils/GraphDraw.d.ts +13 -0
- package/dist/components/Canvas/utils/GraphHelpers.d.ts +60 -0
- package/dist/components/Canvas/utils/drawDrawings.d.ts +4 -0
- package/dist/components/Canvas/utils/drawOverlay.d.ts +44 -0
- package/dist/components/Canvas/utils/formatters.d.ts +34 -0
- package/dist/components/Canvas/utils/generateTicks.d.ts +9 -0
- package/dist/components/Canvas/utils/helpers.d.ts +6 -0
- package/dist/components/Common/AlertModal.d.ts +13 -0
- package/dist/components/Common/AlertModal.styles.d.ts +13 -0
- package/dist/components/DefaultData.d.ts +3 -0
- package/dist/components/Drawing/AngleShape.d.ts +37 -0
- package/dist/components/Drawing/ArrowShape.d.ts +32 -0
- package/dist/components/Drawing/CircleShape.d.ts +29 -0
- package/dist/components/Drawing/CustomSymbolShape.d.ts +31 -0
- package/dist/components/Drawing/IDrawingShape.d.ts +32 -0
- package/dist/components/Drawing/LineShape.d.ts +29 -0
- package/dist/components/Drawing/Polyline.d.ts +29 -0
- package/dist/components/Drawing/RectangleShape.d.ts +29 -0
- package/dist/components/Drawing/TriangleShape.d.ts +34 -0
- package/dist/components/Drawing/drawHelper.d.ts +35 -0
- package/dist/components/Drawing/drawingQuery.d.ts +44 -0
- package/dist/components/Drawing/types.d.ts +21 -0
- package/dist/components/SettingsModal/SettingsModal.d.ts +73 -0
- package/dist/components/SettingsModal/SettingsModal.styles.d.ts +62 -0
- package/dist/components/ShapePropertiesModal/ShapePropertiesModal.d.ts +13 -0
- package/dist/components/ShapePropertiesModal/applyShapeProperties.d.ts +16 -0
- package/dist/components/TickUpHost.d.ts +162 -0
- package/dist/components/TickUpProducts.d.ts +23 -0
- package/dist/components/Toolbar/Buttons.d.ts +4 -0
- package/dist/components/Toolbar/ChartTypeSelectDropdown.d.ts +9 -0
- package/dist/components/Toolbar/IntervalSelect.d.ts +15 -0
- package/dist/components/Toolbar/RangeSelector.d.ts +9 -0
- package/dist/components/Toolbar/SettingsToolbar.d.ts +50 -0
- package/dist/components/Toolbar/Toolbar.d.ts +10 -0
- package/dist/components/Toolbar/icons.d.ts +79 -0
- package/dist/components/Tooltip.d.ts +17 -0
- package/dist/contexts/ModeContext.d.ts +24 -0
- package/dist/engines/TickUpEngine.d.ts +12 -0
- package/dist/engines/prime/PrimeRenderer.d.ts +4 -0
- package/dist/engines/prime/TickUpPrime.d.ts +15 -0
- package/dist/full.d.ts +71 -0
- package/dist/hooks/useChartData.d.ts +15 -0
- package/dist/hooks/useElementSize.d.ts +13 -0
- package/dist/hooks/usePanAndZoom.d.ts +12 -0
- package/dist/index.d.ts +47 -0
- package/dist/main.d.ts +1 -0
- package/dist/services/FormattingService.d.ts +36 -0
- package/dist/styles/App.styles.d.ts +11 -0
- package/dist/styles/ChartCanvas.styles.d.ts +26 -0
- package/dist/styles/ChartTypeSelectDropdown.styles.d.ts +13 -0
- package/dist/styles/IntervalSelect.styles.d.ts +25 -0
- package/dist/styles/RangeSelector.styles.d.ts +10 -0
- package/dist/styles/SettingsToolbar.styles.d.ts +19 -0
- package/dist/styles/TickUpStage.styles.d.ts +31 -0
- package/dist/styles/Toolbar.styles.d.ts +12 -0
- package/dist/styles/Tooltip.styles.d.ts +22 -0
- package/dist/styles/XAxis.styles.d.ts +5 -0
- package/dist/styles/YAxis.styles.d.ts +6 -0
- package/dist/test-utils/assetUrlStub.d.ts +3 -0
- package/dist/test-utils/svgRawStub.d.ts +3 -0
- package/dist/tickup-full.cjs.js +1417 -0
- package/dist/tickup-full.es.js +6699 -0
- package/dist/tickup-icon.svg +5 -0
- package/dist/tickup.cjs.js +1417 -0
- package/dist/tickup.es.js +6427 -0
- package/dist/types/Drawings.d.ts +54 -0
- package/dist/types/Graph.d.ts +45 -0
- package/dist/types/Interval.d.ts +11 -0
- package/dist/types/buttons.d.ts +30 -0
- package/dist/types/chartContext.d.ts +52 -0
- package/dist/types/chartOptions.d.ts +161 -0
- package/dist/types/liveData.d.ts +14 -0
- package/dist/types/overlay.d.ts +64 -0
- package/dist/types/tickupProducts.d.ts +18 -0
- package/dist/types/types.d.ts +36 -0
- package/dist/utils/LocaleResolver.d.ts +15 -0
- package/dist/utils/captureChartRegion.d.ts +34 -0
- package/dist/utils/deepEqual.d.ts +1 -0
- package/dist/utils/deepMerge.d.ts +2 -0
- package/dist/utils/i18n.d.ts +26 -0
- package/dist/utils/liveDataMerge.d.ts +21 -0
- package/dist/utils/marketData.d.ts +8 -0
- package/dist/utils/timeUtils.d.ts +9 -0
- package/dist/vite.svg +1 -0
- package/documentation/01-glossary.md +61 -0
- package/documentation/01-introduction.md +7 -0
- package/documentation/02-installation.md +48 -0
- package/documentation/03-quick-start.md +86 -0
- package/documentation/04-products-and-layout.md +51 -0
- package/documentation/05-props-and-chart-options.md +109 -0
- package/documentation/06-imperative-api.md +117 -0
- package/documentation/07-data-and-live-updates.md +62 -0
- package/documentation/08-drawings-and-shapes.md +132 -0
- package/documentation/09-settings-modal.md +37 -0
- package/documentation/10-toolbar-and-interactions.md +85 -0
- package/documentation/11-exports-and-advanced.md +142 -0
- package/documentation/12-overlays-and-indicators.md +65 -0
- package/documentation/13-internationalization-and-axes.md +56 -0
- package/documentation/14-legal-and-policies.md +32 -0
- package/documentation/README.md +33 -0
- package/legal/ACCEPTABLE_USE_POLICY.md +79 -0
- package/legal/PRIVACY_POLICY.md +131 -0
- package/legal/README.md +21 -0
- package/legal/TERMS_OF_SERVICE.md +153 -0
- package/package.json +98 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Acceptable Use Policy
|
|
2
|
+
|
|
3
|
+
**Last updated:** March 28, 2026
|
|
4
|
+
|
|
5
|
+
This Acceptable Use Policy (“**AUP**”) applies to all use of **TickUp** websites, hosted services, APIs, accounts, demos, community spaces, and related systems operated by **[Legal Entity Name]** (“**we**,” “**us**”). It supplements our [Terms of Service](./TERMS_OF_SERVICE.md).
|
|
6
|
+
|
|
7
|
+
Violations may result in **content removal**, **suspension**, or **termination** of access **without refund** (if fees apply) and **referral to authorities** where appropriate.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 1. Illegal and harmful activity
|
|
12
|
+
|
|
13
|
+
You may not use the Services to violate **any law** or regulation, or to harm people, organizations, or infrastructure. Examples include (non-exhaustive):
|
|
14
|
+
|
|
15
|
+
- Fraud, theft, money laundering, terrorist financing, sanctions evasion;
|
|
16
|
+
- Trafficking, exploitation, or serious harassment;
|
|
17
|
+
- Distribution of malware, ransomware, or destructive code;
|
|
18
|
+
- Unauthorized access to systems, accounts, or data (**no hacking, credential stuffing, or bypassing security**).
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## 2. Abuse of the Services
|
|
23
|
+
|
|
24
|
+
You may not:
|
|
25
|
+
|
|
26
|
+
- **Overload, disrupt, or attack** the Services (DoS, excessive automated requests without permission, resource exhaustion);
|
|
27
|
+
- **Probe, scan, or test** vulnerabilities on production systems **without prior written authorization**;
|
|
28
|
+
- **Circumvent** rate limits, access controls, or billing;
|
|
29
|
+
- **Resell or sublicense** access to the Services **without a written agreement**;
|
|
30
|
+
- **Misrepresent** identity, affiliation, or the source of communications (**no phishing or spoofing us or others**).
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## 3. Content standards
|
|
35
|
+
|
|
36
|
+
You may not upload, post, or transmit content that:
|
|
37
|
+
|
|
38
|
+
- Infringes **intellectual property** or **privacy** rights;
|
|
39
|
+
- Is **defamatory**, **obscene**, or **hateful** in a way that violates law or our community standards;
|
|
40
|
+
- Contains **non-consensual intimate imagery** or **child sexual abuse material** (report immediately to law enforcement and us).
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## 4. Financial and market misuse
|
|
45
|
+
|
|
46
|
+
If the Services display or process market data:
|
|
47
|
+
|
|
48
|
+
- Do not use them for **market manipulation**, **insider trading**, or other **securities or commodities violations**;
|
|
49
|
+
- Do not rely on the Services as **sole** basis for investment decisions; **not investment advice.**
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## 5. Intellectual property
|
|
54
|
+
|
|
55
|
+
Do not use the Services to **pirate**, **distribute**, or **facilitate** unauthorized copies of software, data feeds, or copyrighted works.
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## 6. Monitoring and enforcement
|
|
60
|
+
|
|
61
|
+
We may **monitor** use as needed for **security, compliance, and operations** (subject to our [Privacy Policy](./PRIVACY_POLICY.md)). We are **not obligated** to monitor all activity.
|
|
62
|
+
|
|
63
|
+
We may **investigate** suspected violations and **cooperate** with law enforcement.
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## 7. Reporting
|
|
68
|
+
|
|
69
|
+
Report abuse or security issues to: **[Contact Email]** **[optional: security@ / bug bounty URL]**
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## 8. Changes
|
|
74
|
+
|
|
75
|
+
We may update this AUP. Continued use after changes constitutes acceptance unless we state otherwise.
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
*Template for adaptation. Have qualified counsel review before publication.*
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
# Privacy Policy
|
|
2
|
+
|
|
3
|
+
**Last updated:** March 28, 2026
|
|
4
|
+
|
|
5
|
+
This Privacy Policy describes how **[Legal Entity Name]** (“**we**,” “**us**,” “**our**”) collects, uses, shares, and protects information in connection with **TickUp** websites, applications, hosted services, accounts, support channels, and related offerings (the “**Services**”).
|
|
6
|
+
|
|
7
|
+
If you do not agree with this Policy, do not use the Services.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 1. Scope
|
|
12
|
+
|
|
13
|
+
This Policy applies to personal information we process as a **controller** (or equivalent) when you interact with the Services. It does **not** govern:
|
|
14
|
+
|
|
15
|
+
- **Open-source repositories** you only clone or download without signing in (minimal or no personal data);
|
|
16
|
+
- **Your own applications** that embed our libraries—**you** decide what end-user data you collect and must provide your own notices;
|
|
17
|
+
- Third-party sites or services we link to (their policies apply).
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 2. Information we may collect
|
|
22
|
+
|
|
23
|
+
Depending on how you use the Services, we may collect:
|
|
24
|
+
|
|
25
|
+
**A. You provide**
|
|
26
|
+
|
|
27
|
+
- **Account data:** name, email, organization, password or auth tokens (hashed where appropriate), billing and payment details (often processed by a payment processor).
|
|
28
|
+
- **Support and communications:** messages, attachments, call recordings if offered and consented.
|
|
29
|
+
- **Preferences:** language, notification settings.
|
|
30
|
+
|
|
31
|
+
**B. Automatically**
|
|
32
|
+
|
|
33
|
+
- **Technical data:** IP address, device type, browser, OS, approximate location derived from IP, timestamps.
|
|
34
|
+
- **Usage data:** pages viewed, features used, clicks, performance and error logs, session identifiers, cookies and similar technologies.
|
|
35
|
+
- **Security data:** fraud signals, abuse patterns.
|
|
36
|
+
|
|
37
|
+
**C. From third parties**
|
|
38
|
+
|
|
39
|
+
- **Authentication providers** (e.g., SSO), **payment processors**, **analytics or advertising partners** (if used), **data brokers** only as allowed by law.
|
|
40
|
+
|
|
41
|
+
We strive to collect **only what is needed** for the purposes below.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## 3. How we use information
|
|
46
|
+
|
|
47
|
+
We use personal information to:
|
|
48
|
+
|
|
49
|
+
- **Provide and operate** the Services (accounts, hosting, APIs, support);
|
|
50
|
+
- **Secure** the Services (abuse prevention, authentication, monitoring);
|
|
51
|
+
- **Improve** products (analytics, debugging, aggregated statistics);
|
|
52
|
+
- **Communicate** with you (service messages, updates, marketing where permitted—**opt-out** where required);
|
|
53
|
+
- **Comply with law** and enforce our [Terms of Service](./TERMS_OF_SERVICE.md) and [Acceptable Use Policy](./ACCEPTABLE_USE_POLICY.md);
|
|
54
|
+
- **Process payments** and accounting.
|
|
55
|
+
|
|
56
|
+
**Legal bases** (where GDPR or similar applies): contract, legitimate interests (balanced against your rights), consent where required, legal obligation.
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## 4. Sharing
|
|
61
|
+
|
|
62
|
+
We may share personal information with:
|
|
63
|
+
|
|
64
|
+
- **Service providers** (hosting, email, analytics, payment, CRM) under **contracts** requiring appropriate protection;
|
|
65
|
+
- **Professional advisers** (lawyers, auditors) under confidentiality;
|
|
66
|
+
- **Authorities** when required by law or to protect rights, safety, and security;
|
|
67
|
+
- **Business transfers** in a merger, acquisition, or asset sale (with notice where required);
|
|
68
|
+
- **With your direction** or consent.
|
|
69
|
+
|
|
70
|
+
We do **not sell** personal information in the traditional sense **[or: describe “sale” / opt-out if you engage in activities treated as sale under U.S. state laws]**.
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## 5. Retention
|
|
75
|
+
|
|
76
|
+
We retain information **as long as needed** for the purposes above, including legal, tax, and dispute resolution, then **delete or anonymize** where feasible. Retention periods vary by data type.
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## 6. Security
|
|
81
|
+
|
|
82
|
+
We implement **technical and organizational measures** appropriate to the risk. **No method is 100% secure.** You are responsible for safeguarding your credentials.
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
## 7. International transfers
|
|
87
|
+
|
|
88
|
+
If we transfer data across borders, we use **appropriate safeguards** (e.g., Standard Contractual Clauses, adequacy decisions) where required by law.
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## 8. Your rights
|
|
93
|
+
|
|
94
|
+
Depending on your location, you may have rights to **access, correct, delete, restrict, port**, or **object** to certain processing, and to **withdraw consent** where processing is consent-based. You may **opt out** of marketing emails via the unsubscribe link.
|
|
95
|
+
|
|
96
|
+
To exercise rights, contact **[Contact Email]**. We may verify your identity. You may **appeal** or complain to a **supervisory authority** where applicable.
|
|
97
|
+
|
|
98
|
+
We do **not** knowingly collect personal information from children under **[13 / 16—set per law]** for child-directed Services. Contact us if you believe we have done so.
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## 9. Cookies
|
|
103
|
+
|
|
104
|
+
We use **cookies and similar technologies** for essential operation, preferences, analytics, and (if applicable) marketing. You can control cookies through browser settings; some features may not work without them.
|
|
105
|
+
|
|
106
|
+
**[Optional: link to cookie policy or cookie banner settings.]**
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## 10. Automated decision-making
|
|
111
|
+
|
|
112
|
+
**[State whether you use solely automated decisions with legal or similar effects; if not: “We do not use solely automated decision-making that produces legal effects in the sense of GDPR Article 22.” Adjust if you do.]**
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
## 11. Changes
|
|
117
|
+
|
|
118
|
+
We may update this Policy. We will post the new version and update the “Last updated” date. **Material changes** may require additional notice or consent where required by law.
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## 12. Contact
|
|
123
|
+
|
|
124
|
+
**[Legal Entity Name]**
|
|
125
|
+
**[Address]**
|
|
126
|
+
**Data protection contact / DPO (if applicable): [email]**
|
|
127
|
+
**[Contact Email]**
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
*Template for adaptation. Have qualified counsel review before publication.*
|
package/legal/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# TickUp Charts legal documents
|
|
2
|
+
|
|
3
|
+
This folder contains **policies and terms** for TickUp Charts products, services, websites, and related offerings. They are written as **practical templates** for you to review with qualified counsel and to adapt (entity name, jurisdiction, contact details, data practices, and product specifics).
|
|
4
|
+
|
|
5
|
+
## Contents
|
|
6
|
+
|
|
7
|
+
| Document | Purpose |
|
|
8
|
+
|----------|---------|
|
|
9
|
+
| [Terms of Service](./TERMS_OF_SERVICE.md) | Binding agreement: IP, acceptable use, suspension/termination, warranties, liability, disputes |
|
|
10
|
+
| [Privacy Policy](./PRIVACY_POLICY.md) | What data may be collected, why, retention, rights, international transfers (template) |
|
|
11
|
+
| [Acceptable Use Policy](./ACCEPTABLE_USE_POLICY.md) | Prohibited behavior for accounts, APIs, demos, and community touchpoints |
|
|
12
|
+
|
|
13
|
+
## Important
|
|
14
|
+
|
|
15
|
+
- **Not legal advice.** These files do not create an attorney–client relationship. Laws vary by country and industry (finance, health, children’s privacy, etc.).
|
|
16
|
+
- **Open-source software** distributed under the project’s **LICENSE** file (if present) is governed by that license **in addition to** any **separate** agreement for hosted products, accounts, or paid services described in the Terms of Service.
|
|
17
|
+
- **Fill in placeholders** marked with brackets, e.g. `[Legal Entity Name]`, `[Contact Email]`, `[Governing Law / Courts]`, before relying on these documents.
|
|
18
|
+
|
|
19
|
+
## Documentation hub
|
|
20
|
+
|
|
21
|
+
End-user oriented overview: [../documentation/14-legal-and-policies.md](../documentation/14-legal-and-policies.md).
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
# Terms of Service
|
|
2
|
+
|
|
3
|
+
**Last updated:** March 28, 2026
|
|
4
|
+
|
|
5
|
+
**Applies to:** websites, web applications, APIs, cloud or hosted services, accounts, demos, documentation portals, and any other products or services operated by **[Legal Entity Name]** (“**we**,” “**us**,” “**our**”) under the **TickUp** brand (collectively, the “**Services**”), except where a separate written agreement explicitly supersedes these terms.
|
|
6
|
+
|
|
7
|
+
**Software source code** that we publish under an open-source **LICENSE** file in the same repository (or another public repository we designate) is licensed **under that LICENSE** for the scope it grants. If anything in these Terms conflicts with that LICENSE **as applied to that open-source code**, the LICENSE controls **for that code only**. Everything else about the Services—including access to hosted environments, accounts, infrastructure, and non-OSS materials—is governed by these Terms.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 1. Agreement
|
|
12
|
+
|
|
13
|
+
By accessing or using the Services, you (“**you**,” “**your**”) agree to these Terms of Service (“**Terms**”) and our [Acceptable Use Policy](./ACCEPTABLE_USE_POLICY.md) and [Privacy Policy](./PRIVACY_POLICY.md), incorporated by reference. If you use the Services on behalf of an organization, you represent that you have authority to bind that organization.
|
|
14
|
+
|
|
15
|
+
If you do not agree, do not use the Services.
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## 2. Changes
|
|
20
|
+
|
|
21
|
+
We may modify these Terms at any time. We will use reasonable efforts to provide **advance notice** for material changes (for example, by posting an updated date, notice on the Services, or email to a registered address), where practical. **Continued use after the effective date constitutes acceptance.** If you do not agree to the new Terms, you must stop using the Services. Some changes may be required by law or security needs and may be effective immediately.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## 3. Eligibility; accounts
|
|
26
|
+
|
|
27
|
+
You must be able to form a binding contract in your jurisdiction. If the Services require an account, you must provide accurate information and keep credentials secure. You are responsible for activity under your account.
|
|
28
|
+
|
|
29
|
+
We may **refuse registration**, **suspend**, or **terminate** accounts or access at our discretion, including for breach of these Terms, the Acceptable Use Policy, risk, fraud, legal obligation, or **business or product decisions** (including discontinuing or restricting all or part of the Services).
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## 4. License to use the Services
|
|
34
|
+
|
|
35
|
+
Subject to these Terms, we grant you a **limited, non-exclusive, non-transferable, revocable** license to access and use the Services **for their intended purpose** during the term of your access.
|
|
36
|
+
|
|
37
|
+
**You may not:** copy, modify, distribute, sell, or lease the Services or our proprietary content except as expressly permitted; circumvent technical limits; use the Services to build a competing product using our confidential or proprietary non-public interfaces; or use the Services in violation of law or the Acceptable Use Policy.
|
|
38
|
+
|
|
39
|
+
**Open-source components** included in our repositories are governed by their respective licenses.
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## 5. Intellectual property
|
|
44
|
+
|
|
45
|
+
We and our licensors **own all right, title, and interest** in the Services, including software (other than your applications that merely call public APIs), branding, logos, documentation, designs, aggregated analytics, and improvements—unless otherwise stated in writing.
|
|
46
|
+
|
|
47
|
+
**Feedback** you provide may be used by us **without restriction or compensation** unless we agree otherwise in writing.
|
|
48
|
+
|
|
49
|
+
**Trademarks:** “TickUp” and related marks are our trademarks. Do not use them without prior written permission except as allowed by applicable law (e.g., fair nominative use).
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## 6. User content
|
|
54
|
+
|
|
55
|
+
If you submit content to the Services (“**User Content**”), you **grant us a worldwide, royalty-free license** to host, process, transmit, display, and use that content **as needed to operate, secure, and improve the Services** and as described in the Privacy Policy.
|
|
56
|
+
|
|
57
|
+
You represent that you have the rights to submit User Content and that it does not violate third-party rights or law. We may **remove or restrict** User Content at any time.
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## 7. Third-party services and data
|
|
62
|
+
|
|
63
|
+
The Services may integrate third-party services, data feeds, or links. **We do not control and are not responsible** for third parties. Market or financial data may be delayed, incomplete, or inaccurate; **not investment advice.** You use such data at your own risk.
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## 8. Suspension and termination
|
|
68
|
+
|
|
69
|
+
**We may suspend or terminate** your access to all or part of the Services, **with or without notice**, for any reason, including:
|
|
70
|
+
|
|
71
|
+
- Violation of these Terms or the Acceptable Use Policy;
|
|
72
|
+
- Legal or regulatory requirements;
|
|
73
|
+
- Risk of harm, abuse, or security incidents;
|
|
74
|
+
- Non-payment (if applicable);
|
|
75
|
+
- **Convenience or business reasons**, including **ending, limiting, or modifying** any Service, feature, or offering.
|
|
76
|
+
|
|
77
|
+
Upon termination, rights granted to you cease **except** sections that by nature survive (e.g., IP, disclaimers, liability limits, disputes).
|
|
78
|
+
|
|
79
|
+
You may stop using the Services at any time. **Provisions that should survive termination will survive.**
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## 9. Disclaimers
|
|
84
|
+
|
|
85
|
+
**THE SERVICES ARE PROVIDED “AS IS” AND “AS AVAILABLE.”** TO THE MAXIMUM EXTENT PERMITTED BY LAW, WE **DISCLAIM ALL WARRANTIES**, WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON-INFRINGEMENT, AND ACCURACY.
|
|
86
|
+
|
|
87
|
+
We do **not** warrant uninterrupted or error-free operation, that defects will be corrected, or that the Services are free of harmful components.
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## 10. Limitation of liability
|
|
92
|
+
|
|
93
|
+
TO THE MAXIMUM EXTENT PERMITTED BY LAW:
|
|
94
|
+
|
|
95
|
+
- **WE WILL NOT BE LIABLE** FOR ANY **INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES**, OR FOR LOSS OF PROFITS, DATA, GOODWILL, OR BUSINESS INTERRUPTION, EVEN IF ADVISED OF THE POSSIBILITY.
|
|
96
|
+
- OUR **TOTAL LIABILITY** FOR ANY CLAIM ARISING OUT OF OR RELATED TO THE SERVICES OR THESE TERMS IS LIMITED TO THE **GREATER OF (A) THE AMOUNTS YOU PAID US FOR THE SERVICES IN THE TWELVE (12) MONTHS BEFORE THE CLAIM** OR **(B) [e.g., USD 100]** IF NO FEES APPLIED.
|
|
97
|
+
|
|
98
|
+
Some jurisdictions do not allow certain limitations; in those cases our liability is limited to the **maximum permitted by law**.
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## 11. Indemnity
|
|
103
|
+
|
|
104
|
+
You will **defend, indemnify, and hold harmless** us and our affiliates, officers, directors, employees, and agents from claims, damages, losses, and expenses (including reasonable attorneys’ fees) arising out of: (a) your use of the Services; (b) your User Content; (c) your violation of these Terms or law; or (d) your violation of third-party rights.
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## 12. Export and sanctions
|
|
109
|
+
|
|
110
|
+
You represent that you are not prohibited from using the Services under **export control, sanctions, or anti-boycott laws**. You will not use or export the Services in violation of those laws.
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
## 13. Governing law and disputes
|
|
115
|
+
|
|
116
|
+
These Terms are governed by the laws of **[Jurisdiction / Country / State]**, without regard to conflict-of-law rules, **except** where mandatory consumer protections apply.
|
|
117
|
+
|
|
118
|
+
**Venue:** Exclusive jurisdiction and venue in the courts of **[City, Region]**, unless applicable law requires otherwise.
|
|
119
|
+
|
|
120
|
+
**Informal resolution:** Before filing a claim, you agree to contact us at **[Contact Email]** to try to resolve the dispute.
|
|
121
|
+
|
|
122
|
+
**Class action waiver (where enforceable):** You agree to bring claims only in your individual capacity, not as a plaintiff or class member in any class or representative proceeding.
|
|
123
|
+
|
|
124
|
+
*(Adjust arbitration clause here if you adopt arbitration—only with legal review.)*
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## 14. General
|
|
129
|
+
|
|
130
|
+
**Entire agreement:** These Terms, the Acceptable Use Policy, the Privacy Policy, and any **separate signed agreement** (e.g., enterprise order form) constitute the entire agreement regarding the Services and supersede prior oral or written understandings on that subject.
|
|
131
|
+
|
|
132
|
+
**Severability:** If a provision is invalid, the remainder remains in effect.
|
|
133
|
+
|
|
134
|
+
**No waiver:** Failure to enforce a provision is not a waiver.
|
|
135
|
+
|
|
136
|
+
**Assignment:** We may assign these Terms; you may not assign without our consent.
|
|
137
|
+
|
|
138
|
+
**Independent contractors:** No agency, partnership, or joint venture is created.
|
|
139
|
+
|
|
140
|
+
**Force majeure:** We are not liable for delays or failures due to events beyond our reasonable control.
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## 15. Contact
|
|
145
|
+
|
|
146
|
+
**[Legal Entity Name]**
|
|
147
|
+
**[Address line]**
|
|
148
|
+
**[Contact Email]**
|
|
149
|
+
**[Support URL, if any]**
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
*Template for adaptation. Have qualified counsel review before publication.*
|
package/package.json
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tickup",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "High-performance React financial charts. Canvas 2D rendering, advanced technical analysis tools, and real-time data streaming.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/tickup.cjs.js",
|
|
7
|
+
"module": "./dist/tickup.es.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/tickup.es.js",
|
|
13
|
+
"require": "./dist/tickup.cjs.js"
|
|
14
|
+
},
|
|
15
|
+
"./full": {
|
|
16
|
+
"types": "./dist/full.d.ts",
|
|
17
|
+
"import": "./dist/tickup-full.es.js",
|
|
18
|
+
"require": "./dist/tickup-full.cjs.js"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"sideEffects": false,
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"documentation",
|
|
25
|
+
"legal",
|
|
26
|
+
"LICENSE",
|
|
27
|
+
"README.md",
|
|
28
|
+
"CHANGELOG.md"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"dev": "vite",
|
|
32
|
+
"build": "tsc && npm run build:lib && npx tsc --emitDeclarationOnly",
|
|
33
|
+
"build:example": "npm run build && npm install --no-audit --no-fund --prefix example && npm run build --prefix example",
|
|
34
|
+
"build:lib": "TICKUP_LIB_ENTRY=index vite build && TICKUP_LIB_ENTRY=full vite build",
|
|
35
|
+
"prepublishOnly": "npm run build",
|
|
36
|
+
"preview": "vite preview",
|
|
37
|
+
"combine-code": "node combineFiles.cjs",
|
|
38
|
+
"test": "jest"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"tickup",
|
|
42
|
+
"react",
|
|
43
|
+
"fintech",
|
|
44
|
+
"canvas-2d",
|
|
45
|
+
"financial-visualization",
|
|
46
|
+
"chart",
|
|
47
|
+
"charts",
|
|
48
|
+
"financial",
|
|
49
|
+
"candlestick",
|
|
50
|
+
"ohlc",
|
|
51
|
+
"ohlcv",
|
|
52
|
+
"trading",
|
|
53
|
+
"canvas",
|
|
54
|
+
"stock",
|
|
55
|
+
"crypto",
|
|
56
|
+
"typescript"
|
|
57
|
+
],
|
|
58
|
+
"author": "Bar Damri",
|
|
59
|
+
"license": "MIT",
|
|
60
|
+
"homepage": "https://BARDAMRI.github.io/tickup-charts/",
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "https://github.com/BARDAMRI/tickup-charts.git"
|
|
64
|
+
},
|
|
65
|
+
"bugs": {
|
|
66
|
+
"url": "https://github.com/BARDAMRI/tickup-charts/issues"
|
|
67
|
+
},
|
|
68
|
+
"publishConfig": {
|
|
69
|
+
"access": "public"
|
|
70
|
+
},
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
|
+
},
|
|
74
|
+
"peerDependencies": {
|
|
75
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
76
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
77
|
+
"styled-components": "^6.0.0"
|
|
78
|
+
},
|
|
79
|
+
"devDependencies": {
|
|
80
|
+
"@types/jest": "^29.5.14",
|
|
81
|
+
"@types/react-dom": "^19.1.2",
|
|
82
|
+
"@types/styled-components": "^5.1.34",
|
|
83
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
84
|
+
"javascript-obfuscator": "^5.4.1",
|
|
85
|
+
"jest": "^29.7.0",
|
|
86
|
+
"sass": "^1.89.2",
|
|
87
|
+
"sass-embedded": "^1.87.0",
|
|
88
|
+
"styled-components": "^6.1.19",
|
|
89
|
+
"ts-jest": "^29.3.4",
|
|
90
|
+
"typescript": "~5.7.2",
|
|
91
|
+
"vite": "^5.4.19",
|
|
92
|
+
"vite-plugin-javascript-obfuscator": "^3.1.0"
|
|
93
|
+
},
|
|
94
|
+
"dependencies": {
|
|
95
|
+
"date-fns": "^4.1.0",
|
|
96
|
+
"lucide-react": "^0.541.0"
|
|
97
|
+
}
|
|
98
|
+
}
|