@npm_leadtech/legal-contracts-ui 0.50.2 → 0.50.3
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/dist/components/CaFlagIcon.d.ts +4 -0
- package/dist/components/CaFlagIcon.js +11 -0
- package/dist/components/DeFlagIcon.d.ts +4 -0
- package/dist/components/DeFlagIcon.js +10 -0
- package/dist/components/GbFlagIcon.d.ts +4 -0
- package/dist/components/GbFlagIcon.js +15 -0
- package/dist/components/index.d.ts +6 -0
- package/package.json +13 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsxs as h, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const e = (i) => /* @__PURE__ */ h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "21", height: "15", fill: "none", viewBox: "0 0 40 20", ...i, children: [
|
|
4
|
+
/* @__PURE__ */ t("rect", { width: "10", height: "20", fill: "#FF0000" }),
|
|
5
|
+
/* @__PURE__ */ t("rect", { x: "10", width: "20", height: "20", fill: "#FFFFFF" }),
|
|
6
|
+
/* @__PURE__ */ t("rect", { x: "30", width: "10", height: "20", fill: "#FF0000" }),
|
|
7
|
+
/* @__PURE__ */ t("path", { d: "M20,4 L21,8 L19,8 Z M18,9 L22,9 L20,14 Z", fill: "#FF0000" })
|
|
8
|
+
] });
|
|
9
|
+
export {
|
|
10
|
+
e as CaFlagIcon
|
|
11
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { jsxs as h, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const o = (i) => /* @__PURE__ */ h("svg", { xmlns: "http://www.w3.org/2000/svg", width: "21", height: "15", fill: "none", viewBox: "0 0 30 20", ...i, children: [
|
|
4
|
+
/* @__PURE__ */ t("rect", { width: "30", height: "6.67", fill: "#000" }),
|
|
5
|
+
/* @__PURE__ */ t("rect", { y: "6.67", width: "30", height: "6.67", fill: "#DD0000" }),
|
|
6
|
+
/* @__PURE__ */ t("rect", { y: "13.33", width: "30", height: "6.67", fill: "#FFCE00" })
|
|
7
|
+
] });
|
|
8
|
+
export {
|
|
9
|
+
o as DeFlagIcon
|
|
10
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { jsxs as i, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
const l = (h) => /* @__PURE__ */ i("svg", { xmlns: "http://www.w3.org/2000/svg", width: "21", height: "15", fill: "none", viewBox: "0 0 60 30", ...h, children: [
|
|
4
|
+
/* @__PURE__ */ t("clipPath", { id: "gb-clip", children: /* @__PURE__ */ t("rect", { width: "60", height: "30" }) }),
|
|
5
|
+
/* @__PURE__ */ i("g", { clipPath: "url(#gb-clip)", children: [
|
|
6
|
+
/* @__PURE__ */ t("rect", { width: "60", height: "30", fill: "#012169" }),
|
|
7
|
+
/* @__PURE__ */ t("path", { d: "M0,0 L60,30 M60,0 L0,30", stroke: "#fff", strokeWidth: "6" }),
|
|
8
|
+
/* @__PURE__ */ t("path", { d: "M0,0 L60,30 M60,0 L0,30", stroke: "#C8102E", strokeWidth: "4", clipPath: "url(#gb-clip)" }),
|
|
9
|
+
/* @__PURE__ */ t("path", { d: "M30,0 V30 M0,15 H60", stroke: "#fff", strokeWidth: "10" }),
|
|
10
|
+
/* @__PURE__ */ t("path", { d: "M30,0 V30 M0,15 H60", stroke: "#C8102E", strokeWidth: "6" })
|
|
11
|
+
] })
|
|
12
|
+
] });
|
|
13
|
+
export {
|
|
14
|
+
l as GbFlagIcon
|
|
15
|
+
};
|
|
@@ -84,6 +84,8 @@ export declare type ButtonSize = 'small' | 'default' | 'large';
|
|
|
84
84
|
|
|
85
85
|
export declare type ButtonVariant = 'primary-green' | 'primary-darkgreen' | 'primary-yellow' | 'primary-white' | 'secondary-green' | 'secondary-yellow' | 'secondary-red' | 'secondary-black' | 'tertiary-bold' | 'tertiary-thin' | 'tertiary-icon' | 'tertiary-link' | 'icon-black' | 'icon-grey' | 'icon-mobile';
|
|
86
86
|
|
|
87
|
+
export declare const CaFlagIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
|
|
88
|
+
|
|
87
89
|
export declare const Card: FC<CardProps>;
|
|
88
90
|
|
|
89
91
|
export declare interface CardProps {
|
|
@@ -189,6 +191,8 @@ export declare interface DefaultSubtypeDocumentProps extends BaseSubtypeDocument
|
|
|
189
191
|
description: string;
|
|
190
192
|
}
|
|
191
193
|
|
|
194
|
+
export declare const DeFlagIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
|
|
195
|
+
|
|
192
196
|
export declare const DocEditFillIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
|
|
193
197
|
|
|
194
198
|
export declare const DocOutlineIcon: React.FC<React.SVGProps<SVGSVGElement>>;
|
|
@@ -328,6 +332,8 @@ export declare interface FormattedLanguageItem {
|
|
|
328
332
|
flag: default_2.ReactNode;
|
|
329
333
|
}
|
|
330
334
|
|
|
335
|
+
export declare const GbFlagIcon: React_2.FC<React_2.SVGProps<SVGSVGElement>>;
|
|
336
|
+
|
|
331
337
|
export declare const getButtonClasses: (size?: ButtonSize, variant?: ResponsiveButtonVariant, iconPosition?: IconPosition, disabled?: boolean, className?: string) => string;
|
|
332
338
|
|
|
333
339
|
export declare const GuidelinesSection: FC<GuidelinesSectionProps>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@npm_leadtech/legal-contracts-ui",
|
|
3
|
-
"version": "0.50.
|
|
3
|
+
"version": "0.50.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -78,6 +78,10 @@
|
|
|
78
78
|
"import": "./dist/components/BusinessIcon.js",
|
|
79
79
|
"types": "./dist/components/BusinessIcon.d.ts"
|
|
80
80
|
},
|
|
81
|
+
"./components/CaFlagIcon": {
|
|
82
|
+
"import": "./dist/components/CaFlagIcon.js",
|
|
83
|
+
"types": "./dist/components/CaFlagIcon.d.ts"
|
|
84
|
+
},
|
|
81
85
|
"./components/ChevronDownIcon": {
|
|
82
86
|
"import": "./dist/components/ChevronDownIcon.js",
|
|
83
87
|
"types": "./dist/components/ChevronDownIcon.d.ts"
|
|
@@ -94,6 +98,10 @@
|
|
|
94
98
|
"import": "./dist/components/CommunicationIcon.js",
|
|
95
99
|
"types": "./dist/components/CommunicationIcon.d.ts"
|
|
96
100
|
},
|
|
101
|
+
"./components/DeFlagIcon": {
|
|
102
|
+
"import": "./dist/components/DeFlagIcon.js",
|
|
103
|
+
"types": "./dist/components/DeFlagIcon.d.ts"
|
|
104
|
+
},
|
|
97
105
|
"./components/DocEditFillIcon": {
|
|
98
106
|
"import": "./dist/components/DocEditFillIcon.js",
|
|
99
107
|
"types": "./dist/components/DocEditFillIcon.d.ts"
|
|
@@ -130,6 +138,10 @@
|
|
|
130
138
|
"import": "./dist/components/FinanceIcon.js",
|
|
131
139
|
"types": "./dist/components/FinanceIcon.d.ts"
|
|
132
140
|
},
|
|
141
|
+
"./components/GbFlagIcon": {
|
|
142
|
+
"import": "./dist/components/GbFlagIcon.js",
|
|
143
|
+
"types": "./dist/components/GbFlagIcon.d.ts"
|
|
144
|
+
},
|
|
133
145
|
"./components/HamburgerIcon": {
|
|
134
146
|
"import": "./dist/components/HamburgerIcon.js",
|
|
135
147
|
"types": "./dist/components/HamburgerIcon.d.ts"
|