@vacano/ui 1.13.0 → 1.15.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/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  </p>
8
8
 
9
9
  <p align="center">
10
- <img src="https://img.shields.io/badge/version-1.13.0-blue" />
10
+ <img src="https://img.shields.io/badge/version-1.15.0-blue" />
11
11
  <a href="https://www.npmjs.com/package/@vacano/ui"><img src="https://img.shields.io/npm/v/@vacano/ui" alt="npm version" /></a>
12
12
  <a href="https://github.com/vacano-house/vacano-ui/blob/master/LICENSE.md"><img src="https://img.shields.io/npm/l/@vacano/ui" alt="license" /></a>
13
13
  </p>
@@ -19,7 +19,7 @@
19
19
 
20
20
  ## Features
21
21
 
22
- - **40+ Components** - Form controls, data display, feedback, layout, navigation, and utility components
22
+ - **50+ Components** - Form controls, data display, feedback, layout, navigation, and utility components
23
23
  - **1800+ Icons** - Lucide icon components included
24
24
  - **TypeScript** - Full TypeScript support with strict typing
25
25
  - **Emotion CSS-in-JS** - Styled components with transient props
@@ -63,19 +63,19 @@ function App() {
63
63
  ## Components
64
64
 
65
65
  ### Form
66
- Autocomplete, Button, Checkbox, CheckboxCard, CheckboxGroup, DatePicker, Input, MultiSelect, OtpCode, Radio, RadioCard, RadioGroup, Select, Tags, Textarea, Toggle, ToggleCard, ToggleGroup
66
+ Autocomplete, Button, Checkbox, CheckboxCard, CheckboxGroup, DatePicker, FileUpload, Input, MultiSelect, OtpCode, Radio, RadioCard, RadioGroup, Select, Tags, Textarea, Toggle, ToggleCard, ToggleGroup
67
67
 
68
68
  ### Data Display
69
- Card, Chip, Progress, Tabs
69
+ Badge, Card, Chip, DateRange, Hashtag, Heading, Overline, Progress, Stat, Tabs, User
70
70
 
71
71
  ### Feedback
72
- Confirmation, Modal, Drawer, Notification, SaveProgress, Spinner, Toastr, Tooltip
72
+ Confirmation, Modal, Drawer, Notification, NotifyConfirmation, SaveProgress, Spinner, Toastr, Tooltip
73
73
 
74
74
  ### Layout
75
- Container, Panel
75
+ Container, Divider, Panel
76
76
 
77
77
  ### Navigation
78
- Dropdown, Stepper
78
+ Breadcrumbs, Dropdown, Pagination, Stepper
79
79
 
80
80
  ### Utility
81
81
  FieldLabel, FieldMessage, FieldRow, GlobalStyle, ImageCropper, KeysBindings, KeySymbol
@@ -0,0 +1,2 @@
1
+ "use strict";const r=require("./X-CI1qRJDP.cjs"),t=({className:c,size:e=r.DEFAULT_LUCIDE_PROP_SIZE,...s})=>r.jsx("svg",{width:e,height:e,className:r.css("circle",c),...s,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:r.jsx("circle",{cx:"12",cy:"12",r:"10"})}),o=({className:c,size:e=r.DEFAULT_LUCIDE_PROP_SIZE,...s})=>r.jsxs("svg",{width:e,height:e,className:r.css("circle-check",c),...s,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[r.jsx("circle",{cx:"12",cy:"12",r:"10"}),r.jsx("path",{d:"m9 12 2 2 4-4"})]}),i=({className:c,size:e=r.DEFAULT_LUCIDE_PROP_SIZE,...s})=>r.jsxs("svg",{width:e,height:e,className:r.css("circle-x",c),...s,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[r.jsx("circle",{cx:"12",cy:"12",r:"10"}),r.jsx("path",{d:"m15 9-6 6"}),r.jsx("path",{d:"m9 9 6 6"})]});exports.Circle=t;exports.CircleCheck=o;exports.CircleX=i;
2
+ //# sourceMappingURL=CircleX-BzaN6v37.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CircleX-BzaN6v37.cjs","sources":["../src/icons/Lucide/components/Circle.tsx","../src/icons/Lucide/components/CircleCheck.tsx","../src/icons/Lucide/components/CircleX.tsx"],"sourcesContent":["import { DEFAULT_LUCIDE_PROP_SIZE } from '../constants'\nimport { css } from '../helpers'\nimport { IconLucideProps } from '../types'\n\nexport const Circle = ({\n className,\n size = DEFAULT_LUCIDE_PROP_SIZE,\n ...rest\n}: IconLucideProps) => {\n return (\n <svg\n width={size}\n height={size}\n className={css('circle', className)}\n {...rest}\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n >\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n </svg>\n )\n}\n","import { DEFAULT_LUCIDE_PROP_SIZE } from '../constants'\nimport { css } from '../helpers'\nimport { IconLucideProps } from '../types'\n\nexport const CircleCheck = ({\n className,\n size = DEFAULT_LUCIDE_PROP_SIZE,\n ...rest\n}: IconLucideProps) => {\n return (\n <svg\n width={size}\n height={size}\n className={css('circle-check', className)}\n {...rest}\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n >\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"m9 12 2 2 4-4\" />\n </svg>\n )\n}\n","import { DEFAULT_LUCIDE_PROP_SIZE } from '../constants'\nimport { css } from '../helpers'\nimport { IconLucideProps } from '../types'\n\nexport const CircleX = ({\n className,\n size = DEFAULT_LUCIDE_PROP_SIZE,\n ...rest\n}: IconLucideProps) => {\n return (\n <svg\n width={size}\n height={size}\n className={css('circle-x', className)}\n {...rest}\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n >\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"m15 9-6 6\" />\n <path d=\"m9 9 6 6\" />\n </svg>\n )\n}\n"],"names":["Circle","className","size","DEFAULT_LUCIDE_PROP_SIZE","rest","jsx","css","CircleCheck","jsxs","CircleX"],"mappings":"iDAIaA,EAAS,CAAC,CACrB,UAAAC,EACA,KAAAC,EAAOC,EAAAA,yBACP,GAAGC,CACL,IAEIC,EAAAA,IAAC,MAAA,CACC,MAAOH,EACP,OAAQA,EACR,UAAWI,EAAAA,IAAI,SAAUL,CAAS,EACjC,GAAGG,EACJ,MAAM,6BACN,QAAQ,YACR,KAAK,OACL,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QAEf,eAAC,SAAA,CAAO,GAAG,KAAK,GAAG,KAAK,EAAE,IAAA,CAAK,CAAA,CAAA,ECnBxBG,EAAc,CAAC,CAC1B,UAAAN,EACA,KAAAC,EAAOC,EAAAA,yBACP,GAAGC,CACL,IAEII,EAAAA,KAAC,MAAA,CACC,MAAON,EACP,OAAQA,EACR,UAAWI,EAAAA,IAAI,eAAgBL,CAAS,EACvC,GAAGG,EACJ,MAAM,6BACN,QAAQ,YACR,KAAK,OACL,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QAEf,SAAA,CAAAC,MAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,KAAK,EAC/BA,EAAAA,IAAC,OAAA,CAAK,EAAE,eAAA,CAAgB,CAAA,CAAA,CAAA,ECpBjBI,EAAU,CAAC,CACtB,UAAAR,EACA,KAAAC,EAAOC,EAAAA,yBACP,GAAGC,CACL,IAEII,EAAAA,KAAC,MAAA,CACC,MAAON,EACP,OAAQA,EACR,UAAWI,EAAAA,IAAI,WAAYL,CAAS,EACnC,GAAGG,EACJ,MAAM,6BACN,QAAQ,YACR,KAAK,OACL,OAAO,eACP,YAAY,IACZ,cAAc,QACd,eAAe,QAEf,SAAA,CAAAC,MAAC,UAAO,GAAG,KAAK,GAAG,KAAK,EAAE,KAAK,EAC/BA,EAAAA,IAAC,OAAA,CAAK,EAAE,WAAA,CAAY,EACpBA,EAAAA,IAAC,OAAA,CAAK,EAAE,UAAA,CAAW,CAAA,CAAA,CAAA"}
@@ -0,0 +1,75 @@
1
+ import { j as e, c as t, D as s, a as n } from "./X-DAuAfjix.js";
2
+ const l = ({
3
+ className: o,
4
+ size: r = s,
5
+ ...c
6
+ }) => /* @__PURE__ */ e(
7
+ "svg",
8
+ {
9
+ width: r,
10
+ height: r,
11
+ className: t("circle", o),
12
+ ...c,
13
+ xmlns: "http://www.w3.org/2000/svg",
14
+ viewBox: "0 0 24 24",
15
+ fill: "none",
16
+ stroke: "currentColor",
17
+ strokeWidth: "2",
18
+ strokeLinecap: "round",
19
+ strokeLinejoin: "round",
20
+ children: /* @__PURE__ */ e("circle", { cx: "12", cy: "12", r: "10" })
21
+ }
22
+ ), h = ({
23
+ className: o,
24
+ size: r = s,
25
+ ...c
26
+ }) => /* @__PURE__ */ n(
27
+ "svg",
28
+ {
29
+ width: r,
30
+ height: r,
31
+ className: t("circle-check", o),
32
+ ...c,
33
+ xmlns: "http://www.w3.org/2000/svg",
34
+ viewBox: "0 0 24 24",
35
+ fill: "none",
36
+ stroke: "currentColor",
37
+ strokeWidth: "2",
38
+ strokeLinecap: "round",
39
+ strokeLinejoin: "round",
40
+ children: [
41
+ /* @__PURE__ */ e("circle", { cx: "12", cy: "12", r: "10" }),
42
+ /* @__PURE__ */ e("path", { d: "m9 12 2 2 4-4" })
43
+ ]
44
+ }
45
+ ), a = ({
46
+ className: o,
47
+ size: r = s,
48
+ ...c
49
+ }) => /* @__PURE__ */ n(
50
+ "svg",
51
+ {
52
+ width: r,
53
+ height: r,
54
+ className: t("circle-x", o),
55
+ ...c,
56
+ xmlns: "http://www.w3.org/2000/svg",
57
+ viewBox: "0 0 24 24",
58
+ fill: "none",
59
+ stroke: "currentColor",
60
+ strokeWidth: "2",
61
+ strokeLinecap: "round",
62
+ strokeLinejoin: "round",
63
+ children: [
64
+ /* @__PURE__ */ e("circle", { cx: "12", cy: "12", r: "10" }),
65
+ /* @__PURE__ */ e("path", { d: "m15 9-6 6" }),
66
+ /* @__PURE__ */ e("path", { d: "m9 9 6 6" })
67
+ ]
68
+ }
69
+ );
70
+ export {
71
+ l as C,
72
+ a,
73
+ h as b
74
+ };
75
+ //# sourceMappingURL=CircleX-RQVijA2m.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CircleX-RQVijA2m.js","sources":["../src/icons/Lucide/components/Circle.tsx","../src/icons/Lucide/components/CircleCheck.tsx","../src/icons/Lucide/components/CircleX.tsx"],"sourcesContent":["import { DEFAULT_LUCIDE_PROP_SIZE } from '../constants'\nimport { css } from '../helpers'\nimport { IconLucideProps } from '../types'\n\nexport const Circle = ({\n className,\n size = DEFAULT_LUCIDE_PROP_SIZE,\n ...rest\n}: IconLucideProps) => {\n return (\n <svg\n width={size}\n height={size}\n className={css('circle', className)}\n {...rest}\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n >\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n </svg>\n )\n}\n","import { DEFAULT_LUCIDE_PROP_SIZE } from '../constants'\nimport { css } from '../helpers'\nimport { IconLucideProps } from '../types'\n\nexport const CircleCheck = ({\n className,\n size = DEFAULT_LUCIDE_PROP_SIZE,\n ...rest\n}: IconLucideProps) => {\n return (\n <svg\n width={size}\n height={size}\n className={css('circle-check', className)}\n {...rest}\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n >\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"m9 12 2 2 4-4\" />\n </svg>\n )\n}\n","import { DEFAULT_LUCIDE_PROP_SIZE } from '../constants'\nimport { css } from '../helpers'\nimport { IconLucideProps } from '../types'\n\nexport const CircleX = ({\n className,\n size = DEFAULT_LUCIDE_PROP_SIZE,\n ...rest\n}: IconLucideProps) => {\n return (\n <svg\n width={size}\n height={size}\n className={css('circle-x', className)}\n {...rest}\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n stroke=\"currentColor\"\n strokeWidth=\"2\"\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n >\n <circle cx=\"12\" cy=\"12\" r=\"10\" />\n <path d=\"m15 9-6 6\" />\n <path d=\"m9 9 6 6\" />\n </svg>\n )\n}\n"],"names":["Circle","className","size","DEFAULT_LUCIDE_PROP_SIZE","rest","jsx","css","CircleCheck","jsxs","CircleX"],"mappings":";AAIO,MAAMA,IAAS,CAAC;AAAA,EACrB,WAAAC;AAAA,EACA,MAAAC,IAAOC;AAAA,EACP,GAAGC;AACL,MAEI,gBAAAC;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAOH;AAAA,IACP,QAAQA;AAAA,IACR,WAAWI,EAAI,UAAUL,CAAS;AAAA,IACjC,GAAGG;AAAA,IACJ,OAAM;AAAA,IACN,SAAQ;AAAA,IACR,MAAK;AAAA,IACL,QAAO;AAAA,IACP,aAAY;AAAA,IACZ,eAAc;AAAA,IACd,gBAAe;AAAA,IAEf,4BAAC,UAAA,EAAO,IAAG,MAAK,IAAG,MAAK,GAAE,KAAA,CAAK;AAAA,EAAA;AAAA,GCnBxBG,IAAc,CAAC;AAAA,EAC1B,WAAAN;AAAA,EACA,MAAAC,IAAOC;AAAA,EACP,GAAGC;AACL,MAEI,gBAAAI;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAON;AAAA,IACP,QAAQA;AAAA,IACR,WAAWI,EAAI,gBAAgBL,CAAS;AAAA,IACvC,GAAGG;AAAA,IACJ,OAAM;AAAA,IACN,SAAQ;AAAA,IACR,MAAK;AAAA,IACL,QAAO;AAAA,IACP,aAAY;AAAA,IACZ,eAAc;AAAA,IACd,gBAAe;AAAA,IAEf,UAAA;AAAA,MAAA,gBAAAC,EAAC,YAAO,IAAG,MAAK,IAAG,MAAK,GAAE,MAAK;AAAA,MAC/B,gBAAAA,EAAC,QAAA,EAAK,GAAE,gBAAA,CAAgB;AAAA,IAAA;AAAA,EAAA;AAAA,GCpBjBI,IAAU,CAAC;AAAA,EACtB,WAAAR;AAAA,EACA,MAAAC,IAAOC;AAAA,EACP,GAAGC;AACL,MAEI,gBAAAI;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAON;AAAA,IACP,QAAQA;AAAA,IACR,WAAWI,EAAI,YAAYL,CAAS;AAAA,IACnC,GAAGG;AAAA,IACJ,OAAM;AAAA,IACN,SAAQ;AAAA,IACR,MAAK;AAAA,IACL,QAAO;AAAA,IACP,aAAY;AAAA,IACZ,eAAc;AAAA,IACd,gBAAe;AAAA,IAEf,UAAA;AAAA,MAAA,gBAAAC,EAAC,YAAO,IAAG,MAAK,IAAG,MAAK,GAAE,MAAK;AAAA,MAC/B,gBAAAA,EAAC,QAAA,EAAK,GAAE,YAAA,CAAY;AAAA,MACpB,gBAAAA,EAAC,QAAA,EAAK,GAAE,WAAA,CAAW;AAAA,IAAA;AAAA,EAAA;AAAA;"}