@clickhouse/click-ui 0.0.130 → 0.0.131

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.
@@ -1785,6 +1785,13 @@ const India = (props) => /* @__PURE__ */ jsxRuntimeExports.jsxs("svg", { xmlns:
1785
1785
  /* @__PURE__ */ jsxRuntimeExports.jsx("clipPath", { id: "indiaFlagClipPath2", children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fill: "#fff", d: "M0 0h30v20H0z" }) })
1786
1786
  ] })
1787
1787
  ] });
1788
+ const Japan = (props) => /* @__PURE__ */ jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "30", height: "20", viewBox: "0 0 30 20", fill: "none", ...props, children: [
1789
+ /* @__PURE__ */ jsxRuntimeExports.jsxs("g", { clipPath: "url(#clip0_8004_401)", children: [
1790
+ /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M30 0H0V20H30V0Z", fill: "white" }),
1791
+ /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M15 16C18.3137 16 21 13.3137 21 10C21 6.68629 18.3137 4 15 4C11.6863 4 9 6.68629 9 10C9 13.3137 11.6863 16 15 16Z", fill: "#BC002D" })
1792
+ ] }),
1793
+ /* @__PURE__ */ jsxRuntimeExports.jsx("defs", { children: /* @__PURE__ */ jsxRuntimeExports.jsx("clipPath", { id: "clip0_8004_401", children: /* @__PURE__ */ jsxRuntimeExports.jsx("rect", { width: "30", height: "20", fill: "white" }) }) })
1794
+ ] });
1788
1795
  const Netherlands = (props) => /* @__PURE__ */ jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: 30, height: 20, viewBox: "0 0 30 20", fill: "none", ...props, children: [
1789
1796
  /* @__PURE__ */ jsxRuntimeExports.jsxs("g", { clipPath: "url(#netherlandsFlagClipPath)", children: [
1790
1797
  /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fill: "#21468B", d: "M30 0H0v20h30V0Z" }),
@@ -2262,6 +2269,7 @@ const FlagList = {
2262
2269
  gb: GreatBritain,
2263
2270
  ie: Ireland,
2264
2271
  in: India,
2272
+ jp: Japan,
2265
2273
  nl: Netherlands,
2266
2274
  sg: Singapore,
2267
2275
  za: SouthAfrica,
@@ -1802,6 +1802,13 @@ var __publicField = (obj, key, value) => {
1802
1802
  /* @__PURE__ */ jsxRuntimeExports.jsx("clipPath", { id: "indiaFlagClipPath2", children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fill: "#fff", d: "M0 0h30v20H0z" }) })
1803
1803
  ] })
1804
1804
  ] });
1805
+ const Japan = (props) => /* @__PURE__ */ jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "30", height: "20", viewBox: "0 0 30 20", fill: "none", ...props, children: [
1806
+ /* @__PURE__ */ jsxRuntimeExports.jsxs("g", { clipPath: "url(#clip0_8004_401)", children: [
1807
+ /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M30 0H0V20H30V0Z", fill: "white" }),
1808
+ /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M15 16C18.3137 16 21 13.3137 21 10C21 6.68629 18.3137 4 15 4C11.6863 4 9 6.68629 9 10C9 13.3137 11.6863 16 15 16Z", fill: "#BC002D" })
1809
+ ] }),
1810
+ /* @__PURE__ */ jsxRuntimeExports.jsx("defs", { children: /* @__PURE__ */ jsxRuntimeExports.jsx("clipPath", { id: "clip0_8004_401", children: /* @__PURE__ */ jsxRuntimeExports.jsx("rect", { width: "30", height: "20", fill: "white" }) }) })
1811
+ ] });
1805
1812
  const Netherlands = (props) => /* @__PURE__ */ jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: 30, height: 20, viewBox: "0 0 30 20", fill: "none", ...props, children: [
1806
1813
  /* @__PURE__ */ jsxRuntimeExports.jsxs("g", { clipPath: "url(#netherlandsFlagClipPath)", children: [
1807
1814
  /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fill: "#21468B", d: "M30 0H0v20h30V0Z" }),
@@ -2279,6 +2286,7 @@ var __publicField = (obj, key, value) => {
2279
2286
  gb: GreatBritain,
2280
2287
  ie: Ireland,
2281
2288
  in: India,
2289
+ jp: Japan,
2282
2290
  nl: Netherlands,
2283
2291
  sg: Singapore,
2284
2292
  za: SouthAfrica,
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Japan: (props: React.SVGAttributes<SVGElement>) => React.ReactElement;
3
+ export default Japan;
@@ -1,6 +1,6 @@
1
1
  import { SVGAttributes } from "react";
2
2
  import { IconSize } from '../../../components/Icon/types';
3
- export type FlagName = "au" | "br" | "ca" | "de" | "eu" | "gb" | "in" | "ie" | "nl" | "sg" | "sw" | "usa" | "uk" | "za";
3
+ export type FlagName = "au" | "br" | "ca" | "de" | "eu" | "gb" | "in" | "ie" | "jp" | "nl" | "sg" | "sw" | "usa" | "uk" | "za";
4
4
  export interface FlagProps extends Omit<SVGAttributes<SVGElement>, "size"> {
5
5
  name: FlagName;
6
6
  size?: IconSize;
@@ -14,6 +14,7 @@ export declare const FlagList: {
14
14
  gb: (props: SVGAttributes<SVGElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
15
15
  ie: (props: SVGAttributes<SVGElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
16
16
  in: (props: SVGAttributes<SVGElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
17
+ jp: (props: SVGAttributes<SVGElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
17
18
  nl: (props: SVGAttributes<SVGElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
18
19
  sg: (props: SVGAttributes<SVGElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
19
20
  za: (props: SVGAttributes<SVGElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clickhouse/click-ui",
3
- "version": "0.0.130",
3
+ "version": "0.0.131",
4
4
  "description": "Official ClickHouse design system react library",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",