@pantheon-systems/pds-toolkit-react 1.0.0-alpha.11 → 1.0.0-alpha.13
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/components/SiteDashboardHeading/SiteDashboardHeading.d.ts +5 -1
- package/_dist/components/badges/IndicatorBadge/IndicatorBadge.d.ts +1 -1
- package/_dist/components/inputs/Checkbox/Checkbox.d.ts +1 -1
- package/_dist/components/inputs/CheckboxFieldset/CheckboxFieldset.d.ts +1 -1
- package/_dist/components/inputs/CheckboxGroup/CheckboxGroup.d.ts +1 -1
- package/_dist/components/inputs/Combobox/Combobox.d.ts +1 -1
- package/_dist/components/inputs/ComboboxMultiselect/ComboboxMultiselect.d.ts +1 -1
- package/_dist/components/inputs/Datepicker/Datepicker.d.ts +96 -0
- package/_dist/components/inputs/FileUpload/FileUpload.d.ts +1 -1
- package/_dist/components/inputs/RadioGroup/RadioGroup.d.ts +1 -1
- package/_dist/components/inputs/Select/Select.d.ts +1 -1
- package/_dist/components/inputs/Switch/Switch.d.ts +1 -1
- package/_dist/components/inputs/TextInput/TextInput.d.ts +1 -1
- package/_dist/components/inputs/Textarea/Textarea.d.ts +1 -1
- package/_dist/components/inputs/input-utilities.d.ts +1 -1
- package/_dist/css/component-css/pds-datepicker.css +3 -0
- package/_dist/css/component-css/pds-index.css +9 -5
- package/_dist/css/component-css/pds-indicator-badge.css +5 -3
- package/_dist/css/component-css/pds-popover.css +1 -1
- package/_dist/css/component-css/pds-site-dashboard-heading.css +1 -1
- package/_dist/css/design-tokens/pds-design-tokens-dark-mode.css +7 -0
- package/_dist/css/design-tokens/pds-design-tokens-light-mode.css +7 -0
- package/_dist/css/pds-components.css +9 -5
- package/_dist/css/pds-core.css +2 -2
- package/_dist/index.css +1 -1
- package/_dist/index.d.ts +1 -0
- package/_dist/index.js +3525 -3239
- package/_dist/index.js.map +1 -1
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pantheon-systems/pds-toolkit-react",
|
|
3
3
|
"technology": "React",
|
|
4
|
-
"version": "1.0.0-alpha.
|
|
4
|
+
"version": "1.0.0-alpha.13",
|
|
5
5
|
"description": "PDS toolkit built using the React framework",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public",
|
|
@@ -76,7 +76,8 @@
|
|
|
76
76
|
"generate:utility": "plop utility",
|
|
77
77
|
"prepare": "husky install",
|
|
78
78
|
"build-storybook": "storybook build",
|
|
79
|
-
"vite": "vite"
|
|
79
|
+
"vite": "vite",
|
|
80
|
+
"pack:local": "bash scripts/pack-local.sh"
|
|
80
81
|
},
|
|
81
82
|
"devDependencies": {
|
|
82
83
|
"@arethetypeswrong/cli": "^0.15.3",
|
|
@@ -136,12 +137,14 @@
|
|
|
136
137
|
"@floating-ui/react-dom": "~1.3.0",
|
|
137
138
|
"@pantheon-systems/pds-design-tokens": "^1.0.0",
|
|
138
139
|
"@reactuses/core": "^5.0.15",
|
|
140
|
+
"date-fns": "^4.1.0",
|
|
139
141
|
"downshift": "^9.0.8",
|
|
140
142
|
"focus-trap-react": "^10.2.1",
|
|
141
143
|
"hash-sum": "^2.0.0",
|
|
142
144
|
"prism-react-renderer": "^2.4.1",
|
|
143
145
|
"prismjs": "^1.29.0",
|
|
144
146
|
"react-code-block": "^1.1.1",
|
|
147
|
+
"react-day-picker": "^9.11.1",
|
|
145
148
|
"react-device-detect": "^2.2.3",
|
|
146
149
|
"react-hotkeys-hook": "^4.5.1",
|
|
147
150
|
"react-router-dom": "^6.13.0",
|