tide-design-system 2.5.15 → 2.5.17
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/css/realm/cycle.css +1 -1
- package/dist/index.d.ts +27 -44
- package/dist/index.js +1022 -1036
- package/dist/style.css +1 -1
- package/package.json +4 -2
package/dist/css/realm/cycle.css
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
--tide-realm-steel-blue: #253E51;
|
|
8
8
|
|
|
9
9
|
/* Color Roles: Each realm will assign values to this same series of variables from a combination of the Global and Realm-specific Palettes. */
|
|
10
|
-
--tide-primary: var(--tide-realm-
|
|
10
|
+
--tide-primary: var(--tide-realm-red);
|
|
11
11
|
--tide-surface-accent: var(--tide-realm-light-blue);
|
|
12
12
|
--tide-surface-brand: var(--tide-gray-900);
|
|
13
13
|
|
package/dist/index.d.ts
CHANGED
|
@@ -5,12 +5,6 @@ import { DefineComponent } from 'vue';
|
|
|
5
5
|
import { PublicProps } from 'vue';
|
|
6
6
|
import { Ref } from 'vue';
|
|
7
7
|
|
|
8
|
-
declare type __VLS_Props = Props_2;
|
|
9
|
-
|
|
10
|
-
declare type __VLS_PublicProps = {
|
|
11
|
-
modelValue: number;
|
|
12
|
-
} & __VLS_Props;
|
|
13
|
-
|
|
14
8
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
15
9
|
new (): {
|
|
16
10
|
$slots: S;
|
|
@@ -807,7 +801,7 @@ export declare const ICON: {
|
|
|
807
801
|
readonly IOS_SHARE: "ios-share";
|
|
808
802
|
readonly LAYOUT: "layout";
|
|
809
803
|
readonly LEVELLING_JACK: "levelling-jack";
|
|
810
|
-
readonly LINKED_IN: "linked
|
|
804
|
+
readonly LINKED_IN: "linked-in";
|
|
811
805
|
readonly LOCAL_SHIPPING: "local-shipping";
|
|
812
806
|
readonly LOCK: "lock";
|
|
813
807
|
readonly MAIL: "mail";
|
|
@@ -988,10 +982,6 @@ declare interface Props extends SelectField {
|
|
|
988
982
|
}
|
|
989
983
|
|
|
990
984
|
declare type Props_2 = {
|
|
991
|
-
pageTotal: number;
|
|
992
|
-
};
|
|
993
|
-
|
|
994
|
-
declare type Props_3 = {
|
|
995
985
|
heading?: string;
|
|
996
986
|
links: Link[];
|
|
997
987
|
};
|
|
@@ -1371,36 +1361,6 @@ isNewTab: boolean;
|
|
|
1371
1361
|
priority: Priority;
|
|
1372
1362
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1373
1363
|
|
|
1374
|
-
/**
|
|
1375
|
-
* Renders a button component for use in pagination purposes.
|
|
1376
|
-
*
|
|
1377
|
-
* @see the [Storybook interface](https://tide-design-system.netlify.app/?path=/docs/components-tidebuttonpagination--docs) for TideButtonPagination
|
|
1378
|
-
*/
|
|
1379
|
-
export declare const TideButtonPagination: DefineComponent< {
|
|
1380
|
-
/** Indicates whether Pagination Button is associated with the displayed page */
|
|
1381
|
-
disabled?: boolean;
|
|
1382
|
-
/** HTML tag type */
|
|
1383
|
-
element?: ElementBroad;
|
|
1384
|
-
/** URL to open<br />(Link only) */
|
|
1385
|
-
href?: string;
|
|
1386
|
-
/** Button text */
|
|
1387
|
-
label: string | number;
|
|
1388
|
-
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
|
|
1389
|
-
/** Indicates whether Pagination Button is associated with the displayed page */
|
|
1390
|
-
disabled?: boolean;
|
|
1391
|
-
/** HTML tag type */
|
|
1392
|
-
element?: ElementBroad;
|
|
1393
|
-
/** URL to open<br />(Link only) */
|
|
1394
|
-
href?: string;
|
|
1395
|
-
/** Button text */
|
|
1396
|
-
label: string | number;
|
|
1397
|
-
}> & Readonly<{}>, {
|
|
1398
|
-
label: string | number;
|
|
1399
|
-
disabled: boolean;
|
|
1400
|
-
element: ElementBroad;
|
|
1401
|
-
href: string;
|
|
1402
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1403
|
-
|
|
1404
1364
|
/**
|
|
1405
1365
|
* Renders a button component for use to save items.
|
|
1406
1366
|
*
|
|
@@ -2494,9 +2454,32 @@ modalContent: HTMLDivElement;
|
|
|
2494
2454
|
footer?(_: {}): any;
|
|
2495
2455
|
}>;
|
|
2496
2456
|
|
|
2497
|
-
|
|
2457
|
+
/**
|
|
2458
|
+
* Renders a pagination component for navigating through pages of content.
|
|
2459
|
+
*
|
|
2460
|
+
* @see the [Storybook interface](https://tide-design-system.netlify.app/?path=/docs/components-tidepagination--docs) for TidePagination
|
|
2461
|
+
*/
|
|
2462
|
+
export declare const TidePagination: DefineComponent< {
|
|
2463
|
+
modelValue: number;
|
|
2464
|
+
} & {
|
|
2465
|
+
/** Total number of pages available */
|
|
2466
|
+
pageCount: number;
|
|
2467
|
+
/** Number of items per page. When provided, a results summary is shown below the pagination controls. */
|
|
2468
|
+
pageSize?: number;
|
|
2469
|
+
/** Total number of results */
|
|
2470
|
+
totalResults: number;
|
|
2471
|
+
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2498
2472
|
"update:modelValue": (value: number) => any;
|
|
2499
|
-
}, string, PublicProps, Readonly<
|
|
2473
|
+
}, string, PublicProps, Readonly<{
|
|
2474
|
+
modelValue: number;
|
|
2475
|
+
} & {
|
|
2476
|
+
/** Total number of pages available */
|
|
2477
|
+
pageCount: number;
|
|
2478
|
+
/** Number of items per page. When provided, a results summary is shown below the pagination controls. */
|
|
2479
|
+
pageSize?: number;
|
|
2480
|
+
/** Total number of results */
|
|
2481
|
+
totalResults: number;
|
|
2482
|
+
}> & Readonly<{
|
|
2500
2483
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2501
2484
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2502
2485
|
|
|
@@ -2580,7 +2563,7 @@ realm: Realm;
|
|
|
2580
2563
|
markOnly: boolean;
|
|
2581
2564
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2582
2565
|
|
|
2583
|
-
export declare const TideSeoLinks: DefineComponent<
|
|
2566
|
+
export declare const TideSeoLinks: DefineComponent<Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_2> & Readonly<{}>, {
|
|
2584
2567
|
heading: string;
|
|
2585
2568
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2586
2569
|
|