@fpkit/acss 4.1.0 → 6.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/libs/components/form/checkbox.css +1 -1
- package/libs/components/form/checkbox.css.map +1 -1
- package/libs/components/form/checkbox.min.css +2 -2
- package/libs/components/form/form.css +1 -1
- package/libs/components/form/form.css.map +1 -1
- package/libs/components/form/form.min.css +2 -2
- package/libs/components/icons/icon.d.cts +1 -1
- package/libs/components/icons/icon.d.ts +1 -1
- package/libs/{icons-952d9bc5.d.ts → icons-df8e744f.d.ts} +32 -32
- package/libs/icons.d.cts +1 -1
- package/libs/icons.d.ts +1 -1
- package/libs/index.cjs +13 -13
- package/libs/index.cjs.map +1 -1
- package/libs/index.css +1 -1
- package/libs/index.css.map +1 -1
- package/libs/index.d.cts +71 -22
- package/libs/index.d.ts +71 -22
- package/libs/index.js +3 -3
- package/libs/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/alert/views/alert-view.tsx +6 -2
- package/src/components/form/CHECKBOX-STYLES.mdx +766 -0
- package/src/components/form/CHECKBOX.mdx +665 -0
- package/src/components/form/checkbox.scss +28 -0
- package/src/components/form/checkbox.tsx +72 -22
- package/src/components/form/form.scss +7 -0
- package/src/components/form/input.stories.tsx +75 -13
- package/src/styles/form/checkbox.css +19 -0
- package/src/styles/form/checkbox.css.map +1 -1
- package/src/styles/form/form.css +25 -0
- package/src/styles/form/form.css.map +1 -1
- package/src/styles/index.css +25 -0
- package/src/styles/index.css.map +1 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@fpkit/acss",
|
|
3
3
|
"description": "A lightweight React UI library for building modern and accessible components that leverage CSS custom properties for reactive Styles.",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "
|
|
5
|
+
"version": "6.0.0",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=22.12.0",
|
|
8
8
|
"npm": ">=8.0.0"
|
|
@@ -126,5 +126,5 @@
|
|
|
126
126
|
"publishConfig": {
|
|
127
127
|
"access": "public"
|
|
128
128
|
},
|
|
129
|
-
"gitHead": "
|
|
129
|
+
"gitHead": "e2b6bacdd039449151941bcd9e04fe1980c2a632"
|
|
130
130
|
}
|
|
@@ -143,8 +143,12 @@ export const AlertView = React.forwardRef<HTMLDivElement, AlertViewProps>(
|
|
|
143
143
|
{...props}
|
|
144
144
|
>
|
|
145
145
|
<AlertScreenReaderText severity={severity} />
|
|
146
|
-
<AlertIcon
|
|
147
|
-
|
|
146
|
+
<AlertIcon
|
|
147
|
+
severity={severity}
|
|
148
|
+
iconProps={iconProps}
|
|
149
|
+
hideIcon={hideIcon}
|
|
150
|
+
/>
|
|
151
|
+
<UI as="div" classes="alert-message">
|
|
148
152
|
<AlertTitle title={title} titleLevel={titleLevel} />
|
|
149
153
|
<AlertContent contentType={contentType}>{children}</AlertContent>
|
|
150
154
|
<AlertActions actions={actions} />
|