@ddmetrics/untitled-ui-make-kit 0.1.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/ATTRIBUTIONS.md +3 -0
- package/README.md +60 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2054 -0
- package/dist/kit.d.ts +10 -0
- package/dist/untitled-kit/components/base.d.ts +7 -0
- package/dist/untitled-kit/components/foundations.d.ts +5 -0
- package/dist/untitled-kit/components/index.d.ts +3 -0
- package/dist/untitled-kit/components/marketing.d.ts +3 -0
- package/dist/untitled-kit/components/source/base/avatar/avatar.d.ts +64 -0
- package/dist/untitled-kit/components/source/base/avatar/base-components/avatar-add-button.d.ts +8 -0
- package/dist/untitled-kit/components/source/base/avatar/base-components/avatar-company-icon.d.ts +7 -0
- package/dist/untitled-kit/components/source/base/avatar/base-components/avatar-count.d.ts +6 -0
- package/dist/untitled-kit/components/source/base/avatar/base-components/avatar-online-indicator.d.ts +7 -0
- package/dist/untitled-kit/components/source/base/avatar/base-components/index.d.ts +4 -0
- package/dist/untitled-kit/components/source/base/avatar/base-components/verified-tick.d.ts +6 -0
- package/dist/untitled-kit/components/source/base/badges/badge-groups.d.ts +22 -0
- package/dist/untitled-kit/components/source/base/badges/badge-types.d.ts +21 -0
- package/dist/untitled-kit/components/source/base/badges/badges.d.ts +128 -0
- package/dist/untitled-kit/components/source/base/buttons/button.d.ts +102 -0
- package/dist/untitled-kit/components/source/base/form/form.d.ts +6 -0
- package/dist/untitled-kit/components/source/base/input/hint-text.d.ts +14 -0
- package/dist/untitled-kit/components/source/base/input/input.d.ts +58 -0
- package/dist/untitled-kit/components/source/base/input/label.d.ts +15 -0
- package/dist/untitled-kit/components/source/base/tooltip/tooltip.d.ts +29 -0
- package/dist/untitled-kit/components/source/foundations/dot-icon.d.ts +4 -0
- package/dist/untitled-kit/components/source/foundations/featured-icon/featured-icon.d.ts +14 -0
- package/dist/untitled-kit/components/source/foundations/logo/untitledui-logo-minimal.d.ts +2 -0
- package/dist/untitled-kit/components/source/foundations/logo/untitledui-logo.d.ts +2 -0
- package/dist/untitled-kit/components/source/foundations/rating-stars.d.ts +29 -0
- package/dist/untitled-kit/components/source/marketing/features/base-components/feature-text.d.ts +37 -0
- package/dist/untitled-kit/components/source/marketing/header-section/base-components/flow-pattern.d.ts +2 -0
- package/dist/untitled-kit/components/source/marketing/pricing-sections/base-components/pricing-tier-card.d.ts +87 -0
- package/dist/untitled-kit/hooks/use-breakpoint.d.ts +9 -0
- package/dist/untitled-kit/hooks/use-resize-observer.d.ts +24 -0
- package/dist/untitled-kit/index.d.ts +3 -0
- package/dist/untitled-kit/templates/CTANewsletterTemplate.d.ts +8 -0
- package/dist/untitled-kit/templates/ContentSplitImageTemplate.d.ts +2 -0
- package/dist/untitled-kit/templates/FAQAccordionTemplate.d.ts +10 -0
- package/dist/untitled-kit/templates/FeatureGridTemplate.d.ts +8 -0
- package/dist/untitled-kit/templates/FooterTemplate.d.ts +7 -0
- package/dist/untitled-kit/templates/HeaderTemplate.d.ts +8 -0
- package/dist/untitled-kit/templates/HeroSplitImageTemplate.d.ts +10 -0
- package/dist/untitled-kit/templates/PricingSectionTemplate.d.ts +8 -0
- package/dist/untitled-kit/templates/TestimonialSectionTemplate.d.ts +5 -0
- package/dist/untitled-kit/templates/index.d.ts +17 -0
- package/dist/untitled-kit/types/marketing.d.ts +53 -0
- package/dist/untitled-kit/utils/cx.d.ts +11 -0
- package/dist/untitled-kit/utils/is-react-component.d.ts +19 -0
- package/dist/untitled-ui-make-kit.css +1 -0
- package/guidelines/Guidelines.md +96 -0
- package/guidelines/component-inventory.md +40 -0
- package/guidelines/section-mapping.md +131 -0
- package/guidelines/styles.md +87 -0
- package/package.json +59 -0
package/ATTRIBUTIONS.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
This Figma Make file includes components from [shadcn/ui](https://ui.shadcn.com/) used under [MIT license](https://github.com/shadcn-ui/ui/blob/main/LICENSE.md).
|
|
2
|
+
|
|
3
|
+
This Figma Make file includes photos from [Unsplash](https://unsplash.com) used under [license](https://unsplash.com/license).
|
package/README.md
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Untitled UI Make Kit
|
|
2
|
+
|
|
3
|
+
Reusable Untitled UI marketing templates packaged for Figma Make.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @ddmetrics/untitled-ui-make-kit
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Use In Figma Make
|
|
12
|
+
|
|
13
|
+
Add the package from **Create kit > npm packages**, then guide Make to import templates from the package:
|
|
14
|
+
|
|
15
|
+
```tsx
|
|
16
|
+
import {
|
|
17
|
+
HeaderTemplate,
|
|
18
|
+
HeroSplitImageTemplate,
|
|
19
|
+
FeatureGridTemplate,
|
|
20
|
+
ContentSplitImageTemplate,
|
|
21
|
+
FAQAccordionTemplate,
|
|
22
|
+
CTANewsletterTemplate,
|
|
23
|
+
FooterTemplate,
|
|
24
|
+
} from "@ddmetrics/untitled-ui-make-kit";
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
If styles are not automatically included by Figma Make, import the package stylesheet:
|
|
28
|
+
|
|
29
|
+
```tsx
|
|
30
|
+
import "@ddmetrics/untitled-ui-make-kit/style.css";
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Available Templates
|
|
34
|
+
|
|
35
|
+
- `HeaderTemplate`
|
|
36
|
+
- `HeroSplitImageTemplate`
|
|
37
|
+
- `FeatureGridTemplate`
|
|
38
|
+
- `ContentSplitImageTemplate`
|
|
39
|
+
- `PricingSectionTemplate`
|
|
40
|
+
- `TestimonialSectionTemplate`
|
|
41
|
+
- `FAQAccordionTemplate`
|
|
42
|
+
- `CTANewsletterTemplate`
|
|
43
|
+
- `FooterTemplate`
|
|
44
|
+
|
|
45
|
+
## Development
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
npm install
|
|
49
|
+
npm run build
|
|
50
|
+
npm pack --dry-run
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Publish
|
|
54
|
+
|
|
55
|
+
Make sure you own the `@ddmetrics` npm scope or rename the package before publishing.
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
npm login
|
|
59
|
+
npm publish --access public
|
|
60
|
+
```
|
package/dist/index.d.ts
ADDED