@pine-ds/react 2.1.0-mercury.0 → 2.1.1

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.
@@ -0,0 +1,9 @@
1
+ export declare const attachProps: (node: HTMLElement, newProps: any, oldProps?: any) => void;
2
+ export declare const getClassName: (classList: DOMTokenList, newProps: any, oldProps: any) => string;
3
+ export declare const transformReactEventName: (eventNameSuffix: string) => string;
4
+ export declare const isCoveredByReact: (eventNameSuffix: string) => boolean;
5
+ export declare const syncEvent: (node: Element & {
6
+ __events?: {
7
+ [key: string]: ((e: Event) => any) | undefined;
8
+ };
9
+ }, eventName: string, newEventHandler?: (e: Event) => any) => void;
@@ -0,0 +1,2 @@
1
+ export declare const dashToPascalCase: (str: string) => string;
2
+ export declare const camelToDashCase: (str: string) => string;
@@ -0,0 +1,2 @@
1
+ export declare const isDevMode: () => boolean;
2
+ export declare const deprecationWarning: (key: string, message: string) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pine-ds/react",
3
- "version": "2.1.0-mercury.0",
3
+ "version": "2.1.1",
4
4
  "license": "MIT",
5
5
  "description": "Pine Web Components React Wrapper",
6
6
  "author": "Kajabi Design System Services",
@@ -37,7 +37,7 @@
37
37
  "tsc": "tsc -p ."
38
38
  },
39
39
  "dependencies": {
40
- "@pine-ds/core": "2.1.0-mercury.0",
40
+ "@pine-ds/core": "2.1.1",
41
41
  "@pine-ds/icons": "*",
42
42
  "tslib": "*"
43
43
  },