@npm_leadtech/legal-lib-components 2.38.1 → 2.39.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/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +2 -0
- package/dist/cjs/src/components/atoms/MessageInformation/MessageInformationProps.types.d.ts +1 -0
- package/dist/cjs/src/components/molecules/CountDownMessage/CountDownMessageProps.types.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +2 -0
- package/dist/esm/src/components/atoms/MessageInformation/MessageInformationProps.types.d.ts +1 -0
- package/dist/esm/src/components/molecules/CountDownMessage/CountDownMessageProps.types.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +2 -2
- package/dist/cjs/src/utils/replaceAll.d.ts +0 -1
- package/dist/esm/src/utils/replaceAll.d.ts +0 -1
|
@@ -3001,6 +3001,8 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
3001
3001
|
@media (min-width: 960px) {
|
|
3002
3002
|
.message-information {
|
|
3003
3003
|
justify-content: flex-start; } }
|
|
3004
|
+
.message-information.text-center {
|
|
3005
|
+
justify-content: center; }
|
|
3004
3006
|
.message-information__icon {
|
|
3005
3007
|
width: 24px;
|
|
3006
3008
|
fill: var(--secondary-main-dark-1);
|
package/dist/index.d.ts
CHANGED
|
@@ -502,6 +502,7 @@ interface MessageInformationProps {
|
|
|
502
502
|
noImg: boolean;
|
|
503
503
|
text: string | React.ReactNode;
|
|
504
504
|
time?: string;
|
|
505
|
+
centered: boolean;
|
|
505
506
|
}
|
|
506
507
|
|
|
507
508
|
declare const MessageInformation: FC<MessageInformationProps>;
|
|
@@ -611,6 +612,7 @@ interface CountDownMessageProps {
|
|
|
611
612
|
noImg?: boolean;
|
|
612
613
|
text: string | React.ReactNode;
|
|
613
614
|
time?: string;
|
|
615
|
+
centered?: boolean;
|
|
614
616
|
}
|
|
615
617
|
|
|
616
618
|
declare const CountDownMessage: FC<CountDownMessageProps>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@npm_leadtech/legal-lib-components",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.39.0",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@testing-library/jest-dom": "^6.1.4",
|
|
6
6
|
"@tippyjs/react": "4.2.6",
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"upgrade-patch": "yarn prepare-upgrade && npm version patch -m \"Update patch version number\" && git push && git push --tags",
|
|
129
129
|
"upgrade-minor": "yarn prepare-upgrade && npm version minor -m \"Update minor version number\" && git push && git push --tags",
|
|
130
130
|
"upgrade-major": "yarn prepare-upgrade && npm version major -m \"Update major version number\" && git push && git push --tags",
|
|
131
|
-
"format": "prettier --write \"**/*.
|
|
131
|
+
"format": "prettier --write \"**/*.(js|jsx|json|md)\"",
|
|
132
132
|
"jest": "jest --maxWorkers=2",
|
|
133
133
|
"test": "jest --coverage",
|
|
134
134
|
"prepare": "husky install",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function replaceAll(str: string, find: string, replace: string): string;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function replaceAll(str: string, find: string, replace: string): string;
|