@croquiscom/pds 11.1.2 → 11.2.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 +12 -0
- package/assets/icons/GridView.svg +4 -4
- package/dist/components/radio/styles.d.ts +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/plugin/ui.html +1 -1
- package/plugin/ui.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" height="24" width="24">
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<
|
|
5
|
-
<
|
|
2
|
+
<path fill="#363644" d="M2 11V2H11V11H2ZM3.5 3.5H9.5V9.5H3.5V3.5Z" clip-rule="evenodd" fill-rule="evenodd"></path>
|
|
3
|
+
<path fill="#363644" d="M13 11V2H22V11H13ZM14.5 3.5H20.5V9.5H14.5V3.5Z" clip-rule="evenodd" fill-rule="evenodd"></path>
|
|
4
|
+
<path fill="#363644" d="M2 13V22H11V13H2ZM9.5 14.5H3.5V20.5H9.5V14.5Z" clip-rule="evenodd" fill-rule="evenodd"></path>
|
|
5
|
+
<path fill="#363644" d="M13 22V13H22V22H13ZM14.5 14.5H20.5V20.5H14.5V14.5Z" clip-rule="evenodd" fill-rule="evenodd"></path>
|
|
6
6
|
</svg>
|
|
@@ -3,7 +3,7 @@ import { RadioSizeUnion, DefaultRadioSizeUnion } from './types';
|
|
|
3
3
|
export declare const getRadioGroupStyleByProps: ({ radio_item_type, align, spacing, size, }: {
|
|
4
4
|
radio_item_type?: RadioItemType;
|
|
5
5
|
align?: AlignType;
|
|
6
|
-
spacing
|
|
6
|
+
spacing: Number;
|
|
7
7
|
size?: RadioSizeUnion;
|
|
8
8
|
}) => import("@emotion/utils").SerializedStyles;
|
|
9
9
|
export declare const default_radio_size_css: Record<DefaultRadioSizeUnion, Record<string, number>>;
|