@clubmed/trident-ui 1.1.0-beta.5 → 1.1.0-rc.2
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,32 @@
|
|
1
1
|
# ClubMed React UI components changelog
|
2
2
|
|
3
|
+
# [1.1.0-rc.2](https://scm.clubmed.com/clubmed/cm-trident-ui/compare/v1.1.0-rc.1...v1.1.0-rc.2) (2024-10-18)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* **molecules:** add w-full on ButtonContent ([45b7dcb](https://scm.clubmed.com/clubmed/cm-trident-ui/-/commit/45b7dcb24124953697a351c92a585f221113104d))
|
9
|
+
|
10
|
+
# [1.1.0-rc.1](https://scm.clubmed.com/clubmed/cm-trident-ui/compare/v1.0.1...v1.1.0-rc.1) (2024-10-17)
|
11
|
+
|
12
|
+
|
13
|
+
### Bug Fixes
|
14
|
+
|
15
|
+
* **assets:** remove GridDefault ([9701d94](https://scm.clubmed.com/clubmed/cm-trident-ui/-/commit/9701d94ab9fcb2d8ef4a7ad74f26e4e3e95f4498))
|
16
|
+
|
17
|
+
|
18
|
+
### Features
|
19
|
+
|
20
|
+
* **assets:** add Apple icon ([c2d2458](https://scm.clubmed.com/clubmed/cm-trident-ui/-/commit/c2d24583d2502d4cbb990d37a7e2d51faba45a70))
|
21
|
+
* **assets:** add ExternalLink icon ([e8cabb5](https://scm.clubmed.com/clubmed/cm-trident-ui/-/commit/e8cabb549ad0b56801b3d4305719c7cac34fd5a2))
|
22
|
+
* **assets:** add Google icon ([5aba30e](https://scm.clubmed.com/clubmed/cm-trident-ui/-/commit/5aba30e8d0a898ed75ae686ffa2dcaf3e31309b6))
|
23
|
+
* **assets:** add Grid icon ([543f7da](https://scm.clubmed.com/clubmed/cm-trident-ui/-/commit/543f7da645f00d5609ab8c52536e2d56400e00f2))
|
24
|
+
* **assets:** add List icon ([eef372f](https://scm.clubmed.com/clubmed/cm-trident-ui/-/commit/eef372fc2da273dadd1989907fcb61721585c436))
|
25
|
+
* **assets:** add Twitter (X), BeachViews, GardenView, PoolView, SunView, WithView and SnowSenerity icons ([06c1f86](https://scm.clubmed.com/clubmed/cm-trident-ui/-/commit/06c1f862b5fdc3b72f5d00a5d8be216e14c68bc7))
|
26
|
+
* **molecules:** add formatter option TextField component ([90cf9f4](https://scm.clubmed.com/clubmed/cm-trident-ui/-/commit/90cf9f43318397e193a4423b4e65cf0a7bdc35d0))
|
27
|
+
* **molecules:** add hideRequiredStar option on FormLabel to hide required star ([5032af8](https://scm.clubmed.com/clubmed/cm-trident-ui/-/commit/5032af8f8376ff4a8ecfa4d93613512193735ea7))
|
28
|
+
* **molecules:** add style for password disabled ([023dbc0](https://scm.clubmed.com/clubmed/cm-trident-ui/-/commit/023dbc0165b8a1ee0b046da57a2da80b16f0ff0f))
|
29
|
+
|
3
30
|
# [1.1.0-beta.5](https://scm.clubmed.com/clubmed/cm-trident-ui/compare/v1.1.0-beta.4...v1.1.0-beta.5) (2024-10-17)
|
4
31
|
|
5
32
|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { jsxs as m, jsx as n } from "react/jsx-runtime";
|
2
2
|
import { Icon as p } from "../../atoms/Icons/Icon.js";
|
3
3
|
import "../../atoms/Icons/contexts/IconsContext.js";
|
4
|
-
const
|
4
|
+
const l = ({ showLabel: r, label: t, children: s, icon: e, iconType: o }) => /* @__PURE__ */ m("span", { className: "flex items-center justify-center gap-x-8 w-full", children: [
|
5
5
|
r ? t : /* @__PURE__ */ n("span", { className: "sr-only", children: t }),
|
6
6
|
s,
|
7
7
|
e && /* @__PURE__ */ n(p, { width: "24px", name: e, type: o })
|
8
8
|
] });
|
9
9
|
export {
|
10
|
-
|
10
|
+
l as ButtonContent
|
11
11
|
};
|
12
12
|
//# sourceMappingURL=ButtonContent.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ButtonContent.js","sources":["../../../lib/molecules/Buttons/ButtonContent.tsx"],"sourcesContent":["import { FunctionComponent, ReactNode } from 'react';\n\nimport { Icon, IconicNames, IconicTypes } from '@/atoms/Icons';\n\nexport const ButtonContent: FunctionComponent<{\n showLabel: boolean;\n label?: string;\n children?: ReactNode;\n icon?: IconicNames;\n iconType?: IconicTypes;\n}> = ({ showLabel, label, children, icon, iconType }) => {\n return (\n <span className=\"flex items-center justify-center gap-x-8\">\n {showLabel ? label : <span className=\"sr-only\">{label}</span>}\n {children}\n {icon && <Icon width=\"24px\" name={icon} type={iconType} />}\n </span>\n );\n};\n"],"names":["ButtonContent","showLabel","label","children","icon","iconType","jsxs","jsx","Icon"],"mappings":";;;AAIa,MAAAA,IAMR,CAAC,EAAE,WAAAC,GAAW,OAAAC,GAAO,UAAAC,GAAU,MAAAC,GAAM,UAAAC,QAEtC,gBAAAC,EAAC,QAAK,EAAA,WAAU,
|
1
|
+
{"version":3,"file":"ButtonContent.js","sources":["../../../lib/molecules/Buttons/ButtonContent.tsx"],"sourcesContent":["import { FunctionComponent, ReactNode } from 'react';\n\nimport { Icon, IconicNames, IconicTypes } from '@/atoms/Icons';\n\nexport const ButtonContent: FunctionComponent<{\n showLabel: boolean;\n label?: string;\n children?: ReactNode;\n icon?: IconicNames;\n iconType?: IconicTypes;\n}> = ({ showLabel, label, children, icon, iconType }) => {\n return (\n <span className=\"flex items-center justify-center gap-x-8 w-full\">\n {showLabel ? label : <span className=\"sr-only\">{label}</span>}\n {children}\n {icon && <Icon width=\"24px\" name={icon} type={iconType} />}\n </span>\n );\n};\n"],"names":["ButtonContent","showLabel","label","children","icon","iconType","jsxs","jsx","Icon"],"mappings":";;;AAIa,MAAAA,IAMR,CAAC,EAAE,WAAAC,GAAW,OAAAC,GAAO,UAAAC,GAAU,MAAAC,GAAM,UAAAC,QAEtC,gBAAAC,EAAC,QAAK,EAAA,WAAU,mDACb,UAAA;AAAA,EAAAL,IAAYC,IAAQ,gBAAAK,EAAC,QAAK,EAAA,WAAU,WAAW,UAAML,GAAA;AAAA,EACrDC;AAAA,EACAC,uBAASI,GAAK,EAAA,OAAM,QAAO,MAAMJ,GAAM,MAAMC,GAAU;AAC1D,EAAA,CAAA;"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@clubmed/trident-ui",
|
3
|
-
"version": "1.1.0-
|
3
|
+
"version": "1.1.0-rc.2",
|
4
4
|
"type": "module",
|
5
5
|
"description": "Shared ClubMed React UI components",
|
6
6
|
"keywords": [
|
@@ -51,16 +51,16 @@
|
|
51
51
|
"import": "./molecules/Forms/Checkboxes/index.js",
|
52
52
|
"default": "./molecules/Forms/Checkboxes/index.js"
|
53
53
|
},
|
54
|
-
"./molecules/Forms/Radios": {
|
55
|
-
"types": "./molecules/Forms/Radios/index.d.ts",
|
56
|
-
"import": "./molecules/Forms/Radios/index.js",
|
57
|
-
"default": "./molecules/Forms/Radios/index.js"
|
58
|
-
},
|
59
54
|
"./molecules/Forms/Password": {
|
60
55
|
"types": "./molecules/Forms/Password/index.d.ts",
|
61
56
|
"import": "./molecules/Forms/Password/index.js",
|
62
57
|
"default": "./molecules/Forms/Password/index.js"
|
63
58
|
},
|
59
|
+
"./molecules/Forms/Radios": {
|
60
|
+
"types": "./molecules/Forms/Radios/index.d.ts",
|
61
|
+
"import": "./molecules/Forms/Radios/index.js",
|
62
|
+
"default": "./molecules/Forms/Radios/index.js"
|
63
|
+
},
|
64
64
|
"./fonts/*": "./fonts/*",
|
65
65
|
"./atoms/*": {
|
66
66
|
"types": "./atoms/*.d.ts",
|