@guardian/stand 0.0.69 → 0.0.71
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/Table.cjs +10 -0
- package/dist/Table.d.cts +5 -0
- package/dist/Table.d.ts +5 -0
- package/dist/Table.js +3 -0
- package/dist/TextInput.d.cts +2 -2
- package/dist/TextInput.d.ts +2 -2
- package/dist/TextListInput.cjs +5 -0
- package/dist/TextListInput.d.cts +5 -0
- package/dist/TextListInput.d.ts +5 -0
- package/dist/TextListInput.js +3 -0
- package/dist/components/Table/Table.cjs +80 -0
- package/dist/components/Table/Table.d.cts +10 -0
- package/dist/components/Table/Table.d.ts +10 -0
- package/dist/components/Table/Table.js +75 -0
- package/dist/components/Table/styles.cjs +133 -0
- package/dist/components/Table/styles.d.cts +8 -0
- package/dist/components/Table/styles.d.ts +8 -0
- package/dist/components/Table/styles.js +126 -0
- package/dist/components/Table/types.d.cts +27 -0
- package/dist/components/Table/types.d.ts +27 -0
- package/dist/components/TextInput/styles.d.cts +3 -2
- package/dist/components/TextInput/styles.d.ts +3 -2
- package/dist/components/TextListInput/TextListInput.cjs +81 -0
- package/dist/components/TextListInput/TextListInput.d.cts +5 -0
- package/dist/components/TextListInput/TextListInput.d.ts +5 -0
- package/dist/components/TextListInput/TextListInput.js +81 -0
- package/dist/components/TextListInput/styles.cjs +28 -0
- package/dist/components/TextListInput/styles.d.cts +8 -0
- package/dist/components/TextListInput/styles.d.ts +8 -0
- package/dist/components/TextListInput/styles.js +25 -0
- package/dist/components/TextListInput/types.d.cts +33 -0
- package/dist/components/TextListInput/types.d.ts +33 -0
- package/dist/index.cjs +4 -0
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3 -1
- package/dist/styleD/build/css/component/table.css +33 -0
- package/dist/styleD/build/css/component/textListInput.css +15 -0
- package/dist/styleD/build/typescript/component/table.cjs +51 -0
- package/dist/styleD/build/typescript/component/table.d.cts +54 -0
- package/dist/styleD/build/typescript/component/table.d.ts +54 -0
- package/dist/styleD/build/typescript/component/table.js +51 -0
- package/dist/styleD/build/typescript/component/textListInput.cjs +22 -0
- package/dist/styleD/build/typescript/component/textListInput.d.cts +25 -0
- package/dist/styleD/build/typescript/component/textListInput.d.ts +25 -0
- package/dist/styleD/build/typescript/component/textListInput.js +22 -0
- package/package.json +30 -2
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
//#region src/styleD/build/typescript/component/table.ts
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
const componentTable = {
|
|
6
|
+
table: {
|
|
7
|
+
width: "100%",
|
|
8
|
+
color: "#000000",
|
|
9
|
+
backgroundColor: "#ffffff",
|
|
10
|
+
border: "0.0625rem solid #cccccc",
|
|
11
|
+
borderRadius: "0.25rem"
|
|
12
|
+
},
|
|
13
|
+
header: {
|
|
14
|
+
backgroundColor: "#ededed",
|
|
15
|
+
border: "0.0625rem solid #cccccc"
|
|
16
|
+
},
|
|
17
|
+
row: {
|
|
18
|
+
backgroundColor: "#ffffff",
|
|
19
|
+
hoverBackgroundColor: "#f6f6f6",
|
|
20
|
+
border: "0.0625rem solid #cccccc",
|
|
21
|
+
focusVisible: {
|
|
22
|
+
outline: "0.125rem solid #0072a9",
|
|
23
|
+
outlineOffset: "-0.0625rem"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
cell: {
|
|
27
|
+
paddingBlock: "0.5rem",
|
|
28
|
+
paddingInline: "0.75rem",
|
|
29
|
+
typography: {
|
|
30
|
+
font: "normal 460 0.875rem/1.3 Open Sans",
|
|
31
|
+
letterSpacing: "0rem",
|
|
32
|
+
fontWidth: 95
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
columnHeader: { typography: {
|
|
36
|
+
font: "normal 700 0.75rem/1.15 Open Sans",
|
|
37
|
+
letterSpacing: "0rem",
|
|
38
|
+
fontWidth: 95
|
|
39
|
+
} },
|
|
40
|
+
compactLabel: {
|
|
41
|
+
color: "#545454",
|
|
42
|
+
gap: "0.25rem",
|
|
43
|
+
typography: {
|
|
44
|
+
font: "normal 460 0.75rem/1.3 Open Sans",
|
|
45
|
+
letterSpacing: "0rem",
|
|
46
|
+
fontWidth: 95
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
//#endregion
|
|
51
|
+
export { componentTable };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
//#region src/styleD/build/typescript/component/textListInput.ts
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
const componentTextListInput = {
|
|
6
|
+
label: {
|
|
7
|
+
color: "#000000",
|
|
8
|
+
gap: "0.5rem",
|
|
9
|
+
typography: {
|
|
10
|
+
font: "normal 700 1rem/1.15 Open Sans",
|
|
11
|
+
letterSpacing: "-0.03125rem",
|
|
12
|
+
fontWidth: 95
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
column: {
|
|
16
|
+
gap: "1rem",
|
|
17
|
+
marginTop: "0.5rem"
|
|
18
|
+
},
|
|
19
|
+
row: { gap: "0.5rem" }
|
|
20
|
+
};
|
|
21
|
+
//#endregion
|
|
22
|
+
exports.componentTextListInput = componentTextListInput;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
//#region src/styleD/build/typescript/component/textListInput.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
declare const componentTextListInput: {
|
|
6
|
+
label: {
|
|
7
|
+
color: string;
|
|
8
|
+
gap: string;
|
|
9
|
+
typography: {
|
|
10
|
+
font: string;
|
|
11
|
+
letterSpacing: string;
|
|
12
|
+
fontWidth: number;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
column: {
|
|
16
|
+
gap: string;
|
|
17
|
+
marginTop: string;
|
|
18
|
+
};
|
|
19
|
+
row: {
|
|
20
|
+
gap: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
type ComponentTextListInput = typeof componentTextListInput;
|
|
24
|
+
//#endregion
|
|
25
|
+
export { ComponentTextListInput, componentTextListInput };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
//#region src/styleD/build/typescript/component/textListInput.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
declare const componentTextListInput: {
|
|
6
|
+
label: {
|
|
7
|
+
color: string;
|
|
8
|
+
gap: string;
|
|
9
|
+
typography: {
|
|
10
|
+
font: string;
|
|
11
|
+
letterSpacing: string;
|
|
12
|
+
fontWidth: number;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
column: {
|
|
16
|
+
gap: string;
|
|
17
|
+
marginTop: string;
|
|
18
|
+
};
|
|
19
|
+
row: {
|
|
20
|
+
gap: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
type ComponentTextListInput = typeof componentTextListInput;
|
|
24
|
+
//#endregion
|
|
25
|
+
export { ComponentTextListInput, componentTextListInput };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
//#region src/styleD/build/typescript/component/textListInput.ts
|
|
2
|
+
/**
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
const componentTextListInput = {
|
|
6
|
+
label: {
|
|
7
|
+
color: "#000000",
|
|
8
|
+
gap: "0.5rem",
|
|
9
|
+
typography: {
|
|
10
|
+
font: "normal 700 1rem/1.15 Open Sans",
|
|
11
|
+
letterSpacing: "-0.03125rem",
|
|
12
|
+
fontWidth: 95
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
column: {
|
|
16
|
+
gap: "1rem",
|
|
17
|
+
marginTop: "0.5rem"
|
|
18
|
+
},
|
|
19
|
+
row: { gap: "0.5rem" }
|
|
20
|
+
};
|
|
21
|
+
//#endregion
|
|
22
|
+
export { componentTextListInput };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guardian/stand",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.71",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "https://github.com/guardian/stand"
|
|
6
6
|
},
|
|
@@ -257,6 +257,16 @@
|
|
|
257
257
|
"default": "./dist/Grid.cjs"
|
|
258
258
|
}
|
|
259
259
|
},
|
|
260
|
+
"./Table": {
|
|
261
|
+
"import": {
|
|
262
|
+
"types": "./dist/Table.d.ts",
|
|
263
|
+
"default": "./dist/Table.js"
|
|
264
|
+
},
|
|
265
|
+
"require": {
|
|
266
|
+
"types": "./dist/Table.d.cts",
|
|
267
|
+
"default": "./dist/Table.cjs"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
260
270
|
"./Byline": {
|
|
261
271
|
"import": {
|
|
262
272
|
"types": "./dist/Byline.d.ts",
|
|
@@ -377,6 +387,16 @@
|
|
|
377
387
|
"default": "./dist/UserFeedbackSummary.cjs"
|
|
378
388
|
}
|
|
379
389
|
},
|
|
390
|
+
"./TextListInput": {
|
|
391
|
+
"import": {
|
|
392
|
+
"types": "./dist/TextListInput.d.ts",
|
|
393
|
+
"default": "./dist/TextListInput.js"
|
|
394
|
+
},
|
|
395
|
+
"require": {
|
|
396
|
+
"types": "./dist/TextListInput.d.cts",
|
|
397
|
+
"default": "./dist/TextListInput.cjs"
|
|
398
|
+
}
|
|
399
|
+
},
|
|
380
400
|
"./utils": {
|
|
381
401
|
"import": {
|
|
382
402
|
"types": "./dist/utils.d.ts",
|
|
@@ -430,12 +450,14 @@
|
|
|
430
450
|
"./component/intendedAudienceSignifier.css": "./dist/styleD/build/css/component/intendedAudienceSignifier.css",
|
|
431
451
|
"./component/link.css": "./dist/styleD/build/css/component/link.css",
|
|
432
452
|
"./component/grid.css": "./dist/styleD/build/css/component/grid.css",
|
|
453
|
+
"./component/table.css": "./dist/styleD/build/css/component/table.css",
|
|
433
454
|
"./component/layout.css": "./dist/styleD/build/css/component/layout.css",
|
|
434
455
|
"./component/modal.css": "./dist/styleD/build/css/component/modal.css",
|
|
435
456
|
"./component/tabs.css": "./dist/styleD/build/css/component/tabs.css",
|
|
436
457
|
"./component/tooltip.css": "./dist/styleD/build/css/component/tooltip.css",
|
|
437
458
|
"./component/userFeedbackSummary.css": "./dist/styleD/build/css/component/userFeedbackSummary.css",
|
|
438
|
-
"./component/sidebarStepperNavigation.css": "./dist/styleD/build/css/component/sidebarStepperNavigation.css"
|
|
459
|
+
"./component/sidebarStepperNavigation.css": "./dist/styleD/build/css/component/sidebarStepperNavigation.css",
|
|
460
|
+
"./component/textListInput.css": "./dist/styleD/build/css/component/textListInput.css"
|
|
439
461
|
},
|
|
440
462
|
"main": "./dist/index.cjs",
|
|
441
463
|
"module": "./dist/index.js",
|
|
@@ -535,6 +557,9 @@
|
|
|
535
557
|
"Grid": [
|
|
536
558
|
"./dist/Grid.d.ts"
|
|
537
559
|
],
|
|
560
|
+
"Table": [
|
|
561
|
+
"./dist/Table.d.ts"
|
|
562
|
+
],
|
|
538
563
|
"Layout": [
|
|
539
564
|
"./dist/Layout.d.ts"
|
|
540
565
|
],
|
|
@@ -552,6 +577,9 @@
|
|
|
552
577
|
],
|
|
553
578
|
"UserFeedbackSummary": [
|
|
554
579
|
"./dist/UserFeedbackSummary.d.ts"
|
|
580
|
+
],
|
|
581
|
+
"TextListInput": [
|
|
582
|
+
"./dist/TextListInput.d.ts"
|
|
555
583
|
]
|
|
556
584
|
}
|
|
557
585
|
},
|