@univerjs/sheets-ui 0.7.0-nightly.202505101606 → 0.7.0-nightly.202505121607
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/lib/cjs/index.js +15 -269
- package/lib/es/index.js +7158 -7398
- package/lib/index.css +1 -1
- package/lib/index.js +7158 -7398
- package/lib/types/components/border-panel/border-line/BorderLine.d.ts +1 -0
- package/lib/types/components/border-panel/border-line/icons/BorderDashDot.d.ts +3 -1
- package/lib/types/components/border-panel/border-line/icons/BorderDashDotDot.d.ts +3 -1
- package/lib/types/components/border-panel/border-line/icons/BorderDashed.d.ts +3 -1
- package/lib/types/components/border-panel/border-line/icons/BorderDotted.d.ts +3 -1
- package/lib/types/components/border-panel/border-line/icons/BorderHair.d.ts +3 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMedium.d.ts +3 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDot.d.ts +3 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashDotDot.d.ts +3 -1
- package/lib/types/components/border-panel/border-line/icons/BorderMediumDashed.d.ts +3 -1
- package/lib/types/components/border-panel/border-line/icons/BorderThick.d.ts +3 -1
- package/lib/types/components/border-panel/border-line/icons/BorderThin.d.ts +3 -1
- package/lib/umd/index.js +14 -268
- package/package.json +15 -15
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export declare const BorderDashDot: (
|
|
16
|
+
export declare const BorderDashDot: ({ className }: {
|
|
17
|
+
className: string;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export declare const BorderDashDotDot: (
|
|
16
|
+
export declare const BorderDashDotDot: ({ className }: {
|
|
17
|
+
className: string;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export declare const BorderDashed: (
|
|
16
|
+
export declare const BorderDashed: ({ className }: {
|
|
17
|
+
className: string;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export declare const BorderDotted: (
|
|
16
|
+
export declare const BorderDotted: ({ className }: {
|
|
17
|
+
className: string;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export declare const BorderHair: (
|
|
16
|
+
export declare const BorderHair: ({ className }: {
|
|
17
|
+
className: string;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export declare const BorderMedium: (
|
|
16
|
+
export declare const BorderMedium: ({ className }: {
|
|
17
|
+
className: string;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export declare const BorderMediumDashDot: (
|
|
16
|
+
export declare const BorderMediumDashDot: ({ className }: {
|
|
17
|
+
className: string;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export declare const BorderMediumDashDotDot: (
|
|
16
|
+
export declare const BorderMediumDashDotDot: ({ className }: {
|
|
17
|
+
className: string;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export declare const BorderMediumDashed: (
|
|
16
|
+
export declare const BorderMediumDashed: ({ className }: {
|
|
17
|
+
className: string;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export declare const BorderThick: (
|
|
16
|
+
export declare const BorderThick: ({ className }: {
|
|
17
|
+
className: string;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -13,4 +13,6 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export declare const BorderThin: (
|
|
16
|
+
export declare const BorderThin: ({ className }: {
|
|
17
|
+
className: string;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|